An auto-calibration tool for environmental models based on heuristic algorithms and uncertainty estimation theory.
Project description
PyCUP
This is an open-source package designed for (environmental) model calibration and uncertainty analysis. The current version is the very first version, we welcome all comments, suggestions, and improvements.
v 0.1.3 Update
- A new model named pycup.Reslib for the convenient multi-station & multi-event calibration.
- The pycup.Reslib.DatabaseWriter object to export your historical or behavioral sampling/slimuation results to a simple database. Formats including xlsx and h5/hdf5 are currently supported. (Current only supports the Reslib simulation results.)
- A new prediction uncertainty estimation method based on the frequency of the behavioral samples has been appended. The ppu boundary is calculated using the cumulative frequency distribution and the triangle proportionality theorem. (same as the 95ppu estimation method in SWAT-CUP)
- The EnsembleValidator and EnsemblePredictor objects have been modified. They will generate ValidationRawSaver and PredRawSaver now. These result savers do not contain the uncertainty analysis results. Users can use the functions in pycup.uncertainty_analysis_fun module to carry out the uncertainty analysis on these savers. (validation/prediction_frequency_uncertainty)
What does it have
(1) For model calibration/optimization
- Single-objective heuristic algorithms including PSO, GWO, MFO, SOA, SCA, SSA, TSA, and WOA.
- Multi-objective heuristic algorithms including MOPSO, MODE, and NSGA-II.
- Elite opposition strategy modified heuristic algorithms -- with better optimum search abilities.
- Statistic based-method LHS-GLUE.
(2) For sensitivity & uncertainty analysis
- Likelihood uncertainty estimation used in the GLUE framework for the parameter uncertainty analysis/prediction uncertainty estimation.
- The frequency based-uncertainty estimation for the prediction uncertainty estimation.
- The multi-linear regression method for the all-at-a-time parameter sensitivity based on statmodels.
(3) Other convenient features
- Multi-processing calibration.
- Several result plotting functions.
- A special simulation result object for multi-station & multi-event results (of environmental models).
How to install
The project has been uploaded onto the PyPI https://pypi.org/project/pycup/ . Or install the .whl file in the dist folder.
pip install pycup
How to use
Here is a simple example. For more details, please see the documentation.
import pycup as cp
import numpy as np
def uni_fun1(X):
# X for example np.array([1,2,3,...,30])
fitness = np.sum(np.power(X,2)) + 1 # example: 1.2
result = fitness.reshape(1,-1) # example ([1.2,])
return fitness,result
lb = -100 * np.ones(30)
ub = 100 * np.ones(30)
cp.SSA.run(pop = 1000, dim = 30, lb = lb, ub = ub, MaxIter = 30, fun = uni_fun1)
Example SWMM (Storm Water Management Model) calibration projects
IMPORTANT: PLEASE OPEN YOUR PYCHARM OR COMMAND LINE WITH THE ADMINISTRATOR RIGHTS BEFORE EXECUTING THE EXAMPLE PROJECT
Location: https://github.com/QianyangWang/PyCUP
- The example in folder 'Example01-GLUE' contains an SWMM calibration project using single-processing GLUE. Install the dependencies (for example: pip install swmm-api==0.2.0.18.3, pip install pyswmm). Execute the 'Calibrate.py' to calibrate the model. Then, execute the 'PostProcessing.py' for uncertainty analysis.
- The example in folder 'Example02-multiprocessing' contains an SWMM calibration project using multi-processing EOGWO.
- The example in folder 'Example03-multiobjective' contains an SWMM multi-objective calibration project using EOMOPSO.
- The example in folder 'Example04-validation&prediction' shows how to use our (Ensemble)Validator/(Ensemble)Predictor objects for the validation and prediction of the model using the calibrated parameter (set).
- The example in folder 'Example05-multi-station&event' shows how to use the pycup.Reslib.SimulationResult object for the storage of multi-station & multi-event simulation results, as well as the further analysis using them.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pycup-0.1.3.tar.gz
.
File metadata
- Download URL: pycup-0.1.3.tar.gz
- Upload date:
- Size: 864.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 636cbffab905c6486d7a33cffc515f84cedbbbd4f34d1235239c17f845109062 |
|
MD5 | 1d3bc8d84aeafb8b22e4e972b838a92e |
|
BLAKE2b-256 | 4cd757765894dabe270d6518f72817455ff259e223e117c122c1a64850fb36fa |
File details
Details for the file pycup-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: pycup-0.1.3-py3-none-any.whl
- Upload date:
- Size: 886.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f0082dc1588767a06847c7c7c48523ca04fe9395a77d3130ad804a58df43893 |
|
MD5 | cdec6cc38417920c48745e5f3c76ae9e |
|
BLAKE2b-256 | 921cf1a398a5d387c7a0c0ceabbc5864b9b9f7d7b93c153a24730ba504fd52b7 |