summaryrefslogtreecommitdiff
path: root/3648/CH5/EX5.13
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH5/EX5.13')
-rw-r--r--3648/CH5/EX5.13/Ex5_13.sce11
-rw-r--r--3648/CH5/EX5.13/Ex5_13.txt1
2 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH5/EX5.13/Ex5_13.sce b/3648/CH5/EX5.13/Ex5_13.sce
new file mode 100644
index 000000000..79ac0c6ab
--- /dev/null
+++ b/3648/CH5/EX5.13/Ex5_13.sce
@@ -0,0 +1,11 @@
+//Example 5_13
+clc();
+clear;
+//To find out how large the force is required
+m=2 //units in Kg
+g=9.8 //units in meters/sec^2
+hc_ha=10.03 //units in meters
+sbc=0.030 //units in meters
+f=(m*g*(hc_ha))/sbc //units in Newtons
+printf("The average force required is f=%d N",f)
+//In text book answer is printed wrong as f=6550 N correct answer is f=6552N
diff --git a/3648/CH5/EX5.13/Ex5_13.txt b/3648/CH5/EX5.13/Ex5_13.txt
new file mode 100644
index 000000000..e78a6b050
--- /dev/null
+++ b/3648/CH5/EX5.13/Ex5_13.txt
@@ -0,0 +1 @@
+ The average force required is f=6552 N \ No newline at end of file