diff options
Diffstat (limited to '3648/CH4/EX4.9/Ex4_9.sce')
-rw-r--r-- | 3648/CH4/EX4.9/Ex4_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH4/EX4.9/Ex4_9.sce b/3648/CH4/EX4.9/Ex4_9.sce new file mode 100644 index 000000000..619beafb0 --- /dev/null +++ b/3648/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,12 @@ +//Example 4_9
+clc();
+clear;
+//To calculate how large a force must push on car to accelerate
+m=1200 //units in Kg
+g=9.8 //units in meters/sec^2
+d1=4 //units in meters
+d2=40 //units in meters
+a=0.5 //units in meters/sec^2
+P=((m*g)*(d1/d2))+(m*a) //units in Newtons
+printf("The force required is P=%d N",P)
+//In text book the answer is printed wrong as P=1780 N but the correct answer is P=1776 N
|