Uses of Class
cnuphys.rk4.RungeKuttaException
Packages that use RungeKuttaException
- 
Uses of RungeKuttaException in cnuphys.rk4Methods in cnuphys.rk4 that throw RungeKuttaExceptionModifier and TypeMethodDescriptionintRungeKutta.adaptiveStep(double[] yo, double[] yf, double to, double tf, double h, double maxH, IDerivative deriv, IStopper stopper, ButcherTableau tableau, double[] relTolerance, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize This version uses an IRk4Listener to notify the listener that the next step has been advanced.intRungeKutta.adaptiveStep(double[] yo, double to, double tf, double h, IDerivative deriv, IStopper stopper, IRkListener listener, ButcherTableau tableau, double[] relTolerance, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize This version uses an IRk4Listener to notify the listener that the next step has been advanced.intRungeKutta.adaptiveStep(double[] yo, double to, double tf, double h, IDerivative deriv, IStopper stopper, IRkListener listener, ButcherTableau tableau, double eps, double[] yscale, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize.intRungeKutta.adaptiveStep(double[] yo, double to, double tf, double h, List<Double> t, List<double[]> y, IDerivative deriv, IStopper stopper, ButcherTableau tableau, double[] relTolerance, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize and a tolerance vector.intRungeKutta.adaptiveStep(double[] yo, double to, double tf, double h, List<Double> t, List<double[]> y, IDerivative deriv, IStopper stopper, ButcherTableau tableau, double eps, double[] yscale, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize.intRungeKuttaZ.adaptiveStepToTf(double[] yo, double to, double tf, double h, IDerivative deriv, IStopper stopper, IRkListener listener, double[] relTolerance, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize This version uses an IRk4Listener to notify the listener that the next step has been advanced.intRungeKuttaZ.adaptiveStepToTf(double[] yo, double to, double tf, double h, List<Double> t, List<double[]> y, IDerivative deriv, IStopper stopper, double[] relTolerance, double[] hdata) Integrator that uses the RungeKutta advance with a Butcher Tableau and adaptive stepsize and a tolerance vector.
- 
Uses of RungeKuttaException in cnuphys.swimMethods in cnuphys.swim that throw RungeKuttaExceptionModifier and TypeMethodDescriptionSwimmer.sectorSwim(int sector, int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double fixedZ, double accuracy, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle in a sector coordinate system.Swimmer.sectorSwim(int sector, int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double fixedZ, double accuracy, double maxRad, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle in a sector coordinate system.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double fixedZ, double accuracy, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double fixedZ, double accuracy, double maxRad, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double normX, double normY, double normZ, double d, double accuracy, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double normX, double normY, double normZ, double d, double accuracy, double maxRad, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, IStopper stopper, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, IStopper stopper, double maxPathLength, double stepSize, double tolerance, double[] hdata) Swims a charged particle.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, IStopper stopper, double s0, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.intSwimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, IStopper stopper, IRkListener listener, double maxPathLength, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle for the listener mode, where a callback is called for each advance of the integration Uses an adaptive stepsize algorithm.intSwimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, IStopper stopper, IRkListener listener, double maxPathLength, double stepSize, double tolerance, double[] hdata) Swims a Lund particle for the listener mode, where a callback is called for each advance of the integration Uses an adaptive stepsize algorithm.Swimmer.swim(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, Plane plane, double accuracy, double sMax, double stepSize, double[] relTolerance, double[] hdata) Swims a charged particle.voidSwimmer.swimCylinder(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double[] centerLineP1, double[] centerLineP2, double radius, double accuracy, double sMax, double stepSize, double[] relTolerance, AdaptiveSwimResult result) Swims a particle with a built in stopper at the boundary of an arbitrary cylinder.voidSwimmer.swimPlane(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double normX, double normY, double normZ, double pointX, double pointY, double pointZ, double accuracy, double sMax, double stepSize, double[] relTolerance, AdaptiveSwimResult result) voidSwimmer.swimRho(int charge, double xo, double yo, double zo, double momentum, double theta, double phi, double fixedRho, double accuracy, double sMax, double stepSize, double[] relTolerance, AdaptiveSwimResult result) Swims a particle with a built in stopper for the rho coordinate.