Climate change policies and health in Kuopio: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(→‎Rationale: Direction parameter added)
Line 52: Line 52:
[[image:Causal diagram.PNG|thumb|This diagram is just a placeholder. A new file should be uploaded, because this is about another assessment.]]
[[image:Causal diagram.PNG|thumb|This diagram is just a placeholder. A new file should be uploaded, because this is about another assessment.]]


<rcode name="answer" include="page:OpasnetBaseUtils|name:generic|page:Object-oriented_programming_in_Opasnet|name:answer">
<rcode name="answer" include="
page:OpasnetBaseUtils|name:generic|
page:Object-oriented_programming_in_Opasnet|name:answer|
page:Climate_change_policies_in_Kuopio|name:formula|
page:Climate_education_in_Kuopio|name:formula|
page:Market_allocation_factor|name:formula|
page:Cost_curves_for_energy|name:formula|
page:Energy_transformations|name:formula|
page:Energy_balance_in_Kuopio|name:formula|
page:Greenhouse_gas_emissions_in_Kuopio|name:formula
">
library(OpasnetBaseUtils)
library(OpasnetBaseUtils)
library(xtable)
library(xtable)
Line 67: Line 77:


for(x in 1:nrow(ccph.Kuopio@names)) { # Objects with names as aliases are created and filled with data from Opasnet Base.
for(x in 1:nrow(ccph.Kuopio@names)) { # Objects with names as aliases are created and filled with data from Opasnet Base.
assign(as.character(ccph.Kuopio@names$Result[x]), make.ovariable(tidy(op_baseGetData("opasnet_base", ccph.Kuopio@names$Identifier[x]), direction = "wide")))
 
temp <- tidy(op_baseGetData("opasnet_base", ccph.Kuopio@names$Identifier[x]), direction = ccph.Kuopio@names$Direction[x])
temp <- make.ovariable(temp)
if(exists(paste("formula.", as.character(ccph.Kuopio@names$Identifier[x]), sep ="")))
{temp@formula = get(paste("formula.", as.character(ccph.Kuopio@names$Identifier[x]), sep =""))}
if(exists(paste("dependencies.", as.character(ccph.Kuopio@names$Identifier[x]), sep ="")))
{temp@dependencies = get(paste("dependencies.", as.character(ccph.Kuopio@names$Identifier[x]), sep =""))}
assign(as.character(ccph.Kuopio@names$Result[x]), temp)
}
}


Line 77: Line 94:
print(energy.balance)
print(energy.balance)
print(GHG.emission)
print(GHG.emission)
GHG.emission


print(ccph.Kuopio)
print(ccph.Kuopio)
Line 111: Line 130:
===Assessment-specific data===
===Assessment-specific data===


<t2b index="Name,Identifier" obs="Alias" unit="-">
<t2b index="Name,Identifier,Direction" obs="Alias" unit="-">
Climate change policies in Kuopio|Op_en5466|decision
Climate change policies in Kuopio|Op_en5466|wide|decision
Climate education in Kuopio|Op_en5582|education
Climate education in Kuopio|Op_en5582|wide|education
Market allocation factor|Op_en5535|MAF
Market allocation factor|Op_en5535|wide|MAF
Cost curves for energy|Op_en5478|cost.curve
Cost curves for energy|Op_en5478|wide|cost.curve
Energy transformations|Op_en5472|transformation
Energy transformations|Op_en5472|wide|transformation
Energy balance in Kuopio|Op_en5469|energy.balance
Energy balance in Kuopio|Op_en5469|wide|energy.balance
Greenhouse gas emissions in Kuopio|Op_en5483|GHG.emission
Greenhouse gas emissions in Kuopio|Op_en5483|long|GHG.emission
</t2b>
</t2b>



Revision as of 06:51, 2 May 2012



Scope

Question

What are potential climate policies that reach the greenhouse emission targets in the city of Kuopio for years 2010-2030? What are their effects on health and well-being, and what recommendations can be given based on this? The national greenhouse emission target is to reduce greenhouse gas emissions by 20 % between 1990 and 2020; the city of Kuopio has its own, more ambitious target of 40 % for the same time period.

Boundaries

  • Time: Year 2010 - 2030
  • Spatial: Activities in Kuopio, Finland. Health and well-being effects due to policies anywhere, e.g. fine particle emissions in Kuopio increase cardiovascular mortality all over Finland.

Scenarios

  • Two scenarios for each climate policy (which have not been defined yet): policy is A) implemented, B) not implemented.

Intended users

  • The city of Kuopio.
  • Other cities in Urgenche.
  • Urgenche researchers are users from the methodological point of view.

Participants

  • Main participants:
    • City of Kuopio: Erkki Pärjälä, Mikko Savastola
    • THL: Marjo Niittynen, Jouni Tuomisto, Matti Jantunen.
  • Other participants:
    • University of Exeter
    • Universität Stuttgart
    • Other Urgenche research groups
    • Other Urgenche cities

Answer

Results

Not yet available.

Conclusions

The target of 40 % GHG reduction seems to be unrealistically ambitious.

Rationale

See other parts of the assessment:

This diagram is just a placeholder. A new file should be uploaded, because this is about another assessment.

+ Show code

⇤--#: . ovariable merge must update the slot marginal as well, otherwise it will not work. --Jouni 00:19, 2 May 2012 (EEST) (type: truth; paradigms: science: attack)

----#: . Function tidy should reshape data.frame so that Unit and Amount would make two columns instead of being in the long format. --Jouni 11:23, 1 May 2012 (EEST) (type: truth; paradigms: science: comment)

