blob: f8a57f4771e1baa22c7462b6b460faf439a96f4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
clear
//Input data
u=1500 //Flight velocity in m/s
eff=0.75 //Propulsive efficiency
//calculation
//Converting relation eff=(2*sig)/(1+sig^2) into 2nd degree polynomial of sig
sig=((2-(sqrt(4-(4*eff*eff))))/(2*eff)) //Jet speed ratio
Cj=u/sig //Jet velocity in m/s
//Output
printf('Jet velocity is %3.2f m/s',Cj)
|