Mlss inventory kg
mlss_inventory_kg
Total MLSS inventory
Scores if within ±3% of the reference value.
Calculates total mixed liquor suspended solids inventory in an aeration basin from basin volume and MLSS concentration. The template also applies an explicit volatile-solids fraction to estimate MLVSS inventory and inert solids mass for activated sludge process checks.
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.
Aeration volume
aeration_volume_m3
Aeration basin volume
Mlss concentration
mlss_concentration_mg_l
Mixed liquor suspended solids concentration
Mlvss fraction
mlvss_fraction
Fraction of MLSS that is volatile suspended solids
3 outputs
mlss_inventory_kg
Total MLSS inventory
Scores if within ±3% of the reference value.
mlvss_inventory_kg
Estimated MLVSS inventory
Scores if within ±3% of the reference value.
inert_solids_inventory_kg
Estimated inert suspended solids inventory
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 wastewater treatment process calculations.2 3## Problem4 5Calculate mixed liquor suspended solids inventory in an aeration basin.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Aeration volume | {{ aeration_volume_m3 }} | m3 |12| MLSS concentration | {{ mlss_concentration_mg_l }} | mg/L |13| MLVSS fraction | {{ mlvss_fraction }} | - |14 15{% if archetype_description is defined %}16### Process Context17 18{{ archetype_description }}19{% endif %}20 21{% if tool_available %}22## Available Tool23 24An MLSS inventory 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. Total MLSS inventory (kg)382. Estimated MLVSS inventory (kg)393. Estimated inert suspended solids inventory (kg)40 41## Constraints42 43- No internet access is available. Work from engineering knowledge and the provided tool.44- Use MLSS inventory = aeration volume x MLSS concentration / 1000.45- Use MLVSS inventory = MLSS inventory x MLVSS fraction.46- Use inert solids inventory = MLSS inventory - MLVSS inventory.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 "mlss_inventory_kg": <numeric_value>,55 "mlvss_inventory_kg": <numeric_value>,56 "inert_solids_inventory_kg": <numeric_value>57}58```59 60Write your complete solution to `/workspace/output.md`.61 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.
package_activated_sludge
Package activated sludge plant
municipal_aeration_basin
Municipal activated sludge aeration basin
regional-wwtp-municipal-aeration-basin-preview — hard difficulty, all inputs given.
Municipal activated sludge aeration basin. regional-wwtp. Required outputs: mlss_inventory_kg, mlvss_inventory_kg, inert_solids_inventory_kg
Scenario context and visible inputs.
Executable tool: mlss-inventory_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"mlss_inventory_kg": <number>,
"mlvss_inventory_kg": <number>,
"inert_solids_inventory_kg": <number>
}