summaryrefslogtreecommitdiff
path: root/1301/CH3/EX3.12/ex3_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1301/CH3/EX3.12/ex3_12.sce')
-rwxr-xr-x1301/CH3/EX3.12/ex3_12.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1301/CH3/EX3.12/ex3_12.sce b/1301/CH3/EX3.12/ex3_12.sce
new file mode 100755
index 000000000..766e9d134
--- /dev/null
+++ b/1301/CH3/EX3.12/ex3_12.sce
@@ -0,0 +1,10 @@
+clc;
+v=20; //velocity in m/sec
+v0=10; //velocity in m/sec
+t=5; //time in sec
+a=(v-v0)/t; //kinematical equation
+disp(a,"Accelaration in m/sec square = "); //displaying result
+m=1000; //mass in kg
+a=2; //acc. in m/sec square
+F=m*a; //Newton's Law
+disp(F,"Force in Newton = "); //displaying result