本文整理汇总了Java中org.apache.commons.math3.ode.nonstiff.HighamHall54Integrator类的典型用法代码示例。如果您正苦于以下问题:Java HighamHall54Integrator类的具体用法?Java HighamHall54Integrator怎么用?Java HighamHall54Integrator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
HighamHall54Integrator类属于org.apache.commons.math3.ode.nonstiff包,在下文中一共展示了HighamHall54Integrator类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: HierarchicalODERKSimulator
import org.apache.commons.math3.ode.nonstiff.HighamHall54Integrator; //导入依赖的package包/类
public HierarchicalODERKSimulator(String SBMLFileName, String rootDirectory,
String outputDirectory, int runs, double timeLimit, double maxTimeStep,
long randomSeed, double printInterval,
double stoichAmpValue, String[] interestingSpecies,
int numSteps, double relError, double absError, String quantityType,
double initialTime, double outputStartTime,
boolean print) throws IOException, XMLStreamException, BioSimException {
super(SBMLFileName, rootDirectory, outputDirectory, randomSeed, runs,
timeLimit, maxTimeStep, 0.0, printInterval, stoichAmpValue,
interestingSpecies, quantityType, initialTime,
outputStartTime, SimType.HODE);
this.relativeError = relError;
this.absoluteError = absError;
this.isSingleStep = false;
this.absoluteError = absoluteError == 0 ? 1e-12 : absoluteError;
this.relativeError = absoluteError == 0 ? 1e-9 : relativeError;
this.printTime.setValue(outputStartTime);
this.vectorWrapper = new VectorWrapper(initValues);
if (numSteps > 0) {
setPrintInterval(timeLimit / numSteps);
}
odecalc = new HighamHall54Integrator(getMinTimeStep(), getMaxTimeStep(),
absoluteError, relativeError);
isInitialized = false;
}
示例2: HighamHall54Solver
import org.apache.commons.math3.ode.nonstiff.HighamHall54Integrator; //导入依赖的package包/类
public HighamHall54Solver(final double minStep, final double maxStep, final double scalAbsoluteTolerance,
final double scalRelativeTolerance, final GamaMap<String, IList<Double>> integrated_val) {
super((minStep + maxStep) / 2,
new HighamHall54Integrator(minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance),
integrated_val);
}