Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

(matlab code only)(matlab code only)(matlab code only)(matlab code only)(matlab code only) Perform the same computation as in Sec. 12.2, but for the truss depicted below.

(matlab code only)(matlab code only)(matlab code only)(matlab code only)(matlab code only)
Perform the same computation as in Sec. 12.2, but for the truss depicted below.
image text in transcribed
image text in transcribed
pls write the code for the truss depicted below, the code above is sample code from another truss
image text in transcribed
% Case Study 12.2: Statically determinate truss A = (-cosd (30) O cosd (60) 0 0 0; sind(30) O sind (60) 0 0 0; cosd(30) 10100; sind(30) 0 0 0 1 0; 01 cosd(60) O O 0; 00 sind (60) 0 0 1]; b = [0 -1000 O O O O]'; $ the easy way... 8 X =A\b; & forward elimination step n = 6; & dimension of A for k=1:n-1 % partial pivot (swap row k with the row that has max value) [value, index] = max(abs (A(:n,k))); $max function returns index too swap - k+index-1; % row index to swap with k temp = A(swap, :); $ need a temporary variable to store row A(swap, :) = A(k, :); A(K,:) = temp; $ also swap elements of b temp = b(swap); b(swap) = b(k); b(k) = temp; for i=k+1:n factor = A(1,k)/A(k, k); Ali, :) = Ali,:) - factor*A(k, :); b(i) = b(i) - factor+b(k); end end $check: is A upper triangular now? disp(A); & back substitution x = zeros(n,1); x(n) b(n)/ A(n,n); for i=n-1:-1:1 x(i) = (b(i) - A(i,i+1:n)*x(i+1:n)) / Ali, i); end disp(x); $ the answer! (we hope.) 400 200 45 45 60 30 % Case Study 12.2: Statically determinate truss A = (-cosd (30) O cosd (60) 0 0 0; sind(30) O sind (60) 0 0 0; cosd(30) 10100; sind(30) 0 0 0 1 0; 01 cosd(60) O O 0; 00 sind (60) 0 0 1]; b = [0 -1000 O O O O]'; $ the easy way... 8 X =A\b; & forward elimination step n = 6; & dimension of A for k=1:n-1 % partial pivot (swap row k with the row that has max value) [value, index] = max(abs (A(:n,k))); $max function returns index too swap - k+index-1; % row index to swap with k temp = A(swap, :); $ need a temporary variable to store row A(swap, :) = A(k, :); A(K,:) = temp; $ also swap elements of b temp = b(swap); b(swap) = b(k); b(k) = temp; for i=k+1:n factor = A(1,k)/A(k, k); Ali, :) = Ali,:) - factor*A(k, :); b(i) = b(i) - factor+b(k); end end $check: is A upper triangular now? disp(A); & back substitution x = zeros(n,1); x(n) b(n)/ A(n,n); for i=n-1:-1:1 x(i) = (b(i) - A(i,i+1:n)*x(i+1:n)) / Ali, i); end disp(x); $ the answer! (we hope.) 400 200 45 45 60 30

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database System

Authors: Elmasri Ramez And Navathe Shamkant

7th Edition

978-9332582705

More Books

Students also viewed these Databases questions

Question

d. How will lack of trust be handled?

Answered: 1 week ago

Question

What are the determinants of cash cycle ? Explain

Answered: 1 week ago

Question

What is the purpose of the Salary Structure Table?

Answered: 1 week ago

Question

What is the scope and use of a Job Family Table?

Answered: 1 week ago