calc_agg_eta_pfus | R Documentation |
Given a matsindf
-style data frame
of energy conversion chains (ECCs),
this function calculates primary, final, useful, and services
(when available) aggregates and associated efficiencies.
Columns containing PSUT matrices are not returned in the output.
calc_agg_eta_pfus(
.psut_df,
p_industries,
fd_sectors,
remove_psut_cols = TRUE,
piece = "noun",
notation = list(RCLabels::bracket_notation, RCLabels::arrow_notation),
pattern_type = "exact",
prepositions = RCLabels::prepositions_list,
R = Recca::psut_cols$R,
U = Recca::psut_cols$U,
U_feed = Recca::psut_cols$U_feed,
U_eiou = Recca::psut_cols$U_eiou,
r_eiou = Recca::psut_cols$r_eiou,
V = Recca::psut_cols$V,
Y = Recca::psut_cols$Y,
S_units = Recca::psut_cols$S_units,
gross = Recca::efficiency_cols$gross,
net = Recca::efficiency_cols$net,
gross_net = Recca::efficiency_cols$gross_net,
last_stage = Recca::psut_cols$last_stage,
primary = Recca::all_stages$primary,
final = Recca::all_stages$final,
useful = Recca::all_stages$useful,
services = Recca::all_stages$services,
ex_p = Recca::aggregate_cols$aggregate_primary,
ex_f = Recca::aggregate_cols$aggregate_final,
ex_u = Recca::aggregate_cols$aggregate_useful,
ex_s = Recca::aggregate_cols$aggregate_services,
ex_fd_gross = Recca::aggregate_cols$gross_aggregate_demand,
ex_fd_net = Recca::aggregate_cols$net_aggregate_demand,
ex_fd = Recca::aggregate_cols$aggregate_demand,
eta_pf = Recca::efficiency_cols$eta_pf,
eta_fu = Recca::efficiency_cols$eta_fu,
eta_us = Recca::efficiency_cols$eta_us,
eta_pu = Recca::efficiency_cols$eta_pu,
eta_ps = Recca::efficiency_cols$eta_ps,
eta_fs = Recca::efficiency_cols$eta_fs
)
.psut_df |
A data frame of energy conversion chain data in PSUT format. |
p_industries |
A string vector of primary industries. |
fd_sectors |
A string vector of final demand sectors. |
remove_psut_cols |
A boolean telling whether to delete columns containing
PSUT matrices.
Default is |
piece |
The piece of the labels used for matching. Default is "noun". |
notation |
The notation used for row and column labels.
Default is |
pattern_type |
The pattern type to be used for row and column matching. Default is "exact". |
prepositions |
A list of prepositions for row and column labels.
Default is |
R , U , V , Y , r_eiou , U_eiou , U_feed , S_units , last_stage |
String names of matrix columns in |
gross , net , gross_net |
See |
primary , final , useful , services |
See |
ex_p , ex_fd_gross , ex_fd_net , ex_fd |
Names of aggregate columns. See |
ex_f , ex_u , ex_s |
See |
eta_pf , eta_fu , eta_us , eta_pu , eta_ps , eta_fs |
See |
Final, useful, and services data are assumed to be
contained in the final demand matrix (Y) on various rows of .psut_df
,
identified by the last_stage
column in .psut_df
.
This function will still work, even if primary energy
is different for each last stage.
Internally, primary aggregates are calculated
using primary_aggregates()
,
final demand aggregates are calculated
using finaldemand_aggregates()
.
The meaning of final demand aggregates for each row of .psut_df
is determined by the corresponding value in the last_stage
column.
Note that when an ECC stage is not present, its aggregation and efficiency columns will be removed from output.
If a services stage is present, its efficiencies will have mixed units and might be meaningless. Proceed with caution.
A data frame of metadata columns; primary, final, useful, and services aggregations; and efficiencies.
p_industries <- "Resources"
fd_sectors <- c("Residential", "Transport", "Oil fields")
UKEnergy2000mats |>
tidyr::pivot_wider(names_from = matrix.name, values_from = matrix) |>
calc_agg_eta_pfus(p_industries = p_industries, fd_sectors = fd_sectors)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.