Electricity use in a house with geothermal heating: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(Data uploaded using Opasnet Base Import)
(→‎See also: Fronius)
 
(7 intermediate revisions by the same user not shown)
Line 37: Line 37:
#)
#)
</rcode>
</rcode>
<rcode name="fmi" embed=0 recall_inputs=1 variables="
name:apiKey|type:text
">
library(OpasnetUtils)
library(fmi)
library(rwfs)
library(rgdal)
request <- FMIWFSRequest$new(apiKey=apiKey)
if(FALSE) {
#request$setParameters(request="getFeature",
#                      storedquery_id="fmi::observations::weather::daily::timevaluepair",
#                      starttime="2014-01-01T00:00:00Z",
#                      endtime="2014-01-01T00:00:00Z",
#                      place="savilahti,Kuopio",
#                      parameters="rrday,snow,tday,tmin,tmax")
request$setParameters(request="getFeature",
                      storedquery_id="fmi::observations::weather::daily::timevaluepair",
                      starttime="2014-01-01T00:00:00Z",
                      endtime="2014-01-01T00:00:00Z",
                      bbox="19.09,59.3,31.59,70.13",
                      parameters="rrday,snow,tday,tmin,tmax")
client <- FMIWFSClient$new(request=request)
client
layers <- client$listLayers()
layers
#response <- client$getLayer(layer=layers[1], parameters=list(splitListFields=TRUE))
#response
request <- FMIWFSRequest$new(apiKey=apiKey)
client <- FMIWFSClient$new(request=request)
response <- client$getDailyWeather(startDateTime="2014-01-01", endDateTime="2014-01-01", bbox=getFinlandBBox(), parameters=list(explodeCollections=TRUE))
#reponse
}
 
request$setParameters(request="getFeature",
                      storedquery_id="fmi::observations::weather::daily::timevaluepair",
                      parameters="rrday,snow,tday,tmin,tmax")
 
client <- FMIWFSClient$new(request=request)
 
response <- client$getDailyWeather(startDateTime="2014-01-01T00:00:00Z",
                                  endDateTime="2014-01-01T00:00:00Z",
                                  fmisid=101887)
dat <- as.data.frame(response)
oprint(dat)
</rcode>
* [https://github.com/rOpenGov/fmi/blob/master/vignettes/fmi_tutorial.md fmi package tutorial]
* [http://data.fmi.fi/fmi-apikey/64d5c2cb-10dc-47f1-9ddb-8bdea18844a5/wfs?request=getFeature&storedquery_id=fmi::observations::weather::daily::timevaluepair&starttime=2013-02-27T20:00:00Z&endtime=2013-02-28T20:00:00Z&place=savilahti,Kuopio& a semi-successful query]
* [http://ilmatieteenlaitos.fi/tallennetut-kyselyt FMI: stored queries]
* [https://ilmatieteenlaitos.fi/avoin-data FMI open data]
* [https://online.kuopionenergia.fi/Home Kuopion Energia online]


==See also==
==See also==
* Fronius Solar Web [https://www.solarweb.com/]
** PyFronius: a Python interface for Fronius [https://pypi.org/project/PyFronius/]
* Home Assistant Android app for monitoring home systems [https://www.home-assistant.io/]


{{urgenche}}
{{urgenche}}
Line 48: Line 109:
<references/>
<references/>


==Related files==<!-- __OBI_TS:1435341589 -->
==Related files==<!-- __OBI_TS:1478636349 -->

Latest revision as of 18:03, 9 November 2020



Question

What is the energy (i.e. electricity) use of geothermal heating in a detached house?

Answer

Rationale

The answer is based on a single example house located near the Savilahti weather station, Kuopio, Finland.

Unit

kWh (or kW, as the data is given in hourly slots)

Dependencies

Calculations

+ Show code

apiKey:

+ Show code

See also

  • Fronius Solar Web [1]
    • PyFronius: a Python interface for Fronius [2]
  • Home Assistant Android app for monitoring home systems [3]
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


Keywords

References


Related files