TraceMathExpression
The trace math expression.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME..[[/shared/Resources/Automation/startup.fek]]) cartesianGraph = app.CartesianGraphs:Add() trace = cartesianGraph.Traces:Add(app.Models[1].Configurations[1].NearFields[1]) -- Set 'TraceMathExpression' properties trace.Math.Expression = "self*2.0" trace.Math.Enabled = true
Usage locations
The TraceMathExpression object can be accessed from the following locations:
- Properties
- CharacteristicModeTrace object has property Math.
- CustomDataTrace object has property Math.
- FarFieldPowerIntegralTrace object has property Math.
- NearFieldPowerIntegralTrace object has property Math.
- TRCoefficientTrace object has property Math.
- SARTrace object has property Math.
- WireCurrentsTrace object has property Math.
- SParameterTrace object has property Math.
- PowerTrace object has property Math.
- LoadTrace object has property Math.
- ExcitationTrace object has property Math.
- FarFieldTrace object has property Math.
- NearFieldTrace object has property Math.
- ReceivingAntennaTrace object has property Math.
- NetworkTrace object has property Math.
Property List
- CommonRangeEnabled
- Specifies whether the range is limited to the range common to all traces used in the expression. (Read/Write boolean)
- Enabled
- Specifies whether the math expression is enabled for this trace. (Read/Write boolean)
- Expression
- The math expression used to calculate this trace, e.g.
self*2.0
. (Read/Write string) - NoUnit
- Specifies the no unit must be used for this trace. (Read/Write boolean)
- UnitExpression
- The unit for the values resulting from the math expression, e.g.
m/s^2
. Only applies if NoUnit is false. (Read/Write string)
Property Details
- CommonRangeEnabled
- Specifies whether the range is limited to the range common to all traces used in the expression.
- Type
- boolean
- Access
- Read/Write
- Enabled
- Specifies whether the math expression is enabled for this trace.
- Type
- boolean
- Access
- Read/Write
- Expression
- The math expression used to calculate this trace, e.g.
self*2.0
.- Type
- string
- Access
- Read/Write
- NoUnit
- Specifies the no unit must be used for this trace.
- Type
- boolean
- Access
- Read/Write
- UnitExpression
- The unit for the values resulting from the math expression, e.g.
m/s^2
. Only applies if NoUnit is false.- Type
- string
- Access
- Read/Write