- 积分
- 992
- 注册时间
- 2014-12-4
- 最后登录
- 1970-1-1
- 打卡等级:偶尔看看
- 打卡总天数:105
- 打卡总奖励:319
|
发表于 2017-11-17 12:25:07
|
显示全部楼层
没有! V = Q / A是错误的
你不能告诉我执行器和负载如何加速V = Q / A
有一个重要的等式丢失了。
dP/dt=E*(Q(SpoolPosition,Ps)-velocity*Ap)/(DeadVolume+position*Ap)
P(t)=P0+integral of E*(Q(t)-velocity*Ap)/(DeadVolume+position*Ap) dt
E是油的体积模量。
延伸时速度为正值
扩展时位置增加
注意分子有(Q-v * A)来计算压力的变化率
使用龙格库塔进行整合
y'= D(t,y)
y是州参数的矢量
在我的模拟中,有9个参数。 D(t,y)是查找这9个参数的变化率的函数。 使用龙格库塔进行整合。
Use Runge-Kutta to integrate
y'=f(t,y)
y is a vector of state paramaters
In my simulation y has 9 parameters. D(t,y) is a function that finds the rate of change of those 9 parameters. Use Runge-Kutta to integrate y.
|
|