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 /3764/CH4/EX4.04 | |
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 '3764/CH4/EX4.04')
-rw-r--r-- | 3764/CH4/EX4.04/Ex4_04.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3764/CH4/EX4.04/Ex4_04.sce b/3764/CH4/EX4.04/Ex4_04.sce new file mode 100644 index 000000000..cf4cf3aa0 --- /dev/null +++ b/3764/CH4/EX4.04/Ex4_04.sce @@ -0,0 +1,23 @@ +clc +// + +//Variable declaration +depth=10 // Depth(mm) +width=60 // Width(mm) +thickness=9 // Thickness(mm) +Smax=150 // Maximum stress(MPa) +M=180 // Bending moment(N.m) + +//Calculation +d=width-(2*depth) // Distance(mm) +c=(1/2.0)*d // Distance(mm) +b=9 // Distance(mm) +I=(1/12.0)*(b*((10**-3)))*((d*((10**3)))**3) // Moment of inertia of the critical cross section(m**4) +Ratio=((M)*(c)*((10**3)))/(I) // Stress(MPa) +k=150/75.0 // Factor +Ratio2=width/(d*1.0) // Ratio +r=0.13*40 // Radius(mm) +wid=2*r // Width(mm) + +// Result +printf("\n Smallest allowable width of the groves = %0.3f mm' ,wid) |