beamelementstiffness.m

来自「matlab在有限元中应用的源程序及命令 下载后可直接解压」· M 代码 · 共 15 行

M
15
字号
function y = BeamElementStiffness(E,I,L)
%BeamElementStiffness   This function returns the element 
%                       stiffness matrix for a beam   
%                       element with modulus of elasticity E,  
%                       moment of inertia I, and length L.
%                       The size of the element stiffness 
%                       matrix is 4 x 4.
y = E*I/(L*L*L)*[12 6*L -12 6*L ; 6*L 4*L*L -6*L 2*L*L ;
   -12 -6*L 12 -6*L ; 6*L 2*L*L -6*L 4*L*L];





⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?