Power density index w per lux m2
power_density_index_w_per_lux_m2
Power Density Index in watts per lux per square metre
Scores if within ±3% of the reference value.
Calculates Power Density Index and specific power density for a road lighting installation from total system power, maintained illuminance, and illuminated area.
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.
3 inputs
Included directly in every task prompt.
Total system power
total_system_power_w
Total installed road lighting system power
Maintained illuminance
maintained_illuminance_lux
Maintained average illuminance over the lit area
Visible in easier tasks and withheld in one or more harder tiers.
Illuminated area
illuminated_area_m2
Illuminated road or pathway area
Hidden at hard difficulty.
2 outputs
power_density_index_w_per_lux_m2
Power Density Index in watts per lux per square metre
Scores if within ±3% of the reference value.
specific_power_density_w_per_m2
Installed power divided by illuminated area
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
Local road with all values visible
All inputs given
Road lighting section selected from local or arterial cases
Some inputs hidden
Arterial road with illuminated area embedded in context
Hidden inputs
Prompt replacement text
Use the illuminated area implied by {{ archetype.description }}.
Illuminated area m2 restricted to: 12000
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.
1# ABOUTME: Prompt template for road lighting Power Density Index tasks.2# ABOUTME: Presents lighting power, illuminance, and area inputs for calculation.3 4You are a senior road lighting engineer checking energy efficiency.5 6## Given7 8| Parameter | Value | Unit |9|-----------|-------|------|10| Total system power | {{ total_system_power_w }} | W |11| Maintained illuminance | {{ maintained_illuminance_lux }} | lux |12| Illuminated area | {{ illuminated_area_m2 }} | m2 |13 14## Constraints15 16- Specific power density equals total system power divided by illuminated area.17- Power Density Index equals total system power divided by maintained illuminance and illuminated area.18- Use the values exactly as given.19 20## Output Format21 22Include a JSON block with exactly these keys:23 24```json25{26 "power_density_index_w_per_lux_m2": <numeric_value>,27 "specific_power_density_w_per_m2": <numeric_value>28}29```30 31Write your complete solution to `/workspace/output.md`.32 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.
local_road
Local road lighting section
arterial_road
Arterial road lighting section
arterial-road-arterial-road-preview — hard difficulty, some inputs hidden.
Arterial road lighting section. arterial-road. Required outputs: power_density_index_w_per_lux_m2, specific_power_density_w_per_m2
Scenario context and visible inputs.
Executable tool: road-pdi-calculation_calc.py
Inputs withheld at this difficulty.
Illuminated area m2
illuminated_area_m2
Stand-in text in the prompt
Use the illuminated area implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"power_density_index_w_per_lux_m2": <number>,
"specific_power_density_w_per_m2": <number>
}