forked from s_ranjbar/city_retrofit
small changes to performance_curves.py and distribution_system.py
created the montreal_custom_catalog_new.py uploaded my xml file
This commit is contained in:
parent
3feecac15d
commit
ccdc7a454d
|
@ -3,6 +3,7 @@ Energy System catalog distribution system
|
||||||
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||||||
Copyright © 2023 Concordia CERC group
|
Copyright © 2023 Concordia CERC group
|
||||||
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
||||||
|
Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from hub.catalog_factories.data_models.construction.material import Material
|
from hub.catalog_factories.data_models.construction.material import Material
|
||||||
|
|
|
@ -10,13 +10,14 @@ from __future__ import annotations
|
||||||
from typing import Union
|
from typing import Union
|
||||||
|
|
||||||
|
|
||||||
class ParameterFunction:
|
class PerformanceCurves:
|
||||||
"""
|
"""
|
||||||
Parameter function class
|
Parameter function class
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, type, coefficients):
|
def __init__(self, type, parameters, coefficients):
|
||||||
self._type = type
|
self._type = type
|
||||||
|
self._parameters = parameters
|
||||||
self._coefficients = coefficients
|
self._coefficients = coefficients
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
@ -34,6 +35,14 @@ class ParameterFunction:
|
||||||
"""
|
"""
|
||||||
return self._type
|
return self._type
|
||||||
|
|
||||||
|
@property
|
||||||
|
def parameters(self):
|
||||||
|
"""
|
||||||
|
Get the list of parameters involved in fitting process as ['y', 'x', 'z']
|
||||||
|
:return: string
|
||||||
|
"""
|
||||||
|
return self._parameters
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def coefficients(self):
|
def coefficients(self):
|
||||||
"""
|
"""
|
||||||
|
@ -46,8 +55,8 @@ class ParameterFunction:
|
||||||
"""Class content to dictionary"""
|
"""Class content to dictionary"""
|
||||||
content = {'Parameter Function': {
|
content = {'Parameter Function': {
|
||||||
'type': self.type,
|
'type': self.type,
|
||||||
|
'parameters': self.parameters,
|
||||||
'coefficients': self.coefficients,
|
'coefficients': self.coefficients,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return content
|
return content
|
||||||
|
|
|
@ -0,0 +1,251 @@
|
||||||
|
"""
|
||||||
|
Montreal custom energy systems catalog module
|
||||||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||||||
|
Copyright © 2022 Concordia CERC group
|
||||||
|
Project Coder Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
||||||
|
Code contributors: Saeed Ranjbar saeed.ranjbar@concordia.ca
|
||||||
|
"""
|
||||||
|
|
||||||
|
from ast import literal_eval
|
||||||
|
import xmltodict
|
||||||
|
from hub.catalog_factories.catalog import Catalog
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.system import System
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.content import Content
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.generation_system import GenerationSystem
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.distribution_system import DistributionSystem
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.energy_emission_system import EnergyEmissionSystem
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.performance_curves import PerformanceCurves
|
||||||
|
from hub.catalog_factories.data_models.energy_systems.archetype import Archetype
|
||||||
|
|
||||||
|
|
||||||
|
class MontrealCustomCatalog(Catalog):
|
||||||
|
"""
|
||||||
|
Montreal custom energy systems catalog class
|
||||||
|
"""
|
||||||
|
def __init__(self, path):
|
||||||
|
path = str(path / 'montreal_custom_systems.xml')
|
||||||
|
with open(path, 'r', encoding='utf-8') as xml:
|
||||||
|
self._archetypes = xmltodict.parse(xml.read(), force_list=('system', 'system_cluster', 'equipment',
|
||||||
|
'demand', 'system_id'))
|
||||||
|
|
||||||
|
self._lod = float(self._archetypes['catalog']['@lod'])
|
||||||
|
|
||||||
|
self._catalog_generation_equipments = self._load_generation_equipments()
|
||||||
|
self._catalog_distribution_equipments = self._load_distribution_equipments()
|
||||||
|
self._catalog_emission_equipments = self._load_emission_equipments()
|
||||||
|
self._catalog_systems = self._load_systems()
|
||||||
|
self._catalog_archetypes = self._load_archetypes()
|
||||||
|
|
||||||
|
# store the full catalog data model in self._content
|
||||||
|
self._content = Content(self._catalog_archetypes,
|
||||||
|
self._catalog_systems,
|
||||||
|
self._catalog_generation_equipments,
|
||||||
|
self._catalog_distribution_equipments,
|
||||||
|
self._catalog_emission_equipments)
|
||||||
|
|
||||||
|
def _load_generation_equipments(self):
|
||||||
|
_equipments = []
|
||||||
|
equipments = self._archetypes['catalog']['generation_equipments']['equipment']
|
||||||
|
for equipment in equipments:
|
||||||
|
equipment_id = float(equipment['@id'])
|
||||||
|
equipment_type = equipment['@type']
|
||||||
|
fuel_type = equipment['@fuel_type']
|
||||||
|
name = equipment['name']
|
||||||
|
heating_efficiency = None
|
||||||
|
if 'heating_efficiency' in equipment:
|
||||||
|
heating_efficiency = float(equipment['heating_efficiency'])
|
||||||
|
cooling_efficiency = None
|
||||||
|
if 'cooling_efficiency' in equipment:
|
||||||
|
cooling_efficiency = float(equipment['cooling_efficiency'])
|
||||||
|
electricity_efficiency = None
|
||||||
|
if 'electrical_efficiency' in equipment:
|
||||||
|
electricity_efficiency = float(equipment['electrical_efficiency'])
|
||||||
|
storage = literal_eval(equipment['storage'].capitalize())
|
||||||
|
generation_system = GenerationSystem(equipment_id,
|
||||||
|
name,
|
||||||
|
equipment_type,
|
||||||
|
fuel_type,
|
||||||
|
None,
|
||||||
|
heating_efficiency,
|
||||||
|
cooling_efficiency,
|
||||||
|
electricity_efficiency,
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
storage,
|
||||||
|
None)
|
||||||
|
|
||||||
|
_equipments.append(generation_system)
|
||||||
|
return _equipments
|
||||||
|
|
||||||
|
def _load_distribution_equipments(self):
|
||||||
|
_equipments = []
|
||||||
|
equipments = self._archetypes['catalog']['distribution_equipments']['equipment']
|
||||||
|
for equipment in equipments:
|
||||||
|
equipment_id = float(equipment['@id'])
|
||||||
|
equipment_type = equipment['@type']
|
||||||
|
name = equipment['name']
|
||||||
|
distribution_heat_losses = None
|
||||||
|
if 'distribution_heat_losses' in equipment:
|
||||||
|
distribution_heat_losses = float(equipment['distribution_heat_losses']['#text']) / 100
|
||||||
|
distribution_consumption_fix_flow = None
|
||||||
|
if 'distribution_consumption_fix_flow' in equipment:
|
||||||
|
distribution_consumption_fix_flow = float(equipment['distribution_consumption_fix_flow']['#text']) / 100
|
||||||
|
distribution_consumption_variable_flow = None
|
||||||
|
if 'distribution_consumption_variable_flow' in equipment:
|
||||||
|
distribution_consumption_variable_flow = float(equipment['distribution_consumption_variable_flow']['#text']) / 100
|
||||||
|
|
||||||
|
distribution_system = DistributionSystem(equipment_id,
|
||||||
|
name,
|
||||||
|
equipment_type,
|
||||||
|
None,
|
||||||
|
distribution_consumption_fix_flow,
|
||||||
|
distribution_consumption_variable_flow,
|
||||||
|
distribution_heat_losses)
|
||||||
|
|
||||||
|
_equipments.append(distribution_system)
|
||||||
|
return _equipments
|
||||||
|
|
||||||
|
def _load_emission_equipments(self):
|
||||||
|
_equipments = []
|
||||||
|
equipments = self._archetypes['catalog']['dissipation_equipments']['equipment']
|
||||||
|
for equipment in equipments:
|
||||||
|
equipment_id = float(equipment['@id'])
|
||||||
|
equipment_type = equipment['@type']
|
||||||
|
name = equipment['name']
|
||||||
|
parasitic_consumption = None
|
||||||
|
if 'parasitic_consumption' in equipment:
|
||||||
|
parasitic_consumption = float(equipment['parasitic_consumption']['#text']) / 100
|
||||||
|
|
||||||
|
emission_system = EnergyEmissionSystem(equipment_id,
|
||||||
|
name,
|
||||||
|
equipment_type,
|
||||||
|
parasitic_consumption)
|
||||||
|
|
||||||
|
_equipments.append(emission_system)
|
||||||
|
return _equipments
|
||||||
|
|
||||||
|
def _load_systems(self):
|
||||||
|
_catalog_systems = []
|
||||||
|
systems = self._archetypes['catalog']['systems']['system']
|
||||||
|
for system in systems:
|
||||||
|
system_id = float(system['@id'])
|
||||||
|
name = system['name']
|
||||||
|
demands = system['demands']['demand']
|
||||||
|
generation_equipment = system['equipments']['generation_id']
|
||||||
|
_generation_equipment = None
|
||||||
|
for equipment_archetype in self._catalog_generation_equipments:
|
||||||
|
if int(equipment_archetype.id) == int(generation_equipment):
|
||||||
|
_generation_equipment = equipment_archetype
|
||||||
|
distribution_equipment = system['equipments']['distribution_id']
|
||||||
|
_distribution_equipment = None
|
||||||
|
for equipment_archetype in self._catalog_distribution_equipments:
|
||||||
|
if int(equipment_archetype.id) == int(distribution_equipment):
|
||||||
|
_distribution_equipment = equipment_archetype
|
||||||
|
emission_equipment = system['equipments']['dissipation_id']
|
||||||
|
_emission_equipment = None
|
||||||
|
for equipment_archetype in self._catalog_emission_equipments:
|
||||||
|
if int(equipment_archetype.id) == int(emission_equipment):
|
||||||
|
_emission_equipment = equipment_archetype
|
||||||
|
|
||||||
|
_catalog_systems.append(System(self._lod,
|
||||||
|
system_id,
|
||||||
|
name,
|
||||||
|
demands,
|
||||||
|
_generation_equipment,
|
||||||
|
_distribution_equipment,
|
||||||
|
_emission_equipment))
|
||||||
|
return _catalog_systems
|
||||||
|
|
||||||
|
def _load_archetypes(self):
|
||||||
|
_catalog_archetypes = []
|
||||||
|
system_clusters = self._archetypes['catalog']['system_clusters']['system_cluster']
|
||||||
|
for system_cluster in system_clusters:
|
||||||
|
name = system_cluster['@name']
|
||||||
|
systems = system_cluster['systems']['system_id']
|
||||||
|
_systems = []
|
||||||
|
for system in systems:
|
||||||
|
for system_archetype in self._catalog_systems:
|
||||||
|
if int(system_archetype.id) == int(system):
|
||||||
|
_systems.append(system_archetype)
|
||||||
|
_catalog_archetypes.append(Archetype(self._lod, name, _systems))
|
||||||
|
return _catalog_archetypes
|
||||||
|
|
||||||
|
def names(self, category=None):
|
||||||
|
"""
|
||||||
|
Get the catalog elements names
|
||||||
|
:parm: optional category filter
|
||||||
|
"""
|
||||||
|
if category is None:
|
||||||
|
_names = {'archetypes': [], 'systems': [], 'generation_equipments': [], 'distribution_equipments': [],
|
||||||
|
'emission_equipments':[]}
|
||||||
|
for archetype in self._content.archetypes:
|
||||||
|
_names['archetypes'].append(archetype.manufacturer)
|
||||||
|
for system in self._content.systems:
|
||||||
|
_names['systems'].append(system.manufacturer)
|
||||||
|
for equipment in self._content.generation_equipments:
|
||||||
|
_names['generation_equipments'].append(equipment.manufacturer)
|
||||||
|
for equipment in self._content.distribution_equipments:
|
||||||
|
_names['distribution_equipments'].append(equipment.manufacturer)
|
||||||
|
for equipment in self._content.emission_equipments:
|
||||||
|
_names['emission_equipments'].append(equipment.manufacturer)
|
||||||
|
else:
|
||||||
|
_names = {category: []}
|
||||||
|
if category.lower() == 'archetypes':
|
||||||
|
for archetype in self._content.archetypes:
|
||||||
|
_names[category].append(archetype.manufacturer)
|
||||||
|
elif category.lower() == 'systems':
|
||||||
|
for system in self._content.systems:
|
||||||
|
_names[category].append(system.manufacturer)
|
||||||
|
elif category.lower() == 'generation_equipments':
|
||||||
|
for system in self._content.generation_equipments:
|
||||||
|
_names[category].append(system.manufacturer)
|
||||||
|
elif category.lower() == 'distribution_equipments':
|
||||||
|
for system in self._content.distribution_equipments:
|
||||||
|
_names[category].append(system.manufacturer)
|
||||||
|
elif category.lower() == 'emission_equipments':
|
||||||
|
for system in self._content.emission_equipments:
|
||||||
|
_names[category].append(system.manufacturer)
|
||||||
|
else:
|
||||||
|
raise ValueError(f'Unknown category [{category}]')
|
||||||
|
return _names
|
||||||
|
|
||||||
|
def entries(self, category=None):
|
||||||
|
"""
|
||||||
|
Get the catalog elements
|
||||||
|
:parm: optional category filter
|
||||||
|
"""
|
||||||
|
if category is None:
|
||||||
|
return self._content
|
||||||
|
if category.lower() == 'archetypes':
|
||||||
|
return self._content.archetypes
|
||||||
|
if category.lower() == 'systems':
|
||||||
|
return self._content.systems
|
||||||
|
if category.lower() == 'generation_equipments':
|
||||||
|
return self._content.generation_equipments
|
||||||
|
if category.lower() == 'distribution_equipments':
|
||||||
|
return self._content.distribution_equipments
|
||||||
|
if category.lower() == 'emission_equipments':
|
||||||
|
return self._content.emission_equipments
|
||||||
|
raise ValueError(f'Unknown category [{category}]')
|
||||||
|
|
||||||
|
def get_entry(self, name):
|
||||||
|
"""
|
||||||
|
Get one catalog element by names
|
||||||
|
:parm: entry name
|
||||||
|
"""
|
||||||
|
for entry in self._content.archetypes:
|
||||||
|
if entry.manufacturer.lower() == name.lower():
|
||||||
|
return entry
|
||||||
|
for entry in self._content.systems:
|
||||||
|
if entry.manufacturer.lower() == name.lower():
|
||||||
|
return entry
|
||||||
|
for entry in self._content.generation_equipments:
|
||||||
|
if entry.manufacturer.lower() == name.lower():
|
||||||
|
return entry
|
||||||
|
for entry in self._content.distribution_equipments:
|
||||||
|
if entry.manufacturer.lower() == name.lower():
|
||||||
|
return entry
|
||||||
|
for entry in self._content.emission_equipments:
|
||||||
|
if entry.manufacturer.lower() == name.lower():
|
||||||
|
return entry
|
||||||
|
raise IndexError(f"{name} doesn't exists in the catalog")
|
43
hub/data/energy_systems/Tools4CitiesESMF.encomp
Normal file
43
hub/data/energy_systems/Tools4CitiesESMF.encomp
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<encomp:EnergySystemCatalog xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:encomp="https://www.hft-stuttgart.de/energycomponents">
|
||||||
|
<energycomponent>
|
||||||
|
<media name="Water" density="981.0" heatCapacity="4180.0" evaporationTemperature="100.0"/>
|
||||||
|
<boilers modelName="ALP080B" manufacturer="//@energycomponent.0/@manufacturers.0" installedThermalPower="21.0" modulationRange="0.88" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALP105B" manufacturer="//@energycomponent.0/@manufacturers.0" installedThermalPower="28.0" modulationRange="0.88" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALP150B" manufacturer="//@energycomponent.0/@manufacturers.0" installedThermalPower="40.0" modulationRange="0.88" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALP210B" manufacturer="//@energycomponent.0/@manufacturers.0" installedThermalPower="57.0" modulationRange="0.87" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALTAC-136" manufacturer="//@energycomponent.0/@manufacturers.1" installedThermalPower="33.0" modulationRange="0.95" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALTAC-200" installedThermalPower="41.0" modulationRange="0.92" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ALTA-120" manufacturer="//@energycomponent.0/@manufacturers.1" installedThermalPower="33.0" modulationRange="0.95" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="ASPN-085" manufacturer="//@energycomponent.0/@manufacturers.2" installedThermalPower="23.15" modulationRange="0.97" nominalEfficiency="0.96"/>
|
||||||
|
<boilers modelName="ASPN-110" manufacturer="//@energycomponent.0/@manufacturers.2" installedThermalPower="30.19" modulationRange="0.96" nominalEfficiency="0.96"/>
|
||||||
|
<boilers modelName="ASPNC-155" manufacturer="//@energycomponent.0/@manufacturers.2" installedThermalPower="42.5" modulationRange="0.96" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="K2WTC-135B" manufacturer="//@energycomponent.0/@manufacturers.3" installedThermalPower="32.8" modulationRange="0.96" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<boilers modelName="K2WTC-180B" manufacturer="//@energycomponent.0/@manufacturers.3" installedThermalPower="49.5" modulationRange="0.96" nominalEfficiency="0.95" combi="true"/>
|
||||||
|
<heatPumps modelName="CMAA 012" description="A second degree equation is used in form of A*T_source^2 + B*T_source + C*T_source*T_sup + D*T_sup + E*T_sup^2 + F" manufacturer="//@energycomponent.0/@manufacturers.4" installedThermalPower="51.7" modulationRange="0.0" fuel="Electricity" nominalCOP="3.32" maxHeatingSupTemperature="55.0" minHeatingSupTemperature="6.0" maxCoolingSupTemperature="11.0" minCoolingSupTemperature="30.0">
|
||||||
|
<coefficientOfPerformance xsi:type="encomp:SecondDegreePolynomialFunction" parameter="COP" parameterA="9.5E-4" parameterB="0.177" parameterC="-0.00242" parameterD="-0.155" parameterE="9.3E-4" parameterF="8.044"/>
|
||||||
|
</heatPumps>
|
||||||
|
<heatPumps modelName="CMAA 70" description="A second degree equation is used in form of A*T_source^2 + B*T_source + C*T_source*T_sup + D*T_sup + E*T_sup^2 + F" manufacturer="//@energycomponent.0/@manufacturers.4" installedThermalPower="279.3" modulationRange="0.0" fuel="Electricity" nominalCOP="3.07" maxHeatingSupTemperature="55.0" minHeatingSupTemperature="6.0" maxCoolingSupTemperature="11.0" minCoolingSupTemperature="30.0">
|
||||||
|
<coefficientOfPerformance xsi:type="encomp:SecondDegreePolynomialFunction" parameter="COP" parameterA="0.0011" parameterB="0.207" parameterC="-0.00292" parameterD="-0.187" parameterE="0.00121" parameterF="8.95"/>
|
||||||
|
</heatPumps>
|
||||||
|
<heatPumps modelName="CMAA 140" description="A second degree equation is used in form of A*T_source^2 + B*T_source + C*T_source*T_sup + D*T_sup + E*T_sup^2 + F" manufacturer="//@energycomponent.0/@manufacturers.4" installedThermalPower="279.3" modulationRange="0.0" fuel="Electricity" nominalCOP="3.46" maxHeatingSupTemperature="55.0" minHeatingSupTemperature="6.0" maxCoolingSupTemperature="11.0" minCoolingSupTemperature="30.0">
|
||||||
|
<coefficientOfPerformance xsi:type="encomp:SecondDegreePolynomialFunction" parameter="COP" parameterA="0.00109" parameterB="0.209" parameterC="-0.00291" parameterD="-0.172" parameterE="0.00102" parameterF="8.95"/>
|
||||||
|
</heatPumps>
|
||||||
|
<thermalStorages modelName="HF 200" manufacturer="//@energycomponent.0/@manufacturers.5" volume="0.5" maxTemp="95.0" insulationThickness="90.0" usesMedium="//@energycomponent.0/@media.0" insulationMaterial="//@energycomponent.0/@materials.0" height="1.5" tankMaterial="//@energycomponent.0/@materials.1"/>
|
||||||
|
<thermalStorages modelName="HF 300" manufacturer="//@energycomponent.0/@manufacturers.5" volume="0.6" maxTemp="95.0" insulationThickness="90.0" usesMedium="//@energycomponent.0/@media.0" insulationMaterial="//@energycomponent.0/@materials.0" height="1.3" tankMaterial="//@energycomponent.0/@materials.1"/>
|
||||||
|
<thermalStorages modelName="HF 500" manufacturer="//@energycomponent.0/@manufacturers.5" volume="0.5" maxTemp="95.0" insulationThickness="90.0" usesMedium="//@energycomponent.0/@media.0" insulationMaterial="//@energycomponent.0/@materials.0" height="1.5" tankMaterial="//@energycomponent.0/@materials.1"/>
|
||||||
|
<thermalStorages modelName="HF 200" manufacturer="//@energycomponent.0/@manufacturers.5" volume="0.5" maxTemp="95.0" insulationThickness="90.0" usesMedium="//@energycomponent.0/@media.0" insulationMaterial="//@energycomponent.0/@materials.0" height="1.5" tankMaterial="//@energycomponent.0/@materials.1"/>
|
||||||
|
<thermalStorages modelName="HF 200" manufacturer="//@energycomponent.0/@manufacturers.5" volume="0.5" maxTemp="95.0" insulationThickness="90.0" usesMedium="//@energycomponent.0/@media.0" insulationMaterial="//@energycomponent.0/@materials.0" height="1.5" tankMaterial="//@energycomponent.0/@materials.1"/>
|
||||||
|
<manufacturers name="Alpine" country="USA"/>
|
||||||
|
<manufacturers name="Alta" country="USA"/>
|
||||||
|
<manufacturers name="Aspen" country="USA"/>
|
||||||
|
<manufacturers name="K2" country="USA"/>
|
||||||
|
<manufacturers name="TRANE"/>
|
||||||
|
<manufacturers name="reflex"/>
|
||||||
|
<materials name="Polyurethane" thermalConductivity="0.028"/>
|
||||||
|
<materials name="Steel" thermalConductivity="18.0"/>
|
||||||
|
</energycomponent>
|
||||||
|
<energysystemconfiguration configurationName="PvHpBoiler"/>
|
||||||
|
<energysystemconfiguration configurationName="hpTesBoiler"/>
|
||||||
|
<energysystemconfiguration/>
|
||||||
|
</encomp:EnergySystemCatalog>
|
Loading…
Reference in New Issue
Block a user