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/CH8/EX8.10 | |
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/CH8/EX8.10')
-rw-r--r-- | 3772/CH8/EX8.10/Ex8_10.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3772/CH8/EX8.10/Ex8_10.sce b/3772/CH8/EX8.10/Ex8_10.sce new file mode 100644 index 000000000..2e9e0ed21 --- /dev/null +++ b/3772/CH8/EX8.10/Ex8_10.sce @@ -0,0 +1,33 @@ +// Problem 8.10,Page no.213 + +clc;clear; +close; + +L=75 //cm //Legth of Leaf spring +P=8 //KN //Load +y_c=20 //mm //Deflection +sigma=200 //MPa //Bending stress +E=200 //GPa //modulus of Elasticity +//b=12*t + +//Calculation + +//y_c=sigma*L**2*(4*E*t)**-1 +//After substituting values and further simplifying we get +t=200*10**6*(75*10**-2)**2*(4*200*10**9*0.02)**-1*10**2 //Thickness of plate + +b=12*t //width of plate + +//Now using relation we get +//sigma=3*P*L*(2*n*b*t**2)**-1 +//After substituting values and further simplifying we get +n=3*8*10**3*0.75*(2*200*10**6*0.084*0.007**2)**-1 + +//Y_c=L**2*(8*R)**-1 +R=(L*10**-2)**2*(8*y_c*10**-3)**-1 //m //Radius of spring + +//Result +printf("The thickness of plate is %.2f",t);printf(" cm") +printf("\n The width of plate is %.2f",b);printf(" cm") +printf("\n The number of plate is %d",ceil(n)) +printf("\n The Radius of plate is %.2f m",R) |