summaryrefslogtreecommitdiff
path: root/1205/CH2/EX2.7.3/E2_7_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1205/CH2/EX2.7.3/E2_7_3.sce')
-rw-r--r--1205/CH2/EX2.7.3/E2_7_3.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1205/CH2/EX2.7.3/E2_7_3.sce b/1205/CH2/EX2.7.3/E2_7_3.sce
new file mode 100644
index 000000000..964c1647b
--- /dev/null
+++ b/1205/CH2/EX2.7.3/E2_7_3.sce
@@ -0,0 +1,9 @@
+clc;
+//F=700N i +1500N j, given forc
+
+Fx=700;//N, Horizontal component
+Fy=1500;// N, Vertical Component
+tan_theta=Fy/Fx;
+theta=atan(tan_theta);// degrees , angle with +ve x axis
+F=Fy/sin(theta);// N
+printf("Magnitude of F is %.2f N\n",F);