diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH4/EX4.22/Ex4_22.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3864/CH4/EX4.22/Ex4_22.sce')
-rw-r--r-- | 3864/CH4/EX4.22/Ex4_22.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/3864/CH4/EX4.22/Ex4_22.sce b/3864/CH4/EX4.22/Ex4_22.sce new file mode 100644 index 000000000..d25a86e08 --- /dev/null +++ b/3864/CH4/EX4.22/Ex4_22.sce @@ -0,0 +1,38 @@ +clear +// + +//Initilization of Variables + +L=1000 //mm //span + +//Rectangular Section + +b=200 //mm //width +d=400 //mm //depth + +sigma=1.5 //N/mm**2 //Shear stress + +//Calculations + +//Let AB be the cantilever beam subjected to load W KN at free end + +//MAx shear Force +//F=W*10**3 //KN + +//Since Max shear stress in Rectangular section +//sigma_max=1.5*F*A**-1 +//After sub values and further simplifyng we get +W=1.5*b*d*(1.5*1000)**-1 //KN + +//Moment at fixwed end +M=W*1 //KN-m +y_max=d*2**-1 //mm + +//M.I +I=1*12**-1*b*d**3 //mm**3 + +//MAx Stress +sigma_max=M*10**6*I**-1*y_max + +//Result +printf("\n Concentrated Load is %0.2f N/mm**2",sigma_max) |