[workflow] WorkflowConfig#
TOML section: [workflow]
Pydantic model: WorkflowConfig defined in hydromodpy.config.hydromodpy_config.
Workflow selector configuration.
Fields#
mode
str required user source
Workflow mode dispatched by hmp run.
"simulation"Runs one forward simulation and persists solver outputs, catalog rows, and result stores.
"calibration"Repeatedly proposes parameters, runs candidate simulations, and records the calibration history.
"overview"Loads geographic and data context and renders review maps without running a solver.
"comparison"Runs several child simulations from one shared base config and compares their observables.
"testbed"Expands a case matrix, delegates each case to a runner, and collects evidence artifacts.
"site_selection"Selects or rejects candidate catchments and produces an auditable HTML review report.
profile
bool | str default = False expert source
Profile the run with pyinstrument (honored by the hmp CLI; the –profile flag wins over this field). true writes <config>.profile.html next to the config; a string sets the HTML report path.