Aircraft Propulsion·compressor-mass-flow-specific-flow
Compressor Mass Flow Specific Flow
Given the mass flow rate through a compressor inlet and the inlet tip area (or inlet specific flow in kg/m²·sec), calculate the missing parameter. Specific flow is defined as mass flow per unit area.
✓ 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 | {"mass_flow_rate":29.71,"specific_flow":193.173} | 0.1538 | 0.153799961692369 | ✓ |
| 2 | {"mass_flow_rate":50,"specific_flow":200} | 0.25 | 0.25 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST
/api/calculators/aircraft-propulsion/compressor-mass-flow-specific-flow/computeInputs (2)
mass_flow_ratenumberdefault29.71specific_flownumberdefault193.173
Example
curl -sX POST http://localhost:3001/api/calculators/aircraft-propulsion/compressor-mass-flow-specific-flow/compute \
-H "Content-Type: application/json" \
-d '{"inputs":{"mass_flow_rate":29.71,"specific_flow":193.173}}'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-specific-flow computation; problem text paraphrased.
AI disclosure: Calculator code generated by anthropic/claude-haiku-4-5-20251001; verified by 2 test cases.