HomeSort by relevance Sort by last modified time
    Searched refs:stepStart (Results 1 - 8 of 8) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
AdamsBashforthIntegrator.java 217 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
218 interpolator.storeTime(stepStart);
256 final double stepEnd = stepStart + stepSize;
275 stepStart = acceptStep(interpolator, y, yDot, t);
283 interpolator.storeTime(stepStart);
288 start(stepStart, y, t);
289 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
295 final double nextT = stepStart + scaledH;
299 final double filteredNextT = stepStart + hNew;
302 hNew = t - stepStart;
    [all...]
RungeKuttaIntegrator.java 129 stepStart = t0;
143 computeDerivatives(stepStart, y, yDotK[0]);
156 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
170 interpolator.storeTime(stepStart + stepSize);
173 stepStart = acceptStep(interpolator, y, yDotTmp, t);
178 interpolator.storeTime(stepStart);
181 final double nextT = stepStart + stepSize;
184 stepSize = t - stepStart;
190 final double stopTime = stepStart;
191 stepStart = Double.NaN
    [all...]
AdamsMoultonIntegrator.java 237 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
238 interpolator.storeTime(stepStart);
252 final double stepEnd = stepStart + stepSize;
278 final double stepEnd = stepStart + stepSize;
291 interpolator.storeTime(stepStart);
294 stepStart = acceptStep(interpolator, y, yDot, t);
301 interpolator.storeTime(stepStart);
306 start(stepStart, y, t);
307 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
314 final double nextT = stepStart + scaledH
    [all...]
EmbeddedRungeKuttaIntegrator.java 223 stepStart = t0;
243 computeDerivatives(stepStart, y, yDotK[0]);
258 stepStart, y, yDotK[0], yTmp, yDotK[1]);
275 computeDerivatives(stepStart + c[k-1] * stepSize, yTmp, yDotK[k]);
301 interpolator.storeTime(stepStart + stepSize);
304 stepStart = acceptStep(interpolator, y, yDotTmp, t);
309 interpolator.storeTime(stepStart);
320 final double nextT = stepStart + scaledH;
324 final double filteredNextT = stepStart + hNew;
327 hNew = t - stepStart;
    [all...]
GraggBulirschStoerIntegrator.java 625 stepStart = t0;
649 computeDerivatives(stepStart, y, yDot0);
655 stepStart, y, yDot0, yTmp, yTmpDot);
665 if ((forward && (stepStart + stepSize > t)) ||
666 ((! forward) && (stepStart + stepSize < t))) {
667 stepSize = t - stepStart;
669 final double nextT = stepStart + stepSize;
679 if ( ! tryStep(stepStart, y, stepSize, k, scale, fk[k],
809 computeDerivatives(stepStart + stepSize, y1, yDot1);
880 interpolator.storeTime(stepStart + stepSize)
    [all...]
AdaptiveStepsizeIntegrator.java 326 return stepStart;
331 stepStart = Double.NaN;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
AbstractIntegrator.java 52 protected double stepStart;
87 stepStart = Double.NaN;
161 return stepStart;
MultistepIntegrator.java 329 stepStart = prev;

Completed in 92 milliseconds