Tidal prism m3
tidal_prism_m3
Tidal prism volume exchanged over the tide
Scores if within ±3% of the reference value.
Calculates the tidal prism exchanged by an estuary, lagoon, or basin using the reduced relation P = basin surface area x tidal range. It also estimates mean exchange flow and mean inlet velocity from the inlet flow area and exchange duration, giving a deterministic coastal hydraulics screening calculation.
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.
5 inputs
Included directly in every task prompt.
Basin surface area
basin_surface_area_m2
Water surface area of the tidal basin
Tidal range
tidal_range_m
Representative tidal range over the exchange cycle
Inlet width
inlet_width_m
Hydraulic width of the inlet throat
Inlet average depth
inlet_average_depth_m
Average flow depth through the inlet throat
Visible in easier tasks and withheld in one or more harder tiers.
Exchange duration
exchange_duration_h
Duration of the flood or ebb exchange
Hidden at hard difficulty.
4 outputs
tidal_prism_m3
Tidal prism volume exchanged over the tide
Scores if within ±3% of the reference value.
inlet_flow_area_m2
Approximate inlet flow area
Scores if within ±3% of the reference value.
mean_tidal_flow_m3_s
Mean tidal exchange flow rate
Scores if within ±3% of the reference value.
mean_tidal_velocity_m_s
Mean velocity through the inlet throat
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 tidal prism inputs given for a small basin
Exchange duration h restricted to: 6.2
All inputs given
Mixed estuary sizes and exchange durations
Some inputs hidden
Large basin context with exchange duration hidden
Hidden inputs
Prompt replacement text
Use a representative semi-diurnal flood or ebb exchange duration for {{ archetype.description }}.
Exchange duration h restricted to: 6.2
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 coastal engineer estimating tidal exchange through an inlet.2 3## Problem4 5Calculate the tidal prism, inlet flow area, mean tidal flow rate, and mean inlet velocity for the basin.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Basin surface area | {{ basin_surface_area_m2 }} | m2 |12| Tidal range | {{ tidal_range_m }} | m |13| Inlet width | {{ inlet_width_m }} | m |14| Inlet average depth | {{ inlet_average_depth_m }} | m |15{% if exchange_duration_h is defined %}16| Exchange duration | {{ exchange_duration_h }} | h |17{% endif %}18{% if archetype_description is defined %}19 20### Site Context21 22{{ archetype_description }}23{% endif %}24 25{% if tool_available %}26## Available Tool27 28A tidal prism calculation tool is available at `/workspace/tidal-prism_calc.py`. Run it with:29 30```bash31python3 /workspace/tidal-prism_calc.py --help32```33{% endif %}34 35## Required36 37Calculate:38 391. Tidal prism volume in m3402. Inlet flow area in m2413. Mean tidal flow rate in m3/s424. Mean inlet velocity in m/s43 44## Constraints45 46- Use `tidal_prism = basin_surface_area x tidal_range`.47- Use `inlet_flow_area = inlet_width x inlet_average_depth`.48- Use `mean_tidal_flow = tidal_prism / exchange_duration_seconds`.49- Use `mean_tidal_velocity = mean_tidal_flow / inlet_flow_area`.50 51## Output Format52 53Show your working in Markdown. At the end, include a JSON block with exactly these keys:54 55```json56{57 "tidal_prism_m3": <numeric_value>,58 "inlet_flow_area_m2": <numeric_value>,59 "mean_tidal_flow_m3_s": <numeric_value>,60 "mean_tidal_velocity_m_s": <numeric_value>61}62```63 64Write your complete solution to `/workspace/output.md`.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.
small_lagoon
Small lagoon entrance with modest tidal range
estuary_inlet
Medium estuary with a trained or natural inlet
large_embayment
Large embayment or harbour with broad exchange area
east-coast-estuary-estuary-inlet-preview — hard difficulty, some inputs hidden.
Medium estuary with a trained or natural inlet. east-coast-estuary. Required outputs: tidal_prism_m3, inlet_flow_area_m2, mean_tidal_flow_m3_s, mean_tidal_velocity_m_s
Scenario context and visible inputs.
Executable tool: tidal-prism_calc.py
Inputs withheld at this difficulty.
Exchange duration h
exchange_duration_h
Stand-in text in the prompt
Use a representative semi-diurnal flood or ebb exchange duration for {{ archetype.description }}.
The scored JSON answer schema.
{
"tidal_prism_m3": <number>,
"inlet_flow_area_m2": <number>,
"mean_tidal_flow_m3_s": <number>,
"mean_tidal_velocity_m_s": <number>
}