Design tension kn
design_tension_kn
Design mooring line tension
Scores if within ±3% of the reference value.
Calculates design line tension from explicit mooring line tension, dynamic factor, and consequence factor, then compares the result with minimum breaking load. The template reports capacity margin, reserve capacity, utilisation, and a numeric pass flag.
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.
Line tension
line_tension_kn
Characteristic mooring line tension
Dynamic factor
dynamic_factor
Dynamic amplification factor applied to line tension
Consequence factor
consequence_factor
Consequence factor applied to design tension
Mbl
mbl_kn
Minimum breaking load of the mooring line
5 outputs
design_tension_kn
Design mooring line tension
Scores if within ±3% of the reference value.
capacity_margin_ratio
Ratio of minimum breaking load to design tension
Scores if within ±3% of the reference value.
reserve_capacity_kn
Minimum breaking load minus design tension
Scores if within ±3% of the reference value.
utilisation_ratio
Ratio of design tension to minimum breaking load
Scores if within ±3% of the reference value.
passes_capacity_check
Numeric pass flag: 1 if design tension is within capacity, otherwise 0
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 marine mooring checks.2 3## Problem4 5Calculate the design tension in a mooring line and check it against the line minimum breaking load.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Line tension | {{ line_tension_kn }} | kN |12| Dynamic factor | {{ dynamic_factor }} | - |13| Consequence factor | {{ consequence_factor }} | - |14| Minimum breaking load | {{ mbl_kn }} | kN |15 16{% if archetype_description is defined %}17### Structural Context18 19{{ archetype_description }}20{% endif %}21 22{% if tool_available %}23## Available Tool24 25A mooring line capacity calculation tool is available at `/workspace/{{ meta.name }}_calc.py`. Run it with:26 27```bash28python3 /workspace/{{ meta.name }}_calc.py --help29```30 31You may use this tool to verify your calculations or compute values directly.32{% endif %}33 34## Required35 36Calculate the following:37 381. Design tension as line tension multiplied by dynamic factor and consequence factor392. Capacity margin ratio as minimum breaking load divided by design tension403. Reserve capacity as minimum breaking load minus design tension414. Utilisation ratio as design tension divided by minimum breaking load425. Pass flag, where 1 means design tension does not exceed minimum breaking load and 0 means it exceeds it43 44## Constraints45 46- No internet access is available. Work from engineering knowledge and the provided tool.47- Use only the explicit factors provided in the prompt.48- Do not infer extra reduction factors, safety factors, or load combinations.49- Treat the pass flag as numeric: 1 for pass, 0 for fail.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 "design_tension_kn": <numeric_value>,58 "capacity_margin_ratio": <numeric_value>,59 "reserve_capacity_kn": <numeric_value>,60 "utilisation_ratio": <numeric_value>,61 "passes_capacity_check": <numeric_value>62}63```64 65Write your complete solution to `/workspace/output.md`.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.
service_berth_line
Service berth mooring line capacity check
bulk_berth_line
Bulk berth mooring line capacity check
bulk-export-berth-bulk-berth-line-preview — hard difficulty, all inputs given.
Bulk berth mooring line capacity check. bulk-export-berth. Required outputs: design_tension_kn, capacity_margin_ratio, reserve_capacity_kn, utilisation_ratio, passes_capacity_check
Scenario context and visible inputs.
Executable tool: mooring-line-capacity_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"design_tension_kn": <number>,
"capacity_margin_ratio": <number>,
"reserve_capacity_kn": <number>,
"utilisation_ratio": <number>,
"passes_capacity_check": <number>
}