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/CH12/EX12.5/Ex12_5.sce | |
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/CH12/EX12.5/Ex12_5.sce')
-rw-r--r-- | 3772/CH12/EX12.5/Ex12_5.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3772/CH12/EX12.5/Ex12_5.sce b/3772/CH12/EX12.5/Ex12_5.sce new file mode 100644 index 000000000..cee047e71 --- /dev/null +++ b/3772/CH12/EX12.5/Ex12_5.sce @@ -0,0 +1,27 @@ +// Problem no 12.5,Page No.289 + +clc;clear; +close; + +L=2 //m //Span of beam +w=10 //KN/m //u.d.l + +//Calculations + +//Downward deflection at B(of Beam AB) due to u.d.l of 10 KN/m is +Y_B_1=w*L**4*8**-1 + +//Upward deflection at B due to reaction at C alone is +//Y_B_2=R_c*8*3**-1 + +//Net downward deflection of cantilever at AB at B +//Y_B=Y_B_1-Y_B_2 + +//Downward Deflection of Beam CD at C due to the reaction +//R_c=R_c*(3*E*I)**-1 + +//since both deflection at C and B are equal +R_c=20*(1*3**-1+8*3**-1)**-1 + +//Result +printf("Reaction at C is %.2f",R_c);printf(" KN") |