Skip to content

Commit a349503

Browse files
authored
Merge pull request #7 from yinghaoSunn/LPJGUESS_SDA
Update RcppExports.cpp after running `make`
2 parents 430a367 + 2bc9a3c commit a349503

File tree

9 files changed

+92
-18
lines changed

9 files changed

+92
-18
lines changed

models/lpjguess/R/split_inputs.LPJGUESS.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## split LPJ-GUESS ncdf files into smaller time units to use in KF
22
##' @author Istem Fer
3-
##'
3+
##' @name split_inputs.LPJGUESS
4+
##' @title Split inputs for LPJ-GUESS model
45
##' @param settings PEcAn settings object
56
##' @param start.time start date and time for each SDA ensemble
67
##' @param stop.time stop date and time for each SDA ensemble

models/lpjguess/R/update.state.LPJGUESS.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##'
1212
##' @title updateState.LPJGUESS
1313
##'
14-
##' @description
14+
##' @description Adjust LPJ-GUESS state variables based on input parameters.
1515
##'
1616
##'
1717
##' @param model.state A large multiply-nested list containing the entire LPJ-GUESS state as read by

models/lpjguess/man/adjust.biomass.LPJGUESS.Rd

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/man/allometry.Rd

Lines changed: 19 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/man/split_inputs.LPJGUESS.Rd

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/man/update.state.LPJGUESS.Rd

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/man/write.config.LPJGUESS.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/man/write.insfile.LPJGUESS.Rd

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

models/lpjguess/src/RcppExports.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
using namespace Rcpp;
77

8+
#ifdef RCPP_USE_GLOBAL_ROSTREAM
9+
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
10+
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
11+
#endif
12+
813
// allocation
914
List allocation(double bminc, double cmass_leaf, double cmass_root, double cmass_sap, double cmass_debt, double cmass_heart, double ltor, double height, double sla, double wooddens, int lifeform, double k_latosa, double k_allom2, double k_allom3, double& cmass_leaf_inc, double& cmass_root_inc, double& cmass_sap_inc, double& cmass_debt_inc, double& cmass_heart_inc, double& litter_leaf_inc, double& litter_root_inc, double& exceeds_cmass);
1015
RcppExport SEXP _PEcAn_LPJGUESS_allocation(SEXP bmincSEXP, SEXP cmass_leafSEXP, SEXP cmass_rootSEXP, SEXP cmass_sapSEXP, SEXP cmass_debtSEXP, SEXP cmass_heartSEXP, SEXP ltorSEXP, SEXP heightSEXP, SEXP slaSEXP, SEXP wooddensSEXP, SEXP lifeformSEXP, SEXP k_latosaSEXP, SEXP k_allom2SEXP, SEXP k_allom3SEXP, SEXP cmass_leaf_incSEXP, SEXP cmass_root_incSEXP, SEXP cmass_sap_incSEXP, SEXP cmass_debt_incSEXP, SEXP cmass_heart_incSEXP, SEXP litter_leaf_incSEXP, SEXP litter_root_incSEXP, SEXP exceeds_cmassSEXP) {

0 commit comments

Comments
 (0)