Hydraulic power
hydraulic_power_kw
Hydraulic (water) power P_h (kW)
Scores if within ±3% of the reference value.
Calculates hydraulic power (P_h = rho*g*Q*H), brake (shaft) power, and motor input power for a water or wastewater pump station at a specified duty point. Accounts for pump and motor efficiencies to determine the electrical power draw, following AWWA and Hydraulics Institute methodology for pump station design.
with-tool: The model is given an executable Python calculator script.
Standards
One template produces many comparable benchmark tasks while keeping the scoring contract fixed.
01
The reusable contract shown on this page.
02
An archetype and site context are sampled.
03
Inputs may be hidden at harder tiers.
04
The model responds with the declared outputs.
Inputs the model receives, and the outputs it is scored on.
4 inputs
Included directly in every task prompt.
Flow rate
flow_rate_l_s
Volumetric flow rate Q at the duty point
Total dynamic head
total_dynamic_head_m
Total dynamic head H (static head plus friction losses)
Sampled from the scenario and inferable from its description.
Pump efficiency pct
pump_efficiency_pct
Pump efficiency at the duty point
Derived from the archetype scenario. Hidden at hard difficulty.
Motor efficiency pct
motor_efficiency_pct
Motor efficiency at the operating load
Derived from the archetype scenario. Hidden at hard difficulty.
3 outputs
hydraulic_power_kw
Hydraulic (water) power P_h (kW)
Scores if within ±3% of the reference value.
brake_power_kw
Brake (shaft) power P_b (kW)
Scores if within ±3% of the reference value.
motor_input_power_kw
Motor input (electrical) power P_m (kW)
Scores if within ±3% of the reference value.
Each template is sampled at three tiers. Harder tiers may hide inputs, forcing the model to infer them from the scenario description.
All inputs given
All parameters given, small to medium pump station
All inputs given
All parameters given, any pump station type including high head
Some inputs hidden
Efficiencies hidden, agent must infer from pump station type and size
Hidden inputs
Prompt replacement text
The pump station is a {{ archetype.description }} ({{ archetype.site_context }})
The exact instruction and parameter contract used to generate this task, pinned to the published library source.
/workspace
Teal lines show Jinja input conditions, not task visibility policy. A line renders only when that input or tool is visible.
1You are a senior civil engineer specializing in water infrastructure and pump station design.2 3## Problem4 5Calculate the required pump power for a water/wastewater pump station at a given duty point. Determine the hydraulic power, brake (shaft) power, and motor input (electrical) power.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Flow rate (Q) | {{ flow_rate_l_s }} | L/s |12| Total dynamic head (H) | {{ total_dynamic_head_m }} | m |13{%- if pump_efficiency_pct is defined %}14| Pump efficiency (η_pump) | {{ pump_efficiency_pct }} | % |15{%- endif %}16{%- if motor_efficiency_pct is defined %}17| Motor efficiency (η_motor) | {{ motor_efficiency_pct }} | % |18{%- endif %}19{% if archetype_description is defined %}20 21### Station Conditions22 23{{ archetype_description }}24{% endif %}25 26{% if tool_available %}27## Available Tool28 29A pump power calculation tool is available at `/workspace/pump-power-calc_calc.py`. Run it with:30 31```bash32python3 /workspace/pump-power-calc_calc.py --help33```34 35You may use this tool to verify your calculations or compute values directly.36{% endif %}37 38## Required39 40Calculate the following:41 421. Hydraulic (water) power P_h (kW)432. Brake (shaft) power P_b (kW)443. Motor input (electrical) power P_m (kW)45 46## Applicable Standards47 48- AWWA -- American Water Works Association pump station references49- Hydraulics Institute -- pump performance and efficiency standards50 51## Constraints52 53- No internet access is available. Work from engineering knowledge and the provided tool.54- Use the following formulas:55 - Convert flow rate from L/s to m^3/s: Q_m3s = Q / 100056 - Hydraulic power: P_h = rho x g x Q x H / 1000 (kW)57 - Brake (shaft) power: P_b = P_h / eta_pump58 - Motor input power: P_m = P_b / eta_motor59- Physical constants: rho = 998 kg/m^3 (water density), g = 9.81 m/s^260- Efficiencies are given as percentages and must be converted to decimals before use (e.g., 75% = 0.75)61- If pump or motor efficiency is not provided, estimate from the station description and pump type62 63## Output Format64 65Show your step-by-step working in Markdown, including the unit conversion, hydraulic power calculation, brake power calculation, and motor input power calculation. At the end of your solution, include a JSON block with your final answers in exactly this format:66 67```json68{69 "hydraulic_power_kw": <numeric_value>,70 "brake_power_kw": <numeric_value>,71 "motor_input_power_kw": <numeric_value>72}73```74 75Write your complete solution to `/workspace/output.md`.76 Each generated task is drawn from one of these realistic scenario bands.
Site contexts ground each scenario in a real locale the model can use to infer hidden values.
small_sewer_lift
Small sewage lift station with submersible pump
medium_water_booster
Medium water supply booster station with end-suction centrifugal pump
large_trunk_transfer
Large trunk sewage or water transfer station with split-case pump
high_head_raw_water
High-head raw water intake pump station with multi-stage pump
brisbane-suburban-sps-small-sewer-lift-preview — hard difficulty, some inputs hidden.
Small sewage lift station with submersible pump. brisbane-suburban-sps. Required outputs: hydraulic_power_kw, brake_power_kw, motor_input_power_kw
Scenario context and visible inputs.
Executable tool: pump-power-calc_calc.py
Inputs withheld at this difficulty.
Motor efficiency pct
motor_efficiency_pct
Pump efficiency pct
pump_efficiency_pct
Stand-in text in the prompt
The pump station is a {{ archetype.description }} ({{ archetype.site_context }})
The scored JSON answer schema.
{
"hydraulic_power_kw": <number>,
"brake_power_kw": <number>,
"motor_input_power_kw": <number>
}