summaryrefslogtreecommitdiff
path: root/2870/CH2/EX2.11/Ex2_11.sce
blob: 1c82e1bbcedd35ee04fbc647229b40a78b94e5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc;clear;
//Example 2.11

//given values
Win=20;
mair=0.25;

//calculation
v=sqrt(Win/2/mair)//Win = 1/2*m*v^2
if(v >= 8)
    disp('True');
else
    disp('False')