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

1 comentario

Daniel Bucknavich
Daniel Bucknavich el 25 de Mzo. de 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');

Iniciar sesión para comentar.

 Respuesta aceptada

Sam Chak
Sam Chak el 25 de Mzo. de 2022
Editada: Sam Chak el 25 de Mzo. de 2022

2 votos

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)

Más respuestas (1)

Torsten
Torsten el 25 de Mzo. de 2022

1 voto

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))

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Preguntada:

el 25 de Mzo. de 2022

Comentada:

el 25 de Mzo. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by