Damage vector for life-cycle analysis: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(→‎Calculations: old code removed)
 
(4 intermediate revisions by the same user not shown)
Line 13: Line 13:
For an example of an actual LCA, see [[LCA of a coffee cup]].
For an example of an actual LCA, see [[LCA of a coffee cup]].


<rcode name="answer">
<rcode name="answer" embed=1>


library(OpasnetUtils)
library(OpasnetUtils)
Line 20: Line 20:
objects.latest("Op_en5902", code_name = "initiate")  
objects.latest("Op_en5902", code_name = "initiate")  


impactsPerDollar <- EvalOutput(impactsPerDollar)
damagesPerImpact <- EvalOutput(damagesPerImpact)
cat("Impacts per dollar\n")
oprint(head(impactsPerDollar@output))
oprint(head(impactsPerDollar@output))
cat("Damages per impact\n")
oprint(head(damagesPerImpact@output))
oprint(head(damagesPerImpact@output))


Line 26: Line 32:


== Rationale ==
== Rationale ==
Damages are calculated using this formula:
<math>damages_{s,c,d} = \frac{ activity_s * impactsPD_{s,c} * damagesPI_{c,d} * 365}{normalisation_d},</math>
where
* damages are the damages caused by the activity in meaningful units such as DALYs,
* activity are the direct inputs of an activity (in Euro), such as in [[LCA of a coffee cup]], table Direct inputs of a coffee cup,
* impactsPD or impactsPerDollar are data from the damage vector (size 430*17) in Opasnet Base of this page,
* damagesPI or damagesPerImpact are data from the Damage factors table below,
* normalisation are impacts turned into meaningful units such as in [[Normalisation data for life cycle assessments#Data]]
* the outcome is scaled by 365 to reflect yearly impacts {{attack|#|I'm not sure why, if the activity is in functional units and it is not clear that the activity happens once per day.|--[[User:Jouni|Jouni]] ([[User talk:Jouni|talk]]) 17:30, 29 January 2014 (EET)}}
* s is purchasing sector,
* c is unique category (this is often summed up so that it does not show in the damage variable),
* d is damage index.


=== Data ===
=== Data ===
Line 64: Line 85:


library(OpasnetUtils)
library(OpasnetUtils)
objects.latest("Op_en6007", code_name = "answer") # [[OpasnetUtils/Drafts]]. We need truncateIndex.


# Create the damage factor table based on data from [[Damage vector for life-cycle analysis]]
# Create the damage factor table based on data from [[Damage vector for life-cycle analysis]]
Line 76: Line 95:


impactsPerDollar <- Ovariable("impactsPerDollar", data = opbase.data("Op_en5902"))
impactsPerDollar <- Ovariable("impactsPerDollar", data = opbase.data("Op_en5902"))


damages <- Ovariable("damages",  
damages <- Ovariable("damages",  
Line 88: Line 106:
out <- activity * impactsPerDollar * damagesPerImpact # Actual equation.
out <- activity * impactsPerDollar * damagesPerImpact # Actual equation.
#out <- ovaMatrixProduct(
# impactsPerDollar2,
# damagesPerImpact,
# c("Purchasing_sector", "Unique_categories"),
# c("Unique_categories", "Damage_categories")
#) # Do a matrix multiplication
# A more straightforward way to perform matrix product simply using * and CollapseMarginal


# out <- CollapseMarginal(
# out <- CollapseMarginal(
# out * damagesPerImpact,  
# out,  
# cols = "Unique_categories",  
# cols = "Unique_categories",  
# fun = "sum"
# fun = "sum"

Latest revision as of 20:37, 29 January 2014



Question

What are the damages per unit purchased commodity using a life-cycle assessment?

Answer

There are two parts to this: damage vector and damage factor. For details, see {{#opasnet_base_link:Op_en5902}} .

For an example of an actual LCA, see LCA of a coffee cup.

+ Show code

Rationale

Damages are calculated using this formula:

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle damages_{s,c,d} = \frac{ activity_s * impactsPD_{s,c} * damagesPI_{c,d} * 365}{normalisation_d},}

where

  • damages are the damages caused by the activity in meaningful units such as DALYs,
  • activity are the direct inputs of an activity (in Euro), such as in LCA of a coffee cup, table Direct inputs of a coffee cup,
  • impactsPD or impactsPerDollar are data from the damage vector (size 430*17) in Opasnet Base of this page,
  • damagesPI or damagesPerImpact are data from the Damage factors table below,
  • normalisation are impacts turned into meaningful units such as in Normalisation data for life cycle assessments#Data
  • the outcome is scaled by 365 to reflect yearly impacts ⇤--#: . I'm not sure why, if the activity is in functional units and it is not clear that the activity happens once per day. --Jouni (talk) 17:30, 29 January 2014 (EET) (type: truth; paradigms: science: attack)
  • s is purchasing sector,
  • c is unique category (this is often summed up so that it does not show in the damage variable),
  • d is damage index.

Data

Damage vector

The damage vector contains 430 purchasing sectors and 17 unique categories of impact. See {{#opasnet_base_link:Op_en5902}} .

Damage factors

Damage factors are described in the table below.

⇤--#: . The units should be explained! --Jouni (talk) 07:34, 28 December 2013 (EET) (type: truth; paradigms: science: attack)

Damage factors(-)
ObsUnique_categoriesHuman healthEcosystem qualityClimate changeResourcesWater consumption
1Carcinogens0.00000280000
2Non-carcinogens0.00000280000
3Respiratory inorganics0.00070000
4Ionizing radiation0.000000000210000
5Ozone layer depletion0.001050000
6Respiratory organics0.000002130000
7Aquatic ecotoxicity00.0000502000
8Terrestrial ecotoxicity00.00791000
9Terrestrial acidification/nutrification01.04000
10Land occupation01.09000
11Aquatic acidification00000
12Aquatic eutrophication00000
13Global warming00100
14Non-renewable energy00010
15Mineral extraction00010
16Water withdrawal00000
17Water consumption00001

Calculations

+ Show code

See also

Keywords

References


Related files