Pelsser.SquaredGaussianModel.F2 C# (CSharp) Method

F2() public method

Calculates F(T, dt) of the model, but doesn't apply the square root. This value is, as such equal to F-squared.
public F2 ( double T, double dt ) : double
T double The time where to calculate the function.
dt double /// The delta of time to consider to calculate the function. ///
return double
        public double F2(double T, double dt)
        {
            //Relax Pelsser model assumptions
            double z=f(T, dt) - SIG(T);
            return Math.Max(0,z);
        }