Home | History | Annotate | Download | only in nonstiff

Lines Matching refs:stepSize

35  * one: it uses adaptive stepsize to implement error control, whereas
115 * <li>it allows to extend the methods in order to support adaptive stepsize.</li>
217 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
222 double hNew = stepSize;
232 stepSize = hNew;
247 // reject the step and attempt to reduce error by stepsize control
249 hNew = filterStep(stepSize * factor, forward, false);
256 final double stepEnd = stepStart + stepSize;
267 predictedScaled[j] = stepSize * yDot[j];
271 interpolator.reinitialize(stepEnd, stepSize, predictedScaled, nordsieckTmp);
278 interpolator.reinitialize(stepEnd, stepSize, scaled, nordsieck);
289 interpolator.reinitialize(stepStart, stepSize, scaled, nordsieck);
292 // stepsize control for next step
294 final double scaledH = stepSize * factor;