• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java AdamsBashforthIntegrator类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.commons.math3.ode.nonstiff.AdamsBashforthIntegrator的典型用法代码示例。如果您正苦于以下问题:Java AdamsBashforthIntegrator类的具体用法?Java AdamsBashforthIntegrator怎么用?Java AdamsBashforthIntegrator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



AdamsBashforthIntegrator类属于org.apache.commons.math3.ode.nonstiff包,在下文中一共展示了AdamsBashforthIntegrator类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: derivativesConsistency

import org.apache.commons.math3.ode.nonstiff.AdamsBashforthIntegrator; //导入依赖的package包/类
@Test
public void derivativesConsistency()
    throws NumberIsTooSmallException, DimensionMismatchException,
           MaxCountExceededException, NoBracketingException {
    TestProblem3 pb = new TestProblem3();
    AdamsBashforthIntegrator integ = new AdamsBashforthIntegrator(4, 0.0, 1.0, 1.0e-10, 1.0e-10);
    StepInterpolatorTestUtils.checkDerivativesConsistency(integ, pb, 5e-9);
}
 
开发者ID:Quanticol,项目名称:CARMA,代码行数:9,代码来源:NordsieckStepInterpolatorTest.java


示例2: AdamsBashforthSolver

import org.apache.commons.math3.ode.nonstiff.AdamsBashforthIntegrator; //导入依赖的package包/类
public AdamsBashforthSolver(final int nSteps, final double minStep, final double maxStep,
		final double scalAbsoluteTolerance, final double scalRelativeTolerance,
		final GamaMap<String, IList<Double>> integrated_val) {
	super((minStep + maxStep) / 2,
			new AdamsBashforthIntegrator(nSteps, minStep, maxStep, scalAbsoluteTolerance, scalRelativeTolerance),
			integrated_val);
}
 
开发者ID:gama-platform,项目名称:gama,代码行数:8,代码来源:AdamsBashforthSolver.java


示例3: serialization

import org.apache.commons.math3.ode.nonstiff.AdamsBashforthIntegrator; //导入依赖的package包/类
@Test
public void serialization()
throws IOException, ClassNotFoundException,
       NumberIsTooSmallException, DimensionMismatchException,
       MaxCountExceededException, NoBracketingException {

    TestProblem1 pb = new TestProblem1();
    AdamsBashforthIntegrator integ = new AdamsBashforthIntegrator(4, 0.0, 1.0, 1.0e-10, 1.0e-10);
    integ.addStepHandler(new ContinuousOutputModel());
    integ.integrate(pb,
                    pb.getInitialTime(), pb.getInitialState(),
                    pb.getFinalTime(), new double[pb.getDimension()]);

    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    ObjectOutputStream    oos = new ObjectOutputStream(bos);
    for (StepHandler handler : integ.getStepHandlers()) {
        oos.writeObject(handler);
    }

    Assert.assertTrue(bos.size () >  25500);
    Assert.assertTrue(bos.size () <  26500);

    ByteArrayInputStream  bis = new ByteArrayInputStream(bos.toByteArray());
    ObjectInputStream     ois = new ObjectInputStream(bis);
    ContinuousOutputModel cm  = (ContinuousOutputModel) ois.readObject();

    Random random = new Random(347588535632l);
    double maxError = 0.0;
    for (int i = 0; i < 1000; ++i) {
        double r = random.nextDouble();
        double time = r * pb.getInitialTime() + (1.0 - r) * pb.getFinalTime();
        cm.setInterpolatedTime(time);
        double[] interpolatedY = cm.getInterpolatedState ();
        double[] theoreticalY  = pb.computeTheoreticalState(time);
        double dx = interpolatedY[0] - theoreticalY[0];
        double dy = interpolatedY[1] - theoreticalY[1];
        double error = dx * dx + dy * dy;
        if (error > maxError) {
            maxError = error;
        }
    }

    Assert.assertTrue(maxError < 1.0e-6);

}
 
开发者ID:Quanticol,项目名称:CARMA,代码行数:46,代码来源:NordsieckStepInterpolatorTest.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Files类代码示例发布时间:2022-05-22
下一篇:
Java ServerConfigurationService类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap