Skip to content

Commit

Permalink
Remove export of compareCommodityOutputXMarketShareandIndustryOutputw…
Browse files Browse the repository at this point in the history
…ithCPITransformation,

compareCommodityOutputandDomesticUseplusProductionDemand,
compareEandLCIResult, &
compareOutputandLeontiefXDemand
  • Loading branch information
WesIngwersen committed Aug 6, 2024
1 parent e192218 commit a7ae434
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions R/ValidateModel.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#' @param use_domestic, a logical value indicating whether to use domestic demand vector
#' @param tolerance, a numeric value, tolerance level of the comparison
#' @return A list with pass/fail validation result and the cell-by-cell relative diff matrix
#' @export
compareEandLCIResult <- function(model, use_domestic = FALSE, tolerance = 0.05) {
# Prepare left side of the equation
CbS_cast <- standardizeandcastSatelliteTable(model$CbS,model)
Expand Down Expand Up @@ -80,7 +79,6 @@ calculateProductofLeontiefAndProductionDemand <- function (model, use_domestic)
#' @param use_domestic, a logical value indicating whether to use domestic demand vector
#' @param tolerance, a numeric value, tolerance level of the comparison
#' @return A list with pass/fail validation result and the cell-by-cell relative diff matrix
#' @export
compareOutputandLeontiefXDemand <- function(model, use_domestic=FALSE, tolerance=0.05) {
# Generate output and scaling vector
if(model$specs$CommodityorIndustryType == "Commodity") {
Expand Down Expand Up @@ -111,7 +109,6 @@ compareOutputandLeontiefXDemand <- function(model, use_domestic=FALSE, tolerance
#' @param model A complete EEIO model: a list with USEEIO model components and attributes
#' @param tolerance, a numeric value, tolerance level of the comparison
#' @return A list with pass/fail validation result and the cell-by-cell relative diff matrix
#' @export
compareCommodityOutputandDomesticUseplusProductionDemand <- function(model, tolerance=0.05) {
q <- removeHybridProcesses(model, model$q)
demand <- model$DemandVectors$vectors[endsWith(names(model$DemandVectors$vectors),"Production_Domestic")][[1]]
Expand Down Expand Up @@ -141,7 +138,6 @@ compareCommodityOutputandDomesticUseplusProductionDemand <- function(model, tole
#' @param model A complete EEIO model: a list with USEEIO model components and attributes
#' @param tolerance, a numeric value, tolerance level of the comparison
#' @return A list with pass/fail validation result and the cell-by-cell relative diff matrix
#' @export
compareCommodityOutputXMarketShareandIndustryOutputwithCPITransformation <- function(model, tolerance=0.05) {
if(model$specs$BaseIOSchema == 2012){
target_year <- "2017"
Expand Down

0 comments on commit a7ae434

Please sign in to comment.