Geometric mean distance
geometric_mean_distance_m
Geometric mean distance between phases
Scores if within ±3% of the reference value.
Calculates per-phase overhead line capacitance from conductor radius and geometric mean phase spacing. The reduced transposed-line method also estimates three-phase charging Mvar per 100 km and surge impedance from an explicit inductance input.
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.
7 inputs
Included directly in every task prompt.
Conductor radius
conductor_radius_m
Physical conductor radius
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
Nominal voltage
nominal_voltage_kv
Line-to-line nominal voltage
Inductance mh per km
inductance_mh_per_km
Per-phase line inductance
Visible in easier tasks and withheld in one or more harder tiers.
Frequency
frequency_hz
System frequency
Hidden at hard difficulty.
4 outputs
geometric_mean_distance_m
Geometric mean distance between phases
Scores if within ±3% of the reference value.
capacitance_nf_per_km
Per-phase capacitance per kilometre
Scores if within ±3% of the reference value.
charging_mvar_per_100km
Three-phase charging reactive power per 100 km
Scores if within ±3% of the reference value.
surge_impedance_ohm
Surge impedance from L and C
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
Distribution line with all geometry visible
Frequency hz restricted to: 50
All inputs given
Distribution or transmission capacitance calculation
Some inputs hidden
Frequency hidden in system context
Hidden inputs
Prompt replacement text
Use the system frequency implied by {{ archetype.description }}.
Frequency hz restricted to: 50
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 capacitance.2 3## Given4 5| Parameter | Value | Unit |6|-----------|-------|------|7| Conductor radius | {{ conductor_radius_m }} | m |8| Phase spacing A-B | {{ phase_spacing_ab_m }} | m |9| Phase spacing B-C | {{ phase_spacing_bc_m }} | m |10| Phase spacing C-A | {{ phase_spacing_ca_m }} | m |11| Nominal line voltage | {{ nominal_voltage_kv }} | kV |12{% if frequency_hz is defined %}13| System frequency | {{ frequency_hz }} | Hz |14{% endif %}15| Line inductance | {{ inductance_mh_per_km }} | mH/km |16 17## Constraints18 19- Use `GMD = (Dab x Dbc x Dca)^(1/3)`.20- Use `C = 2 pi epsilon0 / ln(GMD / conductor_radius)`.21- Convert F/m to nF/km.22- Charging Mvar is for 100 km of three-phase line.23- Surge impedance is `sqrt(L / C)` using H/m and F/m.24 25## Output Format26 27Include a JSON block with exactly these keys:28 29```json30{31 "geometric_mean_distance_m": <numeric_value>,32 "capacitance_nf_per_km": <numeric_value>,33 "charging_mvar_per_100km": <numeric_value>,34 "surge_impedance_ohm": <numeric_value>35}36```37 38Write your complete solution to `/workspace/output.md`.39 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_line
Medium-voltage distribution overhead line
transmission_line
High-voltage transmission overhead line
132kv-overhead-transmission-line-preview — hard difficulty, some inputs hidden.
High-voltage transmission overhead line. 132kv-overhead. Required outputs: geometric_mean_distance_m, capacitance_nf_per_km, charging_mvar_per_100km, surge_impedance_ohm
Scenario context and visible inputs.
Executable tool: line-capacitance_calc.py
Inputs withheld at this difficulty.
Frequency hz
frequency_hz
Stand-in text in the prompt
Use the system frequency implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"geometric_mean_distance_m": <number>,
"capacitance_nf_per_km": <number>,
"charging_mvar_per_100km": <number>,
"surge_impedance_ohm": <number>
}