Active dose kg d
active_dose_kg_d
Daily active chemical dose mass
Scores if within ±3% of the reference value.
Calculates source-bound chemical dosing control metrics from a deterministic SSC-18 task-owned source pack. The template combines dose mass, product solution volume, required dosing pump flow, 4-20 mA flowmeter scaling, high-alarm current, pump current, and an overall synthetic pass score.
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.
12 inputs
Included directly in every task prompt.
Plant flow
plant_flow_m3_d
DOSE-18-BASIS-05 plant flow
Dose
dose_mg_l
DOSE-18-BASIS-05 chemical dose
Active fraction
active_fraction
DOSE-18-BASIS-05 active chemical fraction
Solution density
solution_density_kg_l
DOSE-18-BASIS-05 solution density
Pump operating hours d
pump_operating_hours_d
PUMP-18-SCHED-05 pump operating hours
Selected pump capacity
selected_pump_capacity_l_h
PUMP-18-SCHED-05 selected dosing pump capacity
Flowmeter lower
flowmeter_lower_l_h
RANGE-18-LOOP-05 flowmeter lower range
Flowmeter upper
flowmeter_upper_l_h
RANGE-18-LOOP-05 flowmeter upper range
High alarm flow
high_alarm_flow_l_h
ALM-18-DOSE-05 high alarm flow
Pump power
pump_power_kw
PUMP-18-SCHED-05 dosing pump power
Supply voltage
supply_voltage_v
PUMP-18-SCHED-05 pump control supply voltage
Motor power factor
motor_power_factor
PUMP-18-SCHED-05 pump motor power factor
9 outputs
active_dose_kg_d
Daily active chemical dose mass
Scores if within ±3% of the reference value.
solution_volume_l_d
Daily dosing solution volume
Scores if within ±3% of the reference value.
dosing_pump_flow_l_h
Required dosing pump flow
Scores if within ±3% of the reference value.
pump_capacity_margin_l_h
Selected pump capacity minus required flow
Scores if within ±3% of the reference value.
flowmeter_signal_ma
4-20 mA signal at required dosing flow
Scores if within ±3% of the reference value.
high_alarm_current_ma
4-20 mA signal at high alarm flow
Scores if within ±3% of the reference value.
alarm_headroom_ma
High alarm current minus current signal
Scores if within ±3% of the reference value.
pump_current_a
Three-phase pump current
Scores if within ±3% of the reference value.
overall_pass_score
Pass score for chemical dosing flowmeter control checks
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 checking `SSC-18-LH-05`, a task-owned synthetic chemical dosing flowmeter and control package.2 3Use only the task-owned synthetic source pack values shown below for numeric grading. Chemical dosing, flowmeter, pump, valve, loop range, and alarm workflows shape the context only; this instance does not parse a real dosing design basis, vendor export, calibration sheet, or authority-approved control narrative.4 5Source pack:6 7- Chemical dosing basis: `DOSE-18-BASIS-05`8- Flowmeter datasheet: `FLOW-18-DATA-05`9- Pump/valve schedule: `PUMP-18-SCHED-05`10- Loop range table: `RANGE-18-LOOP-05`11- Alarm setpoint note: `ALM-18-DOSE-05`12- Dosing control memo: `MEMO-18-DOSE-05`13 14Given values:15 16| Field | Value |17| --- | ---: |18| Plant flow | {{ plant_flow_m3_d }} m3/d |19| Dose | {{ dose_mg_l }} mg/L |20| Active fraction | {{ active_fraction }} |21| Solution density | {{ solution_density_kg_l }} kg/L |22| Pump operating hours | {{ pump_operating_hours_d }} h/d |23| Selected pump capacity | {{ selected_pump_capacity_l_h }} L/h |24| Flowmeter range | {{ flowmeter_lower_l_h }} to {{ flowmeter_upper_l_h }} L/h |25| High alarm flow | {{ high_alarm_flow_l_h }} L/h |26| Pump power | {{ pump_power_kw }} kW |27| Supply voltage / power factor | {{ supply_voltage_v }} V / {{ motor_power_factor }} |28 29Required calculations:30 31- Active dose mass equals plant flow in litres per day times dose divided by 1,000,000.32- Solution volume equals active dose mass divided by active fraction and solution density.33- Dosing pump flow equals solution volume divided by pump operating hours.34- 4-20 mA flowmeter signal equals `4 + 16 x (flow - lower range) / span`.35- Pump current uses three-phase `P / (sqrt(3) x V x pf)`.36 37Return one JSON object with keys:38 39```json40{41 "active_dose_kg_d": <numeric_value>,42 "solution_volume_l_d": <numeric_value>,43 "dosing_pump_flow_l_h": <numeric_value>,44 "pump_capacity_margin_l_h": <numeric_value>,45 "flowmeter_signal_ma": <numeric_value>,46 "high_alarm_current_ma": <numeric_value>,47 "alarm_headroom_ma": <numeric_value>,48 "pump_current_a": <numeric_value>,49 "overall_pass_score": <numeric_value>50}51```52 53Do not claim authority approval, accepted project evidence, dosing-system acceptance, executable real source-pack parsing, full standards compliance, generated benchmark readiness, or benchmark readiness.54 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.
ssc18_dosing_flowmeter_control_case
Chemical dosing flowmeter and control source pack
chemical-dosing-flowmeter-ssc18-dosing-flowmeter-control-case-preview — hard difficulty, all inputs given.
Chemical dosing flowmeter and control source pack. chemical-dosing-flowmeter. Required outputs: active_dose_kg_d, solution_volume_l_d, dosing_pump_flow_l_h, pump_capacity_margin_l_h, flowmeter_signal_ma, high_alarm_current_ma
Scenario context and visible inputs.
Executable tool: chemical-dosing-flowmeter-control-package_calc.py
Inputs withheld at this difficulty.
Nothing. All inputs are supplied.
The scored JSON answer schema.
{
"active_dose_kg_d": <number>,
"solution_volume_l_d": <number>,
"dosing_pump_flow_l_h": <number>,
"pump_capacity_margin_l_h": <number>,
"flowmeter_signal_ma": <number>,
"high_alarm_current_ma": <number>,
"alarm_headroom_ma": <number>,
"pump_current_a": <number>,
"overall_pass_score": <number>
}