Hello, Can anyone help me with solving below?
EI(d^4v/dx^4) = w
Boundary conditions are
v(x=0) = 0 ; v(x=L)= 0; dv/dx(x=0) = 0 ; dv/dx(x=L) = 0

2 commentaires

madhan ravi
madhan ravi le 31 Oct 2018
Modifié(e) : madhan ravi le 31 Oct 2018
whats EI? upload the question in latex form
Stephan
Stephan le 31 Oct 2018
EI usually represents the stiffness matrix

Connectez-vous pour commenter.

 Réponse acceptée

madhan ravi
madhan ravi le 31 Oct 2018
Modifié(e) : madhan ravi le 31 Oct 2018

0 votes

syms y(x) w EI L
c1=y(0)==0
y1 = diff(y,x)
c2=y1(0)==0
c3=y(L)==0
c4=y1(L)==0
y(x)=dsolve(diff(y,x,4)==w/EI,c1,c2,c3,c4)

2 commentaires

Ahmed Al Jasar
Ahmed Al Jasar le 31 Oct 2018
Thank you so much.
madhan ravi
madhan ravi le 31 Oct 2018
Anytime :)

Connectez-vous pour commenter.

Plus de réponses (1)

Ahmed Al Jasar
Ahmed Al Jasar le 31 Oct 2018

0 votes

y''''=w/EI, y(0)=0, y'(0)=0 ,y(L)=0, y'(L)=0
I am trying to find a deflection in a beam y(x), which is dependent on the load(w) and the stiffness (EI), E and I are constant so I guess I need to do all of them symbolic!

Community Treasure Hunt

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

Start Hunting!

Translated by