function[BarLength]=BarsLength(x,y,ele) BarLength=zeros(size(ele,1),1); for iEle =1: size(ele,1) BarLength(iEle,1)=((x(ele(iEle,2))-x(ele(iEle,1)))^2+(y(ele(iEle,2))-... y(ele(iEle,1)))^2)^0.5; end end
function[R]=CoordTransform(x,y,BarLength) l=(x(2)-x(1))/BarLength; m=(y(2)-y(1))/BarLength; R=[l m 00;00 l m]; end
function[Ke] = BarElementKe(prop,R,BarLength) E = prop(1);A = prop(2); ke=A*E/BarLength*[1-1;-11]; Ke=R'*ke*R; end
也可使用数值积分方案来计算单元刚度矩阵,具体原理将在介绍平面单元时讲解。
functionElementStiffnessMatrix = gaussIntegrate2DBarElement(prop, R,L) E = prop(1);A = prop(2); gaussPoints = [-1/sqrt(3), 1/sqrt(3)]; weights = [1, 1]; K = zeros(2, 2); fori = 1:length(gaussPoints) xi = gaussPoints(i); w = weights(i); dN_dxi = [-1/2, 1/2]; J = L / 2; B = dN_dxi / J; k = w * (B' * E * A * B) * J; K = K + k; end ElementStiffnessMatrix = R'*K*R; end