Aircraft Propulsion·compressor-mass-flow-rate-calculation
Compressor Mass Flow Rate Calculation
Given the inlet specific flow (mass flow per unit area) and the inlet tip speed of a compressor rotor, along with geometric parameters such as rotor inlet diameter or annulus area, calculate the total mass flow rate through the compressor.
✓ 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.
| # | Inputs | Expected | Got | Status |
|---|---|---|---|---|
| 1 | {"specific_flow":193.173,"inlet_area":0.154} | 29.73 | 29.748642 | ✓ |
| 2 | {"specific_flow":200,"inlet_area":0.15} | 30 | 30 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST
/api/calculators/aircraft-propulsion/compressor-mass-flow-rate-calculation/computeInputs (2)
specific_flownumberdefault193.173inlet_areanumberdefault0.154
Example
curl -sX POST http://localhost:3001/api/calculators/aircraft-propulsion/compressor-mass-flow-rate-calculation/compute \
-H "Content-Type: application/json" \
-d '{"inputs":{"specific_flow":193.173,"inlet_area":0.154}}'Try it live
Edit the body below, then click Call API.Request body
Response
(click Call API to see the response)Source: Pattern from: 19870008266.pdf. Reproduces a standard compressor-mass-flow-rate-calculation computation; problem text paraphrased.
AI disclosure: Calculator code generated by anthropic/claude-haiku-4-5-20251001; verified by 2 test cases.