Critical temperature c
critical_temperature_c
Critical steel temperature
Scores if within ±3% of the reference value.
Calculates steel critical temperature from an explicit fire design load ratio using the Eurocode-style relationship theta_cr = 39.19 ln(1/(0.9674 mu^3.833) - 1) + 482. The template reports the critical temperature, margin to a protection trigger, and a numeric protection requirement indicator.
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.
2 inputs
Included directly in every task prompt.
Load ratio
load_ratio
Design load effect divided by ambient-temperature resistance
Protection trigger
protection_trigger_c
Critical temperature threshold below which fire protection is required
3 outputs
critical_temperature_c
Critical steel temperature
Scores if within ±3% of the reference value.
protection_margin_c
Critical temperature minus protection trigger temperature
Scores if within ±3% of the reference value.
protection_required
Numeric fire protection requirement 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 structural fire checks.2 3## Problem4 5Calculate the critical steel temperature from the member load ratio and determine whether the critical temperature falls below the fire protection trigger.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Load ratio mu | {{ load_ratio }} | - |12| Protection trigger temperature | {{ protection_trigger_c }} | C |13 14{% if archetype_description is defined %}15### Structural Fire Context16 17{{ archetype_description }}18{% endif %}19 20{% if tool_available %}21## Available Tool22 23A steel critical temperature calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:24 25```bash26python3 /workspace/{{ meta.name }}_calc.py --help27```28 29You may use this tool to verify your calculations or compute values directly.30{% endif %}31 32## Required33 34Calculate the following:35 361. Critical steel temperature (C)372. Protection margin relative to the trigger temperature (C)383. Numeric fire protection requirement indicator: 0 no, 1 yes39 40## Constraints41 42- No internet access is available. Work from engineering knowledge and the provided tool.43- Use theta_cr = 39.19 x ln(1 / (0.9674 x mu^3.833) - 1) + 482.44- Use protection margin = critical temperature - protection trigger temperature.45- Set protection_required to 1 when the critical temperature is below the trigger, otherwise 0.46- Treat the load ratio as an explicit input; do not recalculate section capacity.47 48## Output Format49 50Show 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:51 52```json53{54 "critical_temperature_c": <numeric_value>,55 "protection_margin_c": <numeric_value>,56 "protection_required": <numeric_value>57}58```59 60Write your complete solution to `/workspace/output.md`.61 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.
low_utilisation_member
Low-utilisation steel member with reserve ambient capacity
moderate_utilisation_member
Moderately utilised steel member in a fire-rated zone
high_utilisation_member
Highly utilised steel member with low reserve fire capacity
commercial-frame-beam-moderate-utilisation-member-preview — hard difficulty, all inputs given.
Moderately utilised steel member in a fire-rated zone. commercial-frame-beam. Required outputs: critical_temperature_c, protection_margin_c, protection_required
Scenario context and visible inputs.
Executable tool: steel-critical-temp_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"critical_temperature_c": <number>,
"protection_margin_c": <number>,
"protection_required": <number>
}