Commit f415bb48 authored by Delaigue Olivier's avatar Delaigue Olivier
Browse files

v1.4.3.44 CLEAN: double precision defined for all elements used by the MAX fun...

v1.4.3.44 CLEAN: double precision defined for all elements used by the MAX fun in frun_GR5H Fortran code
Showing with 4 additions and 4 deletions
+4 -4
Package: airGR
Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.4.3.43
Version: 1.4.3.44
Date: 2020-01-20
Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
......
......@@ -2,7 +2,7 @@
### 1.4.3.43 Release Notes (2020-01-17)
### 1.4.3.44 Release Notes (2020-01-20)
#### New features
......
......@@ -213,9 +213,9 @@
! Interception store calculation, with evaporation prior to throughfall
EI=MIN(E, P1+St(3))
PN=MAX(0., P1-(Imax-St(3))-EI)
PN=MAX(0.d0, P1-(Imax-St(3))-EI)
St(3)=St(3)+P1-EI-PN
EN=MAX(0., E-EI)
EN=MAX(0.d0, E-EI)
! Production (SMA) store, saving the total actual evaporation including evaporation from interception store (EI)
IF(EN.GT.0) THEN
......
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