blob: 50065ac4808aef3a267d0b4c5328a1ad42710701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Finding of Mach Number
//Given
k=1.4;
R=287;
T=288;
V=900;
//To Find
C=sqrt(k*R*T);
C1=C*(18/5);
disp("Speed of Sound waves ="+string(C1)+" Km/hr");
M=V/C1;
disp("Mach Number = "+string(M)+" No units");
|