Volatile solids destroyed kg d
volatile_solids_destroyed_kg_d
Volatile solids destroyed
Scores if within ±3% of the reference value.
Estimates daily biogas and methane production from volatile solids feed, destruction percentage, biogas yield, and methane fraction. The template reports solids destroyed, biogas volume, methane volume, and methane energy.
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.
Volatile solids feed
volatile_solids_feed_kg_d
Daily volatile solids feed to digestion
Volatile solids destruction pct
volatile_solids_destruction_pct
Volatile solids destruction percentage
Biogas yield
biogas_yield_m3_kg_vs
Biogas yield per kilogram of volatile solids destroyed
Methane fraction
methane_fraction
Methane fraction of biogas
4 outputs
volatile_solids_destroyed_kg_d
Volatile solids destroyed
Scores if within ±3% of the reference value.
biogas_m3_d
Daily biogas production
Scores if within ±3% of the reference value.
methane_m3_d
Daily methane production
Scores if within ±3% of the reference value.
methane_energy_kwh_d
Daily methane energy content
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 wastewater process engineer specializing in sludge digestion.2 3## Problem4 5Estimate daily biogas and methane production from volatile solids destruction.6 7## Given8 9| Parameter | Value | Unit |10|-----------|-------|------|11| Volatile solids feed | {{ volatile_solids_feed_kg_d }} | kg/d |12| Volatile solids destruction | {{ volatile_solids_destruction_pct }} | % |13| Biogas yield | {{ biogas_yield_m3_kg_vs }} | m3/kg VS destroyed |14| Methane fraction | {{ methane_fraction }} | - |15 16{% if archetype_description is defined %}17### Digestion Context18 19{{ archetype_description }}20{% endif %}21 22{% if tool_available %}23## Available Tool24 25A biogas production 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. Volatile solids destroyed in kg/d392. Biogas production in m3/d403. Methane production in m3/d414. Methane energy in kWh/d using 9.97 kWh/m3 methane42 43## Constraints44 45- No internet access is available. Work from engineering knowledge and the provided tool.46- Use volatile solids destroyed = feed x destruction percentage / 100.47- Use biogas = volatile solids destroyed x biogas yield.48- Use methane = biogas x methane fraction.49 50## Output Format51 52Show 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:53 54```json55{56 "volatile_solids_destroyed_kg_d": <numeric_value>,57 "biogas_m3_d": <numeric_value>,58 "methane_m3_d": <numeric_value>,59 "methane_energy_kwh_d": <numeric_value>60}61```62 63Write your complete solution to `/workspace/output.md`.64 65 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.
municipal_digester
Municipal anaerobic digester biogas estimate
industrial_digester
Industrial sludge digestion biogas estimate
industrial-wwtp-industrial-digester-preview — hard difficulty, all inputs given.
Industrial sludge digestion biogas estimate. industrial-wwtp. Required outputs: volatile_solids_destroyed_kg_d, biogas_m3_d, methane_m3_d, methane_energy_kwh_d
Scenario context and visible inputs.
Executable tool: biogas-production_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"volatile_solids_destroyed_kg_d": <number>,
"biogas_m3_d": <number>,
"methane_m3_d": <number>,
"methane_energy_kwh_d": <number>
}