blob: fd5ca79852327152f1e472a65bfab69f3183c54c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
clear//
//Variable Declaration
I=547 //Moment of inertia in inches^4
d=8.9 //NA deoth in inches
V=12 //Shear Force in kips
h=7.3 //Depth of NA
b=2 //Width in inches
t=1.2 //Thickness in inches
h2=7.5 //Depth in inches
//Calculations
//Shear Stress at NA
Q=(b*h)*(h*0.5) //First Moment about NA in in^3
tau=(V*10**3*Q)/(I*b) //Shear stress at NA in psi
//Shear Stress at a-a
Q_1=(t*h2)*(d-h2*0.5) //First moment about NA in in^3
tau1=(V*Q_1)/(I*t) //Shear Stress in psi
//Result
printf("\n Comparing two stresses")
printf("\n The maximum stress is %0.0f psi",max(tau,tau1))
|