Aero Engine Discussion

Chrisse

New member
Joined
Jul 12, 2023
Messages
1
Reaction score
0
Points
0
Location
Shenzhen
Website
www.enginediy.com
Hi guys, I'm a newbie, I'm joining here to talk about aero engines, I'm exploring aero engines, wondering if anyone knows about the aero engines? For example, is anyone familiar with the CMF56 turbofan engine? A turbofan model is being prepared here, what do you think it looks like? Thank you for your understanding. Any suggestions, I'm very appreciated.5f02fc0ca265b521a365ae2a7c0cd0d.jpg39b4526ce5b12a3872d01c2ed3e3ee6.jpg92516f29e9c108bc5edd47571f24e0c.jpga4df4ecb2866e8745413e860d597a97.png6b9cb9c5df42ff35d7a29a188c4aca2.png
 

Thunder Chicken

Fine Threads since 2008
Donator
Joined
Mar 22, 2008
Messages
4,367
Reaction score
3,302
Points
138
Location
Massachusetts

You'll have to modify the following section of the JetEngineLibrary.h file with the data appropriate for the variant of the CMF56 engine.

C++:
// Minimum engine parameters that must be provided for model at 100% throttle at sea level.
// Note that maximum thrust is needed to calculate specific impulse (Isp) from
// specific fuel consumption (sfc), and is used to set the maximum thrust level of the thrusters
// in Orbiter, but is not otherwise used to calculate thrust. However, the maximum
// thrust calculated by the model should be close to these input values.

// Parameters for SNECMA-M53-P2 Turbofan

const double air_mass_flow_max = 92.0;            //maximum air flow rate through engine [kg/s]
const double inlet_diameter = 0.796;            //inlet diameter of engine (fan diameter if turbofan) [m]
const double max_thrust = 65.0;                 //maximum thrust without afterburner [kN]
const double rp_max = 9.8;                        //compressor pressure ratio at full throttle [-]
const double sfc = 32.4;                        //specific fuel consumption at full throttle [g/kN s]
const double bpr = 0.36;                        //turbofan bypass ratio (mass flow through fan / mass flow through core, 0 for pure turbojets)
const double fpr = 2.0;                            //turbofan pressure ratio (0 for pure turbojets)

const double max_thrust_ab = 95.0;              //maximum thrust with afterburner [kN]
const double sfc_ab = 53.0;                     //specific fuel consumption with afterburner [g/kN s]

You can find most of these parameters for the CFM56 variants here:


As there is no afterburner you can set max_thrust_ab and sfc_ab = 0. The turbofan pressure ratio can be hard to find, but it's typically around 1.5 - 2.

This jet engine model works very well for turbojets and low-bypass turbofans, but it tends to overestimate thrust for high-bypass turbofans like the CFM56. In high-bypass turbofans the thrust produced by the core jet is relatively small compared to the thrust of the fan. These engines behave more like ducted turboprops than turbojets.

If the calculated thrust is too high, you can try just scaling the thrust calculated by the model to match the specified thrust at full throttle. That should give you pretty good numbers and correct air-breathing behavior.
 
Top