summaryrefslogtreecommitdiff
path: root/1544/CH1/EX1.3/Ch01Ex3.sce
blob: f60139a4896e6e4e14d9b2bb7a461f0c49ea4a2b (plain)
1
2
3
4
5
6
7
8
9
10
// Scilab code Ex1.3: Pg.5 (2008)
clc; clear;
m = 750/1e+03;    // Mass of the body, kg
F = 2;    // Force acting on the mass, N
// Since F = m * a, (Newton's Second Law of motion), solving for a
a = F/m;    // Acceleration produced in the body, metre per second square
printf("\nThe acceleration produced in the body = %5.3f metre per second square", a)

// Result
// The acceleration produced in the body = 2.667 metre per second square