diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3131/CH6/EX6.19 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3131/CH6/EX6.19')
-rw-r--r-- | 3131/CH6/EX6.19/6_19.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3131/CH6/EX6.19/6_19.sce b/3131/CH6/EX6.19/6_19.sce new file mode 100644 index 000000000..e8036f689 --- /dev/null +++ b/3131/CH6/EX6.19/6_19.sce @@ -0,0 +1,31 @@ +clear all; clc; +disp("Ex 6_19") +disp("Free body diagram is shown in figure 6-32b") +//Calculations + +//Applying equations of equlibrium to pulley B +//We get two equations and we solve for each component +//Solving by matrix method to obtain solution +a=45*%pi/180 +A=[1,0;0,1] +B=[490.5*cos(a);(490.5*sin(a))+490.5] +C=inv(A) +D=C*B +Bx=D(1) +By=D(2) + +//Result +printf('\n The values are \n') +printf('\n Bx=%0.1f N\n By=%0.1f N\n',Bx,By) + +//For the equilibrium of the pin in X and Y directions +E=[4/5,0;0,1] +F=[(By+490.5);Bx+((3/5)*1660)] +G=inv(E) +H=G*F +F_CB=H(1) +F_AB=H(2) + +//Result +printf('\n The values are \n') +printf('\n F_CB=%0.0f N\n F_AB=%0.0f N\n',F_CB,F_AB) |