Home
last modified time | relevance | path

Searched refs:oneMinusThetaH (Results 1 – 12 of 12) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
DAbstractStepInterpolator.java335 double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
343 final double oneMinusThetaH = globalCurrentTime - interpolatedTime; in getInterpolatedState() local
344 final double theta = (h == 0) ? 0 : (h - oneMinusThetaH) / h; in getInterpolatedState()
345 computeInterpolatedStateAndDerivatives(theta, oneMinusThetaH); in getInterpolatedState()
358 final double oneMinusThetaH = globalCurrentTime - interpolatedTime; in getInterpolatedDerivatives() local
359 final double theta = (h == 0) ? 0 : (h - oneMinusThetaH) / h; in getInterpolatedDerivatives()
360 computeInterpolatedStateAndDerivatives(theta, oneMinusThetaH); in getInterpolatedDerivatives()
DDummyStepInterpolator.java101 …cted void computeInterpolatedStateAndDerivatives(final double theta, final double oneMinusThetaH) { in computeInterpolatedStateAndDerivatives() argument
DNordsieckStepInterpolator.java187 …cted void computeInterpolatedStateAndDerivatives(final double theta, final double oneMinusThetaH) { in computeInterpolatedStateAndDerivatives() argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DMidpointStepInterpolator.java83 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
86 final double coeff1 = oneMinusThetaH * theta; in computeInterpolatedStateAndDerivatives()
87 final double coeff2 = oneMinusThetaH * (1.0 + theta); in computeInterpolatedStateAndDerivatives()
DEulerStepInterpolator.java81 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
85 interpolatedState[i] = currentState[i] - oneMinusThetaH * yDotK[0][i]; in computeInterpolatedStateAndDerivatives()
DClassicalRungeKuttaStepInterpolator.java85 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
91 final double s = oneMinusThetaH / 6.0; in computeInterpolatedStateAndDerivatives()
DThreeEighthesStepInterpolator.java88 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
92 final double s = oneMinusThetaH / 8.0; in computeInterpolatedStateAndDerivatives()
DGillStepInterpolator.java93 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
98 final double s = oneMinusThetaH / 6.0; in computeInterpolatedStateAndDerivatives()
DDormandPrince54StepInterpolator.java168 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
208 … currentState[i] - oneMinusThetaH * (v1[i] - theta * (v2[i] + theta * (v3[i] + eta * v4[i]))); in computeInterpolatedStateAndDerivatives()
DHighamHall54StepInterpolator.java73 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
DDormandPrince853StepInterpolator.java314 final double oneMinusThetaH) in computeInterpolatedStateAndDerivatives() argument
372 oneMinusThetaH * (v[0][i] - in computeInterpolatedStateAndDerivatives()
DGraggBulirschStoerStepInterpolator.java312 final double oneMinusThetaH) { in computeInterpolatedStateAndDerivatives() argument