blob: e2166d16eba6a3de1575a8a9717b4a9bb2226496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
p0=35*10^3; //Pa
T0=235; //K
ps=65.4*10^3; //N/m^2
R0=8314; //Nm/mole K
M=28;
R=R0/M;
rho_0=p0/R/T0;
Va=sqrt(2*(ps-p0)/rho_0);
disp("Speed of the aircraft =")
disp(Va)
disp("m/s")
|