summaryrefslogtreecommitdiff
path: root/3705/CH5/EX5.8/Ex5_8.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3705/CH5/EX5.8/Ex5_8.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3705/CH5/EX5.8/Ex5_8.sce')
-rw-r--r--3705/CH5/EX5.8/Ex5_8.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3705/CH5/EX5.8/Ex5_8.sce b/3705/CH5/EX5.8/Ex5_8.sce
new file mode 100644
index 000000000..fd5ca7985
--- /dev/null
+++ b/3705/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,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))