Momentum Equation Control Volume
Given a control volume with fluid flowing in at inlet and out at outlet, calculate the net force exerted by the fluid on the control volume using the momentum equation. Inputs include mass flow rate, inlet and outlet velocities, inlet and outlet gage pressures, inlet and outlet cross-sectional areas, weight of contents, and weight of fluid in the control volume. Sum all momentum and pressure contributions to find the total force.
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":0.599,"velocity_inlet":2.98,"velocity_outlet":30.6,"pressure_inlet":464000,"pressure_outlet":0,"area_inlet":0.0002011,"area_outlet":0.00001963,"weight_contents":0.981,"weight_fluid":0.0278} | 77.8 | 77.8 | ✓ |
| 2 | {"mass_flow_rate":1,"velocity_inlet":5,"velocity_outlet":10,"pressure_inlet":100000,"pressure_outlet":0,"area_inlet":0.001,"area_outlet":0.0005,"weight_contents":1,"weight_fluid":0.05} | 95.05 | 96 | ✓ |
APIDeveloper APICall this calculator from codeexpand ↓
/api/calculators/aircraft-propulsion/momentum-equation-control-volume/computemass_flow_ratenumberdefault0.599velocity_inletnumberdefault2.98velocity_outletnumberdefault30.6pressure_inletnumberdefault464000pressure_outletnumberdefault0area_inletnumberdefault0.0002011area_outletnumberdefault0.00001963weight_contentsnumberdefault0.981weight_fluidnumberdefault0.0278
curl -sX POST http://localhost:3001/api/calculators/aircraft-propulsion/momentum-equation-control-volume/compute \
-H "Content-Type: application/json" \
-d '{"inputs":{"mass_flow_rate":0.599,"velocity_inlet":2.98,"velocity_outlet":30.6,"pressure_inlet":464000,"pressure_outlet":0,"area_inlet":0.0002011,"area_outlet":0.00001963,"weight_contents":0.981,"weight_fluid":0.0278}}'(click Call API to see the response)Source: Pattern from: Momentum Eq.pdf. Reproduces a standard momentum-equation-control-volume computation; problem text paraphrased.
AI disclosure: Calculator code generated by anthropic/claude-haiku-4-5-20251001; verified by 2 test cases.