Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
HYCAR-Hydro
airGR
Commits
a2ae0d35
Commit
a2ae0d35
authored
Feb 16, 2017
by
unknown
Browse files
v1.0.5.20 function TransfoParam_GR1A() cleaned
parent
f8e091fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
DESCRIPTION
View file @
a2ae0d35
Package: airGR
Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.0.5.
19
Version: 1.0.5.
20
Date: 2017-01-23
Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl")),
...
...
R/TransfoParam_GR1A.R
View file @
a2ae0d35
TransfoParam_GR1A
<-
function
(
ParamIn
,
Direction
){
NParam
<-
1
;
Bool
<-
is.matrix
(
ParamIn
);
if
(
Bool
==
FALSE
){
ParamIn
<-
rbind
(
ParamIn
);
}
if
(
ncol
(
ParamIn
)
!=
NParam
){
stop
(
paste
(
"the GR1A model requires "
,
NParam
,
" parameters \n"
,
sep
=
""
));
return
(
NULL
);
}
if
(
Direction
==
"TR"
){
ParamOut
<-
(
ParamIn
+10.0
)
/
8
;
}
if
(
Direction
==
"RT"
){
ParamOut
<-
ParamIn
*
8-10.0
;
}
if
(
Bool
==
FALSE
){
ParamOut
<-
ParamOut
[
1
,];
}
return
(
ParamOut
);
TransfoParam_GR1A
<-
function
(
ParamIn
,
Direction
)
{
NParam
<-
1
Bool
<-
is.matrix
(
ParamIn
)
if
(
Bool
==
FALSE
)
{
ParamIn
<-
rbind
(
ParamIn
)
}
if
(
ncol
(
ParamIn
)
!=
NParam
)
{
stop
(
paste
(
"the GR1A model requires "
,
NParam
,
" parameters \n"
,
sep
=
""
))
return
(
NULL
)
}
if
(
Direction
==
"TR"
)
{
ParamOut
<-
(
ParamIn
+
10.0
)
/
8
}
if
(
Direction
==
"RT"
)
{
ParamOut
<-
ParamIn
*
8
-
10.0
}
if
(
Bool
==
FALSE
)
{
ParamOut
<-
ParamOut
[
1
,
]
}
return
(
ParamOut
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment