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 /1205/CH4/EX4.9 | |
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 '1205/CH4/EX4.9')
-rw-r--r-- | 1205/CH4/EX4.9/S_4_9.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1205/CH4/EX4.9/S_4_9.sce b/1205/CH4/EX4.9/S_4_9.sce new file mode 100644 index 000000000..80d72ae05 --- /dev/null +++ b/1205/CH4/EX4.9/S_4_9.sce @@ -0,0 +1,24 @@ +clc;
+theta=30;//degree,
+theta=theta*%pi/180;//rad, Conversion
+e_AH=[0,sin(theta),cos(theta)];//Unit vector along AH
+r_HC=[-50,250,0];
+r_DC=[300,0,0];
+r_FC=[350,20,0];
+
+//Applying theory of Eqyuillibrium equations and equating coefficient to zero we get following equtions for cross product
+//by sum(Mc)=0
+// Coefficient of i
+T=100*10^3/216.5;//N,Tension wire AH
+// Coefficient of j
+Dz=-43.3*461.1/300;//N
+//coefficient of k
+Dy=(140*10^3+25*461.9)/300;//N
+printf("Tension wire AH is %.0f N\n",T);
+printf("Reaction at D is D=((%.0f N)j +(%.1f N)k \n",Dy,Dz);
+
+//Applying sumF=0
+Cx=0;//N, Xcomponent of C
+Cy=-461.9*0.5-505.1+400;//N, Y component of C
+Cz=-461.9*0.866-66.67;//N, Zcomponent of c
+printf("Reaction at C is C=(%.0f N)i +(%.0f N)j +(%.0f N)k \n",Cx,Cy,Cz);
|