Voltage drop kv
voltage_drop_kv
Approximate line voltage drop
Scores if within ±3% of the reference value.
Calculates voltage drop, voltage regulation, receiving-end voltage, and real power loss for a balanced three-phase line. The reduced method uses per-kilometre R and X, line length, real and reactive load, and sending-end voltage.
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.
Line resistance ohm per km
line_resistance_ohm_per_km
Positive-sequence line resistance
Line reactance ohm per km
line_reactance_ohm_per_km
Positive-sequence line reactance
Line length
line_length_km
Line length
Load real power
load_real_power_mw
Three-phase real load
Sending voltage
sending_voltage_kv
Sending-end line-to-line voltage
Visible in easier tasks and withheld in one or more harder tiers.
Load reactive power
load_reactive_power_mvar
Three-phase reactive load
Hidden at hard difficulty.
4 outputs
voltage_drop_kv
Approximate line voltage drop
Scores if within ±3% of the reference value.
voltage_regulation_pct
Voltage drop as a percentage of sending voltage
Scores if within ±3% of the reference value.
receiving_end_voltage_kv
Receiving-end line-to-line voltage
Scores if within ±3% of the reference value.
power_loss_mw
Three-phase real power loss
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
Subtransmission line with all values visible
All inputs given
Subtransmission or transmission line
Some inputs hidden
Reactive load hidden in power factor context
Hidden inputs
Prompt replacement text
Use the lagging reactive load implied by {{ archetype.description }}.
Load reactive power mvar restricted to: 100
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 power systems engineer calculating line voltage regulation.2 3## Given4 5| Parameter | Value | Unit |6|-----------|-------|------|7| Line resistance | {{ line_resistance_ohm_per_km }} | ohm/km |8| Line reactance | {{ line_reactance_ohm_per_km }} | ohm/km |9| Line length | {{ line_length_km }} | km |10| Real load | {{ load_real_power_mw }} | MW |11{% if load_reactive_power_mvar is defined %}12| Reactive load | {{ load_reactive_power_mvar }} | MVAr |13{% endif %}14| Sending-end voltage | {{ sending_voltage_kv }} | kV |15 16## Constraints17 18- Use total R and X over the full line length.19- Use the approximate drop formula `deltaV_kV = (R_total P_MW + X_total Q_MVAr) / V_kV`.20- Voltage regulation equals `deltaV / sending_voltage x 100`.21- Receiving voltage equals sending voltage minus voltage drop.22- Estimate three-phase real power loss using line current from apparent power.23 24## Output Format25 26Include a JSON block with exactly these keys:27 28```json29{30 "voltage_drop_kv": <numeric_value>,31 "voltage_regulation_pct": <numeric_value>,32 "receiving_end_voltage_kv": <numeric_value>,33 "power_loss_mw": <numeric_value>34}35```36 37Write your complete solution to `/workspace/output.md`.38 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.
subtransmission_line
Subtransmission feeder supplying a regional load
transmission_line
Transmission line supplying a bulk load
bulk-transmission-transmission-line-preview — hard difficulty, some inputs hidden.
Transmission line supplying a bulk load. bulk-transmission. Required outputs: voltage_drop_kv, voltage_regulation_pct, receiving_end_voltage_kv, power_loss_mw
Scenario context and visible inputs.
Executable tool: voltage-regulation_calc.py
Inputs withheld at this difficulty.
Load reactive power mvar
load_reactive_power_mvar
Stand-in text in the prompt
Use the lagging reactive load implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"voltage_drop_kv": <number>,
"voltage_regulation_pct": <number>,
"receiving_end_voltage_kv": <number>,
"power_loss_mw": <number>
}