Replies: 3 comments
-
Update on the point 2 The changes have been tracked up to these lines: The Base caseresidential
services
Hotmaps updatedresidential
services
|
Beta Was this translation helpful? Give feedback.
-
area_tot = area[["country", "sector", "value"]].groupby(["country", "sector"]).sum()
area = pd.concat(
[
area,
area.apply(
lambda x: x.value / area_tot.value.loc[(x.country, x.sector)], axis=1
).rename("weight"),
],
axis=1,
) Indeed, the issue is very minor, but would be great to trace it's source as understanding the buildings data may be crucial for going deeper into retrofitting scenarios. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
p_nom_max
forretrofitting
generators. Currently,p_nom_max
is determined asdE_diff[strength] * space_heat_demand.max()
, wherespace_heat_demand
is resampled according to time aggregation set in the model:In case of hourly time resolution, that is an equivalent for taking a maximum of hourly demand values. However, in case of
24H
resolution, that is a maximum of daily averages which is considerably lower as compared with hourly values. E.g. for January 2013n.loads_t.p_set[name].max()/demand.max()
is about1.27
Look into retrofit calculations for residential and service sectors. Currently, an update of hotmaps inputs leads to changes predominantly for the services, while the updated file contains compatible changes for the both sectors:
Investigate costs updates for RES technologies in
prepare_sector_network
Currently, the capital costs are being updated for solar and onwind generators, but not for offwind ones. Not sure if it was intended.Check that
urban
andrural
shares sum-up to thetotal
value in population raster.Find a way to remove gas generators from
n.generators
in cross-sectoral modelBeta Was this translation helpful? Give feedback.
All reactions