Answered step by step
Verified Expert Solution
Question
1 Approved Answer
MATLAB GRADER FORMAT Plane stress transformation: Given randomly generated values of ox, Oy, Txy and @, calculate the normal stress (on) and shear stress (Tn)
MATLAB GRADER FORMAT
Plane stress transformation: Given randomly generated values of ox, Oy, Txy and @, calculate the normal stress (on) and shear stress (Tn) on an inclined plane from the following equations: ___0,+ Oy, 0 * -0 cola cos(20) + Tyysin (20) 2 sin(26) + Trycos(20) Store the results in variables called sigma_n and tau_nt. NOTE: O is in DEGREES. Script C Reset MATLAB Documentation 1 %Do not modify these lines: 2 %************************** 3 sigma_x = rand()*(-115); 4 sigma_y = rand()*80; 5 theta = rand()*90; tau_xy = 75*rand(); 7 %************************** %Enter the expressions for sigma_n and tau_nt on the right-hand side in place of the Os Plane stress transformation: Given randomly generated values of ox, Oy, Txy and @, calculate the normal stress (on) and shear stress (Tn) on an inclined plane from the following equations: ___0,+ Oy, 0 * -0 cola cos(20) + Tyysin (20) 2 sin(26) + Trycos(20) Store the results in variables called sigma_n and tau_nt. NOTE: O is in DEGREES. Script C Reset MATLAB Documentation 1 %Do not modify these lines: 2 %************************** 3 sigma_x = rand()*(-115); 4 sigma_y = rand()*80; 5 theta = rand()*90; tau_xy = 75*rand(); 7 %************************** %Enter the expressions for sigma_n and tau_nt on the right-hand side in place of the OsStep 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