Geometric mean distance
geometric_mean_distance_m
Geometric mean distance between phases
Scores if within ±3% of the reference value.
Calculates per-phase line inductance for a reduced transposed three-phase overhead line model. The template computes geometric mean distance from phase spacings, equivalent GMR for simple bundled conductors, and inductance using L = 0.2 ln(GMD/GMR) mH/km.
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.
6 inputs
Included directly in every task prompt.
Conductor gmr
conductor_gmr_m
Geometric mean radius of one subconductor
Phase spacing ab
phase_spacing_ab_m
Spacing between phase A and phase B
Phase spacing bc
phase_spacing_bc_m
Spacing between phase B and phase C
Phase spacing ca
phase_spacing_ca_m
Spacing between phase C and phase A
Bundle spacing
bundle_spacing_m
Spacing between subconductors in the bundle
Sampled from the scenario and inferable from its description.
Bundle count
bundle_count
Number of subconductors in each phase bundle
Derived from the archetype scenario. Hidden at hard difficulty.
3 outputs
geometric_mean_distance_m
Geometric mean distance between phases
Scores if within ±3% of the reference value.
equivalent_gmr_mm
Equivalent bundle GMR
Scores if within ±5% of the reference value.
inductance_mh_per_km
Per-phase inductance per kilometre
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
Single-conductor line with all dimensions given
Bundle count restricted to: single
Bundle spacing restricted to: 0.45
All inputs given
Single or two-conductor bundle
Bundle count restricted to: single, two
Some inputs hidden
Bundle count inferred from transmission-line context
Hidden inputs
Prompt replacement text
Use the conductor arrangement implied by {{ archetype.description }}.
Bundle count restricted to: two, three, four
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 electrical engineer calculating overhead line parameters.2 3## Problem4 5Calculate the geometric mean distance, equivalent bundle GMR, and per-phase inductance for a reduced transposed three-phase line.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Conductor GMR | {{ conductor_gmr_m }} | m |12| Phase spacing A-B | {{ phase_spacing_ab_m }} | m |13| Phase spacing B-C | {{ phase_spacing_bc_m }} | m |14| Phase spacing C-A | {{ phase_spacing_ca_m }} | m |15{% if bundle_count is defined %}16| Bundle count | {{ bundle_count }} | - |17{% endif %}18| Bundle spacing | {{ bundle_spacing_m }} | m |19{% if archetype_description is defined %}20 21### Site Context22 23{{ archetype_description }}24{% endif %}25 26{% if tool_available %}27## Available Tool28 29A line inductance calculation tool is available at `/workspace/line-inductance_calc.py`. Run it with:30 31```bash32python3 /workspace/line-inductance_calc.py --help33```34{% endif %}35 36## Required37 38Calculate:39 401. Geometric mean distance, `GMD = (Dab x Dbc x Dca)^(1/3)`412. Equivalent bundle GMR in mm423. Per-phase inductance, `L = 0.2 x ln(GMD / GMR_eq)` mH/km43 44## Constraints45 46- For a single conductor, `GMR_eq = GMR`.47- For two subconductors, `GMR_eq = sqrt(GMR x bundle_spacing)`.48- For three subconductors, `GMR_eq = (GMR x bundle_spacing^2)^(1/3)`.49- For four subconductors, `GMR_eq = 1.09 x (GMR x bundle_spacing^3)^(1/4)`.50 51## Output Format52 53Show your working in Markdown. At the end, include a JSON block with exactly these keys:54 55```json56{57 "geometric_mean_distance_m": <numeric_value>,58 "equivalent_gmr_mm": <numeric_value>,59 "inductance_mh_per_km": <numeric_value>60}61```62 63Write your complete solution to `/workspace/output.md`.64 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.
distribution_single
Single-conductor distribution line
transmission_single
Single-conductor transmission line
bundled_transmission
Bundled high-voltage transmission line
330kv-overhead-bundled-transmission-preview — hard difficulty, some inputs hidden.
Bundled high-voltage transmission line. 330kv-overhead. Required outputs: geometric_mean_distance_m, equivalent_gmr_mm, inductance_mh_per_km
Scenario context and visible inputs.
Executable tool: line-inductance_calc.py
Inputs withheld at this difficulty.
Bundle count
bundle_count
Stand-in text in the prompt
Use the conductor arrangement implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"geometric_mean_distance_m": <number>,
"equivalent_gmr_mm": <number>,
"inductance_mh_per_km": <number>
}