summaryrefslogtreecommitdiff
path: root/1301/CH3/EX3.10/ex3_10.sce
blob: cad2a45de387f505b8d9b829b67232c19967e3a6 (plain)
1
2
3
4
5
6
7
8
clc;
m=1500;      //mass in kg
F=3000;     //force in Newton
t=5;        //time in sec
a=F/m;     //calculating acc. (Newton's Law)
disp(a,"Accelaration in m/sec square = "); //displaying result
v=a*t;      //kinematical equation
disp(v,"Velocity in m/sec = ");      //displaying result