Click or drag to resize

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.Plugins
Assembly: 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
)

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

Complex
The normalized value as a real and imaginary part, e.g. (Y'*d/A,Y''*d/A)
See Also