Combo 1 moment knm
combo_1_moment_knm
Factored moment for combination 1
Scores if within ±3% of the reference value.
Applies explicit dead, live, wind, and seismic load factors to three reduced load combinations. The template reports each factored moment, the governing moment, the associated governing shear, and a numeric governing-combination index.
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.
14 inputs
Included directly in every task prompt.
Dead moment
dead_moment_knm
Unfactored dead-load moment
Live moment
live_moment_knm
Unfactored live-load moment
Wind moment
wind_moment_knm
Unfactored wind-load moment
Seismic moment
seismic_moment_knm
Unfactored seismic-load moment
Dead shear
dead_shear_kn
Unfactored dead-load shear
Live shear
live_shear_kn
Unfactored live-load shear
Wind shear
wind_shear_kn
Unfactored wind-load shear
Seismic shear
seismic_shear_kn
Unfactored seismic-load shear
Combo 1 dead factor
combo_1_dead_factor
Dead-load factor for combination 1
Combo 1 live factor
combo_1_live_factor
Live-load factor for combination 1
Combo 2 dead factor
combo_2_dead_factor
Dead-load factor for combination 2
Combo 2 wind factor
combo_2_wind_factor
Wind-load factor for combination 2
Combo 3 dead factor
combo_3_dead_factor
Dead-load factor for combination 3
Combo 3 seismic factor
combo_3_seismic_factor
Seismic-load factor for combination 3
6 outputs
combo_1_moment_knm
Factored moment for combination 1
Scores if within ±3% of the reference value.
combo_2_moment_knm
Factored moment for combination 2
Scores if within ±3% of the reference value.
combo_3_moment_knm
Factored moment for combination 3
Scores if within ±3% of the reference value.
governing_moment_knm
Maximum factored moment
Scores if within ±3% of the reference value.
governing_shear_kn
Factored shear associated with the governing moment combination
Scores if within ±3% of the reference value.
governing_combination_index
Numeric index of the governing moment combination
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 structural engineer specializing in reduced load-combination checks.2 3## Problem4 5Calculate factored design moments and shears for three explicit load combinations, then identify the governing combination by moment.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Dead load moment | {{ dead_moment_knm }} | kNm |12| Live load moment | {{ live_moment_knm }} | kNm |13| Wind load moment | {{ wind_moment_knm }} | kNm |14| Seismic load moment | {{ seismic_moment_knm }} | kNm |15| Dead load shear | {{ dead_shear_kn }} | kN |16| Live load shear | {{ live_shear_kn }} | kN |17| Wind load shear | {{ wind_shear_kn }} | kN |18| Seismic load shear | {{ seismic_shear_kn }} | kN |19| Combination 1 dead factor | {{ combo_1_dead_factor }} | - |20| Combination 1 live factor | {{ combo_1_live_factor }} | - |21| Combination 2 dead factor | {{ combo_2_dead_factor }} | - |22| Combination 2 wind factor | {{ combo_2_wind_factor }} | - |23| Combination 3 dead factor | {{ combo_3_dead_factor }} | - |24| Combination 3 seismic factor | {{ combo_3_seismic_factor }} | - |25 26{% if archetype_description is defined %}27### Structural Context28 29{{ archetype_description }}30{% endif %}31 32{% if tool_available %}33## Available Tool34 35A load combination calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:36 37```bash38python3 /workspace/{{ meta.name }}_calc.py --help39```40 41You may use this tool to verify your calculations or compute values directly.42{% endif %}43 44## Required45 46Calculate the following:47 481. Factored moment for combination 1: dead plus live492. Factored moment for combination 2: dead plus wind503. Factored moment for combination 3: dead plus seismic514. Governing moment525. Shear associated with the governing moment combination536. Governing combination index, where 1, 2, and 3 correspond to the combinations above54 55## Constraints56 57- No internet access is available. Work from engineering knowledge and the provided tool.58- Use only the explicit factors provided in the prompt.59- Do not infer code-specific factors or additional combinations.60- Select the governing combination by maximum factored moment.61 62## Output Format63 64Show 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:65 66```json67{68 "combo_1_moment_knm": <numeric_value>,69 "combo_2_moment_knm": <numeric_value>,70 "combo_3_moment_knm": <numeric_value>,71 "governing_moment_knm": <numeric_value>,72 "governing_shear_kn": <numeric_value>,73 "governing_combination_index": <numeric_value>74}75```76 77Write your complete solution to `/workspace/output.md`.78 79 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.
bridge_member
Bridge member factored action check
building_member
Building member factored action check
bridge-superstructure-bridge-member-preview — hard difficulty, all inputs given.
Bridge member factored action check. bridge-superstructure. Required outputs: combo_1_moment_knm, combo_2_moment_knm, combo_3_moment_knm, governing_moment_knm, governing_shear_kn, governing_combination_index
Scenario context and visible inputs.
Executable tool: load-combinations_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"combo_1_moment_knm": <number>,
"combo_2_moment_knm": <number>,
"combo_3_moment_knm": <number>,
"governing_moment_knm": <number>,
"governing_shear_kn": <number>,
"governing_combination_index": <number>
}