类 TestProblem1
java.lang.Object
org.hipparchus.ode.TestProblemAbstract
org.hipparchus.ode.TestProblem1
- 所有已实现的接口:
-
OrdinaryDifferentialEquation
该类用于ODE积分器的junit测试中。
具体问题如下微分方程:
y' = -y该方程的解是一个简单的指数函数:
y (t) = y (t0) exp (t0-t)
-
构造器概要
-
方法概要
修饰符和类型方法说明double[]
computeTheoreticalState
(double t) 计算指定时间的理论状态。double[]
doComputeDerivatives
(double t, double[] y) 从类继承的方法 org.hipparchus.ode.TestProblemAbstract
computeDerivatives, getCalls, getDimension, getErrorScale, getEventDetectors, getFinalTime, getInitialState, getInitialTime, getTheoreticalEventsTimes
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 org.hipparchus.ode.OrdinaryDifferentialEquation
init
-
构造器详细资料
-
TestProblem1
public TestProblem1()简单构造函数。
-
-
方法详细资料
-
doComputeDerivatives
public double[] doComputeDerivatives(double t, double[] y) - 指定者:
-
doComputeDerivatives
在类中TestProblemAbstract
-
computeTheoreticalState
public double[] computeTheoreticalState(double t) 从类复制的说明:TestProblemAbstract
计算指定时间的理论状态。- 指定者:
-
computeTheoreticalState
在类中TestProblemAbstract
- 参数:
-
t
- 需要状态的时间 - 返回:
- 时间t时的状态向量
-