4th order differential equation

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 Comments

madhan ravi
madhan ravi on 31 Oct 2018
Edited: madhan ravi on 31 Oct 2018
whats EI? upload the question in latex form
EI usually represents the stiffness matrix

Sign in to comment.

 Accepted Answer

madhan ravi
madhan ravi on 31 Oct 2018
Edited: madhan ravi on 31 Oct 2018
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)

More Answers (1)

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!

Categories

Community Treasure Hunt

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

Start Hunting!