Commit 8df74423 authored by Delaigue Olivier's avatar Delaigue Olivier
Browse files

v1.0.10.0 bug fixed in GR2M. The function now returns the total precipitation...

v1.0.10.0 bug fixed in GR2M. The function now returns the total precipitation (P) instead of the net rainfall (P1) #5244
Showing with 10 additions and 9 deletions
+10 -9
Package: airGR Package: airGR
Type: Package Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.0.9.79 Version: 1.0.10.0
Date: 2018-05-22 Date: 2018-05-22
Authors@R: c( Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl")), person("Laurent", "Coron", role = c("aut", "trl")),
......
...@@ -14,7 +14,7 @@ output: ...@@ -14,7 +14,7 @@ output:
### 1.0.9.79 Release Notes (2018-05-22) ### 1.0.10.0 Release Notes (2018-05-22)
____________________________________________________________________________________ ____________________________________________________________________________________
......
...@@ -167,14 +167,15 @@ C Updating store level ...@@ -167,14 +167,15 @@ C Updating store level
C Variables storage C Variables storage
MISC( 1)=E ! PE ! [numeric] observed potential evapotranspiration [mm/month] MISC( 1)=E ! PE ! [numeric] observed potential evapotranspiration [mm/month]
MISC( 2)=P1 ! Precip ! [numeric] observed total precipitation [mm/month] MISC( 2)=P ! Precip ! [numeric] observed total precipitation [mm/month]
MISC( 3)=AE ! AE ! [numeric] actual evapotranspiration [mm/month] MISC( 3)=AE ! AE ! [numeric] actual evapotranspiration [mm/month]
MISC( 4)=P2 ! P2 ! [numeric] percolation (P2) [mm/month] MISC( 4)=P1 ! P1 ! [numeric] net rainfall (P1) [mm/month]
MISC( 5)=P3 ! P3 ! [numeric] P3=P1+P2 [mm/month] MISC( 5)=P2 ! P2 ! [numeric] percolation (P2) [mm/month]
MISC( 6)=EXCH ! EXCH ! [numeric] groundwater exchange (EXCH) [mm/month] MISC( 6)=P3 ! P3 ! [numeric] P3=P1+P2 [mm/month]
MISC( 7)=St(1) ! Prod ! [numeric] production store level (St(1)) [mm] MISC( 7)=EXCH ! EXCH ! [numeric] groundwater exchange (EXCH) [mm/month]
MISC( 8)=St(2) ! Rout ! [numeric] routing store level (St(2)) [mm] MISC( 8)=St(1) ! Prod ! [numeric] production store level (St(1)) [mm]
MISC( 9)=Q ! Qsim ! [numeric] simulated outflow at catchment outlet [mm/month] MISC( 9)=St(2) ! Rout ! [numeric] routing store level (St(2)) [mm]
MISC(10)=Q ! Qsim ! [numeric] simulated outflow at catchment outlet [mm/month]
ENDSUBROUTINE ENDSUBROUTINE
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment