Click or drag to resize

PronySeriesRetardationResult Constructor

Initializes a new instance of the PronySeriesRetardationResult record.

Namespace: Altaxo.Science.Signals
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public PronySeriesRetardationResult(
	IReadOnlyList<double> retardationTimes,
	IReadOnlyList<double> pronyCoefficients,
	IReadOnlyList<double> relaxationDensities,
	double? flowTerm,
	bool isFlowTermFromDielectricSpectrum
)

Parameters

retardationTimes  IReadOnlyListDouble
The retardation times. The list may include 0 if an intercept/high-frequency term is present.
pronyCoefficients  IReadOnlyListDouble
The Prony coefficients corresponding to retardationTimes.
relaxationDensities  IReadOnlyListDouble
The retardation density values corresponding to retardationTimes.
flowTerm  NullableDouble
The flow term (fluidity/conductivity). If , no flow term was fitted.
isFlowTermFromDielectricSpectrum  Boolean
If set to true, the Prony series is the result of a fit to a dielectric spectrum. In this case, the electrical conductivity is calculated using the vacuum permittivity as a factor.
Exceptions
ExceptionCondition
ArgumentNullException Thrown if retardationTimes, pronyCoefficients, or relaxationDensities is .
See Also