diff options
Diffstat (limited to '3765/CH4/EX4.3/Ex4_3.sce')
-rw-r--r-- | 3765/CH4/EX4.3/Ex4_3.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/3765/CH4/EX4.3/Ex4_3.sce b/3765/CH4/EX4.3/Ex4_3.sce new file mode 100644 index 000000000..c387df1f9 --- /dev/null +++ b/3765/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,38 @@ + +clc +// Example 4.3.py +// In Example 4.1, the free stream mach number is increased to 5.0. +// Calculate the pressure and Mach number behind the wave, and compare these +// results with those of Example 4.1. + + +// Variable declaration +M1 = 5.0 // upstream mach number +p1 = 1.0 // upstream pressure (in atm) +T1 = 288 // upstream temperature (in K) +theta = 20.0 // deflection (in degrees) + +// Calculations +// subscript 2 means behind the shock + +// from figure 4.5 from M1 = 5.0, theta = 20.0 deg. +beta1 = 30.0 // shock angle (in degrees) + +// degree to radian conversion is done by multiplying by %pi/180 +// +Mn1 = M1 * sin(beta1*%pi/180) // upstream mach number normal to the shock + +// from Table A2 for Mn1 = 2.5 +p2_by_p1 = 7.125 // p2/p1 +Mn2 = 0.513 + +p2 = p2_by_p1 * p1 // p2 (in atm) = p2/p1 * p1 +M2 = Mn2/(sin((beta1-theta)*%pi/180)) // mach number behind the shock + + +printf("\n Shock wave angle %.2f degrees",(beta1)) + +printf("\n p2 = %.3f atm", p2) + +printf("\n M2 = %.2f ", M2) + |