当前位置: 首页>>代码示例>>Java>>正文


Java HighamHall54Integrator类代码示例

本文整理汇总了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;
}
 
开发者ID:MyersResearchGroup,项目名称:iBioSim,代码行数:26,代码来源:HierarchicalODERKSimulator.java

示例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);
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:7,代码来源:HighamHall54Solver.java


注:本文中的org.apache.commons.math3.ode.nonstiff.HighamHall54Integrator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。