Hello, Can anyone help me with solving below and how to get "y" is as following:
EI*(d^4v/dx^4) +P*z= 0
Author said that using Mathlab, following equation is obtained.
y= - Pz^5/120*EI+C1*z^3/6+C2*z2/2+C3+C4

Antworten (1)

Ameer Hamza
Ameer Hamza am 3 Dez. 2020
Bearbeitet: Ameer Hamza am 3 Dez. 2020

0 Stimmen

If you have symbolic toolbox, then try this
syms v(z) P EI
eq = EI*diff(v,4) == -P*z
v = dsolve(eq)
Result from live editor
Note that, I assumed in your question, d^4v/dz^4

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange

Bearbeitet:

am 3 Dez. 2020

Community Treasure Hunt

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

Start Hunting!

Translated by