Konfigurator-API¶
pyadm1.configurator.plant_builder.BiogasPlant
¶
Complete biogas plant model with multiple components.
Manages component lifecycle, connections, and simulation. Supports JSON-based configuration.
Attributes:
| Name | Type | Description |
|---|---|---|
plant_name |
str
|
Name of the biogas plant. |
components |
Dict[str, Component]
|
Dictionary of all plant components. |
connections |
List[Connection]
|
List of connections between components. |
simulation_time |
float
|
Current simulation time in days. |
Example
from pyadm1.substrates.feedstock import Feedstock from pyadm1.configurator.plant_builder import BiogasPlant from pyadm1.components.biological.digester import Digester
feedstock = Feedstock(feeding_freq=48) plant = BiogasPlant("My Plant") digester = Digester("dig1", feedstock, V_liq=2000) plant.add_component(digester) plant.initialize()
Source code in pyadm1/configurator/plant_builder.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 | |
Functions¶
__init__(plant_name='Biogas Plant')
¶
Initialize biogas plant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plant_name
|
str
|
Name of the plant. Defaults to "Biogas Plant". |
'Biogas Plant'
|
Source code in pyadm1/configurator/plant_builder.py
add_component(component)
¶
Add a component to the plant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component
|
Component
|
Component to add to the plant. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If component with same ID already exists. |
Source code in pyadm1/configurator/plant_builder.py
add_connection(connection)
¶
Add a connection between components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
connection
|
Connection
|
Connection to add. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If source or target component not found. |
Source code in pyadm1/configurator/plant_builder.py
from_json(filepath, feedstock=None)
classmethod
¶
Load plant configuration from JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
str
|
Path to JSON file. |
required |
feedstock
|
Optional[Feedstock]
|
Feedstock object for digesters. Required if plant has digesters. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
BiogasPlant |
BiogasPlant
|
Loaded plant model. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If feedstock is None but plant contains digesters. |
Source code in pyadm1/configurator/plant_builder.py
get_summary()
¶
Get human-readable summary of plant configuration.
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Summary text with components and connections. |
Source code in pyadm1/configurator/plant_builder.py
initialize()
¶
Initialize all components.
Note: Most components auto-initialize in their constructor. This method is kept for compatibility and to ensure any components that need explicit initialization are handled.
Source code in pyadm1/configurator/plant_builder.py
simulate(duration, dt=1.0 / 24.0, save_interval=None)
¶
Run simulation for specified duration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
duration
|
float
|
Simulation duration in days. |
required |
dt
|
float
|
Time step in days. Defaults to 1 hour (1/24 day). |
1.0 / 24.0
|
save_interval
|
Optional[float]
|
Interval for saving results in days. If None, saves every step. |
None
|
Returns:
| Type | Description |
|---|---|
List[Dict[str, Any]]
|
List[Dict[str, Any]]: Simulation results at each saved time point. Each entry contains 'time' and 'components' with component results. |
Example
results = plant.simulate(duration=30, dt=1/24, save_interval=1.0) print(f"Simulated {len(results)} time points")
Source code in pyadm1/configurator/plant_builder.py
step(dt)
¶
Perform one simulation time step for all components.
This uses a three-pass execution model: 1. Execute digesters to produce gas → storages 2. Execute CHPs to determine gas demand → storages 3. Execute storages to supply gas → CHPs (re-execute with actual supply)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dt
|
float
|
Time step in days. |
required |
Returns:
| Type | Description |
|---|---|
Dict[str, Dict[str, Any]]
|
Dict[str, Dict[str, Any]]: Results from all components. |
Source code in pyadm1/configurator/plant_builder.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
to_json(filepath)
¶
Save plant configuration to JSON file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filepath
|
str
|
Path to JSON file. |
required |
Source code in pyadm1/configurator/plant_builder.py
pyadm1.configurator.plant_configurator.PlantConfigurator
¶
High-level configurator for building biogas plants.
This class provides convenient methods for adding components with sensible defaults and automatic setup of common configurations.
Source code in pyadm1/configurator/plant_configurator.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | |
Functions¶
__init__(plant, feedstock)
¶
Initialize configurator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plant
|
BiogasPlant
|
BiogasPlant instance to configure |
required |
feedstock
|
Feedstock
|
Feedstock instance for digesters |
required |
Source code in pyadm1/configurator/plant_configurator.py
add_chp(chp_id, P_el_nom=500.0, eta_el=0.4, eta_th=0.45, name=None)
¶
Add a CHP unit to the plant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
chp_id
|
str
|
Unique identifier for this CHP unit |
required |
P_el_nom
|
float
|
Nominal electrical power in kW (default: 500.0) |
500.0
|
eta_el
|
float
|
Electrical efficiency 0-1 (default: 0.40) |
0.4
|
eta_th
|
float
|
Thermal efficiency 0-1 (default: 0.45) |
0.45
|
name
|
Optional[str]
|
Human-readable name (optional) |
None
|
Returns:
| Type | Description |
|---|---|
CHP
|
Created CHP component |
Example
chp = config.add_chp("chp_main", P_el_nom=500)
Source code in pyadm1/configurator/plant_configurator.py
add_digester(digester_id, V_liq=1977.0, V_gas=304.0, T_ad=308.15, name=None, load_initial_state=True, initial_state_file=None, Q_substrates=None)
¶
Add a digester component to the plant.
Automatically creates and connects a gas storage for the digester.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
digester_id
|
str
|
Unique identifier for this digester |
required |
V_liq
|
float
|
Liquid volume in m³ (default: 1977.0) |
1977.0
|
V_gas
|
float
|
Gas volume in m³ (default: 304.0) |
304.0
|
T_ad
|
float
|
Operating temperature in K (default: 308.15 = 35°C) |
308.15
|
name
|
Optional[str]
|
Human-readable name (optional) |
None
|
load_initial_state
|
bool
|
Load default initial state (default: True) |
True
|
initial_state_file
|
Optional[str]
|
Path to custom initial state CSV (optional) |
None
|
Q_substrates
|
Optional[list]
|
Initial substrate feed rates [m³/d] (optional) |
None
|
Returns:
| Type | Description |
|---|---|
(Digester, str)
|
Created Digester component |
Example
config = PlantConfigurator(plant, feedstock) digester = config.add_digester( ... "main_digester", ... V_liq=2000, ... Q_substrates=[15, 10, 0, 0, 0, 0, 0, 0, 0, 0] ... )
Source code in pyadm1/configurator/plant_configurator.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
add_heating(heating_id, target_temperature=308.15, heat_loss_coefficient=0.5, name=None)
¶
Add a heating system to the plant.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
heating_id
|
str
|
Unique identifier for heating system |
required |
target_temperature
|
float
|
Target temperature in K (default: 308.15 = 35°C) |
308.15
|
heat_loss_coefficient
|
float
|
Heat loss in kW/K (default: 0.5) |
0.5
|
name
|
Optional[str]
|
Human-readable name (optional) |
None
|
Returns:
| Type | Description |
|---|---|
HeatingSystem
|
Created HeatingSystem component |
Example
heating = config.add_heating("heating_main")
Source code in pyadm1/configurator/plant_configurator.py
auto_connect_chp_to_heating(chp_id, heating_id)
¶
Automatically connect CHP to heating with heat flow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
chp_id
|
str
|
CHP component ID |
required |
heating_id
|
str
|
Heating component ID |
required |
Source code in pyadm1/configurator/plant_configurator.py
auto_connect_digester_to_chp(digester_id, chp_id)
¶
Automatically connect digester to CHP through gas storage.
Creates the connection chain: digester -> gas_storage -> chp
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
digester_id
|
str
|
Digester component ID |
required |
chp_id
|
str
|
CHP component ID |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If gas storage for digester is not found |
Source code in pyadm1/configurator/plant_configurator.py
connect(from_component, to_component, connection_type='default')
¶
Connect two components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
from_component
|
str
|
Source component ID |
required |
to_component
|
str
|
Target component ID |
required |
connection_type
|
str
|
Type of connection ('liquid', 'gas', 'heat', etc.) |
'default'
|
Returns:
| Type | Description |
|---|---|
Connection
|
Created Connection |
Example
config.connect("digester_1", "chp_1", "gas")
Source code in pyadm1/configurator/plant_configurator.py
create_single_stage_plant(digester_config=None, chp_config=None, heating_config=None, auto_connect=True)
¶
Create a complete single-stage plant configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
digester_config
|
Optional[Dict[str, Any]]
|
Configuration for digester (optional) |
None
|
chp_config
|
Optional[Dict[str, Any]]
|
Configuration for CHP (optional) |
None
|
heating_config
|
Optional[Dict[str, Any]]
|
Configuration for heating (optional) |
None
|
auto_connect
|
bool
|
Automatically connect components (default: True) |
True
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dictionary with created component IDs |
Example
components = config.create_single_stage_plant( ... digester_config={'V_liq': 2000}, ... chp_config={'P_el_nom': 500} ... )
Source code in pyadm1/configurator/plant_configurator.py
create_two_stage_plant(hydrolysis_config=None, digester_config=None, chp_config=None, heating_configs=None, auto_connect=True)
¶
Create a complete two-stage plant configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
hydrolysis_config
|
Optional[Dict[str, Any]]
|
Configuration for hydrolysis tank (optional) |
None
|
digester_config
|
Optional[Dict[str, Any]]
|
Configuration for main digester (optional) |
None
|
chp_config
|
Optional[Dict[str, Any]]
|
Configuration for CHP (optional) |
None
|
heating_configs
|
Optional[list]
|
List of heating configurations (optional) |
None
|
auto_connect
|
bool
|
Automatically connect components (default: True) |
True
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dictionary with created component IDs |
Example
components = config.create_two_stage_plant( ... hydrolysis_config={'V_liq': 500, 'T_ad': 318.15}, ... digester_config={'V_liq': 1500} ... )
Source code in pyadm1/configurator/plant_configurator.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | |
pyadm1.configurator.connection_manager.ConnectionManager
¶
Manages connections between components in a biogas plant.
The ConnectionManager handles connection validation, dependency resolution, and provides utilities for analyzing component relationships.
Attributes:
| Name | Type | Description |
|---|---|---|
connections |
List[Connection]
|
List of all connections. |
Example
manager = ConnectionManager() manager.add_connection(Connection("dig1", "chp1", "gas")) deps = manager.get_dependencies("chp1") print(deps) # ['dig1']
Source code in pyadm1/configurator/connection_manager.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | |
Functions¶
__init__()
¶
__len__()
¶
__repr__()
¶
add_connection(connection)
¶
Add a connection to the manager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
connection
|
Connection
|
Connection to add. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If connection already exists. |
Source code in pyadm1/configurator/connection_manager.py
clear()
¶
from_dict(config)
classmethod
¶
Create ConnectionManager from dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Dict[str, Any]
|
Dictionary with 'connections' key. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ConnectionManager |
ConnectionManager
|
New manager with loaded connections. |
Source code in pyadm1/configurator/connection_manager.py
get_all_connections()
¶
Get all connections.
Returns:
| Type | Description |
|---|---|
List[Connection]
|
List[Connection]: List of all connections. |
get_connected_components(component_id)
¶
Get all components connected to the given component (directly or indirectly).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_id
|
str
|
Starting component ID. |
required |
Returns:
| Type | Description |
|---|---|
Set[str]
|
Set[str]: Set of connected component IDs. |
Source code in pyadm1/configurator/connection_manager.py
get_connections_from(component_id)
¶
Get all connections originating from a component.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_id
|
str
|
Component ID. |
required |
Returns:
| Type | Description |
|---|---|
List[Connection]
|
List[Connection]: List of outgoing connections. |
Source code in pyadm1/configurator/connection_manager.py
get_connections_to(component_id)
¶
Get all connections terminating at a component.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_id
|
str
|
Component ID. |
required |
Returns:
| Type | Description |
|---|---|
List[Connection]
|
List[Connection]: List of incoming connections. |
Source code in pyadm1/configurator/connection_manager.py
get_dependencies(component_id)
¶
Get all components that the given component depends on.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_id
|
str
|
Component ID. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List[str]: List of component IDs that this component depends on. |
Source code in pyadm1/configurator/connection_manager.py
get_dependents(component_id)
¶
Get all components that depend on the given component.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_id
|
str
|
Component ID. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List[str]: List of component IDs that depend on this component. |
Source code in pyadm1/configurator/connection_manager.py
get_execution_order(component_ids)
¶
Determine execution order based on dependencies (topological sort).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_ids
|
List[str]
|
List of all component IDs. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List[str]: Component IDs in execution order. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If circular dependencies are detected. |
Source code in pyadm1/configurator/connection_manager.py
has_circular_dependency(component_ids)
¶
Check if there are circular dependencies.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_ids
|
List[str]
|
List of component IDs to check. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if circular dependencies exist, False otherwise. |
Source code in pyadm1/configurator/connection_manager.py
remove_connection(from_component, to_component, connection_type=None)
¶
Remove a connection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
from_component
|
str
|
Source component ID. |
required |
to_component
|
str
|
Target component ID. |
required |
connection_type
|
Optional[str]
|
Connection type. If None, removes all connections between the components. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if at least one connection was removed, False otherwise. |
Source code in pyadm1/configurator/connection_manager.py
to_dict()
¶
Serialize all connections to dictionary.
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Dict[str, Any]: Dictionary with connection data. |
Source code in pyadm1/configurator/connection_manager.py
validate_connections(component_ids)
¶
Validate all connections and return list of issues.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component_ids
|
List[str]
|
List of valid component IDs. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
List[str]: List of validation error messages. Empty if all valid. |