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 /3776/CH5/EX5.2/Ex5_2.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 '3776/CH5/EX5.2/Ex5_2.sce')
-rw-r--r-- | 3776/CH5/EX5.2/Ex5_2.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3776/CH5/EX5.2/Ex5_2.sce b/3776/CH5/EX5.2/Ex5_2.sce new file mode 100644 index 000000000..53aac0bc3 --- /dev/null +++ b/3776/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,22 @@ +clear +//Given +P_Max = 10 //N - the maximum distribution in a triangular distribution +L = 3 //mt the total length of force distribution +L_X = 5 //mt - the horizantal length of the rod +//caliculations + +F_y = P_Max*L*0.5 //N - The force due to triangular distribition +L_com = 2*L /3 //mt - the resultant force acting as a result of distribution acting position +//F_X = 0 forces in x directions +R_A_X = 0 // since there are no forces in X-direction +R_B_X = 0 +//M_A = 0 momentum at point a is zero +//F_y*L_com - R_B_Y*L_X = 0 +R_B_Y = F_y*L_com/L_X + +//M_B= 0 momentum at point b is zero +//- R_A_Y*L_X = F_y*(L_X-L ) + +R_A_Y = - F_y*L/L_X +printf("The X,Y components of reaction force at A is %0.3f,%0.3f N",R_A_X,R_A_Y) +printf("\n The X,Y components of reaction force at B is %0.3f,%0.3f N",R_B_X,R_B_Y) |