blob: a988507cceceb7bc70c21a8db563c897a1e4b52c (
plain)
1
2
3
4
5
6
|
clc;
clear all;
sigma1 = 405e6; // Principal stress in newton per square meters
sigma2 = -105e6; // Principal stress in newton per square meters
Tmax = (sigma1-sigma2)/2;
disp('N/m^2',Tmax,'The maximum shearing stress is')
|