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 个评论

whats EI? upload the question in latex form
EI usually represents the stiffness matrix

请先登录,再进行评论。

 采纳的回答

madhan ravi
madhan ravi 2018-10-31
编辑:madhan ravi 2018-10-31
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)

更多回答(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!

类别

帮助中心File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by