AeroMAPS¶
Initialization module for the AeroMAPS package, which provides the function to create an AeroMAPSProcess.
create_process ¶
create_process(configuration_file=None, custom_models=None, optimisation=False)
Create an AeroMAPS process.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
configuration_file
|
str
|
Path to the configuration file (default is None). |
None
|
models
|
dict
|
Dictionary of additional models to be used. These are merged with
the standard models loaded from the configuration file's
|
required |
optimisation
|
bool
|
Whether to enable optimisation (default is False). |
False
|
Returns:
| Type | Description |
|---|---|
AeroMAPSProcess
|
An instance of the AeroMAPSProcess class. |
Source code in aeromaps/__init__.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |