summaryrefslogtreecommitdiff
path: root/3648/CH4/EX4.1/Ex4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH4/EX4.1/Ex4_1.sce')
-rw-r--r--3648/CH4/EX4.1/Ex4_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH4/EX4.1/Ex4_1.sce b/3648/CH4/EX4.1/Ex4_1.sce
new file mode 100644
index 000000000..3d721780e
--- /dev/null
+++ b/3648/CH4/EX4.1/Ex4_1.sce
@@ -0,0 +1,11 @@
+//Example 4_1
+clc();
+clear;
+//To calculate the force required
+vf=12 //units in meters/sec
+v0=0 //units in meters/sec
+t=8 //units in sec
+a=(vf-v0)/t //units in meters/sec^2
+m=900 //units in Kg
+F=m*a //units in Newtons
+printf("The force required is F=%d N",F)