summaryrefslogtreecommitdiff
path: root/3772/CH13/EX13.2/Ex13_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH13/EX13.2/Ex13_2.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 '3772/CH13/EX13.2/Ex13_2.sce')
-rw-r--r--3772/CH13/EX13.2/Ex13_2.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/3772/CH13/EX13.2/Ex13_2.sce b/3772/CH13/EX13.2/Ex13_2.sce
new file mode 100644
index 000000000..c4bb3ac8d
--- /dev/null
+++ b/3772/CH13/EX13.2/Ex13_2.sce
@@ -0,0 +1,34 @@
+// Problem no 13.2,Page No.301
+
+clc;clear;
+close;
+//W=10*w //KN/m //u.d.l
+sigma=805*10**6 //Pa //Bending stress
+Tou=0.85*10**6 //Pa //Shear stress
+
+//Calculations
+
+//M=W*L**2*10**-4*8**-1 //Max B.M
+//F=W*L*10**-2*2**-1 //Max S.F
+//y=h*2**-1 //depth
+//A-b*h //Area of c/s
+
+//Now using relation we get
+//sigma=M*h*(2*I)**-1 //Bending stress
+
+//AFter substituitng values we get
+//805*10**6=w*l**2*h*(16*10**5*I)**-1 //Equation 1
+
+//Again using the relation we get
+//tou=F*A*y_bar*(I*b)**-1 //shear atress
+
+//AFter substituitng values we get
+//0.85*10**6=w*L*h**2*(16*10**5*I)**-1 //Equation 2
+
+//Dividing equation 1 & 2 we get
+//L*h**-1=10
+//Let L*h**-1=Z
+z=10
+
+//Result
+printf("The Ratio of span to depth ratio is %.2f",z)