Question: 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

% 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!