Commit ac25044a authored by unknown's avatar unknown
Browse files

v1.0.5.10 RunModel_CemaNeige now returns air temperature for each elevation layer

Showing with 7 additions and 6 deletions
+7 -6
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.5.8 Version: 1.0.5.10
Date: 2017-01-20 Date: 2017-01-20
Authors@R: c( Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl")), person("Laurent", "Coron", role = c("aut", "trl")),
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
RELEASE HISTORY OF THE airGR PACKAGE RELEASE HISTORY OF THE airGR PACKAGE
#### 1.0.5.6 RELEASE NOTES ########################### #### 1.0.5.10 RELEASE NOTES ###########################
- Bug fixed in DataAltiExtrapolation_Valery(). The elevation gradients for air temperature returned by CreateInputsModel() are improved. - Bug fixed in DataAltiExtrapolation_Valery(). The elevation gradients for air temperature returned by CreateInputsModel() are improved.
...@@ -13,7 +13,7 @@ RELEASE HISTORY OF THE airGR PACKAGE ...@@ -13,7 +13,7 @@ RELEASE HISTORY OF THE airGR PACKAGE
#### 1.0.4 RELEASE NOTES ########################### #### 1.0.4 RELEASE NOTES ###########################
- RunModel_CemaNeigeGR4J, RunModel_CemaNeigeGR5J() and RunModel_CemaNeigeGR6J() now return air temperature for each elevation layer. - RunModel_CemaNeige, RunModel_CemaNeigeGR4J, RunModel_CemaNeigeGR5J() and RunModel_CemaNeigeGR6J() now return air temperature for each elevation layer.
- S3 plot method defined for OutputsModel objects. It means that the plot_OutputsModel() function is deprecated and his use has been replaced by the use of plot.OutputsModel() or plot(). - S3 plot method defined for OutputsModel objects. It means that the plot_OutputsModel() function is deprecated and his use has been replaced by the use of plot.OutputsModel() or plot().
......
RunModel_CemaNeige <- function(InputsModel,RunOptions,Param){ RunModel_CemaNeige <- function(InputsModel,RunOptions,Param){
NParam <- 2; NParam <- 2;
FortranOutputsCemaNeige <- c("Pliq","Psol","SnowPack","ThermalState","Gratio","PotMelt","Melt","PliqAndMelt"); FortranOutputsCemaNeige <- c("Pliq","Psol","SnowPack","ThermalState","Gratio","PotMelt","Melt","PliqAndMelt", "Temp");
##Arguments_check ##Arguments_check
if(inherits(InputsModel,"InputsModel")==FALSE){ stop("InputsModel must be of class 'InputsModel' \n"); return(NULL); } if(inherits(InputsModel,"InputsModel")==FALSE){ stop("InputsModel must be of class 'InputsModel' \n"); return(NULL); }
......
...@@ -29,6 +29,7 @@ CemaNeige X2 \tab degree-day melt coefficient [mm/°C/d] \ ...@@ -29,6 +29,7 @@ CemaNeige X2 \tab degree-day melt coefficient [mm/°C/d] \
\emph{$CemaNeigeLayers[[iLayer]]$PotMelt } \tab [numeric] series of potential snow melt [mm] \cr \emph{$CemaNeigeLayers[[iLayer]]$PotMelt } \tab [numeric] series of potential snow melt [mm] \cr
\emph{$CemaNeigeLayers[[iLayer]]$Melt } \tab [numeric] series of actual snow melt [mm] \cr \emph{$CemaNeigeLayers[[iLayer]]$Melt } \tab [numeric] series of actual snow melt [mm] \cr
\emph{$CemaNeigeLayers[[iLayer]]$PliqAndMelt } \tab [numeric] series of liquid precip. + actual snow melt [mm] \cr \emph{$CemaNeigeLayers[[iLayer]]$PliqAndMelt } \tab [numeric] series of liquid precip. + actual snow melt [mm] \cr
\emph{$CemaNeigeLayers[[iLayer]]$Temp } \tab [numeric] series of air temperature [°C] \cr
\emph{$StateEnd} \tab [numeric] states at the end of the run: CemaNeige states [mm & °C] \cr \emph{$StateEnd} \tab [numeric] states at the end of the run: CemaNeige states [mm & °C] \cr
} }
(refer to the provided references or to the package source code for further details on these model outputs) (refer to the provided references or to the package source code for further details on these model outputs)
......
...@@ -33,8 +33,8 @@ Function which creates a screen plot giving an overview of the model outputs ...@@ -33,8 +33,8 @@ Function which creates a screen plot giving an overview of the model outputs
\details{ \details{
Dashboard of results including various graphs (depending on the model):\cr Dashboard of results including various graphs (depending on the model):\cr
(1) time series of total precipitation\cr (1) time series of total precipitation\cr
(2) time series of temperature (plotted only if CemaNeige ise used)\cr (2) time series of temperature (plotted only if CemaNeige is used)\cr
(3) time series of snow pack (plotted only if CemaNeige ise used)\cr (3) time series of snow pack (plotted only if CemaNeige is used)\cr
(4) time series of simulated flows (and observed flows if provided)\cr (4) time series of simulated flows (and observed flows if provided)\cr
(5) interannual median monthly simulated flow (and observed flows if provided)\cr (5) interannual median monthly simulated flow (and observed flows if provided)\cr
(6) correlation plot between simulated and observed flows (if observed flows provided)\cr (6) correlation plot between simulated and observed flows (if observed flows provided)\cr
......
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