-
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.
Switch default method to Nelder-Mead in optim. Document fitFOM arguments and tweak example.
- Loading branch information
1 parent
1b765a3
commit 495f657
Showing
3 changed files
with
115 additions
and
21 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,13 +1,21 @@ | ||
Package: biogas | ||
Type: Package | ||
Title: Process Biogas Data and Predict Biogas Production | ||
Version: 1.45 | ||
Date: 2024-11-29 | ||
Authors@R: c(person("Sasha D.", "Hafner", role = c("aut", "cre"), email = "[email protected]"), person("Charlotte", "Rennuit", role = "aut"), person("Camilla", "Justesen", role = "aut"), person("Nanna", "Lojborg", role = "aut"), person("Jacob", "Mortensen", role = "aut"), person("Jonas", "Ohlsson", role = "aut"), person("Sergi", "Astals", role = "ctb"), person("Konrad", "Koch", role = "ctb"), person("Soeren", "Weinrich", role = "ctb"), person("Jin Mi", "Triolo", role = "ctb"), person("Ali", "Heidarzadeh Vazifehkhoran", role = "ctb")) | ||
Author: Sasha D. Hafner [aut, cre], Charlotte Rennuit [aut], Camilla Justesen [aut], Nanna Lojborg [aut], Jacob Mortensen [aut], Jonas Ohlsson [aut], Sergi Astals [ctb], Konrad Koch [ctb], Soeren Weinrich [ctb], Jin Mi Triolo [ctb], Ali Heidarzadeh Vazifehkhoran [ctb] | ||
Maintainer: Sasha D. Hafner <[email protected]> | ||
Version: 1.46 | ||
Date: 2024-11-30 | ||
Authors@R: c(person("Sasha D.", "Hafner", role = c("aut", "cre"), email = "[email protected]", comment = c(ORCID = "0000-0003-0955-0327")), | ||
person("Charlotte", "Rennuit", role = "aut"), | ||
person("Camilla", "Justesen", role = "aut"), | ||
person("Nanna", "Lojborg", role = "aut"), | ||
person("Jacob", "Mortensen", role = "aut"), | ||
person("Jonas", "Ohlsson", role = "aut"), | ||
person("Sergi", "Astals", role = "ctb"), | ||
person("Konrad", "Koch", role = "ctb"), | ||
person("Soeren", "Weinrich", role = "ctb"), | ||
person("Jin Mi", "Triolo", role = "ctb"), | ||
person("Ali", "Heidarzadeh Vazifehkhoran", role = "ctb")) | ||
Maintainer: Sasha D. Hafner <[email protected]> | ||
VignetteBuilder: knitr | ||
Imports: minpack.lm | ||
Suggests: knitr, ggplot2, testthat | ||
Description: High- and low-level functions for processing biogas data and predicting biogas production. Molar mass and calculated oxygen demand (COD') can be determined from a chemical formula. Measured gas volume can be corrected for water vapor and to (possibly user-defined) standard temperature and pressure. Gas quantity can be converted between volume, mass, and moles. Gas composition, cumulative production, or other variables can be interpolated to a specified time. Cumulative biogas and methane production (and rates) can be calculated using volumetric, manometric, gravimetric, or gas density methods for any number of bottles. With cumulative methane production data and data on bottle contents, biochemical methane potential (BMP) can be calculated and summarized, including subtraction of the inoculum contribution and normalization by substrate mass. Cumulative production and production rates can be summarized in several different ways (e.g., omitting normalization) using the same function. Biogas quantity and composition can be predicted from substrate composition and additional, optional data. Lastly, inoculum and substrate mass can be determined for planning BMP experiments. | ||
Suggests: minpack.lm, knitr, ggplot2, testthat | ||
Description: High- and low-level functions for processing biogas data and predicting biogas production. Molar mass and calculated oxygen demand (COD') can be determined from a chemical formula. Measured gas volume can be corrected for water vapor and to (possibly user-defined) standard temperature and pressure. Gas quantity can be converted between volume, mass, and moles. Gas composition, cumulative production, or other variables can be interpolated to a specified time. Cumulative biogas and methane production (and rates) can be calculated from raw data obtained using volumetric, manometric, gravimetric, or gas density methods for any number of bottles. With cumulative methane production data and data on bottle contents, biochemical methane potential (BMP) or specific methane production (SMP) can be calculated and summarized, including subtraction of the inoculum contribution and normalization by substrate mass. Cumulative production and production rates can be summarized in several different ways (e.g., omitting normalization) using the same function. Biogas quantity and composition can be predicted from substrate composition and additional, optional data. Inoculum and substrate mass can be determined for planning BMP experiments. Finally, first-order models can be fit to measurements in order to extract estimate of ultimate yield and kinetic constants. | ||
License: GPL-2 |
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