Solids mass flow kg d
solids_mass_flow_kg_d
Clarifier solids mass flow
Scores if within ±3% of the reference value.
Calculates secondary clarifier solids loading rate from total clarifier flow, MLSS concentration, and surface area, then compares the result with an explicit maximum criterion. The template reports solids mass flow, area-normalised loading, utilisation, margin, and a numeric criterion 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.
Total flow
total_flow_m3_d
Total flow to the clarifier including return activated sludge
Mlss concentration
mlss_concentration_mg_l
Mixed liquor suspended solids concentration
Clarifier surface area
clarifier_surface_area_m2
Clarifier plan surface area
Maximum slr
maximum_slr_kg_m2_h
Maximum allowable solids loading rate criterion
5 outputs
solids_mass_flow_kg_d
Clarifier solids mass flow
Scores if within ±3% of the reference value.
solids_loading_rate_kg_m2_h
Calculated solids loading rate
Scores if within ±3% of the reference value.
utilisation_ratio
Ratio of calculated SLR to maximum criterion
Scores if within ±3% of the reference value.
compliance_margin_kg_m2_h
Positive margin below the maximum criterion
Scores if within ±3% of the reference value.
criterion_satisfied
Numeric flag where 1 means the criterion is satisfied
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 mechanical engineer specializing in wastewater treatment.2 3## Problem4 5Calculate secondary clarifier solids loading rate and compare it with an explicit maximum criterion.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Total clarifier flow including return activated sludge | {{ total_flow_m3_d }} | m3/d |12| MLSS concentration | {{ mlss_concentration_mg_l }} | mg/L |13| Clarifier surface area | {{ clarifier_surface_area_m2 }} | m2 |14| Maximum solids loading rate | {{ maximum_slr_kg_m2_h }} | kg/m2.h |15 16{% if archetype_description is defined %}17### Clarifier Context18 19{{ archetype_description }}20{% endif %}21 22{% if tool_available %}23## Available Tool24 25A solids loading rate 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. Solids mass flow in kg/d392. Solids loading rate in kg/m2.h403. Utilisation ratio against the maximum criterion414. Compliance margin in kg/m2.h425. Numeric criterion flag, where 1 means satisfied and 0 means not satisfied43 44## Constraints45 46- No internet access is available. Work from engineering knowledge and the provided tool.47- Use solids mass flow = total flow x MLSS / 1000.48- Use solids loading rate = solids mass flow / clarifier surface area / 24.49- Use utilisation ratio = solids loading rate / maximum solids loading rate.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 "solids_mass_flow_kg_d": <numeric_value>,58 "solids_loading_rate_kg_m2_h": <numeric_value>,59 "utilisation_ratio": <numeric_value>,60 "compliance_margin_kg_m2_h": <numeric_value>,61 "criterion_satisfied": <numeric_value>62}63```64 65Write your complete solution to `/workspace/output.md`.66 67 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.
secondary_clarifier
Secondary clarifier solids loading check
high_rate_clarifier
High-rate secondary clarifier solids loading check
large-wwtp-high-rate-clarifier-preview — hard difficulty, all inputs given.
High-rate secondary clarifier solids loading check. large-wwtp. Required outputs: solids_mass_flow_kg_d, solids_loading_rate_kg_m2_h, utilisation_ratio, compliance_margin_kg_m2_h, criterion_satisfied
Scenario context and visible inputs.
Executable tool: slr-calculation_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"solids_mass_flow_kg_d": <number>,
"solids_loading_rate_kg_m2_h": <number>,
"utilisation_ratio": <number>,
"compliance_margin_kg_m2_h": <number>,
"criterion_satisfied": <number>
}