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.18 | |
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.18')
-rw-r--r-- | 3131/CH6/EX6.18/6_18.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3131/CH6/EX6.18/6_18.sce b/3131/CH6/EX6.18/6_18.sce new file mode 100644 index 000000000..be72359a1 --- /dev/null +++ b/3131/CH6/EX6.18/6_18.sce @@ -0,0 +1,18 @@ +clear all; clc; +disp("Ex 6_18") +disp("Free body diagram is shown in figure 6-31b") +//Calculations +//Applying summation of forces along Y axis and equating them to zero +//We get three equations and we solve for each component +//Solving by matrix method to obtain solution +A=[3,0,0;-2,1,0;-2,-1,1] +B=[600;0;0] +C=inv(A) +D=C*B +P=D(1) +T=D(2) +R=D(3) + +//Result +printf('\n The values are \n') +printf('\n P=%0.0f N\n T=%0.0f N\n R=%0.0f N',P,T,R) |