diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH13/EX13.2/Ex13_2.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.sce | 34 |
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) |