Total connected load w
total_connected_load_w
Total connected load
Scores if within ±3% of the reference value.
Calculates total connected load for a repeated signalling equipment item, applies a diversity factor and future expansion allowance, then converts the resulting demand to recommended supply kVA using the supply power factor.
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.
5 inputs
Included directly in every task prompt.
Equipment power
equipment_power_w
Power rating per equipment item
Equipment quantity
equipment_quantity
Number of equipment items
Diversity factor
diversity_factor
Demand diversity factor
Supply power factor
supply_power_factor
Assumed supply power factor
Visible in easier tasks and withheld in one or more harder tiers.
Future expansion pct
future_expansion_pct
Future expansion allowance
Hidden at hard difficulty.
4 outputs
total_connected_load_w
Total connected load
Scores if within ±3% of the reference value.
maximum_demand_w
Maximum demand after diversity
Scores if within ±3% of the reference value.
future_allowance_w
Future expansion allowance
Scores if within ±3% of the reference value.
recommended_supply_size_kva
Recommended apparent supply size
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
Small cabinet with all inputs visible
All inputs given
Cabinet or room supply sizing
Some inputs hidden
Future allowance hidden in expansion context
Hidden inputs
Prompt replacement text
Use the expansion allowance implied by {{ archetype.description }}.
Future expansion pct restricted to: 25
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 signalling power engineer sizing an equipment supply.2 3## Given4 5| Parameter | Value | Unit |6|-----------|-------|------|7| Equipment power | {{ equipment_power_w }} | W each |8| Equipment quantity | {{ equipment_quantity }} | count |9| Diversity factor | {{ diversity_factor }} | - |10{% if future_expansion_pct is defined %}11| Future expansion allowance | {{ future_expansion_pct }} | % |12{% endif %}13| Supply power factor | {{ supply_power_factor }} | - |14 15## Constraints16 17- Connected load equals equipment power times quantity.18- Maximum demand equals connected load times diversity factor.19- Future allowance equals maximum demand times the expansion percentage.20- Recommended supply kVA equals demand plus allowance, divided by power factor and 1000.21 22## Output Format23 24Include a JSON block with exactly these keys:25 26```json27{28 "total_connected_load_w": <numeric_value>,29 "maximum_demand_w": <numeric_value>,30 "future_allowance_w": <numeric_value>,31 "recommended_supply_size_kva": <numeric_value>32}33```34 35Write your complete solution to `/workspace/output.md`.36 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.
signalling_cabinet
Small signalling cabinet equipment load
equipment_room
Equipment room or larger signalling supply
station-equipment-room-equipment-room-preview — hard difficulty, some inputs hidden.
Equipment room or larger signalling supply. station-equipment-room. Required outputs: total_connected_load_w, maximum_demand_w, future_allowance_w, recommended_supply_size_kva
Scenario context and visible inputs.
Executable tool: power-load-calculation_calc.py
Inputs withheld at this difficulty.
Future expansion pct
future_expansion_pct
Stand-in text in the prompt
Use the expansion allowance implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"total_connected_load_w": <number>,
"maximum_demand_w": <number>,
"future_allowance_w": <number>,
"recommended_supply_size_kva": <number>
}