Task uniformity uo
task_uniformity_uo
Task-area illuminance uniformity ratio
Scores if within ±3% of the reference value.
Calculates task-area illuminance uniformity and adjacent-area illuminance ratios for interior workplace lighting checks.
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.
4 inputs
Included directly in every task prompt.
Task min illuminance
task_min_illuminance_lux
Minimum illuminance within the task area
Task average illuminance
task_average_illuminance_lux
Average illuminance within the task area
Surround average illuminance
surround_average_illuminance_lux
Average illuminance in the immediate surround area
Visible in easier tasks and withheld in one or more harder tiers.
Background average illuminance
background_average_illuminance_lux
Average illuminance in the background area
Hidden at hard difficulty.
3 outputs
task_uniformity_uo
Task-area illuminance uniformity ratio
Scores if within ±3% of the reference value.
surround_to_task_ratio
Immediate surround illuminance divided by task average illuminance
Scores if within ±3% of the reference value.
background_to_task_ratio
Background illuminance divided by task average 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 task area with all values visible
All inputs given
Interior task area selected from office or industrial cases
Some inputs hidden
Industrial task area with background illuminance embedded in context
Hidden inputs
Prompt replacement text
Use the background-area illuminance implied by {{ archetype.description }}.
Background average illuminance lux restricted to: 180
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 interior illuminance uniformity tasks.2# ABOUTME: Presents task, surround, and background illuminance values.3 4You are a senior interior lighting engineer verifying workplace illuminance uniformity.5 6## Given7 8| Parameter | Value | Unit |9|-----------|-------|------|10| Task minimum illuminance | {{ task_min_illuminance_lux }} | lux |11| Task average illuminance | {{ task_average_illuminance_lux }} | lux |12| Immediate surround average illuminance | {{ surround_average_illuminance_lux }} | lux |13| Background average illuminance | {{ background_average_illuminance_lux }} | lux |14 15## Constraints16 17- Task uniformity Uo equals task minimum illuminance divided by task average illuminance.18- Surround-to-task ratio equals immediate surround average illuminance divided by task average illuminance.19- Background-to-task ratio equals background average illuminance divided by task average illuminance.20 21## Output Format22 23Include a JSON block with exactly these keys:24 25```json26{27 "task_uniformity_uo": <numeric_value>,28 "surround_to_task_ratio": <numeric_value>,29 "background_to_task_ratio": <numeric_value>30}31```32 33Write your complete solution to `/workspace/output.md`.34 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_work_area
Office task area with surrounding circulation
industrial_work_area
Industrial task area with adjacent general lighting
industrial-workplace-industrial-work-area-preview — hard difficulty, some inputs hidden.
Industrial task area with adjacent general lighting. industrial-workplace. Required outputs: task_uniformity_uo, surround_to_task_ratio, background_to_task_ratio
Scenario context and visible inputs.
Executable tool: interior-uniformity_calc.py
Inputs withheld at this difficulty.
Background average illuminance lux
background_average_illuminance_lux
Stand-in text in the prompt
Use the background-area illuminance implied by {{ archetype.description }}.
The scored JSON answer schema.
{
"task_uniformity_uo": <number>,
"surround_to_task_ratio": <number>,
"background_to_task_ratio": <number>
}