Frequency ratio
frequency_ratio
Ratio of forcing frequency to natural frequency
Scores if within ±3% of the reference value.
Calculates force transmissibility for a damped single-degree vibration isolation system from forcing frequency, natural frequency, and damping ratio. The template reports frequency ratio, transmissibility, and isolation efficiency.
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.
Forcing frequency
forcing_frequency_hz
Excitation or forcing frequency
Natural frequency
natural_frequency_hz
Isolator natural frequency
Damping ratio
damping_ratio
Viscous damping ratio
3 outputs
frequency_ratio
Ratio of forcing frequency to natural frequency
Scores if within ±3% of the reference value.
transmissibility
Damped force transmissibility
Scores if within ±3% of the reference value.
isolation_efficiency_pct
Isolation efficiency
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 mechanical engineer specializing in vibration isolation.2 3## Problem4 5Calculate vibration transmissibility for a damped single-degree isolation system.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Forcing frequency | {{ forcing_frequency_hz }} | Hz |12| Natural frequency | {{ natural_frequency_hz }} | Hz |13| Damping ratio | {{ damping_ratio }} | - |14 15{% if archetype_description is defined %}16### Isolation Context17 18{{ archetype_description }}19{% endif %}20 21{% if tool_available %}22## Available Tool23 24A vibration transmissibility 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. Frequency ratio382. Transmissibility393. Isolation efficiency in percent40 41## Constraints42 43- No internet access is available. Work from engineering knowledge and the provided tool.44- Use frequency ratio = forcing frequency / natural frequency.45- Use the damped force transmissibility equation provided by the tool.46- Use isolation efficiency = (1 - transmissibility) x 100.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 "frequency_ratio": <numeric_value>,55 "transmissibility": <numeric_value>,56 "isolation_efficiency_pct": <numeric_value>57}58```59 60Write your complete solution to `/workspace/output.md`.61 62 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.
pump_isolator
Pump or fan vibration isolator
precision_equipment
Precision equipment vibration isolation
laboratory-equipment-precision-equipment-preview — hard difficulty, all inputs given.
Precision equipment vibration isolation. laboratory-equipment. Required outputs: frequency_ratio, transmissibility, isolation_efficiency_pct
Scenario context and visible inputs.
Executable tool: vibration-transmissibility_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"frequency_ratio": <number>,
"transmissibility": <number>,
"isolation_efficiency_pct": <number>
}