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/CH5/EX5.1/Ex5_1.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/CH5/EX5.1/Ex5_1.sce')
-rw-r--r-- | 3772/CH5/EX5.1/Ex5_1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3772/CH5/EX5.1/Ex5_1.sce b/3772/CH5/EX5.1/Ex5_1.sce new file mode 100644 index 000000000..943575825 --- /dev/null +++ b/3772/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,23 @@ +// Problem 5.1,Page no.121 + +clc;clear; +close; + +b=100 //mm //width of timber joist +d=200 //mm //depth of joist +L=3 //m //Length of beam +sigma=7 //KN/mm**2 //bending stress +w_1=5 //KN/mm**2 //unit weight of timber + +//Calculations +w=0.1*0.2*1*5*100 //N/m //self weight of the joist +I_xx=1*12**-1*100*200**3 //mm**4 //M.I of section about N.A + +//M=W*L+w*L**2*2**-1 //Max Bending moment +//Therefore,M=(3*W+450) + +//using the relation M*I**-1=sigma*y**-1,we get +W=(((7*2*10**8)*(100*10**3*3)**-1)-450)*3**-1 //N //Max Load applied + +//Result +printf("The Max value of Load applied is %.2f N",W) |