RelaxISPlugin_CircuitElementCalculateImpedance Method |
The function used to calculate the impedance of the single circuit element
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public abstract Complex CalculateImpedance(
double Frequency,
double[] Parameters
)
Public MustOverride Function CalculateImpedance (
Frequency As Double,
Parameters As Double()
) As Complex
Dim instance As RelaxISPlugin_CircuitElement
Dim Frequency As Double
Dim Parameters As Double()
Dim returnValue As Complex
returnValue = instance.CalculateImpedance(Frequency,
Parameters)
Parameters
- Frequency Double
- The frequency for which the impedance should be calculated
- Parameters Double
- The parameter values for which the impedance should be calculated
Return Value
ComplexA complex number from the real and imaginary part of the impedance
Remarks You can use the
ImpedanceConversion functions to calculate the impedance from other transfer functions.
See Also