Active earth force kn
active_earth_force_kn_m
Rankine active earth force per metre
Scores if within ±3% of the reference value.
Calculates source-bound retaining and foundation stability metrics from a deterministic SSC-14 task-owned source pack. The template combines active earth pressure, surcharge, hydrostatic pressure, overturning, sliding, bearing, uplift margin, and overall pass scoring.
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.
13 inputs
Included directly in every task prompt.
Retained height
retained_height_m
WALL-SSC14-004 retained wall height
Soil unit weight
soil_unit_weight_kn_m3
GEO-SSC14-004 retained soil unit weight
Soil friction angle
soil_friction_angle_deg
GEO-SSC14-004 soil friction angle for Rankine pressure
Surcharge
surcharge_kpa
SUR-SSC14-004 backfill surcharge
Water height
water_height_m
GW-SSC14-004 water height against the wall
Wall vertical weight
wall_vertical_weight_kn_m
WALL-SSC14-004 vertical stabilizing wall weight per metre
Base width
base_width_m
WALL-SSC14-004 foundation base width
Resisting lever arm ratio
resisting_lever_arm_ratio
WALL-SSC14-004 resisting lever arm as a fraction of base width
Base friction coefficient
base_friction_coefficient
WALL-SSC14-004 base sliding friction coefficient
Allowable bearing
allowable_bearing_kpa
GEO-SSC14-004 allowable bearing pressure
Uplift force
uplift_force_kn_m
GW-SSC14-004 uplift force under the foundation
Minimum overturning fs
minimum_overturning_fs
MEMO-SSC14-004 minimum overturning factor of safety
Minimum sliding fs
minimum_sliding_fs
MEMO-SSC14-004 minimum sliding factor of safety
12 outputs
active_earth_force_kn_m
Rankine active earth force per metre
Scores if within ±3% of the reference value.
surcharge_force_kn_m
Rankine surcharge force per metre
Scores if within ±3% of the reference value.
hydrostatic_force_kn_m
Hydrostatic force per metre
Scores if within ±3% of the reference value.
total_lateral_force_kn_m
Total lateral force per metre
Scores if within ±3% of the reference value.
overturning_moment_knm_m
Total overturning moment per metre
Scores if within ±3% of the reference value.
resisting_moment_knm_m
Resisting moment from wall vertical weight
Scores if within ±3% of the reference value.
overturning_factor_of_safety
Resisting moment divided by overturning moment
Scores if within ±3% of the reference value.
sliding_factor_of_safety
Frictional resistance divided by lateral force
Scores if within ±3% of the reference value.
bearing_pressure_kpa
Average bearing pressure under the wall base
Scores if within ±3% of the reference value.
bearing_utilization
Bearing pressure divided by allowable bearing
Scores if within ±3% of the reference value.
uplift_margin_kn_m
Reduced stabilizing weight minus uplift force
Scores if within ±3% of the reference value.
overall_pass_score
1.0 when overturning, sliding, bearing, and uplift checks pass
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 structural engineer checking a task-owned synthetic SSC-14 retaining/foundation groundwater and structural stability package.2 3Use only the task-owned synthetic source pack values below for numeric grading. Ground reports, retaining wall calculations, groundwater tables, and foundation checks shape the workflow context only; they are not extra data sources for this instance.4 5## Scene6 7- Product: `SSC-14-LH-04`8- Ground report: `GEO-SSC14-004`9- Wall section: `WALL-SSC14-004`10- Groundwater table: `GW-SSC14-004`11- Surcharge plan: `SUR-SSC14-004`12- Retaining interface memo: `MEMO-SSC14-004`13 14## Source Values15 16- Retained height, soil unit weight, and friction angle: {{ retained_height_m }} m, {{ soil_unit_weight_kn_m3 }} kN/m3, {{ soil_friction_angle_deg }} deg17- Surcharge and water height: {{ surcharge_kpa }} kPa and {{ water_height_m }} m18- Wall vertical weight, base width, and resisting lever arm ratio: {{ wall_vertical_weight_kn_m }} kN/m, {{ base_width_m }} m, {{ resisting_lever_arm_ratio }}19- Base friction coefficient and allowable bearing: {{ base_friction_coefficient }} and {{ allowable_bearing_kpa }} kPa20- Uplift force: {{ uplift_force_kn_m }} kN/m21- Minimum overturning and sliding factors of safety: {{ minimum_overturning_fs }} and {{ minimum_sliding_fs }}22 23## Required Calculations24 25- Rankine active coefficient is `tan(45 - phi / 2)^2`.26- Active earth force is `0.5 x Ka x gamma x H^2`.27- Surcharge force is `Ka x surcharge x H`.28- Hydrostatic force is `0.5 x 9.81 x water_height^2`.29- Overturning moment uses force resultants at `H/3`, `H/2`, and `water_height/3`.30- Resisting moment is wall vertical weight times base width times the resisting lever arm ratio.31- Sliding factor of safety is friction times net vertical weight divided by total lateral force.32- Bearing pressure is wall vertical weight divided by base width.33- Uplift margin is `0.9 x wall_vertical_weight - uplift_force`.34- Overall pass score is `1.0` only when overturning, sliding, bearing, and uplift checks pass.35 36Write a compact retaining interface memo to `/workspace/output.md`. Include a source-boundary statement that this is a task-owned synthetic source pack. Preserve the source IDs above and state whether the baseline source pack passes the current synthetic checks.37 38Do not claim authority approval, accepted project evidence, software export validity, full standards compliance, executable real source-pack parsing, generated benchmark readiness, or benchmark readiness.39 40Include a fenced JSON block with exactly these numeric keys:41 42```json43{44 "active_earth_force_kn_m": <numeric_value>,45 "surcharge_force_kn_m": <numeric_value>,46 "hydrostatic_force_kn_m": <numeric_value>,47 "total_lateral_force_kn_m": <numeric_value>,48 "overturning_moment_knm_m": <numeric_value>,49 "resisting_moment_knm_m": <numeric_value>,50 "overturning_factor_of_safety": <numeric_value>,51 "sliding_factor_of_safety": <numeric_value>,52 "bearing_pressure_kpa": <numeric_value>,53 "bearing_utilization": <numeric_value>,54 "uplift_margin_kn_m": <numeric_value>,55 "overall_pass_score": <numeric_value>56}57```58 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.
ssc14_retaining_groundwater_case
Retaining wall, groundwater, surcharge, and foundation source pack
retaining-wall-ssc14-retaining-groundwater-case-preview — hard difficulty, all inputs given.
Retaining wall, groundwater, surcharge, and foundation source pack. retaining-wall. Required outputs: active_earth_force_kn_m, surcharge_force_kn_m, hydrostatic_force_kn_m, total_lateral_force_kn_m, overturning_moment_knm_m, resisting_moment_knm_m
Scenario context and visible inputs.
Executable tool: retaining-foundation-groundwater-stability-package_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"active_earth_force_kn_m": <number>,
"surcharge_force_kn_m": <number>,
"hydrostatic_force_kn_m": <number>,
"total_lateral_force_kn_m": <number>,
"overturning_moment_knm_m": <number>,
"resisting_moment_knm_m": <number>,
"overturning_factor_of_safety": <number>,
"sliding_factor_of_safety": <number>,
"bearing_pressure_kpa": <number>,
"bearing_utilization": <number>,
"uplift_margin_kn_m": <number>,
"overall_pass_score": <number>
}