RelaxISPlugin_TransferFunctionNormalizeValue Method |
Overriding this function allows calculation of a normalized value for the transfer function, e.g. conductivity from admittance.
This is mainly used in the Combined Data Plot feature.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public virtual Complex NormalizeValue(
double Frequency,
double Real,
double Imaginary,
double Area,
double Thickness
)
Public Overridable Function NormalizeValue (
Frequency As Double,
Real As Double,
Imaginary As Double,
Area As Double,
Thickness As Double
) As Complex
Dim instance As RelaxISPlugin_TransferFunction
Dim Frequency As Double
Dim Real As Double
Dim Imaginary As Double
Dim Area As Double
Dim Thickness As Double
Dim returnValue As Complex
returnValue = instance.NormalizeValue(Frequency,
Real, Imaginary, Area, Thickness)
Parameters
- Frequency Double
- The frequency of the data point to normalize
- Real Double
- The real part of the value to normalize. In this transfer function, NOT the impedance.
- Imaginary Double
- The imaginary part of the value to normalize. In this transfer function, NOT the impedance.
- Area Double
- The Area metadata field of the spectrum the data point belongs to
- Thickness Double
- The Thickness metadata field of the spectrum the data point belongs to
Return Value
ComplexThe normalized value as a real and imaginary part, e.g. (Y'*d/A,Y''*d/A)
See Also