Click or drag to resize

PercolationTheoryTransition Method

Evaluates the basic percolation transition formula. Returns double.NaN when p equals pc.

Namespace: Altaxo.Calc.FitFunctions.Transitions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static double Transition(
	double p,
	double y0,
	double y1,
	double pc,
	double s,
	double t
)

Parameters

p  Double
Occupation probability in [0,1].
y0  Double
Left amplitude.
y1  Double
Right amplitude.
pc  Double
Critical threshold in [0,1].
s  Double
Left exponent.
t  Double
Right exponent.

Return Value

Double
The transitioned value according to percolation theory or double.NaN if p == pc.
See Also