Flow rate
flow_rate_m3_s
Flow rate in cubic metres per second
Scores if within ±3% of the reference value.
Calculates pump hydraulic power and shaft power from flow rate, total dynamic head, fluid density, and pump efficiency. The template reports converted flow, hydraulic power, shaft power, and efficiency fraction.
with-tool: The model is given an executable Python calculator script.
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
Pump flow rate
Total dynamic head
total_dynamic_head_m
Total dynamic head
Fluid density
fluid_density_kg_m3
Fluid density
Pump efficiency pct
pump_efficiency_pct
Pump efficiency
4 outputs
flow_rate_m3_s
Flow rate in cubic metres per second
Scores if within ±3% of the reference value.
hydraulic_power_kw
Hydraulic power
Scores if within ±3% of the reference value.
shaft_power_kw
Required shaft power
Scores if within ±3% of the reference value.
efficiency_fraction
Pump efficiency as a fraction
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.
For this template, difficulty scales through parameter and scenario ranges rather than hidden information.
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 mechanical engineer specializing in pump duty calculations.2 3## Problem4 5Calculate hydraulic pump power and shaft power from flow, head, fluid density, and pump efficiency.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Flow rate | {{ flow_rate_l_s }} | L/s |12| Total dynamic head | {{ total_dynamic_head_m }} | m |13| Fluid density | {{ fluid_density_kg_m3 }} | kg/m3 |14| Pump efficiency | {{ pump_efficiency_pct }} | % |15 16{% if archetype_description is defined %}17### Pump Context18 19{{ archetype_description }}20{% endif %}21 22{% if tool_available %}23## Available Tool24 25A pump power calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:26 27```bash28python3 /workspace/{{ meta.name }}_calc.py --help29```30 31You may use this tool to verify your calculations or compute values directly.32{% endif %}33 34## Required35 36Calculate the following:37 381. Flow rate in m3/s392. Hydraulic power in kW403. Shaft power in kW414. Pump efficiency as a fraction42 43## Constraints44 45- No internet access is available. Work from engineering knowledge and the provided tool.46- Use g = 9.81 m/s2.47- Use hydraulic power = density x g x flow x head.48- Use shaft power = hydraulic power / efficiency fraction.49 50## Output Format51 52Show your step-by-step working in Markdown. At the end of your solution, include a JSON block with your final answers in exactly this format:53 54```json55{56 "flow_rate_m3_s": <numeric_value>,57 "hydraulic_power_kw": <numeric_value>,58 "shaft_power_kw": <numeric_value>,59 "efficiency_fraction": <numeric_value>60}61```62 63Write your complete solution to `/workspace/output.md`.64 65 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.
water_pump
Water pump power calculation
process_pump
Industrial process pump power calculation
process-plant-process-pump-preview — hard difficulty, all inputs given.
Industrial process pump power calculation. process-plant. Required outputs: flow_rate_m3_s, hydraulic_power_kw, shaft_power_kw, efficiency_fraction
Scenario context and visible inputs.
Executable tool: pump-power-calculation_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"flow_rate_m3_s": <number>,
"hydraulic_power_kw": <number>,
"shaft_power_kw": <number>,
"efficiency_fraction": <number>
}