API reference
Here you find the code reference for the two main components users of PyStemmusScope
might need. First is the StemmusScope model class. Second is the save module, with
which you can save the STEMMUS_SCOPE model output to a netCDF file.
PyStemmusScope:
PyStemmusScope wrapper around Stemmus_Scope model.
For a detailed model description, look at this publication.
Configures the model and prepares forcing and soil data for the model run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file |
str
|
Path to Stemmus_Scope configuration file. An example config_file can be found in tests/test_data in STEMMUS_SCOPE_Processing repository. |
required |
model_src_path |
str
|
Path to Stemmus_Scope executable file or to a directory containing model source codes. |
required |
interpreter |
str
|
Use |
None
|
Example
See notebooks/run_model_in_notebook.ipynb at the STEMMUS_SCOPE_Processing repository
Source code in PyStemmusScope/stemmus_scope.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
config: Dict
property
Return the configurations for this model.
run()
Run model using executable.
Returns:
| Type | Description |
|---|---|
str
|
The model log. |
Source code in PyStemmusScope/stemmus_scope.py
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 | |
setup(WorkDir=None, Location=None, StartTime=None, EndTime=None)
Configure model run.
- Creates config file and input/output directories based on the config template.
- Prepare forcing and soil data
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
WorkDir |
str
|
path to a directory where input/output directories should be created. |
None
|
ForcingFileName |
forcing file name. Forcing file should be in netcdf format. |
required | |
StartTime |
str
|
Start time of the model run. It must be in ISO format (e.g. 2007-01-01T00:00). |
None
|
EndTime |
str
|
End time of the model run. It must be in ISO format (e.g. 2007-01-01T00:00). |
None
|
Returns:
| Type | Description |
|---|---|
Tuple[str, str]
|
Path to the config file |
Source code in PyStemmusScope/stemmus_scope.py
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 | |
PyStemmusScope.save:
PyStemmusScope.save
PyStemmusScope save module.
Module designed to create a netcdf file following the ALMA convention from csv files following the SCOPE format in the output directory.
The file
required_netcf_variables.csv
lists required variable names and their attributes based on the
ALMA+CF convention table.
Note
See notebooks/run_model_in_notebook.ipynb in the STEMMUS_SCOPE_Processing repository.
to_netcdf(config_file, cf_filename)
Save csv files generated by Stemmus_Scope model to a netcdf file using information provided by ALMA conventions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file |
str
|
Path to the config file. |
required |
cf_filename |
str
|
Path to a csv file for ALMA conventions. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Path to a csv file under the output directory. |
Source code in PyStemmusScope/save.py
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 | |