Unclipped hrr
unclipped_hrr_kw
Unclipped t-squared heat release rate
Scores if within ±3% of the reference value.
Calculates design fire heat release rate using the t-squared growth model HRR = alpha t^2, with an explicit peak HRR cap. The template reports the unclipped HRR, peak-limited HRR, time to peak, and a numeric cap indicator for deterministic fire safety scenario 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.
3 inputs
Included directly in every task prompt.
Growth coefficient kw s2
growth_coefficient_kw_s2
T-squared fire growth coefficient alpha
Time from ignition
time_from_ignition_s
Time from ignition
Peak hrr
peak_hrr_kw
Peak heat release rate cap
4 outputs
unclipped_hrr_kw
Unclipped t-squared heat release rate
Scores if within ±3% of the reference value.
hrr_at_time_kw
Heat release rate at time after applying peak cap
Scores if within ±3% of the reference value.
time_to_peak_s
Time from ignition to reach peak HRR
Scores if within ±3% of the reference value.
peak_limited
Numeric peak-limit indicator: 0 no, 1 yes
Scores if within ±1% 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.
For this template, difficulty scales through parameter and scenario ranges rather than hidden information.
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 mechanical fire safety engineer specializing in design fire scenarios.2 3## Problem4 5Calculate heat release rate using the t-squared fire growth model and apply the peak HRR cap.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Growth coefficient alpha | {{ growth_coefficient_kw_s2 }} | kW/s^2 |12| Time from ignition t | {{ time_from_ignition_s }} | s |13| Peak HRR limit | {{ peak_hrr_kw }} | kW |14 15{% if archetype_description is defined %}16### Fire Scenario Context17 18{{ archetype_description }}19{% endif %}20 21{% if tool_available %}22## Available Tool23 24A t-squared HRR calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:25 26```bash27python3 /workspace/{{ meta.name }}_calc.py --help28```29 30You may use this tool to verify your calculations or compute values directly.31{% endif %}32 33## Required34 35Calculate the following:36 371. Unclipped t-squared HRR (kW)382. HRR at the specified time after applying the peak limit (kW)393. Time to reach the peak HRR (s)404. Numeric peak-limit indicator: 0 no, 1 yes41 42## Constraints43 44- No internet access is available. Work from engineering knowledge and the provided tool.45- Use HRR_unclipped = alpha x t^2.46- Use HRR_at_time = min(HRR_unclipped, peak HRR).47- Use time_to_peak = sqrt(peak HRR / alpha).48- Set peak_limited to 1 when HRR_unclipped is at or above the peak HRR, otherwise 0.49 50## Output Format51 52Show your step-by-step working in Markdown. At the end of your solution, include a JSON block with your final answers in exactly this format:53 54```json55{56 "unclipped_hrr_kw": <numeric_value>,57 "hrr_at_time_kw": <numeric_value>,58 "time_to_peak_s": <numeric_value>,59 "peak_limited": <numeric_value>60}61```62 63Write your complete solution to `/workspace/output.md`.64 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.
slow_growth_fire
Slow-growth design fire for low-combustibility occupancy
medium_growth_fire
Medium-growth design fire for mixed fuel load occupancy
fast_growth_fire
Fast-growth design fire for high fuel load storage or plant areas
retail-tenancy-medium-growth-fire-preview — hard difficulty, all inputs given.
Medium-growth design fire for mixed fuel load occupancy. retail-tenancy. Required outputs: unclipped_hrr_kw, hrr_at_time_kw, time_to_peak_s, peak_limited
Scenario context and visible inputs.
Executable tool: t-squared-hrr_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"unclipped_hrr_kw": <number>,
"hrr_at_time_kw": <number>,
"time_to_peak_s": <number>,
"peak_limited": <number>
}