-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/origin/main'
- Loading branch information
Showing
12 changed files
with
80 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: mkin | ||
Type: Package | ||
Title: Kinetic Evaluation of Chemical Degradation Data | ||
Version: 1.2.8 | ||
Date: 2023-11-26 | ||
Version: 1.2.9 | ||
Date: 2024-04-27 | ||
Authors@R: c( | ||
person("Johannes", "Ranke", role = c("aut", "cre", "cph"), | ||
email = "[email protected]", | ||
|
@@ -36,4 +36,4 @@ VignetteBuilder: knitr | |
BugReports: https://github.com/jranke/mkin/issues/ | ||
URL: https://pkgdown.jrwb.de/mkin/ | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
* using log directory ‘/home/jranke/git/mkin/mkin.Rcheck’ | ||
* using R version 4.3.2 (2023-10-31) | ||
* using platform: x86_64-pc-linux-gnu (64-bit) | ||
* using R version 4.4.0 (2024-04-24) | ||
* using platform: x86_64-pc-linux-gnu | ||
* R was compiled by | ||
gcc (Debian 12.2.0-14) 12.2.0 | ||
GNU Fortran (Debian 12.2.0-14) 12.2.0 | ||
|
@@ -9,9 +9,9 @@ | |
* using options ‘--no-tests --as-cran’ | ||
* checking for file ‘mkin/DESCRIPTION’ ... OK | ||
* checking extension type ... Package | ||
* this is package ‘mkin’ version ‘1.2.8’ | ||
* this is package ‘mkin’ version ‘1.2.9’ | ||
* package encoding: UTF-8 | ||
* checking CRAN incoming feasibility ... [2s/14s] Note_to_CRAN_maintainers | ||
* checking CRAN incoming feasibility ... Note_to_CRAN_maintainers | ||
Maintainer: ‘Johannes Ranke <[email protected]>’ | ||
* checking package namespace information ... OK | ||
* checking package dependencies ... OK | ||
|
@@ -32,7 +32,7 @@ Maintainer: ‘Johannes Ranke <[email protected]>’ | |
* checking for left-over files ... OK | ||
* checking index information ... OK | ||
* checking package subdirectories ... OK | ||
* checking R files for non-ASCII characters ... OK | ||
* checking code files for non-ASCII characters ... OK | ||
* checking R files for syntax errors ... OK | ||
* checking whether the package can be loaded ... OK | ||
* checking whether the package can be loaded with stated dependencies ... OK | ||
|
@@ -62,11 +62,11 @@ Maintainer: ‘Johannes Ranke <[email protected]>’ | |
* checking sizes of PDF files under ‘inst/doc’ ... OK | ||
* checking installed files from ‘inst/doc’ ... OK | ||
* checking files in ‘vignettes’ ... OK | ||
* checking examples ... OK | ||
* checking examples ... [10s/10s] OK | ||
* checking for unstated dependencies in ‘tests’ ... OK | ||
* checking tests ... SKIPPED | ||
* checking for unstated dependencies in vignettes ... OK | ||
* checking package vignettes in ‘inst/doc’ ... OK | ||
* checking package vignettes ... OK | ||
* checking re-building of vignette outputs ... OK | ||
* checking PDF version of manual ... OK | ||
* checking HTML version of manual ... OK | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Issue #13 on github | ||
water_sed_no_sed_sink <- mkinmod( | ||
use_of_ff = "min", | ||
water = mkinsub("SFO", "sediment"), | ||
sediment = mkinsub("SFO", "water", sink = FALSE)) | ||
|
||
ws_data <- FOCUS_D | ||
levels(ws_data$name) <- c("water", "sediment") | ||
|
||
test_that("An reversible reaction with the sink turned off in the second compartment works", { | ||
# Solution method "analytical" was previously available, but erroneous | ||
expect_error( | ||
ws_fit_no_sed_sink <- mkinfit(water_sed_no_sed_sink, ws_data, quiet = TRUE, solution_type = "analytical"), | ||
"Analytical solution not implemented") | ||
ws_fit_no_sed_sink_default <- mkinfit(water_sed_no_sed_sink, ws_data, quiet = TRUE) | ||
expect_equal(ws_fit_no_sed_sink_default$solution_type, "deSolve") | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters