Buildings in Basel: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(→‎Calculations: started the Basel case)
(→‎Initiation: emission locations added)
Line 42: Line 42:
stockBuildings <- Ovariable("stockBuildings", ddata = "Op_en7044.postal_code_areas")
stockBuildings <- Ovariable("stockBuildings", ddata = "Op_en7044.postal_code_areas")
colnames(stockBuildings@data)[colnames(stockBuildings@data) == "Eventyear"] <- "Time"
colnames(stockBuildings@data)[colnames(stockBuildings@data) == "Eventyear"] <- "Time"
stockBuildings@data$Renovation <- "None"
stockBuildings@data$Efficiency <- "New"
# Construction rate is assumed to be 2 % /a from the year 2010 building stock.
changeBuildings <- stockBuildings
changeBuildings@name <- "changeBuildings"
colnames(changeBuildings@data)[colnames(changeBuildings@data) == "stockBuildingsResult"] <- "changeBuildingsResult"
changeBuildings@data$changeBuildingsResult <- changeBuildings@data$changeBuildingsResult * 0.02
changeBuildings@data$Time <- NULL
changeBuildings@data <- merge(changeBuildings@data, data.frame(Time = 2015 + 0:7 * 5))


# Geolocations of the buildings for emission calculations.
# Geolocations of the buildings for emission calculations.
Line 47: Line 58:
colnames(emissionLocations@data)[colnames(emissionLocations@data) == "emissionLocationsResult"] <- "Y"
colnames(emissionLocations@data)[colnames(emissionLocations@data) == "emissionLocationsResult"] <- "Y"
emissionLocations@data$emissionLocationsResult <- 1
emissionLocations@data$emissionLocationsResult <- 1
emissionLocations <- Ovariable("emissionLocations", ddata = "Op_en3435", subset = "Emission locations")


####### DEFINE DUMMIES FOR MODEL PROPERTIES THAT ARE NOT NEEDED FOR BASEL
####### DEFINE DUMMIES FOR MODEL PROPERTIES THAT ARE NOT NEEDED FOR BASEL
construction <- Ovariable("construction", data = data.frame(
Postal.code = 4051,
Eventyear = 1871,
Building = "Residential buildings with subsidiary use",
Heating = "Electricity",
Result = 0
))


changeBuildings <- 0
changeBuildings <- 0
Line 105: Line 110:
}
}
</rcode>
</rcode>
==== Emission locations ====
Where and how do the emissions of heating take place?
<t2b name='Emission locations' index='Heating,Emission site,Emission height' obs='Dummy' unit='-'>
District|4056|High|4056 is the postal code of the heat and power plant IWB, Hagenaustrasse 40/70 4056 Basel.
Long-distance heating|4056|High|
Electricity|4056|High|
Geothermal|4056|High|
Centrifuge, hydro-extractor|4056|High|
Heating oil|At site of consumption|Ground|
Wood|At site of consumption|Ground|
Gas|At site of consumption|Ground|
Coal|At site of consumption|Ground|
Solar heater/ collector|At site of consumption|Ground|
No energy source|At site of consumption|Ground|
Other sources|At site of consumption|Ground|
</t2b>


==== Model ====
==== Model ====

Revision as of 10:23, 20 February 2015



Question

What is the building stock in Basel?

Answer

Rationale

Detailed data can be found from heande:Buildings in Basel. This data is aggregated to the postal code level. The table uses Swiss Land Survey coordinates CH1903. [1] [2] Use this code in the ova2spat function:

proj4string = "+init=epsg:21781"
Locations of postal codes(epsg:21781)
ObsPostal codeXY
14001611296.55267316.04
24051611004.37267137.18
34052612735.06266596.60
44053611695.00265635.41
54054609694.31266598.91
64055609798.12267812.13
74056610271.78268500.37
84057611580.35268976.81
94058612781.70268225.32
104059611615.85264689.04
114125615721.84269737.40
124126617160.01268852.20

Calculations

Initiation

This code creates ovariables that are needed to run the Building model and its ovariables buildings and heatingEnergy.

+ Show code

Emission locations

Where and how do the emissions of heating take place?

Emission locations(-)
ObsHeatingEmission siteEmission heightDummy
1District4056High4056 is the postal code of the heat and power plant IWB, Hagenaustrasse 40/70 4056 Basel.
2Long-distance heating4056High
3Electricity4056High
4Geothermal4056High
5Centrifuge, hydro-extractor4056High
6Heating oilAt site of consumptionGround
7WoodAt site of consumptionGround
8GasAt site of consumptionGround
9CoalAt site of consumptionGround
10Solar heater/ collectorAt site of consumptionGround
11No energy sourceAt site of consumptionGround
12Other sourcesAt site of consumptionGround

Model

+ Show code

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


References


Related files