0

我正在做一个实验程序。我需要从一组实验数据中找到海拔。我只记录时间和加速度数据,并使用前向欧拉法解决双重积分问题。我写的代码是这样的。

public void forward_method(double[] acceleration, double[] time){
    double deltaT = time[1] - time[0];
    double velocity[] = new double[time.length];
    double displacement[] = new double[time.lenght];

    velocity[0] = 0; 
    displacement[0] = 0;

   for(int i = 0; i < acceleration.length - 1; i++){
       velocity[i + 1] = velocity[i] * acceleration[i] * deltaT;
       displacement[i + 1] = displacement[i] * velocity[i] * deltaT;
   }
}

找到速度和位移是否正确?如何修改它以找到海拔?

4

1 回答 1

0

不,那是错误的。正确的是

   velocity[i + 1] = velocity[i] + acceleration[i] * deltaT;
   displacement[i + 1] = displacement[i] + velocity[i] * deltaT;
于 2016-12-23T18:42:30.937 回答