how to solve Beam on elastic foundation equation

16 次查看(过去 30 天)
Hi I want to solve the below equation of an infinite steel beam with a modulus of rigidity as 'EI' resting on an elastic foundation represented by springs with stiffness 'k' with MATLAB.
BOEF.JPG
the boundary conditions are zero displacement at extreme ends and zero slope under the load. Any help in this regards will be highly appreciated, thanks

回答(1 个)

KSSV
KSSV 2020-2-12
You can use symbolic calcultations. Like below:
syms E I k w(x)
eqn = E*I*diff(w,x,4)+k*w == 0 ;
sol = dsolve(eqn) ;
You can apply boundary conditions also. Refer more here:
  1 个评论
MB S
MB S 2020-2-17
Dear KSSV! thank you so much for your prompt response, its very helping, but being a new user I don`t know much about applying the boundary conditions.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Assembly 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by