----#: . We need several pages for an assessment: the main page contains the variable list; /Probabilities contains the P(B) values; /Values contains the assessment-specific and decision-specific value judgements (whatever they are); /Decisionmakers contains the list of decisionmakers, decisions and outcomes. (Could /Values and /Decisionmakers be merged?) --Jouni 11:23, 1 May 2012 (EEST) (type: truth; paradigms: science: comment)

----#: . For each ovariable, we must include the code "formula" from the variable page. Formula includes both formula and dependencies for the variable. Then, these are used when using make.ovariable. The names should be like formula.Op_en2345 and dependencies.Op_en2345. --Jouni 11:04, 1 May 2012 (EEST) (type: truth; paradigms: science: comment)

⇤--#: . Slot "objects" is not needed, as variables are managed with their aliases as separate objects (ovariables). --Jouni 11:04, 1 May 2012 (EEST) (type: truth; paradigms: science: attack)

----#: . oassessment@decisionmakers$Value is needed but it is not quite clear how it should be used. It is some kind of scenario tool for Outcome, as different decisionmakers may have different values. Should it be an index in a value variable? --Jouni 08:55, 1 May 2012 (EEST) (type: truth; paradigms: science: comment)

----#: . Päätöksenteon sokea piste: se mitä ihmiset eivät näe mutta eivät myöskään huomaa etteivät näe. Kuitenkin tutkimalla sitä mitä mitä ihmiset eivät näe saadaan selville asioita sokeasta pisteesta. Ymmärtämällä sokeaa pistettä voidaan keksiä asioita jotka järjestelmällisesti jäävät huomaamatta ja asioita, joilla voidaan korjata järjestelmällisiä puutteita. Avoin arviointi on tämmöinen päätöksenteon järjestelmällisten puutteiden korjausmekanismi. --Jouni 08:55, 1 May 2012 (EEST) (type: truth; paradigms: science: comment)

Decision variables

  • Climate policy 1
  • Climate policy 2...

Indicators

  • Cardiovascular mortality
  • Pulmonar mortality
  • Well-being...

Other variables

Assessment-specific data

Climate change policies and health in Kuopio: Difference between revisions(-)
ObsNameIdentifierDirectionAlias
1Climate change policies in KuopioOp_en5466widedecision
2Climate education in KuopioOp_en5582wideeducation
3Market allocation factorOp_en5535wideMAF
4Cost curves for energyOp_en5478widecost.curve
5Energy transformationsOp_en5472widetransformation
6Energy balance in KuopioOp_en5469wideenergy.balance
7Greenhouse gas emissions in KuopioOp_en5483longGHG.emission

Formula

Addition of biofuels in transportation (ktoe/a):

How much energy is saved from the heating of buildings, compared with 2010? (%):

+ Show code

----#: . This is a city-specific copy of the original code: Energy balance. --Jouni 06:52, 27 January 2012 (EET) (type: truth; paradigms: science: comment)

Value variables

Analyses

  • Decision analysis on each policy: Which option minimises the health risks?
  • Value-of-information analysis for each policy about the major variables in the model and the total VOI.

See also

Urgenche research project 2011 - 2014: city-level climate change mitigation
Urgenche pages

Urgenche main page · Category:Urgenche · Urgenche project page (password-protected)

Relevant data
Building stock data in Urgenche‎ · Building regulations in Finland · Concentration-response to PM2.5 · Emission factors for burning processes · ERF of indoor dampness on respiratory health effects · ERF of several environmental pollutions · General criteria for land use · Indoor environment quality (IEQ) factors · Intake fractions of PM · Land use in Urgenche · Land use and boundary in Urgenche · Energy use of buildings

Relevant methods
Building model · Energy balance · Health impact assessment · Opasnet map · Help:Drawing graphs · OpasnetUtils‎ · Recommended R functions‎ · Using summary tables‎

City Kuopio
Climate change policies and health in Kuopio (assessment) · Climate change policies in Kuopio (plausible city-level climate policies) · Health impacts of energy consumption in Kuopio · Building stock in Kuopio · Cost curves for energy (prioritization of options) · Energy balance in Kuopio (energy data) · Energy consumption and GHG emissions in Kuopio by sector · Energy consumption classes (categorisation) · Energy consumption of heating of buildings in Kuopio · Energy transformations (energy production and use processes) · Fuels used by Haapaniemi energy plant · Greenhouse gas emissions in Kuopio · Haapaniemi energy plant in Kuopio · Land use in Kuopio · Building data availability in Kuopio · Password-protected pages: File:Heat use in Kuopio.csv · Kuopio housing

City Basel
Buildings in Basel (password-protected)

Energy balances
Energy balance in Basel · Energy balance in Kuopio · Energy balance in Stuttgart · Energy balance in Suzhou



The average usage of firewood in certain types of houses according to the wain heating system in 2000-2001 in Finland (m^3/household/year)[1]

Main heating system Type of estate
Detached house Farm Free-time place Total
Stove heating 7.1 10 2 4.4
Central heating Wood 13.7 25.6 .. 18.4
Oil 1.8 8.2 .. 2.3
Electricity 2.5 7.8 .. 2.8
Straight electric heating 2.9 6.5 1.6 2.7
District heating 1.1 .. .. 1.2
All 3.8 14.4 1.8 4.4

References

  1. Kuopio University 2005 (in Finnish)[1]

Related files

<mfanonymousfilelist></mfanonymousfilelist>