类 TestProblem3
java.lang.Object
org.hipparchus.ode.TestProblemAbstract
org.hipparchus.ode.TestProblem3
- 所有已实现的接口:
-
OrdinaryDifferentialEquation
该类用于ODE积分器的junit测试。
具体问题如下微分方程:
y1'' = -y1/r^3 y1 (0) = 1-e y1' (0) = 0 y2'' = -y2/r^3 y2 (0) = 0 y2' (0) =sqrt((1+e)/(1-e)) r = sqrt (y1^2 + y2^2), e = 0.9这是平面上的两体问题,可以通过开普勒方程解决。
y1 (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
-
构造器详细资料
-
TestProblem3
public TestProblem3(double e) 简单构造函数。- 参数:
-
e
- 离心率
-
TestProblem3
public TestProblem3()简单构造函数。
-
-
方法详细资料
-
doComputeDerivatives
public double[] doComputeDerivatives(double t, double[] y) - 指定者:
-
doComputeDerivatives
在类中TestProblemAbstract
-
computeTheoreticalState
public double[] computeTheoreticalState(double t) 从类复制的说明:TestProblemAbstract
计算指定时间的理论状态。- 指定者:
-
computeTheoreticalState
在类中TestProblemAbstract
- 参数:
-
t
- 需要状态的时间 - 返回:
- 时间t时的状态向量
-