diff options
Diffstat (limited to '1205/CH3/EX3.6/S_3_6.sce')
-rw-r--r-- | 1205/CH3/EX3.6/S_3_6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1205/CH3/EX3.6/S_3_6.sce b/1205/CH3/EX3.6/S_3_6.sce new file mode 100644 index 000000000..644bfd191 --- /dev/null +++ b/1205/CH3/EX3.6/S_3_6.sce @@ -0,0 +1,17 @@ +clc;
+//Given data
+// Moment arms
+x=0.45;//m
+y=0.30;//m
+z=0.23;//m
+
+//couple Forces
+Fx=-150;//N
+Fy=100;//N
+Fz=100;//N
+
+Mx=Fx*x;//N.m, Component of Moment along X axis
+My=Fy*y;//N.m, Component of Moment along Y axis
+Mz=Fz*z;//N.m, Component of Moment along Z axis
+//This three moments represent component of single couple M
+printf("Couple M equivalent to two couple can be written as M = %.2f N.m i + %.2f N.m j + %.2f N.m k \n",Mx,My,Mz);
|