I am trying to figure out how to put this in and i keep running into issues can anyone help?

1 Kommentar

Daniel Bucknavich
Daniel Bucknavich am 25 Mär. 2022
here is my code
eq1= sym('(v*(8)==(sqrt(((95*9.81)/0.24)))*(tan(h))*(sqrt(((0.24*9.81)/95)*8)))');
eq2= sym('h*(8)==(95/0.24)*log(cos(h)*(sqrt((0.24*9.81)/95)*8))');
sol = solve(eq1,'v',eq2,'h');

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Sam Chak
Sam Chak am 25 Mär. 2022
Bearbeitet: Sam Chak am 25 Mär. 2022

2 Stimmen

This is not a direct solution, but it should help you to visualize the physics of skydiving and terminal velocity, and hopefully giving you the idea to finding and when sec.
m = 95;
rho = 0.24;
g = 9.8;
t = 0:0.1:20;
v = sqrt(m*g/rho)*tanh(sqrt(rho*g/m)*t);
y = -(m/rho)*log(cosh(sqrt(rho*g/m)*t)); % purposely added a 'minus' sign
plot(t, v, t, y)

Weitere Antworten (1)

Torsten
Torsten am 25 Mär. 2022

1 Stimme

v = sqrt(95*9.8/0.24)*tanh(sqrt(0.24*9.8/95)*8)
y = 95/0.24*log(cosh(sqrt(0.24*9.8/95)*8))

Kategorien

Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by