summaryrefslogtreecommitdiff
path: root/1301/CH3/EX3.12/ex3_12.sce
blob: 766e9d13453717fc7e89f0acf09f88116b537d7d (plain)
1
2
3
4
5
6
7
8
9
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