Package cnuphys.swim
Class NumStepStopper
java.lang.Object
cnuphys.swim.NumStepStopper
- All Implemented Interfaces:
- IStopper
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiondoubleGet the final independent variable (typically path length in meters)voidsetFinalT(double finalPathLength) Set the final independent variable (typically path length in meters)booleanstopIntegration(double t, double[] y) Given the current state of the integration, should we stop?Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface cnuphys.rk4.IStopperterminateIntegration
- 
Field Details- 
_finalPathLengthprotected double _finalPathLength
 
- 
- 
Constructor Details- 
NumStepStopperpublic NumStepStopper(int numStep) 
 
- 
- 
Method Details- 
stopIntegrationpublic boolean stopIntegration(double t, double[] y) Description copied from interface:IStopperGiven the current state of the integration, should we stop? This allows the integration to stop, for example, if some distance from the origin has been exceeded or if the independent variable passes some threshold. It won't be precise, because the check may not happen on every step, but it should be close.- Specified by:
- stopIntegrationin interface- IStopper
- Parameters:
- t- the current value of the independent variable (typically pathlength)
- y- the current state vector (typically [x, y, z, vx, vy, vz])
- Returns:
- trueif we should stop now.
 
- 
getFinalTpublic double getFinalT()Description copied from interface:IStopperGet the final independent variable (typically path length in meters)
- 
setFinalTpublic void setFinalT(double finalPathLength) Description copied from interface:IStopperSet the final independent variable (typically path length in meters)
 
-