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.7 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2 Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip |
Diffstat (limited to '3864/CH4/EX4.7')
-rw-r--r-- | 3864/CH4/EX4.7/Ex4_7.sce | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/3864/CH4/EX4.7/Ex4_7.sce b/3864/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..e50fc587f --- /dev/null +++ b/3864/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,40 @@ +clear +// + +//Initilization of Variables + +F=12 //KN //Force at End of beam +L=2 //m //span + +//Square section +b=200 //mm //Width and depth of beam +d=200 + +//Rectangular section +b1=150 //mm //Width +d1=300 //mm //Depth + +//Calculations + +//Max bending Moment +M=F*L*10**6 //N-mm + +//M=sigma*b*d**2 +sigma=M*6*(b*d**2)**-1 //N/mm**2 + +//Let W be the central concentrated Load in simply supported beam of span L1=3 m +//MAx Moment +//M1=W*L1*4**-1 +//After Further simplifying we get +//M1=0.75*10**6 //N-mm + +//The section has a moment of resistance +M1=sigma*1*6**-1*b1*d1**2 + +//Equating it to moment of resistance we get max load W +//0.75*10**6*W=M1 +//After Further simplifying we get +W=M1*(0.75*10**6)**-1 + +//Result +printf("\n Minimum Concentrated Load required to brek the beam %0.2f KN",W) |