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.13 | |
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.13')
-rw-r--r-- | 3864/CH4/EX4.13/Ex4_13.sce | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/3864/CH4/EX4.13/Ex4_13.sce b/3864/CH4/EX4.13/Ex4_13.sce new file mode 100644 index 000000000..39953ccc4 --- /dev/null +++ b/3864/CH4/EX4.13/Ex4_13.sce @@ -0,0 +1,41 @@ +clear +// + +//Initilization of Variables + +//Timber size +b=150 //mm //Width +d=300 //mm //Depth + +t=6 //mm //Thickness of steel plate +l=6 //m //Span + +//E_s*E_t**-1=20 +//m=E_s*E_t**-1 +m=20 +sigma_timber=8 //N/mm**2 //Stress in timber +sigma_steel=150 //N/mm**2 //Stress in steel plate + +//Let m*t=Y +Y=m*t //mm +L=(2*t+b)*m //mm //Width of flitched beam + +//Calculations + +//Due to synnetry cenroid,the neutral axis is half the depth +I=(1*12**-1*L*t**3+L*t*(b+t*2**-1)**2)*2+1*12**-1*(Y+b+Y)*d**3 //mm**4 + +y_max1=150 //mm //For timber +y_max2=156 //mm //For steel + +//stress in steel +f_t1=1*m**-1*sigma_steel //N/mm**2 + +//Moment of resistance +M=f_t1*(I*y_max2**-1) + +//load +w=8*M*(l**2)**-1*10**-6 //KN/m + +//Result +printf("\n Load beam can carry is %0.2f KN/m",w) |