Question

The plane truss is made of three members and is loaded with force P as shown. Each member has the same E A and Las shown below. Determine, a the displacements at node 1, by the reaction forces. Show all your work. 2-D Truss Element Stiffness Matrix sin cos6 cos26 sin 0 cos, 0 cos 26 E, A, L sin 0 coso sin 6 ke) AE sin cos sin E, A, L C3) sin 0 cos 0 L cos 0 sin 0 cos cos 6 sin sin 0 cos 60 6 sin Ocos sin 2 E, A, L a b then A AL- c a Recall that if A 3

0 0
Add a comment Improve this question Transcribed image text
Answer #1

function TrussElementStiffnessMatrixMethod
   elasticity = 10200000; % aluminium modulus elasticity
   area = 200; % area cross-section
   L = 1; % bar length
   elasticity_area = elasticity*area;
   nodes = [1 4; 2 4; 3 4; 4 6; 3 6; 3 5; 5 6; 5 7; 6 7];
   coordinates = [0 1 ;0 0 ;1 1 ;1 0 ;2 1 ;2 0 ;3 1 ];
   elements = size(nodes,1);
   totalNodes = size(coordinates,1);
   x_coord = coordinates(:,1);
   y_coord = coordinates(:,2);
   degree_freedom = 2 * totalNodes;
   u_displacement = zeros(degree_freedom,1); % displacement
   reactionForces = zeros(degree_freedom,1); % solution for (b)
   % gravitational force loads
   reactionForces(4)= -2500;
   reactionForces(5)= -2500;
   reactionForces(6)= -2500;
   reactionForces(7)= -5000;
   % stiffnessMatrix matrix
   [stiffnessMatrix]=formStiffness2Dtruss(degree_freedom,elements,nodes,totalNodes,coordinates,x_coord,y_coord,elasticity_area);
   % boundary-conditions
   prescribed_freedom = [0 -100 0 0 50 0 10]';
   % a) final displacements answer
   displacements = stiffnessMatrix\prescribed_freedom;
   disp('displacements: ')
   disp(displacements)
   fprintf('reactionForces: \n')
   disp(reactionForces)
end
function stiffnessMatrix = formStiffness2Dtruss(degree_freedom,elements,nodes,totalNodes,coordinates,x_coord,y_coord,elasticity_area)
   stiffnessMatrix = zeros(totalNodes);
   for e=1:elements;
       % elementDof: element degrees of freedom (Dof)
       degree_freedom=nodes(e,:) ;
       stiffnessMatrix(degree_freedom,degree_freedom)=stiffnessMatrix(degree_freedom,degree_freedom)+[1 -1;-1 1];
   end
end
%caling method
TrussElementStiffnessMatrixMethod();

OUTPUT

Add a comment
Know the answer?
Add Answer to:
The plane truss is made of three members and is loaded with force P as shown....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT