Dynamic pressure
dynamic_pressure_kpa
Basic dynamic wind pressure q = 0.5 * rho * V^2 (kPa)
Scores if within ±3% of the reference value.
Computes design wind pressure on a building surface using the AS/NZS 1170.2 Section 2.4 formula p = 0.5 * rho_air * V_des^2 * C_fig * C_dyn. Determines the basic dynamic pressure from wind speed, applies aerodynamic shape and dynamic response factors, and calculates the total wind force on a tributary area for structural design.
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.
5 inputs
Included directly in every task prompt.
Design wind speed m per s
design_wind_speed_m_per_s
Design wind speed V_des,theta for the chosen cardinal direction
Cfig
cfig
Aerodynamic shape factor C_fig (positive = pressure, negative = suction)
Tributary area
tributary_area_m2
Tributary area of the surface being loaded
Sampled from the scenario and inferable from its description.
Cdyn
cdyn
Dynamic response factor C_dyn (1.0 for most low-rise structures)
Derived from the archetype scenario. Hidden at hard difficulty.
Air density kg per m3
air_density_kg_per_m3
Air density rho_air (standard value 1.2 kg/m3)
Derived from the archetype scenario. Hidden at hard difficulty.
3 outputs
dynamic_pressure_kpa
Basic dynamic wind pressure q = 0.5 * rho * V^2 (kPa)
Scores if within ±3% of the reference value.
design_pressure_kpa
Design wind pressure p = q * C_fig * C_dyn (kPa)
Scores if within ±3% of the reference value.
total_force_kn
Total wind force on the tributary area F = p * A (kN)
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.
All inputs given
All parameters given, low-rise buildings with C_dyn = 1.0 and standard air density
All inputs given
All parameters given, wider range of building types including mid-rise and industrial
Some inputs hidden
C_dyn and air density hidden; agent must adopt standard values from engineering knowledge
Hidden inputs
Prompt replacement text
The structure is a {{ archetype.description }} ({{ archetype.site_context }})
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/wind engineer specializing in wind loading analysis for building design.2 3## Problem4 5Calculate the design wind pressure on a building surface and the total wind force on the tributary area, in accordance with AS/NZS 1170.2.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Design wind speed (V_des,theta) | {{ design_wind_speed_m_per_s }} | m/s |12| Aerodynamic shape factor (C_fig) | {{ cfig }} | — |13{% if cdyn is defined %}14| Dynamic response factor (C_dyn) | {{ cdyn }} | — |15{% endif %}16{% if air_density_kg_per_m3 is defined %}17| Air density (rho_air) | {{ air_density_kg_per_m3 }} | kg/m3 |18{% endif %}19| Tributary area (A) | {{ tributary_area_m2 }} | m2 |20{% if archetype_description is defined %}21 22### Site Conditions23 24{{ archetype_description }}25{% endif %}26 27{% if tool_available %}28## Available Tool29 30A wind pressure calculation tool is available at `/workspace/design-wind-pressure_calc.py`. Run it with:31 32```bash33python3 /workspace/design-wind-pressure_calc.py --help34```35 36You may use this tool to verify your calculations or compute values directly.37{% endif %}38 39## Required40 41Calculate the following:42 431. Basic dynamic wind pressure q (kPa)442. Design wind pressure p (kPa)453. Total wind force on the tributary area F (kN)46 47## Applicable Standards48 49- AS/NZS 1170.2 — Structural design actions, Part 2: Wind actions (Section 2.4)50 51## Constraints52 53- No internet access is available. Work from engineering knowledge and the provided tool.54- Use the AS/NZS 1170.2 Section 2.4 design wind pressure formula:55 - **q = 0.5 * rho_air * V_des^2** (basic dynamic pressure)56 - **p = q * C_fig * C_dyn** (design wind pressure on the surface)57 - **F = p * A** (total wind force on the tributary area)58- A positive C_fig indicates pressure towards the surface; a negative C_fig indicates suction away from the surface.59- If air density is not given, use the standard value rho_air = 1.2 kg/m3.60- If C_dyn is not given, use C_dyn = 1.0 (appropriate for most low-rise and medium-rise structures that are not dynamically sensitive).61- For tall or slender structures, C_dyn may exceed 1.0 and should be calculated per AS/NZS 1170.2 Section 6.62- Convert Pa to kPa (divide by 1000) and N to kN (divide by 1000) for final answers.63 64## Output Format65 66Show your step-by-step working in Markdown, including formulas and intermediate calculations. At the end of your solution, include a JSON block with your final answers in exactly this format:67 68```json69{70 "dynamic_pressure_kpa": <numeric_value>,71 "design_pressure_kpa": <numeric_value>,72 "total_force_kn": <numeric_value>73}74```75 76Write your complete solution to `/workspace/output.md`.77 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_rise_windward_wall
Windward wall of a low-rise building in suburban terrain
low_rise_roof_suction
Roof surface under suction on a low-rise building in open terrain
mid_rise_facade
Facade panel on a mid-rise office building in city fringe terrain
high_rise_cladding
Cladding panel on a tall building in urban terrain with dynamic amplification
industrial_large_opening
Large wall opening on an industrial building in open terrain
cyclonic_coastal
Coastal structure in a cyclonic wind region with high design wind speeds
city-fringe-office-block-mid-rise-facade-preview — hard difficulty, some inputs hidden.
Facade panel on a mid-rise office building in city fringe terrain. city-fringe-office-block. Required outputs: dynamic_pressure_kpa, design_pressure_kpa, total_force_kn
Scenario context and visible inputs.
Executable tool: design-wind-pressure_calc.py
Inputs withheld at this difficulty.
Air density kg per m3
air_density_kg_per_m3
Cdyn
cdyn
Stand-in text in the prompt
The structure is a {{ archetype.description }} ({{ archetype.site_context }})
The scored JSON answer schema.
{
"dynamic_pressure_kpa": <number>,
"design_pressure_kpa": <number>,
"total_force_kn": <number>
}