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.11/Ex5_11.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.11/Ex5_11.sce')
-rw-r--r-- | 3772/CH5/EX5.11/Ex5_11.sce | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/3772/CH5/EX5.11/Ex5_11.sce b/3772/CH5/EX5.11/Ex5_11.sce new file mode 100644 index 000000000..c4eecfb1b --- /dev/null +++ b/3772/CH5/EX5.11/Ex5_11.sce @@ -0,0 +1,41 @@ +// Problem 5.11,Page no.131 + +clc;clear; +close; + +D=4 //cm //Outside diameter +d=3 //cm //inside diamter +L=2 //m //span of beam +W=1000 //N //Max safe Load + +//Calculations + +I=%pi*64**-1*(D**4-d**4) //cm**4 //M.I +A=%pi*4**-1*(D**2-d**2) //cm**2 //Area +y=2 +Z=I*y**-1 //cm**3 //Section modulus + +M=W*L*4**-1 //N*cm //Max bending moment + +//From Flexural Formula +sigma=M*Z**-1 //N/cm**2 + +//For Tubes +//M.I about x-x axis +I_1=4*(8.59+5.492*2**2) //cm**4 + +Z_1=122.32*4**-1 //cm**3 + +//M=W_1*200*4**-1 //N*cm +//After substituting values we get +//M=50*W_1 (equation 1) + +//Again from Flexural Formula +M=sigma*Z_1 + +//substitute value of M in equation 1 + +W=11640*30.58*50**-1 //N + +//Result +printf("Max central load is %.2f N",W) |