Required storage volume m3
required_storage_volume_m3
Required detention storage volume (m³)
Scores if within ±3% of the reference value.
Estimates the required stormwater detention storage volume using a simplified triangular inflow hydrograph with constant outflow, as commonly applied in preliminary site drainage design per TR-55 and local council requirements. Computes the volume difference between post-development peak inflow and the allowable release rate over the storm duration, and derives an approximate basin surface area from a nominated design depth.
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.
Post dev peak flow
post_dev_peak_flow_m3_s
Post-development peak flow rate Q_post
Storm duration
storm_duration_hr
Design storm duration t_storm
Design depth
design_depth_m
Design water depth of the detention basin
Sampled from the scenario and inferable from its description.
Allowable release rate
allowable_release_rate_m3_s
Allowable (pre-development or regulated) release rate Q_allow
Derived from the archetype scenario. Hidden at hard difficulty.
2 outputs
required_storage_volume_m3
Required detention storage volume (m³)
Scores if within ±3% of the reference value.
approximate_surface_area_m2
Approximate basin surface area at design depth (m²)
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 — straightforward volume calculation with clear Q_post > Q_allow
All inputs given
All parameters given but larger flows and longer storms — agent must apply correct case logic
Some inputs hidden
Allowable release rate hidden — agent must infer from site description and local requirements
Hidden inputs
Prompt replacement text
The site 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 stormwater management and drainage design.2 3## Problem4 5Estimate the required detention basin volume to attenuate post-development peak flow to the allowable release rate, using a simplified triangular hydrograph method.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Post-development peak flow (Q_post) | {{ post_dev_peak_flow_m3_s }} | m³/s |12{% if allowable_release_rate_m3_s is defined %}13| Allowable release rate (Q_allow) | {{ allowable_release_rate_m3_s }} | m³/s |14{% endif %}15| Design storm duration (t_storm) | {{ storm_duration_hr }} | hr |16| Design water depth | {{ design_depth_m }} | m |17{% if archetype_description is defined %}18 19### Site Conditions20 21{{ archetype_description }}22{% endif %}23 24{% if tool_available %}25## Available Tool26 27A detention volume calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:28 29```bash30python3 /workspace/{{ meta.name }}_calc.py --help31```32 33You may use this tool to verify your calculations or compute values directly.34{% endif %}35 36## Required37 38Calculate the following:39 401. Required detention storage volume (m³)412. Approximate basin surface area at design depth (m²)42 43## Applicable Standards44 45- TR-55 — Urban Hydrology for Small Watersheds46- Local council stormwater detention requirements47 48## Constraints49 50- No internet access is available. Work from engineering knowledge and the provided tool.51- Use the simplified triangular hydrograph method:52 - **Triangular inflow hydrograph:** peak = Q_post, base = t_storm53 - Inflow volume = Q_post × t_storm × 3600 / 254 - **Constant outflow** at Q_allow during the storm55 - Outflow volume = Q_allow × t_storm × 360056 - **Required storage volume** depends on the relationship between Q_allow and Q_post:57 - If Q_allow < Q_post/2:58 V = t_storm × 3600 × (Q_post/2 − Q_allow)59 - If Q_allow ≥ Q_post/2:60 V = (Q_post − Q_allow)² × t_storm × 3600 / (2 × Q_post)61 - If Q_allow ≥ Q_post, no detention is needed (V = 0)62 - **Approximate surface area:** A_surface = V / design_depth63- If Q_allow is not given directly, infer a reasonable value from the site description and local detention requirements64 65## Output Format66 67Show your step-by-step working in Markdown, including formulas and intermediate calculations. At the end of your solution, include a JSON block with your final answers in exactly this format:68 69```json70{71 "required_storage_volume_m3": <numeric_value>,72 "approximate_surface_area_m2": <numeric_value>73}74```75 76Write your complete solution to `/workspace/output.md`.77 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_residential_subdivision
Small residential subdivision on gentle terrain with local council detention requirements
commercial_development
Commercial or mixed-use development with high impervious coverage and moderate catchment
industrial_estate
Industrial estate with large hardstand areas and concentrated runoff
large_greenfield
Large greenfield development converting rural land to mixed residential with significant flow increase
sydney-northwest-growth-area-small-residential-subdivision-preview — hard difficulty, some inputs hidden.
Small residential subdivision on gentle terrain with local council detention requirements. sydney-northwest-growth-area. Required outputs: required_storage_volume_m3, approximate_surface_area_m2
Scenario context and visible inputs.
Executable tool: detention-volume-preliminary_calc.py
Inputs withheld at this difficulty.
Allowable release rate
allowable_release_rate_m3_s
Stand-in text in the prompt
The site is a {{ archetype.description }} ({{ archetype.site_context }})
The scored JSON answer schema.
{
"required_storage_volume_m3": <number>,
"approximate_surface_area_m2": <number>
}