
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
In this document, you will find out the Mathematica software code for the Air-breathing Engine of an Aircraft.
Typology: Transcriptions
1 / 1
This page cannot be seen from the preview
Don't miss anything!

Propulsion Assignment – Mathemetica code for Aircraft engine Thrust equation – I. Surya Prabhas 21103100 ClearAll["Global`"] ( Define variables ) T = 120000; ( thrust, N ) v = 250; ( velocity, m/s ) m_dot = 2000; ( mass flow rate, kg/s ) ( Calculate derived quantities ) F = T - m_dotv; (* net force, N ) ( Print results *) Print["Thrust equation for an aircraft:"] Print["Thrust: ", T, " N"] Print["Velocity: ", v, " m/s"] Print["Mass flow rate: ", m_dot, " kg/s"] Print["Net force: ", F, " N"]