aboutsummaryrefslogtreecommitdiff
path: root/tests/testthat/test_PEC_soil.R
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2019-02-19 12:27:00 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2019-02-19 12:27:00 +0100
commit72c56f4246966c1bea627f601cf3cc457734f023 (patch)
tree7e08e8440129cda3ea8280a6c6934618d93a1594 /tests/testthat/test_PEC_soil.R
parente5a077e28153f6494c99d6945b8b1bd239464609 (diff)
Add German drainage calculations using Exposit 3.02
Diffstat (limited to 'tests/testthat/test_PEC_soil.R')
-rw-r--r--tests/testthat/test_PEC_soil.R14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/testthat/test_PEC_soil.R b/tests/testthat/test_PEC_soil.R
index 6e4e30b..810389f 100644
--- a/tests/testthat/test_PEC_soil.R
+++ b/tests/testthat/test_PEC_soil.R
@@ -132,15 +132,21 @@ test_that("Long term FOMC PEC soil from ESCAPE can be reproduced", {
# Application of 100 g/ha with 25% interception and FOMC degradation type a
fomc_50_a <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 1, beta = 10),
interval = 365, tillage_depth = 20, n_periods = 50)
- fomc_long_a <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 1, beta = 10),
- interval = 365, tillage_depth = 20)
+ expect_warning(
+ fomc_long_a <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 1, beta = 10),
+ interval = 365, tillage_depth = 20),
+ "pseudo-plateau"
+ )
# Application of 100 g/ha with 25% interception and FOMC degradation type b
# The long term PEC is much lower than when adding FOMC curves for 50 years
fomc_50_b <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 0.5, beta = 20),
interval = 365, tillage_depth = 20, n_periods = 50)
- fomc_long_b <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 0.5, beta = 20),
- interval = 365, tillage_depth = 20)
+ expect_warning(
+ fomc_long_b <- PEC_soil(100, interception = 0.25, FOMC = c(alpha = 0.5, beta = 20),
+ interval = 365, tillage_depth = 20),
+ "pseudo-plateau"
+ )
expect_true(fomc_50_b > fomc_long_b)

Contact - Imprint