R/zchunk_batch_modeltime_xml.R

Defines functions module_modeltime_batch_modeltime_xml

Documented in module_modeltime_batch_modeltime_xml

# Copyright 2019 Battelle Memorial Institute; see the LICENSE file.

#' module_modeltime_batch_modeltime_xml
#'
#' Construct XML data structure for \code{modeltime.xml}.
#'
#' @param command API command to execute
#' @param ... other optional parameters, depending on command
#' @return Depends on \code{command}: either a vector of required inputs,
#' a vector of output names, or (if \code{command} is "MAKE") all
#' the generated outputs: \code{modeltime.xml}. The corresponding file in the
#' original data system was \code{batch_modeltime_xml.R} (modeltime XML).
module_modeltime_batch_modeltime_xml <- function(command, ...) {
  if(command == driver.DECLARE_INPUTS) {
    return(c("L200.ModelTime",
              "L200.ModelTimeInterYears"))
  } else if(command == driver.DECLARE_OUTPUTS) {
    return(c(XML = "modeltime.xml"))
  } else if(command == driver.MAKE) {

    all_data <- list(...)[[1]]

    # Load required inputs
    L200.ModelTime <- get_data(all_data, "L200.ModelTime")
    L200.ModelTimeInterYears <- get_data(all_data, "L200.ModelTimeInterYears")

    # Produce outputs
    create_xml("modeltime.xml") %>%
      add_xml_data(L200.ModelTime, "ModelTime") %>%
      add_xml_data(L200.ModelTimeInterYears, "ModelTimeInterYears") %>%
      add_precursors("L200.ModelTime", "L200.ModelTimeInterYears") ->
      modeltime.xml

    return_data(modeltime.xml)
  } else {
    stop("Unknown command")
  }
}
bpbond/gcamdata documentation built on March 22, 2023, 4:52 a.m.