blob: 7553924a1923c2091ca8d80e024aa94ab59fc1be (
plain)
1
2
3
4
5
6
7
8
9
|
clear;
clc;
b = 6;// inches
t = 1/2;// inch
R = 40;// feet
E = 13000;// tons/in^2
y = t/2;// inch
f = (E/(R*12))*(y);// tons/in^2
printf('The maximum intensity of stress induced is f = %.2f tons/in^2',f);
|