Annual lighting energy kwh
annual_lighting_energy_kwh
Annual lighting energy consumption
Scores if within ±3% of the reference value.
Calculates annual lighting energy, Lighting Energy Numeric Indicator, and percentage saving against a reference LENI for an interior lighting zone.
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.
6 inputs
Included directly in every task prompt.
Installed lighting power
installed_lighting_power_w
Installed lighting power in the zone
Annual operating hours
annual_operating_hours
Annual lighting operating hours
Control factor
control_factor
Lighting control factor
Zone area
zone_area_m2
Interior lighting zone area
Reference leni
reference_leni_kwh_m2_year
Reference LENI used for comparison
Visible in easier tasks and withheld in one or more harder tiers.
Daylight factor
daylight_factor
Daylight availability factor
Hidden at hard difficulty.
3 outputs
annual_lighting_energy_kwh
Annual lighting energy consumption
Scores if within ±3% of the reference value.
leni_kwh_m2_year
Lighting Energy Numeric Indicator
Scores if within ±3% of the reference value.
reference_saving_pct
Percentage saving against the reference LENI
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 zone with all values visible
All inputs given
Interior lighting zone selected from office or healthcare cases
Some inputs hidden
Healthcare zone with daylight factor embedded in context
Hidden inputs
Prompt replacement text
Use the daylight availability factor implied by {{ archetype.description }}.
Daylight factor restricted to: 0.75
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 Lighting Energy Numeric Indicator tasks.2# ABOUTME: Presents installed power, hours, factors, area, and reference LENI.3 4You are a senior interior lighting engineer checking lighting energy performance.5 6## Given7 8| Parameter | Value | Unit |9|-----------|-------|------|10| Installed lighting power | {{ installed_lighting_power_w }} | W |11| Annual operating hours | {{ annual_operating_hours }} | h/year |12| Control factor | {{ control_factor }} | - |13| Daylight factor | {{ daylight_factor }} | - |14| Zone area | {{ zone_area_m2 }} | m2 |15| Reference LENI | {{ reference_leni_kwh_m2_year }} | kWh/m2/year |16 17## Constraints18 19- Annual lighting energy equals installed power times annual hours times control and daylight factors, divided by 1000.20- LENI equals annual lighting energy divided by zone area.21- Reference saving is the percentage reduction from the reference LENI.22 23## Output Format24 25Include a JSON block with exactly these keys:26 27```json28{29 "annual_lighting_energy_kwh": <numeric_value>,30 "leni_kwh_m2_year": <numeric_value>,31 "reference_saving_pct": <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.
office_zone
Open office lighting zone
healthcare_zone
Healthcare interior lighting zone
healthcare-healthcare-zone-preview — hard difficulty, some inputs hidden.
Healthcare interior lighting zone. healthcare. Required outputs: annual_lighting_energy_kwh, leni_kwh_m2_year, reference_saving_pct
Scenario context and visible inputs.
Executable tool: leni-calculation_calc.py
Inputs withheld at this difficulty.
Daylight factor
daylight_factor
Stand-in text in the prompt
Use the daylight availability factor implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"annual_lighting_energy_kwh": <number>,
"leni_kwh_m2_year": <number>,
"reference_saving_pct": <number>
}