ResearchForge / Calculators
Aircraft Propulsion·compressor-mass-flow-annular-area

Compressor Mass Flow Annular Area

Given the mass flow rate through a compressor rotor inlet and the annular mass flux (mass flow per unit area), calculate the required annular flow area at the rotor inlet. This is essential for determining blade geometry and ensuring proper stage matching.

✓ All 2 test cases pass.

Inputs

Test cases

These cases run live in your browser every time the page loads. If any fail, the calculator is broken — file an issue.

#InputsExpectedGotStatus
1{"mass_flow_rate":29.71,"annular_mass_flux":193.173}0.15370.153799961692369
2{"mass_flow_rate":50,"annular_mass_flux":200}0.250.25
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST/api/calculators/aircraft-propulsion/compressor-mass-flow-annular-area/compute
Inputs (2)
  • mass_flow_ratenumberdefault 29.71
  • annular_mass_fluxnumberdefault 193.173
Example
curl -sX POST http://localhost:3001/api/calculators/aircraft-propulsion/compressor-mass-flow-annular-area/compute \
  -H "Content-Type: application/json" \
  -d '{"inputs":{"mass_flow_rate":29.71,"annular_mass_flux":193.173}}'
Try it live
Edit the body below, then click Call API.
Request body
Response
(click Call API to see the response)
full API docs →

Source: Pattern from: 19870008266.pdf. Reproduces a standard compressor-mass-flow-annular-area computation; problem text paraphrased.

AI disclosure: Calculator code generated by anthropic/claude-haiku-4-5-20251001; verified by 2 test cases.