remove future warning
This commit is contained in:
parent
e71afa4ff9
commit
97bc73e526
|
@ -39,9 +39,9 @@ class CapitalCosts(CostBase):
|
||||||
dtype='float'
|
dtype='float'
|
||||||
)
|
)
|
||||||
self._yearly_capital_costs.loc[0, 'B2010_opaque_walls'] = 0
|
self._yearly_capital_costs.loc[0, 'B2010_opaque_walls'] = 0
|
||||||
self._yearly_capital_costs.loc[0]['B2020_transparent'] = 0
|
self._yearly_capital_costs.loc[0, 'B2020_transparent'] = 0
|
||||||
self._yearly_capital_costs.loc[0, 'B3010_opaque_roof'] = 0
|
self._yearly_capital_costs.loc[0, 'B3010_opaque_roof'] = 0
|
||||||
self._yearly_capital_costs.loc[0]['B10_superstructure'] = 0
|
self._yearly_capital_costs.loc[0, 'B10_superstructure'] = 0
|
||||||
self._yearly_capital_costs.loc[0, 'D3020_heat_generating_systems'] = 0
|
self._yearly_capital_costs.loc[0, 'D3020_heat_generating_systems'] = 0
|
||||||
self._yearly_capital_costs.loc[0, 'D3030_cooling_generation_systems'] = 0
|
self._yearly_capital_costs.loc[0, 'D3030_cooling_generation_systems'] = 0
|
||||||
self._yearly_capital_costs.loc[0, 'D3040_distribution_systems'] = 0
|
self._yearly_capital_costs.loc[0, 'D3040_distribution_systems'] = 0
|
||||||
|
@ -107,9 +107,9 @@ class CapitalCosts(CostBase):
|
||||||
capital_cost_roof = surface_roof * chapter.item('B3010_opaque_roof').refurbishment[0]
|
capital_cost_roof = surface_roof * chapter.item('B3010_opaque_roof').refurbishment[0]
|
||||||
capital_cost_ground = surface_ground * chapter.item('B10_superstructure').refurbishment[0]
|
capital_cost_ground = surface_ground * chapter.item('B10_superstructure').refurbishment[0]
|
||||||
self._yearly_capital_costs.loc[0, 'B2010_opaque_walls'] = capital_cost_opaque * own_capital
|
self._yearly_capital_costs.loc[0, 'B2010_opaque_walls'] = capital_cost_opaque * own_capital
|
||||||
self._yearly_capital_costs.loc[0]['B2020_transparent'] = capital_cost_transparent * own_capital
|
self._yearly_capital_costs.loc[0, 'B2020_transparent'] = capital_cost_transparent * own_capital
|
||||||
self._yearly_capital_costs.loc[0, 'B3010_opaque_roof'] = capital_cost_roof * own_capital
|
self._yearly_capital_costs.loc[0, 'B3010_opaque_roof'] = capital_cost_roof * own_capital
|
||||||
self._yearly_capital_costs.loc[0]['B10_superstructure'] = capital_cost_ground * own_capital
|
self._yearly_capital_costs.loc[0, 'B10_superstructure'] = capital_cost_ground * own_capital
|
||||||
|
|
||||||
if self._configuration.retrofit_scenario in (SYSTEM_RETROFIT_AND_PV, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV):
|
if self._configuration.retrofit_scenario in (SYSTEM_RETROFIT_AND_PV, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV):
|
||||||
chapter = self._capital_costs_chapter.chapter('D_services')
|
chapter = self._capital_costs_chapter.chapter('D_services')
|
||||||
|
@ -119,7 +119,7 @@ class CapitalCosts(CostBase):
|
||||||
capital_cost_distribution_equipment = peak_cooling * chapter.item('D3040_distribution_systems').initial_investment[0]
|
capital_cost_distribution_equipment = peak_cooling * chapter.item('D3040_distribution_systems').initial_investment[0]
|
||||||
capital_cost_other_hvac_ahu = peak_cooling * chapter.item('D3080_other_hvac_ahu').initial_investment[0]
|
capital_cost_other_hvac_ahu = peak_cooling * chapter.item('D3080_other_hvac_ahu').initial_investment[0]
|
||||||
capital_cost_lighting = self._total_floor_area * chapter.item('D5020_lighting_and_branch_wiring').initial_investment[0]
|
capital_cost_lighting = self._total_floor_area * chapter.item('D5020_lighting_and_branch_wiring').initial_investment[0]
|
||||||
self._yearly_capital_costs.loc[0]['D301010_photovoltaic_system'] = capital_cost_pv
|
self._yearly_capital_costs.loc[0, 'D301010_photovoltaic_system'] = capital_cost_pv
|
||||||
self._yearly_capital_costs.loc[0, 'D3020_heat_generating_systems'] = capital_cost_heating_equipment * own_capital
|
self._yearly_capital_costs.loc[0, 'D3020_heat_generating_systems'] = capital_cost_heating_equipment * own_capital
|
||||||
self._yearly_capital_costs.loc[0, 'D3030_cooling_generation_systems'] = capital_cost_cooling_equipment * own_capital
|
self._yearly_capital_costs.loc[0, 'D3030_cooling_generation_systems'] = capital_cost_cooling_equipment * own_capital
|
||||||
self._yearly_capital_costs.loc[0, 'D3040_distribution_systems'] = capital_cost_distribution_equipment * own_capital
|
self._yearly_capital_costs.loc[0, 'D3040_distribution_systems'] = capital_cost_distribution_equipment * own_capital
|
||||||
|
@ -219,7 +219,7 @@ class CapitalCosts(CostBase):
|
||||||
|
|
||||||
if self._configuration.retrofit_scenario in (SYSTEM_RETROFIT_AND_PV, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV):
|
if self._configuration.retrofit_scenario in (SYSTEM_RETROFIT_AND_PV, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV):
|
||||||
if (year % chapter.item('D301010_photovoltaic_system').lifetime) == 0:
|
if (year % chapter.item('D301010_photovoltaic_system').lifetime) == 0:
|
||||||
self._yearly_capital_costs.loc[year]['D301010_photovoltaic_system'] += (
|
self._yearly_capital_costs.loc[year, 'D301010_photovoltaic_system'] += (
|
||||||
surface_pv * chapter.item('D301010_photovoltaic_system').reposition[0] * costs_increase
|
surface_pv * chapter.item('D301010_photovoltaic_system').reposition[0] * costs_increase
|
||||||
)
|
)
|
||||||
capital_cost_skin = capital_cost_opaque + capital_cost_ground + capital_cost_transparent + capital_cost_roof
|
capital_cost_skin = capital_cost_opaque + capital_cost_ground + capital_cost_transparent + capital_cost_roof
|
||||||
|
|
Loading…
Reference in New Issue
Block a user