Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Can you create a program that solves a. for both questions. % Initialization of storage vectors for forces in truss members DF & DG F_DF
Can you create a program that solves a. for both questions.
% Initialization of storage vectors for forces in truss members DF & DG F_DF = zeros(length (F_D), 1)'; F_DG = zeros (length (F_D),1)'; % Rigid body equilibrium equation solutions for i=1:length(F_D) % Truss-level equilibrium equation solutions % (HINT: Only 1 truss-level equation is necessary if MoS will be applied using right-hand section) % MODIFY BY ADDING TRUSS-LEVEL EQUILIBIRUM EQUATION SOLUTION(S) HERE % Section-level equilibrium equation solutions % (HINT: Apply MoS using right-hand section, and assume all member forces drawn in section FBD are in tension) % % F_DF(1) = MODIFY; F_DG(1) = MODIFY; end % Plot generation figure(2) plot (F_D, F_DF, F_D, F_DG); title('Effect of Applied Load at D on Forces in Members DF & DG'); xlabel('Applied Load at D (kips)'); ylabel('Member Forces (kips)'); legend('F_D_F', 'F_D_G', 'Location', 'Northwest')
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started