Aircraft Propulsion·flow-velocity-from-volumetric-flow
Flow Velocity From Volumetric Flow
Given a volumetric flow rate and a circular pipe diameter, calculate the average flow velocity at that cross-section using the relationship between volumetric flow rate, cross-sectional area, and velocity.
✓ 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 | {"volumetric_flow_rate":0.0006,"diameter":0.016} | 2.98 | 2.98 | ✓ |
| 2 | {"volumetric_flow_rate":0.0006,"diameter":0.005} | 30.6 | 30.56 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
Endpoint
POST
/api/calculators/aircraft-propulsion/flow-velocity-from-volumetric-flow/computeInputs (2)
volumetric_flow_ratenumberdefault0.0006diameternumberdefault0.016
Example
curl -sX POST http://localhost:3001/api/calculators/aircraft-propulsion/flow-velocity-from-volumetric-flow/compute \
-H "Content-Type: application/json" \
-d '{"inputs":{"volumetric_flow_rate":0.0006,"diameter":0.016}}'Try it live
Edit the body below, then click Call API.Request body
Response
(click Call API to see the response)Source: Pattern from: Momentum Eq.pdf. Reproduces a standard flow-velocity-from-volumetric-flow computation; problem text paraphrased.
AI disclosure: Calculator code generated by anthropic/claude-haiku-4-5-20251001; verified by 2 test cases.