summaryrefslogtreecommitdiff
path: root/3648/CH3/EX3.7/Ex3_7.sce
blob: 1b26b2fce52a8580c6b6ee7009b2b496e1a410de (plain)
1
2
3
4
5
6
7
8
9
//Example 3_7
clc();
clear;
//To calculate the time taken to travel
v0=16.7  //units in meters/sec
a=1.5  //units in meters/sec^2
x=70  //units in meters
t=-((-v0)+sqrt(v0^2-(4*(a/2)*x)))/(2*(a/2))  //units in sec
printf("Time taken to travel T=%.1f sec",t)