diff options
Diffstat (limited to '3648/CH2/EX2.1/Ex2_1.sce')
-rw-r--r-- | 3648/CH2/EX2.1/Ex2_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH2/EX2.1/Ex2_1.sce b/3648/CH2/EX2.1/Ex2_1.sce new file mode 100644 index 000000000..c74a93939 --- /dev/null +++ b/3648/CH2/EX2.1/Ex2_1.sce @@ -0,0 +1,12 @@ +//Example 2_1
+clc();
+clear;
+//To find the tension in the other two Strings
+//As Sigma(Fx)=0
+F3=80 //units in Newtons
+Fx1=F3*sin(37*%pi/180) //units in Newtons
+Fy1=F3*cos(37*%pi/180) //units in Newtons
+F2=round(Fy1+0) //units in Newtons
+F1=round(Fx1+0) //units in Newtons
+printf("Tension in String 1 is F1=%d N\n",F1)
+printf("Tension in String 2 is F2=%d N",F2)
|