Average illuminance lux
average_illuminance_lux
Average maintained illuminance
Scores if within ±3% of the reference value.
Calculates reduced room lighting performance using the lumen method. The template uses room area, luminaire count, luminous flux, utilisation factor, maintenance factor, total lighting power, and target illuminance to report average illuminance, uniformity, power density, and target margin.
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.
9 inputs
Included directly in every task prompt.
Room length
room_length_m
Room length
Room width
room_width_m
Room width
Luminaire
luminaire_count
Number of luminaires
Luminaire luminous flux
luminaire_luminous_flux_lm
Luminous flux per luminaire
Maintenance factor
maintenance_factor
Maintenance factor
Total lighting power
total_lighting_power_w
Total installed lighting power
Minimum illuminance
minimum_illuminance_lux
Minimum calculated illuminance
Target illuminance
target_illuminance_lux
Target average illuminance
Visible in easier tasks and withheld in one or more harder tiers.
Utilisation factor
utilisation_factor
Utilisation factor
Hidden at hard difficulty.
4 outputs
average_illuminance_lux
Average maintained illuminance
Scores if within ±3% of the reference value.
uniformity_ratio_uo
Minimum to average illuminance uniformity ratio
Scores if within ±3% of the reference value.
specific_luminaire_power_density_w_m2_100lux
Lighting power density normalised to 100 lux
Scores if within ±3% of the reference value.
target_illuminance_margin_pct
Percentage margin against target illuminance
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
Office room with all values visible
All inputs given
Room lighting case selected from office or warehouse layouts
Some inputs hidden
Warehouse lighting case with utilisation factor embedded in context
Hidden inputs
Prompt replacement text
Use the utilisation factor implied by {{ archetype.description }}.
Utilisation factor restricted to: 0.62
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 room lumen-method illuminance tasks.2# ABOUTME: Presents room, luminaire, utilisation, maintenance, and target inputs.3 4You are a senior building lighting engineer checking a reduced lumen-method calculation.5 6## Given7 8| Parameter | Value | Unit |9|-----------|-------|------|10| Room length | {{ room_length_m }} | m |11| Room width | {{ room_width_m }} | m |12| Luminaire count | {{ luminaire_count }} | count |13| Luminaire luminous flux | {{ luminaire_luminous_flux_lm }} | lm |14| Utilisation factor | {{ utilisation_factor }} | - |15| Maintenance factor | {{ maintenance_factor }} | - |16| Total lighting power | {{ total_lighting_power_w }} | W |17| Minimum illuminance | {{ minimum_illuminance_lux }} | lux |18| Target illuminance | {{ target_illuminance_lux }} | lux |19 20## Constraints21 22- Room area equals length times width.23- Average illuminance equals total lamp lumens times utilisation factor times maintenance factor divided by room area.24- Uniformity ratio equals minimum illuminance divided by average illuminance.25- Specific luminaire power density equals total power divided by room area and divided by average illuminance per 100 lux.26- Target margin is the percentage difference between average and target illuminance.27 28## Output Format29 30Include a JSON block with exactly these keys:31 32```json33{34 "average_illuminance_lux": <numeric_value>,35 "uniformity_ratio_uo": <numeric_value>,36 "specific_luminaire_power_density_w_m2_100lux": <numeric_value>,37 "target_illuminance_margin_pct": <numeric_value>38}39```40 41Write your complete solution to `/workspace/output.md`.42 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.
office_room
Office room lighting layout
warehouse_room
Warehouse lighting layout
warehouse-lighting-warehouse-room-preview — hard difficulty, some inputs hidden.
Warehouse lighting layout. warehouse-lighting. Required outputs: average_illuminance_lux, uniformity_ratio_uo, specific_luminaire_power_density_w_m2_100lux, target_illuminance_margin_pct
Scenario context and visible inputs.
Executable tool: lux-level-calculation_calc.py
Inputs withheld at this difficulty.
Utilisation factor
utilisation_factor
Stand-in text in the prompt
Use the utilisation factor implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"average_illuminance_lux": <number>,
"uniformity_ratio_uo": <number>,
"specific_luminaire_power_density_w_m2_100lux": <number>,
"target_illuminance_margin_pct": <number>
}