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

v1.6.3.73 style: frun_GR6J subroutine is compliant with Fortran 95 standard

Reviewed-by: @antoine.pelletier
Refs #68
Showing with 7 additions and 12 deletions
+7 -12
Package: airGR
Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.6.3.72
Date: 2020-11-23
Version: 1.6.3.73
Date: 2020-11-24
Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
person("Olivier", "Delaigue", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-7668-8468"), email = "airGR@inrae.fr"),
......
......@@ -4,7 +4,7 @@
### 1.6.3.72 Release Notes (2020-11-23)
### 1.6.3.73 Release Notes (2020-11-24)
#### New features
......
......@@ -296,19 +296,14 @@
IF(AR.GT.33.) AR=33.
IF(AR.LT.-33.) AR=-33.
IF(AR.GT.7.)THEN
IF(AR.GT.7.) THEN
QRExp=St(3)+Param(6)/EXP(AR)
GOTO 3
ENDIF
IF(AR.LT.-7.)THEN
ELSEIF(AR.LT.-7.) THEN
QRExp=Param(6)*EXP(AR)
GOTO 3
ELSE
QRExp=Param(6)*LOG(EXP(AR)+1.)
ENDIF
QRExp=Param(6)*LOG(EXP(AR)+1.)
3 CONTINUE
St(3)=St(3)-QRExp
! Runoff from direct branch QD
......
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