C# Class YAMP.Numerics.ODEBase

Abstract base class for all ODE algorithms.
Afficher le fichier Open project: FlorianRappl/YAMP

Protected Properties

Свойство Type Description
begin double
end double
f Func
h double
pointsNum int
y0 double

Méthodes publiques

Méthode Description
ODEBase ( Func f, double begin, double end, double y0, int pointsNum ) : System

Default constructor

Méthodes protégées

Méthode Description
Calculate ( ) : void

Computes the result.

Method Details

Calculate() protected abstract méthode

Computes the result.
protected abstract Calculate ( ) : void
Résultat void

ODEBase() public méthode

Default constructor
public ODEBase ( Func f, double begin, double end, double y0, int pointsNum ) : System
f Func Function to be solved delegate
begin double Interval start point value
end double Interval end point value
y0 double Starting condition
pointsNum int Points number
Résultat System

Property Details

begin protected_oe property

Start point
protected double begin
Résultat double

end protected_oe property

End point
protected double end
Résultat double

f protected_oe property

The function
protected Func f
Résultat Func

h protected_oe property

Delta
protected double h
Résultat double

pointsNum protected_oe property

Number of points
protected int pointsNum
Résultat int

y0 protected_oe property

Start condition
protected double y0
Résultat double