summaryrefslogtreecommitdiff
path: root/3648/CH2/EX2.6/Ex2_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH2/EX2.6/Ex2_6.sce')
-rw-r--r--3648/CH2/EX2.6/Ex2_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH2/EX2.6/Ex2_6.sce b/3648/CH2/EX2.6/Ex2_6.sce
new file mode 100644
index 000000000..f4d6135d9
--- /dev/null
+++ b/3648/CH2/EX2.6/Ex2_6.sce
@@ -0,0 +1,11 @@
+//Example 2_6
+clc();
+clear;
+//To find the forces exerted bythe pedestals on the board
+tou=900 //units in Newtons
+d1=3 //units in Meters
+d2=1.5 //Units in Meters
+F1=-(tou*d1)/d2 //Units in Newtons
+F2=tou-F1 //units in Newtons
+printf("The First Force F1=%d N\n",F1)
+printf("The Second Force F2=%d N\n",F2)