Service vertical load kn
service_vertical_load_kn
Service vertical bracket load
Scores if within ±3% of the reference value.
Calculates service vertical load, factored vertical load, factored lateral load, and resultant bracket action using explicit load effects and factors. The template is a reduced deterministic load calculation, not a full bracket capacity design.
with-tool: The model is given an executable Python calculator script.
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.
Dead load
dead_load_kn
Unfactored dead load on the bracket
Live load
live_load_kn
Unfactored live load on the bracket
Wind load
wind_load_kn
Unfactored lateral wind load on the bracket
Dead load factor
dead_load_factor
Dead load factor
Live load factor
live_load_factor
Live load factor
Wind load factor
wind_load_factor
Wind load factor
4 outputs
service_vertical_load_kn
Service vertical bracket load
Scores if within ±3% of the reference value.
factored_vertical_load_kn
Factored vertical bracket load
Scores if within ±3% of the reference value.
factored_lateral_load_kn
Factored lateral bracket load
Scores if within ±3% of the reference value.
factored_resultant_load_kn
Factored resultant bracket load
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.
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 structural engineer specializing in bracket connection load checks.2 3## Problem4 5Calculate reduced service and factored bracket load resultants from explicit load effects and factors.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Dead load | {{ dead_load_kn }} | kN |12| Live load | {{ live_load_kn }} | kN |13| Wind load | {{ wind_load_kn }} | kN |14| Dead load factor | {{ dead_load_factor }} | - |15| Live load factor | {{ live_load_factor }} | - |16| Wind load factor | {{ wind_load_factor }} | - |17 18{% if archetype_description is defined %}19### Bracket Context20 21{{ archetype_description }}22{% endif %}23 24{% if tool_available %}25## Available Tool26 27A bracket load calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:28 29```bash30python3 /workspace/{{ meta.name }}_calc.py --help31```32 33You may use this tool to verify your calculations or compute values directly.34{% endif %}35 36## Required37 38Calculate the following:39 401. Service vertical load412. Factored vertical load423. Factored lateral load434. Factored resultant load44 45## Constraints46 47- No internet access is available. Work from engineering knowledge and the provided tool.48- Use only the explicit load factors provided.49- Use resultant load = square root of factored vertical squared plus factored lateral squared.50 51## Output Format52 53Show 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:54 55```json56{57 "service_vertical_load_kn": <numeric_value>,58 "factored_vertical_load_kn": <numeric_value>,59 "factored_lateral_load_kn": <numeric_value>,60 "factored_resultant_load_kn": <numeric_value>61}62```63 64Write your complete solution to `/workspace/output.md`.65 66 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.
facade_bracket
Facade or cladding support bracket
equipment_bracket
Plant or equipment support bracket
plant-platform-equipment-bracket-preview — hard difficulty, all inputs given.
Plant or equipment support bracket. plant-platform. Required outputs: service_vertical_load_kn, factored_vertical_load_kn, factored_lateral_load_kn, factored_resultant_load_kn
Scenario context and visible inputs.
Executable tool: bracket-load-calc_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"service_vertical_load_kn": <number>,
"factored_vertical_load_kn": <number>,
"factored_lateral_load_kn": <number>,
"factored_resultant_load_kn": <number>
}