HBV-Lab 0.2.3__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/HBV_model.py +1 -1
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab.egg-info/PKG-INFO +2 -2
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/PKG-INFO +2 -2
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/README.md +1 -1
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/setup.py +1 -1
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/__init__.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/calibration.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/hbv_step.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/response.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/routing.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/snow.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/soil.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab/uncertainty.py +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab.egg-info/SOURCES.txt +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab.egg-info/dependency_links.txt +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab.egg-info/requires.txt +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/HBV_Lab.egg-info/top_level.txt +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/LICENSE +0 -0
- {hbv_lab-0.2.3 → hbv_lab-1.0.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: HBV_Lab
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
|
|
5
5
|
Home-page: https://github.com/abdallaox/HBV_python_implementation
|
|
6
6
|
Author: Abdalla Mohammed
|
|
@@ -39,7 +39,7 @@ HBV is a simple conceptual hydrological model that simulates the main hydrologic
|
|
|
39
39
|
|
|
40
40
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
41
41
|
|
|
42
|
-
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below
|
|
42
|
+
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below—In addition to calibration and uncertainty analysis modules. See the [documentation for one step of the model.](https://lucid.app/publicSegments/view/a0edb3b6-8eba-4db5-9984-bfd23cc004ef/image.png)
|
|
43
43
|
```python
|
|
44
44
|
parameters = {
|
|
45
45
|
'snow': ['TT', 'CFMAX', 'SFCF', 'CFR', 'CWH'],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: HBV_Lab
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
|
|
5
5
|
Home-page: https://github.com/abdallaox/HBV_python_implementation
|
|
6
6
|
Author: Abdalla Mohammed
|
|
@@ -39,7 +39,7 @@ HBV is a simple conceptual hydrological model that simulates the main hydrologic
|
|
|
39
39
|
|
|
40
40
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
41
41
|
|
|
42
|
-
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below
|
|
42
|
+
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below—In addition to calibration and uncertainty analysis modules. See the [documentation for one step of the model.](https://lucid.app/publicSegments/view/a0edb3b6-8eba-4db5-9984-bfd23cc004ef/image.png)
|
|
43
43
|
```python
|
|
44
44
|
parameters = {
|
|
45
45
|
'snow': ['TT', 'CFMAX', 'SFCF', 'CFR', 'CWH'],
|
|
@@ -4,7 +4,7 @@ HBV is a simple conceptual hydrological model that simulates the main hydrologic
|
|
|
4
4
|
|
|
5
5
|
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
|
|
6
6
|
|
|
7
|
-
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below
|
|
7
|
+
This versioin implements the snow, soil, response and routing routines—controled by 14 calibratable parameters as shown below—In addition to calibration and uncertainty analysis modules. See the [documentation for one step of the model.](https://lucid.app/publicSegments/view/a0edb3b6-8eba-4db5-9984-bfd23cc004ef/image.png)
|
|
8
8
|
```python
|
|
9
9
|
parameters = {
|
|
10
10
|
'snow': ['TT', 'CFMAX', 'SFCF', 'CFR', 'CWH'],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|