summaryrefslogtreecommitdiff
path: root/3648/CH2/EX2.1
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH2/EX2.1')
-rw-r--r--3648/CH2/EX2.1/Ex2_1.sce12
-rw-r--r--3648/CH2/EX2.1/Ex2_1.txt2
2 files changed, 14 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)
diff --git a/3648/CH2/EX2.1/Ex2_1.txt b/3648/CH2/EX2.1/Ex2_1.txt
new file mode 100644
index 000000000..df252b431
--- /dev/null
+++ b/3648/CH2/EX2.1/Ex2_1.txt
@@ -0,0 +1,2 @@
+Tension in String 1 is F1=48 N
+Tension in String 2 is F2=64 N \ No newline at end of file