Feeds
질문
Finding acceleration using ODE45.
I am solving a set of equations of motion using ODE45. ODE45 works perfectly to give me the displacement and velocity of the mov...
거의 8년 전 | 답변 수: 0 | 0
0
답변질문
Can Integrate a function of of displacement with time?
F =@(x1, x2) c.Ab.*(c.P0.*(c.V0./(c.Ab.*(x1 + x2))).^c.gam1 - c.Pa); x1 and x2 are both matrices with distances. I also hav...
거의 8년 전 | 답변 수: 0 | 0
0
답변질문
I have to solve a numerical solution for the internal ballistics of a 40mm grenade launcher. I am struggling to get the ode45 solver to run my function. This is only a very simple version of the problem to get the simulation running.
y0 = [xp0 , 0 , 0 , 0]; % Initial conditions [time, statevalues] = ode45(@func , [0 3] , y0); hold on; plot(ti...
거의 8년 전 | 답변 수: 1 | 0
