From e9896ea2744954fd758c4e8690341d6e183e6b87 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:30:37 +0200 Subject: [PATCH 01/23] Fix formatting with black formatter Signed-off-by: Steffen Vogel --- cimpy/cimexamples.py | 20 +- cimpy/cimexport.py | 379 +++++++++++------- cimpy/cimimport.py | 244 ++++++----- cimpy/examples/addExternalNetworkInjection.py | 20 +- cimpy/examples/convertToBusBranch.py | 22 +- cimpy/examples/exportCIGREMV.py | 19 +- cimpy/examples/importCIGREMV.py | 14 +- cimpy/utils.py | 110 +++-- documentation/conf.py | 34 +- documentation/set_inheritance_diagram.py | 23 +- setup.py | 24 +- tests/create_pickle_dump.py | 18 +- tests/test_export.py | 163 ++++---- tests/test_import.py | 29 +- 14 files changed, 668 insertions(+), 451 deletions(-) diff --git a/cimpy/cimexamples.py b/cimpy/cimexamples.py index 6bcac494..b8fe1980 100644 --- a/cimpy/cimexamples.py +++ b/cimpy/cimexamples.py @@ -2,32 +2,28 @@ def import_example(): - """TODO: Add documentation - """ + """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / 'examples' / 'importCIGREMV.py' + example = base / "examples" / "importCIGREMV.py" exec(open(example).read()) def export_example(): - """TODO: Add documentation - """ + """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / 'examples' / 'exportCIGREMV.py' + example = base / "examples" / "exportCIGREMV.py" exec(open(example).read()) def convertToBusBranch_example(): - """TODO: Add documentation - """ + """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / 'examples' / 'convertToBusBranch.py' + example = base / "examples" / "convertToBusBranch.py" exec(open(example).read()) def addExternalNetworkInjection_example(): - """TODO: Add documentation - """ + """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / 'examples' / 'addExternalNetworkInjection.py' + example = base / "examples" / "addExternalNetworkInjection.py" exec(open(example).read()) diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index ce0802b7..35463b78 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -7,6 +7,7 @@ import logging import sys from cimpy.cgmes_v2_4_15.Base import Base + cgmesProfile = Base.cgmesProfile from pathlib import Path import copy @@ -18,16 +19,18 @@ def _get_class_attributes_with_references(import_result, version): class_attributes_list = [] # extract topology and urls - topology = import_result['topology'] - urls = import_result['meta_info']['urls'] + topology = import_result["topology"] + urls = import_result["meta_info"]["urls"] for key in topology.keys(): class_dict = dict(name=topology[key].__class__.__name__) - class_dict['mRID'] = key + class_dict["mRID"] = key # array containing all attributes, attribute references to objects attributes_dict = _get_attributes(topology[key]) # change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have # mRID as an attribute. Therefore the corresponding class has to be searched in the res dictionary - class_dict['attributes'] = _get_reference_uuid(attributes_dict, version, topology, key, urls) + class_dict["attributes"] = _get_reference_uuid( + attributes_dict, version, topology, key, urls + ) class_attributes_list.append(class_dict) del class_dict @@ -37,11 +40,11 @@ def _get_class_attributes_with_references(import_result, version): # This function resolves references to objects def _get_reference_uuid(attr_dict, version, topology, mRID, urls): reference_list = [] - base_class_name = 'cimpy.' + version + '.Base' + base_class_name = "cimpy." + version + ".Base" base_module = importlib.import_module(base_class_name) - base_class = getattr(base_module, 'Base') + base_class = getattr(base_module, "Base") for key in attr_dict: - if key in ['serializationProfile', 'possibleProfileList']: + if key in ["serializationProfile", "possibleProfileList"]: reference_list.append({key: attr_dict[key]}) continue @@ -53,57 +56,74 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): # classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key # for this object in the res dictionary # The % added before the mRID is used in the lambda _set_attribute_or_reference - if not hasattr(elem, 'mRID'): + if not hasattr(elem, "mRID"): # search for the object in the res dictionary and return the mRID - UUID = '%' + _search_mRID(elem, topology) - if UUID == '%': - logger.warning('Object of type {} not found as reference for object with UUID {}.'.format( - elem.__class__.__name__, mRID)) + UUID = "%" + _search_mRID(elem, topology) + if UUID == "%": + logger.warning( + "Object of type {} not found as reference for object with UUID {}.".format( + elem.__class__.__name__, mRID + ) + ) else: - UUID = '%' + elem.mRID + UUID = "%" + elem.mRID array.append(UUID) else: - logger.warning('Reference object not subclass of Base class for object with UUID {}.'.format(mRID)) + logger.warning( + "Reference object not subclass of Base class for object with UUID {}.".format( + mRID + ) + ) if len(array) == 1: - attributes['value'] = array[0] + attributes["value"] = array[0] else: - attributes['value'] = array + attributes["value"] = array elif issubclass(type(attr_dict[key]), base_class): # 0..1, 1..1 # resource = key + ' rdf:resource=' - if not hasattr(attr_dict[key], 'mRID'): + if not hasattr(attr_dict[key], "mRID"): # search for object in res dict and return mRID # The % added before the mRID is used in the lambda _set_attribute_or_reference - UUID = '%' + _search_mRID(attr_dict[key], topology) - if UUID == '%': - logger.warning('Object of type {} not found as reference for object with UUID {}.'.format( - attr_dict[key].__class__.__name__, mRID)) + UUID = "%" + _search_mRID(attr_dict[key], topology) + if UUID == "%": + logger.warning( + "Object of type {} not found as reference for object with UUID {}.".format( + attr_dict[key].__class__.__name__, mRID + ) + ) else: - UUID = '%' + attr_dict[key].mRID - attributes['value'] = UUID + UUID = "%" + attr_dict[key].mRID + attributes["value"] = UUID elif attr_dict[key] == "" or attr_dict[key] is None: pass else: # attribute in urls dict? - if key.split('.')[1] in urls.keys(): + if key.split(".")[1] in urls.keys(): # value in urls dict? should always be true - if attr_dict[key] in urls[key.split('.')[1]].keys(): - attributes['value'] = '%URL%' + urls[key.split('.')[1]][attr_dict[key]] + if attr_dict[key] in urls[key.split(".")[1]].keys(): + attributes["value"] = ( + "%URL%" + urls[key.split(".")[1]][attr_dict[key]] + ) else: - logger.warning('URL reference for attribute {} and value {} not found!'.format( - key.split('.')[1], attr_dict[key])) + logger.warning( + "URL reference for attribute {} and value {} not found!".format( + key.split(".")[1], attr_dict[key] + ) + ) else: - attributes['value'] = attr_dict[key] + attributes["value"] = attr_dict[key] - attributes['attr_name'] = key - if 'value' in attributes.keys(): - if isinstance(attributes['value'], list): - for reference_item in attributes['value']: + attributes["attr_name"] = key + if "value" in attributes.keys(): + if isinstance(attributes["value"], list): + for reference_item in attributes["value"]: # ignore default values - if reference_item not in ['', None, 0.0, 0]: - reference_list.append({'value': reference_item, 'attr_name': key}) + if reference_item not in ["", None, 0.0, 0]: + reference_list.append( + {"value": reference_item, "attr_name": key} + ) # ignore default values - elif attributes['value'] not in ['', None, 0.0, 0, 'list']: + elif attributes["value"] not in ["", None, 0.0, 0, "list"]: reference_list.append(attributes) return reference_list @@ -121,30 +141,30 @@ def _search_mRID(class_object, topology): # Lambda function for chevron renderer to decide whether the current element is a reference or an attribute def _set_attribute_or_reference(text, render): result = render(text) - result = result.split('@') + result = result.split("@") value = result[0] attr_name = result[1] - if '%URL%' in value: - reference = value.split('%')[2] + if "%URL%" in value: + reference = value.split("%")[2] return ' rdf:resource="' + reference + '"/>' - elif '%' in value: - reference = value.split('%')[1] + elif "%" in value: + reference = value.split("%")[1] return ' rdf:resource="#' + reference + '"/>' else: - return '>' + value + '' + return ">" + value + "" # Lambda function for chevron renderer to set an attribute or a reference in the model description. def _set_attribute_or_reference_model(text, render): result = render(text) - result = result.split('@') + result = result.split("@") value = result[0] attr_name = result[1] - if '%' in value: - reference = value.split('%')[1] + if "%" in value: + reference = value.split("%")[1] return ' rdf:resource="' + reference + '"/>' else: - return '>' + value + '' + return ">" + value + "" # Restructures the namespaces dict into a list. The template engine writes each entry in the RDF header @@ -175,88 +195,133 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): # store serializationProfile and possibleProfileList # serializationProfile class attribute, same for multiple instances of same class, only last origin of variable stored - serializationProfile = copy.deepcopy(klass['attributes'][0]['serializationProfile']) - possibleProfileList = copy.deepcopy(klass['attributes'][1]['possibleProfileList']) + serializationProfile = copy.deepcopy( + klass["attributes"][0]["serializationProfile"] + ) + possibleProfileList = copy.deepcopy( + klass["attributes"][1]["possibleProfileList"] + ) - class_serializationProfile = '' + class_serializationProfile = "" - if 'class' in serializationProfile.keys(): + if "class" in serializationProfile.keys(): # class was imported - if Profile[serializationProfile['class']] in activeProfileList: + if Profile[serializationProfile["class"]] in activeProfileList: # else: class origin profile not active for export, get active profile from possibleProfileList - if Profile[serializationProfile['class']].value in possibleProfileList[klass['name']]['class']: + if ( + Profile[serializationProfile["class"]].value + in possibleProfileList[klass["name"]]["class"] + ): # profile active and in possibleProfileList # else: class should not have been imported from this profile, get allowed profile # from possibleProfileList - class_serializationProfile = serializationProfile['class'] + class_serializationProfile = serializationProfile["class"] else: - logger.warning('Class {} was read from profile {} but this profile is not possible for this class' - .format(klass['name'], serializationProfile['class'])) + logger.warning( + "Class {} was read from profile {} but this profile is not possible for this class".format( + klass["name"], serializationProfile["class"] + ) + ) else: - logger.info('Class {} was read from profile {} but this profile is not active for the export. Use' - 'default profile from possibleProfileList.'.format(klass['name'], serializationProfile['class'])) - - if class_serializationProfile == '': + logger.info( + "Class {} was read from profile {} but this profile is not active for the export. Use" + "default profile from possibleProfileList.".format( + klass["name"], serializationProfile["class"] + ) + ) + + if class_serializationProfile == "": # class was created - if klass['name'] in possibleProfileList.keys(): - if 'class' in possibleProfileList[klass['name']].keys(): - possibleProfileList[klass['name']]['class'].sort() - for klass_profile in possibleProfileList[klass['name']]['class']: + if klass["name"] in possibleProfileList.keys(): + if "class" in possibleProfileList[klass["name"]].keys(): + possibleProfileList[klass["name"]]["class"].sort() + for klass_profile in possibleProfileList[klass["name"]]["class"]: if Profile(klass_profile).name in activeProfileList: # active profile for class export found class_serializationProfile = Profile(klass_profile).name break - if class_serializationProfile == '': + if class_serializationProfile == "": # no profile in possibleProfileList active - logger.warning('All possible export profiles for class {} not active. Skip class for export.' - .format(klass['name'])) + logger.warning( + "All possible export profiles for class {} not active. Skip class for export.".format( + klass["name"] + ) + ) continue else: - logger.warning('Class {} has no profile to export to.'.format(klass['name'])) + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) else: - logger.warning('Class {} has no profile to export to.'.format(klass['name'])) + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) # iterate over attributes - for attribute in klass['attributes']: - if 'attr_name' in attribute.keys(): - attribute_class = attribute['attr_name'].split('.')[0] - attribute_name = attribute['attr_name'].split('.')[1] + for attribute in klass["attributes"]: + if "attr_name" in attribute.keys(): + attribute_class = attribute["attr_name"].split(".")[0] + attribute_name = attribute["attr_name"].split(".")[1] # IdentifiedObject.mRID is not exported as an attribute - if attribute_name == 'mRID': + if attribute_name == "mRID": continue - attribute_serializationProfile = '' + attribute_serializationProfile = "" if attribute_name in serializationProfile.keys(): # attribute was imported - if Profile[serializationProfile[attribute_name]] in activeProfileList: + if ( + Profile[serializationProfile[attribute_name]] + in activeProfileList + ): attr_value = Profile[serializationProfile[attribute_name]].value - if attr_value in possibleProfileList[attribute_class][attribute_name]: - attribute_serializationProfile = serializationProfile[attribute_name] - - if attribute_serializationProfile == '': + if ( + attr_value + in possibleProfileList[attribute_class][attribute_name] + ): + attribute_serializationProfile = serializationProfile[ + attribute_name + ] + + if attribute_serializationProfile == "": # attribute was added if attribute_class in possibleProfileList.keys(): - if attribute_name in possibleProfileList[attribute_class].keys(): + if ( + attribute_name + in possibleProfileList[attribute_class].keys() + ): possibleProfileList[attribute_class][attribute_name].sort() - for attr_profile in possibleProfileList[attribute_class][attribute_name]: + for attr_profile in possibleProfileList[attribute_class][ + attribute_name + ]: if Profile(attr_profile) in activeProfileList: # active profile for class export found - attribute_serializationProfile = Profile(attr_profile).name + attribute_serializationProfile = Profile( + attr_profile + ).name break - if attribute_serializationProfile == '': + if attribute_serializationProfile == "": # no profile in possibleProfileList active, skip attribute - logger.warning('All possible export profiles for attribute {}.{} of class {} ' - 'not active. Skip attribute for export.' - .format(attribute_class, attribute_name, klass['name'])) + logger.warning( + "All possible export profiles for attribute {}.{} of class {} " + "not active. Skip attribute for export.".format( + attribute_class, attribute_name, klass["name"] + ) + ) continue else: - logger.warning('Attribute {}.{} of class {} has no profile to export to.'. - format(attribute_class, attribute_name, klass['name'])) + logger.warning( + "Attribute {}.{} of class {} has no profile to export to.".format( + attribute_class, attribute_name, klass["name"] + ) + ) else: - logger.warning('The class {} for attribute {} is not in the possibleProfileList'.format( - attribute_class, attribute_name)) + logger.warning( + "The class {} for attribute {} is not in the possibleProfileList".format( + attribute_class, attribute_name + ) + ) if attribute_serializationProfile == class_serializationProfile: # class and current attribute belong to same profile @@ -271,21 +336,33 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): # add class with all attributes in the same profile to the export dict sorted by the profile if class_serializationProfile in export_dict.keys(): - export_class = dict(name=klass['name'], mRID=klass['mRID'], attributes=same_package_list) - export_dict[class_serializationProfile]['classes'].append(export_class) + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile]["classes"].append(export_class) del export_class else: - export_class = dict(name=klass['name'], mRID=klass['mRID'], attributes=same_package_list) - export_dict[class_serializationProfile] = {'classes': [export_class]} + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile] = {"classes": [export_class]} # add class with all attributes defined in another profile to the about_key sorted by the profile for about_key in about_dict.keys(): if about_key in export_about_dict.keys(): - export_about_class = dict(name=klass['name'], mRID=klass['mRID'], attributes=about_dict[about_key]) - export_about_dict[about_key]['classes'].append(export_about_class) + export_about_class = dict( + name=klass["name"], + mRID=klass["mRID"], + attributes=about_dict[about_key], + ) + export_about_dict[about_key]["classes"].append(export_about_class) else: - export_about_class = dict(name=klass['name'], mRID=klass['mRID'], attributes=about_dict[about_key]) - export_about_dict[about_key] = {'classes': [export_about_class]} + export_about_class = dict( + name=klass["name"], + mRID=klass["mRID"], + attributes=about_dict[about_key], + ) + export_about_dict[about_key] = {"classes": [export_about_class]} return export_dict, export_about_dict @@ -312,7 +389,7 @@ def cim_export(import_result, file_name, version, activeProfileList): """ t0 = time() - logger.info('Start export procedure.') + logger.info("Start export procedure.") profile_list = list(map(lambda a: Profile[a], activeProfileList)) @@ -320,23 +397,30 @@ def cim_export(import_result, file_name, version, activeProfileList): for profile in profile_list: # File name - full_file_name = file_name + '_' + profile.long_name() + '.xml' + full_file_name = file_name + "_" + profile.long_name() + ".xml" if not os.path.exists(full_file_name): - output = generate_xml(import_result, version, file_name, profile, profile_list) + output = generate_xml( + import_result, version, file_name, profile, profile_list + ) - with open(full_file_name, 'w') as file: - logger.info('Write file \"%s\"', full_file_name) + with open(full_file_name, "w") as file: + logger.info('Write file "%s"', full_file_name) file.write(output) else: - logger.error('File {} already exists. Delete file or change file name to serialize CGMES ' - 'classes.'.format(full_file_name)) - print('[ERROR:] File {} already exists. Delete file or change file name to serialize CGMES ' - 'classes.'.format(full_file_name), file=sys.stderr) + logger.error( + "File {} already exists. Delete file or change file name to serialize CGMES " + "classes.".format(full_file_name) + ) + print( + "[ERROR:] File {} already exists. Delete file or change file name to serialize CGMES " + "classes.".format(full_file_name), + file=sys.stderr, + ) exit(-1) - logger.info('End export procedure. Elapsed time: {}'.format(time() - t0)) + logger.info("End export procedure. Elapsed time: {}".format(time() - t0)) def generate_xml(cim_data, version, model_name, profile, available_profiles): @@ -352,55 +436,70 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): """ # returns all classes with their attributes and resolved references - class_attributes_list = _get_class_attributes_with_references( - cim_data, version) + class_attributes_list = _get_class_attributes_with_references(cim_data, version) # determine class and attribute export profiles. The export dict contains all classes and their attributes where # the class definition and the attribute definitions are in the same profile. Every entry in about_dict generates # a rdf:about in another profile export_dict, about_dict = _sort_classes_to_profile( - class_attributes_list, available_profiles) + class_attributes_list, available_profiles + ) - namespaces_list = _create_namespaces_list( - cim_data['meta_info']['namespaces']) + namespaces_list = _create_namespaces_list(cim_data["meta_info"]["namespaces"]) if profile.name not in export_dict.keys() and profile.name not in about_dict.keys(): - raise RuntimeError("Profile " + profile.name + " not available for export, export_dict=" + str(export_dict.keys()) + ' and about_dict='+ str(about_dict.keys()) + '.') + raise RuntimeError( + "Profile " + + profile.name + + " not available for export, export_dict=" + + str(export_dict.keys()) + + " and about_dict=" + + str(about_dict.keys()) + + "." + ) # extract class lists from export_dict and about_dict if profile.name in export_dict.keys(): - classes = export_dict[profile.name]['classes'] + classes = export_dict[profile.name]["classes"] else: classes = False if profile.name in about_dict.keys(): - about = about_dict[profile.name]['classes'] + about = about_dict[profile.name]["classes"] else: about = False - #Model header + # Model header model_description = { - 'mRID': model_name, - 'description': [ - {'attr_name': 'created', 'value': datetime.now().strftime( - "%d/%m/%Y %H:%M:%S")}, - {'attr_name': 'modelingAuthoritySet', - 'value': 'www.sogno.energy'}, - {'attr_name': 'profile', - 'value': profile.long_name()} - ] + "mRID": model_name, + "description": [ + { + "attr_name": "created", + "value": datetime.now().strftime("%d/%m/%Y %H:%M:%S"), + }, + {"attr_name": "modelingAuthoritySet", "value": "www.sogno.energy"}, + {"attr_name": "profile", "value": profile.long_name()}, + ], } - template_path = Path(os.path.join(os.path.dirname(__file__), 'export_template.mustache')).resolve() + template_path = Path( + os.path.join(os.path.dirname(__file__), "export_template.mustache") + ).resolve() with open(template_path) as f: - output = chevron.render(f, {"classes": classes, - "about": about, - "set_attributes_or_reference": _set_attribute_or_reference, - "set_attributes_or_reference_model": _set_attribute_or_reference_model, - "namespaces": namespaces_list, - "model": [model_description]}) + output = chevron.render( + f, + { + "classes": classes, + "about": about, + "set_attributes_or_reference": _set_attribute_or_reference, + "set_attributes_or_reference_model": _set_attribute_or_reference_model, + "namespaces": namespaces_list, + "model": [model_description], + }, + ) del model_description return output + # This function extracts all attributes from class_object in the form of Class_Name.Attribute_Name def _get_attributes(class_object): inheritance_list = [class_object] @@ -408,14 +507,16 @@ def _get_attributes(class_object): parent = class_object # get parent classes - while 'Base.Base' not in str(class_type): + while "Base.Base" not in str(class_type): parent = parent.__class__.__bases__[0]() # insert parent class at beginning of list, classes inherit from top to bottom inheritance_list.insert(0, parent) class_type = type(parent) # dictionary containing all attributes with key: 'Class_Name.Attribute_Name' - attributes_dict = dict(serializationProfile=class_object.serializationProfile, possibleProfileList={}) + attributes_dict = dict( + serializationProfile=class_object.serializationProfile, possibleProfileList={} + ) # __dict__ of a subclass returns also the attributes of the parent classes # to avoid multiple attributes create list with all attributes already processed @@ -431,7 +532,7 @@ def _get_attributes(class_object): for key in parent_attributes_dict.keys(): if key not in attributes_list: attributes_list.append(key) - attributes_name = class_name + '.' + key + attributes_name = class_name + "." + key attributes_dict[attributes_name] = getattr(class_object, key) else: continue @@ -439,7 +540,9 @@ def _get_attributes(class_object): # get all possibleProfileLists from all parent classes except the Base class (no attributes) # the serializationProfile from parent classes is not needed because entries in the serializationProfile # are only generated for the inherited class - if class_name != 'Base': - attributes_dict['possibleProfileList'][class_name] = parent_class.possibleProfileList + if class_name != "Base": + attributes_dict["possibleProfileList"][ + class_name + ] = parent_class.possibleProfileList return attributes_dict diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 68efc8a3..67b24b2a 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -41,37 +41,55 @@ def cim_import(xml_files, cgmes_version, start_dict=None): logger_grouped = dict(errors={}, info={}) # create a dict which will contain meta information and the topology - import_result = start_dict if start_dict is not None else dict(meta_info={}, topology={}) + import_result = ( + start_dict if start_dict is not None else dict(meta_info={}, topology={}) + ) # create sub-dictionaries - import_result['meta_info'] = dict(namespaces=_get_namespaces(xml_files[0]), urls={}) - namespace_rdf = _get_rdf_namespace(import_result['meta_info']['namespaces']) + import_result["meta_info"] = dict(namespaces=_get_namespaces(xml_files[0]), urls={}) + namespace_rdf = _get_rdf_namespace(import_result["meta_info"]["namespaces"]) # CIM element tag base (e.g. {http://iec.ch/TC57/2012/CIM-schema-cim16#} ) - base = "{" + import_result['meta_info']['namespaces']["cim"] + "}" - - import_result, logger_grouped, = _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace_rdf, - base, logger_grouped) - - import_result, logger_grouped = _set_attributes(import_result, xml_files, namespace_rdf, base, logger_grouped) - - if logger_grouped['errors']: - for error, count in logger_grouped['errors'].items(): - logging_message = '{} : {} times'.format(error, count) + base = "{" + import_result["meta_info"]["namespaces"]["cim"] + "}" + + (import_result, logger_grouped,) = _instantiate_classes( + import_result, + xml_files, + cgmes_version_path, + namespace_rdf, + base, + logger_grouped, + ) + + import_result, logger_grouped = _set_attributes( + import_result, xml_files, namespace_rdf, base, logger_grouped + ) + + if logger_grouped["errors"]: + for error, count in logger_grouped["errors"].items(): + logging_message = "{} : {} times".format(error, count) logger.warning(logging_message) - if logger_grouped['info']: - for info, count in logger_grouped['info'].items(): - logging_message = '{} : {} times'.format(info, count) + if logger_grouped["info"]: + for info, count in logger_grouped["info"].items(): + logging_message = "{} : {} times".format(info, count) logger.info(logging_message) # print info which classes and how many were instantiated print(logging_message) elapsed_time = time() - t0 - logger.info('Created totally {} CIM objects in {}s\n\n'.format(len(import_result['topology']), elapsed_time)) + logger.info( + "Created totally {} CIM objects in {}s\n\n".format( + len(import_result["topology"]), elapsed_time + ) + ) # print info of how many classes in total were instantiated to terminal - print('Created totally {} CIM objects in {}s'.format(len(import_result['topology']), elapsed_time)) + print( + "Created totally {} CIM objects in {}s".format( + len(import_result["topology"]), elapsed_time + ) + ) return import_result @@ -81,18 +99,19 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # are set in the _set_attributes function because some attributes might be stored in one package and the class in # another. Since after this function all classes are instantiated, there should be no problem in setting the attributes. # Also the information from which package file a class was read is stored in the serializationProfile dictionary. -def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace_rdf, base, - logger_grouped): +def _instantiate_classes( + import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped +): # extract topology from import_result - topology = import_result['topology'] + topology = import_result["topology"] # length of element tag base m = len(base) # first step: create the dict res{uuid}=instance_of_the_cim_class for xml_file in xml_files: - logger.info('START of parsing file \"%s\"', xml_file) + logger.info('START of parsing file "%s"', xml_file) # Reset stream if hasattr(xml_file, "seek"): @@ -107,7 +126,7 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # Get the root element ({http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF). _, root = next(context) - package = '' + package = "" for event, elem in context: @@ -122,14 +141,14 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace try: # module_name = package_map[package][tag] # Import the module for the CGMES object. - module_name = cgmes_version_path + '.' + tag + module_name = cgmes_version_path + "." + tag module = importlib.import_module(module_name) except ModuleNotFoundError: - error_msg = 'Module {} not implemented'.format(tag) + error_msg = "Module {} not implemented".format(tag) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 root.clear() continue @@ -139,43 +158,47 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # Instantiate the class and map it to the uuid. # res[uuid] = klass(UUID=uuid) topology[uuid] = klass() - info_msg = 'CIM object {} created'.format(module_name.split('.')[-1]) + info_msg = "CIM object {} created".format( + module_name.split(".")[-1] + ) try: - logger_grouped['info'][info_msg] += 1 + logger_grouped["info"][info_msg] += 1 except KeyError: - logger_grouped['info'][info_msg] = 1 + logger_grouped["info"][info_msg] = 1 # check if the class has the attribute mRID and set the mRID to the read in UUID. If the class # does not has this attribute, the UUID is only stored in the res dictionary. - if hasattr(topology[uuid], 'mRID'): + if hasattr(topology[uuid], "mRID"): topology[uuid].mRID = uuid - if package != '': - topology[uuid].serializationProfile['class'] = short_package_name[package] + if package != "": + topology[uuid].serializationProfile[ + "class" + ] = short_package_name[package] else: - error_msg = 'Package information not found for class {}'.format( + error_msg = "Package information not found for class {}".format( klass.__class__.__name__ ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 # Check which package is read elif event == "end": - if 'Model.profile' in elem.tag: + if "Model.profile" in elem.tag: for package_key in short_package_name.keys(): if package_key in elem.text: package = package_key break # the author of all imported files should be the same, avoid multiple entries - elif 'author' in import_result['meta_info'].keys(): + elif "author" in import_result["meta_info"].keys(): pass # extract author - elif 'Model.createdBy' in elem.tag: - import_result['meta_info']['author'] = elem.text - elif 'Model.modelingAuthoritySet' in elem.tag: - import_result['meta_info']['author'] = elem.text + elif "Model.createdBy" in elem.tag: + import_result["meta_info"]["author"] = elem.text + elif "Model.modelingAuthoritySet" in elem.tag: + import_result["meta_info"]["author"] = elem.text # Clear children of the root element to minimise memory usage. root.clear() @@ -188,8 +211,8 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # the attributes are read in the serializationProfile dictionary. def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_grouped): - topology = import_result['topology'] - urls = import_result['meta_info']['urls'] + topology = import_result["topology"] + urls = import_result["meta_info"]["urls"] m = len(base) @@ -206,7 +229,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Get the root element ({http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF). _, root = next(context) - package = '' + package = "" for event, elem in context: @@ -222,11 +245,13 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe try: obj = topology[uuid] except KeyError: - error_msg = 'Missing {} object with uuid: {}'.format(elem.tag[m:], uuid) + error_msg = "Missing {} object with uuid: {}".format( + elem.tag[m:], uuid + ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 root.clear() continue @@ -235,17 +260,22 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Process end events with elements in the CIM namespace. if event == "end" and elem.tag[:m] == base: # Break if class closing element (e.g. ). - if elem.get("{%s}ID" % namespace_rdf) is None \ - and elem.get("{%s}about" % namespace_rdf) is None: + if ( + elem.get("{%s}ID" % namespace_rdf) is None + and elem.get("{%s}about" % namespace_rdf) is None + ): # Get the attribute/reference name. attr = elem.tag[m:].rsplit(".")[-1] if not hasattr(obj, attr): - error_msg = "'%s' has not attribute '%s'" % (obj.__class__.__name__, attr) + error_msg = "'%s' has not attribute '%s'" % ( + obj.__class__.__name__, + attr, + ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 continue # Use the rdf:resource attribute to distinguish between attributes and references/enums. @@ -255,12 +285,14 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Convert value type using the default value. try: typ = type(getattr(obj, attr)) - if isinstance(getattr(obj, attr), bool): # if typ== + if isinstance( + getattr(obj, attr), bool + ): # if typ== # The function bool("false") returns True, # because it is called upon non-empty string! # This means that it wrongly reads "false" value as boolean True. # This is why this special case testing is necessary. - if str.title(elem.text) == 'True': + if str.title(elem.text) == "True": setattr(obj, attr, True) else: setattr(obj, attr, False) @@ -276,14 +308,17 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Use the '#' prefix to distinguish between references and enumerations. if uuid2[0] == "#": # reference try: - val = topology[uuid2[1:]] # remove '#' prefix + val = topology[ + uuid2[1:] + ] # remove '#' prefix except KeyError: - error_msg = 'Referenced {} [{}] object missing.'.format( - obj.__class__.__name__, uuid2[1:]) + error_msg = "Referenced {} [{}] object missing.".format( + obj.__class__.__name__, uuid2[1:] + ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 continue @@ -291,7 +326,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe if default is None: # 1..1 or 0..1 # Rely on properties to set any bi-directional references. setattr(obj, attr, val) - elif default == 'list': # many + elif default == "list": # many setattr(obj, attr, [val]) elif isinstance(default, list): # many attribute = getattr(obj, attr) @@ -303,63 +338,92 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe pass else: # note here - error_msg = 'Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1'.format( - obj.__class__.__name__, uuid, attr) + error_msg = "Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1".format( + obj.__class__.__name__, uuid, attr + ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 if hasattr(val, obj.__class__.__name__): - default1 = getattr(val, obj.__class__.__name__) + default1 = getattr( + val, obj.__class__.__name__ + ) if default1 is None: - setattr(val, obj.__class__.__name__, obj) - elif default1 == 'list': # many - setattr(val, obj.__class__.__name__, [obj]) + setattr( + val, obj.__class__.__name__, obj + ) + elif default1 == "list": # many + setattr( + val, obj.__class__.__name__, [obj] + ) elif isinstance(default1, list): # many - attribute2 = getattr(val, obj.__class__.__name__) + attribute2 = getattr( + val, obj.__class__.__name__ + ) if obj not in attribute2: attribute2.append(obj) - setattr(val, obj.__class__.__name__, attribute2) + setattr( + val, + obj.__class__.__name__, + attribute2, + ) elif default1 == obj: pass else: - error_msg = 'Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1'.format( - val.__class__.__name__, uuid2[1:], obj.__class__.__name__) + error_msg = "Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1".format( + val.__class__.__name__, + uuid2[1:], + obj.__class__.__name__, + ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][ + error_msg + ] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][ + error_msg + ] = 1 else: # enum # if http in uuid2 reference to URL, create mapping - if 'http' in uuid2: + if "http" in uuid2: if attr in urls.keys(): - if uuid2.rsplit(".", 1)[1] not in urls[attr].keys(): - urls[attr][uuid2.rsplit(".", 1)[1]] = uuid2 + if ( + uuid2.rsplit(".", 1)[1] + not in urls[attr].keys() + ): + urls[attr][ + uuid2.rsplit(".", 1)[1] + ] = uuid2 else: - urls[attr] = {uuid2.rsplit(".", 1)[1]: uuid2} + urls[attr] = { + uuid2.rsplit(".", 1)[1]: uuid2 + } # url_reference_dict[uuid2.rsplit(".", 1)[1]] = uuid2 val = uuid2.rsplit(".", 1)[1] setattr(obj, attr, val) - if package != '': - obj.serializationProfile[attr] = short_package_name[package] + if package != "": + obj.serializationProfile[attr] = short_package_name[ + package + ] else: - error_msg = 'Package information not found for class {}, attribute {}'.format( + error_msg = "Package information not found for class {}, attribute {}".format( obj.__class__.__name__, attr ) try: - logger_grouped['errors'][error_msg] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped['errors'][error_msg] = 1 + logger_grouped["errors"][error_msg] = 1 else: # if elem.get("{%s}ID" % nd_rdf is not None: # Finished setting object attributes. break # Check which package is read - elif event == "end" and 'Model.profile' in elem.tag: + elif event == "end" and "Model.profile" in elem.tag: for package_key in short_package_name.keys(): if package_key in elem.text: package = package_key @@ -376,7 +440,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe def _get_namespaces(source): namespaces = {} events = ("end", "start-ns", "end-ns") - for (event, elem) in etree.iterparse(source, events): + for event, elem in etree.iterparse(source, events): if event == "start-ns": prefix, ns = elem namespaces[prefix] = ns @@ -393,10 +457,10 @@ def _get_namespaces(source): # Returns the RDF Namespace from the namespaces dictionary def _get_rdf_namespace(namespaces): try: - namespace = namespaces['rdf'] + namespace = namespaces["rdf"] except KeyError: ns = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" - logger.warning('No rdf namespace found. Using %s' % ns) + logger.warning("No rdf namespace found. Using %s" % ns) return namespace @@ -404,11 +468,11 @@ def _get_rdf_namespace(namespaces): # TODO: use cimpy.cgmes.Profile instead # used to map the profile name to their abbreviations according to the CGMES standard short_package_name = { - "DiagramLayout": 'DL', + "DiagramLayout": "DL", "Dynamics": "DY", "Equipment": "EQ", "GeographicalLocation": "GL", "StateVariables": "SV", "SteadyStateHypothesis": "SSH", - "Topology": "TP" + "Topology": "TP", } diff --git a/cimpy/examples/addExternalNetworkInjection.py b/cimpy/examples/addExternalNetworkInjection.py index d5e12938..45fe8bf7 100644 --- a/cimpy/examples/addExternalNetworkInjection.py +++ b/cimpy/examples/addExternalNetworkInjection.py @@ -2,26 +2,28 @@ import cimpy from pathlib import Path -logging.basicConfig(filename='importCIGREMV.log', level=logging.INFO, filemode='w') +logging.basicConfig(filename="importCIGREMV.log", level=logging.INFO, filemode="w") example = Path(__file__).resolve().parent # called as cimpy.examples.addExternalNetworkInjection() or file run from quickstart directory? -if 'cimexamples.py' in str(__file__): - sample_folder = example / 'examples' / 'sampledata' / 'CIGRE_MV' +if "cimexamples.py" in str(__file__): + sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: - sample_folder = example / 'sampledata' / 'CIGRE_MV' + sample_folder = example / "sampledata" / "CIGRE_MV" -sample_files = sample_folder.glob('*.xml') +sample_files = sample_folder.glob("*.xml") xml_files = [] -for file in sample_folder.glob('*.xml'): +for file in sample_folder.glob("*.xml"): xml_files.append(str(file.absolute())) import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -import_result = cimpy.utils.add_external_network_injection(import_result, "cgmes_v2_4_15", "N1", 20.0) +import_result = cimpy.utils.add_external_network_injection( + import_result, "cgmes_v2_4_15", "N1", 20.0 +) -activeProfileList = ['DL', 'EQ', 'SV', 'TP'] +activeProfileList = ["DL", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, 'ExternalInjection', 'cgmes_v2_4_15', activeProfileList) +cimpy.cim_export(import_result, "ExternalInjection", "cgmes_v2_4_15", activeProfileList) diff --git a/cimpy/examples/convertToBusBranch.py b/cimpy/examples/convertToBusBranch.py index 46129fe1..e4eecf31 100644 --- a/cimpy/examples/convertToBusBranch.py +++ b/cimpy/examples/convertToBusBranch.py @@ -2,20 +2,24 @@ import cimpy from pathlib import Path -logging.basicConfig(filename='Convert_to_Bus_Branch.log', level=logging.INFO, filemode='w') +logging.basicConfig( + filename="Convert_to_Bus_Branch.log", level=logging.INFO, filemode="w" +) example = Path(__file__).resolve().parent # called as cimpy.examples.convertBusBranch() or file run from quickstart directory? -if 'cimexamples.py' in str(__file__): - sample_folder = example / 'examples' / 'sampledata' / 'Sample_Grid_Switches' / 'Node-Breaker' +if "cimexamples.py" in str(__file__): + sample_folder = ( + example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" + ) else: - sample_folder = example / 'sampledata' / 'Sample_Grid_Switches' / 'Node-Breaker' + sample_folder = example / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" -sample_files = sample_folder.glob('*.xml') +sample_files = sample_folder.glob("*.xml") xml_files = [] -for file in sample_folder.glob('*.xml'): +for file in sample_folder.glob("*.xml"): xml_files.append(str(file.absolute())) @@ -23,6 +27,8 @@ import_result = cimpy.utils.node_breaker_to_bus_branch(import_result) -activeProfileList = ['DL', 'EQ', 'TP'] +activeProfileList = ["DL", "EQ", "TP"] -cimpy.cim_export(import_result, 'Bus_Branch_Converted', 'cgmes_v2_4_15', activeProfileList) +cimpy.cim_export( + import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", activeProfileList +) diff --git a/cimpy/examples/exportCIGREMV.py b/cimpy/examples/exportCIGREMV.py index f3fbb0ca..777e4e1f 100644 --- a/cimpy/examples/exportCIGREMV.py +++ b/cimpy/examples/exportCIGREMV.py @@ -1,24 +1,27 @@ import logging from pathlib import Path import cimpy -logging.basicConfig(filename='exportCIGREMV.log', level=logging.INFO, filemode='w') + +logging.basicConfig(filename="exportCIGREMV.log", level=logging.INFO, filemode="w") example = Path(__file__).resolve().parent # called as cimpy.examples.import_example() or file run from quickstart directory? -if 'cimexamples.py' in str(__file__): - sample_folder = example / 'examples' / 'sampledata' / 'CIGRE_MV' +if "cimexamples.py" in str(__file__): + sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: - sample_folder = example / 'sampledata' / 'CIGRE_MV' + sample_folder = example / "sampledata" / "CIGRE_MV" -sample_files = sample_folder.glob('*.xml') +sample_files = sample_folder.glob("*.xml") xml_files = [] -for file in sample_folder.glob('*.xml'): +for file in sample_folder.glob("*.xml"): xml_files.append(str(file.absolute())) import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -activeProfileList = ['DL', 'EQ', 'SV', 'TP'] +activeProfileList = ["DL", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, 'CIGREMV_reference_cgmes_v2_4_15', 'cgmes_v2_4_15', activeProfileList) +cimpy.cim_export( + import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", activeProfileList +) diff --git a/cimpy/examples/importCIGREMV.py b/cimpy/examples/importCIGREMV.py index 03f2e6a9..2898dfaa 100644 --- a/cimpy/examples/importCIGREMV.py +++ b/cimpy/examples/importCIGREMV.py @@ -2,25 +2,25 @@ import cimpy from pathlib import Path -logging.basicConfig(filename='importCIGREMV.log', level=logging.INFO, filemode='w') +logging.basicConfig(filename="importCIGREMV.log", level=logging.INFO, filemode="w") example = Path(__file__).resolve().parent # called as cimpy.examples.import_example() or file run from quickstart directory? -if 'cimexamples.py' in str(__file__): - sample_folder = example / 'examples' / 'sampledata' / 'CIGRE_MV' +if "cimexamples.py" in str(__file__): + sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: - sample_folder = example / 'sampledata' / 'CIGRE_MV' + sample_folder = example / "sampledata" / "CIGRE_MV" print(sample_folder) -sample_files = sample_folder.glob('*.xml') +sample_files = sample_folder.glob("*.xml") print(sample_files) xml_files = [] -for file in sample_folder.glob('*.xml'): +for file in sample_folder.glob("*.xml"): xml_files.append(str(file.absolute())) import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") print("\n\n") results = ["ACLineSegment", "PowerTransformer", "EnergyConsumer"] -for key, value in import_result['topology'].items(): +for key, value in import_result["topology"].items(): if value.__class__.__name__ in results: print(value.__str__()) diff --git a/cimpy/utils.py b/cimpy/utils.py index e9cfea3b..38cfb82e 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -1,9 +1,9 @@ import importlib + def node_breaker_to_bus_branch(import_result): - """TODO: Add documentation - """ - res = import_result['topology'] + """TODO: Add documentation""" + res = import_result["topology"] breaker_list = [] terminals_list = [] operational_limit_set_list = [] @@ -25,7 +25,7 @@ def node_breaker_to_bus_branch(import_result): diagram_objects_list.append(mRID) elif class_name == "DiagramObjectPoint": diagram_object_points_list.append(mRID) - elif class_name == 'ConnectivityNode': + elif class_name == "ConnectivityNode": connect_nodes.append(mRID) # search for open breakers @@ -61,10 +61,14 @@ def node_breaker_to_bus_branch(import_result): keep_diagram = [] if res[diagram_object].IdentifiedObject is None: continue - if 'ConnectivityNode' in str(type(res[diagram_object].IdentifiedObject)): + if "ConnectivityNode" in str(type(res[diagram_object].IdentifiedObject)): if res[diagram_object].IdentifiedObject.TopologicalNode is not None: - keep_diagram.append(res[diagram_object].IdentifiedObject.TopologicalNode) - elif res[diagram_object].IdentifiedObject.mRID in (open_breakers + del_terminals_list): + keep_diagram.append( + res[diagram_object].IdentifiedObject.TopologicalNode + ) + elif res[diagram_object].IdentifiedObject.mRID in ( + open_breakers + del_terminals_list + ): del_diagram_object.append(diagram_object) del_diagram_object_points = [] @@ -74,65 +78,83 @@ def node_breaker_to_bus_branch(import_result): if res[diagram_point].DiagramObject.mRID in del_diagram_object: del_diagram_object_points.append(diagram_point) - del_list = open_breakers + del_diagram_object_points + del_diagram_object + del_voltage_limit + \ - del_operationallimitset + del_terminals_list + connect_nodes + del_list = ( + open_breakers + + del_diagram_object_points + + del_diagram_object + + del_voltage_limit + + del_operationallimitset + + del_terminals_list + + connect_nodes + ) for key in del_list: del res[key] - import_result['topology'] = res + import_result["topology"] = res return import_result def add_external_network_injection(import_result, version, mRID, voltage_set_point): - """TODO: Add documentation - """ - res = import_result['topology'] - TopologicalNode = '' + """TODO: Add documentation""" + res = import_result["topology"] + TopologicalNode = "" if mRID in res: - if 'TopologicalNode' in str(type(res[mRID])): + if "TopologicalNode" in str(type(res[mRID])): TopologicalNode = res[mRID] - elif 'ConnectivityNode' in str(type(res[mRID])): + elif "ConnectivityNode" in str(type(res[mRID])): TopologicalNode = res[mRID].TopologicalNode.mRID - if TopologicalNode != '': + if TopologicalNode != "": i = 1 - while 'Injection ' + str(i) in res.keys(): + while "Injection " + str(i) in res.keys(): i += 1 - inj_name = 'Injection ' + str(i) - reg_name = 'Regulating Control ' + str(i) - terminal_name = 'Terminal Injection ' + str(i) + inj_name = "Injection " + str(i) + reg_name = "Regulating Control " + str(i) + terminal_name = "Terminal Injection " + str(i) - #module_name = "cimpy." + version + ".Equipment." + # module_name = "cimpy." + version + ".Equipment." module_name = "cimpy." + version + "." - - terminal_module = importlib.import_module((module_name + 'Terminal')) - terminal_class = getattr(terminal_module, 'Terminal') - res[terminal_name] = terminal_class(mRID=terminal_name, - name=terminal_name, - TopologicalNode=TopologicalNode) - - regulating_control_module = importlib.import_module(module_name + 'RegulatingControl') - regulating_control_class = getattr(regulating_control_module, 'RegulatingControl') - res[reg_name] = regulating_control_class(mRID=reg_name, - name=reg_name, - targetValue=voltage_set_point, - Terminal=res[terminal_name]) - - network_injection_module = importlib.import_module(module_name + 'ExternalNetworkInjection') - network_injection_class = getattr(network_injection_module, 'ExternalNetworkInjection') - res[inj_name] = network_injection_class(mRID=inj_name, - name=inj_name, - RegulatingControl=res[reg_name], - Terminals=[res[terminal_name]]) + + terminal_module = importlib.import_module((module_name + "Terminal")) + terminal_class = getattr(terminal_module, "Terminal") + res[terminal_name] = terminal_class( + mRID=terminal_name, name=terminal_name, TopologicalNode=TopologicalNode + ) + + regulating_control_module = importlib.import_module( + module_name + "RegulatingControl" + ) + regulating_control_class = getattr( + regulating_control_module, "RegulatingControl" + ) + res[reg_name] = regulating_control_class( + mRID=reg_name, + name=reg_name, + targetValue=voltage_set_point, + Terminal=res[terminal_name], + ) + + network_injection_module = importlib.import_module( + module_name + "ExternalNetworkInjection" + ) + network_injection_class = getattr( + network_injection_module, "ExternalNetworkInjection" + ) + res[inj_name] = network_injection_class( + mRID=inj_name, + name=inj_name, + RegulatingControl=res[reg_name], + Terminals=[res[terminal_name]], + ) res[reg_name].RegulatingCondEq = res[inj_name] res[terminal_name].ConductingEquipment = res[inj_name] res[terminal_name].RegulatingControl = res[reg_name] else: - print('No Terminal with mRID ', mRID, ' found in object list!') + print("No Terminal with mRID ", mRID, " found in object list!") - import_result['topology'] = res + import_result["topology"] = res return import_result diff --git a/documentation/conf.py b/documentation/conf.py index 6fa2a30b..6b4c9671 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -12,14 +12,15 @@ # import os import sys -sys.path.insert(0, os.path.abspath('../')) + +sys.path.insert(0, os.path.abspath("../")) # -- Project information ----------------------------------------------------- -project = 'cimpy' -copyright = '2019, ACS RWTH Aachen University' -author = 'Author' +project = "cimpy" +copyright = "2019, ACS RWTH Aachen University" +author = "Author" # -- General configuration --------------------------------------------------- @@ -28,33 +29,32 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.viewcode', - 'sphinx.ext.todo', - 'sphinx_rtd_theme', - 'sphinx.ext.inheritance_diagram', - 'sphinx.ext.graphviz' - + "sphinx.ext.autodoc", + "sphinx.ext.viewcode", + "sphinx.ext.todo", + "sphinx_rtd_theme", + "sphinx.ext.inheritance_diagram", + "sphinx.ext.graphviz", ] -modindex_common_prefix = ['cimpy.'] +modindex_common_prefix = ["cimpy."] inheritance_graph_attrs = dict(rankdir="TB", size='""') # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = 'en' +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] # -- Options for HTML output ------------------------------------------------- @@ -62,12 +62,12 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] # -- Extension configuration ------------------------------------------------- diff --git a/documentation/set_inheritance_diagram.py b/documentation/set_inheritance_diagram.py index a17aa35e..dd4d8be5 100644 --- a/documentation/set_inheritance_diagram.py +++ b/documentation/set_inheritance_diagram.py @@ -3,7 +3,7 @@ from tempfile import mkstemp from shutil import move, copy -directory = os.path.abspath(os.path.join('..', 'documentation')) +directory = os.path.abspath(os.path.join("..", "documentation")) # if 'conf.py' in os.listdir(directory): # conf_file = os.path.abspath(os.path.join(directory, 'conf.py')) @@ -23,21 +23,21 @@ file_path = os.path.abspath(file) fh, abs_path = mkstemp() found_inheritance = False - with open(fh, 'w') as new_file: + with open(fh, "w") as new_file: with open(os.path.join(directory, file)) as old_file: for line in old_file: - if 'undoc-members' in line: + if "undoc-members" in line: continue else: - if 'automodule' in line: - name = line.split('::')[1] - if 'show-inheritance' in line: - new_file.write('\nInheritance Diagram:\n') + if "automodule" in line: + name = line.split("::")[1] + if "show-inheritance" in line: + new_file.write("\nInheritance Diagram:\n") new_file.write('""""""""""""""""""""\n') - new_file.write('.. inheritance-diagram:: ' + name) - new_file.write(' :parts: 1\n') - new_file.write('') - new_file.write('') + new_file.write(".. inheritance-diagram:: " + name) + new_file.write(" :parts: 1\n") + new_file.write("") + new_file.write("") found_inheritance = True else: new_file.write(line) @@ -45,4 +45,3 @@ if found_inheritance: remove(os.path.join(directory, file)) move(abs_path, os.path.join(directory, file)) - diff --git a/setup.py b/setup.py index 8ff4a9da..4ac7ea4e 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,16 @@ import setuptools setuptools.setup( - name = 'cimpy', - version = '1.0.2', - description = 'Python package for import, modification and export of CIM grid data', - author = 'Institute for Automation of Complex Power Systems', - include_package_data=True, - license = 'MPL-2.0', - packages = setuptools.find_packages(), - install_requires = [ - 'lxml', - 'xmltodict', - 'chevron', - ] + name="cimpy", + version="1.0.2", + description="Python package for import, modification and export of CIM grid data", + author="Institute for Automation of Complex Power Systems", + include_package_data=True, + license="MPL-2.0", + packages=setuptools.find_packages(), + install_requires=[ + "lxml", + "xmltodict", + "chevron", + ], ) diff --git a/tests/create_pickle_dump.py b/tests/create_pickle_dump.py index f08c97a5..04253735 100644 --- a/tests/create_pickle_dump.py +++ b/tests/create_pickle_dump.py @@ -1,25 +1,29 @@ - import pickle import sys + sys.path.append("/home/richard/cimpy") from pathlib import Path import cimpy -tests = Path('.').resolve().parent -example_path = tests / 'examples' / 'sampledata' / 'CIGRE_MV' +tests = Path(".").resolve().parent +example_path = tests / "examples" / "sampledata" / "CIGRE_MV" + def create_pickle(): test_files = [] - for file in example_path.glob('*.xml'): + for file in example_path.glob("*.xml"): print("file: ", file) test_files.append(str(file.absolute())) - imported_result = cimpy.cim_import(test_files, 'cgmes_v2_4_15') + imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") + + CGMES_object = cimpy.cimexport._get_class_attributes_with_references( + imported_result, "cgmes_v2_4_15" + ) - CGMES_object = cimpy.cimexport._get_class_attributes_with_references(imported_result, 'cgmes_v2_4_15') + pickle.dump(CGMES_object, open("CIGREMV_import_reference_cgmes_v2_4_15.p1", "wb")) - pickle.dump( CGMES_object, open( 'CIGREMV_import_reference_cgmes_v2_4_15.p1', "wb" ) ) create_pickle() diff --git a/tests/test_export.py b/tests/test_export.py index bc21939b..b3485fab 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -8,38 +8,39 @@ from pathlib import Path import pytest -logging.basicConfig(filename='Test_export_with_exported_files.log', - level=logging.INFO, filemode='w') +logging.basicConfig( + filename="Test_export_with_exported_files.log", level=logging.INFO, filemode="w" +) @pytest.fixture def sample_cimdata(): - """ Import the sampledata using cimpy - """ - example_dir = Path(os.path.join(os.path.dirname( - __file__), '../cimpy/examples/sampledata/CIGRE_MV')).resolve() + """Import the sampledata using cimpy""" + example_dir = Path( + os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV") + ).resolve() import_files = [] - for file in example_dir.glob('*.xml'): + for file in example_dir.glob("*.xml"): import_files.append(str(file.absolute())) - return cimpy.cim_import(import_files, 'cgmes_v2_4_15') + return cimpy.cim_import(import_files, "cgmes_v2_4_15") def read_ref_xml(): - """ Read the reference xmls into a dict - """ + """Read the reference xmls into a dict""" test_list = [] test_dir = Path(os.path.dirname(__file__)).resolve() - for file in test_dir.glob('CIGREMV_reference*.xml'): - xmlstring = open(file, encoding='utf8').read() + for file in test_dir.glob("CIGREMV_reference*.xml"): + xmlstring = open(file, encoding="utf8").read() parsed_export_file = xmltodict.parse( - xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict) - test_list.append(parsed_export_file['rdf:RDF']) + xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict + ) + test_list.append(parsed_export_file["rdf:RDF"]) test_dict = {} for elem in test_list: - profile = elem['md:FullModel']['md:Model.profile'] + profile = elem["md:FullModel"]["md:Model.profile"] for key in short_profile_name.keys(): if key in profile: test_dict[key] = elem @@ -51,29 +52,32 @@ def read_exported_xml(directory): test_dir = Path(directory).resolve() - for file in test_dir.glob('*EXPORTED*.xml'): - xmlstring = open(file, encoding='utf8').read() + for file in test_dir.glob("*EXPORTED*.xml"): + xmlstring = open(file, encoding="utf8").read() parsed_export_file = xmltodict.parse( - xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict) - export_list.append(parsed_export_file['rdf:RDF']) + xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict + ) + export_list.append(parsed_export_file["rdf:RDF"]) export_dict = {} for export_file in export_list: - profile = export_file['md:FullModel']['md:Model.profile'] + profile = export_file["md:FullModel"]["md:Model.profile"] for key in short_profile_name.keys(): if key in profile: export_dict[key] = export_file return export_dict + # This test tests the export functionality of this package by first importing the CIGRE_MV_Rudion_With_LoadFlow_Results # example and exporting them. The exported files are compared with previously exported files which were checked manually def test_export_with_exported_files(sample_cimdata, tmpdir): - activeProfileList = ['DL', 'EQ', 'SV', 'TP'] + activeProfileList = ["DL", "EQ", "SV", "TP"] - cimpy.cim_export(sample_cimdata, tmpdir + '/EXPORTED_Test', - 'cgmes_v2_4_15', activeProfileList) + cimpy.cim_export( + sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList + ) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -83,7 +87,7 @@ def test_export_with_exported_files(sample_cimdata, tmpdir): if profile in export_dict.keys(): current_export_dict = export_dict[profile] for class_key in current_test_dict: - if 'cim:' not in class_key: + if "cim:" not in class_key: continue check.is_in(class_key, current_export_dict.keys()) if class_key in current_export_dict.keys(): @@ -97,10 +101,11 @@ def test_export_with_exported_files(sample_cimdata, tmpdir): def test_export_with_imported_files(sample_cimdata, tmpdir): - activeProfileList = ['DL', 'EQ', 'SSH', 'SV', 'TP'] + activeProfileList = ["DL", "EQ", "SSH", "SV", "TP"] - cimpy.cim_export(sample_cimdata, tmpdir + '/EXPORTED_Test', - 'cgmes_v2_4_15', activeProfileList) + cimpy.cim_export( + sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList + ) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -110,7 +115,7 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): if profile in export_dict.keys(): current_export_dict = export_dict[profile] for class_key in current_test_dict: - if 'cim:' not in class_key or class_key in ['cim:NameType', 'cim:Name']: + if "cim:" not in class_key or class_key in ["cim:NameType", "cim:Name"]: continue check.is_in(class_key, current_export_dict.keys()) if class_key in current_export_dict.keys(): @@ -121,61 +126,58 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): if isinstance(current_test_class, list): for obj in current_test_class: try: - test_mRIDs.append(obj['$rdf:ID']) - test_class_dict[obj['$rdf:ID']] = obj + test_mRIDs.append(obj["$rdf:ID"]) + test_class_dict[obj["$rdf:ID"]] = obj except KeyError: try: - test_mRIDs.append(obj['$rdf:about']) - test_class_dict[obj['$rdf:about']] = obj + test_mRIDs.append(obj["$rdf:about"]) + test_class_dict[obj["$rdf:about"]] = obj except KeyError: - check.is_in('$rdf:about', obj.keys()) - check.is_in('$rdf:ID', obj.keys()) + check.is_in("$rdf:about", obj.keys()) + check.is_in("$rdf:ID", obj.keys()) else: try: - test_mRIDs.append(current_test_class['$rdf:ID']) - test_class_dict[current_test_class['$rdf:ID'] - ] = current_test_class + test_mRIDs.append(current_test_class["$rdf:ID"]) + test_class_dict[ + current_test_class["$rdf:ID"] + ] = current_test_class except KeyError: try: - test_mRIDs.append( - current_test_class['$rdf:about']) - test_class_dict[current_test_class['$rdf:about']] = obj + test_mRIDs.append(current_test_class["$rdf:about"]) + test_class_dict[current_test_class["$rdf:about"]] = obj except KeyError: - check.is_in( - '$rdf:about', current_test_class.keys()) - check.is_in( - '$rdf:ID', current_test_class.keys()) + check.is_in("$rdf:about", current_test_class.keys()) + check.is_in("$rdf:ID", current_test_class.keys()) export_mRIDs = [] export_class_dict = {} if isinstance(current_export_class, list): for obj in current_export_class: try: - export_mRIDs.append(obj['$rdf:ID']) - export_class_dict[obj['$rdf:ID']] = obj + export_mRIDs.append(obj["$rdf:ID"]) + export_class_dict[obj["$rdf:ID"]] = obj except KeyError: try: - export_mRIDs.append(obj['$rdf:about']) - export_class_dict[obj['$rdf:about']] = obj + export_mRIDs.append(obj["$rdf:about"]) + export_class_dict[obj["$rdf:about"]] = obj except KeyError: - check.is_in('$rdf:about', obj.keys()) - check.is_in('$rdf:ID', obj.keys()) + check.is_in("$rdf:about", obj.keys()) + check.is_in("$rdf:ID", obj.keys()) else: try: - export_mRIDs.append( - current_export_class['$rdf:ID']) - export_class_dict[current_export_class['$rdf:ID'] - ] = current_export_class + export_mRIDs.append(current_export_class["$rdf:ID"]) + export_class_dict[ + current_export_class["$rdf:ID"] + ] = current_export_class except KeyError: try: - export_mRIDs.append( - current_export_class['$rdf:about']) - export_class_dict[current_export_class['$rdf:about']] = obj + export_mRIDs.append(current_export_class["$rdf:about"]) + export_class_dict[ + current_export_class["$rdf:about"] + ] = obj except KeyError: - check.is_in( - '$rdf:about', current_export_class.keys()) - check.is_in( - '$rdf:ID', current_export_class.keys()) + check.is_in("$rdf:about", current_export_class.keys()) + check.is_in("$rdf:ID", current_export_class.keys()) for mRID in test_mRIDs: check.is_in(mRID, export_mRIDs) @@ -183,31 +185,44 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): test_attr = test_class_dict[mRID].items() export_attr = export_class_dict[mRID].items() for item in test_attr: - if item[0] in ['cim:NameType', 'cim:ExternalNetworkInjection.referencePriority', - 'cim:Terminal.connected']: + if item[0] in [ + "cim:NameType", + "cim:ExternalNetworkInjection.referencePriority", + "cim:Terminal.connected", + ]: continue - elif item[0] == 'cim:Terminal.sequenceNumber': - test_item = 'cim:ACDCTerminal.sequenceNumber' + elif item[0] == "cim:Terminal.sequenceNumber": + test_item = "cim:ACDCTerminal.sequenceNumber" else: test_item = item[0] - if item[1] in ['0', '0e+000', '0.0', '', 'false', 'None', 'list', - {'$rdf:resource': '#_32d6d32e-c3f0-43d4-8103-079a15594fc6'}]: + if item[1] in [ + "0", + "0e+000", + "0.0", + "", + "false", + "None", + "list", + { + "$rdf:resource": "#_32d6d32e-c3f0-43d4-8103-079a15594fc6" + }, + ]: continue - if isinstance(item[1], dict) or isinstance(item[1], list): + if isinstance(item[1], dict) or isinstance( + item[1], list + ): test_item = item - elif len(item[1].split('.')) > 1: + elif len(item[1].split(".")) > 1: try: - test_item = ( - item[0], str(float(item[1]))) + test_item = (item[0], str(float(item[1]))) except ValueError: continue except TypeError: pass - elif item[1] == 'true': - test_item = (test_item, 'True') + elif item[1] == "true": + test_item = (test_item, "True") else: test_item = (test_item, item[1]) check.is_in(test_item, export_attr) - diff --git a/tests/test_import.py b/tests/test_import.py index 69dff221..af36bbad 100644 --- a/tests/test_import.py +++ b/tests/test_import.py @@ -7,30 +7,33 @@ import pickle from pathlib import Path -logging.basicConfig(filename='Test_import.log', - level=logging.INFO, filemode='w') +logging.basicConfig(filename="Test_import.log", level=logging.INFO, filemode="w") -example_dir = Path(os.path.join(os.path.dirname(__file__), - '../cimpy/examples/sampledata/CIGRE_MV')).resolve() +example_dir = Path( + os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV") +).resolve() def test_import(): - """ This function tests the import functionality by importing files and comparing them to previously imported and pickled files. - """ + """This function tests the import functionality by importing files and comparing them to previously imported and pickled files.""" global example_dir test_files = [] - for file in example_dir.glob('*.xml'): + for file in example_dir.glob("*.xml"): test_files.append(str(file.absolute())) - imported_result = cimpy.cim_import(test_files, 'cgmes_v2_4_15') + imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") import_resolved = cimpy.cimexport._get_class_attributes_with_references( - imported_result, 'cgmes_v2_4_15') - - ref_dict_path = Path(os.path.join(os.path.dirname( - __file__), 'CIGREMV_import_reference_cgmes_v2_4_15.p')) - check_dict_pickle = pickle.load(open(ref_dict_path, 'rb')) + imported_result, "cgmes_v2_4_15" + ) + + ref_dict_path = Path( + os.path.join( + os.path.dirname(__file__), "CIGREMV_import_reference_cgmes_v2_4_15.p" + ) + ) + check_dict_pickle = pickle.load(open(ref_dict_path, "rb")) for elem in import_resolved: check.is_in(elem, check_dict_pickle) From 807b1b6e209a414f0470ec578f8649dd1e8b6702 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:35:28 +0200 Subject: [PATCH 02/23] Add simple pre-commit config Signed-off-by: Steffen Vogel --- .pre-commit-config.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .pre-commit-config.yaml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..baa0e516 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,19 @@ +exclude: ^cimpy/cgmes_ + +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v2.3.0 + hooks: + - id: check-yaml + - id: end-of-file-fixer + - id: trailing-whitespace + + - repo: https://github.com/psf/black + rev: 22.10.0 + hooks: + - id: black + + - repo: https://github.com/PyCQA/flake8 + rev: 7.1.0 + hooks: + - id: flake8 From 2c35fc95db59665763fe78b699037e16c2411c87 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:37:12 +0200 Subject: [PATCH 03/23] Add GitHub actions workflow for running pre-commit Signed-off-by: Steffen Vogel --- .github/workflows/pre-commit.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pre-commit.yaml diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml new file mode 100644 index 00000000..d5b273ed --- /dev/null +++ b/.github/workflows/pre-commit.yaml @@ -0,0 +1,14 @@ +name: pre-commit + +on: + pull_request: + push: + branches: [main] + +jobs: + pre-commit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + - uses: pre-commit/action@v3.0.1 From d3784b6e362a1edae6ecb05496803ef54ca50626 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:39:54 +0200 Subject: [PATCH 04/23] Fix missing newline at end-of-file Signed-off-by: Steffen Vogel --- MANIFEST.in | 2 +- .../Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml | 2 +- .../Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml | 2 +- .../Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml | 2 +- .../Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml | 2 +- .../Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml | 2 +- .../Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml | 2 +- .../sampledata/Sample_Grid_Switches/Bus-Branch/README.md | 2 +- .../Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml | 2 +- .../Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml | 2 +- .../Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml | 2 +- .../Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml | 2 +- .../Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml | 2 +- .../Node-Breaker/20191030T0924Z_YYY_EQ_.xml | 2 +- .../sampledata/Sample_Grid_Switches/Node-Breaker/README.md | 2 +- cimpy/export_template.mustache | 2 +- documentation/CIMpy.svg | 2 +- documentation/cimpy.cgmes_v2_4_15.rst | 2 +- documentation/conf.py | 2 +- tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml | 2 +- tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml | 2 +- tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml | 2 +- tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 2af219ee..ba74de8f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ recursive-include cimpy/examples *.xml *.py -recursive-include cimpy *.mustache \ No newline at end of file +recursive-include cimpy *.mustache diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml index f455cf81..1e2a6b14 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml @@ -485,4 +485,4 @@ 223.125 74.375 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml index 4421a304..e09f967c 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml @@ -12,4 +12,4 @@ urn:ogc:def:crs:EPSG::4326 WGS-84 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml index 029f2085..c64f7582 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml @@ -107,4 +107,4 @@ false - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml index 884d77b6..5490d836 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml @@ -9,4 +9,4 @@ http://entsoe.eu/CIM/StateVariables/4/1 2019-10-30T09:24:51Z - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml index f0cf3fa1..e8e83ee1 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml @@ -152,4 +152,4 @@ - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml index bd7e8880..4ed36cc8 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml @@ -573,4 +573,4 @@ 1. Line3 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md index f593deed..56d012a5 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md @@ -1,2 +1,2 @@ Export information: -- Tool: PowerFactory \ No newline at end of file +- Tool: PowerFactory diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml index 4b955a56..801da0ae 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml @@ -737,4 +737,4 @@ 83.125 74.375 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml index 5af55ac4..2aace45c 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml @@ -12,4 +12,4 @@ urn:ogc:def:crs:EPSG::4326 WGS-84 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml index 953b8cdd..59cccf42 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml @@ -152,4 +152,4 @@ false - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml index 146feb6e..35c7d788 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml @@ -9,4 +9,4 @@ http://entsoe.eu/CIM/StateVariables/4/1 2019-10-30T09:24:51Z - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml index 0d02d449..d4abe1a5 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml @@ -266,4 +266,4 @@ Bus5 - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml index bb88e0d2..273a1d62 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml @@ -742,4 +742,4 @@ 110.00 kV 110.00 kV - \ No newline at end of file + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md index 91fb7531..735b2049 100644 --- a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md +++ b/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md @@ -1,3 +1,3 @@ Export information: - Tool: PowerFactory -- ConnectivityNodes moved into Topology file for cgmes-v2_4_15 compliance \ No newline at end of file +- ConnectivityNodes moved into Topology file for cgmes-v2_4_15 compliance diff --git a/cimpy/export_template.mustache b/cimpy/export_template.mustache index caa7cb9f..39d2e3c9 100644 --- a/cimpy/export_template.mustache +++ b/cimpy/export_template.mustache @@ -21,4 +21,4 @@ {{/attributes}} {{/about}} - \ No newline at end of file + diff --git a/documentation/CIMpy.svg b/documentation/CIMpy.svg index 2dadf6f1..e6395c41 100644 --- a/documentation/CIMpy.svg +++ b/documentation/CIMpy.svg @@ -1,3 +1,3 @@ -
Import
Import
Export
Export
cgmes v2.4.15
cgmes...

CIMpy

CIMpy
Cim Codebase Generator
Cim Codebase Generator
CIM XML/
RDF Files
CIM XML/...
CIM XML/
RDF Files
CIM XML/...
RDFS files
RDFS files
Python class files
Python class fil...
Utils
Utils
Python objects
Python o...
Viewer does not support full SVG 1.1
\ No newline at end of file +
Import
Import
Export
Export
cgmes v2.4.15
cgmes...

CIMpy

CIMpy
Cim Codebase Generator
Cim Codebase Generator
CIM XML/
RDF Files
CIM XML/...
CIM XML/
RDF Files
CIM XML/...
RDFS files
RDFS files
Python class files
Python class fil...
Utils
Utils
Python objects
Python o...
Viewer does not support full SVG 1.1
diff --git a/documentation/cimpy.cgmes_v2_4_15.rst b/documentation/cimpy.cgmes_v2_4_15.rst index b56a6a8a..d7faf838 100644 --- a/documentation/cimpy.cgmes_v2_4_15.rst +++ b/documentation/cimpy.cgmes_v2_4_15.rst @@ -5,4 +5,4 @@ cimpy.cgmes\_v2\_4\_15 package :maxdepth: 1 :glob: - cimpy.cgmes_v2_4_15.* \ No newline at end of file + cimpy.cgmes_v2_4_15.* diff --git a/documentation/conf.py b/documentation/conf.py index 6b4c9671..36c513cd 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -75,4 +75,4 @@ # -- Options for todo extension ---------------------------------------------- # If true, `todo` and `todoList` produce output, else they produce nothing. -todo_include_todos = True \ No newline at end of file +todo_include_todos = True diff --git a/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml b/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml index aa2e8897..325806ea 100644 --- a/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml +++ b/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml @@ -1050,4 +1050,4 @@ 152.8 225.0 - \ No newline at end of file + diff --git a/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml b/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml index 9714abe1..6b4a679f 100644 --- a/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml +++ b/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml @@ -1063,4 +1063,4 @@ - \ No newline at end of file + diff --git a/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml b/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml index 703dd239..fe2203b6 100644 --- a/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml +++ b/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml @@ -268,4 +268,4 @@ - \ No newline at end of file + diff --git a/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml b/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml index 89bc7556..95d1d759 100644 --- a/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml +++ b/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml @@ -332,4 +332,4 @@ - \ No newline at end of file + From 360746e6ea89307ef0aa536ec0884bb8bfbd047e Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:40:57 +0200 Subject: [PATCH 05/23] Remove trailing whitespaces Signed-off-by: Steffen Vogel --- .github/workflows/pytest.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 07c54eb6..8f26e687 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -2,7 +2,7 @@ name: Pytest on: push jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-latest steps: - name: checkout repo content uses: actions/checkout@v3 # checkout the repository content to github runner. @@ -12,27 +12,27 @@ jobs: python-version: 3.8 - name: Install graphviz run: sudo apt install graphviz - shell: bash + shell: bash - name: Install dependencies run: | sudo pip3 install --upgrade pip sudo pip3 install sphinx_rtd_theme sudo pip3 install sphinx sudo pip3 install pytest - sudo pip3 install pytest-check + sudo pip3 install pytest-check - name: Execute py script env: working-directory: ${{runner.workspace}}/cimpy - run: | - sudo python3 setup.py install + run: | + sudo python3 setup.py install - name: Pytest env: working-directory: ${{runner.workspace}}/cimpy run: | - sudo pytest -v -cov --junitxml=report.xml + sudo pytest -v -cov --junitxml=report.xml - name: Upload pytest test results uses: actions/upload-artifact@v3 with: name: pytest-results - path: ${{runner.workspace}}/cimpy/report.xml + path: ${{runner.workspace}}/cimpy/report.xml if: ${{ always() }} From c90cd2a1d6c1662e7d854989be7294ee1aec8f17 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 15:42:08 +0200 Subject: [PATCH 06/23] Cleanup .gitignore Signed-off-by: Steffen Vogel --- .gitignore | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index ff7a24b8..9b3c8620 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,14 @@ -# python folders +# Python folders *.egg-info/ __pycache__ .idea +.venv ./cimpy/__pycache__ *.egg build/ dist/ -# log files *.log -# vs code +# VSCode .vscode/* - -# documentation -# documentation/ From aecadd01176f13ccccc11e2e430366e512df0281 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:05:36 +0200 Subject: [PATCH 07/23] Fix warnings and formatting from black and flake8 Signed-off-by: Steffen Vogel --- .flake8 | 2 + cimpy/__init__.py | 2 + cimpy/cimexport.py | 120 ++++++----------- cimpy/cimimport.py | 122 ++++++------------ cimpy/examples/addExternalNetworkInjection.py | 4 +- cimpy/examples/convertToBusBranch.py | 12 +- cimpy/examples/exportCIGREMV.py | 4 +- cimpy/utils.py | 28 +--- documentation/set_inheritance_diagram.py | 2 +- pyproject.toml | 2 + tests/create_pickle_dump.py | 7 +- tests/test_export.py | 45 ++----- tests/test_import.py | 19 +-- 13 files changed, 112 insertions(+), 257 deletions(-) create mode 100644 .flake8 create mode 100644 pyproject.toml diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000..77cb4bcb --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120 diff --git a/cimpy/__init__.py b/cimpy/__init__.py index 15a9ab7f..bfaddfee 100644 --- a/cimpy/__init__.py +++ b/cimpy/__init__.py @@ -1,3 +1,5 @@ +# flake8: noqa + from cimpy.cimexport import cim_export from cimpy.cimimport import cim_import import cimpy.utils diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index 35463b78..14d0c761 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -8,10 +8,11 @@ import sys from cimpy.cgmes_v2_4_15.Base import Base -cgmesProfile = Base.cgmesProfile from pathlib import Path import copy +cgmesProfile = Base.cgmesProfile + logger = logging.getLogger(__name__) @@ -28,9 +29,7 @@ def _get_class_attributes_with_references(import_result, version): attributes_dict = _get_attributes(topology[key]) # change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have # mRID as an attribute. Therefore the corresponding class has to be searched in the res dictionary - class_dict["attributes"] = _get_reference_uuid( - attributes_dict, version, topology, key, urls - ) + class_dict["attributes"] = _get_reference_uuid(attributes_dict, version, topology, key, urls) class_attributes_list.append(class_dict) del class_dict @@ -70,11 +69,7 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): array.append(UUID) else: - logger.warning( - "Reference object not subclass of Base class for object with UUID {}.".format( - mRID - ) - ) + logger.warning("Reference object not subclass of Base class for object with UUID {}.".format(mRID)) if len(array) == 1: attributes["value"] = array[0] else: @@ -101,9 +96,7 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): if key.split(".")[1] in urls.keys(): # value in urls dict? should always be true if attr_dict[key] in urls[key.split(".")[1]].keys(): - attributes["value"] = ( - "%URL%" + urls[key.split(".")[1]][attr_dict[key]] - ) + attributes["value"] = "%URL%" + urls[key.split(".")[1]][attr_dict[key]] else: logger.warning( "URL reference for attribute {} and value {} not found!".format( @@ -119,9 +112,7 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): for reference_item in attributes["value"]: # ignore default values if reference_item not in ["", None, 0.0, 0]: - reference_list.append( - {"value": reference_item, "attr_name": key} - ) + reference_list.append({"value": reference_item, "attr_name": key}) # ignore default values elif attributes["value"] not in ["", None, 0.0, 0, "list"]: reference_list.append(attributes) @@ -194,13 +185,10 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): about_dict = {} # store serializationProfile and possibleProfileList - # serializationProfile class attribute, same for multiple instances of same class, only last origin of variable stored - serializationProfile = copy.deepcopy( - klass["attributes"][0]["serializationProfile"] - ) - possibleProfileList = copy.deepcopy( - klass["attributes"][1]["possibleProfileList"] - ) + # serializationProfile class attribute, same for multiple instances + # of same class, only last origin of variable stored + serializationProfile = copy.deepcopy(klass["attributes"][0]["serializationProfile"]) + possibleProfileList = copy.deepcopy(klass["attributes"][1]["possibleProfileList"]) class_serializationProfile = "" @@ -208,10 +196,7 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): # class was imported if Profile[serializationProfile["class"]] in activeProfileList: # else: class origin profile not active for export, get active profile from possibleProfileList - if ( - Profile[serializationProfile["class"]].value - in possibleProfileList[klass["name"]]["class"] - ): + if Profile[serializationProfile["class"]].value in possibleProfileList[klass["name"]]["class"]: # profile active and in possibleProfileList # else: class should not have been imported from this profile, get allowed profile # from possibleProfileList @@ -225,9 +210,7 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): else: logger.info( "Class {} was read from profile {} but this profile is not active for the export. Use" - "default profile from possibleProfileList.".format( - klass["name"], serializationProfile["class"] - ) + "default profile from possibleProfileList.".format(klass["name"], serializationProfile["class"]) ) if class_serializationProfile == "": @@ -249,13 +232,9 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): ) continue else: - logger.warning( - "Class {} has no profile to export to.".format(klass["name"]) - ) + logger.warning("Class {} has no profile to export to.".format(klass["name"])) else: - logger.warning( - "Class {} has no profile to export to.".format(klass["name"]) - ) + logger.warning("Class {} has no profile to export to.".format(klass["name"])) # iterate over attributes for attribute in klass["attributes"]: @@ -271,35 +250,20 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): if attribute_name in serializationProfile.keys(): # attribute was imported - if ( - Profile[serializationProfile[attribute_name]] - in activeProfileList - ): + if Profile[serializationProfile[attribute_name]] in activeProfileList: attr_value = Profile[serializationProfile[attribute_name]].value - if ( - attr_value - in possibleProfileList[attribute_class][attribute_name] - ): - attribute_serializationProfile = serializationProfile[ - attribute_name - ] + if attr_value in possibleProfileList[attribute_class][attribute_name]: + attribute_serializationProfile = serializationProfile[attribute_name] if attribute_serializationProfile == "": # attribute was added if attribute_class in possibleProfileList.keys(): - if ( - attribute_name - in possibleProfileList[attribute_class].keys() - ): + if attribute_name in possibleProfileList[attribute_class].keys(): possibleProfileList[attribute_class][attribute_name].sort() - for attr_profile in possibleProfileList[attribute_class][ - attribute_name - ]: + for attr_profile in possibleProfileList[attribute_class][attribute_name]: if Profile(attr_profile) in activeProfileList: # active profile for class export found - attribute_serializationProfile = Profile( - attr_profile - ).name + attribute_serializationProfile = Profile(attr_profile).name break if attribute_serializationProfile == "": # no profile in possibleProfileList active, skip attribute @@ -336,15 +300,11 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): # add class with all attributes in the same profile to the export dict sorted by the profile if class_serializationProfile in export_dict.keys(): - export_class = dict( - name=klass["name"], mRID=klass["mRID"], attributes=same_package_list - ) + export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) export_dict[class_serializationProfile]["classes"].append(export_class) del export_class else: - export_class = dict( - name=klass["name"], mRID=klass["mRID"], attributes=same_package_list - ) + export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) export_dict[class_serializationProfile] = {"classes": [export_class]} # add class with all attributes defined in another profile to the about_key sorted by the profile @@ -376,12 +336,13 @@ def cim_export(import_result, file_name, version, activeProfileList): a reference to another class object or not. :param import_result: a dictionary containing the topology and meta information. The topology can be extracted via \ - :func:`~cimpy.cimimport.cim_import()`. The topology dictionary contains all objects accessible via their mRID. The meta \ - information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary with \ - the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ - between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ - 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are accessible \ - via the name of the attribute, e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ + :func:`~cimpy.cimimport.cim_import()`. The topology dictionary contains all objects accessible via their mRID. \ + The meta information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new \ + dictionary with the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. \ + 'urls' contains a mapping between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ + 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are \ + accessible via the name of the attribute, \ + e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ 'namespaces' is a dictionary containing all RDF namespaces used in the imported xml files. :param file_name: a string with the name of the xml files which will be created :param version: cgmes version, e.g. version = "cgmes_v2_4_15" @@ -400,9 +361,7 @@ def cim_export(import_result, file_name, version, activeProfileList): full_file_name = file_name + "_" + profile.long_name() + ".xml" if not os.path.exists(full_file_name): - output = generate_xml( - import_result, version, file_name, profile, profile_list - ) + output = generate_xml(import_result, version, file_name, profile, profile_list) with open(full_file_name, "w") as file: logger.info('Write file "%s"', full_file_name) @@ -428,7 +387,8 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): This function serializes cgmes classes with the template engine chevron and returns them as a string. - :param cim_data: a dictionary containing the topology and meta information. It can be created via :func:`~cimpy.cimimport.cim_import()` + :param cim_data: a dictionary containing the topology and meta information. It can be created via \ + :func:`~cimpy.cimimport.cim_import()` :param version: cgmes version, e.g. ``version="cgmes_v2_4_15"`` :param profile: The :class:`~cimpy.cgmes_v2_4_15.Base.Profile` for which the serialization should be generated. :param model_name: a string with the name of the model. @@ -441,9 +401,7 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): # determine class and attribute export profiles. The export dict contains all classes and their attributes where # the class definition and the attribute definitions are in the same profile. Every entry in about_dict generates # a rdf:about in another profile - export_dict, about_dict = _sort_classes_to_profile( - class_attributes_list, available_profiles - ) + export_dict, about_dict = _sort_classes_to_profile(class_attributes_list, available_profiles) namespaces_list = _create_namespaces_list(cim_data["meta_info"]["namespaces"]) @@ -481,9 +439,7 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): {"attr_name": "profile", "value": profile.long_name()}, ], } - template_path = Path( - os.path.join(os.path.dirname(__file__), "export_template.mustache") - ).resolve() + template_path = Path(os.path.join(os.path.dirname(__file__), "export_template.mustache")).resolve() with open(template_path) as f: output = chevron.render( f, @@ -514,9 +470,7 @@ def _get_attributes(class_object): class_type = type(parent) # dictionary containing all attributes with key: 'Class_Name.Attribute_Name' - attributes_dict = dict( - serializationProfile=class_object.serializationProfile, possibleProfileList={} - ) + attributes_dict = dict(serializationProfile=class_object.serializationProfile, possibleProfileList={}) # __dict__ of a subclass returns also the attributes of the parent classes # to avoid multiple attributes create list with all attributes already processed @@ -541,8 +495,6 @@ def _get_attributes(class_object): # the serializationProfile from parent classes is not needed because entries in the serializationProfile # are only generated for the inherited class if class_name != "Base": - attributes_dict["possibleProfileList"][ - class_name - ] = parent_class.possibleProfileList + attributes_dict["possibleProfileList"][class_name] = parent_class.possibleProfileList return attributes_dict diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 67b24b2a..7cd89f3f 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -2,8 +2,6 @@ from time import time import importlib import logging -import os -import cimpy logger = logging.getLogger(__name__) @@ -21,13 +19,14 @@ def cim_import(xml_files, cgmes_version, start_dict=None): :param start_dict: a list of classes which indicates which classes will be read e.g. elements=["BaseVoltage", "ACLineSegment"] * If start_dict=None the complete file will be read - :return: import_result: a dictionary containing the topology and meta information. The topology can be extracted via \ - import_result['topology']. The topology dictionary contains all objects accessible via their mRID. The meta \ - information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary with \ - the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ + :return: import_result: a dictionary containing the topology and meta information.The topology can be extracted \ + via import_result['topology']. The topology dictionary contains all objects accessible via their mRID. The meta \ + information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary \ + with the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ - 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are accessible \ - via the name of the attribute, e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ + 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are \ + accessible via the name of the attribute, \ + e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ 'namespaces' is a dictionary containing all RDF namespaces used in the imported xml files. """ @@ -41,9 +40,7 @@ def cim_import(xml_files, cgmes_version, start_dict=None): logger_grouped = dict(errors={}, info={}) # create a dict which will contain meta information and the topology - import_result = ( - start_dict if start_dict is not None else dict(meta_info={}, topology={}) - ) + import_result = start_dict if start_dict is not None else dict(meta_info={}, topology={}) # create sub-dictionaries import_result["meta_info"] = dict(namespaces=_get_namespaces(xml_files[0]), urls={}) @@ -61,9 +58,7 @@ def cim_import(xml_files, cgmes_version, start_dict=None): logger_grouped, ) - import_result, logger_grouped = _set_attributes( - import_result, xml_files, namespace_rdf, base, logger_grouped - ) + import_result, logger_grouped = _set_attributes(import_result, xml_files, namespace_rdf, base, logger_grouped) if logger_grouped["errors"]: for error, count in logger_grouped["errors"].items(): @@ -79,17 +74,9 @@ def cim_import(xml_files, cgmes_version, start_dict=None): print(logging_message) elapsed_time = time() - t0 - logger.info( - "Created totally {} CIM objects in {}s\n\n".format( - len(import_result["topology"]), elapsed_time - ) - ) + logger.info("Created totally {} CIM objects in {}s\n\n".format(len(import_result["topology"]), elapsed_time)) # print info of how many classes in total were instantiated to terminal - print( - "Created totally {} CIM objects in {}s".format( - len(import_result["topology"]), elapsed_time - ) - ) + print("Created totally {} CIM objects in {}s".format(len(import_result["topology"]), elapsed_time)) return import_result @@ -99,9 +86,7 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # are set in the _set_attributes function because some attributes might be stored in one package and the class in # another. Since after this function all classes are instantiated, there should be no problem in setting the attributes. # Also the information from which package file a class was read is stored in the serializationProfile dictionary. -def _instantiate_classes( - import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped -): +def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped): # extract topology from import_result topology = import_result["topology"] @@ -158,9 +143,7 @@ def _instantiate_classes( # Instantiate the class and map it to the uuid. # res[uuid] = klass(UUID=uuid) topology[uuid] = klass() - info_msg = "CIM object {} created".format( - module_name.split(".")[-1] - ) + info_msg = "CIM object {} created".format(module_name.split(".")[-1]) try: logger_grouped["info"][info_msg] += 1 except KeyError: @@ -172,13 +155,9 @@ def _instantiate_classes( topology[uuid].mRID = uuid if package != "": - topology[uuid].serializationProfile[ - "class" - ] = short_package_name[package] + topology[uuid].serializationProfile["class"] = short_package_name[package] else: - error_msg = "Package information not found for class {}".format( - klass.__class__.__name__ - ) + error_msg = "Package information not found for class {}".format(klass.__class__.__name__) try: logger_grouped["errors"][error_msg] += 1 except KeyError: @@ -245,9 +224,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe try: obj = topology[uuid] except KeyError: - error_msg = "Missing {} object with uuid: {}".format( - elem.tag[m:], uuid - ) + error_msg = "Missing {} object with uuid: {}".format(elem.tag[m:], uuid) try: logger_grouped["errors"][error_msg] += 1 except KeyError: @@ -285,9 +262,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Convert value type using the default value. try: typ = type(getattr(obj, attr)) - if isinstance( - getattr(obj, attr), bool - ): # if typ== + if isinstance(getattr(obj, attr), bool): # if typ== # The function bool("false") returns True, # because it is called upon non-empty string! # This means that it wrongly reads "false" value as boolean True. @@ -308,9 +283,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Use the '#' prefix to distinguish between references and enumerations. if uuid2[0] == "#": # reference try: - val = topology[ - uuid2[1:] - ] # remove '#' prefix + val = topology[uuid2[1:]] # remove '#' prefix except KeyError: error_msg = "Referenced {} [{}] object missing.".format( obj.__class__.__name__, uuid2[1:] @@ -338,8 +311,11 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe pass else: # note here - error_msg = "Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1".format( - obj.__class__.__name__, uuid, attr + error_msg = ( + "Multiplicity Error for class {} [{}], attribute {}. ".format( + obj.__class__.__name__, uuid, attr + ) + + "Multiplicity should be 1..1 or 0..1" ) try: logger_grouped["errors"][error_msg] += 1 @@ -347,21 +323,13 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe logger_grouped["errors"][error_msg] = 1 if hasattr(val, obj.__class__.__name__): - default1 = getattr( - val, obj.__class__.__name__ - ) + default1 = getattr(val, obj.__class__.__name__) if default1 is None: - setattr( - val, obj.__class__.__name__, obj - ) + setattr(val, obj.__class__.__name__, obj) elif default1 == "list": # many - setattr( - val, obj.__class__.__name__, [obj] - ) + setattr(val, obj.__class__.__name__, [obj]) elif isinstance(default1, list): # many - attribute2 = getattr( - val, obj.__class__.__name__ - ) + attribute2 = getattr(val, obj.__class__.__name__) if obj not in attribute2: attribute2.append(obj) setattr( @@ -372,44 +340,34 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe elif default1 == obj: pass else: - error_msg = "Multiplicity Error for class {} [{}], attribute {}. Multiplicity should be 1..1 or 0..1".format( - val.__class__.__name__, - uuid2[1:], - obj.__class__.__name__, + error_msg = ( + "Multiplicity Error for class {} [{}], attribute {}. ".format( + val.__class__.__name__, + uuid2[1:], + obj.__class__.__name__, + ) + + "Multiplicity should be 1..1 or 0..1" ) try: - logger_grouped["errors"][ - error_msg - ] += 1 + logger_grouped["errors"][error_msg] += 1 except KeyError: - logger_grouped["errors"][ - error_msg - ] = 1 + logger_grouped["errors"][error_msg] = 1 else: # enum # if http in uuid2 reference to URL, create mapping if "http" in uuid2: if attr in urls.keys(): - if ( - uuid2.rsplit(".", 1)[1] - not in urls[attr].keys() - ): - urls[attr][ - uuid2.rsplit(".", 1)[1] - ] = uuid2 + if uuid2.rsplit(".", 1)[1] not in urls[attr].keys(): + urls[attr][uuid2.rsplit(".", 1)[1]] = uuid2 else: - urls[attr] = { - uuid2.rsplit(".", 1)[1]: uuid2 - } + urls[attr] = {uuid2.rsplit(".", 1)[1]: uuid2} # url_reference_dict[uuid2.rsplit(".", 1)[1]] = uuid2 val = uuid2.rsplit(".", 1)[1] setattr(obj, attr, val) if package != "": - obj.serializationProfile[attr] = short_package_name[ - package - ] + obj.serializationProfile[attr] = short_package_name[package] else: error_msg = "Package information not found for class {}, attribute {}".format( obj.__class__.__name__, attr diff --git a/cimpy/examples/addExternalNetworkInjection.py b/cimpy/examples/addExternalNetworkInjection.py index 45fe8bf7..5402c892 100644 --- a/cimpy/examples/addExternalNetworkInjection.py +++ b/cimpy/examples/addExternalNetworkInjection.py @@ -20,9 +20,7 @@ import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -import_result = cimpy.utils.add_external_network_injection( - import_result, "cgmes_v2_4_15", "N1", 20.0 -) +import_result = cimpy.utils.add_external_network_injection(import_result, "cgmes_v2_4_15", "N1", 20.0) activeProfileList = ["DL", "EQ", "SV", "TP"] diff --git a/cimpy/examples/convertToBusBranch.py b/cimpy/examples/convertToBusBranch.py index e4eecf31..477a5bfe 100644 --- a/cimpy/examples/convertToBusBranch.py +++ b/cimpy/examples/convertToBusBranch.py @@ -2,17 +2,13 @@ import cimpy from pathlib import Path -logging.basicConfig( - filename="Convert_to_Bus_Branch.log", level=logging.INFO, filemode="w" -) +logging.basicConfig(filename="Convert_to_Bus_Branch.log", level=logging.INFO, filemode="w") example = Path(__file__).resolve().parent # called as cimpy.examples.convertBusBranch() or file run from quickstart directory? if "cimexamples.py" in str(__file__): - sample_folder = ( - example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" - ) + sample_folder = example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" else: sample_folder = example / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" @@ -29,6 +25,4 @@ activeProfileList = ["DL", "EQ", "TP"] -cimpy.cim_export( - import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", activeProfileList -) +cimpy.cim_export(import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", activeProfileList) diff --git a/cimpy/examples/exportCIGREMV.py b/cimpy/examples/exportCIGREMV.py index 777e4e1f..d2452b22 100644 --- a/cimpy/examples/exportCIGREMV.py +++ b/cimpy/examples/exportCIGREMV.py @@ -22,6 +22,4 @@ activeProfileList = ["DL", "EQ", "SV", "TP"] -cimpy.cim_export( - import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", activeProfileList -) +cimpy.cim_export(import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", activeProfileList) diff --git a/cimpy/utils.py b/cimpy/utils.py index 38cfb82e..b7a39d89 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -63,12 +63,8 @@ def node_breaker_to_bus_branch(import_result): continue if "ConnectivityNode" in str(type(res[diagram_object].IdentifiedObject)): if res[diagram_object].IdentifiedObject.TopologicalNode is not None: - keep_diagram.append( - res[diagram_object].IdentifiedObject.TopologicalNode - ) - elif res[diagram_object].IdentifiedObject.mRID in ( - open_breakers + del_terminals_list - ): + keep_diagram.append(res[diagram_object].IdentifiedObject.TopologicalNode) + elif res[diagram_object].IdentifiedObject.mRID in (open_breakers + del_terminals_list): del_diagram_object.append(diagram_object) del_diagram_object_points = [] @@ -119,16 +115,10 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi terminal_module = importlib.import_module((module_name + "Terminal")) terminal_class = getattr(terminal_module, "Terminal") - res[terminal_name] = terminal_class( - mRID=terminal_name, name=terminal_name, TopologicalNode=TopologicalNode - ) + res[terminal_name] = terminal_class(mRID=terminal_name, name=terminal_name, TopologicalNode=TopologicalNode) - regulating_control_module = importlib.import_module( - module_name + "RegulatingControl" - ) - regulating_control_class = getattr( - regulating_control_module, "RegulatingControl" - ) + regulating_control_module = importlib.import_module(module_name + "RegulatingControl") + regulating_control_class = getattr(regulating_control_module, "RegulatingControl") res[reg_name] = regulating_control_class( mRID=reg_name, name=reg_name, @@ -136,12 +126,8 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi Terminal=res[terminal_name], ) - network_injection_module = importlib.import_module( - module_name + "ExternalNetworkInjection" - ) - network_injection_class = getattr( - network_injection_module, "ExternalNetworkInjection" - ) + network_injection_module = importlib.import_module(module_name + "ExternalNetworkInjection") + network_injection_class = getattr(network_injection_module, "ExternalNetworkInjection") res[inj_name] = network_injection_class( mRID=inj_name, name=inj_name, diff --git a/documentation/set_inheritance_diagram.py b/documentation/set_inheritance_diagram.py index dd4d8be5..4976f9e2 100644 --- a/documentation/set_inheritance_diagram.py +++ b/documentation/set_inheritance_diagram.py @@ -1,7 +1,7 @@ from os import remove import os from tempfile import mkstemp -from shutil import move, copy +from shutil import move directory = os.path.abspath(os.path.join("..", "documentation")) diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..5194238d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.black] +line-length = 120 diff --git a/tests/create_pickle_dump.py b/tests/create_pickle_dump.py index 04253735..89ec43a6 100644 --- a/tests/create_pickle_dump.py +++ b/tests/create_pickle_dump.py @@ -1,7 +1,4 @@ import pickle -import sys - -sys.path.append("/home/richard/cimpy") from pathlib import Path import cimpy @@ -19,9 +16,7 @@ def create_pickle(): imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") - CGMES_object = cimpy.cimexport._get_class_attributes_with_references( - imported_result, "cgmes_v2_4_15" - ) + CGMES_object = cimpy.cimexport._get_class_attributes_with_references(imported_result, "cgmes_v2_4_15") pickle.dump(CGMES_object, open("CIGREMV_import_reference_cgmes_v2_4_15.p1", "wb")) diff --git a/tests/test_export.py b/tests/test_export.py index b3485fab..078294ff 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -3,22 +3,17 @@ from cimpy.cgmes_v2_4_15.Base import short_profile_name import xmltodict import os -import glob import pytest_check as check from pathlib import Path import pytest -logging.basicConfig( - filename="Test_export_with_exported_files.log", level=logging.INFO, filemode="w" -) +logging.basicConfig(filename="Test_export_with_exported_files.log", level=logging.INFO, filemode="w") @pytest.fixture def sample_cimdata(): """Import the sampledata using cimpy""" - example_dir = Path( - os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV") - ).resolve() + example_dir = Path(os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV")).resolve() import_files = [] for file in example_dir.glob("*.xml"): import_files.append(str(file.absolute())) @@ -33,9 +28,7 @@ def read_ref_xml(): for file in test_dir.glob("CIGREMV_reference*.xml"): xmlstring = open(file, encoding="utf8").read() - parsed_export_file = xmltodict.parse( - xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict - ) + parsed_export_file = xmltodict.parse(xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict) test_list.append(parsed_export_file["rdf:RDF"]) test_dict = {} @@ -54,9 +47,7 @@ def read_exported_xml(directory): for file in test_dir.glob("*EXPORTED*.xml"): xmlstring = open(file, encoding="utf8").read() - parsed_export_file = xmltodict.parse( - xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict - ) + parsed_export_file = xmltodict.parse(xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict) export_list.append(parsed_export_file["rdf:RDF"]) export_dict = {} @@ -75,9 +66,7 @@ def read_exported_xml(directory): def test_export_with_exported_files(sample_cimdata, tmpdir): activeProfileList = ["DL", "EQ", "SV", "TP"] - cimpy.cim_export( - sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList - ) + cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -103,9 +92,7 @@ def test_export_with_exported_files(sample_cimdata, tmpdir): def test_export_with_imported_files(sample_cimdata, tmpdir): activeProfileList = ["DL", "EQ", "SSH", "SV", "TP"] - cimpy.cim_export( - sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList - ) + cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -138,9 +125,7 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): else: try: test_mRIDs.append(current_test_class["$rdf:ID"]) - test_class_dict[ - current_test_class["$rdf:ID"] - ] = current_test_class + test_class_dict[current_test_class["$rdf:ID"]] = current_test_class except KeyError: try: test_mRIDs.append(current_test_class["$rdf:about"]) @@ -166,15 +151,11 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): else: try: export_mRIDs.append(current_export_class["$rdf:ID"]) - export_class_dict[ - current_export_class["$rdf:ID"] - ] = current_export_class + export_class_dict[current_export_class["$rdf:ID"]] = current_export_class except KeyError: try: export_mRIDs.append(current_export_class["$rdf:about"]) - export_class_dict[ - current_export_class["$rdf:about"] - ] = obj + export_class_dict[current_export_class["$rdf:about"]] = obj except KeyError: check.is_in("$rdf:about", current_export_class.keys()) check.is_in("$rdf:ID", current_export_class.keys()) @@ -204,14 +185,10 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): "false", "None", "list", - { - "$rdf:resource": "#_32d6d32e-c3f0-43d4-8103-079a15594fc6" - }, + {"$rdf:resource": "#_32d6d32e-c3f0-43d4-8103-079a15594fc6"}, ]: continue - if isinstance(item[1], dict) or isinstance( - item[1], list - ): + if isinstance(item[1], dict) or isinstance(item[1], list): test_item = item elif len(item[1].split(".")) > 1: try: diff --git a/tests/test_import.py b/tests/test_import.py index af36bbad..32908477 100644 --- a/tests/test_import.py +++ b/tests/test_import.py @@ -1,21 +1,18 @@ import logging import cimpy -from cimpy.cgmes_v2_4_15.Base import short_profile_name import os -import glob import pytest_check as check import pickle from pathlib import Path logging.basicConfig(filename="Test_import.log", level=logging.INFO, filemode="w") -example_dir = Path( - os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV") -).resolve() +example_dir = Path(os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV")).resolve() def test_import(): - """This function tests the import functionality by importing files and comparing them to previously imported and pickled files.""" + """This function tests the import functionality by importing files and comparing them to previously + imported and pickled files.""" global example_dir test_files = [] @@ -24,15 +21,9 @@ def test_import(): imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") - import_resolved = cimpy.cimexport._get_class_attributes_with_references( - imported_result, "cgmes_v2_4_15" - ) + import_resolved = cimpy.cimexport._get_class_attributes_with_references(imported_result, "cgmes_v2_4_15") - ref_dict_path = Path( - os.path.join( - os.path.dirname(__file__), "CIGREMV_import_reference_cgmes_v2_4_15.p" - ) - ) + ref_dict_path = Path(os.path.join(os.path.dirname(__file__), "CIGREMV_import_reference_cgmes_v2_4_15.p")) check_dict_pickle = pickle.load(open(ref_dict_path, "rb")) for elem in import_resolved: From 824caa64da76958571d6c3d1f71782d05972d973 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:11:38 +0200 Subject: [PATCH 08/23] Make all filenames PEP-8 compliant Signed-off-by: Steffen Vogel --- cimpy/__init__.py | 4 ++-- cimpy/cimexamples.py | 12 ++++++------ ...njection.py => add_external_network_injection.py} | 2 +- ...onvertToBusBranch.py => convert_to_bus_branch.py} | 0 .../{exportCIGREMV.py => export_cigre_mv.py} | 0 .../{importCIGREMV.py => import_cigre_mv.py} | 0 6 files changed, 9 insertions(+), 9 deletions(-) rename cimpy/examples/{addExternalNetworkInjection.py => add_external_network_injection.py} (89%) rename cimpy/examples/{convertToBusBranch.py => convert_to_bus_branch.py} (100%) rename cimpy/examples/{exportCIGREMV.py => export_cigre_mv.py} (100%) rename cimpy/examples/{importCIGREMV.py => import_cigre_mv.py} (100%) diff --git a/cimpy/__init__.py b/cimpy/__init__.py index bfaddfee..061e9d82 100644 --- a/cimpy/__init__.py +++ b/cimpy/__init__.py @@ -5,5 +5,5 @@ import cimpy.utils from cimpy.cimexamples import import_example from cimpy.cimexamples import export_example -from cimpy.cimexamples import addExternalNetworkInjection_example -from cimpy.cimexamples import convertToBusBranch_example +from cimpy.cimexamples import add_external_network_injection_example +from cimpy.cimexamples import convert_to_bus_branch_example diff --git a/cimpy/cimexamples.py b/cimpy/cimexamples.py index b8fe1980..8c048840 100644 --- a/cimpy/cimexamples.py +++ b/cimpy/cimexamples.py @@ -4,26 +4,26 @@ def import_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "importCIGREMV.py" + example = base / "examples" / "import_cigre_mv.py" exec(open(example).read()) def export_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "exportCIGREMV.py" + example = base / "examples" / "export_cigre_mv.py" exec(open(example).read()) -def convertToBusBranch_example(): +def convert_to_bus_branch_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "convertToBusBranch.py" + example = base / "examples" / "convert_to_bus_branch.py" exec(open(example).read()) -def addExternalNetworkInjection_example(): +def add_external_network_injection_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "addExternalNetworkInjection.py" + example = base / "examples" / "add_external_network_injection.py" exec(open(example).read()) diff --git a/cimpy/examples/addExternalNetworkInjection.py b/cimpy/examples/add_external_network_injection.py similarity index 89% rename from cimpy/examples/addExternalNetworkInjection.py rename to cimpy/examples/add_external_network_injection.py index 5402c892..a918fa8a 100644 --- a/cimpy/examples/addExternalNetworkInjection.py +++ b/cimpy/examples/add_external_network_injection.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# called as cimpy.examples.addExternalNetworkInjection() or file run from quickstart directory? +# called as cimpy.examples.convert_to_bus_branch() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: diff --git a/cimpy/examples/convertToBusBranch.py b/cimpy/examples/convert_to_bus_branch.py similarity index 100% rename from cimpy/examples/convertToBusBranch.py rename to cimpy/examples/convert_to_bus_branch.py diff --git a/cimpy/examples/exportCIGREMV.py b/cimpy/examples/export_cigre_mv.py similarity index 100% rename from cimpy/examples/exportCIGREMV.py rename to cimpy/examples/export_cigre_mv.py diff --git a/cimpy/examples/importCIGREMV.py b/cimpy/examples/import_cigre_mv.py similarity index 100% rename from cimpy/examples/importCIGREMV.py rename to cimpy/examples/import_cigre_mv.py From 9a99426d75fba414a2964ade318118c9fe6a6e18 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:36:17 +0200 Subject: [PATCH 09/23] Update Python packaging files to use new best practices Signed-off-by: Steffen Vogel --- documentation/Install.rst | 17 ++++++++++--- pyproject.toml | 52 ++++++++++++++++++++++++++++++++++++++- setup.py | 16 ------------ 3 files changed, 64 insertions(+), 21 deletions(-) delete mode 100644 setup.py diff --git a/documentation/Install.rst b/documentation/Install.rst index bba0ea89..686a91e6 100644 --- a/documentation/Install.rst +++ b/documentation/Install.rst @@ -9,13 +9,13 @@ User Installation $ git clone https://github.com/sogno-platform/cimpy.git $ cd cimpy - $ python setup.py install + $ python3 -m pip install . or .. code-block:: bash - $ pip install cimpy + $ python3 -m pip install cimpy Developer Installation ---------------------- @@ -24,10 +24,19 @@ Developer Installation $ git clone https://github.com/sogno-platform/cimpy.git $ cd cimpy - $ python setup.py develop + $ python3 -m pip install -e .[dev] or .. code-block:: bash - $ pip install --pre cimpy + $ python3 -m pip install --pre cimpy + + +Building a distributable package +-------------------------------- + +.. code-block:: bash + + $ python3 -m pip install --upgrade build + $ python3 -m build diff --git a/pyproject.toml b/pyproject.toml index 5194238d..59805049 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,52 @@ -[tool.black] +[project] +name = "cimpy" +version = "1.0.2" +description = "Python package for import, modification and export of CIM grid data" +authors = [ + {name="Institute for Automation of Complex Power Systems"}, + {name="OPAL-RT Technologies"} +] +readme = "README.md" +keywords = ["cim", "cgmes"] + +dependencies = [ + "lxml", + "xmltodict", + "chevron", +] + +requires-python = ">=3.8" + +classifiers = [ + "Development Status :: 5 - Production/Stable", + + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", + + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11" +] + +[project.urls] +Homepage = "https://sogno.energy/cimpy/" +Documentation = "https://sogno.energy/cimpy/" +Repository = "https://github.com/sogno-platform/cimpy" +Issues = "https://github.com/sogno-platform/cimpy/issues" + +[project.optional-dependencies] +dev = [ + "pytest", + "pytest-check" +] + +[build-system] +requires = ["setuptools >= 61.0"] +build-backend = "setuptools.build_meta" + +[tool.setuptools] +include-package-data = true + + +[tool.black] line-length = 120 diff --git a/setup.py b/setup.py deleted file mode 100644 index 4ac7ea4e..00000000 --- a/setup.py +++ /dev/null @@ -1,16 +0,0 @@ -import setuptools - -setuptools.setup( - name="cimpy", - version="1.0.2", - description="Python package for import, modification and export of CIM grid data", - author="Institute for Automation of Complex Power Systems", - include_package_data=True, - license="MPL-2.0", - packages=setuptools.find_packages(), - install_requires=[ - "lxml", - "xmltodict", - "chevron", - ], -) From f37a21768d5f9f11a62e85e4604fef6b94068c23 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:42:15 +0200 Subject: [PATCH 10/23] Replace print with logging package Signed-off-by: Steffen Vogel --- cimpy/cimexport.py | 19 +++++++------------ cimpy/cimimport.py | 11 ++--------- cimpy/utils.py | 5 ++++- 3 files changed, 13 insertions(+), 22 deletions(-) diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index 14d0c761..e6e980fd 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -1,15 +1,15 @@ -import os -import importlib -import chevron from datetime import datetime +from pathlib import Path from time import time -from cimpy.cgmes_v2_4_15.Base import Profile +import chevron +import copy +import importlib import logging -import sys +import os + +from cimpy.cgmes_v2_4_15.Base import Profile from cimpy.cgmes_v2_4_15.Base import Base -from pathlib import Path -import copy cgmesProfile = Base.cgmesProfile @@ -372,11 +372,6 @@ def cim_export(import_result, file_name, version, activeProfileList): "File {} already exists. Delete file or change file name to serialize CGMES " "classes.".format(full_file_name) ) - print( - "[ERROR:] File {} already exists. Delete file or change file name to serialize CGMES " - "classes.".format(full_file_name), - file=sys.stderr, - ) exit(-1) logger.info("End export procedure. Elapsed time: {}".format(time() - t0)) diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 7cd89f3f..4446144a 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -62,21 +62,14 @@ def cim_import(xml_files, cgmes_version, start_dict=None): if logger_grouped["errors"]: for error, count in logger_grouped["errors"].items(): - logging_message = "{} : {} times".format(error, count) - logger.warning(logging_message) + logger.warning("{} : {} times".format(error, count)) if logger_grouped["info"]: for info, count in logger_grouped["info"].items(): - logging_message = "{} : {} times".format(info, count) - logger.info(logging_message) - - # print info which classes and how many were instantiated - print(logging_message) + logger.info("{} : {} times".format(info, count)) elapsed_time = time() - t0 logger.info("Created totally {} CIM objects in {}s\n\n".format(len(import_result["topology"]), elapsed_time)) - # print info of how many classes in total were instantiated to terminal - print("Created totally {} CIM objects in {}s".format(len(import_result["topology"]), elapsed_time)) return import_result diff --git a/cimpy/utils.py b/cimpy/utils.py index b7a39d89..60502b9c 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -1,5 +1,8 @@ +import logging import importlib +logger = logging.getLogger(__name__) + def node_breaker_to_bus_branch(import_result): """TODO: Add documentation""" @@ -139,7 +142,7 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi res[terminal_name].ConductingEquipment = res[inj_name] res[terminal_name].RegulatingControl = res[reg_name] else: - print("No Terminal with mRID ", mRID, " found in object list!") + logger.warning("No Terminal with mRID %s found in object list!", mRID) import_result["topology"] = res From 4f63a10ef2fbb86fae14f959381ef2ad364f4a64 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:51:14 +0200 Subject: [PATCH 11/23] Use proper printf-style formatting for logging Signed-off-by: Steffen Vogel --- cimpy/cimexport.py | 66 +++++++++++++++++++++++----------------------- cimpy/cimimport.py | 10 +++---- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index e6e980fd..8fe9daf7 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -60,16 +60,16 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): UUID = "%" + _search_mRID(elem, topology) if UUID == "%": logger.warning( - "Object of type {} not found as reference for object with UUID {}.".format( - elem.__class__.__name__, mRID - ) + "Object of type %s not found as reference for object with UUID %s.", + elem.__class__.__name__, + mRID, ) else: UUID = "%" + elem.mRID array.append(UUID) else: - logger.warning("Reference object not subclass of Base class for object with UUID {}.".format(mRID)) + logger.warning("Reference object not subclass of Base class for object with UUID %s.", mRID) if len(array) == 1: attributes["value"] = array[0] else: @@ -82,9 +82,9 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): UUID = "%" + _search_mRID(attr_dict[key], topology) if UUID == "%": logger.warning( - "Object of type {} not found as reference for object with UUID {}.".format( - attr_dict[key].__class__.__name__, mRID - ) + "Object of type %s not found as reference for object with UUID %s.", + attr_dict[key].__class__.__name__, + mRID, ) else: UUID = "%" + attr_dict[key].mRID @@ -99,9 +99,7 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): attributes["value"] = "%URL%" + urls[key.split(".")[1]][attr_dict[key]] else: logger.warning( - "URL reference for attribute {} and value {} not found!".format( - key.split(".")[1], attr_dict[key] - ) + "URL reference for attribute %s and value %s not found!", key.split(".")[1], attr_dict[key] ) else: attributes["value"] = attr_dict[key] @@ -203,14 +201,16 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): class_serializationProfile = serializationProfile["class"] else: logger.warning( - "Class {} was read from profile {} but this profile is not possible for this class".format( - klass["name"], serializationProfile["class"] - ) + "Class %s was read from profile %s but this profile is not possible for this class", + klass["name"], + serializationProfile["class"], ) else: logger.info( - "Class {} was read from profile {} but this profile is not active for the export. Use" - "default profile from possibleProfileList.".format(klass["name"], serializationProfile["class"]) + "Class %s was read from profile %s but this profile is not active for the export. " + + "Use default profile from possibleProfileList.", + klass["name"], + serializationProfile["class"], ) if class_serializationProfile == "": @@ -226,15 +226,14 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): if class_serializationProfile == "": # no profile in possibleProfileList active logger.warning( - "All possible export profiles for class {} not active. Skip class for export.".format( - klass["name"] - ) + "All possible export profiles for class %s not active. Skip class for export.", + klass["name"], ) continue else: - logger.warning("Class {} has no profile to export to.".format(klass["name"])) + logger.warning("Class %s has no profile to export to.", klass["name"]) else: - logger.warning("Class {} has no profile to export to.".format(klass["name"])) + logger.warning("Class %s has no profile to export to.", klass["name"]) # iterate over attributes for attribute in klass["attributes"]: @@ -268,23 +267,25 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): if attribute_serializationProfile == "": # no profile in possibleProfileList active, skip attribute logger.warning( - "All possible export profiles for attribute {}.{} of class {} " - "not active. Skip attribute for export.".format( - attribute_class, attribute_name, klass["name"] - ) + "All possible export profiles for attribute %s.%s of class %s not active. " + + "Skip attribute for export.", + attribute_class, + attribute_name, + klass["name"], ) continue else: logger.warning( - "Attribute {}.{} of class {} has no profile to export to.".format( - attribute_class, attribute_name, klass["name"] - ) + "Attribute %s.%s of class %s has no profile to export to.", + attribute_class, + attribute_name, + klass["name"], ) else: logger.warning( - "The class {} for attribute {} is not in the possibleProfileList".format( - attribute_class, attribute_name - ) + "The class %s for attribute %s is not in the possibleProfileList", + attribute_class, + attribute_name, ) if attribute_serializationProfile == class_serializationProfile: @@ -369,12 +370,11 @@ def cim_export(import_result, file_name, version, activeProfileList): file.write(output) else: logger.error( - "File {} already exists. Delete file or change file name to serialize CGMES " - "classes.".format(full_file_name) + "File %s already exists. Delete file or change file name to serialize CGMES classes.", full_file_name ) exit(-1) - logger.info("End export procedure. Elapsed time: {}".format(time() - t0)) + logger.info("End export procedure. Elapsed time: %s", time() - t0) def generate_xml(cim_data, version, model_name, profile, available_profiles): diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 4446144a..124676eb 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -62,14 +62,14 @@ def cim_import(xml_files, cgmes_version, start_dict=None): if logger_grouped["errors"]: for error, count in logger_grouped["errors"].items(): - logger.warning("{} : {} times".format(error, count)) + logger.warning("%s: %d times", error, count) if logger_grouped["info"]: for info, count in logger_grouped["info"].items(): - logger.info("{} : {} times".format(info, count)) + logger.info("%s: %d times", info, count) elapsed_time = time() - t0 - logger.info("Created totally {} CIM objects in {}s\n\n".format(len(import_result["topology"]), elapsed_time)) + logger.info("Created totally %s CIM objects in %.2f s\n\n", len(import_result["topology"]), elapsed_time) return import_result @@ -383,7 +383,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Clear children of the root element to minimise memory usage. root.clear() - logger.info('END of parsing file "{}"'.format(xml_file)) + logger.info('END of parsing file "{}"', xml_file) return import_result, logger_grouped @@ -411,7 +411,7 @@ def _get_rdf_namespace(namespaces): namespace = namespaces["rdf"] except KeyError: ns = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" - logger.warning("No rdf namespace found. Using %s" % ns) + logger.warning("No rdf namespace found. Using %s", ns) return namespace From 8feb082e7000b3831ed27093d2372acbc31e3642 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 16:58:10 +0200 Subject: [PATCH 12/23] Fix capitalization of comments Signed-off-by: Steffen Vogel --- .github/workflows/pytest.yaml | 70 ++++++++-------- cimpy/cimexport.py | 80 +++++++++---------- cimpy/cimimport.py | 43 +++++----- .../add_external_network_injection.py | 2 +- cimpy/examples/convert_to_bus_branch.py | 2 +- cimpy/examples/export_cigre_mv.py | 2 +- cimpy/examples/import_cigre_mv.py | 2 +- cimpy/utils.py | 6 +- 8 files changed, 105 insertions(+), 102 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 8f26e687..45c8bdad 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -1,38 +1,38 @@ name: Pytest on: push jobs: - test: - runs-on: ubuntu-latest - steps: - - name: checkout repo content - uses: actions/checkout@v3 # checkout the repository content to github runner. - - name: setup python - uses: actions/setup-python@v4 - with: - python-version: 3.8 - - name: Install graphviz - run: sudo apt install graphviz - shell: bash - - name: Install dependencies - run: | - sudo pip3 install --upgrade pip - sudo pip3 install sphinx_rtd_theme - sudo pip3 install sphinx - sudo pip3 install pytest - sudo pip3 install pytest-check - - name: Execute py script - env: - working-directory: ${{runner.workspace}}/cimpy - run: | - sudo python3 setup.py install - - name: Pytest - env: - working-directory: ${{runner.workspace}}/cimpy - run: | - sudo pytest -v -cov --junitxml=report.xml - - name: Upload pytest test results - uses: actions/upload-artifact@v3 - with: - name: pytest-results - path: ${{runner.workspace}}/cimpy/report.xml - if: ${{ always() }} + test: + runs-on: ubuntu-latest + steps: + - name: checkout repo content + uses: actions/checkout@v3 # Checkout the repository content to github runner. + - name: setup python + uses: actions/setup-python@v4 + with: + python-version: 3.8 + - name: Install graphviz + run: sudo apt install graphviz + shell: bash + - name: Install dependencies + run: | + sudo pip3 install --upgrade pip + sudo pip3 install sphinx_rtd_theme + sudo pip3 install sphinx + sudo pip3 install pytest + sudo pip3 install pytest-check + - name: Execute py script + env: + working-directory: ${{runner.workspace}}/cimpy + run: | + sudo python3 setup.py install + - name: Pytest + env: + working-directory: ${{runner.workspace}}/cimpy + run: | + sudo pytest -v -cov --junitxml=report.xml + - name: Upload pytest test results + uses: actions/upload-artifact@v3 + with: + name: pytest-results + path: ${{runner.workspace}}/cimpy/report.xml + if: ${{ always() }} diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index 8fe9daf7..50890ce3 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -19,15 +19,15 @@ # This function gets all attributes of an object and resolves references to other objects def _get_class_attributes_with_references(import_result, version): class_attributes_list = [] - # extract topology and urls + # Extract topology and urls topology = import_result["topology"] urls = import_result["meta_info"]["urls"] for key in topology.keys(): class_dict = dict(name=topology[key].__class__.__name__) class_dict["mRID"] = key - # array containing all attributes, attribute references to objects + # Array containing all attributes, attribute references to objects attributes_dict = _get_attributes(topology[key]) - # change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have + # Change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have # mRID as an attribute. Therefore the corresponding class has to be searched in the res dictionary class_dict["attributes"] = _get_reference_uuid(attributes_dict, version, topology, key, urls) class_attributes_list.append(class_dict) @@ -48,15 +48,15 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): continue attributes = {} - if isinstance(attr_dict[key], list): # many + if isinstance(attr_dict[key], list): # Many array = [] for elem in attr_dict[key]: if issubclass(type(elem), base_class): - # classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key + # Classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key # for this object in the res dictionary # The % added before the mRID is used in the lambda _set_attribute_or_reference if not hasattr(elem, "mRID"): - # search for the object in the res dictionary and return the mRID + # Search for the object in the res dictionary and return the mRID UUID = "%" + _search_mRID(elem, topology) if UUID == "%": logger.warning( @@ -77,7 +77,7 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): elif issubclass(type(attr_dict[key]), base_class): # 0..1, 1..1 # resource = key + ' rdf:resource=' if not hasattr(attr_dict[key], "mRID"): - # search for object in res dict and return mRID + # Search for object in res dict and return mRID # The % added before the mRID is used in the lambda _set_attribute_or_reference UUID = "%" + _search_mRID(attr_dict[key], topology) if UUID == "%": @@ -92,9 +92,9 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): elif attr_dict[key] == "" or attr_dict[key] is None: pass else: - # attribute in urls dict? + # Attribute in urls dict? if key.split(".")[1] in urls.keys(): - # value in urls dict? should always be true + # Value in urls dict? should always be true if attr_dict[key] in urls[key.split(".")[1]].keys(): attributes["value"] = "%URL%" + urls[key.split(".")[1]][attr_dict[key]] else: @@ -108,10 +108,10 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): if "value" in attributes.keys(): if isinstance(attributes["value"], list): for reference_item in attributes["value"]: - # ignore default values + # Ignore default values if reference_item not in ["", None, 0.0, 0]: reference_list.append({"value": reference_item, "attr_name": key}) - # ignore default values + # Ignore default values elif attributes["value"] not in ["", None, 0.0, 0, "list"]: reference_list.append(attributes) @@ -177,12 +177,12 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): export_dict = {} export_about_dict = {} - # iterate over classes + # Iterate over classes for klass in class_attributes_list: same_package_list = [] about_dict = {} - # store serializationProfile and possibleProfileList + # Store serializationProfile and possibleProfileList # serializationProfile class attribute, same for multiple instances # of same class, only last origin of variable stored serializationProfile = copy.deepcopy(klass["attributes"][0]["serializationProfile"]) @@ -191,12 +191,12 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): class_serializationProfile = "" if "class" in serializationProfile.keys(): - # class was imported + # Class was imported if Profile[serializationProfile["class"]] in activeProfileList: - # else: class origin profile not active for export, get active profile from possibleProfileList + # Else: class origin profile not active for export, get active profile from possibleProfileList if Profile[serializationProfile["class"]].value in possibleProfileList[klass["name"]]["class"]: - # profile active and in possibleProfileList - # else: class should not have been imported from this profile, get allowed profile + # Profile active and in possibleProfileList + # Else: class should not have been imported from this profile, get allowed profile # from possibleProfileList class_serializationProfile = serializationProfile["class"] else: @@ -214,17 +214,17 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): ) if class_serializationProfile == "": - # class was created + # Class was created if klass["name"] in possibleProfileList.keys(): if "class" in possibleProfileList[klass["name"]].keys(): possibleProfileList[klass["name"]]["class"].sort() for klass_profile in possibleProfileList[klass["name"]]["class"]: if Profile(klass_profile).name in activeProfileList: - # active profile for class export found + # Active profile for class export found class_serializationProfile = Profile(klass_profile).name break if class_serializationProfile == "": - # no profile in possibleProfileList active + # No profile in possibleProfileList active logger.warning( "All possible export profiles for class %s not active. Skip class for export.", klass["name"], @@ -235,7 +235,7 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): else: logger.warning("Class %s has no profile to export to.", klass["name"]) - # iterate over attributes + # Iterate over attributes for attribute in klass["attributes"]: if "attr_name" in attribute.keys(): attribute_class = attribute["attr_name"].split(".")[0] @@ -248,24 +248,24 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): attribute_serializationProfile = "" if attribute_name in serializationProfile.keys(): - # attribute was imported + # Attribute was imported if Profile[serializationProfile[attribute_name]] in activeProfileList: attr_value = Profile[serializationProfile[attribute_name]].value if attr_value in possibleProfileList[attribute_class][attribute_name]: attribute_serializationProfile = serializationProfile[attribute_name] if attribute_serializationProfile == "": - # attribute was added + # Attribute was added if attribute_class in possibleProfileList.keys(): if attribute_name in possibleProfileList[attribute_class].keys(): possibleProfileList[attribute_class][attribute_name].sort() for attr_profile in possibleProfileList[attribute_class][attribute_name]: if Profile(attr_profile) in activeProfileList: - # active profile for class export found + # Active profile for class export found attribute_serializationProfile = Profile(attr_profile).name break if attribute_serializationProfile == "": - # no profile in possibleProfileList active, skip attribute + # No profile in possibleProfileList active, skip attribute logger.warning( "All possible export profiles for attribute %s.%s of class %s not active. " + "Skip attribute for export.", @@ -289,17 +289,17 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): ) if attribute_serializationProfile == class_serializationProfile: - # class and current attribute belong to same profile + # Class and current attribute belong to same profile same_package_list.append(attribute) else: - # class and current attribute does not belong to same profile -> rdf:about in + # Class and current attribute does not belong to same profile -> rdf:about in # attribute origin profile if attribute_serializationProfile in about_dict.keys(): about_dict[attribute_serializationProfile].append(attribute) else: about_dict[attribute_serializationProfile] = [attribute] - # add class with all attributes in the same profile to the export dict sorted by the profile + # Add class with all attributes in the same profile to the export dict sorted by the profile if class_serializationProfile in export_dict.keys(): export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) export_dict[class_serializationProfile]["classes"].append(export_class) @@ -308,7 +308,7 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) export_dict[class_serializationProfile] = {"classes": [export_class]} - # add class with all attributes defined in another profile to the about_key sorted by the profile + # Add class with all attributes defined in another profile to the about_key sorted by the profile for about_key in about_dict.keys(): if about_key in export_about_dict.keys(): export_about_class = dict( @@ -355,7 +355,7 @@ def cim_export(import_result, file_name, version, activeProfileList): profile_list = list(map(lambda a: Profile[a], activeProfileList)) - # iterate over all profiles + # Iterate over all profiles for profile in profile_list: # File name @@ -390,10 +390,10 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): :param available_profiles: a list of all :class:`~cimpy.cgmes_v2_4_15.Base.Profile`s in `cim_data` """ - # returns all classes with their attributes and resolved references + # Returns all classes with their attributes and resolved references class_attributes_list = _get_class_attributes_with_references(cim_data, version) - # determine class and attribute export profiles. The export dict contains all classes and their attributes where + # Determine class and attribute export profiles. The export dict contains all classes and their attributes where # the class definition and the attribute definitions are in the same profile. Every entry in about_dict generates # a rdf:about in another profile export_dict, about_dict = _sort_classes_to_profile(class_attributes_list, available_profiles) @@ -411,7 +411,7 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): + "." ) - # extract class lists from export_dict and about_dict + # Extract class lists from export_dict and about_dict if profile.name in export_dict.keys(): classes = export_dict[profile.name]["classes"] else: @@ -457,27 +457,27 @@ def _get_attributes(class_object): class_type = type(class_object) parent = class_object - # get parent classes + # Get parent classes while "Base.Base" not in str(class_type): parent = parent.__class__.__bases__[0]() - # insert parent class at beginning of list, classes inherit from top to bottom + # Insert parent class at beginning of list, classes inherit from top to bottom inheritance_list.insert(0, parent) class_type = type(parent) - # dictionary containing all attributes with key: 'Class_Name.Attribute_Name' + # Dictionary containing all attributes with key: 'Class_Name.Attribute_Name' attributes_dict = dict(serializationProfile=class_object.serializationProfile, possibleProfileList={}) # __dict__ of a subclass returns also the attributes of the parent classes # to avoid multiple attributes create list with all attributes already processed attributes_list = [] - # iterate over parent classes from top to bottom + # Iterate over parent classes from top to bottom for parent_class in inheritance_list: - # get all attributes of the current parent class + # Get all attributes of the current parent class parent_attributes_dict = parent_class.__dict__ class_name = parent_class.__class__.__name__ - # check if new attribute or old attribute + # Check if new attribute or old attribute for key in parent_attributes_dict.keys(): if key not in attributes_list: attributes_list.append(key) @@ -486,7 +486,7 @@ def _get_attributes(class_object): else: continue - # get all possibleProfileLists from all parent classes except the Base class (no attributes) + # Get all possibleProfileLists from all parent classes except the Base class (no attributes) # the serializationProfile from parent classes is not needed because entries in the serializationProfile # are only generated for the inherited class if class_name != "Base": diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 124676eb..2a4fc350 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -36,13 +36,13 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # Start the clock. t0 = time() - # map used to group errors and infos + # Map used to group errors and infos logger_grouped = dict(errors={}, info={}) - # create a dict which will contain meta information and the topology + # Create a dict which will contain meta information and the topology import_result = start_dict if start_dict is not None else dict(meta_info={}, topology={}) - # create sub-dictionaries + # Create sub-dictionaries import_result["meta_info"] = dict(namespaces=_get_namespaces(xml_files[0]), urls={}) namespace_rdf = _get_rdf_namespace(import_result["meta_info"]["namespaces"]) @@ -81,12 +81,13 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # Also the information from which package file a class was read is stored in the serializationProfile dictionary. def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped): - # extract topology from import_result + # Extract topology from import_result topology = import_result["topology"] - # length of element tag base + # Length of element tag base m = len(base) - # first step: create the dict res{uuid}=instance_of_the_cim_class + + # First step: create the dict res{uuid}=instance_of_the_cim_class for xml_file in xml_files: logger.info('START of parsing file "%s"', xml_file) @@ -95,7 +96,7 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace if hasattr(xml_file, "seek"): xml_file.seek(0) - # get an iterable + # Get an iterable context = etree.iterparse(xml_file, ("start", "end")) # Turn it into an iterator (required for cElementTree). @@ -111,9 +112,9 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # Process 'end' elements in the CGMES namespace. if event == "end" and elem.tag[:m] == base: - # check if the element has the attribute "rdf:ID" --> CGMES class located + # Check if the element has the attribute "rdf:ID" --> CGMES class located uuid = elem.get("{%s}ID" % namespace_rdf) - if uuid is not None: # cim class + if uuid is not None: # CIM class # Element tag without namespace (e.g. VoltageLevel). tag = elem.tag[m:] try: @@ -142,7 +143,7 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace except KeyError: logger_grouped["info"][info_msg] = 1 - # check if the class has the attribute mRID and set the mRID to the read in UUID. If the class + # Check if the class has the attribute mRID and set the mRID to the read in UUID. If the class # does not has this attribute, the UUID is only stored in the res dictionary. if hasattr(topology[uuid], "mRID"): topology[uuid].mRID = uuid @@ -163,10 +164,12 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace if package_key in elem.text: package = package_key break - # the author of all imported files should be the same, avoid multiple entries + + # The author of all imported files should be the same, avoid multiple entries elif "author" in import_result["meta_info"].keys(): pass - # extract author + + # Extract author elif "Model.createdBy" in elem.tag: import_result["meta_info"]["author"] = elem.text elif "Model.modelingAuthoritySet" in elem.tag: @@ -191,7 +194,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Second step pass sets attributes and references. for xml_file in xml_files: - # get an iterable and turn it into an iterator (required for cElementTree). + # Get an iterable and turn it into an iterator (required for cElementTree). context = iter(etree.iterparse(xml_file, ("start", "end"))) # Reset stream @@ -292,18 +295,18 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe if default is None: # 1..1 or 0..1 # Rely on properties to set any bi-directional references. setattr(obj, attr, val) - elif default == "list": # many + elif default == "list": # Many setattr(obj, attr, [val]) - elif isinstance(default, list): # many + elif isinstance(default, list): # Many attribute = getattr(obj, attr) if val not in attribute: attribute.append(val) setattr(obj, attr, attribute) elif default == val: - # attribute reference already resolved + # Attribute reference already resolved pass else: - # note here + # Note here error_msg = ( "Multiplicity Error for class {} [{}], attribute {}. ".format( obj.__class__.__name__, uuid, attr @@ -319,9 +322,9 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe default1 = getattr(val, obj.__class__.__name__) if default1 is None: setattr(val, obj.__class__.__name__, obj) - elif default1 == "list": # many + elif default1 == "list": # Many setattr(val, obj.__class__.__name__, [obj]) - elif isinstance(default1, list): # many + elif isinstance(default1, list): # Many attribute2 = getattr(val, obj.__class__.__name__) if obj not in attribute2: attribute2.append(obj) @@ -346,7 +349,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe except KeyError: logger_grouped["errors"][error_msg] = 1 - else: # enum + else: # Enum # if http in uuid2 reference to URL, create mapping if "http" in uuid2: if attr in urls.keys(): diff --git a/cimpy/examples/add_external_network_injection.py b/cimpy/examples/add_external_network_injection.py index a918fa8a..7aaba654 100644 --- a/cimpy/examples/add_external_network_injection.py +++ b/cimpy/examples/add_external_network_injection.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# called as cimpy.examples.convert_to_bus_branch() or file run from quickstart directory? +# Called as cimpy.examples.convert_to_bus_branch() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: diff --git a/cimpy/examples/convert_to_bus_branch.py b/cimpy/examples/convert_to_bus_branch.py index 477a5bfe..edba9fb4 100644 --- a/cimpy/examples/convert_to_bus_branch.py +++ b/cimpy/examples/convert_to_bus_branch.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# called as cimpy.examples.convertBusBranch() or file run from quickstart directory? +# Called as cimpy.examples.convertBusBranch() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" else: diff --git a/cimpy/examples/export_cigre_mv.py b/cimpy/examples/export_cigre_mv.py index d2452b22..17e36e40 100644 --- a/cimpy/examples/export_cigre_mv.py +++ b/cimpy/examples/export_cigre_mv.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# called as cimpy.examples.import_example() or file run from quickstart directory? +# Called as cimpy.examples.import_example() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: diff --git a/cimpy/examples/import_cigre_mv.py b/cimpy/examples/import_cigre_mv.py index 2898dfaa..ff3b3af2 100644 --- a/cimpy/examples/import_cigre_mv.py +++ b/cimpy/examples/import_cigre_mv.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# called as cimpy.examples.import_example() or file run from quickstart directory? +# Called as cimpy.examples.import_example() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: diff --git a/cimpy/utils.py b/cimpy/utils.py index 60502b9c..15d1e9d5 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -31,14 +31,14 @@ def node_breaker_to_bus_branch(import_result): elif class_name == "ConnectivityNode": connect_nodes.append(mRID) - # search for open breakers + # Search for open breakers open_breakers = [] for breaker in breaker_list: if res[breaker].open: if not res[breaker].retained: open_breakers.append(breaker) - # check terminals for reference to open breakers and delete references to Connectivity Nodes + # Check terminals for reference to open breakers and delete references to Connectivity Nodes del_terminals_list = [] for terminal in terminals_list: cond_eq = res[terminal].ConductingEquipment @@ -47,7 +47,7 @@ def node_breaker_to_bus_branch(import_result): else: res[terminal].ConnectivityNode = None - # check for OperationalLimitSet with references to deleted Terminals + # Check for OperationalLimitSet with references to deleted Terminals del_operationallimitset = [] for operational_limit in operational_limit_set_list: if res[operational_limit].Terminal.mRID in del_terminals_list: From 0e893792b22bb88cdf65ffcd6fe10e1463bf5172 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 17:02:44 +0200 Subject: [PATCH 13/23] Fix camelCase naming of variables Signed-off-by: Steffen Vogel --- cimpy/cimexport.py | 88 +++++++++---------- .../add_external_network_injection.py | 4 +- cimpy/examples/convert_to_bus_branch.py | 4 +- cimpy/examples/export_cigre_mv.py | 4 +- cimpy/utils.py | 10 +-- tests/test_export.py | 34 +++---- 6 files changed, 72 insertions(+), 72 deletions(-) diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index 50890ce3..1e46a220 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -57,17 +57,17 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): # The % added before the mRID is used in the lambda _set_attribute_or_reference if not hasattr(elem, "mRID"): # Search for the object in the res dictionary and return the mRID - UUID = "%" + _search_mRID(elem, topology) - if UUID == "%": + uuid = "%" + _search_mRID(elem, topology) + if uuid == "%": logger.warning( "Object of type %s not found as reference for object with UUID %s.", elem.__class__.__name__, mRID, ) else: - UUID = "%" + elem.mRID + uuid = "%" + elem.mRID - array.append(UUID) + array.append(uuid) else: logger.warning("Reference object not subclass of Base class for object with UUID %s.", mRID) if len(array) == 1: @@ -79,16 +79,16 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): if not hasattr(attr_dict[key], "mRID"): # Search for object in res dict and return mRID # The % added before the mRID is used in the lambda _set_attribute_or_reference - UUID = "%" + _search_mRID(attr_dict[key], topology) - if UUID == "%": + uuid = "%" + _search_mRID(attr_dict[key], topology) + if uuid == "%": logger.warning( "Object of type %s not found as reference for object with UUID %s.", attr_dict[key].__class__.__name__, mRID, ) else: - UUID = "%" + attr_dict[key].mRID - attributes["value"] = UUID + uuid = "%" + attr_dict[key].mRID + attributes["value"] = uuid elif attr_dict[key] == "" or attr_dict[key] is None: pass else: @@ -185,45 +185,45 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): # Store serializationProfile and possibleProfileList # serializationProfile class attribute, same for multiple instances # of same class, only last origin of variable stored - serializationProfile = copy.deepcopy(klass["attributes"][0]["serializationProfile"]) - possibleProfileList = copy.deepcopy(klass["attributes"][1]["possibleProfileList"]) + serialization_profile = copy.deepcopy(klass["attributes"][0]["serializationProfile"]) + possible_profile_list = copy.deepcopy(klass["attributes"][1]["possibleProfileList"]) - class_serializationProfile = "" + class_serialization_profile = "" - if "class" in serializationProfile.keys(): + if "class" in serialization_profile.keys(): # Class was imported - if Profile[serializationProfile["class"]] in activeProfileList: + if Profile[serialization_profile["class"]] in activeProfileList: # Else: class origin profile not active for export, get active profile from possibleProfileList - if Profile[serializationProfile["class"]].value in possibleProfileList[klass["name"]]["class"]: + if Profile[serialization_profile["class"]].value in possible_profile_list[klass["name"]]["class"]: # Profile active and in possibleProfileList # Else: class should not have been imported from this profile, get allowed profile # from possibleProfileList - class_serializationProfile = serializationProfile["class"] + class_serialization_profile = serialization_profile["class"] else: logger.warning( "Class %s was read from profile %s but this profile is not possible for this class", klass["name"], - serializationProfile["class"], + serialization_profile["class"], ) else: logger.info( "Class %s was read from profile %s but this profile is not active for the export. " + "Use default profile from possibleProfileList.", klass["name"], - serializationProfile["class"], + serialization_profile["class"], ) - if class_serializationProfile == "": + if class_serialization_profile == "": # Class was created - if klass["name"] in possibleProfileList.keys(): - if "class" in possibleProfileList[klass["name"]].keys(): - possibleProfileList[klass["name"]]["class"].sort() - for klass_profile in possibleProfileList[klass["name"]]["class"]: + if klass["name"] in possible_profile_list.keys(): + if "class" in possible_profile_list[klass["name"]].keys(): + possible_profile_list[klass["name"]]["class"].sort() + for klass_profile in possible_profile_list[klass["name"]]["class"]: if Profile(klass_profile).name in activeProfileList: # Active profile for class export found - class_serializationProfile = Profile(klass_profile).name + class_serialization_profile = Profile(klass_profile).name break - if class_serializationProfile == "": + if class_serialization_profile == "": # No profile in possibleProfileList active logger.warning( "All possible export profiles for class %s not active. Skip class for export.", @@ -245,26 +245,26 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): if attribute_name == "mRID": continue - attribute_serializationProfile = "" + attribute_serialization_profile = "" - if attribute_name in serializationProfile.keys(): + if attribute_name in serialization_profile.keys(): # Attribute was imported - if Profile[serializationProfile[attribute_name]] in activeProfileList: - attr_value = Profile[serializationProfile[attribute_name]].value - if attr_value in possibleProfileList[attribute_class][attribute_name]: - attribute_serializationProfile = serializationProfile[attribute_name] + if Profile[serialization_profile[attribute_name]] in activeProfileList: + attr_value = Profile[serialization_profile[attribute_name]].value + if attr_value in possible_profile_list[attribute_class][attribute_name]: + attribute_serialization_profile = serialization_profile[attribute_name] - if attribute_serializationProfile == "": + if attribute_serialization_profile == "": # Attribute was added - if attribute_class in possibleProfileList.keys(): - if attribute_name in possibleProfileList[attribute_class].keys(): - possibleProfileList[attribute_class][attribute_name].sort() - for attr_profile in possibleProfileList[attribute_class][attribute_name]: + if attribute_class in possible_profile_list.keys(): + if attribute_name in possible_profile_list[attribute_class].keys(): + possible_profile_list[attribute_class][attribute_name].sort() + for attr_profile in possible_profile_list[attribute_class][attribute_name]: if Profile(attr_profile) in activeProfileList: # Active profile for class export found - attribute_serializationProfile = Profile(attr_profile).name + attribute_serialization_profile = Profile(attr_profile).name break - if attribute_serializationProfile == "": + if attribute_serialization_profile == "": # No profile in possibleProfileList active, skip attribute logger.warning( "All possible export profiles for attribute %s.%s of class %s not active. " @@ -288,25 +288,25 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): attribute_name, ) - if attribute_serializationProfile == class_serializationProfile: + if attribute_serialization_profile == class_serialization_profile: # Class and current attribute belong to same profile same_package_list.append(attribute) else: # Class and current attribute does not belong to same profile -> rdf:about in # attribute origin profile - if attribute_serializationProfile in about_dict.keys(): - about_dict[attribute_serializationProfile].append(attribute) + if attribute_serialization_profile in about_dict.keys(): + about_dict[attribute_serialization_profile].append(attribute) else: - about_dict[attribute_serializationProfile] = [attribute] + about_dict[attribute_serialization_profile] = [attribute] # Add class with all attributes in the same profile to the export dict sorted by the profile - if class_serializationProfile in export_dict.keys(): + if class_serialization_profile in export_dict.keys(): export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) - export_dict[class_serializationProfile]["classes"].append(export_class) + export_dict[class_serialization_profile]["classes"].append(export_class) del export_class else: export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) - export_dict[class_serializationProfile] = {"classes": [export_class]} + export_dict[class_serialization_profile] = {"classes": [export_class]} # Add class with all attributes defined in another profile to the about_key sorted by the profile for about_key in about_dict.keys(): diff --git a/cimpy/examples/add_external_network_injection.py b/cimpy/examples/add_external_network_injection.py index 7aaba654..ff99188b 100644 --- a/cimpy/examples/add_external_network_injection.py +++ b/cimpy/examples/add_external_network_injection.py @@ -22,6 +22,6 @@ import_result = cimpy.utils.add_external_network_injection(import_result, "cgmes_v2_4_15", "N1", 20.0) -activeProfileList = ["DL", "EQ", "SV", "TP"] +active_profile_list = ["DL", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, "ExternalInjection", "cgmes_v2_4_15", activeProfileList) +cimpy.cim_export(import_result, "ExternalInjection", "cgmes_v2_4_15", active_profile_list) diff --git a/cimpy/examples/convert_to_bus_branch.py b/cimpy/examples/convert_to_bus_branch.py index edba9fb4..d9b9f490 100644 --- a/cimpy/examples/convert_to_bus_branch.py +++ b/cimpy/examples/convert_to_bus_branch.py @@ -23,6 +23,6 @@ import_result = cimpy.utils.node_breaker_to_bus_branch(import_result) -activeProfileList = ["DL", "EQ", "TP"] +active_profile_list = ["DL", "EQ", "TP"] -cimpy.cim_export(import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", activeProfileList) +cimpy.cim_export(import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", active_profile_list) diff --git a/cimpy/examples/export_cigre_mv.py b/cimpy/examples/export_cigre_mv.py index 17e36e40..694e88b8 100644 --- a/cimpy/examples/export_cigre_mv.py +++ b/cimpy/examples/export_cigre_mv.py @@ -20,6 +20,6 @@ import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -activeProfileList = ["DL", "EQ", "SV", "TP"] +active_profile_list = ["DL", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", activeProfileList) +cimpy.cim_export(import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", active_profile_list) diff --git a/cimpy/utils.py b/cimpy/utils.py index 15d1e9d5..933249be 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -98,14 +98,14 @@ def node_breaker_to_bus_branch(import_result): def add_external_network_injection(import_result, version, mRID, voltage_set_point): """TODO: Add documentation""" res = import_result["topology"] - TopologicalNode = "" + topological_node = "" if mRID in res: if "TopologicalNode" in str(type(res[mRID])): - TopologicalNode = res[mRID] + topological_node = res[mRID] elif "ConnectivityNode" in str(type(res[mRID])): - TopologicalNode = res[mRID].TopologicalNode.mRID + topological_node = res[mRID].TopologicalNode.mRID - if TopologicalNode != "": + if topological_node != "": i = 1 while "Injection " + str(i) in res.keys(): i += 1 @@ -118,7 +118,7 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi terminal_module = importlib.import_module((module_name + "Terminal")) terminal_class = getattr(terminal_module, "Terminal") - res[terminal_name] = terminal_class(mRID=terminal_name, name=terminal_name, TopologicalNode=TopologicalNode) + res[terminal_name] = terminal_class(mRID=terminal_name, name=terminal_name, TopologicalNode=topological_node) regulating_control_module = importlib.import_module(module_name + "RegulatingControl") regulating_control_class = getattr(regulating_control_module, "RegulatingControl") diff --git a/tests/test_export.py b/tests/test_export.py index 078294ff..25503b40 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -64,9 +64,9 @@ def read_exported_xml(directory): def test_export_with_exported_files(sample_cimdata, tmpdir): - activeProfileList = ["DL", "EQ", "SV", "TP"] + active_profile_list = ["DL", "EQ", "SV", "TP"] - cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList) + cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", active_profile_list) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -90,9 +90,9 @@ def test_export_with_exported_files(sample_cimdata, tmpdir): def test_export_with_imported_files(sample_cimdata, tmpdir): - activeProfileList = ["DL", "EQ", "SSH", "SV", "TP"] + active_profile_list = ["DL", "EQ", "SSH", "SV", "TP"] - cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", activeProfileList) + cimpy.cim_export(sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v2_4_15", active_profile_list) test_dict = read_ref_xml() export_dict = read_exported_xml(tmpdir) @@ -108,61 +108,61 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): if class_key in current_export_dict.keys(): current_export_class = current_export_dict[class_key] current_test_class = current_test_dict[class_key] - test_mRIDs = [] + test_mrids = [] test_class_dict = {} if isinstance(current_test_class, list): for obj in current_test_class: try: - test_mRIDs.append(obj["$rdf:ID"]) + test_mrids.append(obj["$rdf:ID"]) test_class_dict[obj["$rdf:ID"]] = obj except KeyError: try: - test_mRIDs.append(obj["$rdf:about"]) + test_mrids.append(obj["$rdf:about"]) test_class_dict[obj["$rdf:about"]] = obj except KeyError: check.is_in("$rdf:about", obj.keys()) check.is_in("$rdf:ID", obj.keys()) else: try: - test_mRIDs.append(current_test_class["$rdf:ID"]) + test_mrids.append(current_test_class["$rdf:ID"]) test_class_dict[current_test_class["$rdf:ID"]] = current_test_class except KeyError: try: - test_mRIDs.append(current_test_class["$rdf:about"]) + test_mrids.append(current_test_class["$rdf:about"]) test_class_dict[current_test_class["$rdf:about"]] = obj except KeyError: check.is_in("$rdf:about", current_test_class.keys()) check.is_in("$rdf:ID", current_test_class.keys()) - export_mRIDs = [] + export_mrids = [] export_class_dict = {} if isinstance(current_export_class, list): for obj in current_export_class: try: - export_mRIDs.append(obj["$rdf:ID"]) + export_mrids.append(obj["$rdf:ID"]) export_class_dict[obj["$rdf:ID"]] = obj except KeyError: try: - export_mRIDs.append(obj["$rdf:about"]) + export_mrids.append(obj["$rdf:about"]) export_class_dict[obj["$rdf:about"]] = obj except KeyError: check.is_in("$rdf:about", obj.keys()) check.is_in("$rdf:ID", obj.keys()) else: try: - export_mRIDs.append(current_export_class["$rdf:ID"]) + export_mrids.append(current_export_class["$rdf:ID"]) export_class_dict[current_export_class["$rdf:ID"]] = current_export_class except KeyError: try: - export_mRIDs.append(current_export_class["$rdf:about"]) + export_mrids.append(current_export_class["$rdf:about"]) export_class_dict[current_export_class["$rdf:about"]] = obj except KeyError: check.is_in("$rdf:about", current_export_class.keys()) check.is_in("$rdf:ID", current_export_class.keys()) - for mRID in test_mRIDs: - check.is_in(mRID, export_mRIDs) - if mRID in export_mRIDs: + for mRID in test_mrids: + check.is_in(mRID, export_mrids) + if mRID in export_mrids: test_attr = test_class_dict[mRID].items() export_attr = export_class_dict[mRID].items() for item in test_attr: From a79f8eb9afb09edfdf297520761048b5e8a37423 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 17:07:57 +0200 Subject: [PATCH 14/23] Fix pytest CI workflow Signed-off-by: Steffen Vogel --- .github/workflows/pytest.yaml | 38 --------------------------------- .github/workflows/test.yaml | 40 +++++++++++++++++++++++++++++++++++ pyproject.toml | 5 +++++ 3 files changed, 45 insertions(+), 38 deletions(-) delete mode 100644 .github/workflows/pytest.yaml create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml deleted file mode 100644 index 45c8bdad..00000000 --- a/.github/workflows/pytest.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: Pytest -on: push -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: checkout repo content - uses: actions/checkout@v3 # Checkout the repository content to github runner. - - name: setup python - uses: actions/setup-python@v4 - with: - python-version: 3.8 - - name: Install graphviz - run: sudo apt install graphviz - shell: bash - - name: Install dependencies - run: | - sudo pip3 install --upgrade pip - sudo pip3 install sphinx_rtd_theme - sudo pip3 install sphinx - sudo pip3 install pytest - sudo pip3 install pytest-check - - name: Execute py script - env: - working-directory: ${{runner.workspace}}/cimpy - run: | - sudo python3 setup.py install - - name: Pytest - env: - working-directory: ${{runner.workspace}}/cimpy - run: | - sudo pytest -v -cov --junitxml=report.xml - - name: Upload pytest test results - uses: actions/upload-artifact@v3 - with: - name: pytest-results - path: ${{runner.workspace}}/cimpy/report.xml - if: ${{ always() }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 00000000..165a4a75 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,40 @@ +name: Pytest + +on: + push: + branches: + - master + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: 3.8 + + - name: Install Graphviz + shell: bash + run: | + sudo apt-get -y install graphviz + + - name: Install Python dependencies + run: | + pip install .[dev,doc] + + - name: Run pytest + run: | + pytest -v -cov --junitxml=report.xml + + - name: Upload pytest test results + uses: actions/upload-artifact@v4 + if: ${{ always() }} + with: + name: pytest-results + path: cimpy/report.xml diff --git a/pyproject.toml b/pyproject.toml index 59805049..dac3e782 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,11 @@ dev = [ "pytest-check" ] +doc = [ + "sphinx", + "sphinx_rtd_theme" +] + [build-system] requires = ["setuptools >= 61.0"] build-backend = "setuptools.build_meta" From 5caeeead29378293dca491e5c42e9f10c5dcd340 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 17:32:52 +0200 Subject: [PATCH 15/23] Simplify CI action for building docs Signed-off-by: Steffen Vogel --- .github/workflows/docs.yaml | 61 +++++++++++++++++++++++++++++++++ .github/workflows/test.yaml | 2 +- .github/workflows/workflow.yaml | 35 ------------------- Dockerfile | 32 ----------------- action.yaml | 7 ---- documentation/docu.sh | 12 ------- entrypoint.sh | 8 ----- 7 files changed, 62 insertions(+), 95 deletions(-) create mode 100644 .github/workflows/docs.yaml delete mode 100644 .github/workflows/workflow.yaml delete mode 100644 Dockerfile delete mode 100644 action.yaml delete mode 100755 documentation/docu.sh delete mode 100755 entrypoint.sh diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml new file mode 100644 index 00000000..0833a00a --- /dev/null +++ b/.github/workflows/docs.yaml @@ -0,0 +1,61 @@ +name: Documentation + +on: + pull_request: + + push: + branches: + - master + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: 3.8 + + - name: Install Graphviz + shell: bash + run: | + sudo apt-get -y install graphviz + + - name: Install Python dependencies + run: | + pip install .[doc] + + - name: Build documentation + working-directory: documentation + run: | + sphinx-apidoc \ + --full \ + --doc-project "cimpy" \ + --separate \ + --output-dir "." \ + "../" + + python3 set_inheritance_diagram.py + + make html + + touch _build/html/.nojekyll + + ls -l _build/html + + - name: Upload Artifact + uses: actions/upload-pages-artifact@v3 + with: + path: documentation/_build/html + + - name: Deploy to GitHub Pages + if: github.ref == 'refs/heads/master' + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 165a4a75..6cbc1fc0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -26,7 +26,7 @@ jobs: - name: Install Python dependencies run: | - pip install .[dev,doc] + pip install .[dev] - name: Run pytest run: | diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml deleted file mode 100644 index 17ed7b0f..00000000 --- a/.github/workflows/workflow.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: Documentation - -on: - push: - branches: [ master ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - build-docs: - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - - name: git-checkout - uses: actions/checkout@v3 - - - name: build-documentation - uses: ./ - - - name: Create doc redirect - uses: "finnp/create-file-action@master" - env: - FILE_NAME: ${{ github.workspace }}/built_documentation/.nojekyll - FILE_DATA: "" - - - name: Push - uses: s0/git-publish-subdir-action@develop - env: - REPO: self - BRANCH: gh-pages - FOLDER: ${{ github.workspace }}/built_documentation - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GitHub will automatically add this - you don't need to get a token - MESSAGE: "Build documentation: ({sha}) {msg}" diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 2f66bb5c..00000000 --- a/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM fedora:29 - -LABEL \ - org.label-schema.schema-version = "1.0" \ - org.label-schema.name = "cimpy" \ - org.label-schema.license = "Mozilla Public License Version 2.0" \ - org.label-schema.vendor = "Institute for Automation of Complex Power Systems, RWTH Aachen University" \ - org.label-schema.author.name = "Jan Dinkelbach" - -RUN dnf -y update - -RUN dnf -y install \ - make \ - python3-pip \ - graphviz-devel - -RUN dnf --refresh -y install \ - python3-devel - -RUN pip3 install sphinx_rtd_theme - -RUN pip3 install sphinx - -RUN pip3 install pytest - -RUN pip3 install pytest-check - -ADD . /cimpy - -WORKDIR /cimpy - -RUN python3 setup.py install diff --git a/action.yaml b/action.yaml deleted file mode 100644 index b751e892..00000000 --- a/action.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# action.yml -name: 'Build Documentation' -description: 'We are going to build the documentation!' -runs: - using: 'docker' - image: 'Dockerfile' - entrypoint: './entrypoint.sh' diff --git a/documentation/docu.sh b/documentation/docu.sh deleted file mode 100755 index 720e233c..00000000 --- a/documentation/docu.sh +++ /dev/null @@ -1,12 +0,0 @@ -if [ "$1" = "--release" ] || [ "$1" == "" ]; then - python3 ../setup.py develop - sphinx-apidoc -F -H "cimpy" --separate -o "../documentation" "../" "../setup.py" - python3 set_inheritance_diagram.py - if [ "$1" = "--release" ] ; then - make html - else - make text - fi -else - echo "Usage: $0 [--release]" -fi diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100755 index 9c267ecc..00000000 --- a/entrypoint.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -if [ -n "${GITHUB_WORKSPACE}" ]; -then - cd documentation - ./docu.sh --release - cp -a ${GITHUB_WORKSPACE}/documentation/_build/html ${GITHUB_WORKSPACE}/built_documentation -fi From 5ae145b62e6f95a08c5b067a201544ff045b65e9 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 17:47:42 +0200 Subject: [PATCH 16/23] docs: Move workflow figure into images folder Signed-off-by: Steffen Vogel --- documentation/{CIMpy.svg => images/cimpy_workflow.svg} | 0 documentation/index.rst | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename documentation/{CIMpy.svg => images/cimpy_workflow.svg} (100%) diff --git a/documentation/CIMpy.svg b/documentation/images/cimpy_workflow.svg similarity index 100% rename from documentation/CIMpy.svg rename to documentation/images/cimpy_workflow.svg diff --git a/documentation/index.rst b/documentation/index.rst index 2a98af48..d05f73f0 100644 --- a/documentation/index.rst +++ b/documentation/index.rst @@ -7,7 +7,7 @@ The processing of grid data is based on CIM compatible Python classes. The codeb The focus of CIMpy is on the support of the Common Grid Model Exchange Standard (CGMES) specified by the European Network of Transmission System Operators for Electricity (ENTSO-E). However, the CIMpy package can readily support further as well as new CIM versions if required. -.. image:: CIMpy.svg +.. image:: images/cimpy_workflow.svg Installation ------------- From 5eb9238a4492f81e2a5d481d8eaf8a99354fe33b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 17 Jun 2024 18:00:38 +0200 Subject: [PATCH 17/23] Fix code-smells detected by Sonar Cloud Signed-off-by: Steffen Vogel --- cimpy/cimexport.py | 4 ++-- cimpy/cimimport.py | 2 +- cimpy/utils.py | 18 +++++++++--------- tests/create_pickle_dump.py | 4 ++-- tests/test_export.py | 10 +++++----- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cimpy/cimexport.py b/cimpy/cimexport.py index 1e46a220..97795962 100644 --- a/cimpy/cimexport.py +++ b/cimpy/cimexport.py @@ -121,9 +121,9 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): # This function searches a class_object in the res dictionary and returns the corresponding key (the mRID). Necessary # for classes without mRID as attribute like SvVoltage def _search_mRID(class_object, topology): - for mRID, class_obj in topology.items(): + for id, class_obj in topology.items(): if class_object == class_obj: - return mRID + return id return "" diff --git a/cimpy/cimimport.py b/cimpy/cimimport.py index 2a4fc350..ef2aa701 100644 --- a/cimpy/cimimport.py +++ b/cimpy/cimimport.py @@ -386,7 +386,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Clear children of the root element to minimise memory usage. root.clear() - logger.info('END of parsing file "{}"', xml_file) + logger.info('END of parsing file "%s"', xml_file) return import_result, logger_grouped diff --git a/cimpy/utils.py b/cimpy/utils.py index 933249be..ca668979 100644 --- a/cimpy/utils.py +++ b/cimpy/utils.py @@ -14,22 +14,22 @@ def node_breaker_to_bus_branch(import_result): diagram_objects_list = [] diagram_object_points_list = [] connect_nodes = [] - for mRID in res.keys(): - class_name = res[mRID].__class__.__name__ + for id in res.keys(): + class_name = res[id].__class__.__name__ if class_name == "Breaker": - breaker_list.append(mRID) + breaker_list.append(id) elif class_name == "OperationalLimitSet": - operational_limit_set_list.append(mRID) + operational_limit_set_list.append(id) elif class_name == "Terminal": - terminals_list.append(mRID) + terminals_list.append(id) elif class_name == "VoltageLimit": - voltage_limit_list.append(mRID) + voltage_limit_list.append(id) elif class_name == "DiagramObject": - diagram_objects_list.append(mRID) + diagram_objects_list.append(id) elif class_name == "DiagramObjectPoint": - diagram_object_points_list.append(mRID) + diagram_object_points_list.append(id) elif class_name == "ConnectivityNode": - connect_nodes.append(mRID) + connect_nodes.append(id) # Search for open breakers open_breakers = [] diff --git a/tests/create_pickle_dump.py b/tests/create_pickle_dump.py index 89ec43a6..eb11b742 100644 --- a/tests/create_pickle_dump.py +++ b/tests/create_pickle_dump.py @@ -16,9 +16,9 @@ def create_pickle(): imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") - CGMES_object = cimpy.cimexport._get_class_attributes_with_references(imported_result, "cgmes_v2_4_15") + cgmes_object = cimpy.cimexport._get_class_attributes_with_references(imported_result, "cgmes_v2_4_15") - pickle.dump(CGMES_object, open("CIGREMV_import_reference_cgmes_v2_4_15.p1", "wb")) + pickle.dump(cgmes_object, open("CIGREMV_import_reference_cgmes_v2_4_15.p1", "wb")) create_pickle() diff --git a/tests/test_export.py b/tests/test_export.py index 25503b40..9e0c4112 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -160,11 +160,11 @@ def test_export_with_imported_files(sample_cimdata, tmpdir): check.is_in("$rdf:about", current_export_class.keys()) check.is_in("$rdf:ID", current_export_class.keys()) - for mRID in test_mrids: - check.is_in(mRID, export_mrids) - if mRID in export_mrids: - test_attr = test_class_dict[mRID].items() - export_attr = export_class_dict[mRID].items() + for id in test_mrids: + check.is_in(id, export_mrids) + if id in export_mrids: + test_attr = test_class_dict[id].items() + export_attr = export_class_dict[id].items() for item in test_attr: if item[0] in [ "cim:NameType", From 932de3bdf0b28633551eb06f69526cbd8c41da0e Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 09:54:31 +0200 Subject: [PATCH 18/23] fix(ci): Fix permissions of GITHUB_TOKEN in order to deploy GitHub pages Signed-off-by: Steffen Vogel --- .github/workflows/docs.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 0833a00a..fbc78fbe 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -15,6 +15,10 @@ jobs: name: Build runs-on: ubuntu-latest + permissions: + pages: write + id-token: write + steps: - name: Checkout repository uses: actions/checkout@v4 From 8c3688eee296a99665397e96bee0e8571a252a9b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 21:15:31 +0200 Subject: [PATCH 19/23] fix(ci): Another take at fixing the pages deployment Signed-off-by: Steffen Vogel --- .github/workflows/docs.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index fbc78fbe..7d474fe8 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -19,6 +19,10 @@ jobs: pages: write id-token: write + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -62,4 +66,5 @@ jobs: - name: Deploy to GitHub Pages if: github.ref == 'refs/heads/master' + id: deployment uses: actions/deploy-pages@v4 From b9c3abbf48e1f1238368c92872e7cd54b0d5d8fc Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 21:24:01 +0200 Subject: [PATCH 20/23] fix(doc): Update copyright year Signed-off-by: Steffen Vogel --- documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/conf.py b/documentation/conf.py index 36c513cd..55313e0e 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -19,8 +19,8 @@ # -- Project information ----------------------------------------------------- project = "cimpy" -copyright = "2019, ACS RWTH Aachen University" -author = "Author" +copyright = "2019-2024, ACS RWTH Aachen University" +author = "The CIMpy authors" # -- General configuration --------------------------------------------------- From d611e325a4bc305c9c5a4c952595903633ce958f Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 20 Jun 2024 22:41:05 +0200 Subject: [PATCH 21/23] Bump version to v1.1.0 Signed-off-by: Steffen Vogel --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dac3e782..692384c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cimpy" -version = "1.0.2" +version = "1.1.0" description = "Python package for import, modification and export of CIM grid data" authors = [ {name="Institute for Automation of Complex Power Systems"}, From fb219e7a0b9ae6fac78e40cecb90ff1f30ee0fe7 Mon Sep 17 00:00:00 2001 From: Markus Mirz Date: Sat, 22 Jun 2024 10:58:18 +0200 Subject: [PATCH 22/23] switch to Apache license Signed-off-by: Markus Mirz --- LICENSE | 574 +++++++++++++++++-------------------------------- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 203 insertions(+), 375 deletions(-) diff --git a/LICENSE b/LICENSE index a612ad98..13ec2b54 100644 --- a/LICENSE +++ b/LICENSE @@ -1,373 +1,201 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2021 ACS / Public / CIM + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md index 6ba6b2e1..c892b3ce 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The documentation provides instructions on CIMpy's installation, getting started ## License -This project is released under the terms of the [Mozilla Public License Version 2.0](./LICENSE). +This project is released under the terms of the [Apache License 2.0](./LICENSE). ## Publication diff --git a/pyproject.toml b/pyproject.toml index 692384c3..5854c06e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ requires-python = ">=3.8" classifiers = [ "Development Status :: 5 - Production/Stable", - "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", + "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", From 0b0ed7d7fb60586a32ead4182476505b09b9aca8 Mon Sep 17 00:00:00 2001 From: Thomas Schwierz Date: Thu, 5 Sep 2024 13:15:52 +0200 Subject: [PATCH 23/23] Added cimpy 3_0 version --- cimpy/cgmes_v2_4_15/ACDCConverter.py | 85 - .../cgmes_v2_4_15/ACDCConverterDCTerminal.py | 34 - cimpy/cgmes_v2_4_15/ACDCTerminal.py | 43 - cimpy/cgmes_v2_4_15/ACLineSegment.py | 55 - cimpy/cgmes_v2_4_15/Accumulator.py | 34 - cimpy/cgmes_v2_4_15/AccumulatorLimit.py | 34 - cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py | 34 - cimpy/cgmes_v2_4_15/AccumulatorReset.py | 31 - cimpy/cgmes_v2_4_15/AccumulatorValue.py | 37 - cimpy/cgmes_v2_4_15/ActivePower.py | 36 - cimpy/cgmes_v2_4_15/ActivePowerLimit.py | 31 - .../ActivePowerPerCurrentFlow.py | 42 - .../cgmes_v2_4_15/ActivePowerPerFrequency.py | 42 - cimpy/cgmes_v2_4_15/Analog.py | 37 - cimpy/cgmes_v2_4_15/AnalogControl.py | 37 - cimpy/cgmes_v2_4_15/AnalogLimit.py | 34 - cimpy/cgmes_v2_4_15/AnalogLimitSet.py | 34 - cimpy/cgmes_v2_4_15/AnalogValue.py | 37 - cimpy/cgmes_v2_4_15/AngleDegrees.py | 36 - cimpy/cgmes_v2_4_15/AngleRadians.py | 36 - cimpy/cgmes_v2_4_15/ApparentPower.py | 36 - cimpy/cgmes_v2_4_15/ApparentPowerLimit.py | 31 - cimpy/cgmes_v2_4_15/Area.py | 36 - cimpy/cgmes_v2_4_15/AsynchronousMachine.py | 61 - .../AsynchronousMachineDynamics.py | 40 - .../AsynchronousMachineEquivalentCircuit.py | 43 - .../cgmes_v2_4_15/AsynchronousMachineKind.py | 28 - ...synchronousMachineTimeConstantReactance.py | 43 - .../AsynchronousMachineUserDefined.py | 34 - cimpy/cgmes_v2_4_15/BaseVoltage.py | 43 - cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py | 37 - cimpy/cgmes_v2_4_15/Bay.py | 31 - cimpy/cgmes_v2_4_15/Boolean.py | 28 - cimpy/cgmes_v2_4_15/Breaker.py | 29 - cimpy/cgmes_v2_4_15/BusNameMarker.py | 37 - cimpy/cgmes_v2_4_15/BusbarSection.py | 31 - cimpy/cgmes_v2_4_15/Capacitance.py | 36 - cimpy/cgmes_v2_4_15/Command.py | 40 - cimpy/cgmes_v2_4_15/Conductance.py | 36 - cimpy/cgmes_v2_4_15/ConductingEquipment.py | 37 - cimpy/cgmes_v2_4_15/Conductor.py | 31 - cimpy/cgmes_v2_4_15/ConformLoad.py | 31 - cimpy/cgmes_v2_4_15/ConformLoadGroup.py | 34 - cimpy/cgmes_v2_4_15/ConformLoadSchedule.py | 31 - cimpy/cgmes_v2_4_15/ConnectivityNode.py | 58 - .../ConnectivityNodeContainer.py | 34 - cimpy/cgmes_v2_4_15/Connector.py | 29 - cimpy/cgmes_v2_4_15/Control.py | 46 - cimpy/cgmes_v2_4_15/ControlArea.py | 46 - .../ControlAreaGeneratingUnit.py | 34 - cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py | 28 - cimpy/cgmes_v2_4_15/CoordinateSystem.py | 34 - cimpy/cgmes_v2_4_15/CsConverter.py | 70 - cimpy/cgmes_v2_4_15/CsOperatingModeKind.py | 28 - cimpy/cgmes_v2_4_15/CsPpccControlKind.py | 28 - cimpy/cgmes_v2_4_15/Currency.py | 28 - cimpy/cgmes_v2_4_15/CurrentFlow.py | 36 - cimpy/cgmes_v2_4_15/CurrentLimit.py | 31 - cimpy/cgmes_v2_4_15/Curve.py | 43 - cimpy/cgmes_v2_4_15/CurveData.py | 39 - cimpy/cgmes_v2_4_15/CurveStyle.py | 28 - cimpy/cgmes_v2_4_15/DCBaseTerminal.py | 34 - cimpy/cgmes_v2_4_15/DCBreaker.py | 29 - cimpy/cgmes_v2_4_15/DCBusbar.py | 29 - cimpy/cgmes_v2_4_15/DCChopper.py | 29 - cimpy/cgmes_v2_4_15/DCConductingEquipment.py | 31 - .../DCConverterOperatingModeKind.py | 28 - cimpy/cgmes_v2_4_15/DCConverterUnit.py | 34 - cimpy/cgmes_v2_4_15/DCDisconnector.py | 29 - cimpy/cgmes_v2_4_15/DCEquipmentContainer.py | 34 - cimpy/cgmes_v2_4_15/DCGround.py | 34 - cimpy/cgmes_v2_4_15/DCLine.py | 31 - cimpy/cgmes_v2_4_15/DCLineSegment.py | 43 - cimpy/cgmes_v2_4_15/DCNode.py | 37 - cimpy/cgmes_v2_4_15/DCPolarityKind.py | 28 - cimpy/cgmes_v2_4_15/DCSeriesDevice.py | 37 - cimpy/cgmes_v2_4_15/DCShunt.py | 37 - cimpy/cgmes_v2_4_15/DCSwitch.py | 29 - cimpy/cgmes_v2_4_15/DCTerminal.py | 31 - cimpy/cgmes_v2_4_15/DCTopologicalIsland.py | 31 - cimpy/cgmes_v2_4_15/DCTopologicalNode.py | 40 - cimpy/cgmes_v2_4_15/Date.py | 28 - cimpy/cgmes_v2_4_15/DateTime.py | 28 - cimpy/cgmes_v2_4_15/DayType.py | 31 - cimpy/cgmes_v2_4_15/Decimal.py | 28 - cimpy/cgmes_v2_4_15/Diagram.py | 49 - cimpy/cgmes_v2_4_15/DiagramObject.py | 58 - cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py | 30 - cimpy/cgmes_v2_4_15/DiagramObjectPoint.py | 45 - cimpy/cgmes_v2_4_15/DiagramObjectStyle.py | 31 - cimpy/cgmes_v2_4_15/DiagramStyle.py | 31 - cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py | 82 - cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py | 43 - cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py | 34 - cimpy/cgmes_v2_4_15/Disconnector.py | 29 - .../DiscontinuousExcitationControlDynamics.py | 34 - ...scontinuousExcitationControlUserDefined.py | 34 - cimpy/cgmes_v2_4_15/Discrete.py | 34 - cimpy/cgmes_v2_4_15/DiscreteValue.py | 37 - .../cgmes_v2_4_15/DroopSignalFeedbackKind.py | 28 - cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py | 31 - cimpy/cgmes_v2_4_15/EarthFaultCompensator.py | 31 - cimpy/cgmes_v2_4_15/EnergyArea.py | 31 - cimpy/cgmes_v2_4_15/EnergyConsumer.py | 52 - cimpy/cgmes_v2_4_15/EnergySchedulingType.py | 31 - cimpy/cgmes_v2_4_15/EnergySource.py | 67 - cimpy/cgmes_v2_4_15/Equipment.py | 37 - cimpy/cgmes_v2_4_15/EquipmentContainer.py | 31 - cimpy/cgmes_v2_4_15/EquivalentBranch.py | 76 - cimpy/cgmes_v2_4_15/EquivalentEquipment.py | 31 - cimpy/cgmes_v2_4_15/EquivalentInjection.py | 76 - cimpy/cgmes_v2_4_15/EquivalentNetwork.py | 31 - cimpy/cgmes_v2_4_15/EquivalentShunt.py | 34 - cimpy/cgmes_v2_4_15/ExcAC1A.py | 94 - cimpy/cgmes_v2_4_15/ExcAC2A.py | 112 - cimpy/cgmes_v2_4_15/ExcAC3A.py | 106 - cimpy/cgmes_v2_4_15/ExcAC4A.py | 55 - cimpy/cgmes_v2_4_15/ExcAC5A.py | 82 - cimpy/cgmes_v2_4_15/ExcAC6A.py | 97 - cimpy/cgmes_v2_4_15/ExcAC8B.py | 109 - cimpy/cgmes_v2_4_15/ExcANS.py | 70 - cimpy/cgmes_v2_4_15/ExcAVR1.py | 64 - cimpy/cgmes_v2_4_15/ExcAVR2.py | 67 - cimpy/cgmes_v2_4_15/ExcAVR3.py | 64 - cimpy/cgmes_v2_4_15/ExcAVR4.py | 70 - cimpy/cgmes_v2_4_15/ExcAVR5.py | 37 - cimpy/cgmes_v2_4_15/ExcAVR7.py | 91 - cimpy/cgmes_v2_4_15/ExcBBC.py | 61 - cimpy/cgmes_v2_4_15/ExcCZ.py | 58 - cimpy/cgmes_v2_4_15/ExcDC1A.py | 82 - cimpy/cgmes_v2_4_15/ExcDC2A.py | 82 - cimpy/cgmes_v2_4_15/ExcDC3A.py | 76 - cimpy/cgmes_v2_4_15/ExcDC3A1.py | 70 - cimpy/cgmes_v2_4_15/ExcELIN1.py | 73 - cimpy/cgmes_v2_4_15/ExcELIN2.py | 109 - cimpy/cgmes_v2_4_15/ExcHU.py | 64 - cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py | 82 - cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py | 91 - cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py | 91 - cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py | 55 - cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py | 70 - cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py | 94 - cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py | 106 - cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py | 82 - cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py | 76 - cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py | 76 - cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py | 61 - cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py | 85 - cimpy/cgmes_v2_4_15/ExcIEEEST1A.py | 85 - .../ExcIEEEST1AUELselectorKind.py | 28 - cimpy/cgmes_v2_4_15/ExcIEEEST2A.py | 67 - cimpy/cgmes_v2_4_15/ExcIEEEST3A.py | 88 - cimpy/cgmes_v2_4_15/ExcIEEEST4B.py | 76 - cimpy/cgmes_v2_4_15/ExcIEEEST5B.py | 79 - cimpy/cgmes_v2_4_15/ExcIEEEST6B.py | 70 - cimpy/cgmes_v2_4_15/ExcIEEEST7B.py | 73 - cimpy/cgmes_v2_4_15/ExcOEX3T.py | 85 - cimpy/cgmes_v2_4_15/ExcPIC.py | 97 - cimpy/cgmes_v2_4_15/ExcREXS.py | 136 - .../ExcREXSFeedbackSignalKind.py | 28 - cimpy/cgmes_v2_4_15/ExcSCRX.py | 52 - cimpy/cgmes_v2_4_15/ExcSEXS.py | 58 - cimpy/cgmes_v2_4_15/ExcSK.py | 124 - cimpy/cgmes_v2_4_15/ExcST1A.py | 82 - cimpy/cgmes_v2_4_15/ExcST2A.py | 73 - cimpy/cgmes_v2_4_15/ExcST3A.py | 88 - cimpy/cgmes_v2_4_15/ExcST4B.py | 85 - cimpy/cgmes_v2_4_15/ExcST6B.py | 97 - cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py | 28 - cimpy/cgmes_v2_4_15/ExcST7B.py | 76 - cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py | 28 - cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py | 28 - .../cgmes_v2_4_15/ExcitationSystemDynamics.py | 52 - .../ExcitationSystemUserDefined.py | 34 - .../cgmes_v2_4_15/ExternalNetworkInjection.py | 82 - cimpy/cgmes_v2_4_15/Float.py | 28 - cimpy/cgmes_v2_4_15/FossilFuel.py | 34 - .../FrancisGovernorControlKind.py | 28 - cimpy/cgmes_v2_4_15/Frequency.py | 36 - cimpy/cgmes_v2_4_15/FuelType.py | 28 - .../cgmes_v2_4_15/GenICompensationForGenJ.py | 40 - cimpy/cgmes_v2_4_15/GeneratingUnit.py | 85 - cimpy/cgmes_v2_4_15/GeneratorControlSource.py | 28 - .../GenericNonLinearLoadModelKind.py | 28 - cimpy/cgmes_v2_4_15/GeographicalRegion.py | 31 - cimpy/cgmes_v2_4_15/GovCT1.py | 133 - cimpy/cgmes_v2_4_15/GovCT2.py | 196 - cimpy/cgmes_v2_4_15/GovGAST.py | 58 - cimpy/cgmes_v2_4_15/GovGAST1.py | 130 - cimpy/cgmes_v2_4_15/GovGAST2.py | 124 - cimpy/cgmes_v2_4_15/GovGAST3.py | 91 - cimpy/cgmes_v2_4_15/GovGAST4.py | 61 - cimpy/cgmes_v2_4_15/GovGASTWD.py | 127 - cimpy/cgmes_v2_4_15/GovHydro1.py | 70 - cimpy/cgmes_v2_4_15/GovHydro2.py | 115 - cimpy/cgmes_v2_4_15/GovHydro3.py | 136 - cimpy/cgmes_v2_4_15/GovHydro4.py | 142 - cimpy/cgmes_v2_4_15/GovHydroDD.py | 133 - cimpy/cgmes_v2_4_15/GovHydroFrancis.py | 109 - cimpy/cgmes_v2_4_15/GovHydroIEEE0.py | 52 - cimpy/cgmes_v2_4_15/GovHydroIEEE2.py | 106 - cimpy/cgmes_v2_4_15/GovHydroPID.py | 127 - cimpy/cgmes_v2_4_15/GovHydroPID2.py | 94 - cimpy/cgmes_v2_4_15/GovHydroPelton.py | 112 - cimpy/cgmes_v2_4_15/GovHydroR.py | 154 - cimpy/cgmes_v2_4_15/GovHydroWEH.py | 181 - cimpy/cgmes_v2_4_15/GovHydroWPID.py | 94 - cimpy/cgmes_v2_4_15/GovSteam0.py | 52 - cimpy/cgmes_v2_4_15/GovSteam1.py | 145 - cimpy/cgmes_v2_4_15/GovSteam2.py | 52 - cimpy/cgmes_v2_4_15/GovSteamCC.py | 79 - cimpy/cgmes_v2_4_15/GovSteamEU.py | 133 - cimpy/cgmes_v2_4_15/GovSteamFV2.py | 67 - cimpy/cgmes_v2_4_15/GovSteamFV3.py | 85 - cimpy/cgmes_v2_4_15/GovSteamFV4.py | 181 - cimpy/cgmes_v2_4_15/GovSteamIEEE1.py | 91 - cimpy/cgmes_v2_4_15/GovSteamSGO.py | 64 - .../GrossToNetActivePowerCurve.py | 31 - cimpy/cgmes_v2_4_15/Ground.py | 29 - cimpy/cgmes_v2_4_15/GroundDisconnector.py | 29 - cimpy/cgmes_v2_4_15/GroundingImpedance.py | 31 - .../HydroEnergyConversionKind.py | 28 - cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py | 34 - cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py | 28 - cimpy/cgmes_v2_4_15/HydroPowerPlant.py | 37 - cimpy/cgmes_v2_4_15/HydroPump.py | 34 - cimpy/cgmes_v2_4_15/IdentifiedObject.py | 45 - cimpy/cgmes_v2_4_15/IfdBaseKind.py | 28 - cimpy/cgmes_v2_4_15/Inductance.py | 36 - cimpy/cgmes_v2_4_15/InputSignalKind.py | 28 - cimpy/cgmes_v2_4_15/Integer.py | 28 - cimpy/cgmes_v2_4_15/Junction.py | 29 - cimpy/cgmes_v2_4_15/Length.py | 36 - cimpy/cgmes_v2_4_15/Limit.py | 29 - cimpy/cgmes_v2_4_15/LimitSet.py | 31 - cimpy/cgmes_v2_4_15/Line.py | 31 - cimpy/cgmes_v2_4_15/LinearShuntCompensator.py | 40 - cimpy/cgmes_v2_4_15/LoadAggregate.py | 34 - cimpy/cgmes_v2_4_15/LoadArea.py | 31 - cimpy/cgmes_v2_4_15/LoadBreakSwitch.py | 29 - cimpy/cgmes_v2_4_15/LoadComposite.py | 61 - cimpy/cgmes_v2_4_15/LoadDynamics.py | 31 - cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py | 55 - cimpy/cgmes_v2_4_15/LoadGroup.py | 31 - cimpy/cgmes_v2_4_15/LoadMotor.py | 70 - .../LoadResponseCharacteristic.py | 64 - cimpy/cgmes_v2_4_15/LoadStatic.py | 82 - cimpy/cgmes_v2_4_15/LoadUserDefined.py | 34 - cimpy/cgmes_v2_4_15/Location.py | 37 - cimpy/cgmes_v2_4_15/Measurement.py | 46 - cimpy/cgmes_v2_4_15/MeasurementValue.py | 40 - .../cgmes_v2_4_15/MeasurementValueQuality.py | 31 - cimpy/cgmes_v2_4_15/MeasurementValueSource.py | 31 - cimpy/cgmes_v2_4_15/MechLoad1.py | 40 - cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py | 34 - .../MechanicalLoadUserDefined.py | 34 - cimpy/cgmes_v2_4_15/Money.py | 36 - cimpy/cgmes_v2_4_15/MonthDay.py | 28 - cimpy/cgmes_v2_4_15/MutualCoupling.py | 58 - cimpy/cgmes_v2_4_15/NonConformLoad.py | 31 - cimpy/cgmes_v2_4_15/NonConformLoadGroup.py | 34 - cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py | 31 - .../NonlinearShuntCompensator.py | 31 - .../NonlinearShuntCompensatorPoint.py | 45 - cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py | 29 - cimpy/cgmes_v2_4_15/OperationalLimit.py | 34 - .../OperationalLimitDirectionKind.py | 28 - cimpy/cgmes_v2_4_15/OperationalLimitSet.py | 37 - cimpy/cgmes_v2_4_15/OperationalLimitType.py | 40 - cimpy/cgmes_v2_4_15/OrientationKind.py | 28 - cimpy/cgmes_v2_4_15/OverexcLim2.py | 40 - cimpy/cgmes_v2_4_15/OverexcLimIEEE.py | 46 - cimpy/cgmes_v2_4_15/OverexcLimX1.py | 58 - cimpy/cgmes_v2_4_15/OverexcLimX2.py | 61 - .../OverexcitationLimiterDynamics.py | 31 - .../OverexcitationLimiterUserDefined.py | 34 - .../PFVArControllerType1Dynamics.py | 37 - .../PFVArControllerType1UserDefined.py | 34 - .../PFVArControllerType2Dynamics.py | 31 - .../PFVArControllerType2UserDefined.py | 34 - .../PFVArType1IEEEPFController.py | 52 - .../PFVArType1IEEEVArController.py | 46 - cimpy/cgmes_v2_4_15/PFVArType2Common1.py | 43 - .../PFVArType2IEEEPFController.py | 49 - .../PFVArType2IEEEVArController.py | 49 - cimpy/cgmes_v2_4_15/PU.py | 36 - cimpy/cgmes_v2_4_15/PerCent.py | 36 - cimpy/cgmes_v2_4_15/PetersenCoil.py | 49 - cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py | 28 - cimpy/cgmes_v2_4_15/PhaseCode.py | 28 - cimpy/cgmes_v2_4_15/PhaseTapChanger.py | 31 - .../PhaseTapChangerAsymmetrical.py | 31 - cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py | 37 - .../cgmes_v2_4_15/PhaseTapChangerNonLinear.py | 37 - .../PhaseTapChangerSymmetrical.py | 29 - cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py | 34 - .../PhaseTapChangerTablePoint.py | 34 - cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py | 31 - cimpy/cgmes_v2_4_15/PositionPoint.py | 42 - cimpy/cgmes_v2_4_15/PowerSystemResource.py | 37 - .../PowerSystemStabilizerDynamics.py | 34 - .../PowerSystemStabilizerUserDefined.py | 34 - cimpy/cgmes_v2_4_15/PowerTransformer.py | 49 - cimpy/cgmes_v2_4_15/PowerTransformerEnd.py | 67 - .../ProprietaryParameterDynamics.py | 93 - cimpy/cgmes_v2_4_15/ProtectedSwitch.py | 29 - cimpy/cgmes_v2_4_15/Pss1.py | 73 - cimpy/cgmes_v2_4_15/Pss1A.py | 94 - cimpy/cgmes_v2_4_15/Pss2B.py | 121 - cimpy/cgmes_v2_4_15/Pss2ST.py | 82 - cimpy/cgmes_v2_4_15/Pss5.py | 79 - cimpy/cgmes_v2_4_15/PssELIN2.py | 61 - cimpy/cgmes_v2_4_15/PssIEEE1A.py | 64 - cimpy/cgmes_v2_4_15/PssIEEE2B.py | 109 - cimpy/cgmes_v2_4_15/PssIEEE3B.py | 85 - cimpy/cgmes_v2_4_15/PssIEEE4B.py | 229 - cimpy/cgmes_v2_4_15/PssPTIST1.py | 61 - cimpy/cgmes_v2_4_15/PssPTIST3.py | 130 - cimpy/cgmes_v2_4_15/PssSB4.py | 61 - cimpy/cgmes_v2_4_15/PssSH.py | 67 - cimpy/cgmes_v2_4_15/PssSK.py | 61 - cimpy/cgmes_v2_4_15/PssWECC.py | 82 - cimpy/cgmes_v2_4_15/Quality61850.py | 63 - cimpy/cgmes_v2_4_15/RaiseLowerCommand.py | 31 - cimpy/cgmes_v2_4_15/RatioTapChanger.py | 40 - cimpy/cgmes_v2_4_15/RatioTapChangerTable.py | 34 - .../RatioTapChangerTablePoint.py | 31 - cimpy/cgmes_v2_4_15/Reactance.py | 36 - .../cgmes_v2_4_15/ReactiveCapabilityCurve.py | 34 - cimpy/cgmes_v2_4_15/ReactivePower.py | 36 - .../cgmes_v2_4_15/RegularIntervalSchedule.py | 37 - cimpy/cgmes_v2_4_15/RegularTimePoint.py | 39 - cimpy/cgmes_v2_4_15/RegulatingCondEq.py | 34 - cimpy/cgmes_v2_4_15/RegulatingControl.py | 55 - .../RegulatingControlModeKind.py | 28 - cimpy/cgmes_v2_4_15/RegulationSchedule.py | 31 - cimpy/cgmes_v2_4_15/RemoteInputSignal.py | 58 - cimpy/cgmes_v2_4_15/RemoteSignalKind.py | 28 - cimpy/cgmes_v2_4_15/ReportingGroup.py | 34 - cimpy/cgmes_v2_4_15/Resistance.py | 36 - cimpy/cgmes_v2_4_15/RotatingMachine.py | 49 - .../cgmes_v2_4_15/RotatingMachineDynamics.py | 46 - cimpy/cgmes_v2_4_15/RotationSpeed.py | 42 - cimpy/cgmes_v2_4_15/RotorKind.py | 28 - cimpy/cgmes_v2_4_15/SVCControlMode.py | 28 - cimpy/cgmes_v2_4_15/Season.py | 37 - cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py | 34 - cimpy/cgmes_v2_4_15/Seconds.py | 36 - cimpy/cgmes_v2_4_15/SeriesCompensator.py | 49 - cimpy/cgmes_v2_4_15/SetPoint.py | 34 - cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py | 28 - cimpy/cgmes_v2_4_15/ShuntCompensator.py | 58 - cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py | 29 - cimpy/cgmes_v2_4_15/Source.py | 28 - cimpy/cgmes_v2_4_15/StaticLoadModelKind.py | 28 - cimpy/cgmes_v2_4_15/StaticVarCompensator.py | 46 - cimpy/cgmes_v2_4_15/StationSupply.py | 29 - cimpy/cgmes_v2_4_15/StringMeasurement.py | 31 - cimpy/cgmes_v2_4_15/StringMeasurementValue.py | 34 - cimpy/cgmes_v2_4_15/SubGeographicalRegion.py | 40 - cimpy/cgmes_v2_4_15/SubLoadArea.py | 34 - cimpy/cgmes_v2_4_15/Substation.py | 37 - cimpy/cgmes_v2_4_15/Susceptance.py | 36 - cimpy/cgmes_v2_4_15/SvInjection.py | 36 - cimpy/cgmes_v2_4_15/SvPowerFlow.py | 36 - .../SvShuntCompensatorSections.py | 33 - cimpy/cgmes_v2_4_15/SvStatus.py | 33 - cimpy/cgmes_v2_4_15/SvTapStep.py | 33 - cimpy/cgmes_v2_4_15/SvVoltage.py | 36 - cimpy/cgmes_v2_4_15/Switch.py | 43 - cimpy/cgmes_v2_4_15/SwitchSchedule.py | 31 - cimpy/cgmes_v2_4_15/SynchronousMachine.py | 97 - .../SynchronousMachineDetailed.py | 43 - .../SynchronousMachineDynamics.py | 43 - .../SynchronousMachineEquivalentCircuit.py | 61 - cimpy/cgmes_v2_4_15/SynchronousMachineKind.py | 28 - .../SynchronousMachineModelKind.py | 28 - .../SynchronousMachineOperatingMode.py | 28 - .../SynchronousMachineSimplified.py | 29 - ...SynchronousMachineTimeConstantReactance.py | 70 - .../SynchronousMachineUserDefined.py | 34 - cimpy/cgmes_v2_4_15/TapChanger.py | 61 - cimpy/cgmes_v2_4_15/TapChangerControl.py | 31 - cimpy/cgmes_v2_4_15/TapChangerTablePoint.py | 45 - cimpy/cgmes_v2_4_15/TapSchedule.py | 31 - cimpy/cgmes_v2_4_15/Temperature.py | 36 - cimpy/cgmes_v2_4_15/Terminal.py | 64 - cimpy/cgmes_v2_4_15/TextDiagramObject.py | 31 - cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py | 31 - cimpy/cgmes_v2_4_15/TieFlow.py | 36 - cimpy/cgmes_v2_4_15/TopologicalIsland.py | 34 - cimpy/cgmes_v2_4_15/TopologicalNode.py | 76 - cimpy/cgmes_v2_4_15/TransformerControlMode.py | 28 - cimpy/cgmes_v2_4_15/TransformerEnd.py | 52 - cimpy/cgmes_v2_4_15/TurbLCFB1.py | 64 - .../cgmes_v2_4_15/TurbineGovernorDynamics.py | 37 - .../TurbineGovernorUserDefined.py | 34 - .../TurbineLoadControllerDynamics.py | 31 - .../TurbineLoadControllerUserDefined.py | 34 - cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py | 49 - cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py | 73 - cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py | 148 - cimpy/cgmes_v2_4_15/UnderexcLimX1.py | 46 - cimpy/cgmes_v2_4_15/UnderexcLimX2.py | 49 - .../UnderexcitationLimiterDynamics.py | 34 - .../UnderexcitationLimiterUserDefined.py | 34 - cimpy/cgmes_v2_4_15/UnitMultiplier.py | 28 - cimpy/cgmes_v2_4_15/UnitSymbol.py | 28 - cimpy/cgmes_v2_4_15/VAdjIEEE.py | 46 - cimpy/cgmes_v2_4_15/VCompIEEEType1.py | 37 - cimpy/cgmes_v2_4_15/VCompIEEEType2.py | 34 - cimpy/cgmes_v2_4_15/Validity.py | 28 - cimpy/cgmes_v2_4_15/ValueAliasSet.py | 40 - cimpy/cgmes_v2_4_15/ValueToAlias.py | 34 - cimpy/cgmes_v2_4_15/VisibilityLayer.py | 34 - cimpy/cgmes_v2_4_15/Voltage.py | 36 - .../cgmes_v2_4_15/VoltageAdjusterDynamics.py | 31 - .../VoltageAdjusterUserDefined.py | 34 - .../VoltageCompensatorDynamics.py | 34 - .../VoltageCompensatorUserDefined.py | 34 - cimpy/cgmes_v2_4_15/VoltageLevel.py | 43 - cimpy/cgmes_v2_4_15/VoltageLimit.py | 31 - .../cgmes_v2_4_15/VoltagePerReactivePower.py | 42 - cimpy/cgmes_v2_4_15/VolumeFlowRate.py | 42 - cimpy/cgmes_v2_4_15/VsCapabilityCurve.py | 31 - cimpy/cgmes_v2_4_15/VsConverter.py | 64 - cimpy/cgmes_v2_4_15/VsPpccControlKind.py | 28 - cimpy/cgmes_v2_4_15/VsQpccControlKind.py | 28 - cimpy/cgmes_v2_4_15/WindAeroConstIEC.py | 31 - cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py | 46 - cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py | 49 - cimpy/cgmes_v2_4_15/WindContPType3IEC.py | 97 - cimpy/cgmes_v2_4_15/WindContPType4aIEC.py | 40 - cimpy/cgmes_v2_4_15/WindContPType4bIEC.py | 43 - cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py | 61 - cimpy/cgmes_v2_4_15/WindContQIEC.py | 109 - cimpy/cgmes_v2_4_15/WindContRotorRIEC.py | 58 - .../cgmes_v2_4_15/WindDynamicsLookupTable.py | 52 - cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py | 31 - cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py | 34 - cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py | 46 - .../cgmes_v2_4_15/WindGenTurbineType3aIEC.py | 37 - .../cgmes_v2_4_15/WindGenTurbineType3bIEC.py | 43 - cimpy/cgmes_v2_4_15/WindGenType4IEC.py | 40 - cimpy/cgmes_v2_4_15/WindGenUnitKind.py | 28 - cimpy/cgmes_v2_4_15/WindGeneratingUnit.py | 31 - .../WindLVRTQcontrolModesKind.py | 28 - .../WindLookupTableFunctionKind.py | 28 - cimpy/cgmes_v2_4_15/WindMechIEC.py | 49 - cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py | 61 - cimpy/cgmes_v2_4_15/WindPlantDynamics.py | 34 - .../cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py | 64 - cimpy/cgmes_v2_4_15/WindPlantIEC.py | 34 - .../WindPlantReactiveControlIEC.py | 70 - cimpy/cgmes_v2_4_15/WindPlantUserDefined.py | 34 - cimpy/cgmes_v2_4_15/WindProtectionIEC.py | 58 - cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py | 28 - .../WindTurbineType1or2Dynamics.py | 34 - cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py | 34 - .../WindTurbineType3or4Dynamics.py | 37 - cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py | 37 - cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py | 31 - cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py | 34 - .../cgmes_v2_4_15/WindType1or2UserDefined.py | 34 - .../cgmes_v2_4_15/WindType3or4UserDefined.py | 34 - cimpy/cgmes_v2_4_15/WindingConnection.py | 28 - cimpy/examples/import_cigre_mv.py | 26 - cimpy_3/Dockerfile | 35 + cimpy_3/LICENSE | 373 + cimpy_3/MANIFEST.in | 2 + cimpy_3/README.md | 26 + {cimpy => cimpy_3/cimpy}/__init__.py | 6 +- cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverter.py | 154 + .../cgmes_v2_4_15/ACDCConverterDCTerminal.py | 45 + cimpy_3/cimpy/cgmes_v2_4_15/ACDCTerminal.py | 66 + cimpy_3/cimpy/cgmes_v2_4_15/ACLineSegment.py | 89 + cimpy_3/cimpy/cgmes_v2_4_15/Accumulator.py | 41 + .../cimpy/cgmes_v2_4_15/AccumulatorLimit.py | 41 + .../cgmes_v2_4_15/AccumulatorLimitSet.py | 41 + .../cimpy/cgmes_v2_4_15/AccumulatorReset.py | 36 + .../cimpy/cgmes_v2_4_15/AccumulatorValue.py | 51 + cimpy_3/cimpy/cgmes_v2_4_15/ActivePower.py | 60 + .../cimpy/cgmes_v2_4_15/ActivePowerLimit.py | 39 + .../ActivePowerPerCurrentFlow.py | 60 + .../cgmes_v2_4_15/ActivePowerPerFrequency.py | 60 + cimpy_3/cimpy/cgmes_v2_4_15/Analog.py | 53 + cimpy_3/cimpy/cgmes_v2_4_15/AnalogControl.py | 46 + cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimit.py | 41 + cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimitSet.py | 41 + cimpy_3/cimpy/cgmes_v2_4_15/AnalogValue.py | 49 + cimpy_3/cimpy/cgmes_v2_4_15/AngleDegrees.py | 64 + cimpy_3/cimpy/cgmes_v2_4_15/AngleRadians.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/ApparentPower.py | 52 + .../cimpy/cgmes_v2_4_15/ApparentPowerLimit.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Area.py | 48 + .../cgmes_v2_4_15/AsynchronousMachine.py | 105 + .../AsynchronousMachineDynamics.py | 62 + .../AsynchronousMachineEquivalentCircuit.py | 59 + .../cgmes_v2_4_15/AsynchronousMachineKind.py | 31 + ...synchronousMachineTimeConstantReactance.py | 59 + .../AsynchronousMachineUserDefined.py | 46 + .../cimpy}/cgmes_v2_4_15/Base.py | 21 +- cimpy_3/cimpy/cgmes_v2_4_15/BaseVoltage.py | 69 + .../cgmes_v2_4_15/BasicIntervalSchedule.py | 51 + cimpy_3/cimpy/cgmes_v2_4_15/Bay.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Boolean.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/Breaker.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/BusNameMarker.py | 51 + cimpy_3/cimpy/cgmes_v2_4_15/BusbarSection.py | 36 + cimpy_3/cimpy/cgmes_v2_4_15/Capacitance.py | 48 + .../cgmes_v2_4_15/CapacitancePerLength.py | 60 + cimpy_3/cimpy/cgmes_v2_4_15/Command.py | 59 + cimpy_3/cimpy/cgmes_v2_4_15/Conductance.py | 48 + .../cgmes_v2_4_15/ConductingEquipment.py | 52 + cimpy_3/cimpy/cgmes_v2_4_15/Conductor.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/ConformLoad.py | 39 + .../cimpy/cgmes_v2_4_15/ConformLoadGroup.py | 43 + .../cgmes_v2_4_15/ConformLoadSchedule.py | 39 + .../cimpy/cgmes_v2_4_15/ConnectivityNode.py | 36 + .../ConnectivityNodeContainer.py | 40 + cimpy_3/cimpy/cgmes_v2_4_15/Connector.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/Control.py | 74 + cimpy_3/cimpy/cgmes_v2_4_15/ControlArea.py | 69 + .../ControlAreaGeneratingUnit.py | 44 + .../cgmes_v2_4_15/ControlAreaTypeKind.py | 31 + .../cimpy/cgmes_v2_4_15/CoordinateSystem.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/CsConverter.py | 123 + .../cgmes_v2_4_15/CsOperatingModeKind.py | 31 + .../cimpy/cgmes_v2_4_15/CsPpccControlKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Currency.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/CurrentFlow.py | 60 + cimpy_3/cimpy/cgmes_v2_4_15/CurrentLimit.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Curve.py | 68 + cimpy_3/cimpy/cgmes_v2_4_15/CurveData.py | 54 + cimpy_3/cimpy/cgmes_v2_4_15/CurveStyle.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/DCBaseTerminal.py | 45 + cimpy_3/cimpy/cgmes_v2_4_15/DCBreaker.py | 32 + cimpy_3/cimpy/cgmes_v2_4_15/DCBusbar.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/DCChopper.py | 35 + .../cgmes_v2_4_15/DCConductingEquipment.py | 36 + .../DCConverterOperatingModeKind.py | 31 + .../cimpy/cgmes_v2_4_15/DCConverterUnit.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/DCDisconnector.py | 32 + .../cgmes_v2_4_15/DCEquipmentContainer.py | 45 + cimpy_3/cimpy/cgmes_v2_4_15/DCGround.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/DCLine.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/DCLineSegment.py | 68 + cimpy_3/cimpy/cgmes_v2_4_15/DCNode.py | 57 + cimpy_3/cimpy/cgmes_v2_4_15/DCPolarityKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/DCSeriesDevice.py | 49 + cimpy_3/cimpy/cgmes_v2_4_15/DCShunt.py | 49 + cimpy_3/cimpy/cgmes_v2_4_15/DCSwitch.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/DCTerminal.py | 40 + .../cgmes_v2_4_15/DCTopologicalIsland.py | 39 + .../cimpy/cgmes_v2_4_15/DCTopologicalNode.py | 63 + cimpy_3/cimpy/cgmes_v2_4_15/Date.py | 37 + cimpy_3/cimpy/cgmes_v2_4_15/DateTime.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/DayType.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Decimal.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Diagram.py | 80 + .../cgmes_v2_4_15/DiagramLayoutVersion.py | 90 + cimpy_3/cimpy/cgmes_v2_4_15/DiagramObject.py | 98 + .../cgmes_v2_4_15/DiagramObjectGluePoint.py | 36 + .../cimpy/cgmes_v2_4_15/DiagramObjectPoint.py | 66 + .../cimpy/cgmes_v2_4_15/DiagramObjectStyle.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/DiagramStyle.py | 39 + .../cgmes_v2_4_15/DiscExcContIEEEDEC1A.py | 148 + .../cgmes_v2_4_15/DiscExcContIEEEDEC2A.py | 61 + .../cgmes_v2_4_15/DiscExcContIEEEDEC3A.py | 46 + cimpy_3/cimpy/cgmes_v2_4_15/Disconnector.py | 33 + .../DiscontinuousExcitationControlDynamics.py | 46 + ...scontinuousExcitationControlUserDefined.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/Discrete.py | 41 + cimpy_3/cimpy/cgmes_v2_4_15/DiscreteValue.py | 49 + .../cgmes_v2_4_15/DroopSignalFeedbackKind.py | 31 + .../cgmes_v2_4_15/DynamicsFunctionBlock.py | 39 + .../cimpy/cgmes_v2_4_15/DynamicsVersion.py | 90 + .../cgmes_v2_4_15/EarthFaultCompensator.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/EnergyArea.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/EnergyConsumer.py | 58 + .../cgmes_v2_4_15/EnergySchedulingType.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/EnergySource.py | 118 + cimpy_3/cimpy/cgmes_v2_4_15/Equipment.py | 58 + .../cgmes_v2_4_15/EquipmentBoundaryVersion.py | 96 + .../cimpy/cgmes_v2_4_15/EquipmentContainer.py | 39 + .../cimpy/cgmes_v2_4_15/EquipmentVersion.py | 114 + .../cimpy/cgmes_v2_4_15/EquivalentBranch.py | 134 + .../cgmes_v2_4_15/EquivalentEquipment.py | 40 + .../cgmes_v2_4_15/EquivalentInjection.py | 135 + .../cimpy/cgmes_v2_4_15/EquivalentNetwork.py | 39 + .../cimpy/cgmes_v2_4_15/EquivalentShunt.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC1A.py | 170 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC2A.py | 206 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC3A.py | 194 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC4A.py | 92 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC5A.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC6A.py | 176 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAC8B.py | 200 + cimpy_3/cimpy/cgmes_v2_4_15/ExcANS.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR1.py | 110 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR2.py | 116 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR3.py | 110 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR4.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR5.py | 49 + cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR7.py | 164 + cimpy_3/cimpy/cgmes_v2_4_15/ExcBBC.py | 104 + cimpy_3/cimpy/cgmes_v2_4_15/ExcCZ.py | 98 + cimpy_3/cimpy/cgmes_v2_4_15/ExcDC1A.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcDC2A.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A.py | 134 + cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A1.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN1.py | 128 + cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN2.py | 200 + cimpy_3/cimpy/cgmes_v2_4_15/ExcHU.py | 110 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py | 164 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py | 164 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py | 92 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py | 170 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py | 194 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py | 134 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py | 134 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py | 104 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py | 152 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py | 152 + .../ExcIEEEST1AUELselectorKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py | 116 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py | 158 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py | 134 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py | 140 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py | 128 + cimpy_3/cimpy/cgmes_v2_4_15/ExcOEX3T.py | 152 + cimpy_3/cimpy/cgmes_v2_4_15/ExcPIC.py | 176 + cimpy_3/cimpy/cgmes_v2_4_15/ExcREXS.py | 254 + .../ExcREXSFeedbackSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/ExcSCRX.py | 86 + cimpy_3/cimpy/cgmes_v2_4_15/ExcSEXS.py | 98 + cimpy_3/cimpy/cgmes_v2_4_15/ExcSK.py | 230 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST1A.py | 146 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST2A.py | 128 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST3A.py | 158 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST4B.py | 152 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST6B.py | 176 + .../cgmes_v2_4_15/ExcST6BOELselectorKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/ExcST7B.py | 134 + .../cgmes_v2_4_15/ExcST7BOELselectorKind.py | 31 + .../cgmes_v2_4_15/ExcST7BUELselectorKind.py | 31 + .../cgmes_v2_4_15/ExcitationSystemDynamics.py | 88 + .../ExcitationSystemUserDefined.py | 46 + .../cgmes_v2_4_15/ExternalNetworkInjection.py | 147 + cimpy_3/cimpy/cgmes_v2_4_15/Float.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/FossilFuel.py | 46 + .../FrancisGovernorControlKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Frequency.py | 52 + cimpy_3/cimpy/cgmes_v2_4_15/FuelType.py | 31 + .../cgmes_v2_4_15/GenICompensationForGenJ.py | 62 + cimpy_3/cimpy/cgmes_v2_4_15/GeneratingUnit.py | 144 + .../cgmes_v2_4_15/GeneratorControlSource.py | 31 + .../GenericNonLinearLoadModelKind.py | 31 + .../GeographicalLocationVersion.py | 90 + .../cimpy/cgmes_v2_4_15/GeographicalRegion.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/GovCT1.py | 248 + cimpy_3/cimpy/cgmes_v2_4_15/GovCT2.py | 374 + cimpy_3/cimpy/cgmes_v2_4_15/GovGAST.py | 98 + cimpy_3/cimpy/cgmes_v2_4_15/GovGAST1.py | 242 + cimpy_3/cimpy/cgmes_v2_4_15/GovGAST2.py | 230 + cimpy_3/cimpy/cgmes_v2_4_15/GovGAST3.py | 164 + cimpy_3/cimpy/cgmes_v2_4_15/GovGAST4.py | 104 + cimpy_3/cimpy/cgmes_v2_4_15/GovGASTWD.py | 236 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydro1.py | 122 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydro2.py | 212 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydro3.py | 254 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydro4.py | 266 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroDD.py | 248 + .../cimpy/cgmes_v2_4_15/GovHydroFrancis.py | 200 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py | 86 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py | 194 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID.py | 236 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID2.py | 170 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPelton.py | 206 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroR.py | 290 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWEH.py | 344 + cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWPID.py | 170 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteam0.py | 86 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteam1.py | 272 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteam2.py | 86 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamCC.py | 140 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamEU.py | 248 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV2.py | 116 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV3.py | 152 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV4.py | 344 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py | 164 + cimpy_3/cimpy/cgmes_v2_4_15/GovSteamSGO.py | 110 + .../GrossToNetActivePowerCurve.py | 36 + cimpy_3/cimpy/cgmes_v2_4_15/Ground.py | 35 + .../cimpy/cgmes_v2_4_15/GroundDisconnector.py | 33 + .../cimpy/cgmes_v2_4_15/GroundingImpedance.py | 39 + .../HydroEnergyConversionKind.py | 31 + .../cgmes_v2_4_15/HydroGeneratingUnit.py | 46 + .../cgmes_v2_4_15/HydroPlantStorageKind.py | 31 + .../cimpy/cgmes_v2_4_15/HydroPowerPlant.py | 56 + cimpy_3/cimpy/cgmes_v2_4_15/HydroPump.py | 41 + .../cimpy/cgmes_v2_4_15/IdentifiedObject.py | 88 + cimpy_3/cimpy/cgmes_v2_4_15/IfdBaseKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Inductance.py | 48 + .../cgmes_v2_4_15/InductancePerLength.py | 60 + .../cimpy/cgmes_v2_4_15/InputSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Integer.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/Junction.py | 32 + cimpy_3/cimpy/cgmes_v2_4_15/Length.py | 52 + cimpy_3/cimpy/cgmes_v2_4_15/Limit.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/LimitSet.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/LimitTypeKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Line.py | 39 + .../cgmes_v2_4_15/LinearShuntCompensator.py | 63 + cimpy_3/cimpy/cgmes_v2_4_15/LoadAggregate.py | 43 + cimpy_3/cimpy/cgmes_v2_4_15/LoadArea.py | 36 + .../cimpy/cgmes_v2_4_15/LoadBreakSwitch.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/LoadComposite.py | 103 + cimpy_3/cimpy/cgmes_v2_4_15/LoadDynamics.py | 39 + .../cgmes_v2_4_15/LoadGenericNonLinear.py | 91 + cimpy_3/cimpy/cgmes_v2_4_15/LoadGroup.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/LoadMotor.py | 122 + .../LoadResponseCharacteristic.py | 110 + cimpy_3/cimpy/cgmes_v2_4_15/LoadStatic.py | 146 + .../cimpy/cgmes_v2_4_15/LoadUserDefined.py | 45 + cimpy_3/cimpy/cgmes_v2_4_15/Location.py | 56 + cimpy_3/cimpy/cgmes_v2_4_15/Measurement.py | 74 + .../cimpy/cgmes_v2_4_15/MeasurementValue.py | 62 + .../cgmes_v2_4_15/MeasurementValueQuality.py | 38 + .../cgmes_v2_4_15/MeasurementValueSource.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/MechLoad1.py | 54 + .../cgmes_v2_4_15/MechanicalLoadDynamics.py | 50 + .../MechanicalLoadUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v2_4_15/Money.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/MonthDay.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/MutualCoupling.py | 98 + cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoad.py | 39 + .../cgmes_v2_4_15/NonConformLoadGroup.py | 43 + .../cgmes_v2_4_15/NonConformLoadSchedule.py | 39 + .../NonlinearShuntCompensator.py | 40 + .../NonlinearShuntCompensatorPoint.py | 66 + .../cgmes_v2_4_15/NuclearGeneratingUnit.py | 35 + .../cimpy/cgmes_v2_4_15/OperationalLimit.py | 46 + .../OperationalLimitDirectionKind.py | 31 + .../cgmes_v2_4_15/OperationalLimitSet.py | 56 + .../cgmes_v2_4_15/OperationalLimitType.py | 62 + .../cimpy/cgmes_v2_4_15/OrientationKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/OverexcLim2.py | 56 + cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py | 76 + cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX1.py | 100 + cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX2.py | 106 + .../OverexcitationLimiterDynamics.py | 39 + .../OverexcitationLimiterUserDefined.py | 48 + .../PFVArControllerType1Dynamics.py | 56 + .../PFVArControllerType1UserDefined.py | 48 + .../PFVArControllerType2Dynamics.py | 39 + .../PFVArControllerType2UserDefined.py | 48 + .../PFVArType1IEEEPFController.py | 88 + .../PFVArType1IEEEVArController.py | 76 + .../cimpy/cgmes_v2_4_15/PFVArType2Common1.py | 61 + .../PFVArType2IEEEPFController.py | 82 + .../PFVArType2IEEEVArController.py | 82 + cimpy_3/cimpy/cgmes_v2_4_15/PU.py | 56 + cimpy_3/cimpy/cgmes_v2_4_15/PerCent.py | 52 + .../cgmes_v2_4_15/PerLengthDCLineParameter.py | 54 + cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoil.py | 80 + .../cgmes_v2_4_15/PetersenCoilModeKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/PhaseCode.py | 31 + .../cimpy/cgmes_v2_4_15/PhaseTapChanger.py | 37 + .../PhaseTapChangerAsymmetrical.py | 40 + .../cgmes_v2_4_15/PhaseTapChangerLinear.py | 51 + .../cgmes_v2_4_15/PhaseTapChangerNonLinear.py | 49 + .../PhaseTapChangerSymmetrical.py | 36 + .../cgmes_v2_4_15/PhaseTapChangerTable.py | 50 + .../PhaseTapChangerTablePoint.py | 44 + .../cgmes_v2_4_15/PhaseTapChangerTabular.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/PositionPoint.py | 60 + .../cgmes_v2_4_15/PowerSystemResource.py | 42 + .../PowerSystemStabilizerDynamics.py | 46 + .../PowerSystemStabilizerUserDefined.py | 48 + .../cimpy/cgmes_v2_4_15/PowerTransformer.py | 84 + .../cgmes_v2_4_15/PowerTransformerEnd.py | 115 + .../ProprietaryParameterDynamics.py | 164 + .../cimpy/cgmes_v2_4_15/ProtectedSwitch.py | 33 + cimpy_3/cimpy/cgmes_v2_4_15/Pss1.py | 130 + cimpy_3/cimpy/cgmes_v2_4_15/Pss1A.py | 172 + cimpy_3/cimpy/cgmes_v2_4_15/Pss2B.py | 226 + cimpy_3/cimpy/cgmes_v2_4_15/Pss2ST.py | 148 + cimpy_3/cimpy/cgmes_v2_4_15/Pss5.py | 142 + cimpy_3/cimpy/cgmes_v2_4_15/PssELIN2.py | 106 + cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE1A.py | 112 + cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE2B.py | 202 + cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE3B.py | 154 + cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE4B.py | 442 + cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST1.py | 106 + cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST3.py | 244 + cimpy_3/cimpy/cgmes_v2_4_15/PssSB4.py | 106 + cimpy_3/cimpy/cgmes_v2_4_15/PssSH.py | 118 + cimpy_3/cimpy/cgmes_v2_4_15/PssSK.py | 106 + cimpy_3/cimpy/cgmes_v2_4_15/PssWECC.py | 148 + cimpy_3/cimpy/cgmes_v2_4_15/Quality61850.py | 102 + .../cimpy/cgmes_v2_4_15/RaiseLowerCommand.py | 38 + .../cimpy/cgmes_v2_4_15/RatioTapChanger.py | 60 + .../cgmes_v2_4_15/RatioTapChangerTable.py | 46 + .../RatioTapChangerTablePoint.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Reactance.py | 48 + .../cgmes_v2_4_15/ReactiveCapabilityCurve.py | 47 + cimpy_3/cimpy/cgmes_v2_4_15/ReactivePower.py | 56 + .../cgmes_v2_4_15/RegularIntervalSchedule.py | 44 + .../cimpy/cgmes_v2_4_15/RegularTimePoint.py | 54 + .../cimpy/cgmes_v2_4_15/RegulatingCondEq.py | 46 + .../cimpy/cgmes_v2_4_15/RegulatingControl.py | 87 + .../RegulatingControlModeKind.py | 31 + .../cimpy/cgmes_v2_4_15/RegulationSchedule.py | 39 + .../cimpy/cgmes_v2_4_15/RemoteInputSignal.py | 100 + .../cimpy/cgmes_v2_4_15/RemoteSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/ReportingGroup.py | 45 + cimpy_3/cimpy/cgmes_v2_4_15/Resistance.py | 52 + .../cgmes_v2_4_15/ResistancePerLength.py | 60 + .../cimpy/cgmes_v2_4_15/RotatingMachine.py | 82 + .../cgmes_v2_4_15/RotatingMachineDynamics.py | 74 + cimpy_3/cimpy/cgmes_v2_4_15/RotationSpeed.py | 60 + cimpy_3/cimpy/cgmes_v2_4_15/RotorKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/SVCControlMode.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/Season.py | 56 + .../cgmes_v2_4_15/SeasonDayTypeSchedule.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/Seconds.py | 52 + .../cimpy/cgmes_v2_4_15/SeriesCompensator.py | 80 + cimpy_3/cimpy/cgmes_v2_4_15/SetPoint.py | 43 + .../cgmes_v2_4_15/ShortCircuitRotorKind.py | 31 + .../cimpy/cgmes_v2_4_15/ShuntCompensator.py | 100 + cimpy_3/cimpy/cgmes_v2_4_15/Simple_Float.py | 44 + .../cgmes_v2_4_15/SolarGeneratingUnit.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/Source.py | 31 + .../cgmes_v2_4_15/StateVariablesVersion.py | 90 + .../cgmes_v2_4_15/StaticLoadModelKind.py | 31 + .../cgmes_v2_4_15/StaticVarCompensator.py | 75 + cimpy_3/cimpy/cgmes_v2_4_15/StationSupply.py | 34 + .../SteadyStateHypothesisVersion.py | 90 + cimpy_3/cimpy/cgmes_v2_4_15/String.py | 37 + .../cimpy/cgmes_v2_4_15/StringMeasurement.py | 36 + .../cgmes_v2_4_15/StringMeasurementValue.py | 44 + .../cgmes_v2_4_15/SubGeographicalRegion.py | 62 + cimpy_3/cimpy/cgmes_v2_4_15/SubLoadArea.py | 41 + cimpy_3/cimpy/cgmes_v2_4_15/Substation.py | 56 + cimpy_3/cimpy/cgmes_v2_4_15/Susceptance.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/SvInjection.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/SvPowerFlow.py | 48 + .../SvShuntCompensatorSections.py | 42 + cimpy_3/cimpy/cgmes_v2_4_15/SvStatus.py | 42 + cimpy_3/cimpy/cgmes_v2_4_15/SvTapStep.py | 42 + cimpy_3/cimpy/cgmes_v2_4_15/SvVoltage.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/Switch.py | 63 + cimpy_3/cimpy/cgmes_v2_4_15/SwitchSchedule.py | 39 + .../cimpy/cgmes_v2_4_15/SynchronousMachine.py | 177 + .../SynchronousMachineDetailed.py | 68 + .../SynchronousMachineDynamics.py | 68 + .../SynchronousMachineEquivalentCircuit.py | 104 + .../cgmes_v2_4_15/SynchronousMachineKind.py | 31 + .../SynchronousMachineModelKind.py | 31 + .../SynchronousMachineOperatingMode.py | 31 + .../SynchronousMachineSimplified.py | 35 + ...SynchronousMachineTimeConstantReactance.py | 122 + .../SynchronousMachineUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v2_4_15/TapChanger.py | 100 + .../cimpy/cgmes_v2_4_15/TapChangerControl.py | 40 + .../cgmes_v2_4_15/TapChangerTablePoint.py | 66 + cimpy_3/cimpy/cgmes_v2_4_15/TapSchedule.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/Temperature.py | 52 + cimpy_3/cimpy/cgmes_v2_4_15/Terminal.py | 108 + .../cimpy/cgmes_v2_4_15/TextDiagramObject.py | 38 + .../cgmes_v2_4_15/ThermalGeneratingUnit.py | 39 + cimpy_3/cimpy/cgmes_v2_4_15/TieFlow.py | 48 + .../cimpy/cgmes_v2_4_15/TopologicalIsland.py | 46 + .../cimpy/cgmes_v2_4_15/TopologicalNode.py | 93 + .../cgmes_v2_4_15/TopologyBoundaryVersion.py | 90 + .../cimpy/cgmes_v2_4_15/TopologyVersion.py | 90 + .../cgmes_v2_4_15/TransformerControlMode.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/TransformerEnd.py | 86 + cimpy_3/cimpy/cgmes_v2_4_15/TurbLCFB1.py | 112 + .../cgmes_v2_4_15/TurbineGovernorDynamics.py | 56 + .../TurbineGovernorUserDefined.py | 46 + .../TurbineLoadControllerDynamics.py | 39 + .../TurbineLoadControllerUserDefined.py | 48 + .../cgmes_v2_4_15/UnderexcLim2Simplified.py | 82 + .../cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py | 130 + .../cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py | 280 + cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX1.py | 68 + cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX2.py | 73 + .../UnderexcitationLimiterDynamics.py | 46 + .../UnderexcitationLimiterUserDefined.py | 48 + cimpy_3/cimpy/cgmes_v2_4_15/UnitMultiplier.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/UnitSymbol.py | 35 + cimpy_3/cimpy/cgmes_v2_4_15/VAdjIEEE.py | 74 + cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType1.py | 49 + cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType2.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/Validity.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/ValueAliasSet.py | 62 + cimpy_3/cimpy/cgmes_v2_4_15/ValueToAlias.py | 44 + .../cimpy/cgmes_v2_4_15/VisibilityLayer.py | 44 + cimpy_3/cimpy/cgmes_v2_4_15/Voltage.py | 56 + .../cgmes_v2_4_15/VoltageAdjusterDynamics.py | 39 + .../VoltageAdjusterUserDefined.py | 46 + .../VoltageCompensatorDynamics.py | 46 + .../VoltageCompensatorUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v2_4_15/VoltageLevel.py | 62 + cimpy_3/cimpy/cgmes_v2_4_15/VoltageLimit.py | 39 + .../cgmes_v2_4_15/VoltagePerReactivePower.py | 60 + cimpy_3/cimpy/cgmes_v2_4_15/VolumeFlowRate.py | 60 + .../cimpy/cgmes_v2_4_15/VsCapabilityCurve.py | 36 + cimpy_3/cimpy/cgmes_v2_4_15/VsConverter.py | 111 + .../cimpy/cgmes_v2_4_15/VsPpccControlKind.py | 31 + .../cimpy/cgmes_v2_4_15/VsQpccControlKind.py | 28 + .../cimpy/cgmes_v2_4_15/WindAeroConstIEC.py | 39 + .../cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py | 74 + .../cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py | 80 + .../cimpy/cgmes_v2_4_15/WindContPType3IEC.py | 176 + .../cimpy/cgmes_v2_4_15/WindContPType4aIEC.py | 56 + .../cimpy/cgmes_v2_4_15/WindContPType4bIEC.py | 68 + .../cgmes_v2_4_15/WindContPitchAngleIEC.py | 104 + cimpy_3/cimpy/cgmes_v2_4_15/WindContQIEC.py | 200 + .../cimpy/cgmes_v2_4_15/WindContRotorRIEC.py | 98 + .../cgmes_v2_4_15/WindDynamicsLookupTable.py | 86 + .../cgmes_v2_4_15/WindGenTurbineType1IEC.py | 39 + .../cgmes_v2_4_15/WindGenTurbineType2IEC.py | 46 + .../cgmes_v2_4_15/WindGenTurbineType3IEC.py | 74 + .../cgmes_v2_4_15/WindGenTurbineType3aIEC.py | 49 + .../cgmes_v2_4_15/WindGenTurbineType3bIEC.py | 59 + .../cimpy/cgmes_v2_4_15/WindGenType4IEC.py | 54 + .../cimpy/cgmes_v2_4_15/WindGenUnitKind.py | 31 + .../cimpy/cgmes_v2_4_15/WindGeneratingUnit.py | 39 + .../WindLVRTQcontrolModesKind.py | 31 + .../WindLookupTableFunctionKind.py | 31 + cimpy_3/cimpy/cgmes_v2_4_15/WindMechIEC.py | 80 + .../cgmes_v2_4_15/WindPitchContEmulIEC.py | 104 + .../cimpy/cgmes_v2_4_15/WindPlantDynamics.py | 50 + .../cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py | 110 + cimpy_3/cimpy/cgmes_v2_4_15/WindPlantIEC.py | 50 + .../WindPlantReactiveControlIEC.py | 122 + .../cgmes_v2_4_15/WindPlantUserDefined.py | 46 + .../cimpy/cgmes_v2_4_15/WindProtectionIEC.py | 98 + .../cgmes_v2_4_15/WindQcontrolModesKind.py | 31 + .../WindTurbineType1or2Dynamics.py | 46 + .../cgmes_v2_4_15/WindTurbineType1or2IEC.py | 44 + .../WindTurbineType3or4Dynamics.py | 56 + .../cgmes_v2_4_15/WindTurbineType3or4IEC.py | 56 + .../cgmes_v2_4_15/WindTurbineType4aIEC.py | 38 + .../cgmes_v2_4_15/WindTurbineType4bIEC.py | 43 + .../cgmes_v2_4_15/WindType1or2UserDefined.py | 46 + .../cgmes_v2_4_15/WindType3or4UserDefined.py | 46 + .../cimpy/cgmes_v2_4_15/WindingConnection.py | 31 + .../cimpy/cgmes_v2_4_15}/__init__.py | 0 cimpy_3/cimpy/cgmes_v3_0/ACDCConverter.py | 167 + .../cgmes_v3_0/ACDCConverterDCTerminal.py | 45 + cimpy_3/cimpy/cgmes_v3_0/ACDCTerminal.py | 75 + cimpy_3/cimpy/cgmes_v3_0/ACLineSegment.py | 102 + cimpy_3/cimpy/cgmes_v3_0/Accumulator.py | 41 + cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimit.py | 41 + .../cimpy/cgmes_v3_0/AccumulatorLimitSet.py | 41 + cimpy_3/cimpy/cgmes_v3_0/AccumulatorReset.py | 36 + cimpy_3/cimpy/cgmes_v3_0/AccumulatorValue.py | 44 + cimpy_3/cimpy/cgmes_v3_0/ActivePower.py | 64 + cimpy_3/cimpy/cgmes_v3_0/ActivePowerLimit.py | 45 + .../cgmes_v3_0/ActivePowerPerCurrentFlow.py | 48 + .../cgmes_v3_0/ActivePowerPerFrequency.py | 48 + cimpy_3/cimpy/cgmes_v3_0/Analog.py | 53 + cimpy_3/cimpy/cgmes_v3_0/AnalogControl.py | 46 + cimpy_3/cimpy/cgmes_v3_0/AnalogLimit.py | 41 + cimpy_3/cimpy/cgmes_v3_0/AnalogLimitSet.py | 41 + cimpy_3/cimpy/cgmes_v3_0/AnalogValue.py | 44 + cimpy_3/cimpy/cgmes_v3_0/AngleDegrees.py | 68 + cimpy_3/cimpy/cgmes_v3_0/AngleRadians.py | 48 + cimpy_3/cimpy/cgmes_v3_0/ApparentPower.py | 56 + .../cimpy/cgmes_v3_0/ApparentPowerLimit.py | 45 + cimpy_3/cimpy/cgmes_v3_0/Area.py | 48 + .../cimpy/cgmes_v3_0/AsynchronousMachine.py | 106 + .../cgmes_v3_0/AsynchronousMachineDynamics.py | 62 + .../AsynchronousMachineEquivalentCircuit.py | 59 + .../cgmes_v3_0/AsynchronousMachineKind.py | 31 + ...synchronousMachineTimeConstantReactance.py | 59 + .../AsynchronousMachineUserDefined.py | 46 + .../cimpy/cgmes_v3_0/AuxiliaryEquipment.py | 36 + cimpy_3/cimpy/cgmes_v3_0/Base.py | 78 + cimpy_3/cimpy/cgmes_v3_0/BaseVoltage.py | 72 + .../cimpy/cgmes_v3_0/BasicIntervalSchedule.py | 51 + cimpy_3/cimpy/cgmes_v3_0/BatteryStateKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/BatteryUnit.py | 50 + cimpy_3/cimpy/cgmes_v3_0/Bay.py | 41 + cimpy_3/cimpy/cgmes_v3_0/Boolean.py | 39 + cimpy_3/cimpy/cgmes_v3_0/BoundaryPoint.py | 102 + cimpy_3/cimpy/cgmes_v3_0/Breaker.py | 35 + cimpy_3/cimpy/cgmes_v3_0/BusNameMarker.py | 51 + cimpy_3/cimpy/cgmes_v3_0/BusbarSection.py | 37 + cimpy_3/cimpy/cgmes_v3_0/CAESPlant.py | 39 + cimpy_3/cimpy/cgmes_v3_0/CSCDynamics.py | 38 + cimpy_3/cimpy/cgmes_v3_0/CSCUserDefined.py | 43 + cimpy_3/cimpy/cgmes_v3_0/Capacitance.py | 48 + .../cimpy/cgmes_v3_0}/CapacitancePerLength.py | 15 +- cimpy_3/cimpy/cgmes_v3_0/Clamp.py | 44 + cimpy_3/cimpy/cgmes_v3_0/CogenerationPlant.py | 39 + .../cimpy/cgmes_v3_0/CombinedCyclePlant.py | 39 + cimpy_3/cimpy/cgmes_v3_0/Command.py | 59 + cimpy_3/cimpy/cgmes_v3_0/Conductance.py | 52 + .../cimpy/cgmes_v3_0/ConductingEquipment.py | 55 + cimpy_3/cimpy/cgmes_v3_0/Conductor.py | 40 + cimpy_3/cimpy/cgmes_v3_0/ConformLoad.py | 39 + cimpy_3/cimpy/cgmes_v3_0/ConformLoadGroup.py | 43 + .../cimpy/cgmes_v3_0/ConformLoadSchedule.py | 39 + cimpy_3/cimpy/cgmes_v3_0/ConnectivityNode.py | 67 + .../cgmes_v3_0/ConnectivityNodeContainer.py | 49 + cimpy_3/cimpy/cgmes_v3_0/Connector.py | 37 + cimpy_3/cimpy/cgmes_v3_0/Control.py | 71 + cimpy_3/cimpy/cgmes_v3_0/ControlArea.py | 75 + .../cgmes_v3_0/ControlAreaGeneratingUnit.py | 44 + .../cimpy/cgmes_v3_0/ControlAreaTypeKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/CoordinateSystem.py | 44 + .../CrossCompoundTurbineGovernorDynamics.py | 54 + cimpy_3/cimpy/cgmes_v3_0/CsConverter.py | 130 + .../cimpy/cgmes_v3_0/CsOperatingModeKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/CsPpccControlKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Currency.py | 31 + cimpy_3/cimpy/cgmes_v3_0/CurrentFlow.py | 60 + cimpy_3/cimpy/cgmes_v3_0/CurrentLimit.py | 45 + .../cimpy/cgmes_v3_0/CurrentTransformer.py | 32 + cimpy_3/cimpy/cgmes_v3_0/Curve.py | 68 + cimpy_3/cimpy/cgmes_v3_0/CurveData.py | 54 + cimpy_3/cimpy/cgmes_v3_0/CurveStyle.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Cut.py | 41 + cimpy_3/cimpy/cgmes_v3_0/DCBaseTerminal.py | 45 + cimpy_3/cimpy/cgmes_v3_0/DCBreaker.py | 32 + cimpy_3/cimpy/cgmes_v3_0/DCBusbar.py | 35 + cimpy_3/cimpy/cgmes_v3_0/DCChopper.py | 35 + .../cimpy/cgmes_v3_0/DCConductingEquipment.py | 41 + .../DCConverterOperatingModeKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/DCConverterUnit.py | 44 + cimpy_3/cimpy/cgmes_v3_0/DCDisconnector.py | 32 + .../cimpy/cgmes_v3_0/DCEquipmentContainer.py | 45 + cimpy_3/cimpy/cgmes_v3_0/DCGround.py | 44 + cimpy_3/cimpy/cgmes_v3_0/DCLine.py | 39 + cimpy_3/cimpy/cgmes_v3_0/DCLineSegment.py | 62 + cimpy_3/cimpy/cgmes_v3_0/DCNode.py | 57 + cimpy_3/cimpy/cgmes_v3_0/DCPolarityKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/DCSeriesDevice.py | 44 + cimpy_3/cimpy/cgmes_v3_0/DCShunt.py | 44 + cimpy_3/cimpy/cgmes_v3_0/DCSwitch.py | 35 + cimpy_3/cimpy/cgmes_v3_0/DCTerminal.py | 40 + .../cimpy/cgmes_v3_0/DCTopologicalIsland.py | 39 + cimpy_3/cimpy/cgmes_v3_0/DCTopologicalNode.py | 63 + cimpy_3/cimpy/cgmes_v3_0/Date.py | 40 + cimpy_3/cimpy/cgmes_v3_0/DateTime.py | 33 + cimpy_3/cimpy/cgmes_v3_0/DayType.py | 39 + cimpy_3/cimpy/cgmes_v3_0/Decimal.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Diagram.py | 80 + .../cimpy/cgmes_v3_0}/DiagramLayoutVersion.py | 12 +- cimpy_3/cimpy/cgmes_v3_0/DiagramObject.py | 98 + .../cgmes_v3_0/DiagramObjectGluePoint.py | 36 + .../cimpy/cgmes_v3_0/DiagramObjectPoint.py | 66 + .../cimpy/cgmes_v3_0/DiagramObjectStyle.py | 39 + cimpy_3/cimpy/cgmes_v3_0/DiagramStyle.py | 39 + .../cimpy/cgmes_v3_0/DiscExcContIEEEDEC1A.py | 148 + .../cimpy/cgmes_v3_0/DiscExcContIEEEDEC2A.py | 61 + .../cimpy/cgmes_v3_0/DiscExcContIEEEDEC3A.py | 46 + .../cgmes_v3_0/DisconnectingCircuitBreaker.py | 33 + cimpy_3/cimpy/cgmes_v3_0/Disconnector.py | 33 + .../DiscontinuousExcitationControlDynamics.py | 46 + ...scontinuousExcitationControlUserDefined.py | 48 + cimpy_3/cimpy/cgmes_v3_0/Discrete.py | 41 + cimpy_3/cimpy/cgmes_v3_0/DiscreteValue.py | 44 + .../cgmes_v3_0/DroopSignalFeedbackKind.py | 31 + .../cimpy/cgmes_v3_0/DynamicsFunctionBlock.py | 39 + .../cimpy/cgmes_v3_0}/DynamicsVersion.py | 15 +- .../cimpy/cgmes_v3_0/EarthFaultCompensator.py | 40 + cimpy_3/cimpy/cgmes_v3_0/EnergyArea.py | 39 + cimpy_3/cimpy/cgmes_v3_0/EnergyConnection.py | 38 + cimpy_3/cimpy/cgmes_v3_0/EnergyConsumer.py | 88 + .../cimpy/cgmes_v3_0/EnergySchedulingType.py | 40 + cimpy_3/cimpy/cgmes_v3_0/EnergySource.py | 124 + cimpy_3/cimpy/cgmes_v3_0/Equipment.py | 71 + .../cgmes_v3_0}/EquipmentBoundaryVersion.py | 16 +- .../cimpy/cgmes_v3_0/EquipmentContainer.py | 41 + .../cimpy/cgmes_v3_0}/EquipmentVersion.py | 16 +- cimpy_3/cimpy/cgmes_v3_0/EquivalentBranch.py | 135 + .../cimpy/cgmes_v3_0/EquivalentEquipment.py | 41 + .../cimpy/cgmes_v3_0/EquivalentInjection.py | 136 + cimpy_3/cimpy/cgmes_v3_0/EquivalentNetwork.py | 39 + cimpy_3/cimpy/cgmes_v3_0/EquivalentShunt.py | 44 + cimpy_3/cimpy/cgmes_v3_0/ExcAC1A.py | 170 + cimpy_3/cimpy/cgmes_v3_0/ExcAC2A.py | 206 + cimpy_3/cimpy/cgmes_v3_0/ExcAC3A.py | 194 + cimpy_3/cimpy/cgmes_v3_0/ExcAC4A.py | 92 + cimpy_3/cimpy/cgmes_v3_0/ExcAC5A.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcAC6A.py | 176 + cimpy_3/cimpy/cgmes_v3_0/ExcAC8B.py | 200 + cimpy_3/cimpy/cgmes_v3_0/ExcANS.py | 122 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR1.py | 110 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR2.py | 116 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR3.py | 110 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR4.py | 122 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR5.py | 49 + cimpy_3/cimpy/cgmes_v3_0/ExcAVR7.py | 164 + cimpy_3/cimpy/cgmes_v3_0/ExcBBC.py | 104 + cimpy_3/cimpy/cgmes_v3_0/ExcCZ.py | 98 + cimpy_3/cimpy/cgmes_v3_0/ExcDC1A.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcDC2A.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcDC3A.py | 134 + cimpy_3/cimpy/cgmes_v3_0/ExcDC3A1.py | 122 + cimpy_3/cimpy/cgmes_v3_0/ExcELIN1.py | 128 + cimpy_3/cimpy/cgmes_v3_0/ExcELIN2.py | 200 + cimpy_3/cimpy/cgmes_v3_0/ExcHU.py | 110 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC1A.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC2A.py | 164 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC3A.py | 164 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC4A.py | 92 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC5A.py | 122 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC6A.py | 170 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC7B.py | 194 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC8B.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC1A.py | 134 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC2A.py | 134 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC3A.py | 104 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC4B.py | 152 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1A.py | 152 + .../cgmes_v3_0/ExcIEEEST1AUELselectorKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST2A.py | 116 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST3A.py | 158 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST4B.py | 134 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST5B.py | 140 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST6B.py | 122 + cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST7B.py | 128 + cimpy_3/cimpy/cgmes_v3_0/ExcNI.py | 98 + cimpy_3/cimpy/cgmes_v3_0/ExcOEX3T.py | 152 + cimpy_3/cimpy/cgmes_v3_0/ExcPIC.py | 176 + cimpy_3/cimpy/cgmes_v3_0/ExcREXS.py | 254 + .../cgmes_v3_0/ExcREXSFeedbackSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ExcRQB.py | 116 + cimpy_3/cimpy/cgmes_v3_0/ExcSCRX.py | 86 + cimpy_3/cimpy/cgmes_v3_0/ExcSEXS.py | 98 + cimpy_3/cimpy/cgmes_v3_0/ExcSK.py | 230 + cimpy_3/cimpy/cgmes_v3_0/ExcST1A.py | 146 + cimpy_3/cimpy/cgmes_v3_0/ExcST2A.py | 128 + cimpy_3/cimpy/cgmes_v3_0/ExcST3A.py | 158 + cimpy_3/cimpy/cgmes_v3_0/ExcST4B.py | 152 + cimpy_3/cimpy/cgmes_v3_0/ExcST6B.py | 176 + .../cgmes_v3_0/ExcST6BOELselectorKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ExcST7B.py | 134 + .../cgmes_v3_0/ExcST7BOELselectorKind.py | 31 + .../cgmes_v3_0/ExcST7BUELselectorKind.py | 31 + .../cgmes_v3_0/ExcitationSystemDynamics.py | 88 + .../cgmes_v3_0/ExcitationSystemUserDefined.py | 46 + .../cgmes_v3_0/ExternalNetworkInjection.py | 148 + cimpy_3/cimpy/cgmes_v3_0/FaultIndicator.py | 35 + cimpy_3/cimpy/cgmes_v3_0/Float.py | 38 + cimpy_3/cimpy/cgmes_v3_0/FossilFuel.py | 46 + .../cgmes_v3_0/FrancisGovernorControlKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Frequency.py | 52 + cimpy_3/cimpy/cgmes_v3_0/FuelType.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Fuse.py | 33 + .../cgmes_v3_0/GenICompensationForGenJ.py | 62 + cimpy_3/cimpy/cgmes_v3_0/GeneratingUnit.py | 150 + .../cgmes_v3_0/GeneratorControlSource.py | 31 + .../GenericNonLinearLoadModelKind.py | 31 + .../GeographicalLocationVersion.py | 14 +- .../cimpy/cgmes_v3_0/GeographicalRegion.py | 41 + cimpy_3/cimpy/cgmes_v3_0/GovCT1.py | 248 + cimpy_3/cimpy/cgmes_v3_0/GovCT2.py | 374 + cimpy_3/cimpy/cgmes_v3_0/GovGAST.py | 98 + cimpy_3/cimpy/cgmes_v3_0/GovGAST1.py | 242 + cimpy_3/cimpy/cgmes_v3_0/GovGAST2.py | 230 + cimpy_3/cimpy/cgmes_v3_0/GovGAST3.py | 164 + cimpy_3/cimpy/cgmes_v3_0/GovGAST4.py | 104 + cimpy_3/cimpy/cgmes_v3_0/GovGASTWD.py | 236 + cimpy_3/cimpy/cgmes_v3_0/GovHydro1.py | 122 + cimpy_3/cimpy/cgmes_v3_0/GovHydro2.py | 212 + cimpy_3/cimpy/cgmes_v3_0/GovHydro3.py | 254 + cimpy_3/cimpy/cgmes_v3_0/GovHydro4.py | 272 + .../cimpy/cgmes_v3_0/GovHydro4ModelKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/GovHydroDD.py | 248 + cimpy_3/cimpy/cgmes_v3_0/GovHydroFrancis.py | 200 + cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE0.py | 86 + cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE2.py | 194 + cimpy_3/cimpy/cgmes_v3_0/GovHydroPID.py | 236 + cimpy_3/cimpy/cgmes_v3_0/GovHydroPID2.py | 170 + cimpy_3/cimpy/cgmes_v3_0/GovHydroPelton.py | 206 + cimpy_3/cimpy/cgmes_v3_0/GovHydroR.py | 290 + cimpy_3/cimpy/cgmes_v3_0/GovHydroWEH.py | 344 + cimpy_3/cimpy/cgmes_v3_0/GovHydroWPID.py | 170 + cimpy_3/cimpy/cgmes_v3_0/GovSteam0.py | 86 + cimpy_3/cimpy/cgmes_v3_0/GovSteam1.py | 272 + cimpy_3/cimpy/cgmes_v3_0/GovSteam2.py | 86 + cimpy_3/cimpy/cgmes_v3_0/GovSteamBB.py | 140 + cimpy_3/cimpy/cgmes_v3_0/GovSteamCC.py | 140 + cimpy_3/cimpy/cgmes_v3_0/GovSteamEU.py | 248 + cimpy_3/cimpy/cgmes_v3_0/GovSteamFV2.py | 110 + cimpy_3/cimpy/cgmes_v3_0/GovSteamFV3.py | 224 + cimpy_3/cimpy/cgmes_v3_0/GovSteamFV4.py | 344 + cimpy_3/cimpy/cgmes_v3_0/GovSteamIEEE1.py | 164 + cimpy_3/cimpy/cgmes_v3_0/GovSteamSGO.py | 110 + .../cgmes_v3_0/GrossToNetActivePowerCurve.py | 36 + cimpy_3/cimpy/cgmes_v3_0/Ground.py | 35 + .../cimpy/cgmes_v3_0/GroundDisconnector.py | 33 + .../cimpy/cgmes_v3_0/GroundingImpedance.py | 40 + cimpy_3/cimpy/cgmes_v3_0/HVDCDynamics.py | 35 + .../cgmes_v3_0/HydroEnergyConversionKind.py | 31 + .../cimpy/cgmes_v3_0/HydroGeneratingUnit.py | 62 + .../cimpy/cgmes_v3_0/HydroPlantStorageKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/HydroPowerPlant.py | 56 + cimpy_3/cimpy/cgmes_v3_0/HydroPump.py | 41 + cimpy_3/cimpy/cgmes_v3_0/HydroTurbineKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/IOPoint.py | 35 + cimpy_3/cimpy/cgmes_v3_0/IdentifiedObject.py | 100 + cimpy_3/cimpy/cgmes_v3_0/IfdBaseKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Inductance.py | 48 + .../cimpy/cgmes_v3_0}/InductancePerLength.py | 15 +- cimpy_3/cimpy/cgmes_v3_0/InputSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/Integer.py | 37 + cimpy_3/cimpy/cgmes_v3_0/Jumper.py | 33 + cimpy_3/cimpy/cgmes_v3_0/Junction.py | 33 + cimpy_3/cimpy/cgmes_v3_0/Length.py | 56 + cimpy_3/cimpy/cgmes_v3_0/Limit.py | 35 + cimpy_3/cimpy/cgmes_v3_0/LimitKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/LimitSet.py | 39 + .../cimpy/cgmes_v3_0}/LimitTypeKind.py | 16 +- cimpy_3/cimpy/cgmes_v3_0/Line.py | 41 + .../cgmes_v3_0/LinearShuntCompensator.py | 64 + cimpy_3/cimpy/cgmes_v3_0/LoadAggregate.py | 43 + cimpy_3/cimpy/cgmes_v3_0/LoadArea.py | 36 + cimpy_3/cimpy/cgmes_v3_0/LoadBreakSwitch.py | 35 + cimpy_3/cimpy/cgmes_v3_0/LoadComposite.py | 103 + cimpy_3/cimpy/cgmes_v3_0/LoadDynamics.py | 39 + .../cimpy/cgmes_v3_0/LoadGenericNonLinear.py | 79 + cimpy_3/cimpy/cgmes_v3_0/LoadGroup.py | 39 + cimpy_3/cimpy/cgmes_v3_0/LoadMotor.py | 122 + .../cgmes_v3_0/LoadResponseCharacteristic.py | 110 + cimpy_3/cimpy/cgmes_v3_0/LoadStatic.py | 146 + cimpy_3/cimpy/cgmes_v3_0/LoadUserDefined.py | 45 + cimpy_3/cimpy/cgmes_v3_0/Location.py | 62 + cimpy_3/cimpy/cgmes_v3_0/Measurement.py | 74 + cimpy_3/cimpy/cgmes_v3_0/MeasurementValue.py | 59 + .../cgmes_v3_0/MeasurementValueQuality.py | 38 + .../cgmes_v3_0/MeasurementValueSource.py | 39 + cimpy_3/cimpy/cgmes_v3_0/MechLoad1.py | 54 + .../cgmes_v3_0/MechanicalLoadDynamics.py | 50 + .../cgmes_v3_0/MechanicalLoadUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/Money.py | 48 + cimpy_3/cimpy/cgmes_v3_0/MonthDay.py | 31 + cimpy_3/cimpy/cgmes_v3_0/MutualCoupling.py | 98 + cimpy_3/cimpy/cgmes_v3_0/NonConformLoad.py | 39 + .../cimpy/cgmes_v3_0/NonConformLoadGroup.py | 43 + .../cgmes_v3_0/NonConformLoadSchedule.py | 39 + .../cgmes_v3_0/NonlinearShuntCompensator.py | 40 + .../NonlinearShuntCompensatorPoint.py | 67 + .../cimpy/cgmes_v3_0/NuclearGeneratingUnit.py | 35 + cimpy_3/cimpy/cgmes_v3_0/OperationalLimit.py | 47 + .../OperationalLimitDirectionKind.py | 31 + .../cimpy/cgmes_v3_0/OperationalLimitSet.py | 56 + .../cimpy/cgmes_v3_0/OperationalLimitType.py | 68 + cimpy_3/cimpy/cgmes_v3_0/OrientationKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/OverexcLim2.py | 54 + cimpy_3/cimpy/cgmes_v3_0/OverexcLimIEEE.py | 74 + cimpy_3/cimpy/cgmes_v3_0/OverexcLimX1.py | 98 + cimpy_3/cimpy/cgmes_v3_0/OverexcLimX2.py | 104 + .../OverexcitationLimiterDynamics.py | 39 + .../OverexcitationLimiterUserDefined.py | 46 + .../PFVArControllerType1Dynamics.py | 56 + .../PFVArControllerType1UserDefined.py | 46 + .../PFVArControllerType2Dynamics.py | 39 + .../PFVArControllerType2UserDefined.py | 46 + .../cgmes_v3_0/PFVArType1IEEEPFController.py | 86 + .../cgmes_v3_0/PFVArType1IEEEVArController.py | 74 + cimpy_3/cimpy/cgmes_v3_0/PFVArType2Common1.py | 59 + .../cgmes_v3_0/PFVArType2IEEEPFController.py | 80 + .../cgmes_v3_0/PFVArType2IEEEVArController.py | 80 + cimpy_3/cimpy/cgmes_v3_0/PU.py | 56 + cimpy_3/cimpy/cgmes_v3_0/PerCent.py | 60 + .../cgmes_v3_0}/PerLengthDCLineParameter.py | 16 +- cimpy_3/cimpy/cgmes_v3_0/PetersenCoil.py | 81 + .../cimpy/cgmes_v3_0/PetersenCoilModeKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/PhaseCode.py | 32 + cimpy_3/cimpy/cgmes_v3_0/PhaseTapChanger.py | 37 + .../cgmes_v3_0/PhaseTapChangerAsymmetrical.py | 40 + .../cimpy/cgmes_v3_0/PhaseTapChangerLinear.py | 51 + .../cgmes_v3_0/PhaseTapChangerNonLinear.py | 49 + .../cgmes_v3_0/PhaseTapChangerSymmetrical.py | 36 + .../cimpy/cgmes_v3_0/PhaseTapChangerTable.py | 50 + .../cgmes_v3_0/PhaseTapChangerTablePoint.py | 44 + .../cgmes_v3_0/PhaseTapChangerTabular.py | 39 + cimpy_3/cimpy/cgmes_v3_0/PhotoVoltaicUnit.py | 35 + cimpy_3/cimpy/cgmes_v3_0/PositionPoint.py | 60 + cimpy_3/cimpy/cgmes_v3_0/PostLineSensor.py | 32 + .../cimpy/cgmes_v3_0/PotentialTransformer.py | 32 + .../cgmes_v3_0/PowerElectronicsConnection.py | 88 + .../cimpy/cgmes_v3_0/PowerElectronicsUnit.py | 49 + .../cgmes_v3_0/PowerElectronicsWindUnit.py | 35 + .../cimpy/cgmes_v3_0/PowerSystemResource.py | 57 + .../PowerSystemStabilizerDynamics.py | 46 + .../PowerSystemStabilizerUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/PowerTransformer.py | 85 + .../cimpy/cgmes_v3_0/PowerTransformerEnd.py | 116 + .../ProprietaryParameterDynamics.py | 182 + cimpy_3/cimpy/cgmes_v3_0/ProtectedSwitch.py | 33 + cimpy_3/cimpy/cgmes_v3_0/Pss1.py | 128 + cimpy_3/cimpy/cgmes_v3_0/Pss1A.py | 170 + cimpy_3/cimpy/cgmes_v3_0/Pss2B.py | 212 + cimpy_3/cimpy/cgmes_v3_0/Pss2ST.py | 146 + cimpy_3/cimpy/cgmes_v3_0/Pss5.py | 140 + cimpy_3/cimpy/cgmes_v3_0/PssELIN2.py | 104 + cimpy_3/cimpy/cgmes_v3_0/PssIEEE1A.py | 110 + cimpy_3/cimpy/cgmes_v3_0/PssIEEE2B.py | 200 + cimpy_3/cimpy/cgmes_v3_0/PssIEEE3B.py | 140 + cimpy_3/cimpy/cgmes_v3_0/PssIEEE4B.py | 440 + cimpy_3/cimpy/cgmes_v3_0/PssPTIST1.py | 104 + cimpy_3/cimpy/cgmes_v3_0/PssPTIST3.py | 242 + cimpy_3/cimpy/cgmes_v3_0/PssRQB.py | 98 + cimpy_3/cimpy/cgmes_v3_0/PssSB4.py | 104 + cimpy_3/cimpy/cgmes_v3_0/PssSH.py | 116 + cimpy_3/cimpy/cgmes_v3_0/PssSK.py | 104 + cimpy_3/cimpy/cgmes_v3_0/PssSTAB2A.py | 86 + cimpy_3/cimpy/cgmes_v3_0/PssWECC.py | 146 + cimpy_3/cimpy/cgmes_v3_0/Quality61850.py | 102 + cimpy_3/cimpy/cgmes_v3_0/RaiseLowerCommand.py | 38 + cimpy_3/cimpy/cgmes_v3_0/RatioTapChanger.py | 54 + .../cimpy/cgmes_v3_0/RatioTapChangerTable.py | 46 + .../cgmes_v3_0/RatioTapChangerTablePoint.py | 39 + cimpy_3/cimpy/cgmes_v3_0/Reactance.py | 52 + .../cgmes_v3_0/ReactiveCapabilityCurve.py | 47 + cimpy_3/cimpy/cgmes_v3_0/ReactivePower.py | 56 + cimpy_3/cimpy/cgmes_v3_0/RealEnergy.py | 52 + .../cgmes_v3_0/RegularIntervalSchedule.py | 49 + cimpy_3/cimpy/cgmes_v3_0/RegularTimePoint.py | 54 + cimpy_3/cimpy/cgmes_v3_0/RegulatingCondEq.py | 47 + cimpy_3/cimpy/cgmes_v3_0/RegulatingControl.py | 105 + .../cgmes_v3_0/RegulatingControlModeKind.py | 31 + .../cimpy/cgmes_v3_0/RegulationSchedule.py | 39 + cimpy_3/cimpy/cgmes_v3_0/RemoteInputSignal.py | 100 + cimpy_3/cimpy/cgmes_v3_0/RemoteSignalKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ReportingGroup.py | 45 + cimpy_3/cimpy/cgmes_v3_0/Resistance.py | 56 + .../cimpy/cgmes_v3_0}/ResistancePerLength.py | 14 +- cimpy_3/cimpy/cgmes_v3_0/RotatingMachine.py | 83 + .../cgmes_v3_0/RotatingMachineDynamics.py | 74 + cimpy_3/cimpy/cgmes_v3_0/RotationSpeed.py | 48 + cimpy_3/cimpy/cgmes_v3_0/RotorKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/SVCControlMode.py | 31 + cimpy_3/cimpy/cgmes_v3_0/SVCUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/Season.py | 56 + .../cimpy/cgmes_v3_0/SeasonDayTypeSchedule.py | 44 + cimpy_3/cimpy/cgmes_v3_0/Seconds.py | 52 + cimpy_3/cimpy/cgmes_v3_0/Sensor.py | 35 + cimpy_3/cimpy/cgmes_v3_0/SeriesCompensator.py | 81 + cimpy_3/cimpy/cgmes_v3_0/ServiceLocation.py | 34 + cimpy_3/cimpy/cgmes_v3_0/SetPoint.py | 43 + .../cimpy/cgmes_v3_0/ShortCircuitRotorKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ShuntCompensator.py | 89 + .../cimpy/cgmes_v3_0}/Simple_Float.py | 14 +- .../cimpy/cgmes_v3_0/SolarGeneratingUnit.py | 39 + cimpy_3/cimpy/cgmes_v3_0/SolarPowerPlant.py | 39 + cimpy_3/cimpy/cgmes_v3_0/Source.py | 31 + .../cgmes_v3_0}/StateVariablesVersion.py | 16 +- .../cimpy/cgmes_v3_0/StaticLoadModelKind.py | 31 + .../cimpy/cgmes_v3_0/StaticVarCompensator.py | 82 + .../StaticVarCompensatorDynamics.py | 39 + cimpy_3/cimpy/cgmes_v3_0/StationSupply.py | 35 + cimpy_3/cimpy/cgmes_v3_0/Status.py | 54 + .../SteadyStateHypothesisVersion.py | 16 +- cimpy_3/cimpy/cgmes_v3_0/StreetAddress.py | 66 + cimpy_3/cimpy/cgmes_v3_0/StreetDetail.py | 108 + .../cimpy/cgmes_v3_0}/String.py | 14 +- cimpy_3/cimpy/cgmes_v3_0/StringMeasurement.py | 36 + .../cgmes_v3_0/StringMeasurementValue.py | 39 + .../cimpy/cgmes_v3_0/SubGeographicalRegion.py | 66 + cimpy_3/cimpy/cgmes_v3_0/SubLoadArea.py | 41 + cimpy_3/cimpy/cgmes_v3_0/Substation.py | 54 + cimpy_3/cimpy/cgmes_v3_0/SurgeArrester.py | 35 + cimpy_3/cimpy/cgmes_v3_0/Susceptance.py | 52 + cimpy_3/cimpy/cgmes_v3_0/SvInjection.py | 48 + cimpy_3/cimpy/cgmes_v3_0/SvPowerFlow.py | 48 + .../cgmes_v3_0/SvShuntCompensatorSections.py | 42 + cimpy_3/cimpy/cgmes_v3_0/SvStatus.py | 42 + cimpy_3/cimpy/cgmes_v3_0/SvSwitch.py | 42 + cimpy_3/cimpy/cgmes_v3_0/SvTapStep.py | 42 + cimpy_3/cimpy/cgmes_v3_0/SvVoltage.py | 48 + cimpy_3/cimpy/cgmes_v3_0/Switch.py | 82 + cimpy_3/cimpy/cgmes_v3_0/SwitchSchedule.py | 39 + .../cimpy/cgmes_v3_0/SynchronousMachine.py | 178 + .../cgmes_v3_0/SynchronousMachineDetailed.py | 62 + .../cgmes_v3_0/SynchronousMachineDynamics.py | 80 + .../SynchronousMachineEquivalentCircuit.py | 104 + .../cgmes_v3_0/SynchronousMachineKind.py | 31 + .../cgmes_v3_0/SynchronousMachineModelKind.py | 31 + .../SynchronousMachineOperatingMode.py | 31 + .../SynchronousMachineSimplified.py | 35 + ...SynchronousMachineTimeConstantReactance.py | 122 + .../SynchronousMachineUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/TapChanger.py | 106 + cimpy_3/cimpy/cgmes_v3_0/TapChangerControl.py | 40 + .../cimpy/cgmes_v3_0/TapChangerTablePoint.py | 66 + cimpy_3/cimpy/cgmes_v3_0/TapSchedule.py | 39 + cimpy_3/cimpy/cgmes_v3_0/Temperature.py | 52 + cimpy_3/cimpy/cgmes_v3_0/Terminal.py | 125 + cimpy_3/cimpy/cgmes_v3_0/TextDiagramObject.py | 38 + .../cimpy/cgmes_v3_0/ThermalGeneratingUnit.py | 62 + cimpy_3/cimpy/cgmes_v3_0/TieFlow.py | 51 + cimpy_3/cimpy/cgmes_v3_0/TopologicalIsland.py | 46 + cimpy_3/cimpy/cgmes_v3_0/TopologicalNode.py | 93 + .../cgmes_v3_0}/TopologyBoundaryVersion.py | 16 +- .../cimpy/cgmes_v3_0}/TopologyVersion.py | 16 +- cimpy_3/cimpy/cgmes_v3_0/TownDetail.py | 60 + cimpy_3/cimpy/cgmes_v3_0/TransformerEnd.py | 87 + cimpy_3/cimpy/cgmes_v3_0/TurbLCFB1.py | 110 + .../cgmes_v3_0/TurbineGovernorDynamics.py | 56 + .../cgmes_v3_0/TurbineGovernorUserDefined.py | 46 + .../TurbineLoadControllerDynamics.py | 39 + .../TurbineLoadControllerUserDefined.py | 46 + .../cgmes_v3_0/UnderexcLim2Simplified.py | 80 + cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE1.py | 128 + cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE2.py | 278 + cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX1.py | 66 + cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX2.py | 71 + .../UnderexcitationLimiterDynamics.py | 46 + .../UnderexcitationLimiterUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/UnitMultiplier.py | 38 + cimpy_3/cimpy/cgmes_v3_0/UnitSymbol.py | 38 + cimpy_3/cimpy/cgmes_v3_0/VAdjIEEE.py | 74 + cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType1.py | 49 + cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType2.py | 44 + cimpy_3/cimpy/cgmes_v3_0/VSCDynamics.py | 38 + cimpy_3/cimpy/cgmes_v3_0/VSCUserDefined.py | 43 + cimpy_3/cimpy/cgmes_v3_0/Validity.py | 31 + cimpy_3/cimpy/cgmes_v3_0/ValueAliasSet.py | 62 + cimpy_3/cimpy/cgmes_v3_0/ValueToAlias.py | 44 + cimpy_3/cimpy/cgmes_v3_0/VisibilityLayer.py | 44 + cimpy_3/cimpy/cgmes_v3_0/Voltage.py | 64 + .../cgmes_v3_0/VoltageAdjusterDynamics.py | 39 + .../cgmes_v3_0/VoltageAdjusterUserDefined.py | 46 + .../cgmes_v3_0/VoltageCompensatorDynamics.py | 46 + .../VoltageCompensatorUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/VoltageLevel.py | 74 + cimpy_3/cimpy/cgmes_v3_0/VoltageLimit.py | 45 + .../cgmes_v3_0/VoltagePerReactivePower.py | 48 + cimpy_3/cimpy/cgmes_v3_0/VolumeFlowRate.py | 48 + cimpy_3/cimpy/cgmes_v3_0/VsCapabilityCurve.py | 36 + cimpy_3/cimpy/cgmes_v3_0/VsConverter.py | 130 + cimpy_3/cimpy/cgmes_v3_0/VsPpccControlKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/VsQpccControlKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/WaveTrap.py | 35 + cimpy_3/cimpy/cgmes_v3_0/WindAeroConstIEC.py | 39 + cimpy_3/cimpy/cgmes_v3_0/WindAeroOneDimIEC.py | 51 + cimpy_3/cimpy/cgmes_v3_0/WindAeroTwoDimIEC.py | 86 + .../cimpy/cgmes_v3_0/WindContCurrLimIEC.py | 92 + cimpy_3/cimpy/cgmes_v3_0/WindContPType3IEC.py | 188 + .../cimpy/cgmes_v3_0/WindContPType4aIEC.py | 62 + .../cimpy/cgmes_v3_0/WindContPType4bIEC.py | 68 + .../cimpy/cgmes_v3_0/WindContPitchAngleIEC.py | 104 + cimpy_3/cimpy/cgmes_v3_0/WindContQIEC.py | 182 + cimpy_3/cimpy/cgmes_v3_0/WindContQLimIEC.py | 51 + .../cimpy/cgmes_v3_0/WindContQPQULimIEC.py | 62 + cimpy_3/cimpy/cgmes_v3_0/WindContRotorRIEC.py | 98 + .../cgmes_v3_0/WindDynamicsLookupTable.py | 116 + .../cgmes_v3_0/WindGenTurbineType1IEC.py | 39 + .../cgmes_v3_0/WindGenTurbineType1aIEC.py | 39 + .../cgmes_v3_0/WindGenTurbineType1bIEC.py | 39 + .../cgmes_v3_0/WindGenTurbineType2IEC.py | 46 + .../cgmes_v3_0/WindGenTurbineType3IEC.py | 74 + .../cgmes_v3_0/WindGenTurbineType3bIEC.py | 59 + cimpy_3/cimpy/cgmes_v3_0/WindGenType3IEC.py | 56 + cimpy_3/cimpy/cgmes_v3_0/WindGenType3aIEC.py | 48 + cimpy_3/cimpy/cgmes_v3_0/WindGenType3bIEC.py | 61 + cimpy_3/cimpy/cgmes_v3_0/WindGenType4IEC.py | 74 + cimpy_3/cimpy/cgmes_v3_0/WindGenUnitKind.py | 31 + .../cimpy/cgmes_v3_0/WindGeneratingUnit.py | 44 + .../cgmes_v3_0/WindLVRTQcontrolModesKind.py | 31 + .../cgmes_v3_0/WindLookupTableFunctionKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/WindMechIEC.py | 80 + .../cimpy/cgmes_v3_0/WindPitchContPowerIEC.py | 98 + cimpy_3/cimpy/cgmes_v3_0/WindPlantDynamics.py | 50 + .../cgmes_v3_0/WindPlantFreqPcontrolIEC.py | 140 + cimpy_3/cimpy/cgmes_v3_0/WindPlantIEC.py | 50 + .../cgmes_v3_0/WindPlantQcontrolModeKind.py | 31 + .../cgmes_v3_0/WindPlantReactiveControlIEC.py | 158 + .../cimpy/cgmes_v3_0/WindPlantUserDefined.py | 46 + cimpy_3/cimpy/cgmes_v3_0/WindPowerPlant.py | 39 + cimpy_3/cimpy/cgmes_v3_0/WindProtectionIEC.py | 98 + .../cimpy/cgmes_v3_0/WindQcontrolModeKind.py | 31 + .../cimpy/cgmes_v3_0/WindRefFrameRotIEC.py | 62 + .../cgmes_v3_0/WindTurbineType1or2Dynamics.py | 46 + .../cgmes_v3_0/WindTurbineType1or2IEC.py | 44 + .../cimpy/cgmes_v3_0/WindTurbineType3IEC.py | 74 + .../cgmes_v3_0/WindTurbineType3or4Dynamics.py | 56 + .../cgmes_v3_0/WindTurbineType3or4IEC.py | 74 + .../cimpy/cgmes_v3_0/WindTurbineType4IEC.py | 39 + .../cimpy/cgmes_v3_0/WindTurbineType4aIEC.py | 44 + .../cimpy/cgmes_v3_0/WindTurbineType4bIEC.py | 56 + .../cgmes_v3_0/WindType1or2UserDefined.py | 46 + .../cgmes_v3_0/WindType3or4UserDefined.py | 46 + .../cgmes_v3_0/WindUVRTQcontrolModeKind.py | 31 + cimpy_3/cimpy/cgmes_v3_0/WindingConnection.py | 31 + cimpy_3/cimpy/cgmes_v3_0/WorkLocation.py | 32 + .../cimpy/cgmes_v3_0}/__init__.py | 1077 +- {cimpy => cimpy_3/cimpy}/cimexamples.py | 12 +- cimpy_3/cimpy/cimexport.py | 545 + .../cimpy/cimexport_v3.py | 359 +- {cimpy => cimpy_3/cimpy}/cimimport.py | 191 +- .../cimpy/examples}/__init__.py | 0 .../examples/addExternalNetworkInjection.py | 10 +- .../cimpy/examples/convertToBusBranch.py | 16 +- .../cimpy/examples/exportCIGREMV.py | 8 +- cimpy_3/cimpy/examples/importCIGREMV.py | 22 + .../20151231T2300Z_XX_YYY_DL_.xml | 20069 ++++++++++++++ .../20151231T2300Z_XX_YYY_DY_.xml | 508 + .../20151231T2300Z_XX_YYY_GL_.xml | 1545 ++ .../20151231T2300Z_XX_YYY_SSH_.xml | 8289 ++++++ .../20151231T2300Z_XX_YYY_SV_.xml | 7374 +++++ .../20151231T2300Z_XX_YYY_TP_.xml | 3890 +++ .../20151231T2300Z_YYY_EQ_.xml | 22667 ++++++++++++++++ .../CIGRE_MV/20151231T2300Z_XX_YYY_DL_.xml | 2159 ++ .../CIGRE_MV/20151231T2300Z_XX_YYY_SSH_.xml | 721 + .../CIGRE_MV/20151231T2300Z_XX_YYY_SV_.xml | 685 + .../CIGRE_MV/20151231T2300Z_XX_YYY_TP_.xml | 311 + .../CIGRE_MV/20151231T2300Z_YYY_EQ_.xml | 1966 ++ .../LV_Test_grid_cim/CIM_LV_Simbench_Grid.zip | Bin 0 -> 54330 bytes .../examples/sampledata/CIGRE_MV/README.md | 0 .../CIGRE_MV/Rootnet_FULL_NE_24J13h_DI.xml | 0 .../CIGRE_MV/Rootnet_FULL_NE_24J13h_EQ.xml | 0 .../CIGRE_MV/Rootnet_FULL_NE_24J13h_SV.xml | 0 .../CIGRE_MV/Rootnet_FULL_NE_24J13h_TP.xml | 0 .../examples/sampledata/CIGRE_MV}/__init__.py | 0 .../20151231T2300Z_XX_YYY_DL_.xml | 2027 ++ .../20151231T2300Z_XX_YYY_SSH_.xml | 479 + .../20151231T2300Z_XX_YYY_SV_.xml | 460 + .../20151231T2300Z_XX_YYY_TP_.xml | 296 + .../20151231T2300Z_YYY_EQ_.xml | 1713 ++ .../20151231T2300Z_XX_YYY_DL_.xml | 2159 ++ .../20151231T2300Z_XX_YYY_DY_.xml | 199 + .../20151231T2300Z_XX_YYY_GL_.xml | 181 + .../20151231T2300Z_XX_YYY_SSH_.xml | 811 + .../20151231T2300Z_XX_YYY_SV_.xml | 745 + .../20151231T2300Z_XX_YYY_TP_.xml | 401 + .../20151231T2300Z_YYY_EQ_.xml | 2384 ++ .../Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml | 0 .../Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml | 0 .../Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml | 0 .../Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml | 0 .../Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml | 0 .../Bus-Branch/20191030T0924Z_YYY_EQ_.xml | 0 .../Sample_Grid_Switches/Bus-Branch/README.md | 0 .../Bus-Branch}/__init__.py | 0 .../20191030T0924Z_XX_YYY_DL_.xml | 0 .../20191030T0924Z_XX_YYY_GL_.xml | 0 .../20191030T0924Z_XX_YYY_SSH_.xml | 0 .../20191030T0924Z_XX_YYY_SV_.xml | 0 .../20191030T0924Z_XX_YYY_TP_.xml | 0 .../Node-Breaker/20191030T0924Z_YYY_EQ_.xml | 0 .../Node-Breaker/README.md | 0 .../Node-Breaker}/__init__.py | 0 .../Sample_Grid_Switches/__init__.py | 0 .../cimpy}/export_template.mustache | 0 {cimpy => cimpy_3/cimpy}/utils.py | 65 +- cimpy_3/conftest.py | 0 cimpy_3/documentation/.gitignore | 4 + cimpy_3/documentation/CIMpy.svg | 3 + cimpy_3/documentation/conf.py | 78 + cimpy_3/documentation/docu.sh | 12 + cimpy_3/documentation/images/cimpy_logo.png | Bin 0 -> 88966 bytes cimpy_3/documentation/images/cimpy_logo.svg | 209 + .../documentation/set_inheritance_diagram.py | 47 + cimpy_3/setup.py | 17 + cimpy_3/tests/1_MV_urban--2-sw_CIM.zip | Bin 0 -> 4541939 bytes .../20151231T2300Z_XX_YYY_DL_.xml | 20069 ++++++++++++++ .../20151231T2300Z_XX_YYY_DY_.xml | 508 + .../20151231T2300Z_XX_YYY_GL_.xml | 1545 ++ .../20151231T2300Z_XX_YYY_SSH_.xml | 8289 ++++++ .../20151231T2300Z_XX_YYY_SV_.xml | 7374 +++++ .../20151231T2300Z_XX_YYY_TP_.xml | 3890 +++ .../20151231T2300Z_YYY_EQ_.xml | 22667 ++++++++++++++++ .../Rootnet_FULL_NE_24J13h_DI.xml | 1129 + .../Rootnet_FULL_NE_24J13h_EQ.xml | 1497 + .../Rootnet_FULL_NE_24J13h_SV.xml | 179 + .../Rootnet_FULL_NE_24J13h_TP.xml | 279 + .../CIGREMV_import_reference_cgmes_v2_4_15.p | Bin 0 -> 179324 bytes ..._reference_cgmes_v2_4_15_DiagramLayout.xml | 1053 + ...REMV_reference_cgmes_v2_4_15_Equipment.xml | 1066 + ...reference_cgmes_v2_4_15_StateVariables.xml | 271 + ...GREMV_reference_cgmes_v2_4_15_Topology.xml | 335 + ...EMV_reference_cgmes_v3_0_DiagramLayout.xml | 20069 ++++++++++++++ .../CIGREMV_reference_cgmes_v3_0_Dynamics.xml | 508 + ...CIGREMV_reference_cgmes_v3_0_Equipment.xml | 22667 ++++++++++++++++ ...erence_cgmes_v3_0_GeographicalLocation.xml | 1545 ++ ...MV_reference_cgmes_v3_0_StateVariables.xml | 7374 +++++ ...rence_cgmes_v3_0_SteadyStateHypothesis.xml | 8289 ++++++ .../CIGREMV_reference_cgmes_v3_0_Topology.xml | 3890 +++ cimpy_3/tests/CIM_v3_import_reference.p1 | Bin 0 -> 317636 bytes cimpy_3/tests/create_pickle_dump.py | 29 + cimpy_3/tests/test_export.py | 230 + cimpy_3/tests/test_export_v3.py | 235 + cimpy_3/tests/test_import.py | 39 + cimpy_3/tests/test_import_v3.py | 41 + 1600 files changed, 298795 insertions(+), 24383 deletions(-) delete mode 100644 cimpy/cgmes_v2_4_15/ACDCConverter.py delete mode 100644 cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py delete mode 100644 cimpy/cgmes_v2_4_15/ACDCTerminal.py delete mode 100644 cimpy/cgmes_v2_4_15/ACLineSegment.py delete mode 100644 cimpy/cgmes_v2_4_15/Accumulator.py delete mode 100644 cimpy/cgmes_v2_4_15/AccumulatorLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py delete mode 100644 cimpy/cgmes_v2_4_15/AccumulatorReset.py delete mode 100644 cimpy/cgmes_v2_4_15/AccumulatorValue.py delete mode 100644 cimpy/cgmes_v2_4_15/ActivePower.py delete mode 100644 cimpy/cgmes_v2_4_15/ActivePowerLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py delete mode 100644 cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py delete mode 100644 cimpy/cgmes_v2_4_15/Analog.py delete mode 100644 cimpy/cgmes_v2_4_15/AnalogControl.py delete mode 100644 cimpy/cgmes_v2_4_15/AnalogLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/AnalogLimitSet.py delete mode 100644 cimpy/cgmes_v2_4_15/AnalogValue.py delete mode 100644 cimpy/cgmes_v2_4_15/AngleDegrees.py delete mode 100644 cimpy/cgmes_v2_4_15/AngleRadians.py delete mode 100644 cimpy/cgmes_v2_4_15/ApparentPower.py delete mode 100644 cimpy/cgmes_v2_4_15/ApparentPowerLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/Area.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachine.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py delete mode 100644 cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/BaseVoltage.py delete mode 100644 cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/Bay.py delete mode 100644 cimpy/cgmes_v2_4_15/Boolean.py delete mode 100644 cimpy/cgmes_v2_4_15/Breaker.py delete mode 100644 cimpy/cgmes_v2_4_15/BusNameMarker.py delete mode 100644 cimpy/cgmes_v2_4_15/BusbarSection.py delete mode 100644 cimpy/cgmes_v2_4_15/Capacitance.py delete mode 100644 cimpy/cgmes_v2_4_15/Command.py delete mode 100644 cimpy/cgmes_v2_4_15/Conductance.py delete mode 100644 cimpy/cgmes_v2_4_15/ConductingEquipment.py delete mode 100644 cimpy/cgmes_v2_4_15/Conductor.py delete mode 100644 cimpy/cgmes_v2_4_15/ConformLoad.py delete mode 100644 cimpy/cgmes_v2_4_15/ConformLoadGroup.py delete mode 100644 cimpy/cgmes_v2_4_15/ConformLoadSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/ConnectivityNode.py delete mode 100644 cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py delete mode 100644 cimpy/cgmes_v2_4_15/Connector.py delete mode 100644 cimpy/cgmes_v2_4_15/Control.py delete mode 100644 cimpy/cgmes_v2_4_15/ControlArea.py delete mode 100644 cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py delete mode 100644 cimpy/cgmes_v2_4_15/CoordinateSystem.py delete mode 100644 cimpy/cgmes_v2_4_15/CsConverter.py delete mode 100644 cimpy/cgmes_v2_4_15/CsOperatingModeKind.py delete mode 100644 cimpy/cgmes_v2_4_15/CsPpccControlKind.py delete mode 100644 cimpy/cgmes_v2_4_15/Currency.py delete mode 100644 cimpy/cgmes_v2_4_15/CurrentFlow.py delete mode 100644 cimpy/cgmes_v2_4_15/CurrentLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/Curve.py delete mode 100644 cimpy/cgmes_v2_4_15/CurveData.py delete mode 100644 cimpy/cgmes_v2_4_15/CurveStyle.py delete mode 100644 cimpy/cgmes_v2_4_15/DCBaseTerminal.py delete mode 100644 cimpy/cgmes_v2_4_15/DCBreaker.py delete mode 100644 cimpy/cgmes_v2_4_15/DCBusbar.py delete mode 100644 cimpy/cgmes_v2_4_15/DCChopper.py delete mode 100644 cimpy/cgmes_v2_4_15/DCConductingEquipment.py delete mode 100644 cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py delete mode 100644 cimpy/cgmes_v2_4_15/DCConverterUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/DCDisconnector.py delete mode 100644 cimpy/cgmes_v2_4_15/DCEquipmentContainer.py delete mode 100644 cimpy/cgmes_v2_4_15/DCGround.py delete mode 100644 cimpy/cgmes_v2_4_15/DCLine.py delete mode 100644 cimpy/cgmes_v2_4_15/DCLineSegment.py delete mode 100644 cimpy/cgmes_v2_4_15/DCNode.py delete mode 100644 cimpy/cgmes_v2_4_15/DCPolarityKind.py delete mode 100644 cimpy/cgmes_v2_4_15/DCSeriesDevice.py delete mode 100644 cimpy/cgmes_v2_4_15/DCShunt.py delete mode 100644 cimpy/cgmes_v2_4_15/DCSwitch.py delete mode 100644 cimpy/cgmes_v2_4_15/DCTerminal.py delete mode 100644 cimpy/cgmes_v2_4_15/DCTopologicalIsland.py delete mode 100644 cimpy/cgmes_v2_4_15/DCTopologicalNode.py delete mode 100644 cimpy/cgmes_v2_4_15/Date.py delete mode 100644 cimpy/cgmes_v2_4_15/DateTime.py delete mode 100644 cimpy/cgmes_v2_4_15/DayType.py delete mode 100644 cimpy/cgmes_v2_4_15/Decimal.py delete mode 100644 cimpy/cgmes_v2_4_15/Diagram.py delete mode 100644 cimpy/cgmes_v2_4_15/DiagramObject.py delete mode 100644 cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py delete mode 100644 cimpy/cgmes_v2_4_15/DiagramObjectPoint.py delete mode 100644 cimpy/cgmes_v2_4_15/DiagramObjectStyle.py delete mode 100644 cimpy/cgmes_v2_4_15/DiagramStyle.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py delete mode 100644 cimpy/cgmes_v2_4_15/Disconnector.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/Discrete.py delete mode 100644 cimpy/cgmes_v2_4_15/DiscreteValue.py delete mode 100644 cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py delete mode 100644 cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py delete mode 100644 cimpy/cgmes_v2_4_15/EarthFaultCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/EnergyArea.py delete mode 100644 cimpy/cgmes_v2_4_15/EnergyConsumer.py delete mode 100644 cimpy/cgmes_v2_4_15/EnergySchedulingType.py delete mode 100644 cimpy/cgmes_v2_4_15/EnergySource.py delete mode 100644 cimpy/cgmes_v2_4_15/Equipment.py delete mode 100644 cimpy/cgmes_v2_4_15/EquipmentContainer.py delete mode 100644 cimpy/cgmes_v2_4_15/EquivalentBranch.py delete mode 100644 cimpy/cgmes_v2_4_15/EquivalentEquipment.py delete mode 100644 cimpy/cgmes_v2_4_15/EquivalentInjection.py delete mode 100644 cimpy/cgmes_v2_4_15/EquivalentNetwork.py delete mode 100644 cimpy/cgmes_v2_4_15/EquivalentShunt.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC4A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC5A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC6A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAC8B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcANS.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR1.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR2.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR3.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR4.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR5.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcAVR7.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcBBC.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcCZ.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcDC1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcDC2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcDC3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcDC3A1.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcELIN1.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcELIN2.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcHU.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST4B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST5B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST6B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcIEEEST7B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcOEX3T.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcPIC.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcREXS.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcSCRX.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcSEXS.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcSK.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST1A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST2A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST3A.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST4B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST6B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST7B.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py delete mode 100644 cimpy/cgmes_v2_4_15/Float.py delete mode 100644 cimpy/cgmes_v2_4_15/FossilFuel.py delete mode 100644 cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py delete mode 100644 cimpy/cgmes_v2_4_15/Frequency.py delete mode 100644 cimpy/cgmes_v2_4_15/FuelType.py delete mode 100644 cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py delete mode 100644 cimpy/cgmes_v2_4_15/GeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/GeneratorControlSource.py delete mode 100644 cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py delete mode 100644 cimpy/cgmes_v2_4_15/GeographicalRegion.py delete mode 100644 cimpy/cgmes_v2_4_15/GovCT1.py delete mode 100644 cimpy/cgmes_v2_4_15/GovCT2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGAST.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGAST1.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGAST2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGAST3.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGAST4.py delete mode 100644 cimpy/cgmes_v2_4_15/GovGASTWD.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydro1.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydro2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydro3.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydro4.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroDD.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroFrancis.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroIEEE0.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroIEEE2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroPID.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroPID2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroPelton.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroR.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroWEH.py delete mode 100644 cimpy/cgmes_v2_4_15/GovHydroWPID.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteam0.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteam1.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteam2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamCC.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamEU.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamFV2.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamFV3.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamFV4.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamIEEE1.py delete mode 100644 cimpy/cgmes_v2_4_15/GovSteamSGO.py delete mode 100644 cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py delete mode 100644 cimpy/cgmes_v2_4_15/Ground.py delete mode 100644 cimpy/cgmes_v2_4_15/GroundDisconnector.py delete mode 100644 cimpy/cgmes_v2_4_15/GroundingImpedance.py delete mode 100644 cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py delete mode 100644 cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py delete mode 100644 cimpy/cgmes_v2_4_15/HydroPowerPlant.py delete mode 100644 cimpy/cgmes_v2_4_15/HydroPump.py delete mode 100644 cimpy/cgmes_v2_4_15/IdentifiedObject.py delete mode 100644 cimpy/cgmes_v2_4_15/IfdBaseKind.py delete mode 100644 cimpy/cgmes_v2_4_15/Inductance.py delete mode 100644 cimpy/cgmes_v2_4_15/InputSignalKind.py delete mode 100644 cimpy/cgmes_v2_4_15/Integer.py delete mode 100644 cimpy/cgmes_v2_4_15/Junction.py delete mode 100644 cimpy/cgmes_v2_4_15/Length.py delete mode 100644 cimpy/cgmes_v2_4_15/Limit.py delete mode 100644 cimpy/cgmes_v2_4_15/LimitSet.py delete mode 100644 cimpy/cgmes_v2_4_15/Line.py delete mode 100644 cimpy/cgmes_v2_4_15/LinearShuntCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadAggregate.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadArea.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadBreakSwitch.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadComposite.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadGroup.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadMotor.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadStatic.py delete mode 100644 cimpy/cgmes_v2_4_15/LoadUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/Location.py delete mode 100644 cimpy/cgmes_v2_4_15/Measurement.py delete mode 100644 cimpy/cgmes_v2_4_15/MeasurementValue.py delete mode 100644 cimpy/cgmes_v2_4_15/MeasurementValueQuality.py delete mode 100644 cimpy/cgmes_v2_4_15/MeasurementValueSource.py delete mode 100644 cimpy/cgmes_v2_4_15/MechLoad1.py delete mode 100644 cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/Money.py delete mode 100644 cimpy/cgmes_v2_4_15/MonthDay.py delete mode 100644 cimpy/cgmes_v2_4_15/MutualCoupling.py delete mode 100644 cimpy/cgmes_v2_4_15/NonConformLoad.py delete mode 100644 cimpy/cgmes_v2_4_15/NonConformLoadGroup.py delete mode 100644 cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py delete mode 100644 cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/OperationalLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py delete mode 100644 cimpy/cgmes_v2_4_15/OperationalLimitSet.py delete mode 100644 cimpy/cgmes_v2_4_15/OperationalLimitType.py delete mode 100644 cimpy/cgmes_v2_4_15/OrientationKind.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcLim2.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcLimIEEE.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcLimX1.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcLimX2.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArType2Common1.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py delete mode 100644 cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py delete mode 100644 cimpy/cgmes_v2_4_15/PU.py delete mode 100644 cimpy/cgmes_v2_4_15/PerCent.py delete mode 100644 cimpy/cgmes_v2_4_15/PetersenCoil.py delete mode 100644 cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseCode.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChanger.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py delete mode 100644 cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py delete mode 100644 cimpy/cgmes_v2_4_15/PositionPoint.py delete mode 100644 cimpy/cgmes_v2_4_15/PowerSystemResource.py delete mode 100644 cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/PowerTransformer.py delete mode 100644 cimpy/cgmes_v2_4_15/PowerTransformerEnd.py delete mode 100644 cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/ProtectedSwitch.py delete mode 100644 cimpy/cgmes_v2_4_15/Pss1.py delete mode 100644 cimpy/cgmes_v2_4_15/Pss1A.py delete mode 100644 cimpy/cgmes_v2_4_15/Pss2B.py delete mode 100644 cimpy/cgmes_v2_4_15/Pss2ST.py delete mode 100644 cimpy/cgmes_v2_4_15/Pss5.py delete mode 100644 cimpy/cgmes_v2_4_15/PssELIN2.py delete mode 100644 cimpy/cgmes_v2_4_15/PssIEEE1A.py delete mode 100644 cimpy/cgmes_v2_4_15/PssIEEE2B.py delete mode 100644 cimpy/cgmes_v2_4_15/PssIEEE3B.py delete mode 100644 cimpy/cgmes_v2_4_15/PssIEEE4B.py delete mode 100644 cimpy/cgmes_v2_4_15/PssPTIST1.py delete mode 100644 cimpy/cgmes_v2_4_15/PssPTIST3.py delete mode 100644 cimpy/cgmes_v2_4_15/PssSB4.py delete mode 100644 cimpy/cgmes_v2_4_15/PssSH.py delete mode 100644 cimpy/cgmes_v2_4_15/PssSK.py delete mode 100644 cimpy/cgmes_v2_4_15/PssWECC.py delete mode 100644 cimpy/cgmes_v2_4_15/Quality61850.py delete mode 100644 cimpy/cgmes_v2_4_15/RaiseLowerCommand.py delete mode 100644 cimpy/cgmes_v2_4_15/RatioTapChanger.py delete mode 100644 cimpy/cgmes_v2_4_15/RatioTapChangerTable.py delete mode 100644 cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py delete mode 100644 cimpy/cgmes_v2_4_15/Reactance.py delete mode 100644 cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py delete mode 100644 cimpy/cgmes_v2_4_15/ReactivePower.py delete mode 100644 cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/RegularTimePoint.py delete mode 100644 cimpy/cgmes_v2_4_15/RegulatingCondEq.py delete mode 100644 cimpy/cgmes_v2_4_15/RegulatingControl.py delete mode 100644 cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py delete mode 100644 cimpy/cgmes_v2_4_15/RegulationSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/RemoteInputSignal.py delete mode 100644 cimpy/cgmes_v2_4_15/RemoteSignalKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ReportingGroup.py delete mode 100644 cimpy/cgmes_v2_4_15/Resistance.py delete mode 100644 cimpy/cgmes_v2_4_15/RotatingMachine.py delete mode 100644 cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/RotationSpeed.py delete mode 100644 cimpy/cgmes_v2_4_15/RotorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/SVCControlMode.py delete mode 100644 cimpy/cgmes_v2_4_15/Season.py delete mode 100644 cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/Seconds.py delete mode 100644 cimpy/cgmes_v2_4_15/SeriesCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/SetPoint.py delete mode 100644 cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py delete mode 100644 cimpy/cgmes_v2_4_15/ShuntCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/Source.py delete mode 100644 cimpy/cgmes_v2_4_15/StaticLoadModelKind.py delete mode 100644 cimpy/cgmes_v2_4_15/StaticVarCompensator.py delete mode 100644 cimpy/cgmes_v2_4_15/StationSupply.py delete mode 100644 cimpy/cgmes_v2_4_15/StringMeasurement.py delete mode 100644 cimpy/cgmes_v2_4_15/StringMeasurementValue.py delete mode 100644 cimpy/cgmes_v2_4_15/SubGeographicalRegion.py delete mode 100644 cimpy/cgmes_v2_4_15/SubLoadArea.py delete mode 100644 cimpy/cgmes_v2_4_15/Substation.py delete mode 100644 cimpy/cgmes_v2_4_15/Susceptance.py delete mode 100644 cimpy/cgmes_v2_4_15/SvInjection.py delete mode 100644 cimpy/cgmes_v2_4_15/SvPowerFlow.py delete mode 100644 cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py delete mode 100644 cimpy/cgmes_v2_4_15/SvStatus.py delete mode 100644 cimpy/cgmes_v2_4_15/SvTapStep.py delete mode 100644 cimpy/cgmes_v2_4_15/SvVoltage.py delete mode 100644 cimpy/cgmes_v2_4_15/Switch.py delete mode 100644 cimpy/cgmes_v2_4_15/SwitchSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachine.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineKind.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py delete mode 100644 cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/TapChanger.py delete mode 100644 cimpy/cgmes_v2_4_15/TapChangerControl.py delete mode 100644 cimpy/cgmes_v2_4_15/TapChangerTablePoint.py delete mode 100644 cimpy/cgmes_v2_4_15/TapSchedule.py delete mode 100644 cimpy/cgmes_v2_4_15/Temperature.py delete mode 100644 cimpy/cgmes_v2_4_15/Terminal.py delete mode 100644 cimpy/cgmes_v2_4_15/TextDiagramObject.py delete mode 100644 cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/TieFlow.py delete mode 100644 cimpy/cgmes_v2_4_15/TopologicalIsland.py delete mode 100644 cimpy/cgmes_v2_4_15/TopologicalNode.py delete mode 100644 cimpy/cgmes_v2_4_15/TransformerControlMode.py delete mode 100644 cimpy/cgmes_v2_4_15/TransformerEnd.py delete mode 100644 cimpy/cgmes_v2_4_15/TurbLCFB1.py delete mode 100644 cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcLimX1.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcLimX2.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/UnitMultiplier.py delete mode 100644 cimpy/cgmes_v2_4_15/UnitSymbol.py delete mode 100644 cimpy/cgmes_v2_4_15/VAdjIEEE.py delete mode 100644 cimpy/cgmes_v2_4_15/VCompIEEEType1.py delete mode 100644 cimpy/cgmes_v2_4_15/VCompIEEEType2.py delete mode 100644 cimpy/cgmes_v2_4_15/Validity.py delete mode 100644 cimpy/cgmes_v2_4_15/ValueAliasSet.py delete mode 100644 cimpy/cgmes_v2_4_15/ValueToAlias.py delete mode 100644 cimpy/cgmes_v2_4_15/VisibilityLayer.py delete mode 100644 cimpy/cgmes_v2_4_15/Voltage.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageLevel.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltageLimit.py delete mode 100644 cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py delete mode 100644 cimpy/cgmes_v2_4_15/VolumeFlowRate.py delete mode 100644 cimpy/cgmes_v2_4_15/VsCapabilityCurve.py delete mode 100644 cimpy/cgmes_v2_4_15/VsConverter.py delete mode 100644 cimpy/cgmes_v2_4_15/VsPpccControlKind.py delete mode 100644 cimpy/cgmes_v2_4_15/VsQpccControlKind.py delete mode 100644 cimpy/cgmes_v2_4_15/WindAeroConstIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContPType3IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContPType4aIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContPType4bIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContQIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindContRotorRIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenType4IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGenUnitKind.py delete mode 100644 cimpy/cgmes_v2_4_15/WindGeneratingUnit.py delete mode 100644 cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py delete mode 100644 cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py delete mode 100644 cimpy/cgmes_v2_4_15/WindMechIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPlantDynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPlantIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindPlantUserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/WindProtectionIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py delete mode 100644 cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py delete mode 100644 cimpy/cgmes_v2_4_15/WindingConnection.py delete mode 100644 cimpy/examples/import_cigre_mv.py create mode 100644 cimpy_3/Dockerfile create mode 100644 cimpy_3/LICENSE create mode 100644 cimpy_3/MANIFEST.in create mode 100644 cimpy_3/README.md rename {cimpy => cimpy_3/cimpy}/__init__.py (56%) create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ACDCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ACLineSegment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Accumulator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorReset.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorValue.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ActivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Analog.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AnalogControl.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AnalogValue.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AngleDegrees.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AngleRadians.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ApparentPower.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Area.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py rename {cimpy => cimpy_3/cimpy}/cgmes_v2_4_15/Base.py (74%) create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/BaseVoltage.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Bay.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Boolean.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Breaker.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/BusNameMarker.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/BusbarSection.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Capacitance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CapacitancePerLength.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Command.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Conductance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConductingEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Conductor.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConformLoad.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Connector.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Control.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ControlArea.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CoordinateSystem.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CsConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CsPpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Currency.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CurrentFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CurrentLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Curve.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CurveData.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/CurveStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCBaseTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCBreaker.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCBusbar.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCChopper.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCConductingEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCConverterUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCDisconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCGround.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCLine.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCLineSegment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCNode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCPolarityKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCSeriesDevice.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCShunt.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalNode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Date.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DateTime.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DayType.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Decimal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Diagram.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramObject.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiagramStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Disconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Discrete.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DiscreteValue.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/DynamicsVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EnergyArea.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EnergyConsumer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EnergySchedulingType.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EnergySource.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Equipment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquipmentContainer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquipmentVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquivalentBranch.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquivalentEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquivalentInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquivalentNetwork.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/EquivalentShunt.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC4A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC5A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC6A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAC8B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcANS.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR3.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR4.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR5.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR7.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcBBC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcCZ.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcDC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcDC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcHU.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcOEX3T.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcPIC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcREXS.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcSCRX.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcSEXS.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcSK.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST2A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST3A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST4B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST6B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST7B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Float.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/FossilFuel.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Frequency.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/FuelType.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GeneratorControlSource.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GeographicalRegion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovCT1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovCT2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGAST.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGAST1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGAST2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGAST3.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGAST4.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovGASTWD.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydro1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydro2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydro3.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydro4.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroDD.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroFrancis.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPelton.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroR.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWEH.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWPID.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteam0.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteam1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteam2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamCC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamEU.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV3.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV4.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GovSteamSGO.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Ground.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GroundDisconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/GroundingImpedance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/HydroPowerPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/HydroPump.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/IdentifiedObject.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/IfdBaseKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Inductance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/InductancePerLength.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/InputSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Integer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Junction.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Length.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Limit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LimitTypeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Line.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadAggregate.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadArea.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadComposite.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadMotor.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadStatic.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/LoadUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Location.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Measurement.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValue.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueSource.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MechLoad1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Money.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MonthDay.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/MutualCoupling.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoad.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitType.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OrientationKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcLim2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2Common1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PU.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PerCent.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoil.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseCode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PositionPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemResource.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ProtectedSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Pss1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Pss1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Pss2B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Pss2ST.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Pss5.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssELIN2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE1A.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE2B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE3B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE4B.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST3.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssSB4.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssSH.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssSK.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/PssWECC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Quality61850.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Reactance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ReactivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegularTimePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegulatingCondEq.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControl.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RegulationSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RemoteInputSignal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RemoteSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ReportingGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Resistance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ResistancePerLength.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RotationSpeed.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/RotorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SVCControlMode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Season.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Seconds.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SeriesCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SetPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ShuntCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Simple_Float.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Source.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StateVariablesVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StaticVarCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StationSupply.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/String.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurement.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurementValue.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SubLoadArea.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Substation.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Susceptance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvPowerFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvStatus.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvTapStep.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SvVoltage.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Switch.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SwitchSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TapChangerControl.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TapSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Temperature.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Terminal.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TextDiagramObject.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TieFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TopologicalIsland.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TopologicalNode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TopologyVersion.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TransformerControlMode.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TransformerEnd.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TurbLCFB1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnitMultiplier.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/UnitSymbol.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VAdjIEEE.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType1.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType2.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Validity.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ValueAliasSet.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/ValueToAlias.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VisibilityLayer.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/Voltage.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageLevel.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltageLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VolumeFlowRate.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VsConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VsPpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/VsQpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContPType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContQIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenType4IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGenUnitKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindMechIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPlantDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPlantIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindProtectionIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v2_4_15/WindingConnection.py rename {cimpy/examples => cimpy_3/cimpy/cgmes_v2_4_15}/__init__.py (100%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ACDCConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ACDCConverterDCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ACDCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ACLineSegment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Accumulator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AccumulatorReset.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AccumulatorValue.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ActivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ActivePowerLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerCurrentFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerFrequency.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Analog.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AnalogControl.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AnalogLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AnalogLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AnalogValue.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AngleDegrees.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AngleRadians.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ApparentPower.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ApparentPowerLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Area.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineEquivalentCircuit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineTimeConstantReactance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/AuxiliaryEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Base.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BaseVoltage.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BasicIntervalSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BatteryStateKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BatteryUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Bay.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Boolean.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BoundaryPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Breaker.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BusNameMarker.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/BusbarSection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CAESPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CSCDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CSCUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Capacitance.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/CapacitancePerLength.py (92%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Clamp.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CogenerationPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CombinedCyclePlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Command.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Conductance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConductingEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Conductor.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConformLoad.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConformLoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConformLoadSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConnectivityNode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ConnectivityNodeContainer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Connector.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Control.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ControlArea.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ControlAreaGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ControlAreaTypeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CoordinateSystem.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CrossCompoundTurbineGovernorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CsConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CsOperatingModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CsPpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Currency.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CurrentFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CurrentLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CurrentTransformer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Curve.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CurveData.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/CurveStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Cut.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCBaseTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCBreaker.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCBusbar.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCChopper.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCConductingEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCConverterOperatingModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCConverterUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCDisconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCEquipmentContainer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCGround.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCLine.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCLineSegment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCNode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCPolarityKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCSeriesDevice.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCShunt.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCTerminal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCTopologicalIsland.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DCTopologicalNode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Date.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DateTime.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DayType.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Decimal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Diagram.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/DiagramLayoutVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiagramObject.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiagramObjectGluePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiagramObjectPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiagramObjectStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiagramStyle.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DisconnectingCircuitBreaker.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Disconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Discrete.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DiscreteValue.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DroopSignalFeedbackKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/DynamicsFunctionBlock.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/DynamicsVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EarthFaultCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EnergyArea.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EnergyConnection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EnergyConsumer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EnergySchedulingType.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EnergySource.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Equipment.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/EquipmentBoundaryVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquipmentContainer.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/EquipmentVersion.py (97%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquivalentBranch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquivalentEquipment.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquivalentInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquivalentNetwork.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/EquivalentShunt.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC4A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC5A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC6A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAC8B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcANS.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR3.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR4.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR5.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcAVR7.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcBBC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcCZ.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcDC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcDC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcDC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcDC3A1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcELIN1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcELIN2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcHU.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC4A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC5A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC6A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC7B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC8B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC4B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1AUELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST4B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST5B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST6B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST7B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcNI.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcOEX3T.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcPIC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcREXS.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcREXSFeedbackSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcRQB.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcSCRX.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcSEXS.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcSK.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST3A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST4B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST6B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST6BOELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST7B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST7BOELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcST7BUELselectorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ExternalNetworkInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/FaultIndicator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Float.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/FossilFuel.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/FrancisGovernorControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Frequency.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/FuelType.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Fuse.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GenICompensationForGenJ.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GeneratorControlSource.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GenericNonLinearLoadModelKind.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/GeographicalLocationVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GeographicalRegion.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovCT1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovCT2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGAST.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGAST1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGAST2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGAST3.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGAST4.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovGASTWD.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydro1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydro2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydro3.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydro4.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydro4ModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroDD.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroFrancis.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE0.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroPID.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroPID2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroPelton.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroR.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroWEH.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovHydroWPID.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteam0.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteam1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteam2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamBB.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamCC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamEU.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamFV2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamFV3.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamFV4.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamIEEE1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GovSteamSGO.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GrossToNetActivePowerCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Ground.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GroundDisconnector.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/GroundingImpedance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HVDCDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroEnergyConversionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroPlantStorageKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroPowerPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroPump.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/HydroTurbineKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/IOPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/IdentifiedObject.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/IfdBaseKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Inductance.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/InductancePerLength.py (92%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/InputSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Integer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Jumper.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Junction.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Length.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Limit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LimitKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LimitSet.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/LimitTypeKind.py (79%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Line.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LinearShuntCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadAggregate.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadArea.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadBreakSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadComposite.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadGenericNonLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadMotor.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadResponseCharacteristic.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadStatic.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/LoadUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Location.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Measurement.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MeasurementValue.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MeasurementValueQuality.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MeasurementValueSource.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MechLoad1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Money.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MonthDay.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/MutualCoupling.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NonConformLoad.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NonConformLoadGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NonConformLoadSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensatorPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/NuclearGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OperationalLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OperationalLimitDirectionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OperationalLimitSet.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OperationalLimitType.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OrientationKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcLim2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcLimIEEE.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcLimX1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcLimX2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEPFController.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEVArController.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArType2Common1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEPFController.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEVArController.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PU.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PerCent.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/PerLengthDCLineParameter.py (91%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PetersenCoil.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PetersenCoilModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseCode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerAsymmetrical.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerNonLinear.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerSymmetrical.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTable.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTabular.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PhotoVoltaicUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PositionPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PostLineSensor.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PotentialTransformer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsConnection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsWindUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerSystemResource.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerTransformer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PowerTransformerEnd.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ProprietaryParameterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ProtectedSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Pss1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Pss1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Pss2B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Pss2ST.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Pss5.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssELIN2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssIEEE1A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssIEEE2B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssIEEE3B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssIEEE4B.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssPTIST1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssPTIST3.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssRQB.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssSB4.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssSH.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssSK.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssSTAB2A.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/PssWECC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Quality61850.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RaiseLowerCommand.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RatioTapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTable.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Reactance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ReactiveCapabilityCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ReactivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RealEnergy.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegularIntervalSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegularTimePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegulatingCondEq.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegulatingControl.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegulatingControlModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RegulationSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RemoteInputSignal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RemoteSignalKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ReportingGroup.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Resistance.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/ResistancePerLength.py (92%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RotatingMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RotatingMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RotationSpeed.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/RotorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SVCControlMode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SVCUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Season.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SeasonDayTypeSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Seconds.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Sensor.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SeriesCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ServiceLocation.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SetPoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ShortCircuitRotorKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ShuntCompensator.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/Simple_Float.py (90%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SolarGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SolarPowerPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Source.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/StateVariablesVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StaticLoadModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensator.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensatorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StationSupply.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Status.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/SteadyStateHypothesisVersion.py (96%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StreetAddress.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StreetDetail.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/String.py (83%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StringMeasurement.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/StringMeasurementValue.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SubGeographicalRegion.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SubLoadArea.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Substation.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SurgeArrester.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Susceptance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvInjection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvPowerFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvShuntCompensatorSections.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvStatus.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvSwitch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvTapStep.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SvVoltage.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Switch.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SwitchSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachine.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDetailed.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineEquivalentCircuit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineModelKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineOperatingMode.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineSimplified.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineTimeConstantReactance.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TapChanger.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TapChangerControl.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TapChangerTablePoint.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TapSchedule.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Temperature.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Terminal.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TextDiagramObject.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ThermalGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TieFlow.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TopologicalIsland.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TopologicalNode.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/TopologyBoundaryVersion.py (96%) rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/TopologyVersion.py (94%) create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TownDetail.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TransformerEnd.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TurbLCFB1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcLim2Simplified.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnitMultiplier.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/UnitSymbol.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VAdjIEEE.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType1.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType2.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VSCDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VSCUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Validity.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ValueAliasSet.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/ValueToAlias.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VisibilityLayer.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/Voltage.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageLevel.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltageLimit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VoltagePerReactivePower.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VolumeFlowRate.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VsCapabilityCurve.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VsConverter.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VsPpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/VsQpccControlKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WaveTrap.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindAeroConstIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindAeroOneDimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindAeroTwoDimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContCurrLimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContPType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContPType4aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContPType4bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContPitchAngleIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContQIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContQLimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContQPQULimIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindContRotorRIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindDynamicsLookupTable.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType2IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenType3aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenType3bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenType4IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGenUnitKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindGeneratingUnit.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindLVRTQcontrolModesKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindLookupTableFunctionKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindMechIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPitchContPowerIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantDynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantFreqPcontrolIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantQcontrolModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantReactiveControlIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPlantUserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindPowerPlant.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindProtectionIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindQcontrolModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindRefFrameRotIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4Dynamics.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4IEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4aIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4bIEC.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindType1or2UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindType3or4UserDefined.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindUVRTQcontrolModeKind.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WindingConnection.py create mode 100644 cimpy_3/cimpy/cgmes_v3_0/WorkLocation.py rename {cimpy/cgmes_v2_4_15 => cimpy_3/cimpy/cgmes_v3_0}/__init__.py (66%) rename {cimpy => cimpy_3/cimpy}/cimexamples.py (61%) create mode 100644 cimpy_3/cimpy/cimexport.py rename cimpy/cimexport.py => cimpy_3/cimpy/cimexport_v3.py (56%) rename {cimpy => cimpy_3/cimpy}/cimimport.py (73%) rename {cimpy/examples/sampledata/CIGRE_MV => cimpy_3/cimpy/examples}/__init__.py (100%) rename cimpy/examples/add_external_network_injection.py => cimpy_3/cimpy/examples/addExternalNetworkInjection.py (69%) rename cimpy/examples/convert_to_bus_branch.py => cimpy_3/cimpy/examples/convertToBusBranch.py (56%) rename cimpy/examples/export_cigre_mv.py => cimpy_3/cimpy/examples/exportCIGREMV.py (72%) create mode 100644 cimpy_3/cimpy/examples/importCIGREMV.py create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_DL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SSH_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SV_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_TP_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_YYY_EQ_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/CIGRE_MV/LV_Test_grid_cim/LV_Test_grid_cim/CIM_LV_Simbench_Grid.zip rename {cimpy => cimpy_3/cimpy}/examples/sampledata/CIGRE_MV/README.md (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/CIGRE_MV/Rootnet_FULL_NE_24J13h_DI.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/CIGRE_MV/Rootnet_FULL_NE_24J13h_EQ.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/CIGRE_MV/Rootnet_FULL_NE_24J13h_SV.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/CIGRE_MV/Rootnet_FULL_NE_24J13h_TP.xml (100%) rename {cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch => cimpy_3/cimpy/examples/sampledata/CIGRE_MV}/__init__.py (100%) create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_DL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SSH_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SV_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_TP_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_YYY_EQ_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DY_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_GL_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SSH_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SV_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_TP_.xml create mode 100644 cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_YYY_EQ_.xml rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md (100%) rename {cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker => cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch}/__init__.py (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml (100%) rename {cimpy => cimpy_3/cimpy}/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md (100%) rename {cimpy/examples/sampledata/Sample_Grid_Switches => cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker}/__init__.py (100%) create mode 100644 cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/__init__.py rename {cimpy => cimpy_3/cimpy}/export_template.mustache (100%) rename {cimpy => cimpy_3/cimpy}/utils.py (71%) create mode 100644 cimpy_3/conftest.py create mode 100644 cimpy_3/documentation/.gitignore create mode 100644 cimpy_3/documentation/CIMpy.svg create mode 100644 cimpy_3/documentation/conf.py create mode 100644 cimpy_3/documentation/docu.sh create mode 100644 cimpy_3/documentation/images/cimpy_logo.png create mode 100644 cimpy_3/documentation/images/cimpy_logo.svg create mode 100644 cimpy_3/documentation/set_inheritance_diagram.py create mode 100644 cimpy_3/setup.py create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM.zip create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DL_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_DI.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_EQ.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_SV.xml create mode 100644 cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_TP.xml create mode 100644 cimpy_3/tests/CIGREMV_import_reference_cgmes_v2_4_15.p create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_DiagramLayout.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Dynamics.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Equipment.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_GeographicalLocation.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_StateVariables.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_SteadyStateHypothesis.xml create mode 100644 cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Topology.xml create mode 100644 cimpy_3/tests/CIM_v3_import_reference.p1 create mode 100644 cimpy_3/tests/create_pickle_dump.py create mode 100644 cimpy_3/tests/test_export.py create mode 100644 cimpy_3/tests/test_export_v3.py create mode 100644 cimpy_3/tests/test_import.py create mode 100644 cimpy_3/tests/test_import_v3.py diff --git a/cimpy/cgmes_v2_4_15/ACDCConverter.py b/cimpy/cgmes_v2_4_15/ACDCConverter.py deleted file mode 100644 index c5f471c5..00000000 --- a/cimpy/cgmes_v2_4_15/ACDCConverter.py +++ /dev/null @@ -1,85 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class ACDCConverter(ConductingEquipment): - ''' - A unit with valves for three phases, together with unit control equipment, essential protective and switching devices, DC storage capacitors, phase reactors and auxiliaries, if any, used for conversion. - - :baseS: Base apparent power of the converter pole. Default: 0.0 - :idleLoss: Active power loss in pole at no power transfer. Converter configuration data used in power flow. Default: 0.0 - :maxUdc: The maximum voltage on the DC side at which the converter should operate. Converter configuration data used in power flow. Default: 0.0 - :minUdc: Min allowed converter DC voltage. Converter configuration data used in power flow. Default: 0.0 - :numberOfValves: Number of valves in the converter. Used in loss calculations. Default: 0 - :ratedUdc: Rated converter DC voltage, also called UdN. Converter configuration data used in power flow. Default: 0.0 - :resistiveLoss: Converter configuration data used in power flow. Refer to poleLossP. Default: 0.0 - :switchingLoss: Switching losses, relative to the base apparent power `baseS`. Refer to poleLossP. Default: 0.0 - :valveU0: Valve threshold voltage. Forward voltage drop when the valve is conducting. Used in loss calculations, i.e. the switchLoss depend on numberOfValves * valveU0. Default: 0.0 - :DCTerminals: Default: "list" - :PccTerminal: All converters` DC sides linked to this point of common coupling terminal. Default: None - :p: Active power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 - :q: Reactive power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 - :targetPpcc: Real power injection target in AC grid, at point of common coupling. Default: 0.0 - :targetUdc: Target value for DC voltage magnitude. Default: 0.0 - :idc: Converter DC current, also called Id. Converter state variable, result from power flow. Default: 0.0 - :poleLossP: The active power loss at a DC Pole = idleLoss + switchingLoss*|Idc| + resitiveLoss*Idc^2 For lossless operation Pdc=Pac For rectifier operation with losses Pdc=Pac-lossP For inverter operation with losses Pdc=Pac+lossP Converter state variable used in power flow. Default: 0.0 - :uc: Converter voltage, the voltage at the AC side of the bridge. Converter state variable, result from power flow. Default: 0.0 - :udc: Converter voltage at the DC side, also called Ud. Converter state variable, result from power flow. Default: 0.0 - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'baseS': [cgmesProfile.EQ.value, ], - 'idleLoss': [cgmesProfile.EQ.value, ], - 'maxUdc': [cgmesProfile.EQ.value, ], - 'minUdc': [cgmesProfile.EQ.value, ], - 'numberOfValves': [cgmesProfile.EQ.value, ], - 'ratedUdc': [cgmesProfile.EQ.value, ], - 'resistiveLoss': [cgmesProfile.EQ.value, ], - 'switchingLoss': [cgmesProfile.EQ.value, ], - 'valveU0': [cgmesProfile.EQ.value, ], - 'DCTerminals': [cgmesProfile.EQ.value, ], - 'PccTerminal': [cgmesProfile.EQ.value, ], - 'p': [cgmesProfile.SSH.value, ], - 'q': [cgmesProfile.SSH.value, ], - 'targetPpcc': [cgmesProfile.SSH.value, ], - 'targetUdc': [cgmesProfile.SSH.value, ], - 'idc': [cgmesProfile.SV.value, ], - 'poleLossP': [cgmesProfile.SV.value, ], - 'uc': [cgmesProfile.SV.value, ], - 'udc': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, baseS = 0.0, idleLoss = 0.0, maxUdc = 0.0, minUdc = 0.0, numberOfValves = 0, ratedUdc = 0.0, resistiveLoss = 0.0, switchingLoss = 0.0, valveU0 = 0.0, DCTerminals = "list", PccTerminal = None, p = 0.0, q = 0.0, targetPpcc = 0.0, targetUdc = 0.0, idc = 0.0, poleLossP = 0.0, uc = 0.0, udc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.baseS = baseS - self.idleLoss = idleLoss - self.maxUdc = maxUdc - self.minUdc = minUdc - self.numberOfValves = numberOfValves - self.ratedUdc = ratedUdc - self.resistiveLoss = resistiveLoss - self.switchingLoss = switchingLoss - self.valveU0 = valveU0 - self.DCTerminals = DCTerminals - self.PccTerminal = PccTerminal - self.p = p - self.q = q - self.targetPpcc = targetPpcc - self.targetUdc = targetUdc - self.idc = idc - self.poleLossP = poleLossP - self.uc = uc - self.udc = udc - - def __str__(self): - str = 'class=ACDCConverter\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py b/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py deleted file mode 100644 index 46474cd1..00000000 --- a/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DCBaseTerminal import DCBaseTerminal - - -class ACDCConverterDCTerminal(DCBaseTerminal): - ''' - A DC electrical connection point at the AC/DC converter. The AC/DC converter is electrically connected also to the AC side. The AC connection is inherited from the AC conducting equipment in the same way as any other AC equipment. The AC/DC converter DC terminal is separate from generic DC terminal to restrict the connection with the AC side to AC/DC converter and so that no other DC conducting equipment can be connected to the AC side. - - :DCConductingEquipment: Default: None - :polarity: Represents the normal network polarity condition. Default: None - ''' - - cgmesProfile = DCBaseTerminal.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.TP.value, ], - 'DCConductingEquipment': [cgmesProfile.EQ.value, ], - 'polarity': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCBaseTerminal: \n' + DCBaseTerminal.__doc__ - - def __init__(self, DCConductingEquipment = None, polarity = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCConductingEquipment = DCConductingEquipment - self.polarity = polarity - - def __str__(self): - str = 'class=ACDCConverterDCTerminal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ACDCTerminal.py b/cimpy/cgmes_v2_4_15/ACDCTerminal.py deleted file mode 100644 index ebc76c62..00000000 --- a/cimpy/cgmes_v2_4_15/ACDCTerminal.py +++ /dev/null @@ -1,43 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ACDCTerminal(IdentifiedObject): - ''' - An electrical connection point (AC or DC) to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. - - :BusNameMarker: The bus name marker used to name the bus (topological node). Default: None - :sequenceNumber: The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the `starting point` for a two terminal branch. Default: 0 - :OperationalLimitSet: Default: "list" - :Measurements: Measurements associated with this terminal defining where the measurement is placed in the network topology. It may be used, for instance, to capture the sensor position, such as a voltage transformer (PT) at a busbar or a current transformer (CT) at the bar between a breaker and an isolator. Default: "list" - :connected: The connected status is related to a bus-branch model and the topological node to terminal relation. True implies the terminal is connected to the related topological node and false implies it is not. In a bus-branch model, the connected status is used to tell if equipment is disconnected without having to change the connectivity described by the topological node to terminal relation. A valid case is that conducting equipment can be connected in one end and open in the other. In particular for an AC line segment, where the reactive line charging can be significant, this is a relevant case. Default: False - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.TP.value, ], - 'BusNameMarker': [cgmesProfile.EQ.value, ], - 'sequenceNumber': [cgmesProfile.EQ.value, ], - 'OperationalLimitSet': [cgmesProfile.EQ.value, ], - 'Measurements': [cgmesProfile.EQ.value, ], - 'connected': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, BusNameMarker = None, sequenceNumber = 0, OperationalLimitSet = "list", Measurements = "list", connected = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.BusNameMarker = BusNameMarker - self.sequenceNumber = sequenceNumber - self.OperationalLimitSet = OperationalLimitSet - self.Measurements = Measurements - self.connected = connected - - def __str__(self): - str = 'class=ACDCTerminal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ACLineSegment.py b/cimpy/cgmes_v2_4_15/ACLineSegment.py deleted file mode 100644 index 994113b2..00000000 --- a/cimpy/cgmes_v2_4_15/ACLineSegment.py +++ /dev/null @@ -1,55 +0,0 @@ -from .Conductor import Conductor - - -class ACLineSegment(Conductor): - ''' - A wire or combination of wires, with consistent electrical characteristics, building a single electrical system, used to carry alternating current between points in the power system. For symmetrical, transposed 3ph lines, it is sufficient to use attributes of the line segment, which describe impedances and admittances for the entire length of the segment. Additionally impedances can be computed by using length and associated per length impedances. The BaseVoltage at the two ends of ACLineSegments in a Line shall have the same BaseVoltage.nominalVoltage. However, boundary lines may have slightly different BaseVoltage.nominalVoltages and variation is allowed. Larger voltage difference in general requires use of an equivalent branch. - - :bch: Positive sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. This value represents the full charging over the full length of the line. Default: 0.0 - :gch: Positive sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 - :r: Positive sequence series resistance of the entire line section. Default: 0.0 - :x: Positive sequence series reactance of the entire line section. Default: 0.0 - :b0ch: Zero sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 - :g0ch: Zero sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 - :r0: Zero sequence series resistance of the entire line section. Default: 0.0 - :shortCircuitEndTemperature: Maximum permitted temperature at the end of SC for the calculation of minimum short-circuit currents. Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :x0: Zero sequence series reactance of the entire line section. Default: 0.0 - ''' - - cgmesProfile = Conductor.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'bch': [cgmesProfile.EQ.value, ], - 'gch': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'b0ch': [cgmesProfile.EQ.value, ], - 'g0ch': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'shortCircuitEndTemperature': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Conductor: \n' + Conductor.__doc__ - - def __init__(self, bch = 0.0, gch = 0.0, r = 0.0, x = 0.0, b0ch = 0.0, g0ch = 0.0, r0 = 0.0, shortCircuitEndTemperature = 0.0, x0 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.bch = bch - self.gch = gch - self.r = r - self.x = x - self.b0ch = b0ch - self.g0ch = g0ch - self.r0 = r0 - self.shortCircuitEndTemperature = shortCircuitEndTemperature - self.x0 = x0 - - def __str__(self): - str = 'class=ACLineSegment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Accumulator.py b/cimpy/cgmes_v2_4_15/Accumulator.py deleted file mode 100644 index 3c1e4e27..00000000 --- a/cimpy/cgmes_v2_4_15/Accumulator.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Measurement import Measurement - - -class Accumulator(Measurement): - ''' - Accumulator represents an accumulated (counted) Measurement, e.g. an energy value. - - :LimitSets: The Measurements using the LimitSet. Default: "list" - :AccumulatorValues: Measurement to which this value is connected. Default: "list" - ''' - - cgmesProfile = Measurement.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'LimitSets': [cgmesProfile.EQ.value, ], - 'AccumulatorValues': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Measurement: \n' + Measurement.__doc__ - - def __init__(self, LimitSets = "list", AccumulatorValues = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LimitSets = LimitSets - self.AccumulatorValues = AccumulatorValues - - def __str__(self): - str = 'class=Accumulator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AccumulatorLimit.py b/cimpy/cgmes_v2_4_15/AccumulatorLimit.py deleted file mode 100644 index 0cc2134e..00000000 --- a/cimpy/cgmes_v2_4_15/AccumulatorLimit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Limit import Limit - - -class AccumulatorLimit(Limit): - ''' - Limit values for Accumulator measurements. - - :value: The value to supervise against. The value is positive. Default: 0 - :LimitSet: The limit values used for supervision of Measurements. Default: None - ''' - - cgmesProfile = Limit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'LimitSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Limit: \n' + Limit.__doc__ - - def __init__(self, value = 0, LimitSet = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - self.LimitSet = LimitSet - - def __str__(self): - str = 'class=AccumulatorLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py b/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py deleted file mode 100644 index 723fdc17..00000000 --- a/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LimitSet import LimitSet - - -class AccumulatorLimitSet(LimitSet): - ''' - An AccumulatorLimitSet specifies a set of Limits that are associated with an Accumulator measurement. - - :Measurements: A measurement may have zero or more limit ranges defined for it. Default: "list" - :Limits: The set of limits. Default: "list" - ''' - - cgmesProfile = LimitSet.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Measurements': [cgmesProfile.EQ.value, ], - 'Limits': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LimitSet: \n' + LimitSet.__doc__ - - def __init__(self, Measurements = "list", Limits = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Measurements = Measurements - self.Limits = Limits - - def __str__(self): - str = 'class=AccumulatorLimitSet\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AccumulatorReset.py b/cimpy/cgmes_v2_4_15/AccumulatorReset.py deleted file mode 100644 index 4b860b02..00000000 --- a/cimpy/cgmes_v2_4_15/AccumulatorReset.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Control import Control - - -class AccumulatorReset(Control): - ''' - This command reset the counter value to zero. - - :AccumulatorValue: The accumulator value that is reset by the command. Default: None - ''' - - cgmesProfile = Control.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'AccumulatorValue': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Control: \n' + Control.__doc__ - - def __init__(self, AccumulatorValue = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.AccumulatorValue = AccumulatorValue - - def __str__(self): - str = 'class=AccumulatorReset\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AccumulatorValue.py b/cimpy/cgmes_v2_4_15/AccumulatorValue.py deleted file mode 100644 index 2bb3c79f..00000000 --- a/cimpy/cgmes_v2_4_15/AccumulatorValue.py +++ /dev/null @@ -1,37 +0,0 @@ -from .MeasurementValue import MeasurementValue - - -class AccumulatorValue(MeasurementValue): - ''' - AccumulatorValue represents an accumulated (counted) MeasurementValue. - - :Accumulator: The values connected to this measurement. Default: None - :AccumulatorReset: The command that reset the accumulator value. Default: None - :value: The value to supervise. The value is positive. Default: 0 - ''' - - cgmesProfile = MeasurementValue.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Accumulator': [cgmesProfile.EQ.value, ], - 'AccumulatorReset': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MeasurementValue: \n' + MeasurementValue.__doc__ - - def __init__(self, Accumulator = None, AccumulatorReset = None, value = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Accumulator = Accumulator - self.AccumulatorReset = AccumulatorReset - self.value = value - - def __str__(self): - str = 'class=AccumulatorValue\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ActivePower.py b/cimpy/cgmes_v2_4_15/ActivePower.py deleted file mode 100644 index f8d6db3a..00000000 --- a/cimpy/cgmes_v2_4_15/ActivePower.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class ActivePower(Base): - ''' - Product of RMS value of the voltage and the RMS value of the in-phase component of the current. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=ActivePower\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ActivePowerLimit.py b/cimpy/cgmes_v2_4_15/ActivePowerLimit.py deleted file mode 100644 index 48ed971c..00000000 --- a/cimpy/cgmes_v2_4_15/ActivePowerLimit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .OperationalLimit import OperationalLimit - - -class ActivePowerLimit(OperationalLimit): - ''' - Limit on active power flow. - - :value: Value of active power limit. Default: 0.0 - ''' - - cgmesProfile = OperationalLimit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OperationalLimit: \n' + OperationalLimit.__doc__ - - def __init__(self, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - - def __str__(self): - str = 'class=ActivePowerLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py b/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py deleted file mode 100644 index 37d2ec20..00000000 --- a/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class ActivePowerPerCurrentFlow(Base): - ''' - - - :denominatorMultiplier: Default: None - :denominatorUnit: Default: None - :multiplier: Default: None - :unit: Default: None - :value: Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'denominatorMultiplier': [cgmesProfile.EQ.value, ], - 'denominatorUnit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, denominatorMultiplier = None, denominatorUnit = None, multiplier = None, unit = None, value = 0.0, ): - - self.denominatorMultiplier = denominatorMultiplier - self.denominatorUnit = denominatorUnit - self.multiplier = multiplier - self.unit = unit - self.value = value - - def __str__(self): - str = 'class=ActivePowerPerCurrentFlow\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py b/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py deleted file mode 100644 index f0e4f80c..00000000 --- a/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class ActivePowerPerFrequency(Base): - ''' - Active power variation with frequency. - - :denominatorMultiplier: Default: None - :denominatorUnit: Default: None - :multiplier: Default: None - :unit: Default: None - :value: Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'denominatorMultiplier': [cgmesProfile.EQ.value, ], - 'denominatorUnit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, denominatorMultiplier = None, denominatorUnit = None, multiplier = None, unit = None, value = 0.0, ): - - self.denominatorMultiplier = denominatorMultiplier - self.denominatorUnit = denominatorUnit - self.multiplier = multiplier - self.unit = unit - self.value = value - - def __str__(self): - str = 'class=ActivePowerPerFrequency\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Analog.py b/cimpy/cgmes_v2_4_15/Analog.py deleted file mode 100644 index 9da6ca35..00000000 --- a/cimpy/cgmes_v2_4_15/Analog.py +++ /dev/null @@ -1,37 +0,0 @@ -from .Measurement import Measurement - - -class Analog(Measurement): - ''' - Analog represents an analog Measurement. - - :positiveFlowIn: If true then this measurement is an active power, reactive power or current with the convention that a positive value measured at the Terminal means power is flowing into the related PowerSystemResource. Default: False - :AnalogValues: Measurement to which this value is connected. Default: "list" - :LimitSets: The Measurements using the LimitSet. Default: "list" - ''' - - cgmesProfile = Measurement.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'positiveFlowIn': [cgmesProfile.EQ.value, ], - 'AnalogValues': [cgmesProfile.EQ.value, ], - 'LimitSets': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Measurement: \n' + Measurement.__doc__ - - def __init__(self, positiveFlowIn = False, AnalogValues = "list", LimitSets = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.positiveFlowIn = positiveFlowIn - self.AnalogValues = AnalogValues - self.LimitSets = LimitSets - - def __str__(self): - str = 'class=Analog\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AnalogControl.py b/cimpy/cgmes_v2_4_15/AnalogControl.py deleted file mode 100644 index f68f3945..00000000 --- a/cimpy/cgmes_v2_4_15/AnalogControl.py +++ /dev/null @@ -1,37 +0,0 @@ -from .Control import Control - - -class AnalogControl(Control): - ''' - An analog control used for supervisory control. - - :maxValue: Normal value range maximum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 - :minValue: Normal value range minimum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 - :AnalogValue: The Control variable associated with the MeasurementValue. Default: None - ''' - - cgmesProfile = Control.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'maxValue': [cgmesProfile.EQ.value, ], - 'minValue': [cgmesProfile.EQ.value, ], - 'AnalogValue': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Control: \n' + Control.__doc__ - - def __init__(self, maxValue = 0.0, minValue = 0.0, AnalogValue = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.maxValue = maxValue - self.minValue = minValue - self.AnalogValue = AnalogValue - - def __str__(self): - str = 'class=AnalogControl\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AnalogLimit.py b/cimpy/cgmes_v2_4_15/AnalogLimit.py deleted file mode 100644 index e60bec52..00000000 --- a/cimpy/cgmes_v2_4_15/AnalogLimit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Limit import Limit - - -class AnalogLimit(Limit): - ''' - Limit values for Analog measurements. - - :value: The value to supervise against. Default: 0.0 - :LimitSet: The limit values used for supervision of Measurements. Default: None - ''' - - cgmesProfile = Limit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'LimitSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Limit: \n' + Limit.__doc__ - - def __init__(self, value = 0.0, LimitSet = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - self.LimitSet = LimitSet - - def __str__(self): - str = 'class=AnalogLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AnalogLimitSet.py b/cimpy/cgmes_v2_4_15/AnalogLimitSet.py deleted file mode 100644 index 31301b9f..00000000 --- a/cimpy/cgmes_v2_4_15/AnalogLimitSet.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LimitSet import LimitSet - - -class AnalogLimitSet(LimitSet): - ''' - An AnalogLimitSet specifies a set of Limits that are associated with an Analog measurement. - - :Measurements: A measurement may have zero or more limit ranges defined for it. Default: "list" - :Limits: The set of limits. Default: "list" - ''' - - cgmesProfile = LimitSet.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Measurements': [cgmesProfile.EQ.value, ], - 'Limits': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LimitSet: \n' + LimitSet.__doc__ - - def __init__(self, Measurements = "list", Limits = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Measurements = Measurements - self.Limits = Limits - - def __str__(self): - str = 'class=AnalogLimitSet\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AnalogValue.py b/cimpy/cgmes_v2_4_15/AnalogValue.py deleted file mode 100644 index 7c738f56..00000000 --- a/cimpy/cgmes_v2_4_15/AnalogValue.py +++ /dev/null @@ -1,37 +0,0 @@ -from .MeasurementValue import MeasurementValue - - -class AnalogValue(MeasurementValue): - ''' - AnalogValue represents an analog MeasurementValue. - - :Analog: The values connected to this measurement. Default: None - :AnalogControl: The MeasurementValue that is controlled. Default: None - :value: The value to supervise. Default: 0.0 - ''' - - cgmesProfile = MeasurementValue.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Analog': [cgmesProfile.EQ.value, ], - 'AnalogControl': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MeasurementValue: \n' + MeasurementValue.__doc__ - - def __init__(self, Analog = None, AnalogControl = None, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Analog = Analog - self.AnalogControl = AnalogControl - self.value = value - - def __str__(self): - str = 'class=AnalogValue\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AngleDegrees.py b/cimpy/cgmes_v2_4_15/AngleDegrees.py deleted file mode 100644 index 26bb7606..00000000 --- a/cimpy/cgmes_v2_4_15/AngleDegrees.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class AngleDegrees(Base): - ''' - Measurement of angle in degrees. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=AngleDegrees\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AngleRadians.py b/cimpy/cgmes_v2_4_15/AngleRadians.py deleted file mode 100644 index e19cf56c..00000000 --- a/cimpy/cgmes_v2_4_15/AngleRadians.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class AngleRadians(Base): - ''' - Phase angle in radians. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=AngleRadians\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ApparentPower.py b/cimpy/cgmes_v2_4_15/ApparentPower.py deleted file mode 100644 index 4fb401a6..00000000 --- a/cimpy/cgmes_v2_4_15/ApparentPower.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class ApparentPower(Base): - ''' - Product of the RMS value of the voltage and the RMS value of the current. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=ApparentPower\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py b/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py deleted file mode 100644 index d442accb..00000000 --- a/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .OperationalLimit import OperationalLimit - - -class ApparentPowerLimit(OperationalLimit): - ''' - Apparent power limit. - - :value: The apparent power limit. Default: 0.0 - ''' - - cgmesProfile = OperationalLimit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OperationalLimit: \n' + OperationalLimit.__doc__ - - def __init__(self, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - - def __str__(self): - str = 'class=ApparentPowerLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Area.py b/cimpy/cgmes_v2_4_15/Area.py deleted file mode 100644 index 98325450..00000000 --- a/cimpy/cgmes_v2_4_15/Area.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Area(Base): - ''' - Area. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'value': [cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Area\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachine.py b/cimpy/cgmes_v2_4_15/AsynchronousMachine.py deleted file mode 100644 index 4ffe7d29..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachine.py +++ /dev/null @@ -1,61 +0,0 @@ -from .RotatingMachine import RotatingMachine - - -class AsynchronousMachine(RotatingMachine): - ''' - A rotating machine whose shaft rotates asynchronously with the electrical field. Also known as an induction machine with no external connection to the rotor windings, e.g squirrel-cage induction machine. - - :nominalFrequency: Nameplate data indicates if the machine is 50 or 60 Hz. Default: 0.0 - :nominalSpeed: Nameplate data. Depends on the slip and number of pole pairs. Default: 0.0 - :converterFedDrive: Indicates whether the machine is a converter fed drive. Used for short circuit data exchange according to IEC 60909 Default: False - :efficiency: Efficiency of the asynchronous machine at nominal operation in percent. Indicator for converter drive motors. Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :iaIrRatio: Ratio of locked-rotor current to the rated current of the motor (Ia/Ir). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :polePairNumber: Number of pole pairs of stator. Used for short circuit data exchange according to IEC 60909 Default: 0 - :ratedMechanicalPower: Rated mechanical power (Pr in the IEC 60909-0). Used for short circuit data exchange according to IEC 60909. Default: 0.0 - :reversible: Indicates for converter drive motors if the power can be reversible. Used for short circuit data exchange according to IEC 60909 Default: False - :rxLockedRotorRatio: Locked rotor ratio (R/X). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :asynchronousMachineType: Indicates the type of Asynchronous Machine (motor or generator). Default: None - :AsynchronousMachineDynamics: Asynchronous machine dynamics model used to describe dynamic behavior of this asynchronous machine. Default: None - ''' - - cgmesProfile = RotatingMachine.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'nominalFrequency': [cgmesProfile.EQ.value, ], - 'nominalSpeed': [cgmesProfile.EQ.value, ], - 'converterFedDrive': [cgmesProfile.EQ.value, ], - 'efficiency': [cgmesProfile.EQ.value, ], - 'iaIrRatio': [cgmesProfile.EQ.value, ], - 'polePairNumber': [cgmesProfile.EQ.value, ], - 'ratedMechanicalPower': [cgmesProfile.EQ.value, ], - 'reversible': [cgmesProfile.EQ.value, ], - 'rxLockedRotorRatio': [cgmesProfile.EQ.value, ], - 'asynchronousMachineType': [cgmesProfile.SSH.value, ], - 'AsynchronousMachineDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RotatingMachine: \n' + RotatingMachine.__doc__ - - def __init__(self, nominalFrequency = 0.0, nominalSpeed = 0.0, converterFedDrive = False, efficiency = 0.0, iaIrRatio = 0.0, polePairNumber = 0, ratedMechanicalPower = 0.0, reversible = False, rxLockedRotorRatio = 0.0, asynchronousMachineType = None, AsynchronousMachineDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.nominalFrequency = nominalFrequency - self.nominalSpeed = nominalSpeed - self.converterFedDrive = converterFedDrive - self.efficiency = efficiency - self.iaIrRatio = iaIrRatio - self.polePairNumber = polePairNumber - self.ratedMechanicalPower = ratedMechanicalPower - self.reversible = reversible - self.rxLockedRotorRatio = rxLockedRotorRatio - self.asynchronousMachineType = asynchronousMachineType - self.AsynchronousMachineDynamics = AsynchronousMachineDynamics - - def __str__(self): - str = 'class=AsynchronousMachine\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py b/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py deleted file mode 100644 index aab3bd49..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py +++ /dev/null @@ -1,40 +0,0 @@ -from .RotatingMachineDynamics import RotatingMachineDynamics - - -class AsynchronousMachineDynamics(RotatingMachineDynamics): - ''' - Asynchronous machine whose behaviour is described by reference to a standard model expressed in either time constant reactance form or equivalent circuit form - - :AsynchronousMachine: Asynchronous machine to which this asynchronous machine dynamics model applies. Default: None - :MechanicalLoadDynamics: Mechanical load model associated with this asynchronous machine model. Default: None - :WindTurbineType1or2Dynamics: Wind generator type 1 or 2 model associated with this asynchronous machine model. Default: None - :TurbineGovernorDynamics: Turbine-governor model associated with this asynchronous machine model. Default: None - ''' - - cgmesProfile = RotatingMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'AsynchronousMachine': [cgmesProfile.DY.value, ], - 'MechanicalLoadDynamics': [cgmesProfile.DY.value, ], - 'WindTurbineType1or2Dynamics': [cgmesProfile.DY.value, ], - 'TurbineGovernorDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RotatingMachineDynamics: \n' + RotatingMachineDynamics.__doc__ - - def __init__(self, AsynchronousMachine = None, MechanicalLoadDynamics = None, WindTurbineType1or2Dynamics = None, TurbineGovernorDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.AsynchronousMachine = AsynchronousMachine - self.MechanicalLoadDynamics = MechanicalLoadDynamics - self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics - self.TurbineGovernorDynamics = TurbineGovernorDynamics - - def __str__(self): - str = 'class=AsynchronousMachineDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py b/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py deleted file mode 100644 index 45c9d72d..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py +++ /dev/null @@ -1,43 +0,0 @@ -from .AsynchronousMachineDynamics import AsynchronousMachineDynamics - - -class AsynchronousMachineEquivalentCircuit(AsynchronousMachineDynamics): - ''' - The electrical equations of all variations of the asynchronous model are based on the AsynchronousEquivalentCircuit diagram for the direct and quadrature axes, with two equivalent rotor windings in each axis. = + = + * / ( + ) = + * * / ( * + * + * ) = ( + ) / ( * ) = ( * + * + * ) / ( * * (+ ) Same equations using CIM attributes from AsynchronousMachineTimeConstantReactance class on left of = sign and AsynchronousMachineEquivalentCircuit class on right (except as noted): xs = xm + RotatingMachineDynamics.statorLeakageReactance xp = RotatingMachineDynamics.statorLeakageReactance + xm * xlr1 / (xm + xlr1) xpp = RotatingMachineDynamics.statorLeakageReactance + xm * xlr1* xlr2 / (xm * xlr1 + xm * xlr2 + xlr1 * xlr2) tpo = (xm + xlr1) / (2*pi*nominal frequency * rr1) tppo = (xm * xlr1 + xm * xlr2 + xlr1 * xlr2) / (2*pi*nominal frequency * rr2 * (xm + xlr1). - - :xm: Magnetizing reactance. Default: 0.0 - :rr1: Damper 1 winding resistance. Default: 0.0 - :xlr1: Damper 1 winding leakage reactance. Default: 0.0 - :rr2: Damper 2 winding resistance. Default: 0.0 - :xlr2: Damper 2 winding leakage reactance. Default: 0.0 - ''' - - cgmesProfile = AsynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'xm': [cgmesProfile.DY.value, ], - 'rr1': [cgmesProfile.DY.value, ], - 'xlr1': [cgmesProfile.DY.value, ], - 'rr2': [cgmesProfile.DY.value, ], - 'xlr2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class AsynchronousMachineDynamics: \n' + AsynchronousMachineDynamics.__doc__ - - def __init__(self, xm = 0.0, rr1 = 0.0, xlr1 = 0.0, rr2 = 0.0, xlr2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.xm = xm - self.rr1 = rr1 - self.xlr1 = xlr1 - self.rr2 = rr2 - self.xlr2 = xlr2 - - def __str__(self): - str = 'class=AsynchronousMachineEquivalentCircuit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py b/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py deleted file mode 100644 index 68e19be3..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class AsynchronousMachineKind(Base): - ''' - Kind of Asynchronous Machine. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=AsynchronousMachineKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py b/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py deleted file mode 100644 index 4c82181f..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py +++ /dev/null @@ -1,43 +0,0 @@ -from .AsynchronousMachineDynamics import AsynchronousMachineDynamics - - -class AsynchronousMachineTimeConstantReactance(AsynchronousMachineDynamics): - ''' - The parameters used for models expressed in time constant reactance form include: - - :xs: Synchronous reactance (Xs) (>= X`). Typical Value = 1.8. Default: 0.0 - :xp: Transient reactance (unsaturated) (X`) (>=X``). Typical Value = 0.5. Default: 0.0 - :xpp: Subtransient reactance (unsaturated) (X``) (> Xl). Typical Value = 0.2. Default: 0.0 - :tpo: Transient rotor time constant (T`o) (> T``o). Typical Value = 5. Default: 0 - :tppo: Subtransient rotor time constant (T``o) (> 0). Typical Value = 0.03. Default: 0 - ''' - - cgmesProfile = AsynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'xs': [cgmesProfile.DY.value, ], - 'xp': [cgmesProfile.DY.value, ], - 'xpp': [cgmesProfile.DY.value, ], - 'tpo': [cgmesProfile.DY.value, ], - 'tppo': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class AsynchronousMachineDynamics: \n' + AsynchronousMachineDynamics.__doc__ - - def __init__(self, xs = 0.0, xp = 0.0, xpp = 0.0, tpo = 0, tppo = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.xs = xs - self.xp = xp - self.xpp = xpp - self.tpo = tpo - self.tppo = tppo - - def __str__(self): - str = 'class=AsynchronousMachineTimeConstantReactance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py b/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py deleted file mode 100644 index b7dfe177..00000000 --- a/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .AsynchronousMachineDynamics import AsynchronousMachineDynamics - - -class AsynchronousMachineUserDefined(AsynchronousMachineDynamics): - ''' - Asynchronous machine whose dynamic behaviour is described by a user-defined model. - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = AsynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class AsynchronousMachineDynamics: \n' + AsynchronousMachineDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=AsynchronousMachineUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/BaseVoltage.py b/cimpy/cgmes_v2_4_15/BaseVoltage.py deleted file mode 100644 index 7e1f3aa7..00000000 --- a/cimpy/cgmes_v2_4_15/BaseVoltage.py +++ /dev/null @@ -1,43 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class BaseVoltage(IdentifiedObject): - ''' - Defines a system base voltage which is referenced. - - :nominalVoltage: The power system resource`s base voltage. Default: 0.0 - :ConductingEquipment: Base voltage of this conducting equipment. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: "list" - :VoltageLevel: The voltage levels having this base voltage. Default: "list" - :TransformerEnds: Transformer ends at the base voltage. This is essential for PU calculation. Default: "list" - :TopologicalNode: The topological nodes at the base voltage. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'nominalVoltage': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'ConductingEquipment': [cgmesProfile.EQ.value, ], - 'VoltageLevel': [cgmesProfile.EQ.value, ], - 'TransformerEnds': [cgmesProfile.EQ.value, ], - 'TopologicalNode': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, nominalVoltage = 0.0, ConductingEquipment = "list", VoltageLevel = "list", TransformerEnds = "list", TopologicalNode = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.nominalVoltage = nominalVoltage - self.ConductingEquipment = ConductingEquipment - self.VoltageLevel = VoltageLevel - self.TransformerEnds = TransformerEnds - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=BaseVoltage\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py b/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py deleted file mode 100644 index 47a1c55e..00000000 --- a/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class BasicIntervalSchedule(IdentifiedObject): - ''' - Schedule of values at points in time. - - :startTime: The time for the first time point. Default: '' - :value1Unit: Value1 units of measure. Default: None - :value2Unit: Value2 units of measure. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'startTime': [cgmesProfile.EQ.value, ], - 'value1Unit': [cgmesProfile.EQ.value, ], - 'value2Unit': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, startTime = '', value1Unit = None, value2Unit = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.startTime = startTime - self.value1Unit = value1Unit - self.value2Unit = value2Unit - - def __str__(self): - str = 'class=BasicIntervalSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Bay.py b/cimpy/cgmes_v2_4_15/Bay.py deleted file mode 100644 index 9d4fddb0..00000000 --- a/cimpy/cgmes_v2_4_15/Bay.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EquipmentContainer import EquipmentContainer - - -class Bay(EquipmentContainer): - ''' - A collection of power system resources (within a given substation) including conducting equipment, protection relays, measurements, and telemetry. A bay typically represents a physical grouping related to modularization of equipment. - - :VoltageLevel: The voltage level containing this bay. Default: None - ''' - - cgmesProfile = EquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'VoltageLevel': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquipmentContainer: \n' + EquipmentContainer.__doc__ - - def __init__(self, VoltageLevel = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.VoltageLevel = VoltageLevel - - def __str__(self): - str = 'class=Bay\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Boolean.py b/cimpy/cgmes_v2_4_15/Boolean.py deleted file mode 100644 index 77b933c6..00000000 --- a/cimpy/cgmes_v2_4_15/Boolean.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Boolean(Base): - ''' - A type with the value space "true" and "false". - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Boolean\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Breaker.py b/cimpy/cgmes_v2_4_15/Breaker.py deleted file mode 100644 index bbe5ceed..00000000 --- a/cimpy/cgmes_v2_4_15/Breaker.py +++ /dev/null @@ -1,29 +0,0 @@ -from .ProtectedSwitch import ProtectedSwitch - - -class Breaker(ProtectedSwitch): - ''' - A mechanical switching device capable of making, carrying, and breaking currents under normal circuit conditions and also making, carrying for a specified time, and breaking currents under specified abnormal circuit conditions e.g. those of short circuit. - - ''' - - cgmesProfile = ProtectedSwitch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ProtectedSwitch: \n' + ProtectedSwitch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Breaker\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/BusNameMarker.py b/cimpy/cgmes_v2_4_15/BusNameMarker.py deleted file mode 100644 index 22c79118..00000000 --- a/cimpy/cgmes_v2_4_15/BusNameMarker.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class BusNameMarker(IdentifiedObject): - ''' - Used to apply user standard names to topology buses. Typically used for "bus/branch" case generation. Associated with one or more terminals that are normally connected with the bus name. The associated terminals are normally connected by non-retained switches. For a ring bus station configuration, all busbar terminals in the ring are typically associated. For a breaker and a half scheme, both busbars would normally be associated. For a ring bus, all busbars would normally be associated. For a "straight" busbar configuration, normally only the main terminal at the busbar would be associated. - - :priority: Priority of bus name marker for use as topology bus name. Use 0 for don t care. Use 1 for highest priority. Use 2 as priority is less than 1 and so on. Default: 0 - :ReportingGroup: The bus name markers that belong to this reporting group. Default: None - :Terminal: The terminals associated with this bus name marker. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'priority': [cgmesProfile.EQ.value, ], - 'ReportingGroup': [cgmesProfile.EQ.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, priority = 0, ReportingGroup = None, Terminal = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.priority = priority - self.ReportingGroup = ReportingGroup - self.Terminal = Terminal - - def __str__(self): - str = 'class=BusNameMarker\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/BusbarSection.py b/cimpy/cgmes_v2_4_15/BusbarSection.py deleted file mode 100644 index b00c5e86..00000000 --- a/cimpy/cgmes_v2_4_15/BusbarSection.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Connector import Connector - - -class BusbarSection(Connector): - ''' - A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation. Voltage measurements are typically obtained from VoltageTransformers that are connected to busbar sections. A bus bar section may have many physical terminals but for analysis is modelled with exactly one logical terminal. - - :ipMax: Maximum allowable peak short-circuit current of busbar (Ipmax in the IEC 60909-0). Mechanical limit of the busbar in the substation itself. Used for short circuit data exchange according to IEC 60909 Default: 0.0 - ''' - - cgmesProfile = Connector.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'ipMax': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Connector: \n' + Connector.__doc__ - - def __init__(self, ipMax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ipMax = ipMax - - def __str__(self): - str = 'class=BusbarSection\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Capacitance.py b/cimpy/cgmes_v2_4_15/Capacitance.py deleted file mode 100644 index 59be872a..00000000 --- a/cimpy/cgmes_v2_4_15/Capacitance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Capacitance(Base): - ''' - Capacitive part of reactance (imaginary part of impedance), at rated frequency. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Capacitance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Command.py b/cimpy/cgmes_v2_4_15/Command.py deleted file mode 100644 index a8b02e1e..00000000 --- a/cimpy/cgmes_v2_4_15/Command.py +++ /dev/null @@ -1,40 +0,0 @@ -from .Control import Control - - -class Command(Control): - ''' - A Command is a discrete control used for supervisory control. - - :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0 - :value: The value representing the actuator output. Default: 0 - :DiscreteValue: The Control variable associated with the MeasurementValue. Default: None - :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None - ''' - - cgmesProfile = Control.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'normalValue': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'DiscreteValue': [cgmesProfile.EQ.value, ], - 'ValueAliasSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Control: \n' + Control.__doc__ - - def __init__(self, normalValue = 0, value = 0, DiscreteValue = None, ValueAliasSet = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.normalValue = normalValue - self.value = value - self.DiscreteValue = DiscreteValue - self.ValueAliasSet = ValueAliasSet - - def __str__(self): - str = 'class=Command\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Conductance.py b/cimpy/cgmes_v2_4_15/Conductance.py deleted file mode 100644 index 75926d9f..00000000 --- a/cimpy/cgmes_v2_4_15/Conductance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Conductance(Base): - ''' - Factor by which voltage must be multiplied to give corresponding power lost from a circuit. Real part of admittance. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Conductance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConductingEquipment.py b/cimpy/cgmes_v2_4_15/ConductingEquipment.py deleted file mode 100644 index b3ebe23d..00000000 --- a/cimpy/cgmes_v2_4_15/ConductingEquipment.py +++ /dev/null @@ -1,37 +0,0 @@ -from .Equipment import Equipment - - -class ConductingEquipment(Equipment): - ''' - The parts of the AC power system that are designed to carry current or that are conductively connected through terminals. - - :BaseVoltage: All conducting equipment with this base voltage. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: None - :Terminals: Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: "list" - :SvStatus: The status state variable associated with this conducting equipment. Default: None - ''' - - cgmesProfile = Equipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'BaseVoltage': [cgmesProfile.EQ.value, ], - 'Terminals': [cgmesProfile.EQ.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'SvStatus': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Equipment: \n' + Equipment.__doc__ - - def __init__(self, BaseVoltage = None, Terminals = "list", SvStatus = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.BaseVoltage = BaseVoltage - self.Terminals = Terminals - self.SvStatus = SvStatus - - def __str__(self): - str = 'class=ConductingEquipment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Conductor.py b/cimpy/cgmes_v2_4_15/Conductor.py deleted file mode 100644 index 1b6895e8..00000000 --- a/cimpy/cgmes_v2_4_15/Conductor.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class Conductor(ConductingEquipment): - ''' - Combination of conducting material with consistent electrical characteristics, building a single electrical system, used to carry current between points in the power system. - - :length: Segment length for calculating line section capabilities Default: 0.0 - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'length': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, length = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.length = length - - def __str__(self): - str = 'class=Conductor\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConformLoad.py b/cimpy/cgmes_v2_4_15/ConformLoad.py deleted file mode 100644 index b915b36b..00000000 --- a/cimpy/cgmes_v2_4_15/ConformLoad.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EnergyConsumer import EnergyConsumer - - -class ConformLoad(EnergyConsumer): - ''' - ConformLoad represent loads that follow a daily load change pattern where the pattern can be used to scale the load with a system load. - - :LoadGroup: Group of this ConformLoad. Default: None - ''' - - cgmesProfile = EnergyConsumer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'LoadGroup': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EnergyConsumer: \n' + EnergyConsumer.__doc__ - - def __init__(self, LoadGroup = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadGroup = LoadGroup - - def __str__(self): - str = 'class=ConformLoad\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConformLoadGroup.py b/cimpy/cgmes_v2_4_15/ConformLoadGroup.py deleted file mode 100644 index 2238862d..00000000 --- a/cimpy/cgmes_v2_4_15/ConformLoadGroup.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LoadGroup import LoadGroup - - -class ConformLoadGroup(LoadGroup): - ''' - A group of loads conforming to an allocation pattern. - - :EnergyConsumers: Conform loads assigned to this ConformLoadGroup. Default: "list" - :ConformLoadSchedules: The ConformLoadSchedules in the ConformLoadGroup. Default: "list" - ''' - - cgmesProfile = LoadGroup.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'EnergyConsumers': [cgmesProfile.EQ.value, ], - 'ConformLoadSchedules': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadGroup: \n' + LoadGroup.__doc__ - - def __init__(self, EnergyConsumers = "list", ConformLoadSchedules = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergyConsumers = EnergyConsumers - self.ConformLoadSchedules = ConformLoadSchedules - - def __str__(self): - str = 'class=ConformLoadGroup\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py b/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py deleted file mode 100644 index a949382a..00000000 --- a/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py +++ /dev/null @@ -1,31 +0,0 @@ -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule - - -class ConformLoadSchedule(SeasonDayTypeSchedule): - ''' - A curve of load versus time (X-axis) showing the active power values (Y1-axis) and reactive power (Y2-axis) for each unit of the period covered. This curve represents a typical pattern of load over the time period for a given day type and season. - - :ConformLoadGroup: The ConformLoadGroup where the ConformLoadSchedule belongs. Default: None - ''' - - cgmesProfile = SeasonDayTypeSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'ConformLoadGroup': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SeasonDayTypeSchedule: \n' + SeasonDayTypeSchedule.__doc__ - - def __init__(self, ConformLoadGroup = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ConformLoadGroup = ConformLoadGroup - - def __str__(self): - str = 'class=ConformLoadSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConnectivityNode.py b/cimpy/cgmes_v2_4_15/ConnectivityNode.py deleted file mode 100644 index 382637e6..00000000 --- a/cimpy/cgmes_v2_4_15/ConnectivityNode.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ConnectivityNode(IdentifiedObject): - ''' - Connectivity nodes are points where terminals of AC conducting equipment are connected together with zero impedance. - - :Terminals: The connectivity node to which this terminal connects with zero impedance. Default: "list" - :ConnectivityNodeContainer: Container of this connectivity node. Default: None - :TopologicalNode: The connectivity nodes combine together to form this topological node. May depend on the current state of switches in the network. Default: None - :boundaryPoint: Identifies if a node is a BoundaryPoint. If boundaryPoint=true the ConnectivityNode or the TopologicalNode represents a BoundaryPoint. Default: False - :fromEndIsoCode: The attribute is used for an exchange of the ISO code of the region to which the `From` side of the Boundary point belongs to or it is connected to. The ISO code is two characters country code as defined by ISO 3166 (). The length of the string is 2 characters maximum. The attribute is a required for the Boundary Model Authority Set where this attribute is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :fromEndName: The attribute is used for an exchange of a human readable name with length of the string 32 characters maximum. The attribute covers two cases: The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :fromEndNameTso: The attribute is used for an exchange of the name of the TSO to which the `From` side of the Boundary point belongs to or it is connected to. The length of the string is 32 characters maximum. The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndIsoCode: The attribute is used for an exchange of the ISO code of the region to which the `To` side of the Boundary point belongs to or it is connected to. The ISO code is two characters country code as defined by ISO 3166 (). The length of the string is 2 characters maximum. The attribute is a required for the Boundary Model Authority Set where this attribute is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndName: The attribute is used for an exchange of a human readable name with length of the string 32 characters maximum. The attribute covers two cases: The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndNameTso: The attribute is used for an exchange of the name of the TSO to which the `To` side of the Boundary point belongs to or it is connected to. The length of the string is 32 characters maximum. The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'Terminals': [cgmesProfile.EQ.value, ], - 'ConnectivityNodeContainer': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'TopologicalNode': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - 'boundaryPoint': [cgmesProfile.EQ_BD.value, ], - 'fromEndIsoCode': [cgmesProfile.EQ_BD.value, ], - 'fromEndName': [cgmesProfile.EQ_BD.value, ], - 'fromEndNameTso': [cgmesProfile.EQ_BD.value, ], - 'toEndIsoCode': [cgmesProfile.EQ_BD.value, ], - 'toEndName': [cgmesProfile.EQ_BD.value, ], - 'toEndNameTso': [cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Terminals = "list", ConnectivityNodeContainer = None, TopologicalNode = None, boundaryPoint = False, fromEndIsoCode = '', fromEndName = '', fromEndNameTso = '', toEndIsoCode = '', toEndName = '', toEndNameTso = '', *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Terminals = Terminals - self.ConnectivityNodeContainer = ConnectivityNodeContainer - self.TopologicalNode = TopologicalNode - self.boundaryPoint = boundaryPoint - self.fromEndIsoCode = fromEndIsoCode - self.fromEndName = fromEndName - self.fromEndNameTso = fromEndNameTso - self.toEndIsoCode = toEndIsoCode - self.toEndName = toEndName - self.toEndNameTso = toEndNameTso - - def __str__(self): - str = 'class=ConnectivityNode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py b/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py deleted file mode 100644 index 31bef056..00000000 --- a/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py +++ /dev/null @@ -1,34 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class ConnectivityNodeContainer(PowerSystemResource): - ''' - A base class for all objects that may contain connectivity nodes or topological nodes. - - :ConnectivityNodes: Connectivity nodes which belong to this connectivity node container. Default: "list" - :TopologicalNode: The topological nodes which belong to this connectivity node container. Default: "list" - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'ConnectivityNodes': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'TopologicalNode': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, ConnectivityNodes = "list", TopologicalNode = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ConnectivityNodes = ConnectivityNodes - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=ConnectivityNodeContainer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Connector.py b/cimpy/cgmes_v2_4_15/Connector.py deleted file mode 100644 index 0aa039c4..00000000 --- a/cimpy/cgmes_v2_4_15/Connector.py +++ /dev/null @@ -1,29 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class Connector(ConductingEquipment): - ''' - A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation and are modelled with a single logical terminal. - - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Connector\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Control.py b/cimpy/cgmes_v2_4_15/Control.py deleted file mode 100644 index 470766d7..00000000 --- a/cimpy/cgmes_v2_4_15/Control.py +++ /dev/null @@ -1,46 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Control(IdentifiedObject): - ''' - Control is used for supervisory/device control. It represents control outputs that are used to change the state in a process, e.g. close or open breaker, a set point value or a raise lower command. - - :controlType: Specifies the type of Control, e.g. BreakerOn/Off, GeneratorVoltageSetPoint, TieLineFlow etc. The ControlType.name shall be unique among all specified types and describe the type. Default: '' - :operationInProgress: Indicates that a client is currently sending control commands that has not completed. Default: False - :timeStamp: The last time a control output was sent. Default: '' - :unitMultiplier: The unit multiplier of the controlled quantity. Default: None - :unitSymbol: The unit of measure of the controlled quantity. Default: None - :PowerSystemResource: The controller outputs used to actually govern a regulating device, e.g. the magnetization of a synchronous machine or capacitor bank breaker actuator. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'controlType': [cgmesProfile.EQ.value, ], - 'operationInProgress': [cgmesProfile.EQ.value, ], - 'timeStamp': [cgmesProfile.EQ.value, ], - 'unitMultiplier': [cgmesProfile.EQ.value, ], - 'unitSymbol': [cgmesProfile.EQ.value, ], - 'PowerSystemResource': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, controlType = '', operationInProgress = False, timeStamp = '', unitMultiplier = None, unitSymbol = None, PowerSystemResource = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.controlType = controlType - self.operationInProgress = operationInProgress - self.timeStamp = timeStamp - self.unitMultiplier = unitMultiplier - self.unitSymbol = unitSymbol - self.PowerSystemResource = PowerSystemResource - - def __str__(self): - str = 'class=Control\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ControlArea.py b/cimpy/cgmes_v2_4_15/ControlArea.py deleted file mode 100644 index 5ea90e3f..00000000 --- a/cimpy/cgmes_v2_4_15/ControlArea.py +++ /dev/null @@ -1,46 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class ControlArea(PowerSystemResource): - ''' - A control areais a grouping of generating units and/or loads and a cutset of tie lines (as terminals) which may be used for a variety of purposes including automatic generation control, powerflow solution area interchange control specification, and input to load forecasting. Note that any number of overlapping control area specifications can be superimposed on the physical model. - - :type: The primary type of control area definition used to determine if this is used for automatic generation control, for planning interchange control, or other purposes. A control area specified with primary type of automatic generation control could still be forecast and used as an interchange area in power flow analysis. Default: None - :TieFlow: The tie flows associated with the control area. Default: "list" - :ControlAreaGeneratingUnit: The generating unit specificaitons for the control area. Default: "list" - :EnergyArea: The energy area that is forecast from this control area specification. Default: None - :netInterchange: The specified positive net interchange into the control area, i.e. positive sign means flow in to the area. Default: 0.0 - :pTolerance: Active power net interchange tolerance Default: 0.0 - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'type': [cgmesProfile.EQ.value, ], - 'TieFlow': [cgmesProfile.EQ.value, ], - 'ControlAreaGeneratingUnit': [cgmesProfile.EQ.value, ], - 'EnergyArea': [cgmesProfile.EQ.value, ], - 'netInterchange': [cgmesProfile.SSH.value, ], - 'pTolerance': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, type = None, TieFlow = "list", ControlAreaGeneratingUnit = "list", EnergyArea = None, netInterchange = 0.0, pTolerance = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.type = type - self.TieFlow = TieFlow - self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit - self.EnergyArea = EnergyArea - self.netInterchange = netInterchange - self.pTolerance = pTolerance - - def __str__(self): - str = 'class=ControlArea\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py b/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py deleted file mode 100644 index 0797664b..00000000 --- a/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ControlAreaGeneratingUnit(IdentifiedObject): - ''' - A control area generating unit. This class is needed so that alternate control area definitions may include the same generating unit. Note only one instance within a control area should reference a specific generating unit. - - :GeneratingUnit: The generating unit specified for this control area. Note that a control area should include a GeneratingUnit only once. Default: None - :ControlArea: The parent control area for the generating unit specifications. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'GeneratingUnit': [cgmesProfile.EQ.value, ], - 'ControlArea': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, GeneratingUnit = None, ControlArea = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.GeneratingUnit = GeneratingUnit - self.ControlArea = ControlArea - - def __str__(self): - str = 'class=ControlAreaGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py b/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py deleted file mode 100644 index 3962f487..00000000 --- a/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ControlAreaTypeKind(Base): - ''' - The type of control area. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ControlAreaTypeKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CoordinateSystem.py b/cimpy/cgmes_v2_4_15/CoordinateSystem.py deleted file mode 100644 index 40cb167a..00000000 --- a/cimpy/cgmes_v2_4_15/CoordinateSystem.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class CoordinateSystem(IdentifiedObject): - ''' - Coordinate reference system. - - :crsUrn: A Uniform Resource Name (URN) for the coordinate reference system (crs) used to define `Location.PositionPoints`. An example would be the European Petroleum Survey Group (EPSG) code for a coordinate reference system, defined in URN under the Open Geospatial Consortium (OGC) namespace as: urn:ogc:def:uom:EPSG::XXXX, where XXXX is an EPSG code (a full list of codes can be found at the EPSG Registry web site http://www.epsg-registry.org/). To define the coordinate system as being WGS84 (latitude, longitude) using an EPSG OGC, this attribute would be urn:ogc:def:uom:EPSG::4236. A profile should limit this code to a set of allowed URNs agreed to by all sending and receiving parties. Default: '' - :Location: All locations described with position points in this coordinate system. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.GL.value, ], - 'crsUrn': [cgmesProfile.GL.value, ], - 'Location': [cgmesProfile.GL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, crsUrn = '', Location = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.crsUrn = crsUrn - self.Location = Location - - def __str__(self): - str = 'class=CoordinateSystem\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CsConverter.py b/cimpy/cgmes_v2_4_15/CsConverter.py deleted file mode 100644 index 390ac600..00000000 --- a/cimpy/cgmes_v2_4_15/CsConverter.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ACDCConverter import ACDCConverter - - -class CsConverter(ACDCConverter): - ''' - DC side of the current source converter (CSC). - - :maxAlpha: Maximum firing angle. CSC configuration data used in power flow. Default: 0.0 - :maxGamma: Maximum extinction angle. CSC configuration data used in power flow. Default: 0.0 - :maxIdc: The maximum direct current (Id) on the DC side at which the converter should operate. Converter configuration data use in power flow. Default: 0.0 - :minAlpha: Minimum firing angle. CSC configuration data used in power flow. Default: 0.0 - :minGamma: Minimum extinction angle. CSC configuration data used in power flow. Default: 0.0 - :minIdc: The minimum direct current (Id) on the DC side at which the converter should operate. CSC configuration data used in power flow. Default: 0.0 - :ratedIdc: Rated converter DC current, also called IdN. Converter configuration data used in power flow. Default: 0.0 - :operatingMode: Indicates whether the DC pole is operating as an inverter or as a rectifier. CSC control variable used in power flow. Default: None - :pPccControl: Default: None - :targetAlpha: Target firing angle. CSC control variable used in power flow. Default: 0.0 - :targetGamma: Target extinction angle. CSC control variable used in power flow. Default: 0.0 - :targetIdc: DC current target value. CSC control variable used in power flow. Default: 0.0 - :alpha: Firing angle, typical value between 10 and 18 degrees for a rectifier. CSC state variable, result from power flow. Default: 0.0 - :gamma: Extinction angle. CSC state variable, result from power flow. Default: 0.0 - ''' - - cgmesProfile = ACDCConverter.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'maxAlpha': [cgmesProfile.EQ.value, ], - 'maxGamma': [cgmesProfile.EQ.value, ], - 'maxIdc': [cgmesProfile.EQ.value, ], - 'minAlpha': [cgmesProfile.EQ.value, ], - 'minGamma': [cgmesProfile.EQ.value, ], - 'minIdc': [cgmesProfile.EQ.value, ], - 'ratedIdc': [cgmesProfile.EQ.value, ], - 'operatingMode': [cgmesProfile.SSH.value, ], - 'pPccControl': [cgmesProfile.SSH.value, ], - 'targetAlpha': [cgmesProfile.SSH.value, ], - 'targetGamma': [cgmesProfile.SSH.value, ], - 'targetIdc': [cgmesProfile.SSH.value, ], - 'alpha': [cgmesProfile.SV.value, ], - 'gamma': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ACDCConverter: \n' + ACDCConverter.__doc__ - - def __init__(self, maxAlpha = 0.0, maxGamma = 0.0, maxIdc = 0.0, minAlpha = 0.0, minGamma = 0.0, minIdc = 0.0, ratedIdc = 0.0, operatingMode = None, pPccControl = None, targetAlpha = 0.0, targetGamma = 0.0, targetIdc = 0.0, alpha = 0.0, gamma = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.maxAlpha = maxAlpha - self.maxGamma = maxGamma - self.maxIdc = maxIdc - self.minAlpha = minAlpha - self.minGamma = minGamma - self.minIdc = minIdc - self.ratedIdc = ratedIdc - self.operatingMode = operatingMode - self.pPccControl = pPccControl - self.targetAlpha = targetAlpha - self.targetGamma = targetGamma - self.targetIdc = targetIdc - self.alpha = alpha - self.gamma = gamma - - def __str__(self): - str = 'class=CsConverter\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py b/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py deleted file mode 100644 index 0ea27a6e..00000000 --- a/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class CsOperatingModeKind(Base): - ''' - Operating mode for HVDC line operating as Current Source Converter. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=CsOperatingModeKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CsPpccControlKind.py b/cimpy/cgmes_v2_4_15/CsPpccControlKind.py deleted file mode 100644 index 738a9495..00000000 --- a/cimpy/cgmes_v2_4_15/CsPpccControlKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class CsPpccControlKind(Base): - ''' - Active power control modes for HVDC line operating as Current Source Converter. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=CsPpccControlKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Currency.py b/cimpy/cgmes_v2_4_15/Currency.py deleted file mode 100644 index c6443b25..00000000 --- a/cimpy/cgmes_v2_4_15/Currency.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Currency(Base): - ''' - Monetary currencies. Apologies for this list not being exhaustive. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Currency\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CurrentFlow.py b/cimpy/cgmes_v2_4_15/CurrentFlow.py deleted file mode 100644 index 5a3f4070..00000000 --- a/cimpy/cgmes_v2_4_15/CurrentFlow.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class CurrentFlow(Base): - ''' - Electrical current with sign convention: positive flow is out of the conducting equipment into the connectivity node. Can be both AC and DC. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=CurrentFlow\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CurrentLimit.py b/cimpy/cgmes_v2_4_15/CurrentLimit.py deleted file mode 100644 index 12523c10..00000000 --- a/cimpy/cgmes_v2_4_15/CurrentLimit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .OperationalLimit import OperationalLimit - - -class CurrentLimit(OperationalLimit): - ''' - Operational limit on current. - - :value: Limit on current flow. Default: 0.0 - ''' - - cgmesProfile = OperationalLimit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OperationalLimit: \n' + OperationalLimit.__doc__ - - def __init__(self, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - - def __str__(self): - str = 'class=CurrentLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Curve.py b/cimpy/cgmes_v2_4_15/Curve.py deleted file mode 100644 index 07fda2fc..00000000 --- a/cimpy/cgmes_v2_4_15/Curve.py +++ /dev/null @@ -1,43 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Curve(IdentifiedObject): - ''' - A multi-purpose curve or functional relationship between an independent variable (X-axis) and dependent (Y-axis) variables. - - :curveStyle: The style or shape of the curve. Default: None - :xUnit: The X-axis units of measure. Default: None - :y1Unit: The Y1-axis units of measure. Default: None - :y2Unit: The Y2-axis units of measure. Default: None - :CurveDatas: The curve of this curve data point. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'curveStyle': [cgmesProfile.EQ.value, ], - 'xUnit': [cgmesProfile.EQ.value, ], - 'y1Unit': [cgmesProfile.EQ.value, ], - 'y2Unit': [cgmesProfile.EQ.value, ], - 'CurveDatas': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, curveStyle = None, xUnit = None, y1Unit = None, y2Unit = None, CurveDatas = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.curveStyle = curveStyle - self.xUnit = xUnit - self.y1Unit = y1Unit - self.y2Unit = y2Unit - self.CurveDatas = CurveDatas - - def __str__(self): - str = 'class=Curve\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CurveData.py b/cimpy/cgmes_v2_4_15/CurveData.py deleted file mode 100644 index 009f9c52..00000000 --- a/cimpy/cgmes_v2_4_15/CurveData.py +++ /dev/null @@ -1,39 +0,0 @@ -from .Base import Base - - -class CurveData(Base): - ''' - Multi-purpose data points for defining a curve. The use of this generic class is discouraged if a more specific class can be used to specify the x and y axis values along with their specific data types. - - :Curve: The point data values that define this curve. Default: None - :xvalue: The data value of the X-axis variable, depending on the X-axis units. Default: 0.0 - :y1value: The data value of the first Y-axis variable, depending on the Y-axis units. Default: 0.0 - :y2value: The data value of the second Y-axis variable (if present), depending on the Y-axis units. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Curve': [cgmesProfile.EQ.value, ], - 'xvalue': [cgmesProfile.EQ.value, ], - 'y1value': [cgmesProfile.EQ.value, ], - 'y2value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, Curve = None, xvalue = 0.0, y1value = 0.0, y2value = 0.0, ): - - self.Curve = Curve - self.xvalue = xvalue - self.y1value = y1value - self.y2value = y2value - - def __str__(self): - str = 'class=CurveData\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/CurveStyle.py b/cimpy/cgmes_v2_4_15/CurveStyle.py deleted file mode 100644 index 2e3904d2..00000000 --- a/cimpy/cgmes_v2_4_15/CurveStyle.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class CurveStyle(Base): - ''' - Style or shape of curve. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=CurveStyle\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCBaseTerminal.py b/cimpy/cgmes_v2_4_15/DCBaseTerminal.py deleted file mode 100644 index 02c74248..00000000 --- a/cimpy/cgmes_v2_4_15/DCBaseTerminal.py +++ /dev/null @@ -1,34 +0,0 @@ -from .ACDCTerminal import ACDCTerminal - - -class DCBaseTerminal(ACDCTerminal): - ''' - An electrical connection point at a piece of DC conducting equipment. DC terminals are connected at one physical DC node that may have multiple DC terminals connected. A DC node is similar to an AC connectivity node. The model enforces that DC connections are distinct from AC connections. - - :DCNode: Default: None - :DCTopologicalNode: See association end TopologicalNode.Terminal. Default: None - ''' - - cgmesProfile = ACDCTerminal.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.TP.value, ], - 'DCNode': [cgmesProfile.EQ.value, ], - 'DCTopologicalNode': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ACDCTerminal: \n' + ACDCTerminal.__doc__ - - def __init__(self, DCNode = None, DCTopologicalNode = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCNode = DCNode - self.DCTopologicalNode = DCTopologicalNode - - def __str__(self): - str = 'class=DCBaseTerminal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCBreaker.py b/cimpy/cgmes_v2_4_15/DCBreaker.py deleted file mode 100644 index 279b4e96..00000000 --- a/cimpy/cgmes_v2_4_15/DCBreaker.py +++ /dev/null @@ -1,29 +0,0 @@ -from .DCSwitch import DCSwitch - - -class DCBreaker(DCSwitch): - ''' - A breaker within a DC system. - - ''' - - cgmesProfile = DCSwitch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCSwitch: \n' + DCSwitch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=DCBreaker\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCBusbar.py b/cimpy/cgmes_v2_4_15/DCBusbar.py deleted file mode 100644 index 71d38948..00000000 --- a/cimpy/cgmes_v2_4_15/DCBusbar.py +++ /dev/null @@ -1,29 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCBusbar(DCConductingEquipment): - ''' - A busbar within a DC system. - - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=DCBusbar\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCChopper.py b/cimpy/cgmes_v2_4_15/DCChopper.py deleted file mode 100644 index fa6ec0c7..00000000 --- a/cimpy/cgmes_v2_4_15/DCChopper.py +++ /dev/null @@ -1,29 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCChopper(DCConductingEquipment): - ''' - Low resistance equipment used in the internal DC circuit to balance voltages. It has typically positive and negative pole terminals and a ground. - - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=DCChopper\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCConductingEquipment.py b/cimpy/cgmes_v2_4_15/DCConductingEquipment.py deleted file mode 100644 index 5bfca3a1..00000000 --- a/cimpy/cgmes_v2_4_15/DCConductingEquipment.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Equipment import Equipment - - -class DCConductingEquipment(Equipment): - ''' - The parts of the DC power system that are designed to carry current or that are conductively connected through DC terminals. - - :DCTerminals: Default: "list" - ''' - - cgmesProfile = Equipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'DCTerminals': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Equipment: \n' + Equipment.__doc__ - - def __init__(self, DCTerminals = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCTerminals = DCTerminals - - def __str__(self): - str = 'class=DCConductingEquipment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py b/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py deleted file mode 100644 index ea01fc06..00000000 --- a/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class DCConverterOperatingModeKind(Base): - ''' - The operating mode of an HVDC bipole. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=DCConverterOperatingModeKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCConverterUnit.py b/cimpy/cgmes_v2_4_15/DCConverterUnit.py deleted file mode 100644 index 145e4ddc..00000000 --- a/cimpy/cgmes_v2_4_15/DCConverterUnit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DCEquipmentContainer import DCEquipmentContainer - - -class DCConverterUnit(DCEquipmentContainer): - ''' - Indivisible operative unit comprising all equipment between the point of common coupling on the AC side and the point of common coupling - DC side, essentially one or more converters, together with one or more converter transformers, converter control equipment, essential protective and switching devices and auxiliaries, if any, used for conversion. - - :operationMode: Default: None - :Substation: Default: None - ''' - - cgmesProfile = DCEquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'operationMode': [cgmesProfile.EQ.value, ], - 'Substation': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCEquipmentContainer: \n' + DCEquipmentContainer.__doc__ - - def __init__(self, operationMode = None, Substation = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.operationMode = operationMode - self.Substation = Substation - - def __str__(self): - str = 'class=DCConverterUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCDisconnector.py b/cimpy/cgmes_v2_4_15/DCDisconnector.py deleted file mode 100644 index 6be928d0..00000000 --- a/cimpy/cgmes_v2_4_15/DCDisconnector.py +++ /dev/null @@ -1,29 +0,0 @@ -from .DCSwitch import DCSwitch - - -class DCDisconnector(DCSwitch): - ''' - A disconnector within a DC system. - - ''' - - cgmesProfile = DCSwitch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCSwitch: \n' + DCSwitch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=DCDisconnector\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py b/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py deleted file mode 100644 index 627aeaf6..00000000 --- a/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py +++ /dev/null @@ -1,34 +0,0 @@ -from .EquipmentContainer import EquipmentContainer - - -class DCEquipmentContainer(EquipmentContainer): - ''' - A modeling construct to provide a root class for containment of DC as well as AC equipment. The class differ from the EquipmentContaner for AC in that it may also contain DCNodes. Hence it can contain both AC and DC equipment. - - :DCNodes: Default: "list" - :DCTopologicalNode: Default: "list" - ''' - - cgmesProfile = EquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, ], - 'DCNodes': [cgmesProfile.EQ.value, ], - 'DCTopologicalNode': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquipmentContainer: \n' + EquipmentContainer.__doc__ - - def __init__(self, DCNodes = "list", DCTopologicalNode = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCNodes = DCNodes - self.DCTopologicalNode = DCTopologicalNode - - def __str__(self): - str = 'class=DCEquipmentContainer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCGround.py b/cimpy/cgmes_v2_4_15/DCGround.py deleted file mode 100644 index 8331961c..00000000 --- a/cimpy/cgmes_v2_4_15/DCGround.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCGround(DCConductingEquipment): - ''' - A ground within a DC system. - - :inductance: Inductance to ground. Default: 0.0 - :r: Resistance to ground. Default: 0.0 - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'inductance': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, inductance = 0.0, r = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inductance = inductance - self.r = r - - def __str__(self): - str = 'class=DCGround\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCLine.py b/cimpy/cgmes_v2_4_15/DCLine.py deleted file mode 100644 index 930ac603..00000000 --- a/cimpy/cgmes_v2_4_15/DCLine.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DCEquipmentContainer import DCEquipmentContainer - - -class DCLine(DCEquipmentContainer): - ''' - Overhead lines and/or cables connecting two or more HVDC substations. - - :Region: Default: None - ''' - - cgmesProfile = DCEquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Region': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCEquipmentContainer: \n' + DCEquipmentContainer.__doc__ - - def __init__(self, Region = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Region = Region - - def __str__(self): - str = 'class=DCLine\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCLineSegment.py b/cimpy/cgmes_v2_4_15/DCLineSegment.py deleted file mode 100644 index 4316adbe..00000000 --- a/cimpy/cgmes_v2_4_15/DCLineSegment.py +++ /dev/null @@ -1,43 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCLineSegment(DCConductingEquipment): - ''' - A wire or combination of wires not insulated from one another, with consistent electrical characteristics, used to carry direct current between points in the DC region of the power system. - - :capacitance: Capacitance of the DC line segment. Significant for cables only. Default: 0.0 - :inductance: Inductance of the DC line segment. Neglectable compared with DCSeriesDevice used for smoothing. Default: 0.0 - :resistance: Resistance of the DC line segment. Default: 0.0 - :length: Segment length for calculating line section capabilities. Default: 0.0 - :PerLengthParameter: Set of per-length parameters for this line segment. Default: None - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'capacitance': [cgmesProfile.EQ.value, ], - 'inductance': [cgmesProfile.EQ.value, ], - 'resistance': [cgmesProfile.EQ.value, ], - 'length': [cgmesProfile.EQ.value, ], - 'PerLengthParameter': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, capacitance = 0.0, inductance = 0.0, resistance = 0.0, length = 0.0, PerLengthParameter = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.capacitance = capacitance - self.inductance = inductance - self.resistance = resistance - self.length = length - self.PerLengthParameter = PerLengthParameter - - def __str__(self): - str = 'class=DCLineSegment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCNode.py b/cimpy/cgmes_v2_4_15/DCNode.py deleted file mode 100644 index e143fdae..00000000 --- a/cimpy/cgmes_v2_4_15/DCNode.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DCNode(IdentifiedObject): - ''' - DC nodes are points where terminals of DC conducting equipment are connected together with zero impedance. - - :DCTerminals: Default: "list" - :DCEquipmentContainer: Default: None - :DCTopologicalNode: See association end TopologicalNode.ConnectivityNodes. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, ], - 'DCTerminals': [cgmesProfile.EQ.value, ], - 'DCEquipmentContainer': [cgmesProfile.EQ.value, ], - 'DCTopologicalNode': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, DCTerminals = "list", DCEquipmentContainer = None, DCTopologicalNode = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCTerminals = DCTerminals - self.DCEquipmentContainer = DCEquipmentContainer - self.DCTopologicalNode = DCTopologicalNode - - def __str__(self): - str = 'class=DCNode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCPolarityKind.py b/cimpy/cgmes_v2_4_15/DCPolarityKind.py deleted file mode 100644 index 7c60bf15..00000000 --- a/cimpy/cgmes_v2_4_15/DCPolarityKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class DCPolarityKind(Base): - ''' - Polarity for DC circuits. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=DCPolarityKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCSeriesDevice.py b/cimpy/cgmes_v2_4_15/DCSeriesDevice.py deleted file mode 100644 index 1dae1ea7..00000000 --- a/cimpy/cgmes_v2_4_15/DCSeriesDevice.py +++ /dev/null @@ -1,37 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCSeriesDevice(DCConductingEquipment): - ''' - A series device within the DC system, typically a reactor used for filtering or smoothing. Needed for transient and short circuit studies. - - :inductance: Inductance of the device. Default: 0.0 - :resistance: Resistance of the DC device. Default: 0.0 - :ratedUdc: Rated DC device voltage. Converter configuration data used in power flow. Default: 0.0 - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'inductance': [cgmesProfile.EQ.value, ], - 'resistance': [cgmesProfile.EQ.value, ], - 'ratedUdc': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, inductance = 0.0, resistance = 0.0, ratedUdc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inductance = inductance - self.resistance = resistance - self.ratedUdc = ratedUdc - - def __str__(self): - str = 'class=DCSeriesDevice\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCShunt.py b/cimpy/cgmes_v2_4_15/DCShunt.py deleted file mode 100644 index 8ac0d8fc..00000000 --- a/cimpy/cgmes_v2_4_15/DCShunt.py +++ /dev/null @@ -1,37 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCShunt(DCConductingEquipment): - ''' - A shunt device within the DC system, typically used for filtering. Needed for transient and short circuit studies. - - :capacitance: Capacitance of the DC shunt. Default: 0.0 - :resistance: Resistance of the DC device. Default: 0.0 - :ratedUdc: Rated DC device voltage. Converter configuration data used in power flow. Default: 0.0 - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'capacitance': [cgmesProfile.EQ.value, ], - 'resistance': [cgmesProfile.EQ.value, ], - 'ratedUdc': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, capacitance = 0.0, resistance = 0.0, ratedUdc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.capacitance = capacitance - self.resistance = resistance - self.ratedUdc = ratedUdc - - def __str__(self): - str = 'class=DCShunt\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCSwitch.py b/cimpy/cgmes_v2_4_15/DCSwitch.py deleted file mode 100644 index b3efbf57..00000000 --- a/cimpy/cgmes_v2_4_15/DCSwitch.py +++ /dev/null @@ -1,29 +0,0 @@ -from .DCConductingEquipment import DCConductingEquipment - - -class DCSwitch(DCConductingEquipment): - ''' - A switch within the DC system. - - ''' - - cgmesProfile = DCConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCConductingEquipment: \n' + DCConductingEquipment.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=DCSwitch\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCTerminal.py b/cimpy/cgmes_v2_4_15/DCTerminal.py deleted file mode 100644 index a4319060..00000000 --- a/cimpy/cgmes_v2_4_15/DCTerminal.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DCBaseTerminal import DCBaseTerminal - - -class DCTerminal(DCBaseTerminal): - ''' - An electrical connection point to generic DC conducting equipment. - - :DCConductingEquipment: Default: None - ''' - - cgmesProfile = DCBaseTerminal.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.TP.value, ], - 'DCConductingEquipment': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DCBaseTerminal: \n' + DCBaseTerminal.__doc__ - - def __init__(self, DCConductingEquipment = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCConductingEquipment = DCConductingEquipment - - def __str__(self): - str = 'class=DCTerminal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py b/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py deleted file mode 100644 index 2a0ec7e5..00000000 --- a/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DCTopologicalIsland(IdentifiedObject): - ''' - An electrically connected subset of the network. DC topological islands can change as the current network state changes: e.g. due to - disconnect switches or breakers change state in a SCADA/EMS - manual creation, change or deletion of topological nodes in a planning tool. - - :DCTopologicalNodes: Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'DCTopologicalNodes': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, DCTopologicalNodes = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCTopologicalNodes = DCTopologicalNodes - - def __str__(self): - str = 'class=DCTopologicalIsland\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DCTopologicalNode.py b/cimpy/cgmes_v2_4_15/DCTopologicalNode.py deleted file mode 100644 index eb15008e..00000000 --- a/cimpy/cgmes_v2_4_15/DCTopologicalNode.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DCTopologicalNode(IdentifiedObject): - ''' - DC bus. - - :DCTopologicalIsland: Default: None - :DCTerminals: See association end Terminal.TopologicalNode. Default: "list" - :DCEquipmentContainer: Default: None - :DCNodes: See association end ConnectivityNode.TopologicalNode. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, cgmesProfile.TP.value, ], - 'DCTopologicalIsland': [cgmesProfile.SV.value, ], - 'DCTerminals': [cgmesProfile.TP.value, ], - 'DCEquipmentContainer': [cgmesProfile.TP.value, ], - 'DCNodes': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, DCTopologicalIsland = None, DCTerminals = "list", DCEquipmentContainer = None, DCNodes = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCTopologicalIsland = DCTopologicalIsland - self.DCTerminals = DCTerminals - self.DCEquipmentContainer = DCEquipmentContainer - self.DCNodes = DCNodes - - def __str__(self): - str = 'class=DCTopologicalNode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Date.py b/cimpy/cgmes_v2_4_15/Date.py deleted file mode 100644 index b2ea8681..00000000 --- a/cimpy/cgmes_v2_4_15/Date.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Date(Base): - ''' - Date as "yyyy-mm-dd", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddZ". A local timezone relative UTC is specified as "yyyy-mm-dd(+/-)hh:mm". - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.GL.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Date\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DateTime.py b/cimpy/cgmes_v2_4_15/DateTime.py deleted file mode 100644 index 8d430f80..00000000 --- a/cimpy/cgmes_v2_4_15/DateTime.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class DateTime(Base): - ''' - Date and time as "yyyy-mm-ddThh:mm:ss.sss", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddThh:mm:ss.sssZ". A local timezone relative UTC is specified as "yyyy-mm-ddThh:mm:ss.sss-hh:mm". The second component (shown here as "ss.sss") could have any number of digits in its fractional part to allow any kind of precision beyond seconds. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=DateTime\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DayType.py b/cimpy/cgmes_v2_4_15/DayType.py deleted file mode 100644 index bbe04fbc..00000000 --- a/cimpy/cgmes_v2_4_15/DayType.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DayType(IdentifiedObject): - ''' - Group of similar days. For example it could be used to represent weekdays, weekend, or holidays. - - :SeasonDayTypeSchedules: DayType for the Schedule. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'SeasonDayTypeSchedules': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, SeasonDayTypeSchedules = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SeasonDayTypeSchedules = SeasonDayTypeSchedules - - def __str__(self): - str = 'class=DayType\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Decimal.py b/cimpy/cgmes_v2_4_15/Decimal.py deleted file mode 100644 index 4e205714..00000000 --- a/cimpy/cgmes_v2_4_15/Decimal.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Decimal(Base): - ''' - Decimal is the base-10 notational system for representing real numbers. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Decimal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Diagram.py b/cimpy/cgmes_v2_4_15/Diagram.py deleted file mode 100644 index e7125fc5..00000000 --- a/cimpy/cgmes_v2_4_15/Diagram.py +++ /dev/null @@ -1,49 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Diagram(IdentifiedObject): - ''' - The diagram being exchanged. The coordinate system is a standard Cartesian coordinate system and the orientation attribute defines the orientation. - - :DiagramStyle: A Diagram may have a DiagramStyle. Default: None - :orientation: Coordinate system orientation of the diagram. Default: None - :x1InitialView: X coordinate of the first corner of the initial view. Default: 0.0 - :x2InitialView: X coordinate of the second corner of the initial view. Default: 0.0 - :y1InitialView: Y coordinate of the first corner of the initial view. Default: 0.0 - :y2InitialView: Y coordinate of the second corner of the initial view. Default: 0.0 - :DiagramElements: A diagram is made up of multiple diagram objects. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'DiagramStyle': [cgmesProfile.DL.value, ], - 'orientation': [cgmesProfile.DL.value, ], - 'x1InitialView': [cgmesProfile.DL.value, ], - 'x2InitialView': [cgmesProfile.DL.value, ], - 'y1InitialView': [cgmesProfile.DL.value, ], - 'y2InitialView': [cgmesProfile.DL.value, ], - 'DiagramElements': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, DiagramStyle = None, orientation = None, x1InitialView = 0.0, x2InitialView = 0.0, y1InitialView = 0.0, y2InitialView = 0.0, DiagramElements = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DiagramStyle = DiagramStyle - self.orientation = orientation - self.x1InitialView = x1InitialView - self.x2InitialView = x2InitialView - self.y1InitialView = y1InitialView - self.y2InitialView = y2InitialView - self.DiagramElements = DiagramElements - - def __str__(self): - str = 'class=Diagram\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiagramObject.py b/cimpy/cgmes_v2_4_15/DiagramObject.py deleted file mode 100644 index ba34864b..00000000 --- a/cimpy/cgmes_v2_4_15/DiagramObject.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DiagramObject(IdentifiedObject): - ''' - An object that defines one or more points in a given space. This object can be associated with anything that specializes IdentifiedObject. For single line diagrams such objects typically include such items as analog values, breakers, disconnectors, power transformers, and transmission lines. - - :Diagram: A diagram object is part of a diagram. Default: None - :drawingOrder: The drawing order of this element. The higher the number, the later the element is drawn in sequence. This is used to ensure that elements that overlap are rendered in the correct order. Default: 0 - :isPolygon: Defines whether or not the diagram objects points define the boundaries of a polygon or the routing of a polyline. If this value is true then a receiving application should consider the first and last points to be connected. Default: False - :offsetX: The offset in the X direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the horizontal centre of the icon. -0.5 indicates it is offset by 50% to the left and 0.5 indicates an offset of 50% to the right. Default: 0.0 - :offsetY: The offset in the Y direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the vertical centre of the icon. The offset direction is dependent on the orientation of the diagram, with -0.5 and 0.5 indicating an offset of +/- 50% on the vertical axis. Default: 0.0 - :rotation: Sets the angle of rotation of the diagram object. Zero degrees is pointing to the top of the diagram. Rotation is clockwise. Default: 0.0 - :IdentifiedObject: The diagram objects that are associated with the domain object. Default: None - :DiagramObjectPoints: A diagram object can have 0 or more points to reflect its layout position, routing (for polylines) or boundary (for polygons). Default: "list" - :VisibilityLayers: A diagram object can be part of multiple visibility layers. Default: "list" - :DiagramObjectStyle: A diagram object has a style associated that provides a reference for the style used in the originating system. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'Diagram': [cgmesProfile.DL.value, ], - 'drawingOrder': [cgmesProfile.DL.value, ], - 'isPolygon': [cgmesProfile.DL.value, ], - 'offsetX': [cgmesProfile.DL.value, ], - 'offsetY': [cgmesProfile.DL.value, ], - 'rotation': [cgmesProfile.DL.value, ], - 'IdentifiedObject': [cgmesProfile.DL.value, ], - 'DiagramObjectPoints': [cgmesProfile.DL.value, ], - 'VisibilityLayers': [cgmesProfile.DL.value, ], - 'DiagramObjectStyle': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Diagram = None, drawingOrder = 0, isPolygon = False, offsetX = 0.0, offsetY = 0.0, rotation = 0.0, IdentifiedObject = None, DiagramObjectPoints = "list", VisibilityLayers = "list", DiagramObjectStyle = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Diagram = Diagram - self.drawingOrder = drawingOrder - self.isPolygon = isPolygon - self.offsetX = offsetX - self.offsetY = offsetY - self.rotation = rotation - self.IdentifiedObject = IdentifiedObject - self.DiagramObjectPoints = DiagramObjectPoints - self.VisibilityLayers = VisibilityLayers - self.DiagramObjectStyle = DiagramObjectStyle - - def __str__(self): - str = 'class=DiagramObject\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py b/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py deleted file mode 100644 index deebf1c7..00000000 --- a/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py +++ /dev/null @@ -1,30 +0,0 @@ -from .Base import Base - - -class DiagramObjectGluePoint(Base): - ''' - This is used for grouping diagram object points from different diagram objects that are considered to be glued together in a diagram even if they are not at the exact same coordinates. - - :DiagramObjectPoints: The `glue` point to which this point is associated. Default: "list" - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'DiagramObjectPoints': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - - - def __init__(self, DiagramObjectPoints = "list", ): - - self.DiagramObjectPoints = DiagramObjectPoints - - def __str__(self): - str = 'class=DiagramObjectGluePoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py b/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py deleted file mode 100644 index eba28e40..00000000 --- a/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py +++ /dev/null @@ -1,45 +0,0 @@ -from .Base import Base - - -class DiagramObjectPoint(Base): - ''' - A point in a given space defined by 3 coordinates and associated to a diagram object. The coordinates may be positive or negative as the origin does not have to be in the corner of a diagram. - - :DiagramObject: The diagram object with which the points are associated. Default: None - :DiagramObjectGluePoint: A diagram object glue point is associated with 2 or more object points that are considered to be `glued` together. Default: None - :sequenceNumber: The sequence position of the point, used for defining the order of points for diagram objects acting as a polyline or polygon with more than one point. Default: 0 - :xPosition: The X coordinate of this point. Default: 0.0 - :yPosition: The Y coordinate of this point. Default: 0.0 - :zPosition: The Z coordinate of this point. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'DiagramObject': [cgmesProfile.DL.value, ], - 'DiagramObjectGluePoint': [cgmesProfile.DL.value, ], - 'sequenceNumber': [cgmesProfile.DL.value, ], - 'xPosition': [cgmesProfile.DL.value, ], - 'yPosition': [cgmesProfile.DL.value, ], - 'zPosition': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - - - def __init__(self, DiagramObject = None, DiagramObjectGluePoint = None, sequenceNumber = 0, xPosition = 0.0, yPosition = 0.0, zPosition = 0.0, ): - - self.DiagramObject = DiagramObject - self.DiagramObjectGluePoint = DiagramObjectGluePoint - self.sequenceNumber = sequenceNumber - self.xPosition = xPosition - self.yPosition = yPosition - self.zPosition = zPosition - - def __str__(self): - str = 'class=DiagramObjectPoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py b/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py deleted file mode 100644 index 4c98c962..00000000 --- a/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DiagramObjectStyle(IdentifiedObject): - ''' - A reference to a style used by the originating system for a diagram object. A diagram object style describes information such as line thickness, shape such as circle or rectangle etc, and color. - - :StyledObjects: A style can be assigned to multiple diagram objects. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'StyledObjects': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, StyledObjects = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.StyledObjects = StyledObjects - - def __str__(self): - str = 'class=DiagramObjectStyle\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiagramStyle.py b/cimpy/cgmes_v2_4_15/DiagramStyle.py deleted file mode 100644 index 347a269c..00000000 --- a/cimpy/cgmes_v2_4_15/DiagramStyle.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DiagramStyle(IdentifiedObject): - ''' - The diagram style refer to a style used by the originating system for a diagram. A diagram style describes information such as schematic, geographic, bus-branch etc. - - :Diagram: A DiagramStyle can be used by many Diagrams. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'Diagram': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Diagram = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Diagram = Diagram - - def __str__(self): - str = 'class=DiagramStyle\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py b/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py deleted file mode 100644 index ef57c519..00000000 --- a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .DiscontinuousExcitationControlDynamics import DiscontinuousExcitationControlDynamics - - -class DiscExcContIEEEDEC1A(DiscontinuousExcitationControlDynamics): - ''' - The class represents IEEE Type DEC1A discontinuous excitation control model that boosts generator excitation to a level higher than that demanded by the voltage regulator and stabilizer immediately following a system fault. Reference: IEEE Standard 421.5-2005 Section 12.2. - - :vtlmt: Voltage reference (). Typical Value = 1.1. Default: 0.0 - :vomax: Limiter (). Typical Value = 0.3. Default: 0.0 - :vomin: Limiter (). Typical Value = 0.1. Default: 0.0 - :ketl: Terminal voltage limiter gain (). Typical Value = 47. Default: 0.0 - :vtc: Terminal voltage level reference (). Typical Value = 0.95. Default: 0.0 - :val: Regulator voltage reference (). Typical Value = 5.5. Default: 0.0 - :esc: Speed change reference (). Typical Value = 0.0015. Default: 0.0 - :kan: Discontinuous controller gain (). Typical Value = 400. Default: 0.0 - :tan: Discontinuous controller time constant (). Typical Value = 0.08. Default: 0 - :tw5: DEC washout time constant (). Typical Value = 5. Default: 0 - :vsmax: Limiter (). Typical Value = 0.2. Default: 0.0 - :vsmin: Limiter (). Typical Value = -0.066. Default: 0.0 - :td: Time constant (). Typical Value = 0.03. Default: 0 - :tl1: Time constant (). Typical Value = 0.025. Default: 0 - :tl2: Time constant (). Typical Value = 1.25. Default: 0 - :vtm: Voltage limits (). Typical Value = 1.13. Default: 0.0 - :vtn: Voltage limits (). Typical Value = 1.12. Default: 0.0 - :vanmax: Limiter for Van (). Default: 0.0 - ''' - - cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vtlmt': [cgmesProfile.DY.value, ], - 'vomax': [cgmesProfile.DY.value, ], - 'vomin': [cgmesProfile.DY.value, ], - 'ketl': [cgmesProfile.DY.value, ], - 'vtc': [cgmesProfile.DY.value, ], - 'val': [cgmesProfile.DY.value, ], - 'esc': [cgmesProfile.DY.value, ], - 'kan': [cgmesProfile.DY.value, ], - 'tan': [cgmesProfile.DY.value, ], - 'tw5': [cgmesProfile.DY.value, ], - 'vsmax': [cgmesProfile.DY.value, ], - 'vsmin': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tl1': [cgmesProfile.DY.value, ], - 'tl2': [cgmesProfile.DY.value, ], - 'vtm': [cgmesProfile.DY.value, ], - 'vtn': [cgmesProfile.DY.value, ], - 'vanmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n' + DiscontinuousExcitationControlDynamics.__doc__ - - def __init__(self, vtlmt = 0.0, vomax = 0.0, vomin = 0.0, ketl = 0.0, vtc = 0.0, val = 0.0, esc = 0.0, kan = 0.0, tan = 0, tw5 = 0, vsmax = 0.0, vsmin = 0.0, td = 0, tl1 = 0, tl2 = 0, vtm = 0.0, vtn = 0.0, vanmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vtlmt = vtlmt - self.vomax = vomax - self.vomin = vomin - self.ketl = ketl - self.vtc = vtc - self.val = val - self.esc = esc - self.kan = kan - self.tan = tan - self.tw5 = tw5 - self.vsmax = vsmax - self.vsmin = vsmin - self.td = td - self.tl1 = tl1 - self.tl2 = tl2 - self.vtm = vtm - self.vtn = vtn - self.vanmax = vanmax - - def __str__(self): - str = 'class=DiscExcContIEEEDEC1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py b/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py deleted file mode 100644 index c036f9a4..00000000 --- a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py +++ /dev/null @@ -1,43 +0,0 @@ -from .DiscontinuousExcitationControlDynamics import DiscontinuousExcitationControlDynamics - - -class DiscExcContIEEEDEC2A(DiscontinuousExcitationControlDynamics): - ''' - The class represents IEEE Type DEC2A model for the discontinuous excitation control. This system provides transient excitation boosting via an open-loop control as initiated by a trigger signal generated remotely. Reference: IEEE Standard 421.5-2005 Section 12.3. - - :vk: Discontinuous controller input reference (). Default: 0.0 - :td1: Discontinuous controller time constant (). Default: 0 - :td2: Discontinuous controller washout time constant (). Default: 0 - :vdmin: Limiter (). Default: 0.0 - :vdmax: Limiter (). Default: 0.0 - ''' - - cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vk': [cgmesProfile.DY.value, ], - 'td1': [cgmesProfile.DY.value, ], - 'td2': [cgmesProfile.DY.value, ], - 'vdmin': [cgmesProfile.DY.value, ], - 'vdmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n' + DiscontinuousExcitationControlDynamics.__doc__ - - def __init__(self, vk = 0.0, td1 = 0, td2 = 0, vdmin = 0.0, vdmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vk = vk - self.td1 = td1 - self.td2 = td2 - self.vdmin = vdmin - self.vdmax = vdmax - - def __str__(self): - str = 'class=DiscExcContIEEEDEC2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py b/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py deleted file mode 100644 index 88bbd7e3..00000000 --- a/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DiscontinuousExcitationControlDynamics import DiscontinuousExcitationControlDynamics - - -class DiscExcContIEEEDEC3A(DiscontinuousExcitationControlDynamics): - ''' - The class represents IEEE Type DEC3A model. In some systems, the stabilizer output is disconnected from the regulator immediately following a severe fault to prevent the stabilizer from competing with action of voltage regulator during the first swing. Reference: IEEE Standard 421.5-2005 Section 12.4. - - :vtmin: Terminal undervoltage comparison level (). Default: 0.0 - :tdr: Reset time delay (). Default: 0 - ''' - - cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vtmin': [cgmesProfile.DY.value, ], - 'tdr': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n' + DiscontinuousExcitationControlDynamics.__doc__ - - def __init__(self, vtmin = 0.0, tdr = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vtmin = vtmin - self.tdr = tdr - - def __str__(self): - str = 'class=DiscExcContIEEEDEC3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Disconnector.py b/cimpy/cgmes_v2_4_15/Disconnector.py deleted file mode 100644 index 4b83c741..00000000 --- a/cimpy/cgmes_v2_4_15/Disconnector.py +++ /dev/null @@ -1,29 +0,0 @@ -from .Switch import Switch - - -class Disconnector(Switch): - ''' - A manually operated or motor operated mechanical switching device used for changing the connections in a circuit, or for isolating a circuit or equipment from a source of power. It is required to open or close circuits when negligible current is broken or made. - - ''' - - cgmesProfile = Switch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Switch: \n' + Switch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Disconnector\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py b/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py deleted file mode 100644 index 0183db20..00000000 --- a/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class DiscontinuousExcitationControlDynamics(DynamicsFunctionBlock): - ''' - Discontinuous excitation control function block whose behaviour is described by reference to a standard model . - - :RemoteInputSignal: Remote input signal used by this discontinuous excitation control system model. Default: None - :ExcitationSystemDynamics: Excitation system model with which this discontinuous excitation control model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=DiscontinuousExcitationControlDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py b/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py deleted file mode 100644 index c4f8c72f..00000000 --- a/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DiscontinuousExcitationControlDynamics import DiscontinuousExcitationControlDynamics - - -class DiscontinuousExcitationControlUserDefined(DiscontinuousExcitationControlDynamics): - ''' - Discontinuous excitation control function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n' + DiscontinuousExcitationControlDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=DiscontinuousExcitationControlUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Discrete.py b/cimpy/cgmes_v2_4_15/Discrete.py deleted file mode 100644 index 68a6a202..00000000 --- a/cimpy/cgmes_v2_4_15/Discrete.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Measurement import Measurement - - -class Discrete(Measurement): - ''' - Discrete represents a discrete Measurement, i.e. a Measurement representing discrete values, e.g. a Breaker position. - - :DiscreteValues: Measurement to which this value is connected. Default: "list" - :ValueAliasSet: The ValueAliasSet used for translation of a MeasurementValue.value to a name. Default: None - ''' - - cgmesProfile = Measurement.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'DiscreteValues': [cgmesProfile.EQ.value, ], - 'ValueAliasSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Measurement: \n' + Measurement.__doc__ - - def __init__(self, DiscreteValues = "list", ValueAliasSet = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DiscreteValues = DiscreteValues - self.ValueAliasSet = ValueAliasSet - - def __str__(self): - str = 'class=Discrete\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DiscreteValue.py b/cimpy/cgmes_v2_4_15/DiscreteValue.py deleted file mode 100644 index caba0eaf..00000000 --- a/cimpy/cgmes_v2_4_15/DiscreteValue.py +++ /dev/null @@ -1,37 +0,0 @@ -from .MeasurementValue import MeasurementValue - - -class DiscreteValue(MeasurementValue): - ''' - DiscreteValue represents a discrete MeasurementValue. - - :Command: The MeasurementValue that is controlled. Default: None - :Discrete: The values connected to this measurement. Default: None - :value: The value to supervise. Default: 0 - ''' - - cgmesProfile = MeasurementValue.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Command': [cgmesProfile.EQ.value, ], - 'Discrete': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MeasurementValue: \n' + MeasurementValue.__doc__ - - def __init__(self, Command = None, Discrete = None, value = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Command = Command - self.Discrete = Discrete - self.value = value - - def __str__(self): - str = 'class=DiscreteValue\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py b/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py deleted file mode 100644 index 9dc1e882..00000000 --- a/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class DroopSignalFeedbackKind(Base): - ''' - Governor droop signal feedback source. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=DroopSignalFeedbackKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py b/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py deleted file mode 100644 index d9585391..00000000 --- a/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class DynamicsFunctionBlock(IdentifiedObject): - ''' - Abstract parent class for all Dynamics function blocks. - - :enabled: Function block used indicator. true = use of function block is enabled false = use of function block is disabled. Default: False - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'enabled': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, enabled = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.enabled = enabled - - def __str__(self): - str = 'class=DynamicsFunctionBlock\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py b/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py deleted file mode 100644 index 524dca78..00000000 --- a/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class EarthFaultCompensator(ConductingEquipment): - ''' - A conducting equipment used to represent a connection to ground which is typically used to compensate earth faults.. An earth fault compensator device modeled with a single terminal implies a second terminal solidly connected to ground. If two terminals are modeled, the ground is not assumed and normal connection rules apply. - - :r: Nominal resistance of device. Default: 0.0 - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, r = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.r = r - - def __str__(self): - str = 'class=EarthFaultCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EnergyArea.py b/cimpy/cgmes_v2_4_15/EnergyArea.py deleted file mode 100644 index 18d2c74d..00000000 --- a/cimpy/cgmes_v2_4_15/EnergyArea.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class EnergyArea(IdentifiedObject): - ''' - Describes an area having energy production or consumption. Specializations are intended to support the load allocation function as typically required in energy management systems or planning studies to allocate hypothesized load levels to individual load points for power flow analysis. Often the energy area can be linked to both measured and forecast load levels. - - :ControlArea: The control area specification that is used for the load forecast. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'ControlArea': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, ControlArea = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ControlArea = ControlArea - - def __str__(self): - str = 'class=EnergyArea\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EnergyConsumer.py b/cimpy/cgmes_v2_4_15/EnergyConsumer.py deleted file mode 100644 index f168f4f3..00000000 --- a/cimpy/cgmes_v2_4_15/EnergyConsumer.py +++ /dev/null @@ -1,52 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class EnergyConsumer(ConductingEquipment): - ''' - Generic user of energy - a point of consumption on the power system model. - - :LoadResponse: The load response characteristic of this load. If missing, this load is assumed to be constant power. Default: None - :pfixed: Active power of the load that is a fixed quantity. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 - :pfixedPct: Fixed active power as per cent of load group fixed active power. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 - :qfixed: Reactive power of the load that is a fixed quantity. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 - :qfixedPct: Fixed reactive power as per cent of load group fixed reactive power. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 - :p: Active power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 - :q: Reactive power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 - :LoadDynamics: Load dynamics model used to describe dynamic behavior of this energy consumer. Default: None - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'LoadResponse': [cgmesProfile.EQ.value, ], - 'pfixed': [cgmesProfile.EQ.value, ], - 'pfixedPct': [cgmesProfile.EQ.value, ], - 'qfixed': [cgmesProfile.EQ.value, ], - 'qfixedPct': [cgmesProfile.EQ.value, ], - 'p': [cgmesProfile.SSH.value, ], - 'q': [cgmesProfile.SSH.value, ], - 'LoadDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, LoadResponse = None, pfixed = 0.0, pfixedPct = 0.0, qfixed = 0.0, qfixedPct = 0.0, p = 0.0, q = 0.0, LoadDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadResponse = LoadResponse - self.pfixed = pfixed - self.pfixedPct = pfixedPct - self.qfixed = qfixed - self.qfixedPct = qfixedPct - self.p = p - self.q = q - self.LoadDynamics = LoadDynamics - - def __str__(self): - str = 'class=EnergyConsumer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EnergySchedulingType.py b/cimpy/cgmes_v2_4_15/EnergySchedulingType.py deleted file mode 100644 index 49a7088e..00000000 --- a/cimpy/cgmes_v2_4_15/EnergySchedulingType.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class EnergySchedulingType(IdentifiedObject): - ''' - Used to define the type of generation for scheduling purposes. - - :EnergySource: Energy Scheduling Type of an Energy Source Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'EnergySource': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, EnergySource = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergySource = EnergySource - - def __str__(self): - str = 'class=EnergySchedulingType\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EnergySource.py b/cimpy/cgmes_v2_4_15/EnergySource.py deleted file mode 100644 index e835eafb..00000000 --- a/cimpy/cgmes_v2_4_15/EnergySource.py +++ /dev/null @@ -1,67 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class EnergySource(ConductingEquipment): - ''' - A generic equivalent for an energy supplier on a transmission or distribution voltage level. - - :EnergySchedulingType: Energy Source of a particular Energy Scheduling Type Default: None - :nominalVoltage: Phase-to-phase nominal voltage. Default: 0.0 - :r: Positive sequence Thevenin resistance. Default: 0.0 - :r0: Zero sequence Thevenin resistance. Default: 0.0 - :rn: Negative sequence Thevenin resistance. Default: 0.0 - :voltageAngle: Phase angle of a-phase open circuit. Default: 0.0 - :voltageMagnitude: Phase-to-phase open circuit voltage magnitude. Default: 0.0 - :x: Positive sequence Thevenin reactance. Default: 0.0 - :x0: Zero sequence Thevenin reactance. Default: 0.0 - :xn: Negative sequence Thevenin reactance. Default: 0.0 - :activePower: High voltage source active injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - :reactivePower: High voltage source reactive injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - :WindTurbineType3or4Dynamics: Wind generator Type 3 or 4 dynamics model associated with this energy source. Default: None - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'EnergySchedulingType': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'nominalVoltage': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'rn': [cgmesProfile.EQ.value, ], - 'voltageAngle': [cgmesProfile.EQ.value, ], - 'voltageMagnitude': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - 'xn': [cgmesProfile.EQ.value, ], - 'activePower': [cgmesProfile.SSH.value, ], - 'reactivePower': [cgmesProfile.SSH.value, ], - 'WindTurbineType3or4Dynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, EnergySchedulingType = None, nominalVoltage = 0.0, r = 0.0, r0 = 0.0, rn = 0.0, voltageAngle = 0.0, voltageMagnitude = 0.0, x = 0.0, x0 = 0.0, xn = 0.0, activePower = 0.0, reactivePower = 0.0, WindTurbineType3or4Dynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergySchedulingType = EnergySchedulingType - self.nominalVoltage = nominalVoltage - self.r = r - self.r0 = r0 - self.rn = rn - self.voltageAngle = voltageAngle - self.voltageMagnitude = voltageMagnitude - self.x = x - self.x0 = x0 - self.xn = xn - self.activePower = activePower - self.reactivePower = reactivePower - self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics - - def __str__(self): - str = 'class=EnergySource\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Equipment.py b/cimpy/cgmes_v2_4_15/Equipment.py deleted file mode 100644 index 6f032e55..00000000 --- a/cimpy/cgmes_v2_4_15/Equipment.py +++ /dev/null @@ -1,37 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class Equipment(PowerSystemResource): - ''' - The parts of a power system that are physical devices, electronic or mechanical. - - :aggregate: The single instance of equipment represents multiple pieces of equipment that have been modeled together as an aggregate. Examples would be power transformers or synchronous machines operating in parallel modeled as a single aggregate power transformer or aggregate synchronous machine. This is not to be used to indicate equipment that is part of a group of interdependent equipment produced by a network production program. Default: False - :EquipmentContainer: Container of this equipment. Default: None - :OperationalLimitSet: The operational limit sets associated with this equipment. Default: "list" - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'aggregate': [cgmesProfile.EQ.value, ], - 'EquipmentContainer': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'OperationalLimitSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, aggregate = False, EquipmentContainer = None, OperationalLimitSet = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.aggregate = aggregate - self.EquipmentContainer = EquipmentContainer - self.OperationalLimitSet = OperationalLimitSet - - def __str__(self): - str = 'class=Equipment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquipmentContainer.py b/cimpy/cgmes_v2_4_15/EquipmentContainer.py deleted file mode 100644 index ee6ad74c..00000000 --- a/cimpy/cgmes_v2_4_15/EquipmentContainer.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ConnectivityNodeContainer import ConnectivityNodeContainer - - -class EquipmentContainer(ConnectivityNodeContainer): - ''' - A modeling construct to provide a root class for containing equipment. - - :Equipments: Contained equipment. Default: "list" - ''' - - cgmesProfile = ConnectivityNodeContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'Equipments': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConnectivityNodeContainer: \n' + ConnectivityNodeContainer.__doc__ - - def __init__(self, Equipments = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Equipments = Equipments - - def __str__(self): - str = 'class=EquipmentContainer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquivalentBranch.py b/cimpy/cgmes_v2_4_15/EquivalentBranch.py deleted file mode 100644 index 6e60c993..00000000 --- a/cimpy/cgmes_v2_4_15/EquivalentBranch.py +++ /dev/null @@ -1,76 +0,0 @@ -from .EquivalentEquipment import EquivalentEquipment - - -class EquivalentBranch(EquivalentEquipment): - ''' - The class represents equivalent branches. - - :r: Positive sequence series resistance of the reduced branch. Default: 0.0 - :r21: Resistance from terminal sequence 2 to terminal sequence 1 .Used for steady state power flow. This attribute is optional and represent unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.r is given, then EquivalentBranch.r21 is assumed equal to EquivalentBranch.r. Usage rule : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 - :x: Positive sequence series reactance of the reduced branch. Default: 0.0 - :x21: Reactance from terminal sequence 2 to terminal sequence 1 .Used for steady state power flow. This attribute is optional and represent unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.x is given, then EquivalentBranch.x21 is assumed equal to EquivalentBranch.x. Usage rule : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 - :negativeR12: Negative sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :negativeR21: Negative sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :negativeX12: Negative sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :negativeX21: Negative sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage: EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :positiveR12: Positive sequence series resistance from terminal sequence 1 to terminal sequence 2 . Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 - :positiveR21: Positive sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :positiveX12: Positive sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :positiveX21: Positive sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :zeroR12: Zero sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :zeroR21: Zero sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :zeroX12: Zero sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - :zeroX21: Zero sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 - ''' - - cgmesProfile = EquivalentEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'r21': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'x21': [cgmesProfile.EQ.value, ], - 'negativeR12': [cgmesProfile.EQ.value, ], - 'negativeR21': [cgmesProfile.EQ.value, ], - 'negativeX12': [cgmesProfile.EQ.value, ], - 'negativeX21': [cgmesProfile.EQ.value, ], - 'positiveR12': [cgmesProfile.EQ.value, ], - 'positiveR21': [cgmesProfile.EQ.value, ], - 'positiveX12': [cgmesProfile.EQ.value, ], - 'positiveX21': [cgmesProfile.EQ.value, ], - 'zeroR12': [cgmesProfile.EQ.value, ], - 'zeroR21': [cgmesProfile.EQ.value, ], - 'zeroX12': [cgmesProfile.EQ.value, ], - 'zeroX21': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquivalentEquipment: \n' + EquivalentEquipment.__doc__ - - def __init__(self, r = 0.0, r21 = 0.0, x = 0.0, x21 = 0.0, negativeR12 = 0.0, negativeR21 = 0.0, negativeX12 = 0.0, negativeX21 = 0.0, positiveR12 = 0.0, positiveR21 = 0.0, positiveX12 = 0.0, positiveX21 = 0.0, zeroR12 = 0.0, zeroR21 = 0.0, zeroX12 = 0.0, zeroX21 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.r = r - self.r21 = r21 - self.x = x - self.x21 = x21 - self.negativeR12 = negativeR12 - self.negativeR21 = negativeR21 - self.negativeX12 = negativeX12 - self.negativeX21 = negativeX21 - self.positiveR12 = positiveR12 - self.positiveR21 = positiveR21 - self.positiveX12 = positiveX12 - self.positiveX21 = positiveX21 - self.zeroR12 = zeroR12 - self.zeroR21 = zeroR21 - self.zeroX12 = zeroX12 - self.zeroX21 = zeroX21 - - def __str__(self): - str = 'class=EquivalentBranch\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquivalentEquipment.py b/cimpy/cgmes_v2_4_15/EquivalentEquipment.py deleted file mode 100644 index 276de421..00000000 --- a/cimpy/cgmes_v2_4_15/EquivalentEquipment.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class EquivalentEquipment(ConductingEquipment): - ''' - The class represents equivalent objects that are the result of a network reduction. The class is the base for equivalent objects of different types. - - :EquivalentNetwork: The associated reduced equivalents. Default: None - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'EquivalentNetwork': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, EquivalentNetwork = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EquivalentNetwork = EquivalentNetwork - - def __str__(self): - str = 'class=EquivalentEquipment\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquivalentInjection.py b/cimpy/cgmes_v2_4_15/EquivalentInjection.py deleted file mode 100644 index e8e47197..00000000 --- a/cimpy/cgmes_v2_4_15/EquivalentInjection.py +++ /dev/null @@ -1,76 +0,0 @@ -from .EquivalentEquipment import EquivalentEquipment - - -class EquivalentInjection(EquivalentEquipment): - ''' - This class represents equivalent injections (generation or load). Voltage regulation is allowed only at the point of connection. - - :ReactiveCapabilityCurve: The equivalent injection using this reactive capability curve. Default: None - :maxP: Maximum active power of the injection. Default: 0.0 - :maxQ: Used for modeling of infeed for load flow exchange. Not used for short circuit modeling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 - :minP: Minimum active power of the injection. Default: 0.0 - :minQ: Used for modeling of infeed for load flow exchange. Not used for short circuit modeling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 - :regulationCapability: Specifies whether or not the EquivalentInjection has the capability to regulate the local voltage. Default: False - :r: Positive sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :r0: Zero sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :r2: Negative sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :x: Positive sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :x0: Zero sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :x2: Negative sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 - :regulationStatus: Specifies the default regulation status of the EquivalentInjection. True is regulating. False is not regulating. Default: False - :regulationTarget: The target voltage for voltage regulation. Default: 0.0 - :p: Equivalent active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - :q: Equivalent reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - ''' - - cgmesProfile = EquivalentEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'ReactiveCapabilityCurve': [cgmesProfile.EQ.value, ], - 'maxP': [cgmesProfile.EQ.value, ], - 'maxQ': [cgmesProfile.EQ.value, ], - 'minP': [cgmesProfile.EQ.value, ], - 'minQ': [cgmesProfile.EQ.value, ], - 'regulationCapability': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'r2': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - 'x2': [cgmesProfile.EQ.value, ], - 'regulationStatus': [cgmesProfile.SSH.value, ], - 'regulationTarget': [cgmesProfile.SSH.value, ], - 'p': [cgmesProfile.SSH.value, ], - 'q': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquivalentEquipment: \n' + EquivalentEquipment.__doc__ - - def __init__(self, ReactiveCapabilityCurve = None, maxP = 0.0, maxQ = 0.0, minP = 0.0, minQ = 0.0, regulationCapability = False, r = 0.0, r0 = 0.0, r2 = 0.0, x = 0.0, x0 = 0.0, x2 = 0.0, regulationStatus = False, regulationTarget = 0.0, p = 0.0, q = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ReactiveCapabilityCurve = ReactiveCapabilityCurve - self.maxP = maxP - self.maxQ = maxQ - self.minP = minP - self.minQ = minQ - self.regulationCapability = regulationCapability - self.r = r - self.r0 = r0 - self.r2 = r2 - self.x = x - self.x0 = x0 - self.x2 = x2 - self.regulationStatus = regulationStatus - self.regulationTarget = regulationTarget - self.p = p - self.q = q - - def __str__(self): - str = 'class=EquivalentInjection\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquivalentNetwork.py b/cimpy/cgmes_v2_4_15/EquivalentNetwork.py deleted file mode 100644 index 1a5d94bc..00000000 --- a/cimpy/cgmes_v2_4_15/EquivalentNetwork.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ConnectivityNodeContainer import ConnectivityNodeContainer - - -class EquivalentNetwork(ConnectivityNodeContainer): - ''' - A class that represents an external meshed network that has been reduced to an electrically equivalent model. The ConnectivityNodes contained in the equivalent are intended to reflect internal nodes of the equivalent. The boundary Connectivity nodes where the equivalent connects outside itself are NOT contained by the equivalent. - - :EquivalentEquipments: The equivalent where the reduced model belongs. Default: "list" - ''' - - cgmesProfile = ConnectivityNodeContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'EquivalentEquipments': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConnectivityNodeContainer: \n' + ConnectivityNodeContainer.__doc__ - - def __init__(self, EquivalentEquipments = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EquivalentEquipments = EquivalentEquipments - - def __str__(self): - str = 'class=EquivalentNetwork\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/EquivalentShunt.py b/cimpy/cgmes_v2_4_15/EquivalentShunt.py deleted file mode 100644 index 93a9f74d..00000000 --- a/cimpy/cgmes_v2_4_15/EquivalentShunt.py +++ /dev/null @@ -1,34 +0,0 @@ -from .EquivalentEquipment import EquivalentEquipment - - -class EquivalentShunt(EquivalentEquipment): - ''' - The class represents equivalent shunts. - - :b: Positive sequence shunt susceptance. Default: 0.0 - :g: Positive sequence shunt conductance. Default: 0.0 - ''' - - cgmesProfile = EquivalentEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'b': [cgmesProfile.EQ.value, ], - 'g': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquivalentEquipment: \n' + EquivalentEquipment.__doc__ - - def __init__(self, b = 0.0, g = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.b = b - self.g = g - - def __str__(self): - str = 'class=EquivalentShunt\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC1A.py b/cimpy/cgmes_v2_4_15/ExcAC1A.py deleted file mode 100644 index 2a2fa51d..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC1A.py +++ /dev/null @@ -1,94 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC1A(ExcitationSystemDynamics): - ''' - Modified IEEE AC1A alternator-supplied rectifier excitation system with different rate feedback source. - - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.8. Default: 0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 - :kf1: Coefficient to allow different usage of the model (Kf1). Typical Value = 0. Default: 0.0 - :kf2: Coefficient to allow different usage of the model (Kf2). Typical Value = 1. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.2. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.38. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1). Typical Value = 4.18. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0.1. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 3.14. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 0.03. Default: 0.0 - :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 6.03. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (Rrmin). Typical Value = -5.43. Default: 0.0 - :hvlvgates: Indicates if both HV gate and LV gate are active (HVLVgates). true = gates are used false = gates are not used. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'kf1': [cgmesProfile.DY.value, ], - 'kf2': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'hvlvgates': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0.0, ta = 0, vamax = 0.0, vamin = 0.0, te = 0, kf = 0.0, kf1 = 0.0, kf2 = 0.0, ks = 0.0, tf = 0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, vrmax = 0.0, vrmin = 0.0, hvlvgates = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.te = te - self.kf = kf - self.kf1 = kf1 - self.kf2 = kf2 - self.ks = ks - self.tf = tf - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - self.vrmax = vrmax - self.vrmin = vrmin - self.hvlvgates = hvlvgates - - def __str__(self): - str = 'class=ExcAC1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC2A.py b/cimpy/cgmes_v2_4_15/ExcAC2A.py deleted file mode 100644 index 948fe929..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC2A.py +++ /dev/null @@ -1,112 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC2A(ExcitationSystemDynamics): - ''' - Modified IEEE AC2A alternator-supplied rectifier excitation system with different field current limit. - - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 8. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -8. Default: 0.0 - :kb: Second stage regulator gain (Kb) (>0). Exciter field current controller gain. Typical Value = 25. Default: 0.0 - :kb1: Second stage regulator gain (Kb1). It is exciter field current controller gain used as alternative to Kb to represent a variant of the ExcAC2A model. Typical Value = 25. Default: 0.0 - :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 105. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -95. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.6. Default: 0 - :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 4.4. Default: 0.0 - :kh: Exciter field current feedback gain (Kh). Typical Value = 1. Default: 0.0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 - :kl: Exciter field current limiter gain (Kl). Typical Value = 10. Default: 0.0 - :vlr: Maximum exciter field current (Vlr). Typical Value = 4.4. Default: 0.0 - :kl1: Coefficient to allow different usage of the model (Kl1). Typical Value = 1. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.28. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.35. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 4.4. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.037. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 3.3. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.012. Default: 0.0 - :hvgate: Indicates if HV gate is active (HVgate). true = gate is used false = gate is not used. Typical Value = true. Default: False - :lvgate: Indicates if LV gate is active (LVgate). true = gate is used false = gate is not used. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'kb': [cgmesProfile.DY.value, ], - 'kb1': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'kl': [cgmesProfile.DY.value, ], - 'vlr': [cgmesProfile.DY.value, ], - 'kl1': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'hvgate': [cgmesProfile.DY.value, ], - 'lvgate': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0.0, ta = 0, vamax = 0.0, vamin = 0.0, kb = 0.0, kb1 = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, vfemax = 0.0, kh = 0.0, kf = 0.0, kl = 0.0, vlr = 0.0, kl1 = 0.0, ks = 0.0, tf = 0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, hvgate = False, lvgate = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.kb = kb - self.kb1 = kb1 - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.vfemax = vfemax - self.kh = kh - self.kf = kf - self.kl = kl - self.vlr = vlr - self.kl1 = kl1 - self.ks = ks - self.tf = tf - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - self.hvgate = hvgate - self.lvgate = lvgate - - def __str__(self): - str = 'class=ExcAC2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC3A.py b/cimpy/cgmes_v2_4_15/ExcAC3A.py deleted file mode 100644 index 2d200fc7..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC3A.py +++ /dev/null @@ -1,106 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC3A(ExcitationSystemDynamics): - ''' - Modified IEEE AC3A alternator-supplied rectifier excitation system with different field current limit. - - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (Ka). Typical Value = 45.62. Default: 0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.013. Default: 0.0 - :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.17. Default: 0 - :vemin: Minimum exciter voltage output (Vemin). Typical Value = 0.1. Default: 0.0 - :kr: Constant associated with regulator and alternator field power supply (Kr). Typical Value =3.77. Default: 0.0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.143. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :kn: Excitation control system stabilizer gain (Kn). Typical Value =0.05. Default: 0.0 - :efdn: Value of at which feedback gain changes (Efdn). Typical Value = 2.36. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.104. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.499. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :klv: Gain used in the minimum field voltage limiter loop (Klv). Typical Value = 0.194. Default: 0.0 - :kf1: Coefficient to allow different usage of the model (Kf1). Typical Value = 1. Default: 0.0 - :kf2: Coefficient to allow different usage of the model (Kf2). Typical Value = 0. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 16. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) equals Vemax (Ve1). Typical Value = 6.24. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 1.143. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 4.68. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.1. Default: 0.0 - :vlv: Field voltage used in the minimum field voltage limiter loop (Vlv). Typical Value = 0.79. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'kr': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kn': [cgmesProfile.DY.value, ], - 'efdn': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'klv': [cgmesProfile.DY.value, ], - 'kf1': [cgmesProfile.DY.value, ], - 'kf2': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'vlv': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0, ta = 0.0, vamax = 0.0, vamin = 0.0, te = 0, vemin = 0.0, kr = 0.0, kf = 0.0, tf = 0, kn = 0.0, efdn = 0.0, kc = 0.0, kd = 0.0, ke = 0.0, klv = 0.0, kf1 = 0.0, kf2 = 0.0, ks = 0.0, vfemax = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, vlv = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.te = te - self.vemin = vemin - self.kr = kr - self.kf = kf - self.tf = tf - self.kn = kn - self.efdn = efdn - self.kc = kc - self.kd = kd - self.ke = ke - self.klv = klv - self.kf1 = kf1 - self.kf2 = kf2 - self.ks = ks - self.vfemax = vfemax - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - self.vlv = vlv - - def __str__(self): - str = 'class=ExcAC3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC4A.py b/cimpy/cgmes_v2_4_15/ExcAC4A.py deleted file mode 100644 index cfd669fe..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC4A.py +++ /dev/null @@ -1,55 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC4A(ExcitationSystemDynamics): - ''' - Modified IEEE AC4A alternator-supplied rectifier excitation system with different minimum controller output. - - :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 10. Default: 0.0 - :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -10. Default: 0.0 - :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 - :tb: Voltage regulator time constant (Tb). Typical Value = 10. Default: 0 - :ka: Voltage regulator gain (Ka). Typical Value = 200. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.015. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5.64. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.53. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, vimax = 0.0, vimin = 0.0, tc = 0, tb = 0, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, kc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vimax = vimax - self.vimin = vimin - self.tc = tc - self.tb = tb - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.kc = kc - - def __str__(self): - str = 'class=ExcAC4A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC5A.py b/cimpy/cgmes_v2_4_15/ExcAC5A.py deleted file mode 100644 index 18cd50e9..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC5A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC5A(ExcitationSystemDynamics): - ''' - Modified IEEE AC5A alternator-supplied rectifier excitation system with different minimum controller output. - - :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 7.3. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value =-7.3. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.8. Default: 0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 - :tf1: Excitation control system stabilizer time constant (Tf1). Typical Value = 1. Default: 0 - :tf2: Excitation control system stabilizer time constant (Tf2). Typical Value = 0.8. Default: 0 - :tf3: Excitation control system stabilizer time constant (Tf3). Typical Value = 0. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 5.6. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (S[Efd1]). Typical Value = 0.86. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 4.2. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (S[Efd2]). Typical Value = 0.5. Default: 0.0 - :a: Coefficient to allow different usage of the model (a). Typical Value = 1. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'tf3': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ks = 0.0, tb = 0, tc = 0, ta = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf1 = 0, tf2 = 0, tf3 = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, a = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ks = ks - self.tb = tb - self.tc = tc - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf1 = tf1 - self.tf2 = tf2 - self.tf3 = tf3 - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.a = a - - def __str__(self): - str = 'class=ExcAC5A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC6A.py b/cimpy/cgmes_v2_4_15/ExcAC6A.py deleted file mode 100644 index 6c405929..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC6A.py +++ /dev/null @@ -1,97 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC6A(ExcitationSystemDynamics): - ''' - Modified IEEE AC6A alternator-supplied rectifier excitation system with speed input. - - :ka: Voltage regulator gain (Ka). Typical Value = 536. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.086. Default: 0 - :tk: Voltage regulator time constant (Tk). Typical Value = 0.18. Default: 0 - :tb: Voltage regulator time constant (Tb). Typical Value = 9. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 3. Default: 0 - :vamax: Maximum voltage regulator output (Vamax). Typical Value = 75. Default: 0.0 - :vamin: Minimum voltage regulator output (Vamin). Typical Value = -75. Default: 0.0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 44. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -36. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1. Default: 0 - :kh: Exciter field current limiter gain (Kh). Typical Value = 92. Default: 0.0 - :tj: Exciter field current limiter time constant (Tj). Typical Value = 0.02. Default: 0 - :th: Exciter field current limiter time constant (Th). Typical Value = 0.08. Default: 0 - :vfelim: Exciter field current limit reference (Vfelim). Typical Value = 19. Default: 0.0 - :vhmax: Maximum field current limiter signal reference (Vhmax). Typical Value = 75. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.173. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 1.91. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1.6. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 7.4. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0.214. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 5.55. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 0.044. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tk': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'tj': [cgmesProfile.DY.value, ], - 'th': [cgmesProfile.DY.value, ], - 'vfelim': [cgmesProfile.DY.value, ], - 'vhmax': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ks = 0.0, ta = 0, tk = 0, tb = 0, tc = 0, vamax = 0.0, vamin = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, kh = 0.0, tj = 0, th = 0, vfelim = 0.0, vhmax = 0.0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ks = ks - self.ta = ta - self.tk = tk - self.tb = tb - self.tc = tc - self.vamax = vamax - self.vamin = vamin - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.kh = kh - self.tj = tj - self.th = th - self.vfelim = vfelim - self.vhmax = vhmax - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcAC6A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAC8B.py b/cimpy/cgmes_v2_4_15/ExcAC8B.py deleted file mode 100644 index dbf861a6..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAC8B.py +++ /dev/null @@ -1,109 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAC8B(ExcitationSystemDynamics): - ''' - Modified IEEE AC8B alternator-supplied rectifier excitation system with speed input and input limiter. - - :inlim: Input limiter indicator. true = input limiter Vimax and Vimin is considered false = input limiter Vimax and Vimin is not considered. Typical Value = true. Default: False - :ka: Voltage regulator gain (Ka). Typical Value = 1. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.55. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 1.1. Default: 0.0 - :kdr: Voltage regulator derivative gain (Kdr). Typical Value = 10. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :kir: Voltage regulator integral gain (Kir). Typical Value = 5. Default: 0.0 - :kpr: Voltage regulator proportional gain (Kpr). Typical Value = 80. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :pidlim: PID limiter indicator. true = input limiter Vpidmax and Vpidmin is considered false = input limiter Vpidmax and Vpidmin is not considered. Typical Value = true. Default: False - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve1]). Typical Value = 0.3. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve2]). Typical Value = 3. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0. Default: 0 - :tdr: Lag time constant (Tdr). Typical Value = 0.1. Default: 0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.2. Default: 0 - :telim: Selector for the limiter on the block [1/sTe]. See diagram for meaning of true and false. Typical Value = false. Default: False - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve) equals V (Ve1). Typical Value = 6.5. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 9. Default: 0.0 - :vemin: Minimum exciter voltage output (Vemin). Typical Value = 0. Default: 0.0 - :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 6. Default: 0.0 - :vimax: Input signal maximum (Vimax). Typical Value = 35. Default: 0.0 - :vimin: Input signal minimum (Vimin). Typical Value = -10. Default: 0.0 - :vpidmax: PID maximum controller output (Vpidmax). Typical Value = 35. Default: 0.0 - :vpidmin: PID minimum controller output (Vpidmin). Typical Value = -10. Default: 0.0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 35. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 - :vtmult: Multiply by generator`s terminal voltage indicator. true =the limits Vrmax and Vrmin are multiplied by the generator`s terminal voltage to represent a thyristor power stage fed from the generator terminals false = limits are not multiplied by generator`s terminal voltage. Typical Value = false. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inlim': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'kdr': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'kir': [cgmesProfile.DY.value, ], - 'kpr': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'pidlim': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tdr': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'telim': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'vpidmax': [cgmesProfile.DY.value, ], - 'vpidmin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'vtmult': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, inlim = False, ka = 0.0, kc = 0.0, kd = 0.0, kdr = 0.0, ke = 0.0, kir = 0.0, kpr = 0.0, ks = 0.0, pidlim = False, seve1 = 0.0, seve2 = 0.0, ta = 0, tdr = 0, te = 0, telim = False, ve1 = 0.0, ve2 = 0.0, vemin = 0.0, vfemax = 0.0, vimax = 0.0, vimin = 0.0, vpidmax = 0.0, vpidmin = 0.0, vrmax = 0.0, vrmin = 0.0, vtmult = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inlim = inlim - self.ka = ka - self.kc = kc - self.kd = kd - self.kdr = kdr - self.ke = ke - self.kir = kir - self.kpr = kpr - self.ks = ks - self.pidlim = pidlim - self.seve1 = seve1 - self.seve2 = seve2 - self.ta = ta - self.tdr = tdr - self.te = te - self.telim = telim - self.ve1 = ve1 - self.ve2 = ve2 - self.vemin = vemin - self.vfemax = vfemax - self.vimax = vimax - self.vimin = vimin - self.vpidmax = vpidmax - self.vpidmin = vpidmin - self.vrmax = vrmax - self.vrmin = vrmin - self.vtmult = vtmult - - def __str__(self): - str = 'class=ExcAC8B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcANS.py b/cimpy/cgmes_v2_4_15/ExcANS.py deleted file mode 100644 index 7711af93..00000000 --- a/cimpy/cgmes_v2_4_15/ExcANS.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcANS(ExcitationSystemDynamics): - ''' - Italian excitation system. It represents static field voltage or excitation current feedback excitation system. - - :k3: AVR gain (K). Typical Value = 1000. Default: 0.0 - :k2: Exciter gain (K). Typical Value = 20. Default: 0.0 - :kce: Ceiling factor (K). Typical Value = 1. Default: 0.0 - :t3: Time constant (T). Typical Value = 1.6. Default: 0 - :t2: Time constant (T). Typical Value = 0.05. Default: 0 - :t1: Time constant (T). Typical Value = 20. Default: 0 - :blint: Governor Control Flag (BLINT). 0 = lead-lag regulator 1 = proportional integral regulator. Typical Value = 0. Default: 0 - :kvfif: Rate feedback signal flag (K). 0 = output voltage of the exciter 1 = exciter field current. Typical Value = 0. Default: 0 - :ifmn: Minimum exciter current (I). Typical Value = -5.2. Default: 0.0 - :ifmx: Maximum exciter current (I). Typical Value = 6.5. Default: 0.0 - :vrmn: Maximum AVR output (V). Typical Value = -5.2. Default: 0.0 - :vrmx: Minimum AVR output (V). Typical Value = 6.5. Default: 0.0 - :krvecc: Feedback enabling (K). 0 = Open loop control 1 = Closed loop control. Typical Value = 1. Default: 0 - :tb: Exciter time constant (T). Typical Value = 0.04. Default: 0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'kce': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'blint': [cgmesProfile.DY.value, ], - 'kvfif': [cgmesProfile.DY.value, ], - 'ifmn': [cgmesProfile.DY.value, ], - 'ifmx': [cgmesProfile.DY.value, ], - 'vrmn': [cgmesProfile.DY.value, ], - 'vrmx': [cgmesProfile.DY.value, ], - 'krvecc': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, k3 = 0.0, k2 = 0.0, kce = 0.0, t3 = 0, t2 = 0, t1 = 0, blint = 0, kvfif = 0, ifmn = 0.0, ifmx = 0.0, vrmn = 0.0, vrmx = 0.0, krvecc = 0, tb = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k3 = k3 - self.k2 = k2 - self.kce = kce - self.t3 = t3 - self.t2 = t2 - self.t1 = t1 - self.blint = blint - self.kvfif = kvfif - self.ifmn = ifmn - self.ifmx = ifmx - self.vrmn = vrmn - self.vrmx = vrmx - self.krvecc = krvecc - self.tb = tb - - def __str__(self): - str = 'class=ExcANS\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR1.py b/cimpy/cgmes_v2_4_15/ExcAVR1.py deleted file mode 100644 index 7a0d3a01..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR1.py +++ /dev/null @@ -1,64 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR1(ExcitationSystemDynamics): - ''' - Italian excitation system corresponding to IEEE (1968) Type 1 Model. It represents exciter dynamo and electromechanical regulator. - - :ka: AVR gain (K). Typical Value = 500. Default: 0.0 - :vrmn: Maximum AVR output (V). Typical Value = -6. Default: 0.0 - :vrmx: Minimum AVR output (V). Typical Value = 7. Default: 0.0 - :ta: AVR time constant (T). Typical Value = 0.2. Default: 0 - :tb: AVR time constant (T). Typical Value = 0. Default: 0 - :te: Exciter time constant (T). Typical Value = 1. Default: 0 - :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 - :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 - :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 - :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 - :kf: Rate feedback gain (K). Typical Value = 0.02. Default: 0.0 - :tf: Rate feedback time constant (T). Typical Value = 1. Default: 0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'vrmn': [cgmesProfile.DY.value, ], - 'vrmx': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'se1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'se2': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, vrmn = 0.0, vrmx = 0.0, ta = 0, tb = 0, te = 0, e1 = 0.0, se1 = 0.0, e2 = 0.0, se2 = 0.0, kf = 0.0, tf = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.vrmn = vrmn - self.vrmx = vrmx - self.ta = ta - self.tb = tb - self.te = te - self.e1 = e1 - self.se1 = se1 - self.e2 = e2 - self.se2 = se2 - self.kf = kf - self.tf = tf - - def __str__(self): - str = 'class=ExcAVR1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR2.py b/cimpy/cgmes_v2_4_15/ExcAVR2.py deleted file mode 100644 index 0912ab32..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR2.py +++ /dev/null @@ -1,67 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR2(ExcitationSystemDynamics): - ''' - Italian excitation system corresponding to IEEE (1968) Type 2 Model. It represents alternator and rotating diodes and electromechanic voltage regulators. - - :ka: AVR gain (K). Typical Value = 500. Default: 0.0 - :vrmn: Maximum AVR output (V). Typical Value = -6. Default: 0.0 - :vrmx: Minimum AVR output (V). Typical Value = 7. Default: 0.0 - :ta: AVR time constant (T). Typical Value = 0.02. Default: 0 - :tb: AVR time constant (T). Typical Value = 0. Default: 0 - :te: Exciter time constant (T). Typical Value = 1. Default: 0 - :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 - :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 - :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 - :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 - :kf: Rate feedback gain (K). Typical Value = 0.02. Default: 0.0 - :tf1: Rate feedback time constant (T). Typical Value = 1. Default: 0 - :tf2: Rate feedback time constant (T). Typical Value = 1. Default: 0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'vrmn': [cgmesProfile.DY.value, ], - 'vrmx': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'se1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'se2': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, vrmn = 0.0, vrmx = 0.0, ta = 0, tb = 0, te = 0, e1 = 0.0, se1 = 0.0, e2 = 0.0, se2 = 0.0, kf = 0.0, tf1 = 0, tf2 = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.vrmn = vrmn - self.vrmx = vrmx - self.ta = ta - self.tb = tb - self.te = te - self.e1 = e1 - self.se1 = se1 - self.e2 = e2 - self.se2 = se2 - self.kf = kf - self.tf1 = tf1 - self.tf2 = tf2 - - def __str__(self): - str = 'class=ExcAVR2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR3.py b/cimpy/cgmes_v2_4_15/ExcAVR3.py deleted file mode 100644 index f111b896..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR3.py +++ /dev/null @@ -1,64 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR3(ExcitationSystemDynamics): - ''' - Italian excitation system. It represents exciter dynamo and electric regulator. - - :ka: AVR gain (K). Typical Value = 3000. Default: 0.0 - :vrmn: Maximum AVR output (V). Typical Value = -7.5. Default: 0.0 - :vrmx: Minimum AVR output (V). Typical Value = 7.5. Default: 0.0 - :t1: AVR time constant (T). Typical Value = 220. Default: 0 - :t2: AVR time constant (T). Typical Value = 1.6. Default: 0 - :t3: AVR time constant (T). Typical Value = 0.66. Default: 0 - :t4: AVR time constant (T). Typical Value = 0.07. Default: 0 - :te: Exciter time constant (T). Typical Value = 1. Default: 0 - :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 - :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 - :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 - :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'vrmn': [cgmesProfile.DY.value, ], - 'vrmx': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'se1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'se2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, vrmn = 0.0, vrmx = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, te = 0, e1 = 0.0, se1 = 0.0, e2 = 0.0, se2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.vrmn = vrmn - self.vrmx = vrmx - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.te = te - self.e1 = e1 - self.se1 = se1 - self.e2 = e2 - self.se2 = se2 - - def __str__(self): - str = 'class=ExcAVR3\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR4.py b/cimpy/cgmes_v2_4_15/ExcAVR4.py deleted file mode 100644 index d51d49f1..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR4.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR4(ExcitationSystemDynamics): - ''' - Italian excitation system. It represents static exciter and electric voltage regulator. - - :ka: AVR gain (K). Typical Value = 300. Default: 0.0 - :vrmn: Maximum AVR output (V). Typical Value = 0. Default: 0.0 - :vrmx: Minimum AVR output (V). Typical Value = 5. Default: 0.0 - :t1: AVR time constant (T). Typical Value = 4.8. Default: 0 - :t2: AVR time constant (T). Typical Value = 1.5. Default: 0 - :t3: AVR time constant (T). Typical Value = 0. Default: 0 - :t4: AVR time constant (T). Typical Value = 0. Default: 0 - :ke: Exciter gain (K). Typical Value = 1. Default: 0.0 - :vfmx: Maximum exciter output (V). Typical Value = 5. Default: 0.0 - :vfmn: Minimum exciter output (V). Typical Value = 0. Default: 0.0 - :kif: Exciter internal reactance (K). Typical Value = 0. Default: 0.0 - :tif: Exciter current feedback time constant (T). Typical Value = 0. Default: 0 - :t1if: Exciter current feedback time constant (T). Typical Value = 60. Default: 0 - :imul: AVR output voltage dependency selector (Imul). true = selector is connected false = selector is not connected. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'vrmn': [cgmesProfile.DY.value, ], - 'vrmx': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'vfmx': [cgmesProfile.DY.value, ], - 'vfmn': [cgmesProfile.DY.value, ], - 'kif': [cgmesProfile.DY.value, ], - 'tif': [cgmesProfile.DY.value, ], - 't1if': [cgmesProfile.DY.value, ], - 'imul': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, vrmn = 0.0, vrmx = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, ke = 0.0, vfmx = 0.0, vfmn = 0.0, kif = 0.0, tif = 0, t1if = 0, imul = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.vrmn = vrmn - self.vrmx = vrmx - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.ke = ke - self.vfmx = vfmx - self.vfmn = vfmn - self.kif = kif - self.tif = tif - self.t1if = t1if - self.imul = imul - - def __str__(self): - str = 'class=ExcAVR4\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR5.py b/cimpy/cgmes_v2_4_15/ExcAVR5.py deleted file mode 100644 index c2a3fc76..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR5.py +++ /dev/null @@ -1,37 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR5(ExcitationSystemDynamics): - ''' - Manual excitation control with field circuit resistance. This model can be used as a very simple representation of manual voltage control. - - :ka: Gain (Ka). Default: 0.0 - :ta: Time constant (Ta). Default: 0 - :rex: Effective Output Resistance (Rex). Rex represents the effective output resistance seen by the excitation system. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'rex': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, rex = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.rex = rex - - def __str__(self): - str = 'class=ExcAVR5\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcAVR7.py b/cimpy/cgmes_v2_4_15/ExcAVR7.py deleted file mode 100644 index 6ffd4ae9..00000000 --- a/cimpy/cgmes_v2_4_15/ExcAVR7.py +++ /dev/null @@ -1,91 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcAVR7(ExcitationSystemDynamics): - ''' - IVO excitation system. - - :k1: Gain (K1). Typical Value = 1. Default: 0.0 - :a1: Lead coefficient (A1). Typical Value = 0.5. Default: 0.0 - :a2: Lag coefficient (A2). Typical Value = 0.5. Default: 0.0 - :t1: Lead time constant (T1). Typical Value = 0.05. Default: 0 - :t2: Lag time constant (T2). Typical Value = 0.1. Default: 0 - :vmax1: Lead-lag max. limit (Vmax1). Typical Value = 5. Default: 0.0 - :vmin1: Lead-lag min. limit (Vmin1). Typical Value = -5. Default: 0.0 - :k3: Gain (K3). Typical Value = 3. Default: 0.0 - :a3: Lead coefficient (A3). Typical Value = 0.5. Default: 0.0 - :a4: Lag coefficient (A4). Typical Value = 0.5. Default: 0.0 - :t3: Lead time constant (T3). Typical Value = 0.1. Default: 0 - :t4: Lag time constant (T4). Typical Value = 0.1. Default: 0 - :vmax3: Lead-lag max. limit (Vmax3). Typical Value = 5. Default: 0.0 - :vmin3: Lead-lag min. limit (Vmin3). Typical Value = -5. Default: 0.0 - :k5: Gain (K5). Typical Value = 1. Default: 0.0 - :a5: Lead coefficient (A5). Typical Value = 0.5. Default: 0.0 - :a6: Lag coefficient (A6). Typical Value = 0.5. Default: 0.0 - :t5: Lead time constant (T5). Typical Value = 0.1. Default: 0 - :t6: Lag time constant (T6). Typical Value = 0.1. Default: 0 - :vmax5: Lead-lag max. limit (Vmax5). Typical Value = 5. Default: 0.0 - :vmin5: Lead-lag min. limit (Vmin5). Typical Value = -2. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'a1': [cgmesProfile.DY.value, ], - 'a2': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'vmax1': [cgmesProfile.DY.value, ], - 'vmin1': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'a3': [cgmesProfile.DY.value, ], - 'a4': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'vmax3': [cgmesProfile.DY.value, ], - 'vmin3': [cgmesProfile.DY.value, ], - 'k5': [cgmesProfile.DY.value, ], - 'a5': [cgmesProfile.DY.value, ], - 'a6': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'vmax5': [cgmesProfile.DY.value, ], - 'vmin5': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, k1 = 0.0, a1 = 0.0, a2 = 0.0, t1 = 0, t2 = 0, vmax1 = 0.0, vmin1 = 0.0, k3 = 0.0, a3 = 0.0, a4 = 0.0, t3 = 0, t4 = 0, vmax3 = 0.0, vmin3 = 0.0, k5 = 0.0, a5 = 0.0, a6 = 0.0, t5 = 0, t6 = 0, vmax5 = 0.0, vmin5 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k1 = k1 - self.a1 = a1 - self.a2 = a2 - self.t1 = t1 - self.t2 = t2 - self.vmax1 = vmax1 - self.vmin1 = vmin1 - self.k3 = k3 - self.a3 = a3 - self.a4 = a4 - self.t3 = t3 - self.t4 = t4 - self.vmax3 = vmax3 - self.vmin3 = vmin3 - self.k5 = k5 - self.a5 = a5 - self.a6 = a6 - self.t5 = t5 - self.t6 = t6 - self.vmax5 = vmax5 - self.vmin5 = vmin5 - - def __str__(self): - str = 'class=ExcAVR7\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcBBC.py b/cimpy/cgmes_v2_4_15/ExcBBC.py deleted file mode 100644 index c1b4bca4..00000000 --- a/cimpy/cgmes_v2_4_15/ExcBBC.py +++ /dev/null @@ -1,61 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcBBC(ExcitationSystemDynamics): - ''' - Transformer fed static excitation system (static with ABB regulator). This model represents a static excitation system in which a gated thyristor bridge fed by a transformer at the main generator terminals feeds the main generator directly. - - :t1: Controller time constant (T1). Typical Value = 6. Default: 0 - :t2: Controller time constant (T2). Typical Value = 1. Default: 0 - :t3: Lead/lag time constant (T3). Typical Value = 0.05. Default: 0 - :t4: Lead/lag time constant (T4). Typical Value = 0.01. Default: 0 - :k: Steady state gain (K). Typical Value = 300. Default: 0.0 - :vrmin: Minimum control element output (Vrmin). Typical Value = -5. Default: 0.0 - :vrmax: Maximum control element output (Vrmax). Typical Value = 5. Default: 0.0 - :efdmin: Minimum open circuit exciter voltage (Efdmin). Typical Value = -5. Default: 0.0 - :efdmax: Maximum open circuit exciter voltage (Efdmax). Typical Value = 5. Default: 0.0 - :xe: Effective excitation transformer reactance (Xe). Typical Value = 0.05. Default: 0.0 - :switch: Supplementary signal routing selector (switch). true = Vs connected to 3rd summing point false = Vs connected to 1st summing point (see diagram). Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'xe': [cgmesProfile.DY.value, ], - 'switch': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, t1 = 0, t2 = 0, t3 = 0, t4 = 0, k = 0.0, vrmin = 0.0, vrmax = 0.0, efdmin = 0.0, efdmax = 0.0, xe = 0.0, switch = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.k = k - self.vrmin = vrmin - self.vrmax = vrmax - self.efdmin = efdmin - self.efdmax = efdmax - self.xe = xe - self.switch = switch - - def __str__(self): - str = 'class=ExcBBC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcCZ.py b/cimpy/cgmes_v2_4_15/ExcCZ.py deleted file mode 100644 index a7187072..00000000 --- a/cimpy/cgmes_v2_4_15/ExcCZ.py +++ /dev/null @@ -1,58 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcCZ(ExcitationSystemDynamics): - ''' - Czech Proportion/Integral Exciter. - - :kp: Regulator proportional gain (Kp). Default: 0.0 - :tc: Regulator integral time constant (Tc). Default: 0 - :vrmax: Voltage regulator maximum limit (Vrmax). Default: 0.0 - :vrmin: Voltage regulator minimum limit (Vrmin). Default: 0.0 - :ka: Regulator gain (Ka). Default: 0.0 - :ta: Regulator time constant (Ta). Default: 0 - :ke: Exciter constant related to self-excited field (Ke). Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Default: 0 - :efdmax: Exciter output maximum limit (Efdmax). Default: 0.0 - :efdmin: Exciter output minimum limit (Efdmin). Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kp = 0.0, tc = 0, vrmax = 0.0, vrmin = 0.0, ka = 0.0, ta = 0, ke = 0.0, te = 0, efdmax = 0.0, efdmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kp = kp - self.tc = tc - self.vrmax = vrmax - self.vrmin = vrmin - self.ka = ka - self.ta = ta - self.ke = ke - self.te = te - self.efdmax = efdmax - self.efdmin = efdmin - - def __str__(self): - str = 'class=ExcCZ\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcDC1A.py b/cimpy/cgmes_v2_4_15/ExcDC1A.py deleted file mode 100644 index 27759c52..00000000 --- a/cimpy/cgmes_v2_4_15/ExcDC1A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcDC1A(ExcitationSystemDynamics): - ''' - Modified IEEE DC1A direct current commutator exciter with speed input and without underexcitation limiters (UEL) inputs. - - :ka: Voltage regulator gain (Ka). Typical Value = 46. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.06. Default: 0 - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -0.9. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 0. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.46. Default: 0 - :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 3.1. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.33. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 2.3. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.33. Default: 0.0 - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False - :efdmin: Minimum voltage exciter output limiter (Efdmin). Typical Value = -99. Default: 0.0 - :edfmax: Maximum voltage exciter output limiter (Efdmax). Typical Value = 99. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'edfmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ks = 0.0, ta = 0, tb = 0, tc = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, exclim = False, efdmin = 0.0, edfmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ks = ks - self.ta = ta - self.tb = tb - self.tc = tc - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.exclim = exclim - self.efdmin = efdmin - self.edfmax = edfmax - - def __str__(self): - str = 'class=ExcDC1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcDC2A.py b/cimpy/cgmes_v2_4_15/ExcDC2A.py deleted file mode 100644 index 6e5a3085..00000000 --- a/cimpy/cgmes_v2_4_15/ExcDC2A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcDC2A(ExcitationSystemDynamics): - ''' - Modified IEEE DC2A direct current commutator exciters with speed input, one more leg block in feedback loop and without underexcitation limiters (UEL) inputs. DC type 2 excitation system model with added speed multiplier, added lead-lag, and voltage-dependent limits. - - :ka: Voltage regulator gain (Ka). Typical Value = 300. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.01. Default: 0 - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 4.95. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.9. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). If Ke is entered as zero, the model calculates an effective value of Ke such that the initial condition value of Vr is zero. The zero value of Ke is not changed. If Ke is entered as non-zero, its value is used directly, without change. Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.33. Default: 0 - :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.675. Default: 0 - :tf1: Excitation control system stabilizer time constant (Tf1). Typical Value = 0. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 3.05. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.279. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 2.29. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]). Typical Value = 0.117. Default: 0.0 - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False - :vtlim: (Vtlim). true = limiter at the block [Ka/(1+sTa)] is dependent on Vt false = limiter at the block is not dependent on Vt. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - 'vtlim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ks = 0.0, ta = 0, tb = 0, tc = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, tf1 = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, exclim = False, vtlim = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ks = ks - self.ta = ta - self.tb = tb - self.tc = tc - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.tf1 = tf1 - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.exclim = exclim - self.vtlim = vtlim - - def __str__(self): - str = 'class=ExcDC2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcDC3A.py b/cimpy/cgmes_v2_4_15/ExcDC3A.py deleted file mode 100644 index 4bb5e52d..00000000 --- a/cimpy/cgmes_v2_4_15/ExcDC3A.py +++ /dev/null @@ -1,76 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcDC3A(ExcitationSystemDynamics): - ''' - This is modified IEEE DC3A direct current commutator exciters with speed input, and death band. DC old type 4. - - :trh: Rheostat travel time (Trh). Typical Value = 20. Default: 0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :kr: Death band (Kr). If Kr is not zero, the voltage regulator input changes at a constant rate if Verr > Kr or Verr < -Kr as per the IEEE (1968) Type 4 model. If Kr is zero, the error signal drives the voltage regulator continuously as per the IEEE (1980) DC3 and IEEE (1992, 2005) DC3A models. Typical Value = 0. Default: 0.0 - :kv: Fast raise/lower contact setting (Kv). Typical Value = 0.05. Default: 0.0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.83. Default: 0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 2.6. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.1. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 3.45. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]). Typical Value = 0.35. Default: 0.0 - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero not applied to integrator output. Typical Value = true. Default: False - :edfmax: Maximum voltage exciter output limiter (Efdmax). Typical Value = 99. Default: 0.0 - :efdmin: Minimum voltage exciter output limiter (Efdmin). Typical Value = -99. Default: 0.0 - :efdlim: (Efdlim). true = exciter output limiter is active false = exciter output limiter not active. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'trh': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'kr': [cgmesProfile.DY.value, ], - 'kv': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - 'edfmax': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'efdlim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, trh = 0, ks = 0.0, kr = 0.0, kv = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, ke = 0.0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, exclim = False, edfmax = 0.0, efdmin = 0.0, efdlim = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.trh = trh - self.ks = ks - self.kr = kr - self.kv = kv - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.ke = ke - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.exclim = exclim - self.edfmax = edfmax - self.efdmin = efdmin - self.efdlim = efdlim - - def __str__(self): - str = 'class=ExcDC3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcDC3A1.py b/cimpy/cgmes_v2_4_15/ExcDC3A1.py deleted file mode 100644 index 342b5ae7..00000000 --- a/cimpy/cgmes_v2_4_15/ExcDC3A1.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcDC3A1(ExcitationSystemDynamics): - ''' - This is modified old IEEE type 3 excitation system. - - :ka: Voltage regulator gain (Ka). Typical Value = 300. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.01. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.83. Default: 0 - :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.675. Default: 0 - :kp: Potential circuit gain coefficient (Kp). Typical Value = 4.37. Default: 0.0 - :ki: Potential circuit gain coefficient (Ki). Typical Value = 4.83. Default: 0.0 - :vbmax: Available exciter voltage limiter (Vbmax). Typical Value = 11.63. Default: 0.0 - :exclim: (exclim). true = lower limit of zero is applied to integrator output false = lower limit of zero not applied to integrator output. Typical Value = true. Default: False - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :vb1max: Available exciter voltage limiter (Vb1max). Typical Value = 11.63. Default: 0.0 - :vblim: Vb limiter indicator. true = exciter Vbmax limiter is active false = Vb1max is active. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'vbmax': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'vb1max': [cgmesProfile.DY.value, ], - 'vblim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, te = 0, kf = 0.0, tf = 0, kp = 0.0, ki = 0.0, vbmax = 0.0, exclim = False, ke = 0.0, vb1max = 0.0, vblim = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.kf = kf - self.tf = tf - self.kp = kp - self.ki = ki - self.vbmax = vbmax - self.exclim = exclim - self.ke = ke - self.vb1max = vb1max - self.vblim = vblim - - def __str__(self): - str = 'class=ExcDC3A1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcELIN1.py b/cimpy/cgmes_v2_4_15/ExcELIN1.py deleted file mode 100644 index 163e48cf..00000000 --- a/cimpy/cgmes_v2_4_15/ExcELIN1.py +++ /dev/null @@ -1,73 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcELIN1(ExcitationSystemDynamics): - ''' - Static PI transformer fed excitation system: ELIN (VATECH) - simplified model. This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. A power system stabilizer with power input is included in the model. - - :tfi: Current transducer time constant (Tfi). Typical Value = 0. Default: 0 - :tnu: Controller reset time constant (Tnu). Typical Value = 2. Default: 0 - :vpu: Voltage controller proportional gain (Vpu). Typical Value = 34.5. Default: 0.0 - :vpi: Current controller gain (Vpi). Typical Value = 12.45. Default: 0.0 - :vpnf: Controller follow up gain (Vpnf). Typical Value = 2. Default: 0.0 - :dpnf: Controller follow up dead band (Dpnf). Typical Value = 0. Default: 0.0 - :tsw: Stabilizer parameters (Tsw). Typical Value = 3. Default: 0 - :efmin: Minimum open circuit excitation voltage (Efmin). Typical Value = -5. Default: 0.0 - :efmax: Maximum open circuit excitation voltage (Efmax). Typical Value = 5. Default: 0.0 - :xe: Excitation transformer effective reactance (Xe) (>=0). Xe represents the regulation of the transformer/rectifier unit. Typical Value = 0.06. Default: 0.0 - :ks1: Stabilizer Gain 1 (Ks1). Typical Value = 0. Default: 0.0 - :ks2: Stabilizer Gain 2 (Ks2). Typical Value = 0. Default: 0.0 - :ts1: Stabilizer Phase Lag Time Constant (Ts1). Typical Value = 1. Default: 0 - :ts2: Stabilizer Filter Time Constant (Ts2). Typical Value = 1. Default: 0 - :smax: Stabilizer Limit Output (smax). Typical Value = 0.1. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tfi': [cgmesProfile.DY.value, ], - 'tnu': [cgmesProfile.DY.value, ], - 'vpu': [cgmesProfile.DY.value, ], - 'vpi': [cgmesProfile.DY.value, ], - 'vpnf': [cgmesProfile.DY.value, ], - 'dpnf': [cgmesProfile.DY.value, ], - 'tsw': [cgmesProfile.DY.value, ], - 'efmin': [cgmesProfile.DY.value, ], - 'efmax': [cgmesProfile.DY.value, ], - 'xe': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - 'ks2': [cgmesProfile.DY.value, ], - 'ts1': [cgmesProfile.DY.value, ], - 'ts2': [cgmesProfile.DY.value, ], - 'smax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tfi = 0, tnu = 0, vpu = 0.0, vpi = 0.0, vpnf = 0.0, dpnf = 0.0, tsw = 0, efmin = 0.0, efmax = 0.0, xe = 0.0, ks1 = 0.0, ks2 = 0.0, ts1 = 0, ts2 = 0, smax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tfi = tfi - self.tnu = tnu - self.vpu = vpu - self.vpi = vpi - self.vpnf = vpnf - self.dpnf = dpnf - self.tsw = tsw - self.efmin = efmin - self.efmax = efmax - self.xe = xe - self.ks1 = ks1 - self.ks2 = ks2 - self.ts1 = ts1 - self.ts2 = ts2 - self.smax = smax - - def __str__(self): - str = 'class=ExcELIN1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcELIN2.py b/cimpy/cgmes_v2_4_15/ExcELIN2.py deleted file mode 100644 index 3fe927df..00000000 --- a/cimpy/cgmes_v2_4_15/ExcELIN2.py +++ /dev/null @@ -1,109 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcELIN2(ExcitationSystemDynamics): - ''' - Detailed Excitation System Model - ELIN (VATECH). This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. Power system stabilizer models used in conjunction with this excitation system model: PssELIN2, PssIEEE2B, Pss2B. - - :k1: Voltage regulator input gain (K1). Typical Value = 0. Default: 0.0 - :k1ec: Voltage regulator input limit (K1ec). Typical Value = 2. Default: 0.0 - :kd1: Voltage controller derivative gain (Kd1). Typical Value = 34.5. Default: 0.0 - :tb1: Voltage controller derivative washout time constant (Tb1). Typical Value = 12.45. Default: 0 - :pid1max: Controller follow up gain (PID1max). Typical Value = 2. Default: 0.0 - :ti1: Controller follow up dead band (Ti1). Typical Value = 0. Default: 0.0 - :iefmax2: Minimum open circuit excitation voltage (Iefmax2). Typical Value = -5. Default: 0.0 - :k2: Gain (K2). Typical Value = 5. Default: 0.0 - :ketb: Gain (Ketb). Typical Value = 0.06. Default: 0.0 - :upmax: Limiter (Upmax). Typical Value = 3. Default: 0.0 - :upmin: Limiter (Upmin). Typical Value = 0. Default: 0.0 - :te: Time constant (Te). Typical Value = 0. Default: 0 - :xp: Excitation transformer effective reactance (Xp). Typical Value = 1. Default: 0.0 - :te2: Time Constant (Te2). Typical Value = 1. Default: 0 - :ke2: Gain (Ke2). Typical Value = 0.1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1). Typical Value = 3. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 0. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 1. Default: 0.0 - :tr4: Time constant (Tr4). Typical Value = 1. Default: 0 - :k3: Gain (K3). Typical Value = 0.1. Default: 0.0 - :ti3: Time constant (Ti3). Typical Value = 3. Default: 0 - :k4: Gain (K4). Typical Value = 0. Default: 0.0 - :ti4: Time constant (Ti4). Typical Value = 0. Default: 0 - :iefmax: Limiter (Iefmax). Typical Value = 1. Default: 0.0 - :iefmin: Limiter (Iefmin). Typical Value = 1. Default: 0.0 - :efdbas: Gain (Efdbas). Typical Value = 0.1. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k1ec': [cgmesProfile.DY.value, ], - 'kd1': [cgmesProfile.DY.value, ], - 'tb1': [cgmesProfile.DY.value, ], - 'pid1max': [cgmesProfile.DY.value, ], - 'ti1': [cgmesProfile.DY.value, ], - 'iefmax2': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'ketb': [cgmesProfile.DY.value, ], - 'upmax': [cgmesProfile.DY.value, ], - 'upmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'xp': [cgmesProfile.DY.value, ], - 'te2': [cgmesProfile.DY.value, ], - 'ke2': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'tr4': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'ti3': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 'ti4': [cgmesProfile.DY.value, ], - 'iefmax': [cgmesProfile.DY.value, ], - 'iefmin': [cgmesProfile.DY.value, ], - 'efdbas': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, k1 = 0.0, k1ec = 0.0, kd1 = 0.0, tb1 = 0, pid1max = 0.0, ti1 = 0.0, iefmax2 = 0.0, k2 = 0.0, ketb = 0.0, upmax = 0.0, upmin = 0.0, te = 0, xp = 0.0, te2 = 0, ke2 = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, tr4 = 0, k3 = 0.0, ti3 = 0, k4 = 0.0, ti4 = 0, iefmax = 0.0, iefmin = 0.0, efdbas = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k1 = k1 - self.k1ec = k1ec - self.kd1 = kd1 - self.tb1 = tb1 - self.pid1max = pid1max - self.ti1 = ti1 - self.iefmax2 = iefmax2 - self.k2 = k2 - self.ketb = ketb - self.upmax = upmax - self.upmin = upmin - self.te = te - self.xp = xp - self.te2 = te2 - self.ke2 = ke2 - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - self.tr4 = tr4 - self.k3 = k3 - self.ti3 = ti3 - self.k4 = k4 - self.ti4 = ti4 - self.iefmax = iefmax - self.iefmin = iefmin - self.efdbas = efdbas - - def __str__(self): - str = 'class=ExcELIN2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcHU.py b/cimpy/cgmes_v2_4_15/ExcHU.py deleted file mode 100644 index 0f29e038..00000000 --- a/cimpy/cgmes_v2_4_15/ExcHU.py +++ /dev/null @@ -1,64 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcHU(ExcitationSystemDynamics): - ''' - Hungarian Excitation System Model, with built-in voltage transducer. - - :tr: Filter time constant (Tr). If a voltage compensator is used in conjunction with this excitation system model, Tr should be set to 0. Typical Value = 0.01. Default: 0 - :te: Major loop PI tag integration time constant (Te). Typical Value = 0.154. Default: 0 - :imin: Major loop PI tag output signal lower limit (Imin). Typical Value = 0.1. Default: 0.0 - :imax: Major loop PI tag output signal upper limit (Imax). Typical Value = 2.19. Default: 0.0 - :ae: Major loop PI tag gain factor (Ae). Typical Value = 3. Default: 0.0 - :emin: Field voltage control signal lower limit on AVR base (Emin). Typical Value = -0.866. Default: 0.0 - :emax: Field voltage control signal upper limit on AVR base (Emax). Typical Value = 0.996. Default: 0.0 - :ki: Current base conversion constant (Ki). Typical Value = 0.21428. Default: 0.0 - :ai: Minor loop PI tag gain factor (Ai). Typical Value = 22. Default: 0.0 - :ti: Minor loop PI control tag integration time constant (Ti). Typical Value = 0.01333. Default: 0 - :atr: AVR constant (Atr). Typical Value = 2.19. Default: 0.0 - :ke: Voltage base conversion constant (Ke). Typical Value = 4.666. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'imin': [cgmesProfile.DY.value, ], - 'imax': [cgmesProfile.DY.value, ], - 'ae': [cgmesProfile.DY.value, ], - 'emin': [cgmesProfile.DY.value, ], - 'emax': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'ai': [cgmesProfile.DY.value, ], - 'ti': [cgmesProfile.DY.value, ], - 'atr': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tr = 0, te = 0, imin = 0.0, imax = 0.0, ae = 0.0, emin = 0.0, emax = 0.0, ki = 0.0, ai = 0.0, ti = 0, atr = 0.0, ke = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tr = tr - self.te = te - self.imin = imin - self.imax = imax - self.ae = ae - self.emin = emin - self.emax = emax - self.ki = ki - self.ai = ai - self.ti = ti - self.atr = atr - self.ke = ke - - def __str__(self): - str = 'class=ExcHU\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py deleted file mode 100644 index 9ecf8fb9..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC1A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC1A model. The model represents the field-controlled alternator-rectifier excitation systems designated Type AC1A. These excitation systems consist of an alternator main exciter with non-controlled rectifiers. Reference: IEEE Standard 421.5-2005 Section 6.1. - - :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.2. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.38. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.18. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.1. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.14. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.03. Default: 0.0 - :vrmax: Maximum voltage regulator outputs (V). Typical Value = 6.03. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (V). Typical Value = -5.43. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0.0, ta = 0, vamax = 0.0, vamin = 0.0, te = 0, kf = 0.0, tf = 0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.te = te - self.kf = kf - self.tf = tf - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcIEEEAC1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py deleted file mode 100644 index 10152f5f..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py +++ /dev/null @@ -1,91 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC2A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC2A model. The model represents a high initial response field-controlled alternator-rectifier excitation system. The alternator main exciter is used with non-controlled rectifiers. The Type AC2A model is similar to that of Type AC1A except for the inclusion of exciter time constant compensation and exciter field current limiting elements. Reference: IEEE Standard 421.5-2005 Section 6.2. - - :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 8. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -8. Default: 0.0 - :kb: Second stage regulator gain (K). Typical Value = 25. Default: 0.0 - :vrmax: Maximum voltage regulator outputs (V). Typical Value = 105. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (V). Typical Value = -95. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.6. Default: 0 - :vfemax: Exciter field current limit reference (V). Typical Value = 4.4. Default: 0.0 - :kh: Exciter field current feedback gain (K). Typical Value = 1. Default: 0.0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.28. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.35. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.4. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.037. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.3. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.012. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'kb': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0.0, ta = 0, vamax = 0.0, vamin = 0.0, kb = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, vfemax = 0.0, kh = 0.0, kf = 0.0, tf = 0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.kb = kb - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.vfemax = vfemax - self.kh = kh - self.kf = kf - self.tf = tf - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcIEEEAC2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py deleted file mode 100644 index 1fec42bf..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py +++ /dev/null @@ -1,91 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC3A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC3A model. The model represents the field-controlled alternator-rectifier excitation systems designated Type AC3A. These excitation systems include an alternator main exciter with non-controlled rectifiers. The exciter employs self-excitation, and the voltage regulator power is derived from the exciter output voltage. Therefore, this system has an additional nonlinearity, simulated by the use of a multiplier whose inputs are the voltage regulator command signal, , and the exciter output voltage, , times . This model is applicable to excitation systems employing static voltage regulators. Reference: IEEE Standard 421.5-2005 Section 6.3. - - :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :ka: Voltage regulator gain (K). Typical Value = 45.62. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.013. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.17. Default: 0 - :vemin: Minimum exciter voltage output (V). Typical Value = 0.1. Default: 0.0 - :kr: Constant associated with regulator and alternator field power supply (K). Typical Value = 3.77. Default: 0.0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0.143. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :kn: Excitation control system stabilizer gain (K). Typical Value = 0.05. Default: 0.0 - :efdn: Value of at which feedback gain changes (E). Typical Value = 2.36. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.104. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.499. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :vfemax: Exciter field current limit reference (V). Typical Value = 16. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V(V). Typical Value = 6.24. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 1.143. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.68. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.1. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'kr': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kn': [cgmesProfile.DY.value, ], - 'efdn': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tb = 0, tc = 0, ka = 0.0, ta = 0, vamax = 0.0, vamin = 0.0, te = 0, vemin = 0.0, kr = 0.0, kf = 0.0, tf = 0, kn = 0.0, efdn = 0.0, kc = 0.0, kd = 0.0, ke = 0.0, vfemax = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tb = tb - self.tc = tc - self.ka = ka - self.ta = ta - self.vamax = vamax - self.vamin = vamin - self.te = te - self.vemin = vemin - self.kr = kr - self.kf = kf - self.tf = tf - self.kn = kn - self.efdn = efdn - self.kc = kc - self.kd = kd - self.ke = ke - self.vfemax = vfemax - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcIEEEAC3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py deleted file mode 100644 index 5de51c89..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py +++ /dev/null @@ -1,55 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC4A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC4A model. The model represents type AC4A alternator-supplied controlled-rectifier excitation system which is quite different from the other type ac systems. This high initial response excitation system utilizes a full thyristor bridge in the exciter output circuit. The voltage regulator controls the firing of the thyristor bridges. The exciter alternator uses an independent voltage regulator to control its output voltage to a constant value. These effects are not modeled; however, transient loading effects on the exciter alternator are included. Reference: IEEE Standard 421.5-2005 Section 6.4. - - :vimax: Maximum voltage regulator input limit (V). Typical Value = 10. Default: 0.0 - :vimin: Minimum voltage regulator input limit (V). Typical Value = -10. Default: 0.0 - :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 - :ka: Voltage regulator gain (K). Typical Value = 200. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.015. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 5.64. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -4.53. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, vimax = 0.0, vimin = 0.0, tc = 0, tb = 0, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, kc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vimax = vimax - self.vimin = vimin - self.tc = tc - self.tb = tb - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.kc = kc - - def __str__(self): - str = 'class=ExcIEEEAC4A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py deleted file mode 100644 index d5e49c31..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC5A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC5A model. The model represents a simplified model for brushless excitation systems. The regulator is supplied from a source, such as a permanent magnet generator, which is not affected by system disturbances. Unlike other ac models, this model uses loaded rather than open circuit exciter saturation data in the same way as it is used for the dc models. Because the model has been widely implemented by the industry, it is sometimes used to represent other types of systems when either detailed data for them are not available or simplified models are required. Reference: IEEE Standard 421.5-2005 Section 6.5. - - :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 7.3. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -7.3. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 - :tf1: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :tf2: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :tf3: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 5.6. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.86. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 4.2. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.5. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'tf3': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf1 = 0, tf2 = 0, tf3 = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf1 = tf1 - self.tf2 = tf2 - self.tf3 = tf3 - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - - def __str__(self): - str = 'class=ExcIEEEAC5A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py deleted file mode 100644 index 2c188819..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py +++ /dev/null @@ -1,94 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC6A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC6A model. The model represents field-controlled alternator-rectifier excitation systems with system-supplied electronic voltage regulators. The maximum output of the regulator, , is a function of terminal voltage, . The field current limiter included in the original model AC6A remains in the 2005 update. Reference: IEEE Standard 421.5-2005 Section 6.6. - - :ka: Voltage regulator gain (K). Typical Value = 536. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.086. Default: 0 - :tk: Voltage regulator time constant (T). Typical Value = 0.18. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 9. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 3. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 75. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -75. Default: 0.0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 44. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -36. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1. Default: 0 - :kh: Exciter field current limiter gain (K). Typical Value = 92. Default: 0.0 - :tj: Exciter field current limiter time constant (T). Typical Value = 0.02. Default: 0 - :th: Exciter field current limiter time constant (T). Typical Value = 0.08. Default: 0 - :vfelim: Exciter field current limit reference (V). Typical Value = 19. Default: 0.0 - :vhmax: Maximum field current limiter signal reference (V). Typical Value = 75. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.173. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 1.91. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1.6. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V(V). Typical Value = 7.4. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.214. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 5.55. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.044. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tk': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'tj': [cgmesProfile.DY.value, ], - 'th': [cgmesProfile.DY.value, ], - 'vfelim': [cgmesProfile.DY.value, ], - 'vhmax': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, tk = 0, tb = 0, tc = 0, vamax = 0.0, vamin = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, kh = 0.0, tj = 0, th = 0, vfelim = 0.0, vhmax = 0.0, kc = 0.0, kd = 0.0, ke = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.tk = tk - self.tb = tb - self.tc = tc - self.vamax = vamax - self.vamin = vamin - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.kh = kh - self.tj = tj - self.th = th - self.vfelim = vfelim - self.vhmax = vhmax - self.kc = kc - self.kd = kd - self.ke = ke - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcIEEEAC6A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py deleted file mode 100644 index f63e72ce..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py +++ /dev/null @@ -1,106 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC7B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC7B model. The model represents excitation systems which consist of an ac alternator with either stationary or rotating rectifiers to produce the dc field requirements. It is an upgrade to earlier ac excitation systems, which replace only the controls but retain the ac alternator and diode rectifier bridge. Reference: IEEE Standard 421.5-2005 Section 6.7. In the IEEE Standard 421.5 - 2005, the [1 / sT] block is shown as [1 / (1 + sT)], which is incorrect. - - :kpr: Voltage regulator proportional gain (K). Typical Value = 4.24. Default: 0.0 - :kir: Voltage regulator integral gain (K). Typical Value = 4.24. Default: 0.0 - :kdr: Voltage regulator derivative gain (K). Typical Value = 0. Default: 0.0 - :tdr: Lag time constant (T). Typical Value = 0. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 5.79. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -5.79. Default: 0.0 - :kpa: Voltage regulator proportional gain (K). Typical Value = 65.36. Default: 0.0 - :kia: Voltage regulator integral gain (K). Typical Value = 59.69. Default: 0.0 - :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 - :kp: Potential circuit gain coefficient (K). Typical Value = 4.96. Default: 0.0 - :kl: Exciter field voltage lower limit parameter (K). Typical Value = 10. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.1. Default: 0 - :vfemax: Exciter field current limit reference (V). Typical Value = 6.9. Default: 0.0 - :vemin: Minimum exciter voltage output (V). Typical Value = 0. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.18. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.02. Default: 0.0 - :kf1: Excitation control system stabilizer gain (K). Typical Value = 0.212. Default: 0.0 - :kf2: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 - :kf3: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V (V). Typical Value = 6.3. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.44. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.02. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.075. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpr': [cgmesProfile.DY.value, ], - 'kir': [cgmesProfile.DY.value, ], - 'kdr': [cgmesProfile.DY.value, ], - 'tdr': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kpa': [cgmesProfile.DY.value, ], - 'kia': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'kl': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'kf1': [cgmesProfile.DY.value, ], - 'kf2': [cgmesProfile.DY.value, ], - 'kf3': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kpr = 0.0, kir = 0.0, kdr = 0.0, tdr = 0, vrmax = 0.0, vrmin = 0.0, kpa = 0.0, kia = 0.0, vamax = 0.0, vamin = 0.0, kp = 0.0, kl = 0.0, te = 0, vfemax = 0.0, vemin = 0.0, ke = 0.0, kc = 0.0, kd = 0.0, kf1 = 0.0, kf2 = 0.0, kf3 = 0.0, tf = 0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpr = kpr - self.kir = kir - self.kdr = kdr - self.tdr = tdr - self.vrmax = vrmax - self.vrmin = vrmin - self.kpa = kpa - self.kia = kia - self.vamax = vamax - self.vamin = vamin - self.kp = kp - self.kl = kl - self.te = te - self.vfemax = vfemax - self.vemin = vemin - self.ke = ke - self.kc = kc - self.kd = kd - self.kf1 = kf1 - self.kf2 = kf2 - self.kf3 = kf3 - self.tf = tf - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcIEEEAC7B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py b/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py deleted file mode 100644 index 02c5f630..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEAC8B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type AC8B model. This model represents a PID voltage regulator with either a brushless exciter or dc exciter. The AVR in this model consists of PID control, with separate constants for the proportional (), integral (), and derivative () gains. The representation of the brushless exciter (, , , , ) is similar to the model Type AC2A. The Type AC8B model can be used to represent static voltage regulators applied to brushless excitation systems. Digitally based voltage regulators feeding dc rotating main exciters can be represented with the AC Type AC8B model with the parameters and set to 0. For thyristor power stages fed from the generator terminals, the limits and should be a function of terminal voltage: * and * . Reference: IEEE Standard 421.5-2005 Section 6.8. - - :kpr: Voltage regulator proportional gain (K). Typical Value = 80. Default: 0.0 - :kir: Voltage regulator integral gain (K). Typical Value = 5. Default: 0.0 - :kdr: Voltage regulator derivative gain (K). Typical Value = 10. Default: 0.0 - :tdr: Lag time constant (T). Typical Value = 0.1. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 35. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = 0. Default: 0.0 - :ka: Voltage regulator gain (K). Typical Value = 1. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.2. Default: 0 - :vfemax: Exciter field current limit reference (V). Typical Value = 6. Default: 0.0 - :vemin: Minimum exciter voltage output (V). Typical Value = 0. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.55. Default: 0.0 - :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 1.1. Default: 0.0 - :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V (V). Typical Value = 6.5. Default: 0.0 - :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.3. Default: 0.0 - :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 9. Default: 0.0 - :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 3. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpr': [cgmesProfile.DY.value, ], - 'kir': [cgmesProfile.DY.value, ], - 'kdr': [cgmesProfile.DY.value, ], - 'tdr': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vfemax': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 've1': [cgmesProfile.DY.value, ], - 'seve1': [cgmesProfile.DY.value, ], - 've2': [cgmesProfile.DY.value, ], - 'seve2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kpr = 0.0, kir = 0.0, kdr = 0.0, tdr = 0, vrmax = 0.0, vrmin = 0.0, ka = 0.0, ta = 0, te = 0, vfemax = 0.0, vemin = 0.0, ke = 0.0, kc = 0.0, kd = 0.0, ve1 = 0.0, seve1 = 0.0, ve2 = 0.0, seve2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpr = kpr - self.kir = kir - self.kdr = kdr - self.tdr = tdr - self.vrmax = vrmax - self.vrmin = vrmin - self.ka = ka - self.ta = ta - self.te = te - self.vfemax = vfemax - self.vemin = vemin - self.ke = ke - self.kc = kc - self.kd = kd - self.ve1 = ve1 - self.seve1 = seve1 - self.ve2 = ve2 - self.seve2 = seve2 - - def __str__(self): - str = 'class=ExcIEEEAC8B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py b/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py deleted file mode 100644 index 2a915328..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py +++ /dev/null @@ -1,76 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEDC1A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type DC1A model. This model represents field-controlled dc commutator exciters with continuously acting voltage regulators (especially the direct-acting rheostatic, rotating amplifier, and magnetic amplifier types). Because this model has been widely implemented by the industry, it is sometimes used to represent other types of systems when detailed data for them are not available or when a simplified model is required. Reference: IEEE Standard 421.5-2005 Section 5.1. - - :ka: Voltage regulator gain (K). Typical Value = 46. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.06. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -0.9. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 0. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.46. Default: 0 - :kf: Excitation control system stabilizer gain (K). Typical Value = 0.1. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.1. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.33. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.3. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.1. Default: 0.0 - :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical Value = true. Default: False - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, tb = 0, tc = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, uelin = False, exclim = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.tb = tb - self.tc = tc - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.uelin = uelin - self.exclim = exclim - - def __str__(self): - str = 'class=ExcIEEEDC1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py b/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py deleted file mode 100644 index b38cee59..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py +++ /dev/null @@ -1,76 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEDC2A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type DC2A model. This model represents represent field-controlled dc commutator exciters with continuously acting voltage regulators having supplies obtained from the generator or auxiliary bus. It differs from the Type DC1A model only in the voltage regulator output limits, which are now proportional to terminal voltage . It is representative of solid-state replacements for various forms of older mechanical and rotating amplifier regulating equipment connected to dc commutator exciters. Reference: IEEE Standard 421.5-2005 Section 5.2. - - :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.05. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.29. Default: 0.0 - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. Typical Value = - 999 which means that there is no limit applied. Default: 0.0 - :ka: Voltage regulator gain (K). Typical Value = 300. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :kf: Excitation control system stabilizer gain (K). Typical Value = 0.1. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.279. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.117. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.01. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.33. Default: 0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 0.675. Default: 0 - :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical Value = true. Default: False - :vrmax: Maximum voltage regulator output (V). Typical Value = 4.95. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -4.9. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, efd1 = 0.0, efd2 = 0.0, exclim = 0.0, ka = 0.0, ke = 0.0, kf = 0.0, seefd1 = 0.0, seefd2 = 0.0, ta = 0, tb = 0, tc = 0, te = 0, tf = 0, uelin = False, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.efd1 = efd1 - self.efd2 = efd2 - self.exclim = exclim - self.ka = ka - self.ke = ke - self.kf = kf - self.seefd1 = seefd1 - self.seefd2 = seefd2 - self.ta = ta - self.tb = tb - self.tc = tc - self.te = te - self.tf = tf - self.uelin = uelin - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcIEEEDC2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py b/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py deleted file mode 100644 index 1302a51d..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py +++ /dev/null @@ -1,61 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEDC3A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type DC3A model. This model represents represent older systems, in particular those dc commutator exciters with non-continuously acting regulators that were commonly used before the development of the continuously acting varieties. These systems respond at basically two different rates, depending upon the magnitude of voltage error. For small errors, adjustment is made periodically with a signal to a motor-operated rheostat. Larger errors cause resistors to be quickly shorted or inserted and a strong forcing signal applied to the exciter. Continuous motion of the motor-operated rheostat occurs for these larger error signals, even though it is bypassed by contactor action. Reference: IEEE Standard 421.5-2005 Section 5.3. - - :trh: Rheostat travel time (T). Typical Value = 20. Default: 0 - :kv: Fast raise/lower contact setting (K). Typical Value = 0.05. Default: 0.0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = 0. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.5. Default: 0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 0.05. Default: 0.0 - :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.375. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.267. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.15. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.068. Default: 0.0 - :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'trh': [cgmesProfile.DY.value, ], - 'kv': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'exclim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, trh = 0, kv = 0.0, vrmax = 0.0, vrmin = 0.0, te = 0, ke = 0.0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, exclim = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.trh = trh - self.kv = kv - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.ke = ke - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.exclim = exclim - - def __str__(self): - str = 'class=ExcIEEEDC3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py b/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py deleted file mode 100644 index 7584e07c..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py +++ /dev/null @@ -1,85 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEDC4B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type DC4B model. These excitation systems utilize a field-controlled dc commutator exciter with a continuously acting voltage regulator having supplies obtained from the generator or auxiliary bus. Reference: IEEE Standard 421.5-2005 Section 5.4. - - :ka: Voltage regulator gain (K). Typical Value = 1. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.2. Default: 0 - :kp: Regulator proportional gain (K). Typical Value = 20. Default: 0.0 - :ki: Regulator integral gain (K). Typical Value = 20. Default: 0.0 - :kd: Regulator derivative gain (K). Typical Value = 20. Default: 0.0 - :td: Regulator derivative filter time constant(T). Typical Value = 0.01. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 2.7. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -0.9. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 - :kf: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 1.75. Default: 0.0 - :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.08. Default: 0.0 - :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.33. Default: 0.0 - :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.27. Default: 0.0 - :vemin: Minimum exciter voltage output(V). Typical Value = 0. Default: 0.0 - :oelin: OEL input (OELin). true = LV gate false = subtract from error signal. Typical Value = true. Default: False - :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 'seefd1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 'seefd2': [cgmesProfile.DY.value, ], - 'vemin': [cgmesProfile.DY.value, ], - 'oelin': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, kp = 0.0, ki = 0.0, kd = 0.0, td = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, efd1 = 0.0, seefd1 = 0.0, efd2 = 0.0, seefd2 = 0.0, vemin = 0.0, oelin = False, uelin = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.kp = kp - self.ki = ki - self.kd = kd - self.td = td - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.efd1 = efd1 - self.seefd1 = seefd1 - self.efd2 = efd2 - self.seefd2 = seefd2 - self.vemin = vemin - self.oelin = oelin - self.uelin = uelin - - def __str__(self): - str = 'class=ExcIEEEDC4B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py b/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py deleted file mode 100644 index 29851ab1..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py +++ /dev/null @@ -1,85 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST1A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST1A model. This model represents systems in which excitation power is supplied through a transformer from the generator terminals (or the unit's auxiliary bus) and is regulated by a controlled rectifier. The maximum exciter voltage available from such systems is directly related to the generator terminal voltage. Reference: IEEE Standard 421.5-2005 Section 7.1. - - :ilr: Exciter output current limit reference (I). Typical Value = 0. Default: 0.0 - :ka: Voltage regulator gain (K). Typical Value = 190. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.08. Default: 0.0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0. Default: 0.0 - :klr: Exciter output current limiter gain (K). Typical Value = 0. Default: 0.0 - :pssin: Selector of the Power System Stabilizer (PSS) input (PSSin). true = PSS input (Vs) added to error signal false = PSS input (Vs) added to voltage regulator output. Typical Value = true. Default: False - :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 - :tb1: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 - :tc1: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :uelin: Selector of the connection of the UEL input (UELin). Typical Value = ignoreUELsignal. Default: None - :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 - :vimax: Maximum voltage regulator input limit (V). Typical Value = 999. Default: 0.0 - :vimin: Minimum voltage regulator input limit (V). Typical Value = -999. Default: 0.0 - :vrmax: Maximum voltage regulator outputs (V). Typical Value = 7.8. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (V). Typical Value = -6.7. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ilr': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'klr': [cgmesProfile.DY.value, ], - 'pssin': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tb1': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tc1': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ilr = 0.0, ka = 0.0, kc = 0.0, kf = 0.0, klr = 0.0, pssin = False, ta = 0, tb = 0, tb1 = 0, tc = 0, tc1 = 0, tf = 0, uelin = None, vamax = 0.0, vamin = 0.0, vimax = 0.0, vimin = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ilr = ilr - self.ka = ka - self.kc = kc - self.kf = kf - self.klr = klr - self.pssin = pssin - self.ta = ta - self.tb = tb - self.tb1 = tb1 - self.tc = tc - self.tc1 = tc1 - self.tf = tf - self.uelin = uelin - self.vamax = vamax - self.vamin = vamin - self.vimax = vimax - self.vimin = vimin - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcIEEEST1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py b/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py deleted file mode 100644 index f6d2d347..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ExcIEEEST1AUELselectorKind(Base): - ''' - Type of connection for the UEL input used in ExcIEEEST1A. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ExcIEEEST1AUELselectorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py b/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py deleted file mode 100644 index a64ff3ac..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py +++ /dev/null @@ -1,67 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST2A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST2A model. Some static systems utilize both current and voltage sources (generator terminal quantities) to comprise the power source. The regulator controls the exciter output through controlled saturation of the power transformer components. These compound-source rectifier excitation systems are designated Type ST2A and are represented by ExcIEEEST2A. Reference: IEEE Standard 421.5-2005 Section 7.2. - - :ka: Voltage regulator gain (K). Typical Value = 120. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.15. Default: 0 - :vrmax: Maximum voltage regulator outputs (V). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (V). Typical Value = 0. Default: 0.0 - :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.5. Default: 0 - :kf: Excitation control system stabilizer gains (K). Typical Value = 0.05. Default: 0.0 - :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 - :kp: Potential circuit gain coefficient (K). Typical Value = 4.88. Default: 0.0 - :ki: Potential circuit gain coefficient (K). Typical Value = 8. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 1.82. Default: 0.0 - :efdmax: Maximum field voltage (E). Typical Value = 99. Default: 0.0 - :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = true. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, kp = 0.0, ki = 0.0, kc = 0.0, efdmax = 0.0, uelin = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.kp = kp - self.ki = ki - self.kc = kc - self.efdmax = efdmax - self.uelin = uelin - - def __str__(self): - str = 'class=ExcIEEEST2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py b/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py deleted file mode 100644 index 89e353d9..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py +++ /dev/null @@ -1,88 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST3A(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST3A model. Some static systems utilize a field voltage control loop to linearize the exciter control characteristic. This also makes the output independent of supply source variations until supply limitations are reached. These systems utilize a variety of controlled-rectifier designs: full thyristor complements or hybrid bridges in either series or shunt configurations. The power source may consist of only a potential source, either fed from the machine terminals or from internal windings. Some designs may have compound power sources utilizing both machine potential and current. These power sources are represented as phasor combinations of machine terminal current and voltage and are accommodated by suitable parameters in model Type ST3A which is represented by ExcIEEEST3A. Reference: IEEE Standard 421.5-2005 Section 7.3. - - :vimax: Maximum voltage regulator input limit (V). Typical Value = 0.2. Default: 0.0 - :vimin: Minimum voltage regulator input limit (V). Typical Value = -0.2. Default: 0.0 - :ka: Voltage regulator gain (K). This is parameter K in the IEEE Std. Typical Value = 200. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 - :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 - :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 10. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -10. Default: 0.0 - :km: Forward gain constant of the inner loop field regulator (K). Typical Value = 7.93. Default: 0.0 - :tm: Forward time constant of inner loop field regulator (T). Typical Value = 0.4. Default: 0 - :vmmax: Maximum inner loop output (V). Typical Value = 1. Default: 0.0 - :vmmin: Minimum inner loop output (V). Typical Value = 0. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 - :kp: Potential circuit gain coefficient (K). Typical Value = 6.15. Default: 0.0 - :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 - :ki: Potential circuit gain coefficient (K). Typical Value = 0. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.2. Default: 0.0 - :xl: Reactance associated with potential source (X). Typical Value = 0.081. Default: 0.0 - :vbmax: Maximum excitation voltage (V). Typical Value = 6.9. Default: 0.0 - :vgmax: Maximum inner loop feedback voltage (V). Typical Value = 5.8. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'tm': [cgmesProfile.DY.value, ], - 'vmmax': [cgmesProfile.DY.value, ], - 'vmmin': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'thetap': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'xl': [cgmesProfile.DY.value, ], - 'vbmax': [cgmesProfile.DY.value, ], - 'vgmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, vimax = 0.0, vimin = 0.0, ka = 0.0, ta = 0, tb = 0, tc = 0, vrmax = 0.0, vrmin = 0.0, km = 0.0, tm = 0, vmmax = 0.0, vmmin = 0.0, kg = 0.0, kp = 0.0, thetap = 0.0, ki = 0.0, kc = 0.0, xl = 0.0, vbmax = 0.0, vgmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vimax = vimax - self.vimin = vimin - self.ka = ka - self.ta = ta - self.tb = tb - self.tc = tc - self.vrmax = vrmax - self.vrmin = vrmin - self.km = km - self.tm = tm - self.vmmax = vmmax - self.vmmin = vmmin - self.kg = kg - self.kp = kp - self.thetap = thetap - self.ki = ki - self.kc = kc - self.xl = xl - self.vbmax = vbmax - self.vgmax = vgmax - - def __str__(self): - str = 'class=ExcIEEEST3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py b/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py deleted file mode 100644 index e18801fc..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py +++ /dev/null @@ -1,76 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST4B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST4B model. This model is a variation of the Type ST3A model, with a proportional plus integral (PI) regulator block replacing the lag-lead regulator characteristic that is in the ST3A model. Both potential and compound source rectifier excitation systems are modeled. The PI regulator blocks have non-windup limits that are represented. The voltage regulator of this model is typically implemented digitally. Reference: IEEE Standard 421.5-2005 Section 7.4. - - :kpr: Voltage regulator proportional gain (K). Typical Value = 10.75. Default: 0.0 - :kir: Voltage regulator integral gain (K). Typical Value = 10.75. Default: 0.0 - :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -0.87. Default: 0.0 - :kpm: Voltage regulator proportional gain output (K). Typical Value = 1. Default: 0.0 - :kim: Voltage regulator integral gain output (K). Typical Value = 0. Default: 0.0 - :vmmax: Maximum inner loop output (V). Typical Value = 99. Default: 0.0 - :vmmin: Minimum inner loop output (V). Typical Value = -99. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 0. Default: 0.0 - :kp: Potential circuit gain coefficient (K). Typical Value = 9.3. Default: 0.0 - :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 - :ki: Potential circuit gain coefficient (K). Typical Value = 0. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.113. Default: 0.0 - :xl: Reactance associated with potential source (X). Typical Value = 0.124. Default: 0.0 - :vbmax: Maximum excitation voltage (V). Typical Value = 11.63. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpr': [cgmesProfile.DY.value, ], - 'kir': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kpm': [cgmesProfile.DY.value, ], - 'kim': [cgmesProfile.DY.value, ], - 'vmmax': [cgmesProfile.DY.value, ], - 'vmmin': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'thetap': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'xl': [cgmesProfile.DY.value, ], - 'vbmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kpr = 0.0, kir = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, kpm = 0.0, kim = 0.0, vmmax = 0.0, vmmin = 0.0, kg = 0.0, kp = 0.0, thetap = 0.0, ki = 0.0, kc = 0.0, xl = 0.0, vbmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpr = kpr - self.kir = kir - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.kpm = kpm - self.kim = kim - self.vmmax = vmmax - self.vmmin = vmmin - self.kg = kg - self.kp = kp - self.thetap = thetap - self.ki = ki - self.kc = kc - self.xl = xl - self.vbmax = vbmax - - def __str__(self): - str = 'class=ExcIEEEST4B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py b/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py deleted file mode 100644 index e886d565..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py +++ /dev/null @@ -1,79 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST5B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST5B model. The Type ST5B excitation system is a variation of the Type ST1A model, with alternative overexcitation and underexcitation inputs and additional limits. Reference: IEEE Standard 421.5-2005 Section 7.5. Note: the block diagram in the IEEE 421.5 standard has input signal Vc and does not indicate the summation point with Vref. The implementation of the ExcIEEEST5B shall consider summation point with Vref. - - :kr: Regulator gain (K). Typical Value = 200. Default: 0.0 - :t1: Firing circuit time constant (T1). Typical Value = 0.004. Default: 0 - :kc: Rectifier regulation factor (K). Typical Value = 0.004. Default: 0.0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 5. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -4. Default: 0.0 - :tc1: Regulator lead time constant (T). Typical Value = 0.8. Default: 0 - :tb1: Regulator lag time constant (T). Typical Value = 6. Default: 0 - :tc2: Regulator lead time constant (T). Typical Value = 0.08. Default: 0 - :tb2: Regulator lag time constant (T). Typical Value = 0.01. Default: 0 - :toc1: OEL lead time constant (T). Typical Value = 0.1. Default: 0 - :tob1: OEL lag time constant (T). Typical Value = 2. Default: 0 - :toc2: OEL lead time constant (T). Typical Value = 0.08. Default: 0 - :tob2: OEL lag time constant (T). Typical Value = 0.08. Default: 0 - :tuc1: UEL lead time constant (T). Typical Value = 2. Default: 0 - :tub1: UEL lag time constant (T). Typical Value = 10. Default: 0 - :tuc2: UEL lead time constant (T). Typical Value = 0.1. Default: 0 - :tub2: UEL lag time constant (T). Typical Value = 0.05. Default: 0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kr': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'tc1': [cgmesProfile.DY.value, ], - 'tb1': [cgmesProfile.DY.value, ], - 'tc2': [cgmesProfile.DY.value, ], - 'tb2': [cgmesProfile.DY.value, ], - 'toc1': [cgmesProfile.DY.value, ], - 'tob1': [cgmesProfile.DY.value, ], - 'toc2': [cgmesProfile.DY.value, ], - 'tob2': [cgmesProfile.DY.value, ], - 'tuc1': [cgmesProfile.DY.value, ], - 'tub1': [cgmesProfile.DY.value, ], - 'tuc2': [cgmesProfile.DY.value, ], - 'tub2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kr = 0.0, t1 = 0, kc = 0.0, vrmax = 0.0, vrmin = 0.0, tc1 = 0, tb1 = 0, tc2 = 0, tb2 = 0, toc1 = 0, tob1 = 0, toc2 = 0, tob2 = 0, tuc1 = 0, tub1 = 0, tuc2 = 0, tub2 = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kr = kr - self.t1 = t1 - self.kc = kc - self.vrmax = vrmax - self.vrmin = vrmin - self.tc1 = tc1 - self.tb1 = tb1 - self.tc2 = tc2 - self.tb2 = tb2 - self.toc1 = toc1 - self.tob1 = tob1 - self.toc2 = toc2 - self.tob2 = tob2 - self.tuc1 = tuc1 - self.tub1 = tub1 - self.tuc2 = tuc2 - self.tub2 = tub2 - - def __str__(self): - str = 'class=ExcIEEEST5B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py b/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py deleted file mode 100644 index 9355ef03..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py +++ /dev/null @@ -1,70 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST6B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST6B model. This model consists of a PI voltage regulator with an inner loop field voltage regulator and pre-control. The field voltage regulator implements a proportional control. The pre-control and the delay in the feedback circuit increase the dynamic response. Reference: IEEE Standard 421.5-2005 Section 7.6. - - :ilr: Exciter output current limit reference (I). Typical Value = 4.164. Default: 0.0 - :kci: Exciter output current limit adjustment (K). Typical Value = 1.0577. Default: 0.0 - :kff: Pre-control gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 - :kia: Voltage regulator integral gain (K). Typical Value = 45.094. Default: 0.0 - :klr: Exciter output current limiter gain (K). Typical Value = 17.33. Default: 0.0 - :km: Forward gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 - :kpa: Voltage regulator proportional gain (K). Typical Value = 18.038. Default: 0.0 - :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None - :tg: Feedback time constant of inner loop field voltage regulator (T). Typical Value = 0.02. Default: 0 - :vamax: Maximum voltage regulator output (V). Typical Value = 4.81. Default: 0.0 - :vamin: Minimum voltage regulator output (V). Typical Value = -3.85. Default: 0.0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 4.81. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -3.85. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ilr': [cgmesProfile.DY.value, ], - 'kci': [cgmesProfile.DY.value, ], - 'kff': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kia': [cgmesProfile.DY.value, ], - 'klr': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'kpa': [cgmesProfile.DY.value, ], - 'oelin': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ilr = 0.0, kci = 0.0, kff = 0.0, kg = 0.0, kia = 0.0, klr = 0.0, km = 0.0, kpa = 0.0, oelin = None, tg = 0, vamax = 0.0, vamin = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ilr = ilr - self.kci = kci - self.kff = kff - self.kg = kg - self.kia = kia - self.klr = klr - self.km = km - self.kpa = kpa - self.oelin = oelin - self.tg = tg - self.vamax = vamax - self.vamin = vamin - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcIEEEST6B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py b/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py deleted file mode 100644 index 4b0eb537..00000000 --- a/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py +++ /dev/null @@ -1,73 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcIEEEST7B(ExcitationSystemDynamics): - ''' - The class represents IEEE Std 421.5-2005 type ST7B model. This model is representative of static potential-source excitation systems. In this system, the AVR consists of a PI voltage regulator. A phase lead-lag filter in series allows introduction of a derivative function, typically used with brushless excitation systems. In that case, the regulator is of the PID type. In addition, the terminal voltage channel includes a phase lead-lag filter. The AVR includes the appropriate inputs on its reference for overexcitation limiter (OEL1), underexcitation limiter (UEL), stator current limiter (SCL), and current compensator (DROOP). All these limitations, when they work at voltage reference level, keep the PSS (VS signal from Type PSS1A, PSS2A, or PSS2B) in operation. However, the UEL limitation can also be transferred to the high value (HV) gate acting on the output signal. In addition, the output signal passes through a low value (LV) gate for a ceiling overexcitation limiter (OEL2). Reference: IEEE Standard 421.5-2005 Section 7.7. - - :kh: High-value gate feedback gain (K). Typical Value 1. Default: 0.0 - :kia: Voltage regulator integral gain (K). Typical Value = 1. Default: 0.0 - :kl: Low-value gate feedback gain (K). Typical Value 1. Default: 0.0 - :kpa: Voltage regulator proportional gain (K). Typical Value = 40. Default: 0.0 - :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None - :tb: Regulator lag time constant (T). Typical Value 1. Default: 0 - :tc: Regulator lead time constant (T). Typical Value 1. Default: 0 - :tf: Excitation control system stabilizer time constant (T). Typical Value 1. Default: 0 - :tg: Feedback time constant of inner loop field voltage regulator (T). Typical Value 1. Default: 0 - :tia: Feedback time constant (T). Typical Value = 3. Default: 0 - :uelin: UEL input selector (UELin). Typical Value = noUELinput. Default: None - :vmax: Maximum voltage reference signal (V). Typical Value = 1.1. Default: 0.0 - :vmin: Minimum voltage reference signal (V). Typical Value = 0.9. Default: 0.0 - :vrmax: Maximum voltage regulator output (V). Typical Value = 5. Default: 0.0 - :vrmin: Minimum voltage regulator output (V). Typical Value = -4.5. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kia': [cgmesProfile.DY.value, ], - 'kl': [cgmesProfile.DY.value, ], - 'kpa': [cgmesProfile.DY.value, ], - 'oelin': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'tia': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kh = 0.0, kia = 0.0, kl = 0.0, kpa = 0.0, oelin = None, tb = 0, tc = 0, tf = 0, tg = 0, tia = 0, uelin = None, vmax = 0.0, vmin = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kh = kh - self.kia = kia - self.kl = kl - self.kpa = kpa - self.oelin = oelin - self.tb = tb - self.tc = tc - self.tf = tf - self.tg = tg - self.tia = tia - self.uelin = uelin - self.vmax = vmax - self.vmin = vmin - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcIEEEST7B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcOEX3T.py b/cimpy/cgmes_v2_4_15/ExcOEX3T.py deleted file mode 100644 index 91f71088..00000000 --- a/cimpy/cgmes_v2_4_15/ExcOEX3T.py +++ /dev/null @@ -1,85 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcOEX3T(ExcitationSystemDynamics): - ''' - Modified IEEE Type ST1 Excitation System with semi-continuous and acting terminal voltage limiter. - - :t1: Time constant (T). Default: 0 - :t2: Time constant (T). Default: 0 - :t3: Time constant (T). Default: 0 - :t4: Time constant (T). Default: 0 - :ka: Gain (K). Default: 0.0 - :t5: Time constant (T). Default: 0 - :t6: Time constant (T). Default: 0 - :vrmax: Limiter (V). Default: 0.0 - :vrmin: Limiter (V). Default: 0.0 - :te: Time constant (T). Default: 0 - :kf: Gain (K). Default: 0.0 - :tf: Time constant (T). Default: 0 - :kc: Gain (K). Default: 0.0 - :kd: Gain (K). Default: 0.0 - :ke: Gain (K). Default: 0.0 - :e1: Saturation parameter (E). Default: 0.0 - :see1: Saturation parameter (S(E)). Default: 0.0 - :e2: Saturation parameter (E). Default: 0.0 - :see2: Saturation parameter (S(E)). Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'see1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'see2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, t1 = 0, t2 = 0, t3 = 0, t4 = 0, ka = 0.0, t5 = 0, t6 = 0, vrmax = 0.0, vrmin = 0.0, te = 0, kf = 0.0, tf = 0, kc = 0.0, kd = 0.0, ke = 0.0, e1 = 0.0, see1 = 0.0, e2 = 0.0, see2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.ka = ka - self.t5 = t5 - self.t6 = t6 - self.vrmax = vrmax - self.vrmin = vrmin - self.te = te - self.kf = kf - self.tf = tf - self.kc = kc - self.kd = kd - self.ke = ke - self.e1 = e1 - self.see1 = see1 - self.e2 = e2 - self.see2 = see2 - - def __str__(self): - str = 'class=ExcOEX3T\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcPIC.py b/cimpy/cgmes_v2_4_15/ExcPIC.py deleted file mode 100644 index 2d8ec05d..00000000 --- a/cimpy/cgmes_v2_4_15/ExcPIC.py +++ /dev/null @@ -1,97 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcPIC(ExcitationSystemDynamics): - ''' - Proportional/Integral Regulator Excitation System Model. This model can be used to represent excitation systems with a proportional-integral (PI) voltage regulator controller. - - :ka: PI controller gain (Ka). Typical Value = 3.15. Default: 0.0 - :ta1: PI controller time constant (Ta1). Typical Value = 1. Default: 0 - :vr1: PI maximum limit (Vr1). Typical Value = 1. Default: 0.0 - :vr2: PI minimum limit (Vr2). Typical Value = -0.87. Default: 0.0 - :ta2: Voltage regulator time constant (Ta2). Typical Value = 0.01. Default: 0 - :ta3: Lead time constant (Ta3). Typical Value = 0. Default: 0 - :ta4: Lag time constant (Ta4). Typical Value = 0. Default: 0 - :vrmax: Voltage regulator maximum limit (Vrmax). Typical Value = 1. Default: 0.0 - :vrmin: Voltage regulator minimum limit (Vrmin). Typical Value = -0.87. Default: 0.0 - :kf: Rate feedback gain (Kf). Typical Value = 0. Default: 0.0 - :tf1: Rate feedback time constant (Tf1). Typical Value = 0. Default: 0 - :tf2: Rate feedback lag time constant (Tf2). Typical Value = 0. Default: 0 - :efdmax: Exciter maximum limit (Efdmax). Typical Value = 8. Default: 0.0 - :efdmin: Exciter minimum limit (Efdmin). Typical Value = -0.87. Default: 0.0 - :ke: Exciter constant (Ke). Typical Value = 0. Default: 0.0 - :te: Exciter time constant (Te). Typical Value = 0. Default: 0 - :e1: Field voltage value 1 (E1). Typical Value = 0. Default: 0.0 - :se1: Saturation factor at E1 (Se1). Typical Value = 0. Default: 0.0 - :e2: Field voltage value 2 (E2). Typical Value = 0. Default: 0.0 - :se2: Saturation factor at E2 (Se2). Typical Value = 0. Default: 0.0 - :kp: Potential source gain (Kp). Typical Value = 6.5. Default: 0.0 - :ki: Current source gain (Ki). Typical Value = 0. Default: 0.0 - :kc: Exciter regulation factor (Kc). Typical Value = 0.08. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta1': [cgmesProfile.DY.value, ], - 'vr1': [cgmesProfile.DY.value, ], - 'vr2': [cgmesProfile.DY.value, ], - 'ta2': [cgmesProfile.DY.value, ], - 'ta3': [cgmesProfile.DY.value, ], - 'ta4': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'se1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'se2': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta1 = 0, vr1 = 0.0, vr2 = 0.0, ta2 = 0, ta3 = 0, ta4 = 0, vrmax = 0.0, vrmin = 0.0, kf = 0.0, tf1 = 0, tf2 = 0, efdmax = 0.0, efdmin = 0.0, ke = 0.0, te = 0, e1 = 0.0, se1 = 0.0, e2 = 0.0, se2 = 0.0, kp = 0.0, ki = 0.0, kc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta1 = ta1 - self.vr1 = vr1 - self.vr2 = vr2 - self.ta2 = ta2 - self.ta3 = ta3 - self.ta4 = ta4 - self.vrmax = vrmax - self.vrmin = vrmin - self.kf = kf - self.tf1 = tf1 - self.tf2 = tf2 - self.efdmax = efdmax - self.efdmin = efdmin - self.ke = ke - self.te = te - self.e1 = e1 - self.se1 = se1 - self.e2 = e2 - self.se2 = se2 - self.kp = kp - self.ki = ki - self.kc = kc - - def __str__(self): - str = 'class=ExcPIC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcREXS.py b/cimpy/cgmes_v2_4_15/ExcREXS.py deleted file mode 100644 index d2f8299b..00000000 --- a/cimpy/cgmes_v2_4_15/ExcREXS.py +++ /dev/null @@ -1,136 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcREXS(ExcitationSystemDynamics): - ''' - General Purpose Rotating Excitation System Model. This model can be used to represent a wide range of excitation systems whose DC power source is an AC or DC generator. It encompasses IEEE type AC1, AC2, DC1, and DC2 excitation system models. - - :e1: Field voltage value 1 (E1). Typical Value = 3. Default: 0.0 - :e2: Field voltage value 2 (E2). Typical Value = 4. Default: 0.0 - :fbf: Rate feedback signal flag (Fbf). Typical Value = fieldCurrent. Default: None - :flimf: Limit type flag (Flimf). Typical Value = 0. Default: 0.0 - :kc: Rectifier regulation factor (Kc). Typical Value = 0.05. Default: 0.0 - :kd: Exciter regulation factor (Kd). Typical Value = 2. Default: 0.0 - :ke: Exciter field proportional constant (Ke). Typical Value = 1. Default: 0.0 - :kefd: Field voltage feedback gain (Kefd). Typical Value = 0. Default: 0.0 - :kf: Rate feedback gain (Kf). Typical Value = 0.05. Default: 0 - :kh: Field voltage controller feedback gain (Kh). Typical Value = 0. Default: 0.0 - :kii: Field Current Regulator Integral Gain (Kii). Typical Value = 0. Default: 0.0 - :kip: Field Current Regulator Proportional Gain (Kip). Typical Value = 1. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :kvi: Voltage Regulator Integral Gain (Kvi). Typical Value = 0. Default: 0.0 - :kvp: Voltage Regulator Proportional Gain (Kvp). Typical Value = 2800. Default: 0.0 - :kvphz: V/Hz limiter gain (Kvphz). Typical Value = 0. Default: 0.0 - :nvphz: Pickup speed of V/Hz limiter (Nvphz). Typical Value = 0. Default: 0.0 - :se1: Saturation factor at E1 (Se1). Typical Value = 0.0001. Default: 0.0 - :se2: Saturation factor at E2 (Se2). Typical Value = 0.001. Default: 0.0 - :ta: Voltage Regulator time constant (Ta). Typical Value = 0.01. Default: 0 - :tb1: Lag time constant (Tb1). Typical Value = 0. Default: 0 - :tb2: Lag time constant (Tb2). Typical Value = 0. Default: 0 - :tc1: Lead time constant (Tc1). Typical Value = 0. Default: 0 - :tc2: Lead time constant (Tc2). Typical Value = 0. Default: 0 - :te: Exciter field time constant (Te). Typical Value = 1.2. Default: 0 - :tf: Rate feedback time constant (Tf). Typical Value = 1. Default: 0 - :tf1: Feedback lead time constant (Tf1). Typical Value = 0. Default: 0 - :tf2: Feedback lag time constant (Tf2). Typical Value = 0. Default: 0 - :tp: Field current Bridge time constant (Tp). Typical Value = 0. Default: 0 - :vcmax: Maximum compounding voltage (Vcmax). Typical Value = 0. Default: 0.0 - :vfmax: Maximum Exciter Field Current (Vfmax). Typical Value = 47. Default: 0.0 - :vfmin: Minimum Exciter Field Current (Vfmin). Typical Value = -20. Default: 0.0 - :vimax: Voltage Regulator Input Limit (Vimax). Typical Value = 0.1. Default: 0.0 - :vrmax: Maximum controller output (Vrmax). Typical Value = 47. Default: 0.0 - :vrmin: Minimum controller output (Vrmin). Typical Value = -20. Default: 0.0 - :xc: Exciter compounding reactance (Xc). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'e1': [cgmesProfile.DY.value, ], - 'e2': [cgmesProfile.DY.value, ], - 'fbf': [cgmesProfile.DY.value, ], - 'flimf': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'kefd': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kii': [cgmesProfile.DY.value, ], - 'kip': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'kvi': [cgmesProfile.DY.value, ], - 'kvp': [cgmesProfile.DY.value, ], - 'kvphz': [cgmesProfile.DY.value, ], - 'nvphz': [cgmesProfile.DY.value, ], - 'se1': [cgmesProfile.DY.value, ], - 'se2': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb1': [cgmesProfile.DY.value, ], - 'tb2': [cgmesProfile.DY.value, ], - 'tc1': [cgmesProfile.DY.value, ], - 'tc2': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'vcmax': [cgmesProfile.DY.value, ], - 'vfmax': [cgmesProfile.DY.value, ], - 'vfmin': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'xc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, e1 = 0.0, e2 = 0.0, fbf = None, flimf = 0.0, kc = 0.0, kd = 0.0, ke = 0.0, kefd = 0.0, kf = 0, kh = 0.0, kii = 0.0, kip = 0.0, ks = 0.0, kvi = 0.0, kvp = 0.0, kvphz = 0.0, nvphz = 0.0, se1 = 0.0, se2 = 0.0, ta = 0, tb1 = 0, tb2 = 0, tc1 = 0, tc2 = 0, te = 0, tf = 0, tf1 = 0, tf2 = 0, tp = 0, vcmax = 0.0, vfmax = 0.0, vfmin = 0.0, vimax = 0.0, vrmax = 0.0, vrmin = 0.0, xc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.e1 = e1 - self.e2 = e2 - self.fbf = fbf - self.flimf = flimf - self.kc = kc - self.kd = kd - self.ke = ke - self.kefd = kefd - self.kf = kf - self.kh = kh - self.kii = kii - self.kip = kip - self.ks = ks - self.kvi = kvi - self.kvp = kvp - self.kvphz = kvphz - self.nvphz = nvphz - self.se1 = se1 - self.se2 = se2 - self.ta = ta - self.tb1 = tb1 - self.tb2 = tb2 - self.tc1 = tc1 - self.tc2 = tc2 - self.te = te - self.tf = tf - self.tf1 = tf1 - self.tf2 = tf2 - self.tp = tp - self.vcmax = vcmax - self.vfmax = vfmax - self.vfmin = vfmin - self.vimax = vimax - self.vrmax = vrmax - self.vrmin = vrmin - self.xc = xc - - def __str__(self): - str = 'class=ExcREXS\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py b/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py deleted file mode 100644 index 5d9658f6..00000000 --- a/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ExcREXSFeedbackSignalKind(Base): - ''' - Type of rate feedback signals. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ExcREXSFeedbackSignalKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcSCRX.py b/cimpy/cgmes_v2_4_15/ExcSCRX.py deleted file mode 100644 index 550e9678..00000000 --- a/cimpy/cgmes_v2_4_15/ExcSCRX.py +++ /dev/null @@ -1,52 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcSCRX(ExcitationSystemDynamics): - ''' - Simple excitation system model representing generic characteristics of many excitation systems; intended for use where negative field current may be a problem. - - :tatb: Ta/Tb - gain reduction ratio of lag-lead element (TaTb). The parameter Ta is not defined explicitly. Typical Value = 0.1. Default: 0.0 - :tb: Denominator time constant of lag-lead block (Tb). Typical Value = 10. Default: 0 - :k: Gain (K) (>0). Typical Value = 200. Default: 0.0 - :te: Time constant of gain block (Te) (>0). Typical Value = 0.02. Default: 0 - :emin: Minimum field voltage output (Emin). Typical Value = 0. Default: 0.0 - :emax: Maximum field voltage output (Emax). Typical Value = 5. Default: 0.0 - :cswitch: Power source switch (Cswitch). true = fixed voltage of 1.0 PU false = generator terminal voltage. Default: False - :rcrfd: Rc/Rfd - ratio of field discharge resistance to field winding resistance (RcRfd). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tatb': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'emin': [cgmesProfile.DY.value, ], - 'emax': [cgmesProfile.DY.value, ], - 'cswitch': [cgmesProfile.DY.value, ], - 'rcrfd': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tatb = 0.0, tb = 0, k = 0.0, te = 0, emin = 0.0, emax = 0.0, cswitch = False, rcrfd = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tatb = tatb - self.tb = tb - self.k = k - self.te = te - self.emin = emin - self.emax = emax - self.cswitch = cswitch - self.rcrfd = rcrfd - - def __str__(self): - str = 'class=ExcSCRX\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcSEXS.py b/cimpy/cgmes_v2_4_15/ExcSEXS.py deleted file mode 100644 index bea15a2d..00000000 --- a/cimpy/cgmes_v2_4_15/ExcSEXS.py +++ /dev/null @@ -1,58 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcSEXS(ExcitationSystemDynamics): - ''' - Simplified Excitation System Model. - - :tatb: Ta/Tb - gain reduction ratio of lag-lead element (TaTb). Typical Value = 0.1. Default: 0.0 - :tb: Denominator time constant of lag-lead block (Tb). Typical Value = 10. Default: 0 - :k: Gain (K) (>0). Typical Value = 100. Default: 0.0 - :te: Time constant of gain block (Te). Typical Value = 0.05. Default: 0 - :emin: Minimum field voltage output (Emin). Typical Value = -5. Default: 0.0 - :emax: Maximum field voltage output (Emax). Typical Value = 5. Default: 0.0 - :kc: PI controller gain (Kc). Typical Value = 0.08. Default: 0.0 - :tc: PI controller phase lead time constant (Tc). Typical Value = 0. Default: 0 - :efdmin: Field voltage clipping minimum limit (Efdmin). Typical Value = -5. Default: 0.0 - :efdmax: Field voltage clipping maximum limit (Efdmax). Typical Value = 5. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tatb': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'emin': [cgmesProfile.DY.value, ], - 'emax': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, tatb = 0.0, tb = 0, k = 0.0, te = 0, emin = 0.0, emax = 0.0, kc = 0.0, tc = 0, efdmin = 0.0, efdmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tatb = tatb - self.tb = tb - self.k = k - self.te = te - self.emin = emin - self.emax = emax - self.kc = kc - self.tc = tc - self.efdmin = efdmin - self.efdmax = efdmax - - def __str__(self): - str = 'class=ExcSEXS\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcSK.py b/cimpy/cgmes_v2_4_15/ExcSK.py deleted file mode 100644 index f470602b..00000000 --- a/cimpy/cgmes_v2_4_15/ExcSK.py +++ /dev/null @@ -1,124 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcSK(ExcitationSystemDynamics): - ''' - Slovakian Excitation System Model. UEL and secondary voltage control are included in this model. When this model is used, there cannot be a separate underexcitation limiter or VAr controller model. - - :efdmax: Field voltage clipping limit (Efdmax). Default: 0.0 - :efdmin: Field voltage clipping limit (Efdmin). Default: 0.0 - :emax: Maximum field voltage output (Emax). Typical Value = 20. Default: 0.0 - :emin: Minimum field voltage output (Emin). Typical Value = -20. Default: 0.0 - :k: Gain (K). Typical Value = 1. Default: 0.0 - :k1: Parameter of underexcitation limit (K1). Typical Value = 0.1364. Default: 0.0 - :k2: Parameter of underexcitation limit (K2). Typical Value = -0.3861. Default: 0.0 - :kc: PI controller gain (Kc). Typical Value = 70. Default: 0.0 - :kce: Rectifier regulation factor (Kce). Typical Value = 0. Default: 0.0 - :kd: Exciter internal reactance (Kd). Typical Value = 0. Default: 0.0 - :kgob: P controller gain (Kgob). Typical Value = 10. Default: 0.0 - :kp: PI controller gain (Kp). Typical Value = 1. Default: 0.0 - :kqi: PI controller gain of integral component (Kqi). Typical Value = 0. Default: 0.0 - :kqob: Rate of rise of the reactive power (Kqob). Default: 0.0 - :kqp: PI controller gain (Kqp). Typical Value = 0. Default: 0.0 - :nq: Dead band of reactive power (nq). Determines the range of sensitivity. Typical Value = 0.001. Default: 0.0 - :qconoff: Secondary voltage control state (Qc_on_off). true = secondary voltage control is ON false = secondary voltage control is OFF. Typical Value = false. Default: False - :qz: Desired value (setpoint) of reactive power, manual setting (Qz). Default: 0.0 - :remote: Selector to apply automatic calculation in secondary controller model. true = automatic calculation is activated false = manual set is active; the use of desired value of reactive power (Qz) is required. Typical Value = true. Default: False - :sbase: Apparent power of the unit (Sbase). Unit = MVA. Typical Value = 259. Default: 0.0 - :tc: PI controller phase lead time constant (Tc). Typical Value = 8. Default: 0 - :te: Time constant of gain block (Te). Typical Value = 0.1. Default: 0 - :ti: PI controller phase lead time constant (Ti). Typical Value = 2. Default: 0 - :tp: Time constant (Tp). Typical Value = 0.1. Default: 0 - :tr: Voltage transducer time constant (Tr). Typical Value = 0.01. Default: 0 - :uimax: Maximum error (Uimax). Typical Value = 10. Default: 0.0 - :uimin: Minimum error (UImin). Typical Value = -10. Default: 0.0 - :urmax: Maximum controller output (URmax). Typical Value = 10. Default: 0.0 - :urmin: Minimum controller output (URmin). Typical Value = -10. Default: 0.0 - :vtmax: Maximum terminal voltage input (Vtmax). Determines the range of voltage dead band. Typical Value = 1.05. Default: 0.0 - :vtmin: Minimum terminal voltage input (Vtmin). Determines the range of voltage dead band. Typical Value = 0.95. Default: 0.0 - :yp: Maximum output (Yp). Minimum output = 0. Typical Value = 1. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'efdmin': [cgmesProfile.DY.value, ], - 'emax': [cgmesProfile.DY.value, ], - 'emin': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kce': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'kgob': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'kqi': [cgmesProfile.DY.value, ], - 'kqob': [cgmesProfile.DY.value, ], - 'kqp': [cgmesProfile.DY.value, ], - 'nq': [cgmesProfile.DY.value, ], - 'qconoff': [cgmesProfile.DY.value, ], - 'qz': [cgmesProfile.DY.value, ], - 'remote': [cgmesProfile.DY.value, ], - 'sbase': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'ti': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'uimax': [cgmesProfile.DY.value, ], - 'uimin': [cgmesProfile.DY.value, ], - 'urmax': [cgmesProfile.DY.value, ], - 'urmin': [cgmesProfile.DY.value, ], - 'vtmax': [cgmesProfile.DY.value, ], - 'vtmin': [cgmesProfile.DY.value, ], - 'yp': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, efdmax = 0.0, efdmin = 0.0, emax = 0.0, emin = 0.0, k = 0.0, k1 = 0.0, k2 = 0.0, kc = 0.0, kce = 0.0, kd = 0.0, kgob = 0.0, kp = 0.0, kqi = 0.0, kqob = 0.0, kqp = 0.0, nq = 0.0, qconoff = False, qz = 0.0, remote = False, sbase = 0.0, tc = 0, te = 0, ti = 0, tp = 0, tr = 0, uimax = 0.0, uimin = 0.0, urmax = 0.0, urmin = 0.0, vtmax = 0.0, vtmin = 0.0, yp = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.efdmax = efdmax - self.efdmin = efdmin - self.emax = emax - self.emin = emin - self.k = k - self.k1 = k1 - self.k2 = k2 - self.kc = kc - self.kce = kce - self.kd = kd - self.kgob = kgob - self.kp = kp - self.kqi = kqi - self.kqob = kqob - self.kqp = kqp - self.nq = nq - self.qconoff = qconoff - self.qz = qz - self.remote = remote - self.sbase = sbase - self.tc = tc - self.te = te - self.ti = ti - self.tp = tp - self.tr = tr - self.uimax = uimax - self.uimin = uimin - self.urmax = urmax - self.urmin = urmin - self.vtmax = vtmax - self.vtmin = vtmin - self.yp = yp - - def __str__(self): - str = 'class=ExcSK\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST1A.py b/cimpy/cgmes_v2_4_15/ExcST1A.py deleted file mode 100644 index fc2657a9..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST1A.py +++ /dev/null @@ -1,82 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST1A(ExcitationSystemDynamics): - ''' - Modification of an old IEEE ST1A static excitation system without overexcitation limiter (OEL) and underexcitation limiter (UEL). - - :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 999. Default: 0.0 - :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -999. Default: 0.0 - :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 - :tb: Voltage regulator time constant (Tb). Typical Value = 10. Default: 0 - :ka: Voltage regulator gain (Ka). Typical Value = 190. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 - :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 7.8. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -6.7. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.05. Default: 0.0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :tc1: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 - :tb1: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :vamax: Maximum voltage regulator output (Vamax). Typical Value = 999. Default: 0.0 - :vamin: Minimum voltage regulator output (Vamin). Typical Value = -999. Default: 0.0 - :ilr: Exciter output current limit reference (Ilr). Typical Value = 0. Default: 0.0 - :klr: Exciter output current limiter gain (Klr). Typical Value = 0. Default: 0.0 - :xe: Excitation xfmr effective reactance (Xe). Typical Value = 0.04. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tc1': [cgmesProfile.DY.value, ], - 'tb1': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'ilr': [cgmesProfile.DY.value, ], - 'klr': [cgmesProfile.DY.value, ], - 'xe': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, vimax = 0.0, vimin = 0.0, tc = 0, tb = 0, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, kc = 0.0, kf = 0.0, tf = 0, tc1 = 0, tb1 = 0, vamax = 0.0, vamin = 0.0, ilr = 0.0, klr = 0.0, xe = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vimax = vimax - self.vimin = vimin - self.tc = tc - self.tb = tb - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.kc = kc - self.kf = kf - self.tf = tf - self.tc1 = tc1 - self.tb1 = tb1 - self.vamax = vamax - self.vamin = vamin - self.ilr = ilr - self.klr = klr - self.xe = xe - - def __str__(self): - str = 'class=ExcST1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST2A.py b/cimpy/cgmes_v2_4_15/ExcST2A.py deleted file mode 100644 index 06345b18..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST2A.py +++ /dev/null @@ -1,73 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST2A(ExcitationSystemDynamics): - ''' - Modified IEEE ST2A static excitation system - another lead-lag block added to match the model defined by WECC. - - :ka: Voltage regulator gain (Ka). Typical Value = 120. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.15. Default: 0 - :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -1. Default: 0.0 - :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 - :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.5. Default: 0 - :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.05. Default: 0.0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.7. Default: 0 - :kp: Potential circuit gain coefficient (Kp). Typical Value = 4.88. Default: 0.0 - :ki: Potential circuit gain coefficient (Ki). Typical Value = 8. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 1.82. Default: 0.0 - :efdmax: Maximum field voltage (Efdmax). Typical Value = 99. Default: 0.0 - :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = false. Default: False - :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ka = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, ke = 0.0, te = 0, kf = 0.0, tf = 0, kp = 0.0, ki = 0.0, kc = 0.0, efdmax = 0.0, uelin = False, tb = 0, tc = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ka = ka - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.ke = ke - self.te = te - self.kf = kf - self.tf = tf - self.kp = kp - self.ki = ki - self.kc = kc - self.efdmax = efdmax - self.uelin = uelin - self.tb = tb - self.tc = tc - - def __str__(self): - str = 'class=ExcST2A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST3A.py b/cimpy/cgmes_v2_4_15/ExcST3A.py deleted file mode 100644 index 26f289ff..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST3A.py +++ /dev/null @@ -1,88 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST3A(ExcitationSystemDynamics): - ''' - Modified IEEE ST3A static excitation system with added speed multiplier. - - :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 0.2. Default: 0.0 - :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -0.2. Default: 0.0 - :kj: AVR gain (Kj). Typical Value = 200. Default: 0.0 - :tb: Voltage regulator time constant (Tb). Typical Value = 6.67. Default: 0 - :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 - :efdmax: Maximum AVR output (Efdmax). Typical Value = 6.9. Default: 0.0 - :km: Forward gain constant of the inner loop field regulator (Km). Typical Value = 7.04. Default: 0.0 - :tm: Forward time constant of inner loop field regulator (Tm). Typical Value = 1. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 1. Default: 0.0 - :kp: Potential source gain (Kp) (>0). Typical Value = 4.37. Default: 0.0 - :thetap: Potential circuit phase angle (thetap). Typical Value = 20. Default: 0.0 - :ki: Potential circuit gain coefficient (Ki). Typical Value = 4.83. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 1.1. Default: 0.0 - :xl: Reactance associated with potential source (Xl). Typical Value = 0.09. Default: 0.0 - :vbmax: Maximum excitation voltage (Vbmax). Typical Value = 8.63. Default: 0.0 - :vgmax: Maximum inner loop feedback voltage (Vgmax). Typical Value = 6.53. Default: 0.0 - :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 - :ks1: Coefficient to allow different usage of the model-speed coefficient (Ks1). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'kj': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'efdmax': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'tm': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'thetap': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'xl': [cgmesProfile.DY.value, ], - 'vbmax': [cgmesProfile.DY.value, ], - 'vgmax': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, vimax = 0.0, vimin = 0.0, kj = 0.0, tb = 0, tc = 0, efdmax = 0.0, km = 0.0, tm = 0, vrmax = 0.0, vrmin = 0.0, kg = 0.0, kp = 0.0, thetap = 0.0, ki = 0.0, kc = 0.0, xl = 0.0, vbmax = 0.0, vgmax = 0.0, ks = 0.0, ks1 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vimax = vimax - self.vimin = vimin - self.kj = kj - self.tb = tb - self.tc = tc - self.efdmax = efdmax - self.km = km - self.tm = tm - self.vrmax = vrmax - self.vrmin = vrmin - self.kg = kg - self.kp = kp - self.thetap = thetap - self.ki = ki - self.kc = kc - self.xl = xl - self.vbmax = vbmax - self.vgmax = vgmax - self.ks = ks - self.ks1 = ks1 - - def __str__(self): - str = 'class=ExcST3A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST4B.py b/cimpy/cgmes_v2_4_15/ExcST4B.py deleted file mode 100644 index 60faf595..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST4B.py +++ /dev/null @@ -1,85 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST4B(ExcitationSystemDynamics): - ''' - Modified IEEE ST4B static excitation system with maximum inner loop feedback gain . - - :kpr: Voltage regulator proportional gain (Kpr). Typical Value = 10.75. Default: 0.0 - :kir: Voltage regulator integral gain (Kir). Typical Value = 10.75. Default: 0.0 - :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -0.87. Default: 0.0 - :kpm: Voltage regulator proportional gain output (Kpm). Typical Value = 1. Default: 0.0 - :kim: Voltage regulator integral gain output (Kim). Typical Value = 0. Default: 0.0 - :vmmax: Maximum inner loop output (Vmmax). Typical Value = 99. Default: 0.0 - :vmmin: Minimum inner loop output (Vmmin). Typical Value = -99. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 0. Default: 0.0 - :kp: Potential circuit gain coefficient (Kp). Typical Value = 9.3. Default: 0.0 - :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 - :ki: Potential circuit gain coefficient (Ki). Typical Value = 0. Default: 0.0 - :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.113. Default: 0.0 - :xl: Reactance associated with potential source (Xl). Typical Value = 0.124. Default: 0.0 - :vbmax: Maximum excitation voltage (Vbmax). Typical Value = 11.63. Default: 0.0 - :vgmax: Maximum inner loop feedback voltage (Vgmax). Typical Value = 5.8. Default: 0.0 - :uel: Selector (Uel). true = UEL is part of block diagram false = UEL is not part of block diagram. Typical Value = false. Default: False - :lvgate: Selector (LVgate). true = LVgate is part of the block diagram false = LVgate is not part of the block diagram. Typical Value = false. Default: False - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpr': [cgmesProfile.DY.value, ], - 'kir': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'kpm': [cgmesProfile.DY.value, ], - 'kim': [cgmesProfile.DY.value, ], - 'vmmax': [cgmesProfile.DY.value, ], - 'vmmin': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'thetap': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'xl': [cgmesProfile.DY.value, ], - 'vbmax': [cgmesProfile.DY.value, ], - 'vgmax': [cgmesProfile.DY.value, ], - 'uel': [cgmesProfile.DY.value, ], - 'lvgate': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kpr = 0.0, kir = 0.0, ta = 0, vrmax = 0.0, vrmin = 0.0, kpm = 0.0, kim = 0.0, vmmax = 0.0, vmmin = 0.0, kg = 0.0, kp = 0.0, thetap = 0.0, ki = 0.0, kc = 0.0, xl = 0.0, vbmax = 0.0, vgmax = 0.0, uel = False, lvgate = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpr = kpr - self.kir = kir - self.ta = ta - self.vrmax = vrmax - self.vrmin = vrmin - self.kpm = kpm - self.kim = kim - self.vmmax = vmmax - self.vmmin = vmmin - self.kg = kg - self.kp = kp - self.thetap = thetap - self.ki = ki - self.kc = kc - self.xl = xl - self.vbmax = vbmax - self.vgmax = vgmax - self.uel = uel - self.lvgate = lvgate - - def __str__(self): - str = 'class=ExcST4B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST6B.py b/cimpy/cgmes_v2_4_15/ExcST6B.py deleted file mode 100644 index cb1a90aa..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST6B.py +++ /dev/null @@ -1,97 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST6B(ExcitationSystemDynamics): - ''' - Modified IEEE ST6B static excitation system with PID controller and optional inner feedbacks loop. - - :ilr: Exciter output current limit reference (Ilr). Typical Value = 4.164. Default: 0.0 - :k1: Selector (K1). true = feedback is from Ifd false = feedback is not from Ifd. Typical Value = true. Default: False - :kcl: Exciter output current limit adjustment (Kcl). Typical Value = 1.0577. Default: 0.0 - :kff: Pre-control gain constant of the inner loop field regulator (Kff). Typical Value = 1. Default: 0.0 - :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 1. Default: 0.0 - :kia: Voltage regulator integral gain (Kia). Typical Value = 45.094. Default: 0.0 - :klr: Exciter output current limit adjustment (Kcl). Typical Value = 17.33. Default: 0.0 - :km: Forward gain constant of the inner loop field regulator (Km). Typical Value = 1. Default: 0.0 - :kpa: Voltage regulator proportional gain (Kpa). Typical Value = 18.038. Default: 0.0 - :kvd: Voltage regulator derivative gain (Kvd). Typical Value = 0. Default: 0.0 - :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None - :tg: Feedback time constant of inner loop field voltage regulator (Tg). Typical Value = 0.02. Default: 0 - :ts: Rectifier firing time constant (Ts). Typical Value = 0. Default: 0 - :tvd: Voltage regulator derivative gain (Tvd). Typical Value = 0. Default: 0 - :vamax: Maximum voltage regulator output (Vamax). Typical Value = 4.81. Default: 0.0 - :vamin: Minimum voltage regulator output (Vamin). Typical Value = -3.85. Default: 0.0 - :vilim: Selector (Vilim). true = Vimin-Vimax limiter is active false = Vimin-Vimax limiter is not active. Typical Value = true. Default: False - :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 10. Default: 0.0 - :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -10. Default: 0.0 - :vmult: Selector (Vmult). true = multiply regulator output by terminal voltage false = do not multiply regulator output by terminal voltage. Typical Value = true. Default: False - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 4.81. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -3.85. Default: 0.0 - :xc: Excitation source reactance (Xc). Typical Value = 0.05. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ilr': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'kcl': [cgmesProfile.DY.value, ], - 'kff': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kia': [cgmesProfile.DY.value, ], - 'klr': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'kpa': [cgmesProfile.DY.value, ], - 'kvd': [cgmesProfile.DY.value, ], - 'oelin': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'ts': [cgmesProfile.DY.value, ], - 'tvd': [cgmesProfile.DY.value, ], - 'vamax': [cgmesProfile.DY.value, ], - 'vamin': [cgmesProfile.DY.value, ], - 'vilim': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'vmult': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'xc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, ilr = 0.0, k1 = False, kcl = 0.0, kff = 0.0, kg = 0.0, kia = 0.0, klr = 0.0, km = 0.0, kpa = 0.0, kvd = 0.0, oelin = None, tg = 0, ts = 0, tvd = 0, vamax = 0.0, vamin = 0.0, vilim = False, vimax = 0.0, vimin = 0.0, vmult = False, vrmax = 0.0, vrmin = 0.0, xc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ilr = ilr - self.k1 = k1 - self.kcl = kcl - self.kff = kff - self.kg = kg - self.kia = kia - self.klr = klr - self.km = km - self.kpa = kpa - self.kvd = kvd - self.oelin = oelin - self.tg = tg - self.ts = ts - self.tvd = tvd - self.vamax = vamax - self.vamin = vamin - self.vilim = vilim - self.vimax = vimax - self.vimin = vimin - self.vmult = vmult - self.vrmax = vrmax - self.vrmin = vrmin - self.xc = xc - - def __str__(self): - str = 'class=ExcST6B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py b/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py deleted file mode 100644 index 580f9f05..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ExcST6BOELselectorKind(Base): - ''' - Type of connection for the OEL input used for static excitation systems type 6B. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ExcST6BOELselectorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST7B.py b/cimpy/cgmes_v2_4_15/ExcST7B.py deleted file mode 100644 index 105fd6e4..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST7B.py +++ /dev/null @@ -1,76 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcST7B(ExcitationSystemDynamics): - ''' - Modified IEEE ST7B static excitation system without stator current limiter (SCL) and current compensator (DROOP) inputs. - - :kh: High-value gate feedback gain (Kh). Typical Value = 1. Default: 0.0 - :kia: Voltage regulator integral gain (Kia). Typical Value = 1. Default: 0.0 - :kl: Low-value gate feedback gain (Kl). Typical Value = 1. Default: 0.0 - :kpa: Voltage regulator proportional gain (Kpa). Typical Value = 40. Default: 0.0 - :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None - :tb: Regulator lag time constant (Tb). Typical Value = 1. Default: 0 - :tc: Regulator lead time constant (Tc). Typical Value = 1. Default: 0 - :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 - :tg: Feedback time constant of inner loop field voltage regulator (Tg). Typical Value = 1. Default: 0 - :tia: Feedback time constant (Tia). Typical Value = 3. Default: 0 - :ts: Rectifier firing time constant (Ts). Typical Value = 0. Default: 0 - :uelin: UEL input selector (UELin). Typical Value = noUELinput. Default: None - :vmax: Maximum voltage reference signal (Vmax). Typical Value = 1.1. Default: 0.0 - :vmin: Minimum voltage reference signal (Vmin). Typical Value = 0.9. Default: 0.0 - :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 - :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.5. Default: 0.0 - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kia': [cgmesProfile.DY.value, ], - 'kl': [cgmesProfile.DY.value, ], - 'kpa': [cgmesProfile.DY.value, ], - 'oelin': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'tia': [cgmesProfile.DY.value, ], - 'ts': [cgmesProfile.DY.value, ], - 'uelin': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, kh = 0.0, kia = 0.0, kl = 0.0, kpa = 0.0, oelin = None, tb = 0, tc = 0, tf = 0, tg = 0, tia = 0, ts = 0, uelin = None, vmax = 0.0, vmin = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kh = kh - self.kia = kia - self.kl = kl - self.kpa = kpa - self.oelin = oelin - self.tb = tb - self.tc = tc - self.tf = tf - self.tg = tg - self.tia = tia - self.ts = ts - self.uelin = uelin - self.vmax = vmax - self.vmin = vmin - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=ExcST7B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py b/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py deleted file mode 100644 index 22549e31..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ExcST7BOELselectorKind(Base): - ''' - Type of connection for the OEL input used for static excitation systems type 7B. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ExcST7BOELselectorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py b/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py deleted file mode 100644 index cae633cd..00000000 --- a/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ExcST7BUELselectorKind(Base): - ''' - Type of connection for the UEL input used for static excitation systems type 7B. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ExcST7BUELselectorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py b/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py deleted file mode 100644 index ad4536dd..00000000 --- a/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py +++ /dev/null @@ -1,52 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class ExcitationSystemDynamics(DynamicsFunctionBlock): - ''' - Excitation system function block whose behavior is described by reference to a standard model - - :SynchronousMachineDynamics: Synchronous machine model with which this excitation system model is associated. Default: None - :PowerSystemStabilizerDynamics: Power system stabilizer model associated with this excitation system model. Default: None - :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model associated with this excitation system model. Default: None - :VoltageCompensatorDynamics: Voltage compensator model associated with this excitation system model. Default: None - :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model associated with this excitation system model. Default: None - :UnderexcitationLimiterDynamics: Undrexcitation limiter model associated with this excitation system model. Default: None - :PFVArControllerType2Dynamics: Power Factor or VAr controller Type II model associated with this excitation system model. Default: None - :OverexcitationLimiterDynamics: Overexcitation limiter model associated with this excitation system model. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'SynchronousMachineDynamics': [cgmesProfile.DY.value, ], - 'PowerSystemStabilizerDynamics': [cgmesProfile.DY.value, ], - 'PFVArControllerType1Dynamics': [cgmesProfile.DY.value, ], - 'VoltageCompensatorDynamics': [cgmesProfile.DY.value, ], - 'DiscontinuousExcitationControlDynamics': [cgmesProfile.DY.value, ], - 'UnderexcitationLimiterDynamics': [cgmesProfile.DY.value, ], - 'PFVArControllerType2Dynamics': [cgmesProfile.DY.value, ], - 'OverexcitationLimiterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, SynchronousMachineDynamics = None, PowerSystemStabilizerDynamics = None, PFVArControllerType1Dynamics = None, VoltageCompensatorDynamics = None, DiscontinuousExcitationControlDynamics = None, UnderexcitationLimiterDynamics = None, PFVArControllerType2Dynamics = None, OverexcitationLimiterDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SynchronousMachineDynamics = SynchronousMachineDynamics - self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics - self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics - self.VoltageCompensatorDynamics = VoltageCompensatorDynamics - self.DiscontinuousExcitationControlDynamics = DiscontinuousExcitationControlDynamics - self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics - self.PFVArControllerType2Dynamics = PFVArControllerType2Dynamics - self.OverexcitationLimiterDynamics = OverexcitationLimiterDynamics - - def __str__(self): - str = 'class=ExcitationSystemDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py b/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py deleted file mode 100644 index 4839e2a3..00000000 --- a/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .ExcitationSystemDynamics import ExcitationSystemDynamics - - -class ExcitationSystemUserDefined(ExcitationSystemDynamics): - ''' - Excitation system function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = ExcitationSystemDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ExcitationSystemDynamics: \n' + ExcitationSystemDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=ExcitationSystemUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py b/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py deleted file mode 100644 index b449a16a..00000000 --- a/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py +++ /dev/null @@ -1,82 +0,0 @@ -from .RegulatingCondEq import RegulatingCondEq - - -class ExternalNetworkInjection(RegulatingCondEq): - ''' - This class represents external network and it is used for IEC 60909 calculations. - - :governorSCD: Power Frequency Bias. This is the change in power injection divided by the change in frequency and negated. A positive value of the power frequency bias provides additional power injection upon a drop in frequency. Default: 0.0 - :maxP: Maximum active power of the injection. Default: 0.0 - :maxQ: Not for short circuit modelling; It is used for modelling of infeed for load flow exchange. If maxQ and minQ are not used ReactiveCapabilityCurve can be used Default: 0.0 - :minP: Minimum active power of the injection. Default: 0.0 - :minQ: Not for short circuit modelling; It is used for modelling of infeed for load flow exchange. If maxQ and minQ are not used ReactiveCapabilityCurve can be used Default: 0.0 - :ikSecond: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik`). Default: False - :maxInitialSymShCCurrent: Maximum initial symmetrical short-circuit currents (Ik` max) in A (Ik` = Sk`/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :maxR0ToX0Ratio: Maximum ratio of zero sequence resistance of Network Feeder to its zero sequence reactance (R(0)/X(0) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :maxR1ToX1Ratio: Maximum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :maxZ0ToZ1Ratio: Maximum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :minInitialSymShCCurrent: Minimum initial symmetrical short-circuit currents (Ik` min) in A (Ik` = Sk`/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :minR0ToX0Ratio: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik`). Used for short circuit data exchange according to IEC 6090 Default: 0.0 - :minR1ToX1Ratio: Minimum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) min). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :minZ0ToZ1Ratio: Minimum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) min). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :voltageFactor: Voltage factor in pu, which was used to calculate short-circuit current Ik` and power Sk`. Default: 0.0 - :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 - :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 - ''' - - cgmesProfile = RegulatingCondEq.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'governorSCD': [cgmesProfile.EQ.value, ], - 'maxP': [cgmesProfile.EQ.value, ], - 'maxQ': [cgmesProfile.EQ.value, ], - 'minP': [cgmesProfile.EQ.value, ], - 'minQ': [cgmesProfile.EQ.value, ], - 'ikSecond': [cgmesProfile.EQ.value, ], - 'maxInitialSymShCCurrent': [cgmesProfile.EQ.value, ], - 'maxR0ToX0Ratio': [cgmesProfile.EQ.value, ], - 'maxR1ToX1Ratio': [cgmesProfile.EQ.value, ], - 'maxZ0ToZ1Ratio': [cgmesProfile.EQ.value, ], - 'minInitialSymShCCurrent': [cgmesProfile.EQ.value, ], - 'minR0ToX0Ratio': [cgmesProfile.EQ.value, ], - 'minR1ToX1Ratio': [cgmesProfile.EQ.value, ], - 'minZ0ToZ1Ratio': [cgmesProfile.EQ.value, ], - 'voltageFactor': [cgmesProfile.EQ.value, ], - 'referencePriority': [cgmesProfile.SSH.value, ], - 'p': [cgmesProfile.SSH.value, ], - 'q': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegulatingCondEq: \n' + RegulatingCondEq.__doc__ - - def __init__(self, governorSCD = 0.0, maxP = 0.0, maxQ = 0.0, minP = 0.0, minQ = 0.0, ikSecond = False, maxInitialSymShCCurrent = 0.0, maxR0ToX0Ratio = 0.0, maxR1ToX1Ratio = 0.0, maxZ0ToZ1Ratio = 0.0, minInitialSymShCCurrent = 0.0, minR0ToX0Ratio = 0.0, minR1ToX1Ratio = 0.0, minZ0ToZ1Ratio = 0.0, voltageFactor = 0.0, referencePriority = 0, p = 0.0, q = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.governorSCD = governorSCD - self.maxP = maxP - self.maxQ = maxQ - self.minP = minP - self.minQ = minQ - self.ikSecond = ikSecond - self.maxInitialSymShCCurrent = maxInitialSymShCCurrent - self.maxR0ToX0Ratio = maxR0ToX0Ratio - self.maxR1ToX1Ratio = maxR1ToX1Ratio - self.maxZ0ToZ1Ratio = maxZ0ToZ1Ratio - self.minInitialSymShCCurrent = minInitialSymShCCurrent - self.minR0ToX0Ratio = minR0ToX0Ratio - self.minR1ToX1Ratio = minR1ToX1Ratio - self.minZ0ToZ1Ratio = minZ0ToZ1Ratio - self.voltageFactor = voltageFactor - self.referencePriority = referencePriority - self.p = p - self.q = q - - def __str__(self): - str = 'class=ExternalNetworkInjection\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Float.py b/cimpy/cgmes_v2_4_15/Float.py deleted file mode 100644 index 8cc936ee..00000000 --- a/cimpy/cgmes_v2_4_15/Float.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Float(Base): - ''' - A floating point number. The range is unspecified and not limited. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Float\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/FossilFuel.py b/cimpy/cgmes_v2_4_15/FossilFuel.py deleted file mode 100644 index 0da7f207..00000000 --- a/cimpy/cgmes_v2_4_15/FossilFuel.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class FossilFuel(IdentifiedObject): - ''' - The fossil fuel consumed by the non-nuclear thermal generating unit. For example, coal, oil, gas, etc. This a the specific fuels that the generating unit can consume. - - :fossilFuelType: The type of fossil fuel, such as coal, oil, or gas. Default: None - :ThermalGeneratingUnit: A thermal generating unit may have one or more fossil fuels. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'fossilFuelType': [cgmesProfile.EQ.value, ], - 'ThermalGeneratingUnit': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, fossilFuelType = None, ThermalGeneratingUnit = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.fossilFuelType = fossilFuelType - self.ThermalGeneratingUnit = ThermalGeneratingUnit - - def __str__(self): - str = 'class=FossilFuel\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py b/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py deleted file mode 100644 index df41d15e..00000000 --- a/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class FrancisGovernorControlKind(Base): - ''' - Governor control flag for Francis hydro model. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=FrancisGovernorControlKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Frequency.py b/cimpy/cgmes_v2_4_15/Frequency.py deleted file mode 100644 index f95a240c..00000000 --- a/cimpy/cgmes_v2_4_15/Frequency.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Frequency(Base): - ''' - Cycles per second. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Frequency\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/FuelType.py b/cimpy/cgmes_v2_4_15/FuelType.py deleted file mode 100644 index 2090dc64..00000000 --- a/cimpy/cgmes_v2_4_15/FuelType.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class FuelType(Base): - ''' - Type of fuel. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=FuelType\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py b/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py deleted file mode 100644 index 15247b3d..00000000 --- a/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class GenICompensationForGenJ(IdentifiedObject): - ''' - This class provides the resistive and reactive components of compensation for the generator associated with the IEEE Type 2 voltage compensator for current flow out of one of the other generators in the interconnection. - - :SynchronousMachineDynamics: Standard synchronous machine out of which current flow is being compensated for. Default: None - :VcompIEEEType2: The standard IEEE Type 2 voltage compensator of this compensation. Default: None - :rcij: Default: 0.0 - :xcij: Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'SynchronousMachineDynamics': [cgmesProfile.DY.value, ], - 'VcompIEEEType2': [cgmesProfile.DY.value, ], - 'rcij': [cgmesProfile.DY.value, ], - 'xcij': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, SynchronousMachineDynamics = None, VcompIEEEType2 = None, rcij = 0.0, xcij = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SynchronousMachineDynamics = SynchronousMachineDynamics - self.VcompIEEEType2 = VcompIEEEType2 - self.rcij = rcij - self.xcij = xcij - - def __str__(self): - str = 'class=GenICompensationForGenJ\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GeneratingUnit.py b/cimpy/cgmes_v2_4_15/GeneratingUnit.py deleted file mode 100644 index fd5650cd..00000000 --- a/cimpy/cgmes_v2_4_15/GeneratingUnit.py +++ /dev/null @@ -1,85 +0,0 @@ -from .Equipment import Equipment - - -class GeneratingUnit(Equipment): - ''' - A single or set of synchronous machines for converting mechanical power into alternating-current power. For example, individual machines within a set may be defined for scheduling purposes while a single control signal is derived for the set. In this case there would be a GeneratingUnit for each member of the set and an additional GeneratingUnit corresponding to the set. - - :genControlSource: The source of controls for a generating unit. Default: None - :governorSCD: Governor Speed Changer Droop. This is the change in generator power output divided by the change in frequency normalized by the nominal power of the generator and the nominal frequency and expressed in percent and negated. A positive value of speed change droop provides additional generator output upon a drop in frequency. Default: 0.0 - :initialP: Default initial active power which is used to store a powerflow result for the initial active power for this unit in this network configuration. Default: 0.0 - :longPF: Generating unit long term economic participation factor. Default: 0.0 - :maximumAllowableSpinningReserve: Maximum allowable spinning reserve. Spinning reserve will never be considered greater than this value regardless of the current operating point. Default: 0.0 - :maxOperatingP: This is the maximum operating active power limit the dispatcher can enter for this unit. Default: 0.0 - :minOperatingP: This is the minimum operating active power limit the dispatcher can enter for this unit. Default: 0.0 - :nominalP: The nominal power of the generating unit. Used to give precise meaning to percentage based attributes such as the governor speed change droop (governorSCD attribute). The attribute shall be a positive value equal or less than RotatingMachine.ratedS. Default: 0.0 - :ratedGrossMaxP: The unit`s gross rated maximum capacity (book value). Default: 0.0 - :ratedGrossMinP: The gross rated minimum generation level which the unit can safely operate at while delivering power to the transmission grid. Default: 0.0 - :ratedNetMaxP: The net rated maximum capacity determined by subtracting the auxiliary power used to operate the internal plant machinery from the rated gross maximum capacity. Default: 0.0 - :shortPF: Generating unit short term economic participation factor. Default: 0.0 - :startupCost: The initial startup cost incurred for each start of the GeneratingUnit. Default: 0.0 - :variableCost: The variable cost component of production per unit of ActivePower. Default: 0.0 - :totalEfficiency: The efficiency of the unit in converting the fuel into electrical energy. Default: 0.0 - :ControlAreaGeneratingUnit: ControlArea specifications for this generating unit. Default: "list" - :RotatingMachine: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: "list" - :GrossToNetActivePowerCurves: A generating unit may have a gross active power to net active power curve, describing the losses and auxiliary power requirements of the unit. Default: "list" - :normalPF: Generating unit economic participation factor. Default: 0.0 - ''' - - cgmesProfile = Equipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'genControlSource': [cgmesProfile.EQ.value, ], - 'governorSCD': [cgmesProfile.EQ.value, ], - 'initialP': [cgmesProfile.EQ.value, ], - 'longPF': [cgmesProfile.EQ.value, ], - 'maximumAllowableSpinningReserve': [cgmesProfile.EQ.value, ], - 'maxOperatingP': [cgmesProfile.EQ.value, ], - 'minOperatingP': [cgmesProfile.EQ.value, ], - 'nominalP': [cgmesProfile.EQ.value, ], - 'ratedGrossMaxP': [cgmesProfile.EQ.value, ], - 'ratedGrossMinP': [cgmesProfile.EQ.value, ], - 'ratedNetMaxP': [cgmesProfile.EQ.value, ], - 'shortPF': [cgmesProfile.EQ.value, ], - 'startupCost': [cgmesProfile.EQ.value, ], - 'variableCost': [cgmesProfile.EQ.value, ], - 'totalEfficiency': [cgmesProfile.EQ.value, ], - 'ControlAreaGeneratingUnit': [cgmesProfile.EQ.value, ], - 'RotatingMachine': [cgmesProfile.EQ.value, ], - 'GrossToNetActivePowerCurves': [cgmesProfile.EQ.value, ], - 'normalPF': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Equipment: \n' + Equipment.__doc__ - - def __init__(self, genControlSource = None, governorSCD = 0.0, initialP = 0.0, longPF = 0.0, maximumAllowableSpinningReserve = 0.0, maxOperatingP = 0.0, minOperatingP = 0.0, nominalP = 0.0, ratedGrossMaxP = 0.0, ratedGrossMinP = 0.0, ratedNetMaxP = 0.0, shortPF = 0.0, startupCost = 0.0, variableCost = 0.0, totalEfficiency = 0.0, ControlAreaGeneratingUnit = "list", RotatingMachine = "list", GrossToNetActivePowerCurves = "list", normalPF = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.genControlSource = genControlSource - self.governorSCD = governorSCD - self.initialP = initialP - self.longPF = longPF - self.maximumAllowableSpinningReserve = maximumAllowableSpinningReserve - self.maxOperatingP = maxOperatingP - self.minOperatingP = minOperatingP - self.nominalP = nominalP - self.ratedGrossMaxP = ratedGrossMaxP - self.ratedGrossMinP = ratedGrossMinP - self.ratedNetMaxP = ratedNetMaxP - self.shortPF = shortPF - self.startupCost = startupCost - self.variableCost = variableCost - self.totalEfficiency = totalEfficiency - self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit - self.RotatingMachine = RotatingMachine - self.GrossToNetActivePowerCurves = GrossToNetActivePowerCurves - self.normalPF = normalPF - - def __str__(self): - str = 'class=GeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GeneratorControlSource.py b/cimpy/cgmes_v2_4_15/GeneratorControlSource.py deleted file mode 100644 index d88b1528..00000000 --- a/cimpy/cgmes_v2_4_15/GeneratorControlSource.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class GeneratorControlSource(Base): - ''' - The source of controls for a generating unit. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=GeneratorControlSource\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py b/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py deleted file mode 100644 index 00ca0663..00000000 --- a/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class GenericNonLinearLoadModelKind(Base): - ''' - Type of generic non-linear load model. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=GenericNonLinearLoadModelKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GeographicalRegion.py b/cimpy/cgmes_v2_4_15/GeographicalRegion.py deleted file mode 100644 index ff8da430..00000000 --- a/cimpy/cgmes_v2_4_15/GeographicalRegion.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class GeographicalRegion(IdentifiedObject): - ''' - A geographical region of a power system network model. - - :Regions: All sub-geograhpical regions within this geographical region. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'Regions': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Regions = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Regions = Regions - - def __str__(self): - str = 'class=GeographicalRegion\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovCT1.py b/cimpy/cgmes_v2_4_15/GovCT1.py deleted file mode 100644 index b9553221..00000000 --- a/cimpy/cgmes_v2_4_15/GovCT1.py +++ /dev/null @@ -1,133 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovCT1(TurbineGovernorDynamics): - ''' - General model for any prime mover with a PID governor, used primarily for combustion turbine and combined cycle units. This model can be used to represent a variety of prime movers controlled by PID governors. It is suitable, for example, for representation of Additional information on this model is available in the 2012 IEEE report, , section 3.1.2.3 page 3-4 (GGOV1). - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 - :rselect: Feedback signal for droop (Rselect). Typical Value = electricalPower. Default: None - :tpelec: Electrical power transducer time constant (Tpelec) (>0). Typical Value = 1. Default: 0 - :maxerr: Maximum value for speed error signal (maxerr). Typical Value = 0.05. Default: 0.0 - :minerr: Minimum value for speed error signal (minerr). Typical Value = -0.05. Default: 0.0 - :kpgov: Governor proportional gain (Kpgov). Typical Value = 10. Default: 0.0 - :kigov: Governor integral gain (Kigov). Typical Value = 2. Default: 0.0 - :kdgov: Governor derivative gain (Kdgov). Typical Value = 0. Default: 0.0 - :tdgov: Governor derivative controller time constant (Tdgov). Typical Value = 1. Default: 0 - :vmax: Maximum valve position limit (Vmax). Typical Value = 1. Default: 0.0 - :vmin: Minimum valve position limit (Vmin). Typical Value = 0.15. Default: 0.0 - :tact: Actuator time constant (Tact). Typical Value = 0.5. Default: 0 - :kturb: Turbine gain (Kturb) (>0). Typical Value = 1.5. Default: 0.0 - :wfnl: No load fuel flow (Wfnl). Typical Value = 0.2. Default: 0.0 - :tb: Turbine lag time constant (Tb) (>0). Typical Value = 0.5. Default: 0 - :tc: Turbine lead time constant (Tc). Typical Value = 0. Default: 0 - :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical Value = true. Default: False - :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical Value = 0. Default: 0 - :tfload: Load Limiter time constant (Tfload) (>0). Typical Value = 3. Default: 0 - :kpload: Load limiter proportional gain for PI controller (Kpload). Typical Value = 2. Default: 0.0 - :kiload: Load limiter integral gain for PI controller (Kiload). Typical Value = 0.67. Default: 0.0 - :ldref: Load limiter reference value (Ldref). Typical Value = 1. Default: 0.0 - :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical Value = 0. Default: 0.0 - :ropen: Maximum valve opening rate (Ropen). Unit = PU/sec. Typical Value = 0.10. Default: 0.0 - :rclose: Minimum valve closing rate (Rclose). Unit = PU/sec. Typical Value = -0.1. Default: 0.0 - :kimw: Power controller (reset) gain (Kimw). The default value of 0.01 corresponds to a reset time of 100 seconds. A value of 0.001 corresponds to a relatively slow acting load controller. Typical Value = 0.01. Default: 0.0 - :aset: Acceleration limiter setpoint (Aset). Unit = PU/sec. Typical Value = 0.01. Default: 0.0 - :ka: Acceleration limiter gain (Ka). Typical Value = 10. Default: 0.0 - :ta: Acceleration limiter time constant (Ta) (>0). Typical Value = 0.1. Default: 0 - :db: Speed governor dead band in per unit speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical Value = 0. Default: 0.0 - :tsa: Temperature detection lead time constant (Tsa). Typical Value = 4. Default: 0 - :tsb: Temperature detection lag time constant (Tsb). Typical Value = 5. Default: 0 - :rup: Maximum rate of load limit increase (Rup). Typical Value = 99. Default: 0.0 - :rdown: Maximum rate of load limit decrease (Rdown). Typical Value = -99. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 'rselect': [cgmesProfile.DY.value, ], - 'tpelec': [cgmesProfile.DY.value, ], - 'maxerr': [cgmesProfile.DY.value, ], - 'minerr': [cgmesProfile.DY.value, ], - 'kpgov': [cgmesProfile.DY.value, ], - 'kigov': [cgmesProfile.DY.value, ], - 'kdgov': [cgmesProfile.DY.value, ], - 'tdgov': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'tact': [cgmesProfile.DY.value, ], - 'kturb': [cgmesProfile.DY.value, ], - 'wfnl': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'wfspd': [cgmesProfile.DY.value, ], - 'teng': [cgmesProfile.DY.value, ], - 'tfload': [cgmesProfile.DY.value, ], - 'kpload': [cgmesProfile.DY.value, ], - 'kiload': [cgmesProfile.DY.value, ], - 'ldref': [cgmesProfile.DY.value, ], - 'dm': [cgmesProfile.DY.value, ], - 'ropen': [cgmesProfile.DY.value, ], - 'rclose': [cgmesProfile.DY.value, ], - 'kimw': [cgmesProfile.DY.value, ], - 'aset': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'db': [cgmesProfile.DY.value, ], - 'tsa': [cgmesProfile.DY.value, ], - 'tsb': [cgmesProfile.DY.value, ], - 'rup': [cgmesProfile.DY.value, ], - 'rdown': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, rselect = None, tpelec = 0, maxerr = 0.0, minerr = 0.0, kpgov = 0.0, kigov = 0.0, kdgov = 0.0, tdgov = 0, vmax = 0.0, vmin = 0.0, tact = 0, kturb = 0.0, wfnl = 0.0, tb = 0, tc = 0, wfspd = False, teng = 0, tfload = 0, kpload = 0.0, kiload = 0.0, ldref = 0.0, dm = 0.0, ropen = 0.0, rclose = 0.0, kimw = 0.0, aset = 0.0, ka = 0.0, ta = 0, db = 0.0, tsa = 0, tsb = 0, rup = 0.0, rdown = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.rselect = rselect - self.tpelec = tpelec - self.maxerr = maxerr - self.minerr = minerr - self.kpgov = kpgov - self.kigov = kigov - self.kdgov = kdgov - self.tdgov = tdgov - self.vmax = vmax - self.vmin = vmin - self.tact = tact - self.kturb = kturb - self.wfnl = wfnl - self.tb = tb - self.tc = tc - self.wfspd = wfspd - self.teng = teng - self.tfload = tfload - self.kpload = kpload - self.kiload = kiload - self.ldref = ldref - self.dm = dm - self.ropen = ropen - self.rclose = rclose - self.kimw = kimw - self.aset = aset - self.ka = ka - self.ta = ta - self.db = db - self.tsa = tsa - self.tsb = tsb - self.rup = rup - self.rdown = rdown - - def __str__(self): - str = 'class=GovCT1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovCT2.py b/cimpy/cgmes_v2_4_15/GovCT2.py deleted file mode 100644 index 46c3663d..00000000 --- a/cimpy/cgmes_v2_4_15/GovCT2.py +++ /dev/null @@ -1,196 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovCT2(TurbineGovernorDynamics): - ''' - General governor model with frequency-dependent fuel flow limit. This model is a modification of the GovCT1model in order to represent the frequency-dependent fuel flow limit of a specific gas turbine manufacturer. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :r: Permanent droop (R). Typical Value = 0.05. Default: 0.0 - :rselect: Feedback signal for droop (Rselect). Typical Value = electricalPower. Default: None - :tpelec: Electrical power transducer time constant (Tpelec). Typical Value = 2.5. Default: 0 - :maxerr: Maximum value for speed error signal (Maxerr). Typical Value = 1. Default: 0.0 - :minerr: Minimum value for speed error signal (Minerr). Typical Value = -1. Default: 0.0 - :kpgov: Governor proportional gain (Kpgov). Typical Value = 4. Default: 0.0 - :kigov: Governor integral gain (Kigov). Typical Value = 0.45. Default: 0.0 - :kdgov: Governor derivative gain (Kdgov). Typical Value = 0. Default: 0.0 - :tdgov: Governor derivative controller time constant (Tdgov). Typical Value = 1. Default: 0 - :vmax: Maximum valve position limit (Vmax). Typical Value = 1. Default: 0.0 - :vmin: Minimum valve position limit (Vmin). Typical Value = 0.175. Default: 0.0 - :tact: Actuator time constant (Tact). Typical Value = 0.4. Default: 0 - :kturb: Turbine gain (Kturb). Typical Value = 1.9168. Default: 0.0 - :wfnl: No load fuel flow (Wfnl). Typical Value = 0.187. Default: 0.0 - :tb: Turbine lag time constant (Tb). Typical Value = 0.1. Default: 0 - :tc: Turbine lead time constant (Tc). Typical Value = 0. Default: 0 - :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical Value = false. Default: False - :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical Value = 0. Default: 0 - :tfload: Load Limiter time constant (Tfload). Typical Value = 3. Default: 0 - :kpload: Load limiter proportional gain for PI controller (Kpload). Typical Value = 1. Default: 0.0 - :kiload: Load limiter integral gain for PI controller (Kiload). Typical Value = 1. Default: 0.0 - :ldref: Load limiter reference value (Ldref). Typical Value = 1. Default: 0.0 - :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical Value = 0. Default: 0.0 - :ropen: Maximum valve opening rate (Ropen). Unit = PU/sec. Typical Value = 99. Default: 0.0 - :rclose: Minimum valve closing rate (Rclose). Unit = PU/sec. Typical Value = -99. Default: 0.0 - :kimw: Power controller (reset) gain (Kimw). The default value of 0.01 corresponds to a reset time of 100 seconds. A value of 0.001 corresponds to a relatively slow acting load controller. Typical Value = 0. Default: 0.0 - :aset: Acceleration limiter setpoint (Aset). Unit = PU/sec. Typical Value = 10. Default: 0.0 - :ka: Acceleration limiter Gain (Ka). Typical Value = 10. Default: 0.0 - :ta: Acceleration limiter time constant (Ta). Typical Value = 1. Default: 0 - :db: Speed governor dead band in per unit speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical Value = 0. Default: 0.0 - :tsa: Temperature detection lead time constant (Tsa). Typical Value = 0. Default: 0 - :tsb: Temperature detection lag time constant (Tsb). Typical Value = 50. Default: 0 - :rup: Maximum rate of load limit increase (Rup). Typical Value = 99. Default: 0.0 - :rdown: Maximum rate of load limit decrease (Rdown). Typical Value = -99. Default: 0.0 - :prate: Ramp rate for frequency-dependent power limit (Prate). Typical Value = 0.017. Default: 0.0 - :flim1: Frequency threshold 1 (Flim1). Unit = Hz. Typical Value = 59. Default: 0.0 - :plim1: Power limit 1 (Plim1). Typical Value = 0.8325. Default: 0.0 - :flim2: Frequency threshold 2 (Flim2). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim2: Power limit 2 (Plim2). Typical Value = 0. Default: 0.0 - :flim3: Frequency threshold 3 (Flim3). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim3: Power limit 3 (Plim3). Typical Value = 0. Default: 0.0 - :flim4: Frequency threshold 4 (Flim4). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim4: Power limit 4 (Plim4). Typical Value = 0. Default: 0.0 - :flim5: Frequency threshold 5 (Flim5). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim5: Power limit 5 (Plim5). Typical Value = 0. Default: 0.0 - :flim6: Frequency threshold 6 (Flim6). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim6: Power limit 6 (Plim6). Typical Value = 0. Default: 0.0 - :flim7: Frequency threshold 7 (Flim7). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim7: Power limit 7 (Plim7). Typical Value = 0. Default: 0.0 - :flim8: Frequency threshold 8 (Flim8). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim8: Power limit 8 (Plim8). Typical Value = 0. Default: 0.0 - :flim9: Frequency threshold 9 (Flim9). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim9: Power Limit 9 (Plim9). Typical Value = 0. Default: 0.0 - :flim10: Frequency threshold 10 (Flim10). Unit = Hz. Typical Value = 0. Default: 0.0 - :plim10: Power limit 10 (Plim10). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 'rselect': [cgmesProfile.DY.value, ], - 'tpelec': [cgmesProfile.DY.value, ], - 'maxerr': [cgmesProfile.DY.value, ], - 'minerr': [cgmesProfile.DY.value, ], - 'kpgov': [cgmesProfile.DY.value, ], - 'kigov': [cgmesProfile.DY.value, ], - 'kdgov': [cgmesProfile.DY.value, ], - 'tdgov': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'tact': [cgmesProfile.DY.value, ], - 'kturb': [cgmesProfile.DY.value, ], - 'wfnl': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'wfspd': [cgmesProfile.DY.value, ], - 'teng': [cgmesProfile.DY.value, ], - 'tfload': [cgmesProfile.DY.value, ], - 'kpload': [cgmesProfile.DY.value, ], - 'kiload': [cgmesProfile.DY.value, ], - 'ldref': [cgmesProfile.DY.value, ], - 'dm': [cgmesProfile.DY.value, ], - 'ropen': [cgmesProfile.DY.value, ], - 'rclose': [cgmesProfile.DY.value, ], - 'kimw': [cgmesProfile.DY.value, ], - 'aset': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'db': [cgmesProfile.DY.value, ], - 'tsa': [cgmesProfile.DY.value, ], - 'tsb': [cgmesProfile.DY.value, ], - 'rup': [cgmesProfile.DY.value, ], - 'rdown': [cgmesProfile.DY.value, ], - 'prate': [cgmesProfile.DY.value, ], - 'flim1': [cgmesProfile.DY.value, ], - 'plim1': [cgmesProfile.DY.value, ], - 'flim2': [cgmesProfile.DY.value, ], - 'plim2': [cgmesProfile.DY.value, ], - 'flim3': [cgmesProfile.DY.value, ], - 'plim3': [cgmesProfile.DY.value, ], - 'flim4': [cgmesProfile.DY.value, ], - 'plim4': [cgmesProfile.DY.value, ], - 'flim5': [cgmesProfile.DY.value, ], - 'plim5': [cgmesProfile.DY.value, ], - 'flim6': [cgmesProfile.DY.value, ], - 'plim6': [cgmesProfile.DY.value, ], - 'flim7': [cgmesProfile.DY.value, ], - 'plim7': [cgmesProfile.DY.value, ], - 'flim8': [cgmesProfile.DY.value, ], - 'plim8': [cgmesProfile.DY.value, ], - 'flim9': [cgmesProfile.DY.value, ], - 'plim9': [cgmesProfile.DY.value, ], - 'flim10': [cgmesProfile.DY.value, ], - 'plim10': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, rselect = None, tpelec = 0, maxerr = 0.0, minerr = 0.0, kpgov = 0.0, kigov = 0.0, kdgov = 0.0, tdgov = 0, vmax = 0.0, vmin = 0.0, tact = 0, kturb = 0.0, wfnl = 0.0, tb = 0, tc = 0, wfspd = False, teng = 0, tfload = 0, kpload = 0.0, kiload = 0.0, ldref = 0.0, dm = 0.0, ropen = 0.0, rclose = 0.0, kimw = 0.0, aset = 0.0, ka = 0.0, ta = 0, db = 0.0, tsa = 0, tsb = 0, rup = 0.0, rdown = 0.0, prate = 0.0, flim1 = 0.0, plim1 = 0.0, flim2 = 0.0, plim2 = 0.0, flim3 = 0.0, plim3 = 0.0, flim4 = 0.0, plim4 = 0.0, flim5 = 0.0, plim5 = 0.0, flim6 = 0.0, plim6 = 0.0, flim7 = 0.0, plim7 = 0.0, flim8 = 0.0, plim8 = 0.0, flim9 = 0.0, plim9 = 0.0, flim10 = 0.0, plim10 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.rselect = rselect - self.tpelec = tpelec - self.maxerr = maxerr - self.minerr = minerr - self.kpgov = kpgov - self.kigov = kigov - self.kdgov = kdgov - self.tdgov = tdgov - self.vmax = vmax - self.vmin = vmin - self.tact = tact - self.kturb = kturb - self.wfnl = wfnl - self.tb = tb - self.tc = tc - self.wfspd = wfspd - self.teng = teng - self.tfload = tfload - self.kpload = kpload - self.kiload = kiload - self.ldref = ldref - self.dm = dm - self.ropen = ropen - self.rclose = rclose - self.kimw = kimw - self.aset = aset - self.ka = ka - self.ta = ta - self.db = db - self.tsa = tsa - self.tsb = tsb - self.rup = rup - self.rdown = rdown - self.prate = prate - self.flim1 = flim1 - self.plim1 = plim1 - self.flim2 = flim2 - self.plim2 = plim2 - self.flim3 = flim3 - self.plim3 = plim3 - self.flim4 = flim4 - self.plim4 = plim4 - self.flim5 = flim5 - self.plim5 = plim5 - self.flim6 = flim6 - self.plim6 = plim6 - self.flim7 = flim7 - self.plim7 = plim7 - self.flim8 = flim8 - self.plim8 = plim8 - self.flim9 = flim9 - self.plim9 = plim9 - self.flim10 = flim10 - self.plim10 = plim10 - - def __str__(self): - str = 'class=GovCT2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGAST.py b/cimpy/cgmes_v2_4_15/GovGAST.py deleted file mode 100644 index 82d54d82..00000000 --- a/cimpy/cgmes_v2_4_15/GovGAST.py +++ /dev/null @@ -1,58 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGAST(TurbineGovernorDynamics): - ''' - Single shaft gas turbine. - - :mwbase: Base for power values (MWbase) (> 0). Default: 0.0 - :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 - :t1: Governor mechanism time constant (T1). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical Value = 0.5. Default: 0 - :t2: Turbine power time constant (T2). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of a the free power turbine of an aero-derivative unit, for example. Typical Value = 0.5. Default: 0 - :t3: Turbine exhaust temperature time constant (T3). Typical Value = 3. Default: 0 - :at: Ambient temperature load limit (Load Limit). Typical Value = 1. Default: 0.0 - :kt: Temperature limiter gain (Kt). Typical Value = 3. Default: 0.0 - :vmax: Maximum turbine power, PU of MWbase (Vmax). Typical Value = 1. Default: 0.0 - :vmin: Minimum turbine power, PU of MWbase (Vmin). Typical Value = 0. Default: 0.0 - :dturb: Turbine damping factor (Dturb). Typical Value = 0.18. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'at': [cgmesProfile.DY.value, ], - 'kt': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, t1 = 0, t2 = 0, t3 = 0, at = 0.0, kt = 0.0, vmax = 0.0, vmin = 0.0, dturb = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.at = at - self.kt = kt - self.vmax = vmax - self.vmin = vmin - self.dturb = dturb - - def __str__(self): - str = 'class=GovGAST\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGAST1.py b/cimpy/cgmes_v2_4_15/GovGAST1.py deleted file mode 100644 index 1b9d9884..00000000 --- a/cimpy/cgmes_v2_4_15/GovGAST1.py +++ /dev/null @@ -1,130 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGAST1(TurbineGovernorDynamics): - ''' - Modified single shaft gas turbine. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 - :t1: Governor mechanism time constant (T1). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical Value = 0.5. Default: 0 - :t2: Turbine power time constant (T2). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of the free power turbine of an aero-derivative unit, for example. Typical Value = 0.5. Default: 0 - :t3: Turbine exhaust temperature time constant (T3). T3 represents delay in the exhaust temperature and load limiting system. Typical Value = 3. Default: 0 - :lmax: Ambient temperature load limit (Lmax). Lmax is the turbine power output corresponding to the limiting exhaust gas temperature. Typical Value = 1. Default: 0.0 - :kt: Temperature limiter gain (Kt). Typical Value = 3. Default: 0.0 - :vmax: Maximum turbine power, PU of MWbase (Vmax). Typical Value = 1. Default: 0.0 - :vmin: Minimum turbine power, PU of MWbase (Vmin). Typical Value = 0. Default: 0.0 - :fidle: Fuel flow at zero power output (Fidle). Typical Value = 0.18. Default: 0.0 - :rmax: Maximum fuel valve opening rate (Rmax). Unit = PU/sec. Typical Value = 1. Default: 0.0 - :loadinc: Valve position change allowed at fast rate (Loadinc). Typical Value = 0.05. Default: 0.0 - :tltr: Valve position averaging time constant (Tltr). Typical Value = 10. Default: 0 - :ltrate: Maximum long term fuel valve opening rate (Ltrate). Typical Value = 0.02. Default: 0.0 - :a: Turbine power time constant numerator scale factor (a). Typical Value = 0.8. Default: 0.0 - :b: Turbine power time constant denominator scale factor (b). Typical Value = 1. Default: 0.0 - :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2,PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - :ka: Governor gain (Ka). Typical Value = 0. Default: 0.0 - :t4: Governor lead time constant (T4). Typical Value = 0. Default: 0 - :t5: Governor lag time constant (T5). Typical Value = 0. Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'lmax': [cgmesProfile.DY.value, ], - 'kt': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'fidle': [cgmesProfile.DY.value, ], - 'rmax': [cgmesProfile.DY.value, ], - 'loadinc': [cgmesProfile.DY.value, ], - 'tltr': [cgmesProfile.DY.value, ], - 'ltrate': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - 'b': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, t1 = 0, t2 = 0, t3 = 0, lmax = 0.0, kt = 0.0, vmax = 0.0, vmin = 0.0, fidle = 0.0, rmax = 0.0, loadinc = 0.0, tltr = 0, ltrate = 0.0, a = 0.0, b = 0.0, db1 = 0.0, eps = 0.0, db2 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, ka = 0.0, t4 = 0, t5 = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.lmax = lmax - self.kt = kt - self.vmax = vmax - self.vmin = vmin - self.fidle = fidle - self.rmax = rmax - self.loadinc = loadinc - self.tltr = tltr - self.ltrate = ltrate - self.a = a - self.b = b - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - self.ka = ka - self.t4 = t4 - self.t5 = t5 - - def __str__(self): - str = 'class=GovGAST1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGAST2.py b/cimpy/cgmes_v2_4_15/GovGAST2.py deleted file mode 100644 index b235d68e..00000000 --- a/cimpy/cgmes_v2_4_15/GovGAST2.py +++ /dev/null @@ -1,124 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGAST2(TurbineGovernorDynamics): - ''' - Gas turbine model. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :w: Governor gain (1/droop) on turbine rating (W). Default: 0.0 - :x: Governor lead time constant (X). Default: 0 - :y: Governor lag time constant (Y) (>0). Default: 0 - :z: Governor mode (Z). true = Droop false = ISO. Default: False - :etd: Turbine and exhaust delay (Etd). Default: 0 - :tcd: Compressor discharge time constant (Tcd). Default: 0 - :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 - :t: Fuel Control Time Constant (T). Default: 0 - :tmax: Maximum Turbine limit (Tmax). Default: 0.0 - :tmin: Minimum Turbine limit (Tmin). Default: 0.0 - :ecr: Combustion reaction time delay (Ecr). Default: 0 - :k3: Ratio of Fuel Adjustment (K3). Default: 0.0 - :a: Valve positioner (A). Default: 0.0 - :b: Valve positioner (B). Default: 0.0 - :c: Valve positioner (C). Default: 0.0 - :tf: Fuel system time constant (Tf). Default: 0 - :kf: Fuel system feedback (Kf). Default: 0.0 - :k5: Gain of radiation shield (K5). Default: 0.0 - :k4: Gain of radiation shield (K4). Default: 0.0 - :t3: Radiation shield time constant (T3). Default: 0 - :t4: Thermocouple time constant (T4). Default: 0 - :tt: Temperature controller integration rate (Tt). Default: 0 - :t5: Temperature control time constant (T5). Default: 0 - :af1: Exhaust temperature Parameter (Af1). Unit = per unit temperature. Based on temperature in degrees C. Default: 0.0 - :bf1: (Bf1). Bf1 = E(1-w) where E (speed sensitivity coefficient) is 0.55 to 0.65 x Tr. Unit = per unit temperature. Based on temperature in degrees C. Default: 0.0 - :af2: Coefficient equal to 0.5(1-speed) (Af2). Default: 0.0 - :bf2: Turbine Torque Coefficient K (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 - :cf2: Coefficient defining fuel flow where power output is 0% (Cf2). Synchronous but no output. Typically 0.23 x K (23% fuel flow). Default: 0.0 - :tr: Rated temperature (Tr). Unit = [SYMBOL REMOVED]C depending on parameters Af1 and Bf1. Default: 0.0 - :k6: Minimum fuel flow (K6). Default: 0.0 - :tc: Temperature control (Tc). Unit = [SYMBOL REMOVED]F or [SYMBOL REMOVED]C depending on constants Af1 and Bf1. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'w': [cgmesProfile.DY.value, ], - 'x': [cgmesProfile.DY.value, ], - 'y': [cgmesProfile.DY.value, ], - 'z': [cgmesProfile.DY.value, ], - 'etd': [cgmesProfile.DY.value, ], - 'tcd': [cgmesProfile.DY.value, ], - 'trate': [cgmesProfile.DY.value, ], - 't': [cgmesProfile.DY.value, ], - 'tmax': [cgmesProfile.DY.value, ], - 'tmin': [cgmesProfile.DY.value, ], - 'ecr': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - 'b': [cgmesProfile.DY.value, ], - 'c': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'k5': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 'af1': [cgmesProfile.DY.value, ], - 'bf1': [cgmesProfile.DY.value, ], - 'af2': [cgmesProfile.DY.value, ], - 'bf2': [cgmesProfile.DY.value, ], - 'cf2': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'k6': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, w = 0.0, x = 0, y = 0, z = False, etd = 0, tcd = 0, trate = 0.0, t = 0, tmax = 0.0, tmin = 0.0, ecr = 0, k3 = 0.0, a = 0.0, b = 0.0, c = 0.0, tf = 0, kf = 0.0, k5 = 0.0, k4 = 0.0, t3 = 0, t4 = 0, tt = 0, t5 = 0, af1 = 0.0, bf1 = 0.0, af2 = 0.0, bf2 = 0.0, cf2 = 0.0, tr = 0.0, k6 = 0.0, tc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.w = w - self.x = x - self.y = y - self.z = z - self.etd = etd - self.tcd = tcd - self.trate = trate - self.t = t - self.tmax = tmax - self.tmin = tmin - self.ecr = ecr - self.k3 = k3 - self.a = a - self.b = b - self.c = c - self.tf = tf - self.kf = kf - self.k5 = k5 - self.k4 = k4 - self.t3 = t3 - self.t4 = t4 - self.tt = tt - self.t5 = t5 - self.af1 = af1 - self.bf1 = bf1 - self.af2 = af2 - self.bf2 = bf2 - self.cf2 = cf2 - self.tr = tr - self.k6 = k6 - self.tc = tc - - def __str__(self): - str = 'class=GovGAST2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGAST3.py b/cimpy/cgmes_v2_4_15/GovGAST3.py deleted file mode 100644 index e1092d80..00000000 --- a/cimpy/cgmes_v2_4_15/GovGAST3.py +++ /dev/null @@ -1,91 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGAST3(TurbineGovernorDynamics): - ''' - Generic turbogas with acceleration and temperature controller. - - :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 - :tg: Time constant of speed governor (Tg). Typical Value = 0.05. Default: 0 - :rcmx: Maximum fuel flow (RCMX). Typical Value = 1. Default: 0.0 - :rcmn: Minimum fuel flow (RCMN). Typical Value = -0.1. Default: 0.0 - :ky: Coefficient of transfer function of fuel valve positioner (Ky). Typical Value = 1. Default: 0.0 - :ty: Time constant of fuel valve positioner (Ty). Typical Value = 0.2. Default: 0 - :tac: Fuel control time constant (Tac). Typical Value = 0.1. Default: 0 - :kac: Fuel system feedback (K). Typical Value = 0. Default: 0.0 - :tc: Compressor discharge volume time constant (Tc). Typical Value = 0.2. Default: 0 - :bca: Acceleration limit set-point (Bca). Unit = 1/s. Typical Value = 0.01. Default: 0.0 - :kca: Acceleration control integral gain (Kca). Unit = 1/s. Typical Value = 100. Default: 0.0 - :dtc: Exhaust temperature variation due to fuel flow increasing from 0 to 1 PU (deltaTc). Typical Value = 390. Default: 0.0 - :ka: Minimum fuel flow (Ka). Typical Value = 0.23. Default: 0.0 - :tsi: Time constant of radiation shield (Tsi). Typical Value = 15. Default: 0 - :ksi: Gain of radiation shield (Ksi). Typical Value = 0.8. Default: 0.0 - :ttc: Time constant of thermocouple (Ttc). Typical Value = 2.5. Default: 0 - :tfen: Turbine rated exhaust temperature correspondent to Pm=1 PU (Tfen). Typical Value = 540. Default: 0.0 - :td: Temperature controller derivative gain (Td). Typical Value = 3.3. Default: 0 - :tt: Temperature controller integration rate (Tt). Typical Value = 250. Default: 0.0 - :mxef: Fuel flow maximum positive error value (MX). Typical Value = 0.05. Default: 0.0 - :mnef: Fuel flow maximum negative error value (MN). Typical Value = -0.05. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'bp': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'rcmx': [cgmesProfile.DY.value, ], - 'rcmn': [cgmesProfile.DY.value, ], - 'ky': [cgmesProfile.DY.value, ], - 'ty': [cgmesProfile.DY.value, ], - 'tac': [cgmesProfile.DY.value, ], - 'kac': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'bca': [cgmesProfile.DY.value, ], - 'kca': [cgmesProfile.DY.value, ], - 'dtc': [cgmesProfile.DY.value, ], - 'ka': [cgmesProfile.DY.value, ], - 'tsi': [cgmesProfile.DY.value, ], - 'ksi': [cgmesProfile.DY.value, ], - 'ttc': [cgmesProfile.DY.value, ], - 'tfen': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'mxef': [cgmesProfile.DY.value, ], - 'mnef': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, bp = 0.0, tg = 0, rcmx = 0.0, rcmn = 0.0, ky = 0.0, ty = 0, tac = 0, kac = 0.0, tc = 0, bca = 0.0, kca = 0.0, dtc = 0.0, ka = 0.0, tsi = 0, ksi = 0.0, ttc = 0, tfen = 0.0, td = 0, tt = 0.0, mxef = 0.0, mnef = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.bp = bp - self.tg = tg - self.rcmx = rcmx - self.rcmn = rcmn - self.ky = ky - self.ty = ty - self.tac = tac - self.kac = kac - self.tc = tc - self.bca = bca - self.kca = kca - self.dtc = dtc - self.ka = ka - self.tsi = tsi - self.ksi = ksi - self.ttc = ttc - self.tfen = tfen - self.td = td - self.tt = tt - self.mxef = mxef - self.mnef = mnef - - def __str__(self): - str = 'class=GovGAST3\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGAST4.py b/cimpy/cgmes_v2_4_15/GovGAST4.py deleted file mode 100644 index 0c40daaa..00000000 --- a/cimpy/cgmes_v2_4_15/GovGAST4.py +++ /dev/null @@ -1,61 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGAST4(TurbineGovernorDynamics): - ''' - Generic turbogas. - - :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 - :tv: Time constant of fuel valve positioner (T). Typical Value = 0.1. Default: 0 - :ta: Maximum gate opening velocity (T). Typical Value = 3. Default: 0 - :tc: Maximum gate closing velocity (T). Typical Value = 0.5. Default: 0 - :tcm: Fuel control time constant (T). Typical Value = 0.1. Default: 0 - :ktm: Compressor gain (K). Typical Value = 0. Default: 0.0 - :tm: Compressor discharge volume time constant (T). Typical Value = 0.2. Default: 0 - :rymx: Maximum valve opening (RYMX). Typical Value = 1.1. Default: 0.0 - :rymn: Minimum valve opening (RYMN). Typical Value = 0. Default: 0.0 - :mxef: Fuel flow maximum positive error value (MX). Typical Value = 0.05. Default: 0.0 - :mnef: Fuel flow maximum negative error value (MN). Typical Value = -0.05. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'bp': [cgmesProfile.DY.value, ], - 'tv': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'tcm': [cgmesProfile.DY.value, ], - 'ktm': [cgmesProfile.DY.value, ], - 'tm': [cgmesProfile.DY.value, ], - 'rymx': [cgmesProfile.DY.value, ], - 'rymn': [cgmesProfile.DY.value, ], - 'mxef': [cgmesProfile.DY.value, ], - 'mnef': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, bp = 0.0, tv = 0, ta = 0, tc = 0, tcm = 0, ktm = 0.0, tm = 0, rymx = 0.0, rymn = 0.0, mxef = 0.0, mnef = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.bp = bp - self.tv = tv - self.ta = ta - self.tc = tc - self.tcm = tcm - self.ktm = ktm - self.tm = tm - self.rymx = rymx - self.rymn = rymn - self.mxef = mxef - self.mnef = mnef - - def __str__(self): - str = 'class=GovGAST4\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovGASTWD.py b/cimpy/cgmes_v2_4_15/GovGASTWD.py deleted file mode 100644 index 6ac64b34..00000000 --- a/cimpy/cgmes_v2_4_15/GovGASTWD.py +++ /dev/null @@ -1,127 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovGASTWD(TurbineGovernorDynamics): - ''' - Woodward Gas turbine governor model. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :kdroop: (Kdroop). Default: 0.0 - :kp: PID Proportional gain (Kp). Default: 0.0 - :ki: Isochronous Governor Gain (Ki). Default: 0.0 - :kd: Drop Governor Gain (Kd). Default: 0.0 - :etd: Turbine and exhaust delay (Etd). Default: 0 - :tcd: Compressor discharge time constant (Tcd). Default: 0 - :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 - :t: Fuel Control Time Constant (T). Default: 0 - :tmax: Maximum Turbine limit (Tmax). Default: 0.0 - :tmin: Minimum Turbine limit (Tmin). Default: 0.0 - :ecr: Combustion reaction time delay (Ecr). Default: 0 - :k3: Ratio of Fuel Adjustment (K3). Default: 0.0 - :a: Valve positioner (). Default: 0.0 - :b: Valve positioner (). Default: 0.0 - :c: Valve positioner (). Default: 0.0 - :tf: Fuel system time constant (Tf). Default: 0 - :kf: Fuel system feedback (Kf). Default: 0.0 - :k5: Gain of radiation shield (K5). Default: 0.0 - :k4: Gain of radiation shield (K4). Default: 0.0 - :t3: Radiation shield time constant (T3). Default: 0 - :t4: Thermocouple time constant (T4). Default: 0 - :tt: Temperature controller integration rate (Tt). Default: 0 - :t5: Temperature control time constant (T5). Default: 0 - :af1: Exhaust temperature Parameter (Af1). Default: 0.0 - :bf1: (Bf1). Bf1 = E(1-w) where E (speed sensitivity coefficient) is 0.55 to 0.65 x Tr. Default: 0.0 - :af2: Coefficient equal to 0.5(1-speed) (Af2). Default: 0.0 - :bf2: Turbine Torque Coefficient K (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 - :cf2: Coefficient defining fuel flow where power output is 0% (Cf2). Synchronous but no output. Typically 0.23 x K(23% fuel flow). Default: 0.0 - :tr: Rated temperature (Tr). Default: 0.0 - :k6: Minimum fuel flow (K6). Default: 0.0 - :tc: Temperature control (Tc). Default: 0.0 - :td: Power transducer time constant (Td). Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'kdroop': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'etd': [cgmesProfile.DY.value, ], - 'tcd': [cgmesProfile.DY.value, ], - 'trate': [cgmesProfile.DY.value, ], - 't': [cgmesProfile.DY.value, ], - 'tmax': [cgmesProfile.DY.value, ], - 'tmin': [cgmesProfile.DY.value, ], - 'ecr': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - 'b': [cgmesProfile.DY.value, ], - 'c': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'k5': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 'af1': [cgmesProfile.DY.value, ], - 'bf1': [cgmesProfile.DY.value, ], - 'af2': [cgmesProfile.DY.value, ], - 'bf2': [cgmesProfile.DY.value, ], - 'cf2': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'k6': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, kdroop = 0.0, kp = 0.0, ki = 0.0, kd = 0.0, etd = 0, tcd = 0, trate = 0.0, t = 0, tmax = 0.0, tmin = 0.0, ecr = 0, k3 = 0.0, a = 0.0, b = 0.0, c = 0.0, tf = 0, kf = 0.0, k5 = 0.0, k4 = 0.0, t3 = 0, t4 = 0, tt = 0, t5 = 0, af1 = 0.0, bf1 = 0.0, af2 = 0.0, bf2 = 0.0, cf2 = 0.0, tr = 0.0, k6 = 0.0, tc = 0.0, td = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.kdroop = kdroop - self.kp = kp - self.ki = ki - self.kd = kd - self.etd = etd - self.tcd = tcd - self.trate = trate - self.t = t - self.tmax = tmax - self.tmin = tmin - self.ecr = ecr - self.k3 = k3 - self.a = a - self.b = b - self.c = c - self.tf = tf - self.kf = kf - self.k5 = k5 - self.k4 = k4 - self.t3 = t3 - self.t4 = t4 - self.tt = tt - self.t5 = t5 - self.af1 = af1 - self.bf1 = bf1 - self.af2 = af2 - self.bf2 = bf2 - self.cf2 = cf2 - self.tr = tr - self.k6 = k6 - self.tc = tc - self.td = td - - def __str__(self): - str = 'class=GovGASTWD\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydro1.py b/cimpy/cgmes_v2_4_15/GovHydro1.py deleted file mode 100644 index 6f30fc59..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydro1.py +++ /dev/null @@ -1,70 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydro1(TurbineGovernorDynamics): - ''' - Basic Hydro turbine governor model. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :rperm: Permanent droop (R) (>0). Typical Value = 0.04. Default: 0.0 - :rtemp: Temporary droop (r) (>R). Typical Value = 0.3. Default: 0.0 - :tr: Washout time constant (Tr) (>0). Typical Value = 5. Default: 0 - :tf: Filter time constant () (>0). Typical Value = 0.05. Default: 0 - :tg: Gate servo time constant (Tg) (>0). Typical Value = 0.5. Default: 0 - :velm: Maximum gate velocity (Vlem) (>0). Typical Value = 0.2. Default: 0.0 - :gmax: Maximum gate opening (Gmax) (>0). Typical Value = 1. Default: 0.0 - :gmin: Minimum gate opening (Gmin) (>=0). Typical Value = 0. Default: 0.0 - :tw: Water inertia time constant (Tw) (>0). Typical Value = 1. Default: 0 - :at: Turbine gain (At) (>0). Typical Value = 1.2. Default: 0.0 - :dturb: Turbine damping factor (Dturb) (>=0). Typical Value = 0.5. Default: 0.0 - :qnl: No-load flow at nominal head (qnl) (>=0). Typical Value = 0.08. Default: 0.0 - :hdam: Turbine nominal head (hdam). Typical Value = 1. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'rperm': [cgmesProfile.DY.value, ], - 'rtemp': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'velm': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'at': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - 'qnl': [cgmesProfile.DY.value, ], - 'hdam': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, rperm = 0.0, rtemp = 0.0, tr = 0, tf = 0, tg = 0, velm = 0.0, gmax = 0.0, gmin = 0.0, tw = 0, at = 0.0, dturb = 0.0, qnl = 0.0, hdam = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.rperm = rperm - self.rtemp = rtemp - self.tr = tr - self.tf = tf - self.tg = tg - self.velm = velm - self.gmax = gmax - self.gmin = gmin - self.tw = tw - self.at = at - self.dturb = dturb - self.qnl = qnl - self.hdam = hdam - - def __str__(self): - str = 'class=GovHydro1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydro2.py b/cimpy/cgmes_v2_4_15/GovHydro2.py deleted file mode 100644 index 00dff2b9..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydro2.py +++ /dev/null @@ -1,115 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydro2(TurbineGovernorDynamics): - ''' - IEEE hydro turbine governor model represents plants with straightforward penstock configurations and hydraulic-dashpot governors. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :tg: Gate servo time constant (Tg). Typical Value = 0.5. Default: 0 - :tp: Pilot servo valve time constant (Tp). Typical Value = 0.03. Default: 0 - :uo: Maximum gate opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 - :uc: Maximum gate closing velocity (Uc) (<0). Unit = PU/sec. Typical Value = -0.1. Default: 0.0 - :pmax: Maximum gate opening (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening; (). Typical Value = 0. Default: 0.0 - :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0.0 - :rtemp: Temporary droop (Rtemp). Typical Value = 0.5. Default: 0.0 - :tr: Dashpot time constant (Tr). Typical Value = 12. Default: 0 - :tw: Water inertia time constant (Tw). Typical Value = 2. Default: 0 - :kturb: Turbine gain (Kturb). Typical Value = 1. Default: 0.0 - :aturb: Turbine numerator multiplier (Aturb). Typical Value = -1. Default: 0.0 - :bturb: Turbine denominator multiplier (Bturb). Typical Value = 0.5. Default: 0.0 - :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional deadband (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'rperm': [cgmesProfile.DY.value, ], - 'rtemp': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'kturb': [cgmesProfile.DY.value, ], - 'aturb': [cgmesProfile.DY.value, ], - 'bturb': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, tg = 0, tp = 0, uo = 0.0, uc = 0.0, pmax = 0.0, pmin = 0.0, rperm = 0.0, rtemp = 0.0, tr = 0, tw = 0, kturb = 0.0, aturb = 0.0, bturb = 0.0, db1 = 0.0, eps = 0.0, db2 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.tg = tg - self.tp = tp - self.uo = uo - self.uc = uc - self.pmax = pmax - self.pmin = pmin - self.rperm = rperm - self.rtemp = rtemp - self.tr = tr - self.tw = tw - self.kturb = kturb - self.aturb = aturb - self.bturb = bturb - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovHydro2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydro3.py b/cimpy/cgmes_v2_4_15/GovHydro3.py deleted file mode 100644 index 9e4f6ec1..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydro3.py +++ /dev/null @@ -1,136 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydro3(TurbineGovernorDynamics): - ''' - Modified IEEE Hydro Governor-Turbine Model. This model differs from that defined in the IEEE modeling guideline paper in that the limits on gate position and velocity do not permit "wind up" of the upstream signals. - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 - :governorControl: Governor control flag (Cflag). true = PID control is active false = double derivative control is active. Typical Value = true. Default: False - :rgate: Steady-state droop, PU, for governor output feedback (Rgate). Typical Value = 0. Default: 0.0 - :relec: Steady-state droop, PU, for electrical power feedback (Relec). Typical Value = 0.05. Default: 0.0 - :td: Input filter time constant (Td). Typical Value = 0.05. Default: 0 - :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 - :tp: Gate servo time constant (Tp). Typical Value = 0.05. Default: 0 - :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.2. Default: 0.0 - :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.2. Default: 0.0 - :k1: Derivative gain (K1). Typical Value = 0.01. Default: 0.0 - :k2: Double derivative gain, if Cflag = -1 (K2). Typical Value = 2.5. Default: 0.0 - :ki: Integral gain (Ki). Typical Value = 0.5. Default: 0.0 - :kg: Gate servo gain (Kg). Typical Value = 2. Default: 0.0 - :tt: Power feedback time constant (Tt). Typical Value = 0.2. Default: 0 - :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :tw: Water inertia time constant (Tw). Typical Value = 1. Default: 0 - :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 - :dturb: Turbine damping factor (Dturb). Typical Value = 0.2. Default: 0.0 - :qnl: No-load turbine flow at nominal head (Qnl). Typical Value = 0.08. Default: 0.0 - :h0: Turbine nominal head (H0). Typical Value = 1. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'governorControl': [cgmesProfile.DY.value, ], - 'rgate': [cgmesProfile.DY.value, ], - 'relec': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'velop': [cgmesProfile.DY.value, ], - 'velcl': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'at': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - 'qnl': [cgmesProfile.DY.value, ], - 'h0': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, pmax = 0.0, pmin = 0.0, governorControl = False, rgate = 0.0, relec = 0.0, td = 0, tf = 0, tp = 0, velop = 0.0, velcl = 0.0, k1 = 0.0, k2 = 0.0, ki = 0.0, kg = 0.0, tt = 0, db1 = 0.0, eps = 0.0, db2 = 0.0, tw = 0, at = 0.0, dturb = 0.0, qnl = 0.0, h0 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.pmax = pmax - self.pmin = pmin - self.governorControl = governorControl - self.rgate = rgate - self.relec = relec - self.td = td - self.tf = tf - self.tp = tp - self.velop = velop - self.velcl = velcl - self.k1 = k1 - self.k2 = k2 - self.ki = ki - self.kg = kg - self.tt = tt - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.tw = tw - self.at = at - self.dturb = dturb - self.qnl = qnl - self.h0 = h0 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovHydro3\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydro4.py b/cimpy/cgmes_v2_4_15/GovHydro4.py deleted file mode 100644 index ebdc5205..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydro4.py +++ /dev/null @@ -1,142 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydro4(TurbineGovernorDynamics): - ''' - Hydro turbine and governor. Represents plants with straight-forward penstock configurations and hydraulic governors of traditional 'dashpot' type. This model can be used to represent simple, Francis, Pelton or Kaplan turbines. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :tg: Gate servo time constant (Tg) (>0). Typical Value = 0.5. Default: 0 - :tp: Pilot servo time constant (Tp). Typical Value = 0.1. Default: 0 - :uo: Max gate opening velocity (Uo). Typical Vlaue = 0.2. Default: 0.0 - :uc: Max gate closing velocity (Uc). Typical Value = 0.2. Default: 0.0 - :gmax: Maximum gate opening, PU of MWbase (Gmax). Typical Value = 1. Default: 0.0 - :gmin: Minimum gate opening, PU of MWbase (Gmin). Typical Value = 0. Default: 0.0 - :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0 - :rtemp: Temporary droop (Rtemp). Typical Value = 0.3. Default: 0 - :tr: Dashpot time constant (Tr) (>0). Typical Value = 5. Default: 0 - :tw: Water inertia time constant (Tw) (>0). Typical Value = 1. Default: 0 - :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 - :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Typical Value = 0.5. Typical Value Francis = 1.1, Kaplan = 1.1. Default: 0.0 - :hdam: Head available at dam (hdam). Typical Value = 1. Default: 0.0 - :qn1: No-load flow at nominal head (Qnl). Typical Value = 0.08. Typical Value Francis = 0, Kaplan = 0. Default: 0.0 - :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :gv0: Nonlinear gain point 0, PU gv (Gv0). Typical Value = 0. Typical Value Francis = 0.1, Kaplan = 0.1. Default: 0.0 - :pgv0: Nonlinear gain point 0, PU power (Pgv0). Typical Value = 0. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Typical Value Francis = 0.4, Kaplan = 0.4. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Typical Value Francis = 0.42, Kaplan = 0.35. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Typical Value Francis = 0.5, Kaplan = 0.5. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Typical Value Francis = 0.56, Kaplan = 0.468. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Typical Value Francis = 0.7, Kaplan = 0.7. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Typical Value Francis = 0.8, Kaplan = 0.796. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Typical Value Francis = 0.8, Kaplan = 0.8. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Typical Value Francis = 0.9, Kaplan = 0.917. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Typical Value Francis = 0.9, Kaplan = 0.9. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Typical Value Francis = 0.97, Kaplan = 0.99. Default: 0.0 - :bgv0: Kaplan blade servo point 0 (Bgv0). Typical Value = 0. Default: 0.0 - :bgv1: Kaplan blade servo point 1 (Bgv1). Typical Value = 0. Default: 0.0 - :bgv2: Kaplan blade servo point 2 (Bgv2). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.1. Default: 0.0 - :bgv3: Kaplan blade servo point 3 (Bgv3). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.667. Default: 0.0 - :bgv4: Kaplan blade servo point 4 (Bgv4). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.9. Default: 0.0 - :bgv5: Kaplan blade servo point 5 (Bgv5). Typical Value = 0. Typical Value Francis = 0, Kaplan = 1. Default: 0.0 - :bmax: Maximum blade adjustment factor (Bmax). Typical Value = 0. Typical Value Francis = 0, Kaplan = 1.1276. Default: 0.0 - :tblade: Blade servo time constant (Tblade). Typical Value = 100. Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'rperm': [cgmesProfile.DY.value, ], - 'rtemp': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'at': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - 'hdam': [cgmesProfile.DY.value, ], - 'qn1': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'gv0': [cgmesProfile.DY.value, ], - 'pgv0': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'bgv0': [cgmesProfile.DY.value, ], - 'bgv1': [cgmesProfile.DY.value, ], - 'bgv2': [cgmesProfile.DY.value, ], - 'bgv3': [cgmesProfile.DY.value, ], - 'bgv4': [cgmesProfile.DY.value, ], - 'bgv5': [cgmesProfile.DY.value, ], - 'bmax': [cgmesProfile.DY.value, ], - 'tblade': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, tg = 0, tp = 0, uo = 0.0, uc = 0.0, gmax = 0.0, gmin = 0.0, rperm = 0, rtemp = 0, tr = 0, tw = 0, at = 0.0, dturb = 0.0, hdam = 0.0, qn1 = 0.0, db1 = 0.0, eps = 0.0, db2 = 0.0, gv0 = 0.0, pgv0 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, bgv0 = 0.0, bgv1 = 0.0, bgv2 = 0.0, bgv3 = 0.0, bgv4 = 0.0, bgv5 = 0.0, bmax = 0.0, tblade = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.tg = tg - self.tp = tp - self.uo = uo - self.uc = uc - self.gmax = gmax - self.gmin = gmin - self.rperm = rperm - self.rtemp = rtemp - self.tr = tr - self.tw = tw - self.at = at - self.dturb = dturb - self.hdam = hdam - self.qn1 = qn1 - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.gv0 = gv0 - self.pgv0 = pgv0 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.bgv0 = bgv0 - self.bgv1 = bgv1 - self.bgv2 = bgv2 - self.bgv3 = bgv3 - self.bgv4 = bgv4 - self.bgv5 = bgv5 - self.bmax = bmax - self.tblade = tblade - - def __str__(self): - str = 'class=GovHydro4\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroDD.py b/cimpy/cgmes_v2_4_15/GovHydroDD.py deleted file mode 100644 index 40c6ef9e..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroDD.py +++ /dev/null @@ -1,133 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroDD(TurbineGovernorDynamics): - ''' - Double derivative hydro governor and turbine. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 - :r: Steady state droop (R). Typical Value = 0.05. Default: 0.0 - :td: Input filter time constant (Td). Typical Value = 0. Default: 0 - :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 - :tp: Gate servo time constant (Tp). Typical Value = 0.35. Default: 0 - :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.09. Default: 0.0 - :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.14. Default: 0.0 - :k1: Single derivative gain (K1). Typical Value = 3.6. Default: 0.0 - :k2: Double derivative gain (K2). Typical Value = 0.2. Default: 0.0 - :ki: Integral gain (Ki). Typical Value = 1. Default: 0.0 - :kg: Gate servo gain (Kg). Typical Value = 3. Default: 0.0 - :tturb: Turbine time constant (Tturb) (note 3). Typical Value = 0.8. Default: 0 - :aturb: Turbine numerator multiplier (Aturb) (note 3). Typical Value = -1. Default: 0.0 - :bturb: Turbine denominator multiplier (Bturb) (note 3). Typical Value = 0.5. Default: 0.0 - :tt: Power feedback time constant (Tt). Typical Value = 0.02. Default: 0 - :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - :gmax: Maximum gate opening (Gmax). Typical Value = 0. Default: 0.0 - :gmin: Minimum gate opening (Gmin). Typical Value = 0. Default: 0.0 - :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'velop': [cgmesProfile.DY.value, ], - 'velcl': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'tturb': [cgmesProfile.DY.value, ], - 'aturb': [cgmesProfile.DY.value, ], - 'bturb': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'inputSignal': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, pmax = 0.0, pmin = 0.0, r = 0.0, td = 0, tf = 0, tp = 0, velop = 0.0, velcl = 0.0, k1 = 0.0, k2 = 0.0, ki = 0.0, kg = 0.0, tturb = 0, aturb = 0.0, bturb = 0.0, tt = 0, db1 = 0.0, eps = 0.0, db2 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, gmax = 0.0, gmin = 0.0, inputSignal = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.pmax = pmax - self.pmin = pmin - self.r = r - self.td = td - self.tf = tf - self.tp = tp - self.velop = velop - self.velcl = velcl - self.k1 = k1 - self.k2 = k2 - self.ki = ki - self.kg = kg - self.tturb = tturb - self.aturb = aturb - self.bturb = bturb - self.tt = tt - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - self.gmax = gmax - self.gmin = gmin - self.inputSignal = inputSignal - - def __str__(self): - str = 'class=GovHydroDD\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroFrancis.py b/cimpy/cgmes_v2_4_15/GovHydroFrancis.py deleted file mode 100644 index e97f1019..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroFrancis.py +++ /dev/null @@ -1,109 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroFrancis(TurbineGovernorDynamics): - ''' - Detailed hydro unit - Francis model. This model can be used to represent three types of governors. A schematic of the hydraulic system of detailed hydro unit models, like Francis and Pelton, is provided in the DetailedHydroModelHydraulicSystem diagram. - - :am: Opening section S at the maximum efficiency (Am). Typical Value = 0.7. Default: 0.0 - :av0: Area of the surge tank (A). Unit = m. Typical Value = 30. Default: 0.0 - :av1: Area of the compensation tank (A). Unit = m. Typical Value = 700. Default: 0.0 - :bp: Droop (Bp). Typical Value = 0.05. Default: 0.0 - :db1: Intentional dead-band width (DB1). Unit = Hz. Typical Value = 0. Default: 0.0 - :etamax: Maximum efficiency (EtaMax). Typical Value = 1.05. Default: 0.0 - :governorControl: Governor control flag (Cflag). Typical Value = mechanicHydrolicTachoAccelerator. Default: None - :h1: Head of compensation chamber water level with respect to the level of penstock (H). Unit = m. Typical Value = 4. Default: 0.0 - :h2: Head of surge tank water level with respect to the level of penstock (H). Unit = m. Typical Value = 40. Default: 0.0 - :hn: Rated hydraulic head (H). Unit = m. Typical Value = 250. Default: 0.0 - :kc: Penstock loss coefficient (due to friction) (Kc). Typical Value = 0.025. Default: 0.0 - :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical Value = 0.025. Default: 0.0 - :kt: Washout gain (Kt). Typical Value = 0.25. Default: 0.0 - :qc0: No-load turbine flow at nominal head (Qc0). Typical Value = 0.21. Default: 0.0 - :qn: Rated flow (Q). Unit = m/s. Typical Value = 40. Default: 0.0 - :ta: Derivative gain (Ta). Typical Value = 3. Default: 0 - :td: Washout time constant (Td). Typical Value = 3. Default: 0 - :ts: Gate servo time constant (Ts). Typical Value = 0.5. Default: 0 - :twnc: Water inertia time constant (Twnc). Typical Value = 1. Default: 0 - :twng: Water tunnel and surge chamber inertia time constant (Twng). Typical Value = 3. Default: 0 - :tx: Derivative feedback gain (Tx). Typical Value = 1. Default: 0 - :va: Maximum gate opening velocity (Va). Unit = PU/sec. Typical Value = 0.011. Default: 0.0 - :valvmax: Maximum gate opening (ValvMax). Typical Value = 1. Default: 0.0 - :valvmin: Minimum gate opening (ValvMin). Typical Value = 0. Default: 0.0 - :vc: Maximum gate closing velocity (Vc). Unit = PU/sec. Typical Value = -0.011. Default: 0.0 - :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical Value = false. Default: False - :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = m. Typical Value = 25. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'am': [cgmesProfile.DY.value, ], - 'av0': [cgmesProfile.DY.value, ], - 'av1': [cgmesProfile.DY.value, ], - 'bp': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'etamax': [cgmesProfile.DY.value, ], - 'governorControl': [cgmesProfile.DY.value, ], - 'h1': [cgmesProfile.DY.value, ], - 'h2': [cgmesProfile.DY.value, ], - 'hn': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'kt': [cgmesProfile.DY.value, ], - 'qc0': [cgmesProfile.DY.value, ], - 'qn': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'ts': [cgmesProfile.DY.value, ], - 'twnc': [cgmesProfile.DY.value, ], - 'twng': [cgmesProfile.DY.value, ], - 'tx': [cgmesProfile.DY.value, ], - 'va': [cgmesProfile.DY.value, ], - 'valvmax': [cgmesProfile.DY.value, ], - 'valvmin': [cgmesProfile.DY.value, ], - 'vc': [cgmesProfile.DY.value, ], - 'waterTunnelSurgeChamberSimulation': [cgmesProfile.DY.value, ], - 'zsfc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, am = 0.0, av0 = 0.0, av1 = 0.0, bp = 0.0, db1 = 0.0, etamax = 0.0, governorControl = None, h1 = 0.0, h2 = 0.0, hn = 0.0, kc = 0.0, kg = 0.0, kt = 0.0, qc0 = 0.0, qn = 0.0, ta = 0, td = 0, ts = 0, twnc = 0, twng = 0, tx = 0, va = 0.0, valvmax = 0.0, valvmin = 0.0, vc = 0.0, waterTunnelSurgeChamberSimulation = False, zsfc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.am = am - self.av0 = av0 - self.av1 = av1 - self.bp = bp - self.db1 = db1 - self.etamax = etamax - self.governorControl = governorControl - self.h1 = h1 - self.h2 = h2 - self.hn = hn - self.kc = kc - self.kg = kg - self.kt = kt - self.qc0 = qc0 - self.qn = qn - self.ta = ta - self.td = td - self.ts = ts - self.twnc = twnc - self.twng = twng - self.tx = tx - self.va = va - self.valvmax = valvmax - self.valvmin = valvmin - self.vc = vc - self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation - self.zsfc = zsfc - - def __str__(self): - str = 'class=GovHydroFrancis\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py b/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py deleted file mode 100644 index faa9b188..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py +++ /dev/null @@ -1,52 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroIEEE0(TurbineGovernorDynamics): - ''' - IEEE Simplified Hydro Governor-Turbine Model. Used for Mechanical-Hydraulic and Electro-Hydraulic turbine governors, with our without steam feedback. Typical values given are for Mechanical-Hydraulic. Ref - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :k: Governor gain (K. Default: 0.0 - :t1: Governor lag time constant (T1). Typical Value = 0.25. Default: 0 - :t2: Governor lead time constant (T2. Typical Value = 0. Default: 0 - :t3: Gate actuator time constant (T3). Typical Value = 0.1. Default: 0 - :t4: Water starting time (T4). Default: 0 - :pmax: Gate maximum (Pmax). Default: 0.0 - :pmin: Gate minimum (Pmin). Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, k = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, pmax = 0.0, pmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.k = k - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.pmax = pmax - self.pmin = pmin - - def __str__(self): - str = 'class=GovHydroIEEE0\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py b/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py deleted file mode 100644 index ad0ed8e9..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py +++ /dev/null @@ -1,106 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroIEEE2(TurbineGovernorDynamics): - ''' - IEEE hydro turbine governor model represents plants with straightforward penstock configurations and hydraulic-dashpot governors. Ref - - :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 - :tg: Gate servo time constant (Tg). Typical Value = 0.5. Default: 0 - :tp: Pilot servo valve time constant (Tp). Typical Value = 0.03. Default: 0 - :uo: Maximum gate opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 - :uc: Maximum gate closing velocity (Uc) (<0). Typical Value = -0.1. Default: 0.0 - :pmax: Maximum gate opening (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening (Pmin). Typical Value = 0. Default: 0.0 - :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0.0 - :rtemp: Temporary droop (Rtemp). Typical Value = 0.5. Default: 0.0 - :tr: Dashpot time constant (Tr). Typical Value = 12. Default: 0 - :tw: Water inertia time constant (Tw). Typical Value = 2. Default: 0 - :kturb: Turbine gain (Kturb). Typical Value = 1. Default: 0.0 - :aturb: Turbine numerator multiplier (Aturb). Typical Value = -1. Default: 0.0 - :bturb: Turbine denominator multiplier (Bturb). Typical Value = 0.5. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'rperm': [cgmesProfile.DY.value, ], - 'rtemp': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'kturb': [cgmesProfile.DY.value, ], - 'aturb': [cgmesProfile.DY.value, ], - 'bturb': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, tg = 0, tp = 0, uo = 0.0, uc = 0.0, pmax = 0.0, pmin = 0.0, rperm = 0.0, rtemp = 0.0, tr = 0, tw = 0, kturb = 0.0, aturb = 0.0, bturb = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.tg = tg - self.tp = tp - self.uo = uo - self.uc = uc - self.pmax = pmax - self.pmin = pmin - self.rperm = rperm - self.rtemp = rtemp - self.tr = tr - self.tw = tw - self.kturb = kturb - self.aturb = aturb - self.bturb = bturb - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovHydroIEEE2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroPID.py b/cimpy/cgmes_v2_4_15/GovHydroPID.py deleted file mode 100644 index 02f74016..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroPID.py +++ /dev/null @@ -1,127 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroPID(TurbineGovernorDynamics): - ''' - PID governor and turbine. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 - :r: Steady state droop (R). Typical Value = 0.05. Default: 0.0 - :td: Input filter time constant (Td). Typical Value = 0. Default: 0 - :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 - :tp: Gate servo time constant (Tp). Typical Value = 0.35. Default: 0 - :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.09. Default: 0.0 - :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.14. Default: 0.0 - :kd: Derivative gain (Kd). Typical Value = 1.11. Default: 0.0 - :kp: Proportional gain (Kp). Typical Value = 0.1. Default: 0.0 - :ki: Integral gain (Ki). Typical Value = 0.36. Default: 0.0 - :kg: Gate servo gain (Kg). Typical Value = 2.5. Default: 0.0 - :tturb: Turbine time constant (Tturb) (note 3). Typical Value = 0.8. Default: 0 - :aturb: Turbine numerator multiplier (Aturb) (note 3). Typical Value -1. Default: 0.0 - :bturb: Turbine denominator multiplier (Bturb) (note 3). Typical Value = 0.5. Default: 0.0 - :tt: Power feedback time constant (Tt). Typical Value = 0.02. Default: 0 - :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'velop': [cgmesProfile.DY.value, ], - 'velcl': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'tturb': [cgmesProfile.DY.value, ], - 'aturb': [cgmesProfile.DY.value, ], - 'bturb': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'inputSignal': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, pmax = 0.0, pmin = 0.0, r = 0.0, td = 0, tf = 0, tp = 0, velop = 0.0, velcl = 0.0, kd = 0.0, kp = 0.0, ki = 0.0, kg = 0.0, tturb = 0, aturb = 0.0, bturb = 0.0, tt = 0, db1 = 0.0, inputSignal = False, eps = 0.0, db2 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.pmax = pmax - self.pmin = pmin - self.r = r - self.td = td - self.tf = tf - self.tp = tp - self.velop = velop - self.velcl = velcl - self.kd = kd - self.kp = kp - self.ki = ki - self.kg = kg - self.tturb = tturb - self.aturb = aturb - self.bturb = bturb - self.tt = tt - self.db1 = db1 - self.inputSignal = inputSignal - self.eps = eps - self.db2 = db2 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovHydroPID\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroPID2.py b/cimpy/cgmes_v2_4_15/GovHydroPID2.py deleted file mode 100644 index 0a273ee6..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroPID2.py +++ /dev/null @@ -1,94 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroPID2(TurbineGovernorDynamics): - ''' - Hydro turbine and governor. Represents plants with straight forward penstock configurations and "three term" electro-hydraulic governors (i.e. Woodard electronic). - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :treg: Speed detector time constant (Treg). Typical Value = 0. Default: 0 - :rperm: Permanent drop (Rperm). Typical Value = 0. Default: 0.0 - :kp: Proportional gain (Kp). Typical Value = 0. Default: 0.0 - :ki: Reset gain (Ki). Unit = PU/ sec. Typical Value = 0. Default: 0.0 - :kd: Derivative gain (Kd). Typical Value = 0. Default: 0.0 - :ta: Controller time constant (Ta) (>0). Typical Value = 0. Default: 0 - :tb: Gate servo time constant (Tb) (>0). Typical Value = 0. Default: 0 - :velmax: Maximum gate opening velocity (Velmax). Unit = PU/sec. Typical Value = 0. Default: 0.0 - :velmin: Maximum gate closing velocity (Velmin). Unit = PU/sec. Typical Value = 0. Default: 0.0 - :gmax: Maximum gate opening (Gmax). Typical Value = 0. Default: 0.0 - :gmin: Minimum gate opening (Gmin). Typical Value = 0. Default: 0.0 - :tw: Water inertia time constant (Tw) (>0). Typical Value = 0. Default: 0 - :d: Turbine damping factor (D). Unit = delta P / delta speed. Typical Value = 0. Default: 0.0 - :g0: Gate opening at speed no load (G0). Typical Value = 0. Default: 0.0 - :g1: Intermediate gate opening (G1). Typical Value = 0. Default: 0.0 - :p1: Power at gate opening G1 (P1). Typical Value = 0. Default: 0.0 - :g2: Intermediate gate opening (G2). Typical Value = 0. Default: 0.0 - :p2: Power at gate opening G2 (P2). Typical Value = 0. Default: 0.0 - :p3: Power at full opened gate (P3). Typical Value = 0. Default: 0.0 - :atw: Factor multiplying Tw (Atw). Typical Value = 0. Default: 0.0 - :feedbackSignal: Feedback signal type flag (Flag). true = use gate position feedback signal false = use Pe. Default: False - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'treg': [cgmesProfile.DY.value, ], - 'rperm': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'velmax': [cgmesProfile.DY.value, ], - 'velmin': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'd': [cgmesProfile.DY.value, ], - 'g0': [cgmesProfile.DY.value, ], - 'g1': [cgmesProfile.DY.value, ], - 'p1': [cgmesProfile.DY.value, ], - 'g2': [cgmesProfile.DY.value, ], - 'p2': [cgmesProfile.DY.value, ], - 'p3': [cgmesProfile.DY.value, ], - 'atw': [cgmesProfile.DY.value, ], - 'feedbackSignal': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, treg = 0, rperm = 0.0, kp = 0.0, ki = 0.0, kd = 0.0, ta = 0, tb = 0, velmax = 0.0, velmin = 0.0, gmax = 0.0, gmin = 0.0, tw = 0, d = 0.0, g0 = 0.0, g1 = 0.0, p1 = 0.0, g2 = 0.0, p2 = 0.0, p3 = 0.0, atw = 0.0, feedbackSignal = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.treg = treg - self.rperm = rperm - self.kp = kp - self.ki = ki - self.kd = kd - self.ta = ta - self.tb = tb - self.velmax = velmax - self.velmin = velmin - self.gmax = gmax - self.gmin = gmin - self.tw = tw - self.d = d - self.g0 = g0 - self.g1 = g1 - self.p1 = p1 - self.g2 = g2 - self.p2 = p2 - self.p3 = p3 - self.atw = atw - self.feedbackSignal = feedbackSignal - - def __str__(self): - str = 'class=GovHydroPID2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroPelton.py b/cimpy/cgmes_v2_4_15/GovHydroPelton.py deleted file mode 100644 index c8b20367..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroPelton.py +++ /dev/null @@ -1,112 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroPelton(TurbineGovernorDynamics): - ''' - Detailed hydro unit - Pelton model. This model can be used to represent the dynamic related to water tunnel and surge chamber. A schematic of the hydraulic system of detailed hydro unit models, like Francis and Pelton, is located under the GovHydroFrancis class. - - :av0: Area of the surge tank (A). Unit = m. Typical Value = 30. Default: 0.0 - :av1: Area of the compensation tank (A). Unit = m. Typical Value = 700. Default: 0.0 - :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 - :db1: Intentional dead-band width (DB1). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Intentional dead-band width of valve opening error (DB2). Unit = Hz. Typical Value = 0.01. Default: 0.0 - :h1: Head of compensation chamber water level with respect to the level of penstock (H). Unit = m. Typical Value = 4. Default: 0.0 - :h2: Head of surge tank water level with respect to the level of penstock (H). Unit = m. Typical Value = 40. Default: 0.0 - :hn: Rated hydraulic head (H). Unit = m. Typical Value = 250. Default: 0.0 - :kc: Penstock loss coefficient (due to friction) (Kc). Typical Value = 0.025. Default: 0.0 - :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical Value = -0.025. Default: 0.0 - :qc0: No-load turbine flow at nominal head (Qc0). Typical Value = 0.05. Default: 0.0 - :qn: Rated flow (Q). Unit = m/s. Typical Value = 40. Default: 0.0 - :simplifiedPelton: Simplified Pelton model simulation (Sflag). true = enable of simplified Pelton model simulation false = enable of complete Pelton model simulation (non linear gain). Typical Value = false. Default: False - :staticCompensating: Static compensating characteristic (Cflag). true = enable of static compensating characteristic false = inhibit of static compensating characteristic. Typical Value = false. Default: False - :ta: Derivative gain (accelerometer time constant) (Ta). Typical Value = 3. Default: 0 - :ts: Gate servo time constant (Ts). Typical Value = 0.15. Default: 0 - :tv: Servomotor integrator time constant (TV). Typical Value = 0.3. Default: 0 - :twnc: Water inertia time constant (Twnc). Typical Value = 1. Default: 0 - :twng: Water tunnel and surge chamber inertia time constant (Twng). Typical Value = 3. Default: 0 - :tx: Electronic integrator time constant (Tx). Typical Value = 0.5. Default: 0 - :va: Maximum gate opening velocity (Va). Unit = PU/sec. Typical Value = 0.016. Default: 0.0 - :valvmax: Maximum gate opening (ValvMax). Typical Value = 1. Default: 0.0 - :valvmin: Minimum gate opening (ValvMin). Typical Value = 0. Default: 0.0 - :vav: Maximum servomotor valve opening velocity (Vav). Typical Value = 0.017. Default: 0.0 - :vc: Maximum gate closing velocity (Vc). Unit = PU/sec. Typical Value = -0.016. Default: 0.0 - :vcv: Maximum servomotor valve closing velocity (Vcv). Typical Value = -0.017. Default: 0.0 - :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical Value = false. Default: False - :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = m. Typical Value = 25. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'av0': [cgmesProfile.DY.value, ], - 'av1': [cgmesProfile.DY.value, ], - 'bp': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'h1': [cgmesProfile.DY.value, ], - 'h2': [cgmesProfile.DY.value, ], - 'hn': [cgmesProfile.DY.value, ], - 'kc': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'qc0': [cgmesProfile.DY.value, ], - 'qn': [cgmesProfile.DY.value, ], - 'simplifiedPelton': [cgmesProfile.DY.value, ], - 'staticCompensating': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'ts': [cgmesProfile.DY.value, ], - 'tv': [cgmesProfile.DY.value, ], - 'twnc': [cgmesProfile.DY.value, ], - 'twng': [cgmesProfile.DY.value, ], - 'tx': [cgmesProfile.DY.value, ], - 'va': [cgmesProfile.DY.value, ], - 'valvmax': [cgmesProfile.DY.value, ], - 'valvmin': [cgmesProfile.DY.value, ], - 'vav': [cgmesProfile.DY.value, ], - 'vc': [cgmesProfile.DY.value, ], - 'vcv': [cgmesProfile.DY.value, ], - 'waterTunnelSurgeChamberSimulation': [cgmesProfile.DY.value, ], - 'zsfc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, av0 = 0.0, av1 = 0.0, bp = 0.0, db1 = 0.0, db2 = 0.0, h1 = 0.0, h2 = 0.0, hn = 0.0, kc = 0.0, kg = 0.0, qc0 = 0.0, qn = 0.0, simplifiedPelton = False, staticCompensating = False, ta = 0, ts = 0, tv = 0, twnc = 0, twng = 0, tx = 0, va = 0.0, valvmax = 0.0, valvmin = 0.0, vav = 0.0, vc = 0.0, vcv = 0.0, waterTunnelSurgeChamberSimulation = False, zsfc = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.av0 = av0 - self.av1 = av1 - self.bp = bp - self.db1 = db1 - self.db2 = db2 - self.h1 = h1 - self.h2 = h2 - self.hn = hn - self.kc = kc - self.kg = kg - self.qc0 = qc0 - self.qn = qn - self.simplifiedPelton = simplifiedPelton - self.staticCompensating = staticCompensating - self.ta = ta - self.ts = ts - self.tv = tv - self.twnc = twnc - self.twng = twng - self.tx = tx - self.va = va - self.valvmax = valvmax - self.valvmin = valvmin - self.vav = vav - self.vc = vc - self.vcv = vcv - self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation - self.zsfc = zsfc - - def __str__(self): - str = 'class=GovHydroPelton\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroR.py b/cimpy/cgmes_v2_4_15/GovHydroR.py deleted file mode 100644 index b3e723aa..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroR.py +++ /dev/null @@ -1,154 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroR(TurbineGovernorDynamics): - ''' - Fourth order lead-lag governor and hydro turbine. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 - :r: Steady-state droop (R). Typical Value = 0.05. Default: 0.0 - :td: Input filter time constant (Td). Typical Value = 0.05. Default: 0 - :t1: Lead time constant 1 (T1). Typical Value = 1.5. Default: 0 - :t2: Lag time constant 1 (T2). Typical Value = 0.1. Default: 0 - :t3: Lead time constant 2 (T3). Typical Value = 1.5. Default: 0 - :t4: Lag time constant 2 (T4). Typical Value = 0.1. Default: 0 - :t5: Lead time constant 3 (T5). Typical Value = 0. Default: 0 - :t6: Lag time constant 3 (T6). Typical Value = 0.05. Default: 0 - :t7: Lead time constant 4 (T7). Typical Value = 0. Default: 0 - :t8: Lag time constant 4 (T8). Typical Value = 0.05. Default: 0 - :tp: Gate servo time constant (Tp). Typical Value = 0.05. Default: 0 - :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.2. Default: 0.0 - :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.2. Default: 0.0 - :ki: Integral gain (Ki). Typical Value = 0.5. Default: 0.0 - :kg: Gate servo gain (Kg). Typical Value = 2. Default: 0.0 - :gmax: Maximum governor output (Gmax). Typical Value = 1.05. Default: 0.0 - :gmin: Minimum governor output (Gmin). Typical Value = -0.05. Default: 0.0 - :tt: Power feedback time constant (Tt). Typical Value = 0. Default: 0 - :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False - :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :tw: Water inertia time constant (Tw). Typical Value = 1. Default: 0 - :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 - :dturb: Turbine damping factor (Dturb). Typical Value = 0.2. Default: 0.0 - :qnl: No-load turbine flow at nominal head (Qnl). Typical Value = 0.08. Default: 0.0 - :h0: Turbine nominal head (H0). Typical Value = 1. Default: 0.0 - :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 - :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 - :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 - :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 - :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 - :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 - :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 - :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 - :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'velop': [cgmesProfile.DY.value, ], - 'velcl': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kg': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'inputSignal': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'at': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - 'qnl': [cgmesProfile.DY.value, ], - 'h0': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, pmax = 0.0, pmin = 0.0, r = 0.0, td = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, t7 = 0, t8 = 0, tp = 0, velop = 0.0, velcl = 0.0, ki = 0.0, kg = 0.0, gmax = 0.0, gmin = 0.0, tt = 0, inputSignal = False, db1 = 0.0, eps = 0.0, db2 = 0.0, tw = 0, at = 0.0, dturb = 0.0, qnl = 0.0, h0 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.pmax = pmax - self.pmin = pmin - self.r = r - self.td = td - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.tp = tp - self.velop = velop - self.velcl = velcl - self.ki = ki - self.kg = kg - self.gmax = gmax - self.gmin = gmin - self.tt = tt - self.inputSignal = inputSignal - self.db1 = db1 - self.eps = eps - self.db2 = db2 - self.tw = tw - self.at = at - self.dturb = dturb - self.qnl = qnl - self.h0 = h0 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovHydroR\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroWEH.py b/cimpy/cgmes_v2_4_15/GovHydroWEH.py deleted file mode 100644 index 7d80faaa..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroWEH.py +++ /dev/null @@ -1,181 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroWEH(TurbineGovernorDynamics): - ''' - Woodward Electric Hydro Governor Model. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :rpg: Permanent droop for governor output feedback (R-Perm-Gate). Default: 0.0 - :rpp: Permanent droop for electrical power feedback (R-Perm-Pe). Default: 0.0 - :tpe: Electrical power droop time constant (Tpe). Default: 0 - :kp: Derivative control gain (Kp). Default: 0.0 - :ki: Derivative controller Integral gain (Ki). Default: 0.0 - :kd: Derivative controller derivative gain (Kd). Default: 0.0 - :td: Derivative controller time constant to limit the derivative characteristic beyond a breakdown frequency to avoid amplification of high-frequency noise (Td). Default: 0 - :tp: Pilot Valve time lag time constant (Tp). Default: 0 - :tdv: Distributive Valve time lag time constant (Tdv). Default: 0 - :tg: Value to allow the Distribution valve controller to advance beyond the gate movement rate limit (Tg). Default: 0 - :gtmxop: Maximum gate opening rate (Gtmxop). Default: 0.0 - :gtmxcl: Maximum gate closing rate (Gtmxcl). Default: 0.0 - :gmax: Maximum Gate Position (Gmax). Default: 0.0 - :gmin: Minimum Gate Position (Gmin). Default: 0.0 - :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Default: 0.0 - :tw: Water inertia time constant (Tw) (>0). Default: 0 - :db: Speed Dead Band (db). Default: 0.0 - :dpv: Value to allow the Pilot valve controller to advance beyond the gate limits (Dpv). Default: 0.0 - :dicn: Value to allow the integral controller to advance beyond the gate limits (Dicn). Default: 0.0 - :feedbackSignal: Feedback signal selection (Sw). true = PID Output (if R-Perm-Gate=droop and R-Perm-Pe=0) false = Electrical Power (if R-Perm-Gate=0 and R-Perm-Pe=droop) or false = Gate Position (if R-Perm-Gate=droop and R-Perm-Pe=0). Default: False - :gv1: Gate 1 (Gv1). Gate Position value for point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :gv2: Gate 2 (Gv2). Gate Position value for point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :gv3: Gate 3 (Gv3). Gate Position value for point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :gv4: Gate 4 (Gv4). Gate Position value for point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :gv5: Gate 5 (Gv5). Gate Position value for point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fl1: Flow Gate 1 (Fl1). Flow value for gate position point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fl2: Flow Gate 2 (Fl2). Flow value for gate position point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fl3: Flow Gate 3 (Fl3). Flow value for gate position point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fl4: Flow Gate 4 (Fl4). Flow value for gate position point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fl5: Flow Gate 5 (Fl5). Flow value for gate position point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 - :fp1: Flow P1 (Fp1). Turbine Flow value for point 1 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp2: Flow P2 (Fp2). Turbine Flow value for point 2 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp3: Flow P3 (Fp3). Turbine Flow value for point 3 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp4: Flow P4 (Fp4). Turbine Flow value for point 4 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp5: Flow P5 (Fp5). Turbine Flow value for point 5 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp6: Flow P6 (Fp6). Turbine Flow value for point 6 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp7: Flow P7 (Fp7). Turbine Flow value for point 7 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp8: Flow P8 (Fp8). Turbine Flow value for point 8 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp9: Flow P9 (Fp9). Turbine Flow value for point 9 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :fp10: Flow P10 (Fp10). Turbine Flow value for point 10 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss1: Pmss Flow P1 (Pmss1). Mechanical Power output Pmss for Turbine Flow point 1 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss2: Pmss Flow P2 (Pmss2). Mechanical Power output Pmss for Turbine Flow point 2 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss3: Pmss Flow P3 (Pmss3). Mechanical Power output Pmss for Turbine Flow point 3 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss4: Pmss Flow P4 (Pmss4). Mechanical Power output Pmss for Turbine Flow point 4 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss5: Pmss Flow P5 (Pmss5). Mechanical Power output Pmss for Turbine Flow point 5 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss6: Pmss Flow P6 (Pmss6). Mechanical Power output Pmss for Turbine Flow point 6 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss7: Pmss Flow P7 (Pmss7). Mechanical Power output Pmss for Turbine Flow point 7 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss8: Pmss Flow P8 (Pmss8). Mechanical Power output Pmss for Turbine Flow point 8 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss9: Pmss Flow P9 (Pmss9). Mechanical Power output Pmss for Turbine Flow point 9 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - :pmss10: Pmss Flow P10 (Pmss10). Mechanical Power output Pmss for Turbine Flow point 10 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'rpg': [cgmesProfile.DY.value, ], - 'rpp': [cgmesProfile.DY.value, ], - 'tpe': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'tdv': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'gtmxop': [cgmesProfile.DY.value, ], - 'gtmxcl': [cgmesProfile.DY.value, ], - 'gmax': [cgmesProfile.DY.value, ], - 'gmin': [cgmesProfile.DY.value, ], - 'dturb': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'db': [cgmesProfile.DY.value, ], - 'dpv': [cgmesProfile.DY.value, ], - 'dicn': [cgmesProfile.DY.value, ], - 'feedbackSignal': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'fl1': [cgmesProfile.DY.value, ], - 'fl2': [cgmesProfile.DY.value, ], - 'fl3': [cgmesProfile.DY.value, ], - 'fl4': [cgmesProfile.DY.value, ], - 'fl5': [cgmesProfile.DY.value, ], - 'fp1': [cgmesProfile.DY.value, ], - 'fp2': [cgmesProfile.DY.value, ], - 'fp3': [cgmesProfile.DY.value, ], - 'fp4': [cgmesProfile.DY.value, ], - 'fp5': [cgmesProfile.DY.value, ], - 'fp6': [cgmesProfile.DY.value, ], - 'fp7': [cgmesProfile.DY.value, ], - 'fp8': [cgmesProfile.DY.value, ], - 'fp9': [cgmesProfile.DY.value, ], - 'fp10': [cgmesProfile.DY.value, ], - 'pmss1': [cgmesProfile.DY.value, ], - 'pmss2': [cgmesProfile.DY.value, ], - 'pmss3': [cgmesProfile.DY.value, ], - 'pmss4': [cgmesProfile.DY.value, ], - 'pmss5': [cgmesProfile.DY.value, ], - 'pmss6': [cgmesProfile.DY.value, ], - 'pmss7': [cgmesProfile.DY.value, ], - 'pmss8': [cgmesProfile.DY.value, ], - 'pmss9': [cgmesProfile.DY.value, ], - 'pmss10': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, rpg = 0.0, rpp = 0.0, tpe = 0, kp = 0.0, ki = 0.0, kd = 0.0, td = 0, tp = 0, tdv = 0, tg = 0, gtmxop = 0.0, gtmxcl = 0.0, gmax = 0.0, gmin = 0.0, dturb = 0.0, tw = 0, db = 0.0, dpv = 0.0, dicn = 0.0, feedbackSignal = False, gv1 = 0.0, gv2 = 0.0, gv3 = 0.0, gv4 = 0.0, gv5 = 0.0, fl1 = 0.0, fl2 = 0.0, fl3 = 0.0, fl4 = 0.0, fl5 = 0.0, fp1 = 0.0, fp2 = 0.0, fp3 = 0.0, fp4 = 0.0, fp5 = 0.0, fp6 = 0.0, fp7 = 0.0, fp8 = 0.0, fp9 = 0.0, fp10 = 0.0, pmss1 = 0.0, pmss2 = 0.0, pmss3 = 0.0, pmss4 = 0.0, pmss5 = 0.0, pmss6 = 0.0, pmss7 = 0.0, pmss8 = 0.0, pmss9 = 0.0, pmss10 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.rpg = rpg - self.rpp = rpp - self.tpe = tpe - self.kp = kp - self.ki = ki - self.kd = kd - self.td = td - self.tp = tp - self.tdv = tdv - self.tg = tg - self.gtmxop = gtmxop - self.gtmxcl = gtmxcl - self.gmax = gmax - self.gmin = gmin - self.dturb = dturb - self.tw = tw - self.db = db - self.dpv = dpv - self.dicn = dicn - self.feedbackSignal = feedbackSignal - self.gv1 = gv1 - self.gv2 = gv2 - self.gv3 = gv3 - self.gv4 = gv4 - self.gv5 = gv5 - self.fl1 = fl1 - self.fl2 = fl2 - self.fl3 = fl3 - self.fl4 = fl4 - self.fl5 = fl5 - self.fp1 = fp1 - self.fp2 = fp2 - self.fp3 = fp3 - self.fp4 = fp4 - self.fp5 = fp5 - self.fp6 = fp6 - self.fp7 = fp7 - self.fp8 = fp8 - self.fp9 = fp9 - self.fp10 = fp10 - self.pmss1 = pmss1 - self.pmss2 = pmss2 - self.pmss3 = pmss3 - self.pmss4 = pmss4 - self.pmss5 = pmss5 - self.pmss6 = pmss6 - self.pmss7 = pmss7 - self.pmss8 = pmss8 - self.pmss9 = pmss9 - self.pmss10 = pmss10 - - def __str__(self): - str = 'class=GovHydroWEH\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovHydroWPID.py b/cimpy/cgmes_v2_4_15/GovHydroWPID.py deleted file mode 100644 index 2655cf5f..00000000 --- a/cimpy/cgmes_v2_4_15/GovHydroWPID.py +++ /dev/null @@ -1,94 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovHydroWPID(TurbineGovernorDynamics): - ''' - Woodward PID Hydro Governor. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :treg: Speed detector time constant (Treg). Default: 0 - :reg: Permanent drop (Reg). Default: 0.0 - :kp: Proportional gain (Kp). Typical Value = 0.1. Default: 0.0 - :ki: Reset gain (Ki). Typical Value = 0.36. Default: 0.0 - :kd: Derivative gain (Kd). Typical Value = 1.11. Default: 0.0 - :ta: Controller time constant (Ta) (>0). Typical Value = 0. Default: 0 - :tb: Gate servo time constant (Tb) (>0). Typical Value = 0. Default: 0 - :velmax: Maximum gate opening velocity (Velmax). Unit = PU/sec. Typical Value = 0. Default: 0.0 - :velmin: Maximum gate closing velocity (Velmin). Unit = PU/sec. Typical Value = 0. Default: 0.0 - :gatmax: Gate opening Limit Maximum (Gatmax). Default: 0.0 - :gatmin: Gate opening Limit Minimum (Gatmin). Default: 0.0 - :tw: Water inertia time constant (Tw) (>0). Typical Value = 0. Default: 0 - :pmax: Maximum Power Output (Pmax). Default: 0.0 - :pmin: Minimum Power Output (Pmin). Default: 0.0 - :d: Turbine damping factor (D). Unit = delta P / delta speed. Default: 0.0 - :gv3: Gate position 3 (Gv3). Default: 0.0 - :gv1: Gate position 1 (Gv1). Default: 0.0 - :pgv1: Output at Gv1 PU of MWbase (Pgv1). Default: 0.0 - :gv2: Gate position 2 (Gv2). Default: 0.0 - :pgv2: Output at Gv2 PU of MWbase (Pgv2). Default: 0.0 - :pgv3: Output at Gv3 PU of MWbase (Pgv3). Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'treg': [cgmesProfile.DY.value, ], - 'reg': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'velmax': [cgmesProfile.DY.value, ], - 'velmin': [cgmesProfile.DY.value, ], - 'gatmax': [cgmesProfile.DY.value, ], - 'gatmin': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'd': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, treg = 0, reg = 0.0, kp = 0.0, ki = 0.0, kd = 0.0, ta = 0, tb = 0, velmax = 0.0, velmin = 0.0, gatmax = 0.0, gatmin = 0.0, tw = 0, pmax = 0.0, pmin = 0.0, d = 0.0, gv3 = 0.0, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, pgv3 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.treg = treg - self.reg = reg - self.kp = kp - self.ki = ki - self.kd = kd - self.ta = ta - self.tb = tb - self.velmax = velmax - self.velmin = velmin - self.gatmax = gatmax - self.gatmin = gatmin - self.tw = tw - self.pmax = pmax - self.pmin = pmin - self.d = d - self.gv3 = gv3 - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.pgv3 = pgv3 - - def __str__(self): - str = 'class=GovHydroWPID\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteam0.py b/cimpy/cgmes_v2_4_15/GovSteam0.py deleted file mode 100644 index bdf448b3..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteam0.py +++ /dev/null @@ -1,52 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteam0(TurbineGovernorDynamics): - ''' - A simplified steam turbine governor model. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :r: Permanent droop (R). Typical Value = 0.05. Default: 0.0 - :t1: Steam bowl time constant (T1). Typical Value = 0.5. Default: 0 - :vmax: Maximum valve position, PU of mwcap (Vmax). Typical Value = 1. Default: 0.0 - :vmin: Minimum valve position, PU of mwcap (Vmin). Typical Value = 0. Default: 0.0 - :t2: Numerator time constant of T2/T3 block (T2). Typical Value = 3. Default: 0 - :t3: Reheater time constant (T3). Typical Value = 10. Default: 0 - :dt: Turbine damping coefficient (Dt). Unit = delta P / delta speed. Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'dt': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, t1 = 0, vmax = 0.0, vmin = 0.0, t2 = 0, t3 = 0, dt = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.t1 = t1 - self.vmax = vmax - self.vmin = vmin - self.t2 = t2 - self.t3 = t3 - self.dt = dt - - def __str__(self): - str = 'class=GovSteam0\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteam1.py b/cimpy/cgmes_v2_4_15/GovSteam1.py deleted file mode 100644 index df0a5c7d..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteam1.py +++ /dev/null @@ -1,145 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteam1(TurbineGovernorDynamics): - ''' - Steam turbine governor model, based on the GovSteamIEEE1 model (with optional deadband and nonlinear valve gain added). - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :k: Governor gain (reciprocal of droop) (K) (>0). Typical Value = 25. Default: 0.0 - :t1: Governor lag time constant (T1). Typical Value = 0. Default: 0 - :t2: Governor lead time constant (T2). Typical Value = 0. Default: 0 - :t3: Valve positioner time constant (T3(>0). Typical Value = 0.1. Default: 0 - :uo: Maximum valve opening velocity (Uo) (>0). Unit = PU/sec. Typical Value = 1. Default: 0.0 - :uc: Maximum valve closing velocity (Uc) (<0). Unit = PU/sec. Typical Value = -10. Default: 0.0 - :pmax: Maximum valve opening (Pmax) (> Pmin). Typical Value = 1. Default: 0.0 - :pmin: Minimum valve opening (Pmin) (>=0). Typical Value = 0. Default: 0.0 - :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.3. Default: 0 - :k1: Fraction of HP shaft power after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 - :k2: Fraction of LP shaft power after first boiler pass (K2). Typical Value = 0. Default: 0.0 - :t5: Time constant of second boiler pass (T5). Typical Value = 5. Default: 0 - :k3: Fraction of HP shaft power after second boiler pass (K3). Typical Value = 0.3. Default: 0.0 - :k4: Fraction of LP shaft power after second boiler pass (K4). Typical Value = 0. Default: 0.0 - :t6: Time constant of third boiler pass (T6). Typical Value = 0.5. Default: 0 - :k5: Fraction of HP shaft power after third boiler pass (K5). Typical Value = 0.5. Default: 0.0 - :k6: Fraction of LP shaft power after third boiler pass (K6). Typical Value = 0. Default: 0.0 - :t7: Time constant of fourth boiler pass (T7). Typical Value = 0. Default: 0 - :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical Value = 0. Default: 0.0 - :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical Value = 0. Default: 0.0 - :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 - :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 - :sdb1: Intentional deadband indicator. true = intentional deadband is applied false = intentional deadband is not applied. Typical Value = true. Default: False - :sdb2: Unintentional deadband location. true = intentional deadband is applied before point `A` false = intentional deadband is applied after point `A`. Typical Value = true. Default: False - :db2: Unintentional deadband (db2). Unit = MW. Typical Value = 0. Default: 0.0 - :valve: Nonlinear valve characteristic. true = nonlinear valve characteristic is used false = nonlinear valve characteristic is not used. Typical Value = true. Default: False - :gv1: Nonlinear gain valve position point 1 (GV1). Typical Value = 0. Default: 0.0 - :pgv1: Nonlinear gain power value point 1 (Pgv1). Typical Value = 0. Default: 0.0 - :gv2: Nonlinear gain valve position point 2 (GV2). Typical Value = 0.4. Default: 0.0 - :pgv2: Nonlinear gain power value point 2 (Pgv2). Typical Value = 0.75. Default: 0.0 - :gv3: Nonlinear gain valve position point 3 (GV3). Typical Value = 0.5. Default: 0.0 - :pgv3: Nonlinear gain power value point 3 (Pgv3). Typical Value = 0.91. Default: 0.0 - :gv4: Nonlinear gain valve position point 4 (GV4). Typical Value = 0.6. Default: 0.0 - :pgv4: Nonlinear gain power value point 4 (Pgv4). Typical Value = 0.98. Default: 0.0 - :gv5: Nonlinear gain valve position point 5 (GV5). Typical Value = 1. Default: 0.0 - :pgv5: Nonlinear gain power value point 5 (Pgv5). Typical Value = 1. Default: 0.0 - :gv6: Nonlinear gain valve position point 6 (GV6). Typical Value = 0. Default: 0.0 - :pgv6: Nonlinear gain power value point 6 (Pgv6). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'k5': [cgmesProfile.DY.value, ], - 'k6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 'k7': [cgmesProfile.DY.value, ], - 'k8': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'eps': [cgmesProfile.DY.value, ], - 'sdb1': [cgmesProfile.DY.value, ], - 'sdb2': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'valve': [cgmesProfile.DY.value, ], - 'gv1': [cgmesProfile.DY.value, ], - 'pgv1': [cgmesProfile.DY.value, ], - 'gv2': [cgmesProfile.DY.value, ], - 'pgv2': [cgmesProfile.DY.value, ], - 'gv3': [cgmesProfile.DY.value, ], - 'pgv3': [cgmesProfile.DY.value, ], - 'gv4': [cgmesProfile.DY.value, ], - 'pgv4': [cgmesProfile.DY.value, ], - 'gv5': [cgmesProfile.DY.value, ], - 'pgv5': [cgmesProfile.DY.value, ], - 'gv6': [cgmesProfile.DY.value, ], - 'pgv6': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, k = 0.0, t1 = 0, t2 = 0, t3 = 0, uo = 0.0, uc = 0.0, pmax = 0.0, pmin = 0.0, t4 = 0, k1 = 0.0, k2 = 0.0, t5 = 0, k3 = 0.0, k4 = 0.0, t6 = 0, k5 = 0.0, k6 = 0.0, t7 = 0, k7 = 0.0, k8 = 0.0, db1 = 0.0, eps = 0.0, sdb1 = False, sdb2 = False, db2 = 0.0, valve = False, gv1 = 0.0, pgv1 = 0.0, gv2 = 0.0, pgv2 = 0.0, gv3 = 0.0, pgv3 = 0.0, gv4 = 0.0, pgv4 = 0.0, gv5 = 0.0, pgv5 = 0.0, gv6 = 0.0, pgv6 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.k = k - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.uo = uo - self.uc = uc - self.pmax = pmax - self.pmin = pmin - self.t4 = t4 - self.k1 = k1 - self.k2 = k2 - self.t5 = t5 - self.k3 = k3 - self.k4 = k4 - self.t6 = t6 - self.k5 = k5 - self.k6 = k6 - self.t7 = t7 - self.k7 = k7 - self.k8 = k8 - self.db1 = db1 - self.eps = eps - self.sdb1 = sdb1 - self.sdb2 = sdb2 - self.db2 = db2 - self.valve = valve - self.gv1 = gv1 - self.pgv1 = pgv1 - self.gv2 = gv2 - self.pgv2 = pgv2 - self.gv3 = gv3 - self.pgv3 = pgv3 - self.gv4 = gv4 - self.pgv4 = pgv4 - self.gv5 = gv5 - self.pgv5 = pgv5 - self.gv6 = gv6 - self.pgv6 = pgv6 - - def __str__(self): - str = 'class=GovSteam1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteam2.py b/cimpy/cgmes_v2_4_15/GovSteam2.py deleted file mode 100644 index 35d60f67..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteam2.py +++ /dev/null @@ -1,52 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteam2(TurbineGovernorDynamics): - ''' - Simplified governor model. - - :k: Governor gain (reciprocal of droop) (K). Typical Value = 20. Default: 0.0 - :dbf: Frequency dead band (DBF). Typical Value = 0. Default: 0.0 - :t1: Governor lag time constant (T) (>0). Typical Value = 0.45. Default: 0 - :t2: Governor lead time constant (T) (may be 0). Typical Value = 0. Default: 0 - :pmax: Maximum fuel flow (P). Typical Value = 1. Default: 0.0 - :pmin: Minimum fuel flow (P). Typical Value = 0. Default: 0.0 - :mxef: Fuel flow maximum positive error value (MX). Typical Value = 1. Default: 0.0 - :mnef: Fuel flow maximum negative error value (MN). Typical Value = -1. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'dbf': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'mxef': [cgmesProfile.DY.value, ], - 'mnef': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, k = 0.0, dbf = 0.0, t1 = 0, t2 = 0, pmax = 0.0, pmin = 0.0, mxef = 0.0, mnef = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k = k - self.dbf = dbf - self.t1 = t1 - self.t2 = t2 - self.pmax = pmax - self.pmin = pmin - self.mxef = mxef - self.mnef = mnef - - def __str__(self): - str = 'class=GovSteam2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamCC.py b/cimpy/cgmes_v2_4_15/GovSteamCC.py deleted file mode 100644 index 5e8d07de..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamCC.py +++ /dev/null @@ -1,79 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamCC(TurbineGovernorDynamics): - ''' - Cross compound turbine governor model. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :pmaxhp: Maximum HP value position (Pmaxhp). Typical Value = 1. Default: 0.0 - :rhp: HP governor droop (Rhp). Typical Value = 0.05. Default: 0.0 - :t1hp: HP governor time constant (T1hp). Typical Value = 0.1. Default: 0 - :t3hp: HP turbine time constant (T3hp). Typical Value = 0.1. Default: 0 - :t4hp: HP turbine time constant (T4hp). Typical Value = 0.1. Default: 0 - :t5hp: HP reheater time constant (T5hp). Typical Value = 10. Default: 0 - :fhp: Fraction of HP power ahead of reheater (Fhp). Typical Value = 0.3. Default: 0.0 - :dhp: HP damping factor (Dhp). Typical Value = 0. Default: 0.0 - :pmaxlp: Maximum LP value position (Pmaxlp). Typical Value = 1. Default: 0.0 - :rlp: LP governor droop (Rlp). Typical Value = 0.05. Default: 0.0 - :t1lp: LP governor time constant (T1lp). Typical Value = 0.1. Default: 0 - :t3lp: LP turbine time constant (T3lp). Typical Value = 0.1. Default: 0 - :t4lp: LP turbine time constant (T4lp). Typical Value = 0.1. Default: 0 - :t5lp: LP reheater time constant (T5lp). Typical Value = 10. Default: 0 - :flp: Fraction of LP power ahead of reheater (Flp). Typical Value = 0.7. Default: 0.0 - :dlp: LP damping factor (Dlp). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'pmaxhp': [cgmesProfile.DY.value, ], - 'rhp': [cgmesProfile.DY.value, ], - 't1hp': [cgmesProfile.DY.value, ], - 't3hp': [cgmesProfile.DY.value, ], - 't4hp': [cgmesProfile.DY.value, ], - 't5hp': [cgmesProfile.DY.value, ], - 'fhp': [cgmesProfile.DY.value, ], - 'dhp': [cgmesProfile.DY.value, ], - 'pmaxlp': [cgmesProfile.DY.value, ], - 'rlp': [cgmesProfile.DY.value, ], - 't1lp': [cgmesProfile.DY.value, ], - 't3lp': [cgmesProfile.DY.value, ], - 't4lp': [cgmesProfile.DY.value, ], - 't5lp': [cgmesProfile.DY.value, ], - 'flp': [cgmesProfile.DY.value, ], - 'dlp': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, pmaxhp = 0.0, rhp = 0.0, t1hp = 0, t3hp = 0, t4hp = 0, t5hp = 0, fhp = 0.0, dhp = 0.0, pmaxlp = 0.0, rlp = 0.0, t1lp = 0, t3lp = 0, t4lp = 0, t5lp = 0, flp = 0.0, dlp = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.pmaxhp = pmaxhp - self.rhp = rhp - self.t1hp = t1hp - self.t3hp = t3hp - self.t4hp = t4hp - self.t5hp = t5hp - self.fhp = fhp - self.dhp = dhp - self.pmaxlp = pmaxlp - self.rlp = rlp - self.t1lp = t1lp - self.t3lp = t3lp - self.t4lp = t4lp - self.t5lp = t5lp - self.flp = flp - self.dlp = dlp - - def __str__(self): - str = 'class=GovSteamCC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamEU.py b/cimpy/cgmes_v2_4_15/GovSteamEU.py deleted file mode 100644 index d216ac3a..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamEU.py +++ /dev/null @@ -1,133 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamEU(TurbineGovernorDynamics): - ''' - Simplified model of boiler and steam turbine with PID governor. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :tp: Power transducer time constant (Tp). Typical Value = 0.07. Default: 0 - :ke: Gain of the power controller (Ke). Typical Value = 0.65. Default: 0.0 - :tip: Integral time constant of the power controller (Tip). Typical Value = 2. Default: 0 - :tdp: Derivative time constant of the power controller (Tdp). Typical Value = 0. Default: 0 - :tfp: Time constant of the power controller (Tfp). Typical Value = 0. Default: 0 - :tf: Frequency transducer time constant (Tf). Typical Value = 0. Default: 0 - :kfcor: Gain of the frequency corrector (Kfcor). Typical Value = 20. Default: 0.0 - :db1: Dead band of the frequency corrector (db1). Typical Value = 0. Default: 0.0 - :wfmax: Upper limit for frequency correction (Wfmax). Typical Value = 0.05. Default: 0.0 - :wfmin: Lower limit for frequency correction (Wfmin). Typical Value = -0.05. Default: 0.0 - :pmax: Maximal active power of the turbine (Pmax). Typical Value = 1. Default: 0.0 - :ten: Electro hydraulic transducer (Ten). Typical Value = 0.1. Default: 0 - :tw: Speed transducer time constant (Tw). Typical Value = 0.02. Default: 0 - :kwcor: Gain of the speed governor (Kwcor). Typical Value = 20. Default: 0.0 - :db2: Dead band of the speed governor (db2). Typical Value = 0.0004. Default: 0.0 - :wwmax: Upper limit for the speed governor (Wwmax). Typical Value = 0.1. Default: 0.0 - :wwmin: Lower limit for the speed governor frequency correction (Wwmin). Typical Value = -1. Default: 0.0 - :wmax1: Emergency speed control lower limit (wmax1). Typical Value = 1.025. Default: 0.0 - :wmax2: Emergency speed control upper limit (wmax2). Typical Value = 1.05. Default: 0.0 - :tvhp: Control valves servo time constant (Tvhp). Typical Value = 0.1. Default: 0 - :cho: Control valves rate opening limit (Cho). Unit = PU/sec. Typical Value = 0.17. Default: 0.0 - :chc: Control valves rate closing limit (Chc). Unit = PU/sec. Typical Value = -3.3. Default: 0.0 - :hhpmax: Maximum control valve position (Hhpmax). Typical Value = 1. Default: 0.0 - :tvip: Intercept valves servo time constant (Tvip). Typical Value = 0.15. Default: 0 - :cio: Intercept valves rate opening limit (Cio). Typical Value = 0.123. Default: 0.0 - :cic: Intercept valves rate closing limit (Cic). Typical Value = -2.2. Default: 0.0 - :simx: Intercept valves transfer limit (Simx). Typical Value = 0.425. Default: 0.0 - :thp: High pressure (HP) time constant of the turbine (Thp). Typical Value = 0.31. Default: 0 - :trh: Reheater time constant of the turbine (Trh). Typical Value = 8. Default: 0 - :tlp: Low pressure(LP) time constant of the turbine (Tlp). Typical Value = 0.45. Default: 0 - :prhmax: Maximum low pressure limit (Prhmax). Typical Value = 1.4. Default: 0.0 - :khp: Fraction of total turbine output generated by HP part (Khp). Typical Value = 0.277. Default: 0.0 - :klp: Fraction of total turbine output generated by HP part (Klp). Typical Value = 0.723. Default: 0.0 - :tb: Boiler time constant (Tb). Typical Value = 100. Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'ke': [cgmesProfile.DY.value, ], - 'tip': [cgmesProfile.DY.value, ], - 'tdp': [cgmesProfile.DY.value, ], - 'tfp': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'kfcor': [cgmesProfile.DY.value, ], - 'db1': [cgmesProfile.DY.value, ], - 'wfmax': [cgmesProfile.DY.value, ], - 'wfmin': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'ten': [cgmesProfile.DY.value, ], - 'tw': [cgmesProfile.DY.value, ], - 'kwcor': [cgmesProfile.DY.value, ], - 'db2': [cgmesProfile.DY.value, ], - 'wwmax': [cgmesProfile.DY.value, ], - 'wwmin': [cgmesProfile.DY.value, ], - 'wmax1': [cgmesProfile.DY.value, ], - 'wmax2': [cgmesProfile.DY.value, ], - 'tvhp': [cgmesProfile.DY.value, ], - 'cho': [cgmesProfile.DY.value, ], - 'chc': [cgmesProfile.DY.value, ], - 'hhpmax': [cgmesProfile.DY.value, ], - 'tvip': [cgmesProfile.DY.value, ], - 'cio': [cgmesProfile.DY.value, ], - 'cic': [cgmesProfile.DY.value, ], - 'simx': [cgmesProfile.DY.value, ], - 'thp': [cgmesProfile.DY.value, ], - 'trh': [cgmesProfile.DY.value, ], - 'tlp': [cgmesProfile.DY.value, ], - 'prhmax': [cgmesProfile.DY.value, ], - 'khp': [cgmesProfile.DY.value, ], - 'klp': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, tp = 0, ke = 0.0, tip = 0, tdp = 0, tfp = 0, tf = 0, kfcor = 0.0, db1 = 0.0, wfmax = 0.0, wfmin = 0.0, pmax = 0.0, ten = 0, tw = 0, kwcor = 0.0, db2 = 0.0, wwmax = 0.0, wwmin = 0.0, wmax1 = 0.0, wmax2 = 0.0, tvhp = 0, cho = 0.0, chc = 0.0, hhpmax = 0.0, tvip = 0, cio = 0.0, cic = 0.0, simx = 0.0, thp = 0, trh = 0, tlp = 0, prhmax = 0.0, khp = 0.0, klp = 0.0, tb = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.tp = tp - self.ke = ke - self.tip = tip - self.tdp = tdp - self.tfp = tfp - self.tf = tf - self.kfcor = kfcor - self.db1 = db1 - self.wfmax = wfmax - self.wfmin = wfmin - self.pmax = pmax - self.ten = ten - self.tw = tw - self.kwcor = kwcor - self.db2 = db2 - self.wwmax = wwmax - self.wwmin = wwmin - self.wmax1 = wmax1 - self.wmax2 = wmax2 - self.tvhp = tvhp - self.cho = cho - self.chc = chc - self.hhpmax = hhpmax - self.tvip = tvip - self.cio = cio - self.cic = cic - self.simx = simx - self.thp = thp - self.trh = trh - self.tlp = tlp - self.prhmax = prhmax - self.khp = khp - self.klp = klp - self.tb = tb - - def __str__(self): - str = 'class=GovSteamEU\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamFV2.py b/cimpy/cgmes_v2_4_15/GovSteamFV2.py deleted file mode 100644 index d1e6843e..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamFV2.py +++ /dev/null @@ -1,67 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamFV2(TurbineGovernorDynamics): - ''' - Steam turbine governor with reheat time constants and modeling of the effects of fast valve closing to reduce mechanical power. - - :mwbase: Alternate Base used instead of Machine base in equipment model if necessary (MWbase) (>0). Unit = MW. Default: 0.0 - :r: (R). Default: 0.0 - :t1: Governor time constant (T1). Default: 0 - :vmax: (Vmax). Default: 0.0 - :vmin: (Vmin). Default: 0.0 - :k: Fraction of the turbine power developed by turbine sections not involved in fast valving (K). Default: 0.0 - :t3: Reheater time constant (T3). Default: 0 - :dt: (Dt). Default: 0.0 - :tt: Time constant with which power falls off after intercept valve closure (Tt). Default: 0 - :ta: Time after initial time for valve to close (Ta). Default: 0 - :tb: Time after initial time for valve to begin opening (Tb). Default: 0 - :tc: Time after initial time for valve to become fully open (Tc). Default: 0 - :ti: Initial time to begin fast valving (Ti). Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'vmax': [cgmesProfile.DY.value, ], - 'vmin': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'dt': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ti': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, r = 0.0, t1 = 0, vmax = 0.0, vmin = 0.0, k = 0.0, t3 = 0, dt = 0.0, tt = 0, ta = 0, tb = 0, tc = 0, ti = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.r = r - self.t1 = t1 - self.vmax = vmax - self.vmin = vmin - self.k = k - self.t3 = t3 - self.dt = dt - self.tt = tt - self.ta = ta - self.tb = tb - self.tc = tc - self.ti = ti - - def __str__(self): - str = 'class=GovSteamFV2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamFV3.py b/cimpy/cgmes_v2_4_15/GovSteamFV3.py deleted file mode 100644 index 9446ab2d..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamFV3.py +++ /dev/null @@ -1,85 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamFV3(TurbineGovernorDynamics): - ''' - Simplified GovSteamIEEE1 Steam turbine governor model with Prmax limit and fast valving. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :k: Governor gain, (reciprocal of droop) (K). Typical Value = 20. Default: 0.0 - :t1: Governor lead time constant (T1). Typical Value = 0. Default: 0 - :t2: Governor lag time constant (T2). Typical Value = 0. Default: 0 - :t3: Valve positioner time constant (T3). Typical Value = 0. Default: 0 - :uo: Maximum valve opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 - :uc: Maximum valve closing velocity (Uc). Unit = PU/sec. Typical Value = -1. Default: 0.0 - :pmax: Maximum valve opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 - :pmin: Minimum valve opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 - :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.2. Default: 0 - :k1: Fraction of turbine power developed after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 - :t5: Time constant of second boiler pass (i.e. reheater) (T5). Typical Value = 0.5. Default: 0 - :k2: Fraction of turbine power developed after second boiler pass (K2). Typical Value = 0.2. Default: 0.0 - :t6: Time constant of crossover or third boiler pass (T6). Typical Value = 10. Default: 0 - :k3: Fraction of hp turbine power developed after crossover or third boiler pass (K3). Typical Value = 0.6. Default: 0.0 - :ta: Time to close intercept valve (IV) (Ta). Typical Value = 0.97. Default: 0 - :tb: Time until IV starts to reopen (Tb). Typical Value = 0.98. Default: 0 - :tc: Time until IV is fully open (Tc). Typical Value = 0.99. Default: 0 - :prmax: Max. pressure in reheater (Prmax). Typical Value = 1. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'prmax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, k = 0.0, t1 = 0, t2 = 0, t3 = 0, uo = 0.0, uc = 0.0, pmax = 0.0, pmin = 0.0, t4 = 0, k1 = 0.0, t5 = 0, k2 = 0.0, t6 = 0, k3 = 0.0, ta = 0, tb = 0, tc = 0, prmax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.k = k - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.uo = uo - self.uc = uc - self.pmax = pmax - self.pmin = pmin - self.t4 = t4 - self.k1 = k1 - self.t5 = t5 - self.k2 = k2 - self.t6 = t6 - self.k3 = k3 - self.ta = ta - self.tb = tb - self.tc = tc - self.prmax = prmax - - def __str__(self): - str = 'class=GovSteamFV3\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamFV4.py b/cimpy/cgmes_v2_4_15/GovSteamFV4.py deleted file mode 100644 index 468f3d01..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamFV4.py +++ /dev/null @@ -1,181 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamFV4(TurbineGovernorDynamics): - ''' - Detailed electro-hydraulic governor for steam unit. - - :kf1: Frequency bias (reciprocal of droop) (Kf1). Typical Value = 20. Default: 0.0 - :kf3: Frequency control (reciprocal of droop) (Kf3). Typical Value = 20. Default: 0.0 - :lps: Maximum positive power error (Lps). Typical Value = 0.03. Default: 0.0 - :lpi: Maximum negative power error (Lpi). Typical Value = -0.15. Default: 0.0 - :mxef: Upper limit for frequency correction (MX). Typical Value = 0.05. Default: 0.0 - :mnef: Lower limit for frequency correction (MN). Typical Value = -0.05. Default: 0.0 - :crmx: Maximum value of regulator set-point (Crmx). Typical Value = 1.2. Default: 0.0 - :crmn: Minimum value of regulator set-point (Crmn). Typical Value = 0. Default: 0.0 - :kpt: Proportional gain of electro-hydraulic regulator (Kpt). Typical Value = 0.3. Default: 0.0 - :kit: Integral gain of electro-hydraulic regulator (Kit). Typical Value = 0.04. Default: 0.0 - :rvgmx: Maximum value of integral regulator (Rvgmx). Typical Value = 1.2. Default: 0.0 - :rvgmn: Minimum value of integral regulator (Rvgmn). Typical Value = 0. Default: 0.0 - :svmx: Maximum regulator gate opening velocity (Svmx). Typical Value = 0.0333. Default: 0.0 - :svmn: Maximum regulator gate closing velocity (Svmn). Typical Value = -0.0333. Default: 0.0 - :srmx: Maximum valve opening (Srmx). Typical Value = 1.1. Default: 0.0 - :srmn: Minimum valve opening (Srmn). Typical Value = 0. Default: 0.0 - :kpp: Proportional gain of pressure feedback regulator (Kpp). Typical Value = 1. Default: 0.0 - :kip: Integral gain of pressure feedback regulator (Kip). Typical Value = 0.5. Default: 0.0 - :rsmimx: Maximum value of integral regulator (Rsmimx). Typical Value = 1.1. Default: 0.0 - :rsmimn: Minimum value of integral regulator (Rsmimn). Typical Value = 0. Default: 0.0 - :kmp1: First gain coefficient of intercept valves characteristic (Kmp1). Typical Value = 0.5. Default: 0.0 - :kmp2: Second gain coefficient of intercept valves characteristic (Kmp2). Typical Value = 3.5. Default: 0.0 - :srsmp: Intercept valves characteristic discontinuity point (Srsmp). Typical Value = 0.43. Default: 0.0 - :ta: Control valves rate opening time (Ta). Typical Value = 0.8. Default: 0 - :tc: Control valves rate closing time (Tc). Typical Value = 0.5. Default: 0 - :ty: Control valves servo time constant (Ty). Typical Value = 0.1. Default: 0 - :yhpmx: Maximum control valve position (Yhpmx). Typical Value = 1.1. Default: 0.0 - :yhpmn: Minimum control valve position (Yhpmn). Typical Value = 0. Default: 0.0 - :tam: Intercept valves rate opening time (Tam). Typical Value = 0.8. Default: 0 - :tcm: Intercept valves rate closing time (Tcm). Typical Value = 0.5. Default: 0 - :ympmx: Maximum intercept valve position (Ympmx). Typical Value = 1.1. Default: 0.0 - :ympmn: Minimum intercept valve position (Ympmn). Typical Value = 0. Default: 0.0 - :y: Coefficient of linearized equations of turbine (Stodola formulation) (Y). Typical Value = 0.13. Default: 0.0 - :thp: High pressure (HP) time constant of the turbine (Thp). Typical Value = 0.15. Default: 0 - :trh: Reheater time constant of the turbine (Trh). Typical Value = 10. Default: 0 - :tmp: Low pressure (LP) time constant of the turbine (Tmp). Typical Value = 0.4. Default: 0 - :khp: Fraction of total turbine output generated by HP part (Khp). Typical Value = 0.35. Default: 0.0 - :pr1: First value of pressure set point static characteristic (Pr1). Typical Value = 0.2. Default: 0.0 - :pr2: Second value of pressure set point static characteristic, corresponding to Ps0 = 1.0 PU (Pr2). Typical Value = 0.75. Default: 0.0 - :psmn: Minimum value of pressure set point static characteristic (Psmn). Typical Value = 1. Default: 0.0 - :kpc: Proportional gain of pressure regulator (Kpc). Typical Value = 0.5. Default: 0.0 - :kic: Integral gain of pressure regulator (Kic). Typical Value = 0.0033. Default: 0.0 - :kdc: Derivative gain of pressure regulator (Kdc). Typical Value = 1. Default: 0.0 - :tdc: Derivative time constant of pressure regulator (Tdc). Typical Value = 90. Default: 0 - :cpsmx: Maximum value of pressure regulator output (Cpsmx). Typical Value = 1. Default: 0.0 - :cpsmn: Minimum value of pressure regulator output (Cpsmn). Typical Value = -1. Default: 0.0 - :krc: Maximum variation of fuel flow (Krc). Typical Value = 0.05. Default: 0.0 - :tf1: Time constant of fuel regulation (Tf1). Typical Value = 10. Default: 0 - :tf2: Time constant of steam chest (Tf2). Typical Value = 10. Default: 0 - :tv: Boiler time constant (Tv). Typical Value = 60. Default: 0 - :ksh: Pressure loss due to flow friction in the boiler tubes (Ksh). Typical Value = 0.08. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kf1': [cgmesProfile.DY.value, ], - 'kf3': [cgmesProfile.DY.value, ], - 'lps': [cgmesProfile.DY.value, ], - 'lpi': [cgmesProfile.DY.value, ], - 'mxef': [cgmesProfile.DY.value, ], - 'mnef': [cgmesProfile.DY.value, ], - 'crmx': [cgmesProfile.DY.value, ], - 'crmn': [cgmesProfile.DY.value, ], - 'kpt': [cgmesProfile.DY.value, ], - 'kit': [cgmesProfile.DY.value, ], - 'rvgmx': [cgmesProfile.DY.value, ], - 'rvgmn': [cgmesProfile.DY.value, ], - 'svmx': [cgmesProfile.DY.value, ], - 'svmn': [cgmesProfile.DY.value, ], - 'srmx': [cgmesProfile.DY.value, ], - 'srmn': [cgmesProfile.DY.value, ], - 'kpp': [cgmesProfile.DY.value, ], - 'kip': [cgmesProfile.DY.value, ], - 'rsmimx': [cgmesProfile.DY.value, ], - 'rsmimn': [cgmesProfile.DY.value, ], - 'kmp1': [cgmesProfile.DY.value, ], - 'kmp2': [cgmesProfile.DY.value, ], - 'srsmp': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'ty': [cgmesProfile.DY.value, ], - 'yhpmx': [cgmesProfile.DY.value, ], - 'yhpmn': [cgmesProfile.DY.value, ], - 'tam': [cgmesProfile.DY.value, ], - 'tcm': [cgmesProfile.DY.value, ], - 'ympmx': [cgmesProfile.DY.value, ], - 'ympmn': [cgmesProfile.DY.value, ], - 'y': [cgmesProfile.DY.value, ], - 'thp': [cgmesProfile.DY.value, ], - 'trh': [cgmesProfile.DY.value, ], - 'tmp': [cgmesProfile.DY.value, ], - 'khp': [cgmesProfile.DY.value, ], - 'pr1': [cgmesProfile.DY.value, ], - 'pr2': [cgmesProfile.DY.value, ], - 'psmn': [cgmesProfile.DY.value, ], - 'kpc': [cgmesProfile.DY.value, ], - 'kic': [cgmesProfile.DY.value, ], - 'kdc': [cgmesProfile.DY.value, ], - 'tdc': [cgmesProfile.DY.value, ], - 'cpsmx': [cgmesProfile.DY.value, ], - 'cpsmn': [cgmesProfile.DY.value, ], - 'krc': [cgmesProfile.DY.value, ], - 'tf1': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'tv': [cgmesProfile.DY.value, ], - 'ksh': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, kf1 = 0.0, kf3 = 0.0, lps = 0.0, lpi = 0.0, mxef = 0.0, mnef = 0.0, crmx = 0.0, crmn = 0.0, kpt = 0.0, kit = 0.0, rvgmx = 0.0, rvgmn = 0.0, svmx = 0.0, svmn = 0.0, srmx = 0.0, srmn = 0.0, kpp = 0.0, kip = 0.0, rsmimx = 0.0, rsmimn = 0.0, kmp1 = 0.0, kmp2 = 0.0, srsmp = 0.0, ta = 0, tc = 0, ty = 0, yhpmx = 0.0, yhpmn = 0.0, tam = 0, tcm = 0, ympmx = 0.0, ympmn = 0.0, y = 0.0, thp = 0, trh = 0, tmp = 0, khp = 0.0, pr1 = 0.0, pr2 = 0.0, psmn = 0.0, kpc = 0.0, kic = 0.0, kdc = 0.0, tdc = 0, cpsmx = 0.0, cpsmn = 0.0, krc = 0.0, tf1 = 0, tf2 = 0, tv = 0, ksh = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kf1 = kf1 - self.kf3 = kf3 - self.lps = lps - self.lpi = lpi - self.mxef = mxef - self.mnef = mnef - self.crmx = crmx - self.crmn = crmn - self.kpt = kpt - self.kit = kit - self.rvgmx = rvgmx - self.rvgmn = rvgmn - self.svmx = svmx - self.svmn = svmn - self.srmx = srmx - self.srmn = srmn - self.kpp = kpp - self.kip = kip - self.rsmimx = rsmimx - self.rsmimn = rsmimn - self.kmp1 = kmp1 - self.kmp2 = kmp2 - self.srsmp = srsmp - self.ta = ta - self.tc = tc - self.ty = ty - self.yhpmx = yhpmx - self.yhpmn = yhpmn - self.tam = tam - self.tcm = tcm - self.ympmx = ympmx - self.ympmn = ympmn - self.y = y - self.thp = thp - self.trh = trh - self.tmp = tmp - self.khp = khp - self.pr1 = pr1 - self.pr2 = pr2 - self.psmn = psmn - self.kpc = kpc - self.kic = kic - self.kdc = kdc - self.tdc = tdc - self.cpsmx = cpsmx - self.cpsmn = cpsmn - self.krc = krc - self.tf1 = tf1 - self.tf2 = tf2 - self.tv = tv - self.ksh = ksh - - def __str__(self): - str = 'class=GovSteamFV4\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py b/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py deleted file mode 100644 index 2f6f517f..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py +++ /dev/null @@ -1,91 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamIEEE1(TurbineGovernorDynamics): - ''' - IEEE steam turbine governor model. Ref - - :mwbase: Base for power values (MWbase) (> 0) Default: 0.0 - :k: Governor gain (reciprocal of droop) (K) (> 0). Typical Value = 25. Default: 0.0 - :t1: Governor lag time constant (T1). Typical Value = 0. Default: 0 - :t2: Governor lead time constant (T2). Typical Value = 0. Default: 0 - :t3: Valve positioner time constant (T3) (> 0). Typical Value = 0.1. Default: 0 - :uo: Maximum valve opening velocity (Uo) (> 0). Unit = PU/sec. Typical Value = 1. Default: 0.0 - :uc: Maximum valve closing velocity (Uc) (< 0). Unit = PU/sec. Typical Value = -10. Default: 0.0 - :pmax: Maximum valve opening (Pmax) (> Pmin). Typical Value = 1. Default: 0.0 - :pmin: Minimum valve opening (Pmin) (>= 0). Typical Value = 0. Default: 0.0 - :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.3. Default: 0 - :k1: Fraction of HP shaft power after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 - :k2: Fraction of LP shaft power after first boiler pass (K2). Typical Value = 0. Default: 0.0 - :t5: Time constant of second boiler pass (T5). Typical Value = 5. Default: 0 - :k3: Fraction of HP shaft power after second boiler pass (K3). Typical Value = 0.3. Default: 0.0 - :k4: Fraction of LP shaft power after second boiler pass (K4). Typical Value = 0. Default: 0.0 - :t6: Time constant of third boiler pass (T6). Typical Value = 0.5. Default: 0 - :k5: Fraction of HP shaft power after third boiler pass (K5). Typical Value = 0.5. Default: 0.0 - :k6: Fraction of LP shaft power after third boiler pass (K6). Typical Value = 0. Default: 0.0 - :t7: Time constant of fourth boiler pass (T7). Typical Value = 0. Default: 0 - :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical Value = 0. Default: 0.0 - :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'uo': [cgmesProfile.DY.value, ], - 'uc': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'k5': [cgmesProfile.DY.value, ], - 'k6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 'k7': [cgmesProfile.DY.value, ], - 'k8': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, k = 0.0, t1 = 0, t2 = 0, t3 = 0, uo = 0.0, uc = 0.0, pmax = 0.0, pmin = 0.0, t4 = 0, k1 = 0.0, k2 = 0.0, t5 = 0, k3 = 0.0, k4 = 0.0, t6 = 0, k5 = 0.0, k6 = 0.0, t7 = 0, k7 = 0.0, k8 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.k = k - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.uo = uo - self.uc = uc - self.pmax = pmax - self.pmin = pmin - self.t4 = t4 - self.k1 = k1 - self.k2 = k2 - self.t5 = t5 - self.k3 = k3 - self.k4 = k4 - self.t6 = t6 - self.k5 = k5 - self.k6 = k6 - self.t7 = t7 - self.k7 = k7 - self.k8 = k8 - - def __str__(self): - str = 'class=GovSteamIEEE1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GovSteamSGO.py b/cimpy/cgmes_v2_4_15/GovSteamSGO.py deleted file mode 100644 index a5c7a4b2..00000000 --- a/cimpy/cgmes_v2_4_15/GovSteamSGO.py +++ /dev/null @@ -1,64 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class GovSteamSGO(TurbineGovernorDynamics): - ''' - Simplified Steam turbine governor model. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :t1: Controller lag (T1). Default: 0 - :t2: Controller lead compensation (T2). Default: 0 - :t3: Governor lag (T3) (>0). Default: 0 - :t4: Delay due to steam inlet volumes associated with steam chest and inlet piping (T4). Default: 0 - :t5: Reheater delay including hot and cold leads (T5). Default: 0 - :t6: Delay due to IP-LP turbine, crossover pipes and LP end hoods (T6). Default: 0 - :k1: One/per unit regulation (K1). Default: 0.0 - :k2: Fraction (K2). Default: 0.0 - :k3: Fraction (K3). Default: 0.0 - :pmax: Upper power limit (Pmax). Default: 0.0 - :pmin: Lower power limit (Pmin). Default: 0 - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'pmax': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, mwbase = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, k1 = 0.0, k2 = 0.0, k3 = 0.0, pmax = 0.0, pmin = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.k1 = k1 - self.k2 = k2 - self.k3 = k3 - self.pmax = pmax - self.pmin = pmin - - def __str__(self): - str = 'class=GovSteamSGO\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py b/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py deleted file mode 100644 index be343bf9..00000000 --- a/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Curve import Curve - - -class GrossToNetActivePowerCurve(Curve): - ''' - Relationship between the generating unit's gross active power output on the X-axis (measured at the terminals of the machine(s)) and the generating unit's net active power output on the Y-axis (based on utility-defined measurements at the power station). Station service loads, when modeled, should be treated as non-conforming bus loads. There may be more than one curve, depending on the auxiliary equipment that is in service. - - :GeneratingUnit: A generating unit may have a gross active power to net active power curve, describing the losses and auxiliary power requirements of the unit. Default: None - ''' - - cgmesProfile = Curve.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'GeneratingUnit': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Curve: \n' + Curve.__doc__ - - def __init__(self, GeneratingUnit = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.GeneratingUnit = GeneratingUnit - - def __str__(self): - str = 'class=GrossToNetActivePowerCurve\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Ground.py b/cimpy/cgmes_v2_4_15/Ground.py deleted file mode 100644 index 151d7e0f..00000000 --- a/cimpy/cgmes_v2_4_15/Ground.py +++ /dev/null @@ -1,29 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class Ground(ConductingEquipment): - ''' - A point where the system is grounded used for connecting conducting equipment to ground. The power system model can have any number of grounds. - - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Ground\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GroundDisconnector.py b/cimpy/cgmes_v2_4_15/GroundDisconnector.py deleted file mode 100644 index 6d6cba79..00000000 --- a/cimpy/cgmes_v2_4_15/GroundDisconnector.py +++ /dev/null @@ -1,29 +0,0 @@ -from .Switch import Switch - - -class GroundDisconnector(Switch): - ''' - A manually operated or motor operated mechanical switching device used for isolating a circuit or equipment from ground. - - ''' - - cgmesProfile = Switch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Switch: \n' + Switch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=GroundDisconnector\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/GroundingImpedance.py b/cimpy/cgmes_v2_4_15/GroundingImpedance.py deleted file mode 100644 index c2cf38e8..00000000 --- a/cimpy/cgmes_v2_4_15/GroundingImpedance.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EarthFaultCompensator import EarthFaultCompensator - - -class GroundingImpedance(EarthFaultCompensator): - ''' - A fixed impedance device used for grounding. - - :x: Reactance of device. Default: 0.0 - ''' - - cgmesProfile = EarthFaultCompensator.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EarthFaultCompensator: \n' + EarthFaultCompensator.__doc__ - - def __init__(self, x = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.x = x - - def __str__(self): - str = 'class=GroundingImpedance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py b/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py deleted file mode 100644 index 5f38ed4f..00000000 --- a/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class HydroEnergyConversionKind(Base): - ''' - Specifies the capability of the hydro generating unit to convert energy as a generator or pump. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=HydroEnergyConversionKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py b/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py deleted file mode 100644 index 52294dd1..00000000 --- a/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .GeneratingUnit import GeneratingUnit - - -class HydroGeneratingUnit(GeneratingUnit): - ''' - A generating unit whose prime mover is a hydraulic turbine (e.g., Francis, Pelton, Kaplan). - - :energyConversionCapability: Energy conversion capability for generating. Default: None - :HydroPowerPlant: The hydro generating unit belongs to a hydro power plant. Default: None - ''' - - cgmesProfile = GeneratingUnit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'energyConversionCapability': [cgmesProfile.EQ.value, ], - 'HydroPowerPlant': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class GeneratingUnit: \n' + GeneratingUnit.__doc__ - - def __init__(self, energyConversionCapability = None, HydroPowerPlant = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.energyConversionCapability = energyConversionCapability - self.HydroPowerPlant = HydroPowerPlant - - def __str__(self): - str = 'class=HydroGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py b/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py deleted file mode 100644 index c4a48018..00000000 --- a/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class HydroPlantStorageKind(Base): - ''' - The type of hydro power plant. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=HydroPlantStorageKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/HydroPowerPlant.py b/cimpy/cgmes_v2_4_15/HydroPowerPlant.py deleted file mode 100644 index 81fbbff8..00000000 --- a/cimpy/cgmes_v2_4_15/HydroPowerPlant.py +++ /dev/null @@ -1,37 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class HydroPowerPlant(PowerSystemResource): - ''' - A hydro power station which can generate or pump. When generating, the generator turbines receive water from an upper reservoir. When pumping, the pumps receive their water from a lower reservoir. - - :HydroGeneratingUnits: The hydro generating unit belongs to a hydro power plant. Default: "list" - :hydroPlantStorageType: The type of hydro power plant water storage. Default: None - :HydroPumps: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: "list" - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'HydroGeneratingUnits': [cgmesProfile.EQ.value, ], - 'hydroPlantStorageType': [cgmesProfile.EQ.value, ], - 'HydroPumps': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, HydroGeneratingUnits = "list", hydroPlantStorageType = None, HydroPumps = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.HydroGeneratingUnits = HydroGeneratingUnits - self.hydroPlantStorageType = hydroPlantStorageType - self.HydroPumps = HydroPumps - - def __str__(self): - str = 'class=HydroPowerPlant\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/HydroPump.py b/cimpy/cgmes_v2_4_15/HydroPump.py deleted file mode 100644 index 9cceeb48..00000000 --- a/cimpy/cgmes_v2_4_15/HydroPump.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Equipment import Equipment - - -class HydroPump(Equipment): - ''' - A synchronous motor-driven pump, typically associated with a pumped storage plant. - - :HydroPowerPlant: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: None - :RotatingMachine: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None - ''' - - cgmesProfile = Equipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'HydroPowerPlant': [cgmesProfile.EQ.value, ], - 'RotatingMachine': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Equipment: \n' + Equipment.__doc__ - - def __init__(self, HydroPowerPlant = None, RotatingMachine = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.HydroPowerPlant = HydroPowerPlant - self.RotatingMachine = RotatingMachine - - def __str__(self): - str = 'class=HydroPump\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/IdentifiedObject.py b/cimpy/cgmes_v2_4_15/IdentifiedObject.py deleted file mode 100644 index 50287a81..00000000 --- a/cimpy/cgmes_v2_4_15/IdentifiedObject.py +++ /dev/null @@ -1,45 +0,0 @@ -from .Base import Base - - -class IdentifiedObject(Base): - ''' - This is a root class to provide common identification for all classes needing identification and naming attributes. - - :DiagramObjects: The domain object to which this diagram object is associated. Default: "list" - :mRID: Master resource identifier issued by a model authority. The mRID is globally unique within an exchange context. Global uniqueness is easily achieved by using a UUID, as specified in RFC 4122, for the mRID. The use of UUID is strongly recommended. For CIMXML data files in RDF syntax conforming to IEC 61970-552 Edition 1, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements. Default: '' - :name: The name is any free human readable and possibly non unique text naming the object. Default: '' - :description: The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy. Default: '' - :energyIdentCodeEic: The attribute is used for an exchange of the EIC code (Energy identification Code). The length of the string is 16 characters as defined by the EIC code. References: Default: '' - :shortName: The attribute is used for an exchange of a human readable short name with length of the string 12 characters maximum. Default: '' - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.GL.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'DiagramObjects': [cgmesProfile.DL.value, ], - 'mRID': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.GL.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'name': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.GL.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'description': [cgmesProfile.EQ.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'energyIdentCodeEic': [cgmesProfile.EQ.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - 'shortName': [cgmesProfile.EQ.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, DiagramObjects = "list", mRID = '', name = '', description = '', energyIdentCodeEic = '', shortName = '', ): - - self.DiagramObjects = DiagramObjects - self.mRID = mRID - self.name = name - self.description = description - self.energyIdentCodeEic = energyIdentCodeEic - self.shortName = shortName - - def __str__(self): - str = 'class=IdentifiedObject\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/IfdBaseKind.py b/cimpy/cgmes_v2_4_15/IfdBaseKind.py deleted file mode 100644 index 61a69d68..00000000 --- a/cimpy/cgmes_v2_4_15/IfdBaseKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class IfdBaseKind(Base): - ''' - Excitation base system mode. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=IfdBaseKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Inductance.py b/cimpy/cgmes_v2_4_15/Inductance.py deleted file mode 100644 index 4f0de585..00000000 --- a/cimpy/cgmes_v2_4_15/Inductance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Inductance(Base): - ''' - Inductive part of reactance (imaginary part of impedance), at rated frequency. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Inductance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/InputSignalKind.py b/cimpy/cgmes_v2_4_15/InputSignalKind.py deleted file mode 100644 index b7d9440e..00000000 --- a/cimpy/cgmes_v2_4_15/InputSignalKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class InputSignalKind(Base): - ''' - Input signal type. In Dynamics modelling, commonly represented by j parameter. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=InputSignalKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Integer.py b/cimpy/cgmes_v2_4_15/Integer.py deleted file mode 100644 index 920f9952..00000000 --- a/cimpy/cgmes_v2_4_15/Integer.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Integer(Base): - ''' - An integer number. The range is unspecified and not limited. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.GL.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Integer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Junction.py b/cimpy/cgmes_v2_4_15/Junction.py deleted file mode 100644 index f229c3cb..00000000 --- a/cimpy/cgmes_v2_4_15/Junction.py +++ /dev/null @@ -1,29 +0,0 @@ -from .Connector import Connector - - -class Junction(Connector): - ''' - A point where one or more conducting equipments are connected with zero resistance. - - ''' - - cgmesProfile = Connector.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Connector: \n' + Connector.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Junction\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Length.py b/cimpy/cgmes_v2_4_15/Length.py deleted file mode 100644 index ec838972..00000000 --- a/cimpy/cgmes_v2_4_15/Length.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Length(Base): - ''' - Unit of length. Never negative. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Length\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Limit.py b/cimpy/cgmes_v2_4_15/Limit.py deleted file mode 100644 index a6b42c64..00000000 --- a/cimpy/cgmes_v2_4_15/Limit.py +++ /dev/null @@ -1,29 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Limit(IdentifiedObject): - ''' - Specifies one limit value for a Measurement. A Measurement typically has several limits that are kept together by the LimitSet class. The actual meaning and use of a Limit instance (i.e., if it is an alarm or warning limit or if it is a high or low limit) is not captured in the Limit class. However the name of a Limit instance may indicate both meaning and use. - - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=Limit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LimitSet.py b/cimpy/cgmes_v2_4_15/LimitSet.py deleted file mode 100644 index 0ab9bc04..00000000 --- a/cimpy/cgmes_v2_4_15/LimitSet.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LimitSet(IdentifiedObject): - ''' - Specifies a set of Limits that are associated with a Measurement. A Measurement may have several LimitSets corresponding to seasonal or other changing conditions. The condition is captured in the name and description attributes. The same LimitSet may be used for several Measurements. In particular percentage limits are used this way. - - :isPercentageLimits: Tells if the limit values are in percentage of normalValue or the specified Unit for Measurements and Controls. Default: False - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'isPercentageLimits': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, isPercentageLimits = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.isPercentageLimits = isPercentageLimits - - def __str__(self): - str = 'class=LimitSet\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Line.py b/cimpy/cgmes_v2_4_15/Line.py deleted file mode 100644 index 6e20766a..00000000 --- a/cimpy/cgmes_v2_4_15/Line.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EquipmentContainer import EquipmentContainer - - -class Line(EquipmentContainer): - ''' - Contains equipment beyond a substation belonging to a power transmission line. - - :Region: The sub-geographical region of the line. Default: None - ''' - - cgmesProfile = EquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'Region': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquipmentContainer: \n' + EquipmentContainer.__doc__ - - def __init__(self, Region = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Region = Region - - def __str__(self): - str = 'class=Line\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py b/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py deleted file mode 100644 index 7915ed2f..00000000 --- a/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py +++ /dev/null @@ -1,40 +0,0 @@ -from .ShuntCompensator import ShuntCompensator - - -class LinearShuntCompensator(ShuntCompensator): - ''' - A linear shunt compensator has banks or sections with equal admittance values. - - :bPerSection: Positive sequence shunt (charging) susceptance per section Default: 0.0 - :gPerSection: Positive sequence shunt (charging) conductance per section Default: 0.0 - :b0PerSection: Zero sequence shunt (charging) susceptance per section Default: 0.0 - :g0PerSection: Zero sequence shunt (charging) conductance per section Default: 0.0 - ''' - - cgmesProfile = ShuntCompensator.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'bPerSection': [cgmesProfile.EQ.value, ], - 'gPerSection': [cgmesProfile.EQ.value, ], - 'b0PerSection': [cgmesProfile.EQ.value, ], - 'g0PerSection': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ShuntCompensator: \n' + ShuntCompensator.__doc__ - - def __init__(self, bPerSection = 0.0, gPerSection = 0.0, b0PerSection = 0.0, g0PerSection = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.bPerSection = bPerSection - self.gPerSection = gPerSection - self.b0PerSection = b0PerSection - self.g0PerSection = g0PerSection - - def __str__(self): - str = 'class=LinearShuntCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadAggregate.py b/cimpy/cgmes_v2_4_15/LoadAggregate.py deleted file mode 100644 index 8461892e..00000000 --- a/cimpy/cgmes_v2_4_15/LoadAggregate.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LoadDynamics import LoadDynamics - - -class LoadAggregate(LoadDynamics): - ''' - Standard aggregate load model comprised of static and/or dynamic components. A static load model represents the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. A dynamic load model can used to represent the aggregate response of the motor components of the load. - - :LoadStatic: Aggregate static load associated with this aggregate load. Default: None - :LoadMotor: Aggregate motor (dynamic) load associated with this aggregate load. Default: None - ''' - - cgmesProfile = LoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'LoadStatic': [cgmesProfile.DY.value, ], - 'LoadMotor': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadDynamics: \n' + LoadDynamics.__doc__ - - def __init__(self, LoadStatic = None, LoadMotor = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadStatic = LoadStatic - self.LoadMotor = LoadMotor - - def __str__(self): - str = 'class=LoadAggregate\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadArea.py b/cimpy/cgmes_v2_4_15/LoadArea.py deleted file mode 100644 index 5cbcb0fb..00000000 --- a/cimpy/cgmes_v2_4_15/LoadArea.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EnergyArea import EnergyArea - - -class LoadArea(EnergyArea): - ''' - The class is the root or first level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. - - :SubLoadAreas: The SubLoadAreas in the LoadArea. Default: "list" - ''' - - cgmesProfile = EnergyArea.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'SubLoadAreas': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EnergyArea: \n' + EnergyArea.__doc__ - - def __init__(self, SubLoadAreas = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SubLoadAreas = SubLoadAreas - - def __str__(self): - str = 'class=LoadArea\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py b/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py deleted file mode 100644 index bcdd0b12..00000000 --- a/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py +++ /dev/null @@ -1,29 +0,0 @@ -from .ProtectedSwitch import ProtectedSwitch - - -class LoadBreakSwitch(ProtectedSwitch): - ''' - A mechanical switching device capable of making, carrying, and breaking currents under normal operating conditions. - - ''' - - cgmesProfile = ProtectedSwitch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ProtectedSwitch: \n' + ProtectedSwitch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=LoadBreakSwitch\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadComposite.py b/cimpy/cgmes_v2_4_15/LoadComposite.py deleted file mode 100644 index d8170870..00000000 --- a/cimpy/cgmes_v2_4_15/LoadComposite.py +++ /dev/null @@ -1,61 +0,0 @@ -from .LoadDynamics import LoadDynamics - - -class LoadComposite(LoadDynamics): - ''' - This models combines static load and induction motor load effects. The dynamics of the motor are simplified by linearizing the induction machine equations. - - :epvs: Active load-voltage dependence index (static) (Epvs). Typical Value = 0.7. Default: 0.0 - :epfs: Active load-frequency dependence index (static) (Epfs). Typical Value = 1.5. Default: 0.0 - :eqvs: Reactive load-voltage dependence index (static) (Eqvs). Typical Value = 2. Default: 0.0 - :eqfs: Reactive load-frequency dependence index (static) (Eqfs). Typical Value = 0. Default: 0.0 - :epvd: Active load-voltage dependence index (dynamic) (Epvd). Typical Value = 0.7. Default: 0.0 - :epfd: Active load-frequency dependence index (dynamic) (Epfd). Typical Value = 1.5. Default: 0.0 - :eqvd: Reactive load-voltage dependence index (dynamic) (Eqvd). Typical Value = 2. Default: 0.0 - :eqfd: Reactive load-frequency dependence index (dynamic) (Eqfd). Typical Value = 0. Default: 0.0 - :lfrac: Loading factor - ratio of initial P to motor MVA base (Lfrac). Typical Value = 0.8. Default: 0.0 - :h: Inertia constant (H). Typical Value = 2.5. Default: 0 - :pfrac: Fraction of constant-power load to be represented by this motor model (Pfrac) (>=0.0 and <=1.0). Typical Value = 0.5. Default: 0.0 - ''' - - cgmesProfile = LoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'epvs': [cgmesProfile.DY.value, ], - 'epfs': [cgmesProfile.DY.value, ], - 'eqvs': [cgmesProfile.DY.value, ], - 'eqfs': [cgmesProfile.DY.value, ], - 'epvd': [cgmesProfile.DY.value, ], - 'epfd': [cgmesProfile.DY.value, ], - 'eqvd': [cgmesProfile.DY.value, ], - 'eqfd': [cgmesProfile.DY.value, ], - 'lfrac': [cgmesProfile.DY.value, ], - 'h': [cgmesProfile.DY.value, ], - 'pfrac': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadDynamics: \n' + LoadDynamics.__doc__ - - def __init__(self, epvs = 0.0, epfs = 0.0, eqvs = 0.0, eqfs = 0.0, epvd = 0.0, epfd = 0.0, eqvd = 0.0, eqfd = 0.0, lfrac = 0.0, h = 0, pfrac = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.epvs = epvs - self.epfs = epfs - self.eqvs = eqvs - self.eqfs = eqfs - self.epvd = epvd - self.epfd = epfd - self.eqvd = eqvd - self.eqfd = eqfd - self.lfrac = lfrac - self.h = h - self.pfrac = pfrac - - def __str__(self): - str = 'class=LoadComposite\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadDynamics.py b/cimpy/cgmes_v2_4_15/LoadDynamics.py deleted file mode 100644 index 508c0c36..00000000 --- a/cimpy/cgmes_v2_4_15/LoadDynamics.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LoadDynamics(IdentifiedObject): - ''' - Load whose behaviour is described by reference to a standard model A standard feature of dynamic load behaviour modelling is the ability to associate the same behaviour to multiple energy consumers by means of a single aggregate load definition. Aggregate loads are used to represent all or part of the real and reactive load from one or more loads in the static (power flow) data. This load is usually the aggregation of many individual load devices and the load model is approximate representation of the aggregate response of the load devices to system disturbances. The load model is always applied to individual bus loads (energy consumers) but a single set of load model parameters can used for all loads in the grouping. - - :EnergyConsumer: Energy consumer to which this dynamics load model applies. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'EnergyConsumer': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, EnergyConsumer = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergyConsumer = EnergyConsumer - - def __str__(self): - str = 'class=LoadDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py b/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py deleted file mode 100644 index 8caeb1a9..00000000 --- a/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py +++ /dev/null @@ -1,55 +0,0 @@ -from .LoadDynamics import LoadDynamics - - -class LoadGenericNonLinear(LoadDynamics): - ''' - These load models (known also as generic non-linear dynamic (GNLD) load models) can be used in mid-term and long-term voltage stability simulations (i.e., to study voltage collapse), as they can replace a more detailed representation of aggregate load, including induction motors, thermostatically controlled and static loads. - - :genericNonLinearLoadModelType: Type of generic non-linear load model. Default: None - :pt: Dynamic portion of active load (P). Default: 0.0 - :qt: Dynamic portion of reactive load (Q). Default: 0.0 - :tp: Time constant of lag function of active power (T). Default: 0 - :tq: Time constant of lag function of reactive power (T). Default: 0 - :ls: Steady state voltage index for active power (LS). Default: 0.0 - :lt: Transient voltage index for active power (LT). Default: 0.0 - :bs: Steady state voltage index for reactive power (BS). Default: 0.0 - :bt: Transient voltage index for reactive power (BT). Default: 0.0 - ''' - - cgmesProfile = LoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'genericNonLinearLoadModelType': [cgmesProfile.DY.value, ], - 'pt': [cgmesProfile.DY.value, ], - 'qt': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 'tq': [cgmesProfile.DY.value, ], - 'ls': [cgmesProfile.DY.value, ], - 'lt': [cgmesProfile.DY.value, ], - 'bs': [cgmesProfile.DY.value, ], - 'bt': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadDynamics: \n' + LoadDynamics.__doc__ - - def __init__(self, genericNonLinearLoadModelType = None, pt = 0.0, qt = 0.0, tp = 0, tq = 0, ls = 0.0, lt = 0.0, bs = 0.0, bt = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.genericNonLinearLoadModelType = genericNonLinearLoadModelType - self.pt = pt - self.qt = qt - self.tp = tp - self.tq = tq - self.ls = ls - self.lt = lt - self.bs = bs - self.bt = bt - - def __str__(self): - str = 'class=LoadGenericNonLinear\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadGroup.py b/cimpy/cgmes_v2_4_15/LoadGroup.py deleted file mode 100644 index 63afa945..00000000 --- a/cimpy/cgmes_v2_4_15/LoadGroup.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LoadGroup(IdentifiedObject): - ''' - The class is the third level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. - - :SubLoadArea: The SubLoadArea where the Loadgroup belongs. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'SubLoadArea': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, SubLoadArea = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SubLoadArea = SubLoadArea - - def __str__(self): - str = 'class=LoadGroup\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadMotor.py b/cimpy/cgmes_v2_4_15/LoadMotor.py deleted file mode 100644 index 63dfb38f..00000000 --- a/cimpy/cgmes_v2_4_15/LoadMotor.py +++ /dev/null @@ -1,70 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LoadMotor(IdentifiedObject): - ''' - Aggregate induction motor load. This model is used to represent a fraction of an ordinary load as "induction motor load". It allows load that is treated as ordinary constant power in power flow analysis to be represented by an induction motor in dynamic simulation. If = 0. or = , or = 0., only one cage is represented. Magnetic saturation is not modelled. Either a "one-cage" or "two-cage" model of the induction machine can be modelled. Magnetic saturation is not modelled. This model is intended for representation of aggregations of many motors dispersed through a load represented at a high voltage bus but where there is no information on the characteristics of individual motors. This model treats a fraction of the constant power part of a load as a motor. During initialisation, the initial power drawn by the motor is set equal to times the constant part of the static load. The remainder of the load is left as static load. The reactive power demand of the motor is calculated during initialisation as a function of voltage at the load bus. This reactive power demand may be less than or greater than the constant component of the load. If the motor's reactive demand is greater than the constant component of the load, the model inserts a shunt capacitor at the terminal of the motor to bring its reactive demand down to equal the constant reactive load. If a motor model and a static load model are both present for a load, the motor is assumed to be subtracted from the power flow constant load before the static load model is applied. The remainder of the load, if any, is then represented by the static load model. - - :LoadAggregate: Aggregate load to which this aggregate motor (dynamic) load belongs. Default: None - :pfrac: Fraction of constant-power load to be represented by this motor model (Pfrac) (>=0.0 and <=1.0). Typical Value = 0.3. Default: 0.0 - :lfac: Loading factor - ratio of initial P to motor MVA base (Lfac). Typical Value = 0.8. Default: 0.0 - :ls: Synchronous reactance (Ls). Typical Value = 3.2. Default: 0.0 - :lp: Transient reactance (Lp). Typical Value = 0.15. Default: 0.0 - :lpp: Subtransient reactance (Lpp). Typical Value = 0.15. Default: 0.0 - :ra: Stator resistance (Ra). Typical Value = 0. Default: 0.0 - :tpo: Transient rotor time constant (Tpo) (not=0). Typical Value = 1. Default: 0 - :tppo: Subtransient rotor time constant (Tppo). Typical Value = 0.02. Default: 0 - :h: Inertia constant (H) (not=0). Typical Value = 0.4. Default: 0 - :d: Damping factor (D). Unit = delta P/delta speed. Typical Value = 2. Default: 0.0 - :vt: Voltage threshold for tripping (Vt). Typical Value = 0.7. Default: 0.0 - :tv: Voltage trip pickup time (Tv). Typical Value = 0.1. Default: 0 - :tbkr: Circuit breaker operating time (Tbkr). Typical Value = 0.08. Default: 0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'LoadAggregate': [cgmesProfile.DY.value, ], - 'pfrac': [cgmesProfile.DY.value, ], - 'lfac': [cgmesProfile.DY.value, ], - 'ls': [cgmesProfile.DY.value, ], - 'lp': [cgmesProfile.DY.value, ], - 'lpp': [cgmesProfile.DY.value, ], - 'ra': [cgmesProfile.DY.value, ], - 'tpo': [cgmesProfile.DY.value, ], - 'tppo': [cgmesProfile.DY.value, ], - 'h': [cgmesProfile.DY.value, ], - 'd': [cgmesProfile.DY.value, ], - 'vt': [cgmesProfile.DY.value, ], - 'tv': [cgmesProfile.DY.value, ], - 'tbkr': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, LoadAggregate = None, pfrac = 0.0, lfac = 0.0, ls = 0.0, lp = 0.0, lpp = 0.0, ra = 0.0, tpo = 0, tppo = 0, h = 0, d = 0.0, vt = 0.0, tv = 0, tbkr = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadAggregate = LoadAggregate - self.pfrac = pfrac - self.lfac = lfac - self.ls = ls - self.lp = lp - self.lpp = lpp - self.ra = ra - self.tpo = tpo - self.tppo = tppo - self.h = h - self.d = d - self.vt = vt - self.tv = tv - self.tbkr = tbkr - - def __str__(self): - str = 'class=LoadMotor\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py b/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py deleted file mode 100644 index 69878bb9..00000000 --- a/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py +++ /dev/null @@ -1,64 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LoadResponseCharacteristic(IdentifiedObject): - ''' - Models the characteristic response of the load demand due to changes in system conditions such as voltage and frequency. This is not related to demand response. If LoadResponseCharacteristic.exponentModel is True, the voltage exponents are specified and used as to calculate: Active power component = Pnominal * (Voltage/cim:BaseVoltage.nominalVoltage) ** cim:LoadResponseCharacteristic.pVoltageExponent Reactive power component = Qnominal * (Voltage/cim:BaseVoltage.nominalVoltage)** cim:LoadResponseCharacteristic.qVoltageExponent Where * means "multiply" and ** is "raised to power of". - - :EnergyConsumer: The set of loads that have the response characteristics. Default: "list" - :exponentModel: Indicates the exponential voltage dependency model is to be used. If false, the coefficient model is to be used. The exponential voltage dependency model consist of the attributes - pVoltageExponent - qVoltageExponent. The coefficient model consist of the attributes - pConstantImpedance - pConstantCurrent - pConstantPower - qConstantImpedance - qConstantCurrent - qConstantPower. The sum of pConstantImpedance, pConstantCurrent and pConstantPower shall equal 1. The sum of qConstantImpedance, qConstantCurrent and qConstantPower shall equal 1. Default: False - :pConstantCurrent: Portion of active power load modeled as constant current. Default: 0.0 - :pConstantImpedance: Portion of active power load modeled as constant impedance. Default: 0.0 - :pConstantPower: Portion of active power load modeled as constant power. Default: 0.0 - :pFrequencyExponent: Exponent of per unit frequency effecting active power. Default: 0.0 - :pVoltageExponent: Exponent of per unit voltage effecting real power. Default: 0.0 - :qConstantCurrent: Portion of reactive power load modeled as constant current. Default: 0.0 - :qConstantImpedance: Portion of reactive power load modeled as constant impedance. Default: 0.0 - :qConstantPower: Portion of reactive power load modeled as constant power. Default: 0.0 - :qFrequencyExponent: Exponent of per unit frequency effecting reactive power. Default: 0.0 - :qVoltageExponent: Exponent of per unit voltage effecting reactive power. Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'EnergyConsumer': [cgmesProfile.EQ.value, ], - 'exponentModel': [cgmesProfile.EQ.value, ], - 'pConstantCurrent': [cgmesProfile.EQ.value, ], - 'pConstantImpedance': [cgmesProfile.EQ.value, ], - 'pConstantPower': [cgmesProfile.EQ.value, ], - 'pFrequencyExponent': [cgmesProfile.EQ.value, ], - 'pVoltageExponent': [cgmesProfile.EQ.value, ], - 'qConstantCurrent': [cgmesProfile.EQ.value, ], - 'qConstantImpedance': [cgmesProfile.EQ.value, ], - 'qConstantPower': [cgmesProfile.EQ.value, ], - 'qFrequencyExponent': [cgmesProfile.EQ.value, ], - 'qVoltageExponent': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, EnergyConsumer = "list", exponentModel = False, pConstantCurrent = 0.0, pConstantImpedance = 0.0, pConstantPower = 0.0, pFrequencyExponent = 0.0, pVoltageExponent = 0.0, qConstantCurrent = 0.0, qConstantImpedance = 0.0, qConstantPower = 0.0, qFrequencyExponent = 0.0, qVoltageExponent = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergyConsumer = EnergyConsumer - self.exponentModel = exponentModel - self.pConstantCurrent = pConstantCurrent - self.pConstantImpedance = pConstantImpedance - self.pConstantPower = pConstantPower - self.pFrequencyExponent = pFrequencyExponent - self.pVoltageExponent = pVoltageExponent - self.qConstantCurrent = qConstantCurrent - self.qConstantImpedance = qConstantImpedance - self.qConstantPower = qConstantPower - self.qFrequencyExponent = qFrequencyExponent - self.qVoltageExponent = qVoltageExponent - - def __str__(self): - str = 'class=LoadResponseCharacteristic\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadStatic.py b/cimpy/cgmes_v2_4_15/LoadStatic.py deleted file mode 100644 index 90199eeb..00000000 --- a/cimpy/cgmes_v2_4_15/LoadStatic.py +++ /dev/null @@ -1,82 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class LoadStatic(IdentifiedObject): - ''' - General static load model representing the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. - - :LoadAggregate: Aggregate load to which this aggregate static load belongs. Default: None - :staticLoadModelType: Type of static load model. Typical Value = constantZ. Default: None - :kp1: First term voltage coefficient for active power (Kp1). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kp2: Second term voltage coefficient for active power (Kp2). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kp3: Third term voltage coefficient for active power (Kp3). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kp4: Frequency coefficient for active power (Kp4). Must be non-zero when .staticLoadModelType = ZIP2. Not used for all other values of .staticLoadModelType. Default: 0.0 - :ep1: First term voltage exponent for active power (Ep1). Used only when .staticLoadModelType = exponential. Default: 0.0 - :ep2: Second term voltage exponent for active power (Ep2). Used only when .staticLoadModelType = exponential. Default: 0.0 - :ep3: Third term voltage exponent for active power (Ep3). Used only when .staticLoadModelType = exponential. Default: 0.0 - :kpf: Frequency deviation coefficient for active power (Kpf). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kq1: First term voltage coefficient for reactive power (Kq1). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kq2: Second term voltage coefficient for reactive power (Kq2). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kq3: Third term voltage coefficient for reactive power (Kq3). Not used when .staticLoadModelType = constantZ. Default: 0.0 - :kq4: Frequency coefficient for reactive power (Kq4). Must be non-zero when .staticLoadModelType = ZIP2. Not used for all other values of .staticLoadModelType. Default: 0.0 - :eq1: First term voltage exponent for reactive power (Eq1). Used only when .staticLoadModelType = exponential. Default: 0.0 - :eq2: Second term voltage exponent for reactive power (Eq2). Used only when .staticLoadModelType = exponential. Default: 0.0 - :eq3: Third term voltage exponent for reactive power (Eq3). Used only when .staticLoadModelType = exponential. Default: 0.0 - :kqf: Frequency deviation coefficient for reactive power (Kqf). Not used when .staticLoadModelType = constantZ. Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'LoadAggregate': [cgmesProfile.DY.value, ], - 'staticLoadModelType': [cgmesProfile.DY.value, ], - 'kp1': [cgmesProfile.DY.value, ], - 'kp2': [cgmesProfile.DY.value, ], - 'kp3': [cgmesProfile.DY.value, ], - 'kp4': [cgmesProfile.DY.value, ], - 'ep1': [cgmesProfile.DY.value, ], - 'ep2': [cgmesProfile.DY.value, ], - 'ep3': [cgmesProfile.DY.value, ], - 'kpf': [cgmesProfile.DY.value, ], - 'kq1': [cgmesProfile.DY.value, ], - 'kq2': [cgmesProfile.DY.value, ], - 'kq3': [cgmesProfile.DY.value, ], - 'kq4': [cgmesProfile.DY.value, ], - 'eq1': [cgmesProfile.DY.value, ], - 'eq2': [cgmesProfile.DY.value, ], - 'eq3': [cgmesProfile.DY.value, ], - 'kqf': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, LoadAggregate = None, staticLoadModelType = None, kp1 = 0.0, kp2 = 0.0, kp3 = 0.0, kp4 = 0.0, ep1 = 0.0, ep2 = 0.0, ep3 = 0.0, kpf = 0.0, kq1 = 0.0, kq2 = 0.0, kq3 = 0.0, kq4 = 0.0, eq1 = 0.0, eq2 = 0.0, eq3 = 0.0, kqf = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadAggregate = LoadAggregate - self.staticLoadModelType = staticLoadModelType - self.kp1 = kp1 - self.kp2 = kp2 - self.kp3 = kp3 - self.kp4 = kp4 - self.ep1 = ep1 - self.ep2 = ep2 - self.ep3 = ep3 - self.kpf = kpf - self.kq1 = kq1 - self.kq2 = kq2 - self.kq3 = kq3 - self.kq4 = kq4 - self.eq1 = eq1 - self.eq2 = eq2 - self.eq3 = eq3 - self.kqf = kqf - - def __str__(self): - str = 'class=LoadStatic\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/LoadUserDefined.py b/cimpy/cgmes_v2_4_15/LoadUserDefined.py deleted file mode 100644 index dec3cc95..00000000 --- a/cimpy/cgmes_v2_4_15/LoadUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LoadDynamics import LoadDynamics - - -class LoadUserDefined(LoadDynamics): - ''' - Load whose dynamic behaviour is described by a user-defined model. - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = LoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadDynamics: \n' + LoadDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=LoadUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Location.py b/cimpy/cgmes_v2_4_15/Location.py deleted file mode 100644 index 59415ae4..00000000 --- a/cimpy/cgmes_v2_4_15/Location.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Location(IdentifiedObject): - ''' - The place, scene, or point of something where someone or something has been, is, and/or will be at a given moment in time. It can be defined with one or more postition points (coordinates) in a given coordinate system. - - :CoordinateSystem: Coordinate system used to describe position points of this location. Default: None - :PowerSystemResources: All power system resources at this location. Default: None - :PositionPoints: Sequence of position points describing this location, expressed in coordinate system `Location.CoordinateSystem`. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.GL.value, ], - 'CoordinateSystem': [cgmesProfile.GL.value, ], - 'PowerSystemResources': [cgmesProfile.GL.value, ], - 'PositionPoints': [cgmesProfile.GL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, CoordinateSystem = None, PowerSystemResources = None, PositionPoints = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.CoordinateSystem = CoordinateSystem - self.PowerSystemResources = PowerSystemResources - self.PositionPoints = PositionPoints - - def __str__(self): - str = 'class=Location\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Measurement.py b/cimpy/cgmes_v2_4_15/Measurement.py deleted file mode 100644 index 209d54c4..00000000 --- a/cimpy/cgmes_v2_4_15/Measurement.py +++ /dev/null @@ -1,46 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Measurement(IdentifiedObject): - ''' - A Measurement represents any measured, calculated or non-measured non-calculated quantity. Any piece of equipment may contain Measurements, e.g. a substation may have temperature measurements and door open indications, a transformer may have oil temperature and tank pressure measurements, a bay may contain a number of power flow measurements and a Breaker may contain a switch status measurement. The PSR - Measurement association is intended to capture this use of Measurement and is included in the naming hierarchy based on EquipmentContainer. The naming hierarchy typically has Measurements as leafs, e.g. Substation-VoltageLevel-Bay-Switch-Measurement. Some Measurements represent quantities related to a particular sensor location in the network, e.g. a voltage transformer (PT) at a busbar or a current transformer (CT) at the bar between a breaker and an isolator. The sensing position is not captured in the PSR - Measurement association. Instead it is captured by the Measurement - Terminal association that is used to define the sensing location in the network topology. The location is defined by the connection of the Terminal to ConductingEquipment. If both a Terminal and PSR are associated, and the PSR is of type ConductingEquipment, the associated Terminal should belong to that ConductingEquipment instance. When the sensor location is needed both Measurement-PSR and Measurement-Terminal are used. The Measurement-Terminal association is never used alone. - - :measurementType: Specifies the type of measurement. For example, this specifies if the measurement represents an indoor temperature, outdoor temperature, bus voltage, line flow, etc. Default: '' - :phases: Indicates to which phases the measurement applies and avoids the need to use `measurementType` to also encode phase information (which would explode the types). The phase information in Measurement, along with `measurementType` and `phases` uniquely defines a Measurement for a device, based on normal network phase. Their meaning will not change when the computed energizing phasing is changed due to jumpers or other reasons. If the attribute is missing three phases (ABC) shall be assumed. Default: None - :unitSymbol: The unit of measure of the measured quantity. Default: None - :unitMultiplier: The unit multiplier of the measured quantity. Default: None - :Terminal: One or more measurements may be associated with a terminal in the network. Default: None - :PowerSystemResource: The measurements associated with this power system resource. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'measurementType': [cgmesProfile.EQ.value, ], - 'phases': [cgmesProfile.EQ.value, ], - 'unitSymbol': [cgmesProfile.EQ.value, ], - 'unitMultiplier': [cgmesProfile.EQ.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - 'PowerSystemResource': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, measurementType = '', phases = None, unitSymbol = None, unitMultiplier = None, Terminal = None, PowerSystemResource = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.measurementType = measurementType - self.phases = phases - self.unitSymbol = unitSymbol - self.unitMultiplier = unitMultiplier - self.Terminal = Terminal - self.PowerSystemResource = PowerSystemResource - - def __str__(self): - str = 'class=Measurement\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MeasurementValue.py b/cimpy/cgmes_v2_4_15/MeasurementValue.py deleted file mode 100644 index 20d69430..00000000 --- a/cimpy/cgmes_v2_4_15/MeasurementValue.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class MeasurementValue(IdentifiedObject): - ''' - The current state for a measurement. A state value is an instance of a measurement from a specific source. Measurements can be associated with many state values, each representing a different source for the measurement. - - :timeStamp: The time when the value was last updated Default: '' - :sensorAccuracy: The limit, expressed as a percentage of the sensor maximum, that errors will not exceed when the sensor is used under reference conditions. Default: 0.0 - :MeasurementValueQuality: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None - :MeasurementValueSource: The MeasurementValues updated by the source. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'timeStamp': [cgmesProfile.EQ.value, ], - 'sensorAccuracy': [cgmesProfile.EQ.value, ], - 'MeasurementValueQuality': [cgmesProfile.EQ.value, ], - 'MeasurementValueSource': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, timeStamp = '', sensorAccuracy = 0.0, MeasurementValueQuality = None, MeasurementValueSource = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.timeStamp = timeStamp - self.sensorAccuracy = sensorAccuracy - self.MeasurementValueQuality = MeasurementValueQuality - self.MeasurementValueSource = MeasurementValueSource - - def __str__(self): - str = 'class=MeasurementValue\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py b/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py deleted file mode 100644 index fd339844..00000000 --- a/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Quality61850 import Quality61850 - - -class MeasurementValueQuality(Quality61850): - ''' - Measurement quality flags. Bits 0-10 are defined for substation automation in draft IEC 61850 part 7-3. Bits 11-15 are reserved for future expansion by that document. Bits 16-31 are reserved for EMS applications. - - :MeasurementValue: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None - ''' - - cgmesProfile = Quality61850.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'MeasurementValue': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Quality61850: \n' + Quality61850.__doc__ - - def __init__(self, MeasurementValue = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.MeasurementValue = MeasurementValue - - def __str__(self): - str = 'class=MeasurementValueQuality\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MeasurementValueSource.py b/cimpy/cgmes_v2_4_15/MeasurementValueSource.py deleted file mode 100644 index 34672f0d..00000000 --- a/cimpy/cgmes_v2_4_15/MeasurementValueSource.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class MeasurementValueSource(IdentifiedObject): - ''' - MeasurementValueSource describes the alternative sources updating a MeasurementValue. User conventions for how to use the MeasurementValueSource attributes are described in the introduction to IEC 61970-301. - - :MeasurementValues: A reference to the type of source that updates the MeasurementValue, e.g. SCADA, CCLink, manual, etc. User conventions for the names of sources are contained in the introduction to IEC 61970-301. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'MeasurementValues': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, MeasurementValues = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.MeasurementValues = MeasurementValues - - def __str__(self): - str = 'class=MeasurementValueSource\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MechLoad1.py b/cimpy/cgmes_v2_4_15/MechLoad1.py deleted file mode 100644 index d1a524a5..00000000 --- a/cimpy/cgmes_v2_4_15/MechLoad1.py +++ /dev/null @@ -1,40 +0,0 @@ -from .MechanicalLoadDynamics import MechanicalLoadDynamics - - -class MechLoad1(MechanicalLoadDynamics): - ''' - Mechanical load model type 1. - - :a: Speed squared coefficient (a). Default: 0.0 - :b: Speed coefficient (b). Default: 0.0 - :d: Speed to the exponent coefficient (d). Default: 0.0 - :e: Exponent (e). Default: 0.0 - ''' - - cgmesProfile = MechanicalLoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - 'b': [cgmesProfile.DY.value, ], - 'd': [cgmesProfile.DY.value, ], - 'e': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MechanicalLoadDynamics: \n' + MechanicalLoadDynamics.__doc__ - - def __init__(self, a = 0.0, b = 0.0, d = 0.0, e = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.a = a - self.b = b - self.d = d - self.e = e - - def __str__(self): - str = 'class=MechLoad1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py b/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py deleted file mode 100644 index f8b406b9..00000000 --- a/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class MechanicalLoadDynamics(DynamicsFunctionBlock): - ''' - Mechanical load function block whose behavior is described by reference to a standard model - - :SynchronousMachineDynamics: Synchronous machine model with which this mechanical load model is associated. Default: None - :AsynchronousMachineDynamics: Asynchronous machine model with which this mechanical load model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'SynchronousMachineDynamics': [cgmesProfile.DY.value, ], - 'AsynchronousMachineDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, SynchronousMachineDynamics = None, AsynchronousMachineDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SynchronousMachineDynamics = SynchronousMachineDynamics - self.AsynchronousMachineDynamics = AsynchronousMachineDynamics - - def __str__(self): - str = 'class=MechanicalLoadDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py b/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py deleted file mode 100644 index c3a7ae59..00000000 --- a/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .MechanicalLoadDynamics import MechanicalLoadDynamics - - -class MechanicalLoadUserDefined(MechanicalLoadDynamics): - ''' - Mechanical load function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = MechanicalLoadDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MechanicalLoadDynamics: \n' + MechanicalLoadDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=MechanicalLoadUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Money.py b/cimpy/cgmes_v2_4_15/Money.py deleted file mode 100644 index bc217466..00000000 --- a/cimpy/cgmes_v2_4_15/Money.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Money(Base): - ''' - Amount of money. - - :unit: Default: None - :multiplier: Default: None - :value: Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, unit = None, multiplier = None, value = 0.0, ): - - self.unit = unit - self.multiplier = multiplier - self.value = value - - def __str__(self): - str = 'class=Money\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MonthDay.py b/cimpy/cgmes_v2_4_15/MonthDay.py deleted file mode 100644 index 372ff19c..00000000 --- a/cimpy/cgmes_v2_4_15/MonthDay.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class MonthDay(Base): - ''' - MonthDay format as "--mm-dd", which conforms with XSD data type gMonthDay. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=MonthDay\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/MutualCoupling.py b/cimpy/cgmes_v2_4_15/MutualCoupling.py deleted file mode 100644 index 34c0832b..00000000 --- a/cimpy/cgmes_v2_4_15/MutualCoupling.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class MutualCoupling(IdentifiedObject): - ''' - This class represents the zero sequence line mutual coupling. - - :First_Terminal: The starting terminal for the calculation of distances along the first branch of the mutual coupling. Normally MutualCoupling would only be used for terminals of AC line segments. The first and second terminals of a mutual coupling should point to different AC line segments. Default: None - :Second_Terminal: The starting terminal for the calculation of distances along the second branch of the mutual coupling. Default: None - :b0ch: Zero sequence mutual coupling shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 - :distance11: Distance to the start of the coupled region from the first line`s terminal having sequence number equal to 1. Default: 0.0 - :distance12: Distance to the end of the coupled region from the first line`s terminal with sequence number equal to 1. Default: 0.0 - :distance21: Distance to the start of coupled region from the second line`s terminal with sequence number equal to 1. Default: 0.0 - :distance22: Distance to the end of coupled region from the second line`s terminal with sequence number equal to 1. Default: 0.0 - :g0ch: Zero sequence mutual coupling shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 - :r0: Zero sequence branch-to-branch mutual impedance coupling, resistance. Default: 0.0 - :x0: Zero sequence branch-to-branch mutual impedance coupling, reactance. Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'First_Terminal': [cgmesProfile.EQ.value, ], - 'Second_Terminal': [cgmesProfile.EQ.value, ], - 'b0ch': [cgmesProfile.EQ.value, ], - 'distance11': [cgmesProfile.EQ.value, ], - 'distance12': [cgmesProfile.EQ.value, ], - 'distance21': [cgmesProfile.EQ.value, ], - 'distance22': [cgmesProfile.EQ.value, ], - 'g0ch': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, First_Terminal = None, Second_Terminal = None, b0ch = 0.0, distance11 = 0.0, distance12 = 0.0, distance21 = 0.0, distance22 = 0.0, g0ch = 0.0, r0 = 0.0, x0 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.First_Terminal = First_Terminal - self.Second_Terminal = Second_Terminal - self.b0ch = b0ch - self.distance11 = distance11 - self.distance12 = distance12 - self.distance21 = distance21 - self.distance22 = distance22 - self.g0ch = g0ch - self.r0 = r0 - self.x0 = x0 - - def __str__(self): - str = 'class=MutualCoupling\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NonConformLoad.py b/cimpy/cgmes_v2_4_15/NonConformLoad.py deleted file mode 100644 index 73a7b3d7..00000000 --- a/cimpy/cgmes_v2_4_15/NonConformLoad.py +++ /dev/null @@ -1,31 +0,0 @@ -from .EnergyConsumer import EnergyConsumer - - -class NonConformLoad(EnergyConsumer): - ''' - NonConformLoad represent loads that do not follow a daily load change pattern and changes are not correlated with the daily load change pattern. - - :LoadGroup: Conform loads assigned to this ConformLoadGroup. Default: None - ''' - - cgmesProfile = EnergyConsumer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'LoadGroup': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EnergyConsumer: \n' + EnergyConsumer.__doc__ - - def __init__(self, LoadGroup = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadGroup = LoadGroup - - def __str__(self): - str = 'class=NonConformLoad\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py b/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py deleted file mode 100644 index 90058b8c..00000000 --- a/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py +++ /dev/null @@ -1,34 +0,0 @@ -from .LoadGroup import LoadGroup - - -class NonConformLoadGroup(LoadGroup): - ''' - Loads that do not follow a daily and seasonal load variation pattern. - - :EnergyConsumers: Group of this ConformLoad. Default: "list" - :NonConformLoadSchedules: The NonConformLoadSchedules in the NonConformLoadGroup. Default: "list" - ''' - - cgmesProfile = LoadGroup.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'EnergyConsumers': [cgmesProfile.EQ.value, ], - 'NonConformLoadSchedules': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class LoadGroup: \n' + LoadGroup.__doc__ - - def __init__(self, EnergyConsumers = "list", NonConformLoadSchedules = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergyConsumers = EnergyConsumers - self.NonConformLoadSchedules = NonConformLoadSchedules - - def __str__(self): - str = 'class=NonConformLoadGroup\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py b/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py deleted file mode 100644 index b9872b1e..00000000 --- a/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py +++ /dev/null @@ -1,31 +0,0 @@ -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule - - -class NonConformLoadSchedule(SeasonDayTypeSchedule): - ''' - An active power (Y1-axis) and reactive power (Y2-axis) schedule (curves) versus time (X-axis) for non-conforming loads, e.g., large industrial load or power station service (where modeled). - - :NonConformLoadGroup: The NonConformLoadGroup where the NonConformLoadSchedule belongs. Default: None - ''' - - cgmesProfile = SeasonDayTypeSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'NonConformLoadGroup': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SeasonDayTypeSchedule: \n' + SeasonDayTypeSchedule.__doc__ - - def __init__(self, NonConformLoadGroup = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.NonConformLoadGroup = NonConformLoadGroup - - def __str__(self): - str = 'class=NonConformLoadSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py b/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py deleted file mode 100644 index 24826416..00000000 --- a/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py +++ /dev/null @@ -1,31 +0,0 @@ -from .ShuntCompensator import ShuntCompensator - - -class NonlinearShuntCompensator(ShuntCompensator): - ''' - A non linear shunt compensator has bank or section admittance values that differs. - - :NonlinearShuntCompensatorPoints: All points of the non-linear shunt compensator. Default: "list" - ''' - - cgmesProfile = ShuntCompensator.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'NonlinearShuntCompensatorPoints': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ShuntCompensator: \n' + ShuntCompensator.__doc__ - - def __init__(self, NonlinearShuntCompensatorPoints = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.NonlinearShuntCompensatorPoints = NonlinearShuntCompensatorPoints - - def __str__(self): - str = 'class=NonlinearShuntCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py b/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py deleted file mode 100644 index 1f9d46f4..00000000 --- a/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py +++ /dev/null @@ -1,45 +0,0 @@ -from .Base import Base - - -class NonlinearShuntCompensatorPoint(Base): - ''' - A non linear shunt compensator bank or section admittance value. - - :NonlinearShuntCompensator: Non-linear shunt compensator owning this point. Default: None - :b: Positive sequence shunt (charging) susceptance per section Default: 0.0 - :g: Positive sequence shunt (charging) conductance per section Default: 0.0 - :sectionNumber: The number of the section. Default: 0 - :b0: Zero sequence shunt (charging) susceptance per section Default: 0.0 - :g0: Zero sequence shunt (charging) conductance per section Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'NonlinearShuntCompensator': [cgmesProfile.EQ.value, ], - 'b': [cgmesProfile.EQ.value, ], - 'g': [cgmesProfile.EQ.value, ], - 'sectionNumber': [cgmesProfile.EQ.value, ], - 'b0': [cgmesProfile.EQ.value, ], - 'g0': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, NonlinearShuntCompensator = None, b = 0.0, g = 0.0, sectionNumber = 0, b0 = 0.0, g0 = 0.0, ): - - self.NonlinearShuntCompensator = NonlinearShuntCompensator - self.b = b - self.g = g - self.sectionNumber = sectionNumber - self.b0 = b0 - self.g0 = g0 - - def __str__(self): - str = 'class=NonlinearShuntCompensatorPoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py b/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py deleted file mode 100644 index 21e20e7c..00000000 --- a/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py +++ /dev/null @@ -1,29 +0,0 @@ -from .GeneratingUnit import GeneratingUnit - - -class NuclearGeneratingUnit(GeneratingUnit): - ''' - A nuclear generating unit. - - ''' - - cgmesProfile = GeneratingUnit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class GeneratingUnit: \n' + GeneratingUnit.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=NuclearGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OperationalLimit.py b/cimpy/cgmes_v2_4_15/OperationalLimit.py deleted file mode 100644 index 13c7e71c..00000000 --- a/cimpy/cgmes_v2_4_15/OperationalLimit.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class OperationalLimit(IdentifiedObject): - ''' - A value associated with a specific kind of limit. The sub class value attribute shall be positive. The sub class value attribute is inversely proportional to OperationalLimitType.acceptableDuration (acceptableDuration for short). A pair of value_x and acceptableDuration_x are related to each other as follows: if value_1 > value_2 > value_3 >... then acceptableDuration_1 < acceptableDuration_2 < acceptableDuration_3 < ... A value_x with direction="high" shall be greater than a value_y with direction="low". - - :OperationalLimitSet: Values of equipment limits. Default: None - :OperationalLimitType: The limit type associated with this limit. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'OperationalLimitSet': [cgmesProfile.EQ.value, ], - 'OperationalLimitType': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, OperationalLimitSet = None, OperationalLimitType = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.OperationalLimitSet = OperationalLimitSet - self.OperationalLimitType = OperationalLimitType - - def __str__(self): - str = 'class=OperationalLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py b/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py deleted file mode 100644 index 04f3f3fa..00000000 --- a/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class OperationalLimitDirectionKind(Base): - ''' - The direction attribute describes the side of a limit that is a violation. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=OperationalLimitDirectionKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OperationalLimitSet.py b/cimpy/cgmes_v2_4_15/OperationalLimitSet.py deleted file mode 100644 index d9fb5124..00000000 --- a/cimpy/cgmes_v2_4_15/OperationalLimitSet.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class OperationalLimitSet(IdentifiedObject): - ''' - A set of limits associated with equipment. Sets of limits might apply to a specific temperature, or season for example. A set of limits may contain different severities of limit levels that would apply to the same equipment. The set may contain limits of different types such as apparent power and current limits or high and low voltage limits that are logically applied together as a set. - - :Terminal: Default: None - :Equipment: The equipment to which the limit set applies. Default: None - :OperationalLimitValue: The limit set to which the limit values belong. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - 'Equipment': [cgmesProfile.EQ.value, ], - 'OperationalLimitValue': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Terminal = None, Equipment = None, OperationalLimitValue = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Terminal = Terminal - self.Equipment = Equipment - self.OperationalLimitValue = OperationalLimitValue - - def __str__(self): - str = 'class=OperationalLimitSet\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OperationalLimitType.py b/cimpy/cgmes_v2_4_15/OperationalLimitType.py deleted file mode 100644 index 7faf2195..00000000 --- a/cimpy/cgmes_v2_4_15/OperationalLimitType.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class OperationalLimitType(IdentifiedObject): - ''' - The operational meaning of a category of limits. - - :OperationalLimit: The operational limits associated with this type of limit. Default: "list" - :acceptableDuration: The nominal acceptable duration of the limit. Limits are commonly expressed in terms of the a time limit for which the limit is normally acceptable. The actual acceptable duration of a specific limit may depend on other local factors such as temperature or wind speed. Default: 0 - :limitType: Types of limits defined in the ENTSO-E Operational Handbook Policy 3. Default: None - :direction: The direction of the limit. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'OperationalLimit': [cgmesProfile.EQ.value, ], - 'acceptableDuration': [cgmesProfile.EQ.value, ], - 'limitType': [cgmesProfile.EQ.value, ], - 'direction': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, OperationalLimit = "list", acceptableDuration = 0, limitType = None, direction = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.OperationalLimit = OperationalLimit - self.acceptableDuration = acceptableDuration - self.limitType = limitType - self.direction = direction - - def __str__(self): - str = 'class=OperationalLimitType\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OrientationKind.py b/cimpy/cgmes_v2_4_15/OrientationKind.py deleted file mode 100644 index 67f1d367..00000000 --- a/cimpy/cgmes_v2_4_15/OrientationKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class OrientationKind(Base): - ''' - The orientation of the coordinate system with respect to top, left, and the coordinate number system. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=OrientationKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcLim2.py b/cimpy/cgmes_v2_4_15/OverexcLim2.py deleted file mode 100644 index 8b4e02c5..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcLim2.py +++ /dev/null @@ -1,40 +0,0 @@ -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics - - -class OverexcLim2(OverexcitationLimiterDynamics): - ''' - Different from LimIEEEOEL, LimOEL2 has a fixed pickup threshold and reduces the excitation set-point by mean of non-windup integral regulator. Irated is the rated machine excitation current (calculated from nameplate conditions: V, P, CosPhi). - - :koi: Gain Over excitation limiter (K). Typical Value = 0.1. Default: 0.0 - :voimax: Maximum error signal (V). Typical Value = 0. Default: 0.0 - :voimin: Minimum error signal (V). Typical Value = -9999. Default: 0.0 - :ifdlim: Limit value of rated field current (I). Typical Value = 1.05. Default: 0.0 - ''' - - cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'koi': [cgmesProfile.DY.value, ], - 'voimax': [cgmesProfile.DY.value, ], - 'voimin': [cgmesProfile.DY.value, ], - 'ifdlim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OverexcitationLimiterDynamics: \n' + OverexcitationLimiterDynamics.__doc__ - - def __init__(self, koi = 0.0, voimax = 0.0, voimin = 0.0, ifdlim = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.koi = koi - self.voimax = voimax - self.voimin = voimin - self.ifdlim = ifdlim - - def __str__(self): - str = 'class=OverexcLim2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py b/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py deleted file mode 100644 index ef7c43e0..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py +++ /dev/null @@ -1,46 +0,0 @@ -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics - - -class OverexcLimIEEE(OverexcitationLimiterDynamics): - ''' - The over excitation limiter model is intended to represent the significant features of OELs necessary for some large-scale system studies. It is the result of a pragmatic approach to obtain a model that can be widely applied with attainable data from generator owners. An attempt to include all variations in the functionality of OELs and duplicate how they interact with the rest of the excitation systems would likely result in a level of application insufficient for the studies for which they are intended. Reference: IEEE OEL 421.5-2005 Section 9. - - :itfpu: OEL timed field current limiter pickup level (I). Typical Value = 1.05. Default: 0.0 - :ifdmax: OEL instantaneous field current limit (I). Typical Value = 1.5. Default: 0.0 - :ifdlim: OEL timed field current limit (I). Typical Value = 1.05. Default: 0.0 - :hyst: OEL pickup/drop-out hysteresis (HYST). Typical Value = 0.03. Default: 0.0 - :kcd: OEL cooldown gain (K). Typical Value = 1. Default: 0.0 - :kramp: OEL ramped limit rate (K). Unit = PU/sec. Typical Value = 10. Default: 0.0 - ''' - - cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'itfpu': [cgmesProfile.DY.value, ], - 'ifdmax': [cgmesProfile.DY.value, ], - 'ifdlim': [cgmesProfile.DY.value, ], - 'hyst': [cgmesProfile.DY.value, ], - 'kcd': [cgmesProfile.DY.value, ], - 'kramp': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OverexcitationLimiterDynamics: \n' + OverexcitationLimiterDynamics.__doc__ - - def __init__(self, itfpu = 0.0, ifdmax = 0.0, ifdlim = 0.0, hyst = 0.0, kcd = 0.0, kramp = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.itfpu = itfpu - self.ifdmax = ifdmax - self.ifdlim = ifdlim - self.hyst = hyst - self.kcd = kcd - self.kramp = kramp - - def __str__(self): - str = 'class=OverexcLimIEEE\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcLimX1.py b/cimpy/cgmes_v2_4_15/OverexcLimX1.py deleted file mode 100644 index 74af98d7..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcLimX1.py +++ /dev/null @@ -1,58 +0,0 @@ -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics - - -class OverexcLimX1(OverexcitationLimiterDynamics): - ''' - Field voltage over excitation limiter. - - :efdrated: Rated field voltage (EFD). Typical Value = 1.05. Default: 0.0 - :efd1: Low voltage point on the inverse time characteristic (EFD). Typical Value = 1.1. Default: 0.0 - :t1: Time to trip the exciter at the low voltage point on the inverse time characteristic (TIME). Typical Value = 120. Default: 0 - :efd2: Mid voltage point on the inverse time characteristic (EFD). Typical Value = 1.2. Default: 0.0 - :t2: Time to trip the exciter at the mid voltage point on the inverse time characteristic (TIME). Typical Value = 40. Default: 0 - :efd3: High voltage point on the inverse time characteristic (EFD). Typical Value = 1.5. Default: 0.0 - :t3: Time to trip the exciter at the high voltage point on the inverse time characteristic (TIME). Typical Value = 15. Default: 0 - :efddes: Desired field voltage (EFD). Typical Value = 0.9. Default: 0.0 - :kmx: Gain (K). Typical Value = 0.01. Default: 0.0 - :vlow: Low voltage limit (V) (>0). Default: 0.0 - ''' - - cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'efdrated': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'efd3': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'efddes': [cgmesProfile.DY.value, ], - 'kmx': [cgmesProfile.DY.value, ], - 'vlow': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OverexcitationLimiterDynamics: \n' + OverexcitationLimiterDynamics.__doc__ - - def __init__(self, efdrated = 0.0, efd1 = 0.0, t1 = 0, efd2 = 0.0, t2 = 0, efd3 = 0.0, t3 = 0, efddes = 0.0, kmx = 0.0, vlow = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.efdrated = efdrated - self.efd1 = efd1 - self.t1 = t1 - self.efd2 = efd2 - self.t2 = t2 - self.efd3 = efd3 - self.t3 = t3 - self.efddes = efddes - self.kmx = kmx - self.vlow = vlow - - def __str__(self): - str = 'class=OverexcLimX1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcLimX2.py b/cimpy/cgmes_v2_4_15/OverexcLimX2.py deleted file mode 100644 index 9e234eaf..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcLimX2.py +++ /dev/null @@ -1,61 +0,0 @@ -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics - - -class OverexcLimX2(OverexcitationLimiterDynamics): - ''' - Field Voltage or Current overexcitation limiter designed to protect the generator field of an AC machine with automatic excitation control from overheating due to prolonged overexcitation. - - :m: (m). true = IFD limiting false = EFD limiting. Default: False - :efdrated: Rated field voltage if m=F or field current if m=T (EFD). Typical Value = 1.05. Default: 0.0 - :efd1: Low voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.1. Default: 0.0 - :t1: Time to trip the exciter at the low voltage or current point on the inverse time characteristic (TIME). Typical Value = 120. Default: 0 - :efd2: Mid voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.2. Default: 0.0 - :t2: Time to trip the exciter at the mid voltage or current point on the inverse time characteristic (TIME). Typical Value = 40. Default: 0 - :efd3: High voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.5. Default: 0.0 - :t3: Time to trip the exciter at the high voltage or current point on the inverse time characteristic (TIME). Typical Value = 15. Default: 0 - :efddes: Desired field voltage if m=F or field current if m=T (EFD). Typical Value = 1. Default: 0.0 - :kmx: Gain (K). Typical Value = 0.002. Default: 0.0 - :vlow: Low voltage limit (V) (>0). Default: 0.0 - ''' - - cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'm': [cgmesProfile.DY.value, ], - 'efdrated': [cgmesProfile.DY.value, ], - 'efd1': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'efd2': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'efd3': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 'efddes': [cgmesProfile.DY.value, ], - 'kmx': [cgmesProfile.DY.value, ], - 'vlow': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OverexcitationLimiterDynamics: \n' + OverexcitationLimiterDynamics.__doc__ - - def __init__(self, m = False, efdrated = 0.0, efd1 = 0.0, t1 = 0, efd2 = 0.0, t2 = 0, efd3 = 0.0, t3 = 0, efddes = 0.0, kmx = 0.0, vlow = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.m = m - self.efdrated = efdrated - self.efd1 = efd1 - self.t1 = t1 - self.efd2 = efd2 - self.t2 = t2 - self.efd3 = efd3 - self.t3 = t3 - self.efddes = efddes - self.kmx = kmx - self.vlow = vlow - - def __str__(self): - str = 'class=OverexcLimX2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py b/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py deleted file mode 100644 index 1ccd0268..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class OverexcitationLimiterDynamics(DynamicsFunctionBlock): - ''' - Overexcitation limiter function block whose behaviour is described by reference to a standard model - - :ExcitationSystemDynamics: Excitation system model with which this overexcitation limiter model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=OverexcitationLimiterDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py b/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py deleted file mode 100644 index 65d0a7db..00000000 --- a/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics - - -class OverexcitationLimiterUserDefined(OverexcitationLimiterDynamics): - ''' - Overexcitation limiter system function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OverexcitationLimiterDynamics: \n' + OverexcitationLimiterDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=OverexcitationLimiterUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py b/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py deleted file mode 100644 index 8c41504c..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py +++ /dev/null @@ -1,37 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class PFVArControllerType1Dynamics(DynamicsFunctionBlock): - ''' - Power Factor or VAr controller Type I function block whose behaviour is described by reference to a standard model - - :RemoteInputSignal: Remote input signal used by this Power Factor or VAr controller Type I model. Default: None - :ExcitationSystemDynamics: Excitation system model with which this Power Factor or VAr controller Type I model is associated. Default: None - :VoltageAdjusterDynamics: Voltage adjuster model associated with this Power Factor or VA controller Type I model. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - 'VoltageAdjusterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, ExcitationSystemDynamics = None, VoltageAdjusterDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.ExcitationSystemDynamics = ExcitationSystemDynamics - self.VoltageAdjusterDynamics = VoltageAdjusterDynamics - - def __str__(self): - str = 'class=PFVArControllerType1Dynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py b/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py deleted file mode 100644 index c043b4d8..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics - - -class PFVArControllerType1UserDefined(PFVArControllerType1Dynamics): - ''' - Power Factor or VAr controller Type I function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType1Dynamics: \n' + PFVArControllerType1Dynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=PFVArControllerType1UserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py b/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py deleted file mode 100644 index e678b004..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class PFVArControllerType2Dynamics(DynamicsFunctionBlock): - ''' - Power Factor or VAr controller Type II function block whose behaviour is described by reference to a standard model - - :ExcitationSystemDynamics: Excitation system model with which this Power Factor or VAr controller Type II is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=PFVArControllerType2Dynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py b/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py deleted file mode 100644 index 65284d35..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics - - -class PFVArControllerType2UserDefined(PFVArControllerType2Dynamics): - ''' - Power Factor or VAr controller Type II function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType2Dynamics: \n' + PFVArControllerType2Dynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=PFVArControllerType2UserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py b/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py deleted file mode 100644 index 4f8d77fa..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py +++ /dev/null @@ -1,52 +0,0 @@ -from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics - - -class PFVArType1IEEEPFController(PFVArControllerType1Dynamics): - ''' - The class represents IEEE PF Controller Type 1 which operates by moving the voltage reference directly. Reference: IEEE Standard 421.5-2005 Section 11.2. - - :ovex: Overexcitation Flag () true = overexcited false = underexcited. Default: False - :tpfc: PF controller time delay (). Typical Value = 5. Default: 0 - :vitmin: Minimum machine terminal current needed to enable pf/var controller (). Default: 0.0 - :vpf: Synchronous machine power factor (). Default: 0.0 - :vpfcbw: PF controller dead band (). Typical Value = 0.05. Default: 0.0 - :vpfref: PF controller reference (). Default: 0.0 - :vvtmax: Maximum machine terminal voltage needed for pf/var controller to be enabled (). Default: 0.0 - :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (). Default: 0.0 - ''' - - cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ovex': [cgmesProfile.DY.value, ], - 'tpfc': [cgmesProfile.DY.value, ], - 'vitmin': [cgmesProfile.DY.value, ], - 'vpf': [cgmesProfile.DY.value, ], - 'vpfcbw': [cgmesProfile.DY.value, ], - 'vpfref': [cgmesProfile.DY.value, ], - 'vvtmax': [cgmesProfile.DY.value, ], - 'vvtmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType1Dynamics: \n' + PFVArControllerType1Dynamics.__doc__ - - def __init__(self, ovex = False, tpfc = 0, vitmin = 0.0, vpf = 0.0, vpfcbw = 0.0, vpfref = 0.0, vvtmax = 0.0, vvtmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ovex = ovex - self.tpfc = tpfc - self.vitmin = vitmin - self.vpf = vpf - self.vpfcbw = vpfcbw - self.vpfref = vpfref - self.vvtmax = vvtmax - self.vvtmin = vvtmin - - def __str__(self): - str = 'class=PFVArType1IEEEPFController\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py b/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py deleted file mode 100644 index d215f698..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py +++ /dev/null @@ -1,46 +0,0 @@ -from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics - - -class PFVArType1IEEEVArController(PFVArControllerType1Dynamics): - ''' - The class represents IEEE VAR Controller Type 1 which operates by moving the voltage reference directly. Reference: IEEE Standard 421.5-2005 Section 11.3. - - :tvarc: Var controller time delay (). Typical Value = 5. Default: 0 - :vvar: Synchronous machine power factor (). Default: 0.0 - :vvarcbw: Var controller dead band (). Typical Value = 0.02. Default: 0.0 - :vvarref: Var controller reference (). Default: 0.0 - :vvtmax: Maximum machine terminal voltage needed for pf/var controller to be enabled (). Default: 0.0 - :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (). Default: 0.0 - ''' - - cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tvarc': [cgmesProfile.DY.value, ], - 'vvar': [cgmesProfile.DY.value, ], - 'vvarcbw': [cgmesProfile.DY.value, ], - 'vvarref': [cgmesProfile.DY.value, ], - 'vvtmax': [cgmesProfile.DY.value, ], - 'vvtmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType1Dynamics: \n' + PFVArControllerType1Dynamics.__doc__ - - def __init__(self, tvarc = 0, vvar = 0.0, vvarcbw = 0.0, vvarref = 0.0, vvtmax = 0.0, vvtmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tvarc = tvarc - self.vvar = vvar - self.vvarcbw = vvarcbw - self.vvarref = vvarref - self.vvtmax = vvtmax - self.vvtmin = vvtmin - - def __str__(self): - str = 'class=PFVArType1IEEEVArController\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArType2Common1.py b/cimpy/cgmes_v2_4_15/PFVArType2Common1.py deleted file mode 100644 index add58576..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArType2Common1.py +++ /dev/null @@ -1,43 +0,0 @@ -from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics - - -class PFVArType2Common1(PFVArControllerType2Dynamics): - ''' - Power factor / Reactive power regulator. This model represents the power factor or reactive power controller such as the Basler SCP-250. The controller measures power factor or reactive power (PU on generator rated power) and compares it with the operator's set point. - - :j: Selector (J). true = control mode for reactive power false = control mode for power factor. Default: False - :kp: Proportional gain (Kp). Default: 0.0 - :ki: Reset gain (Ki). Default: 0.0 - :max: Output limit (max). Default: 0.0 - :ref: Reference value of reactive power or power factor (Ref). The reference value is initialised by this model. This initialisation may override the value exchanged by this attribute to represent a plant operator`s change of the reference setting. Default: 0.0 - ''' - - cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'j': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'max': [cgmesProfile.DY.value, ], - 'ref': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType2Dynamics: \n' + PFVArControllerType2Dynamics.__doc__ - - def __init__(self, j = False, kp = 0.0, ki = 0.0, max = 0.0, ref = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.j = j - self.kp = kp - self.ki = ki - self.max = max - self.ref = ref - - def __str__(self): - str = 'class=PFVArType2Common1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py b/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py deleted file mode 100644 index bc744d31..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py +++ /dev/null @@ -1,49 +0,0 @@ -from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics - - -class PFVArType2IEEEPFController(PFVArControllerType2Dynamics): - ''' - The class represents IEEE PF Controller Type 2 which is a summing point type controller and makes up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller. The voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE Standard 421.5-2005 Section 11.4. - - :pfref: Power factor reference (). Default: 0.0 - :vref: Voltage regulator reference (). Default: 0.0 - :vclmt: Maximum output of the pf controller (). Typical Value = 0.1. Default: 0.0 - :kp: Proportional gain of the pf controller (). Typical Value = 1. Default: 0.0 - :ki: Integral gain of the pf controller (). Typical Value = 1. Default: 0.0 - :vs: Generator sensing voltage (). Default: 0.0 - :exlon: Overexcitation or under excitation flag () true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False - ''' - - cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'pfref': [cgmesProfile.DY.value, ], - 'vref': [cgmesProfile.DY.value, ], - 'vclmt': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'vs': [cgmesProfile.DY.value, ], - 'exlon': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType2Dynamics: \n' + PFVArControllerType2Dynamics.__doc__ - - def __init__(self, pfref = 0.0, vref = 0.0, vclmt = 0.0, kp = 0.0, ki = 0.0, vs = 0.0, exlon = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.pfref = pfref - self.vref = vref - self.vclmt = vclmt - self.kp = kp - self.ki = ki - self.vs = vs - self.exlon = exlon - - def __str__(self): - str = 'class=PFVArType2IEEEPFController\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py b/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py deleted file mode 100644 index 7511dbbd..00000000 --- a/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py +++ /dev/null @@ -1,49 +0,0 @@ -from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics - - -class PFVArType2IEEEVArController(PFVArControllerType2Dynamics): - ''' - The class represents IEEE VAR Controller Type 2 which is a summing point type controller. It makes up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller, and the voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE Standard 421.5-2005 Section 11.5. - - :qref: Reactive power reference (). Default: 0.0 - :vref: Voltage regulator reference (). Default: 0.0 - :vclmt: Maximum output of the pf controller (). Default: 0.0 - :kp: Proportional gain of the pf controller (). Default: 0.0 - :ki: Integral gain of the pf controller (). Default: 0.0 - :vs: Generator sensing voltage (). Default: 0.0 - :exlon: Overexcitation or under excitation flag () true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False - ''' - - cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'qref': [cgmesProfile.DY.value, ], - 'vref': [cgmesProfile.DY.value, ], - 'vclmt': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'vs': [cgmesProfile.DY.value, ], - 'exlon': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PFVArControllerType2Dynamics: \n' + PFVArControllerType2Dynamics.__doc__ - - def __init__(self, qref = 0.0, vref = 0.0, vclmt = 0.0, kp = 0.0, ki = 0.0, vs = 0.0, exlon = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.qref = qref - self.vref = vref - self.vclmt = vclmt - self.kp = kp - self.ki = ki - self.vs = vs - self.exlon = exlon - - def __str__(self): - str = 'class=PFVArType2IEEEVArController\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PU.py b/cimpy/cgmes_v2_4_15/PU.py deleted file mode 100644 index a6141548..00000000 --- a/cimpy/cgmes_v2_4_15/PU.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class PU(Base): - ''' - Per Unit - a positive or negative value referred to a defined base. Values typically range from -10 to +10. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=PU\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PerCent.py b/cimpy/cgmes_v2_4_15/PerCent.py deleted file mode 100644 index 3671e75f..00000000 --- a/cimpy/cgmes_v2_4_15/PerCent.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class PerCent(Base): - ''' - Percentage on a defined base. For example, specify as 100 to indicate at the defined base. - - :value: Normally 0 - 100 on a defined base Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=PerCent\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PetersenCoil.py b/cimpy/cgmes_v2_4_15/PetersenCoil.py deleted file mode 100644 index 3ed35db6..00000000 --- a/cimpy/cgmes_v2_4_15/PetersenCoil.py +++ /dev/null @@ -1,49 +0,0 @@ -from .EarthFaultCompensator import EarthFaultCompensator - - -class PetersenCoil(EarthFaultCompensator): - ''' - A tunable impedance device normally used to offset line charging during single line faults in an ungrounded section of network. - - :mode: The mode of operation of the Petersen coil. Default: None - :nominalU: The nominal voltage for which the coil is designed. Default: 0.0 - :offsetCurrent: The offset current that the Petersen coil controller is operating from the resonant point. This is normally a fixed amount for which the controller is configured and could be positive or negative. Typically 0 to 60 Amperes depending on voltage and resonance conditions. Default: 0.0 - :positionCurrent: The control current used to control the Petersen coil also known as the position current. Typically in the range of 20-200mA. Default: 0.0 - :xGroundMax: The maximum reactance. Default: 0.0 - :xGroundMin: The minimum reactance. Default: 0.0 - :xGroundNominal: The nominal reactance. This is the operating point (normally over compensation) that is defined based on the resonance point in the healthy network condition. The impedance is calculated based on nominal voltage divided by position current. Default: 0.0 - ''' - - cgmesProfile = EarthFaultCompensator.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'mode': [cgmesProfile.EQ.value, ], - 'nominalU': [cgmesProfile.EQ.value, ], - 'offsetCurrent': [cgmesProfile.EQ.value, ], - 'positionCurrent': [cgmesProfile.EQ.value, ], - 'xGroundMax': [cgmesProfile.EQ.value, ], - 'xGroundMin': [cgmesProfile.EQ.value, ], - 'xGroundNominal': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EarthFaultCompensator: \n' + EarthFaultCompensator.__doc__ - - def __init__(self, mode = None, nominalU = 0.0, offsetCurrent = 0.0, positionCurrent = 0.0, xGroundMax = 0.0, xGroundMin = 0.0, xGroundNominal = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mode = mode - self.nominalU = nominalU - self.offsetCurrent = offsetCurrent - self.positionCurrent = positionCurrent - self.xGroundMax = xGroundMax - self.xGroundMin = xGroundMin - self.xGroundNominal = xGroundNominal - - def __str__(self): - str = 'class=PetersenCoil\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py b/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py deleted file mode 100644 index b4a27f40..00000000 --- a/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class PetersenCoilModeKind(Base): - ''' - The mode of operation for a Petersen coil. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=PetersenCoilModeKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseCode.py b/cimpy/cgmes_v2_4_15/PhaseCode.py deleted file mode 100644 index 589b17f7..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseCode.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class PhaseCode(Base): - ''' - Enumeration of phase identifiers. Allows designation of phases for both transmission and distribution equipment, circuits and loads. Residential and small commercial loads are often served from single-phase, or split-phase, secondary circuits. For example of s12N, phases 1 and 2 refer to hot wires that are 180 degrees out of phase, while N refers to the neutral wire. Through single-phase transformer connections, these secondary circuits may be served from one or two of the primary phases A, B, and C. For three-phase loads, use the A, B, C phase codes instead of s12N. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=PhaseCode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChanger.py b/cimpy/cgmes_v2_4_15/PhaseTapChanger.py deleted file mode 100644 index 1d0419a6..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChanger.py +++ /dev/null @@ -1,31 +0,0 @@ -from .TapChanger import TapChanger - - -class PhaseTapChanger(TapChanger): - ''' - A transformer phase shifting tap model that controls the phase angle difference across the power transformer and potentially the active power flow through the power transformer. This phase tap model may also impact the voltage magnitude. - - :TransformerEnd: Phase tap changer associated with this transformer end. Default: None - ''' - - cgmesProfile = TapChanger.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'TransformerEnd': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TapChanger: \n' + TapChanger.__doc__ - - def __init__(self, TransformerEnd = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.TransformerEnd = TransformerEnd - - def __str__(self): - str = 'class=PhaseTapChanger\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py deleted file mode 100644 index e5feea68..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py +++ /dev/null @@ -1,31 +0,0 @@ -from .PhaseTapChangerNonLinear import PhaseTapChangerNonLinear - - -class PhaseTapChangerAsymmetrical(PhaseTapChangerNonLinear): - ''' - Describes the tap model for an asymmetrical phase shifting transformer in which the difference voltage vector adds to the primary side voltage. The angle between the primary side voltage and the difference voltage is named the winding connection angle. The phase shift depends on both the difference voltage magnitude and the winding connection angle. - - :windingConnectionAngle: The phase angle between the in-phase winding and the out-of -phase winding used for creating phase shift. The out-of-phase winding produces what is known as the difference voltage. Setting this angle to 90 degrees is not the same as a symmemtrical transformer. Default: 0.0 - ''' - - cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'windingConnectionAngle': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PhaseTapChangerNonLinear: \n' + PhaseTapChangerNonLinear.__doc__ - - def __init__(self, windingConnectionAngle = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.windingConnectionAngle = windingConnectionAngle - - def __str__(self): - str = 'class=PhaseTapChangerAsymmetrical\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py deleted file mode 100644 index 4d7257ae..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py +++ /dev/null @@ -1,37 +0,0 @@ -from .PhaseTapChanger import PhaseTapChanger - - -class PhaseTapChangerLinear(PhaseTapChanger): - ''' - Describes a tap changer with a linear relation between the tap step and the phase angle difference across the transformer. This is a mathematical model that is an approximation of a real phase tap changer. The phase angle is computed as stepPhaseShitfIncrement times the tap position. The secondary side voltage magnitude is the same as at the primary side. - - :stepPhaseShiftIncrement: Phase shift per step position. A positive value indicates a positive phase shift from the winding where the tap is located to the other winding (for a two-winding transformer). The actual phase shift increment might be more accurately computed from the symmetrical or asymmetrical models or a tap step table lookup if those are available. Default: 0.0 - :xMax: The reactance depend on the tap position according to a `u` shaped curve. The maximum reactance (xMax) appear at the low and high tap positions. Default: 0.0 - :xMin: The reactance depend on the tap position according to a `u` shaped curve. The minimum reactance (xMin) appear at the mid tap position. Default: 0.0 - ''' - - cgmesProfile = PhaseTapChanger.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'stepPhaseShiftIncrement': [cgmesProfile.EQ.value, ], - 'xMax': [cgmesProfile.EQ.value, ], - 'xMin': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PhaseTapChanger: \n' + PhaseTapChanger.__doc__ - - def __init__(self, stepPhaseShiftIncrement = 0.0, xMax = 0.0, xMin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.stepPhaseShiftIncrement = stepPhaseShiftIncrement - self.xMax = xMax - self.xMin = xMin - - def __str__(self): - str = 'class=PhaseTapChangerLinear\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py deleted file mode 100644 index 8d3c7f07..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py +++ /dev/null @@ -1,37 +0,0 @@ -from .PhaseTapChanger import PhaseTapChanger - - -class PhaseTapChangerNonLinear(PhaseTapChanger): - ''' - The non-linear phase tap changer describes the non-linear behavior of a phase tap changer. This is a base class for the symmetrical and asymmetrical phase tap changer models. The details of these models can be found in the IEC 61970-301 document. - - :voltageStepIncrement: The voltage step increment on the out of phase winding specified in percent of nominal voltage of the transformer end. Default: 0.0 - :xMax: The reactance depend on the tap position according to a `u` shaped curve. The maximum reactance (xMax) appear at the low and high tap positions. Default: 0.0 - :xMin: The reactance depend on the tap position according to a `u` shaped curve. The minimum reactance (xMin) appear at the mid tap position. Default: 0.0 - ''' - - cgmesProfile = PhaseTapChanger.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'voltageStepIncrement': [cgmesProfile.EQ.value, ], - 'xMax': [cgmesProfile.EQ.value, ], - 'xMin': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PhaseTapChanger: \n' + PhaseTapChanger.__doc__ - - def __init__(self, voltageStepIncrement = 0.0, xMax = 0.0, xMin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.voltageStepIncrement = voltageStepIncrement - self.xMax = xMax - self.xMin = xMin - - def __str__(self): - str = 'class=PhaseTapChangerNonLinear\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py deleted file mode 100644 index b052e879..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py +++ /dev/null @@ -1,29 +0,0 @@ -from .PhaseTapChangerNonLinear import PhaseTapChangerNonLinear - - -class PhaseTapChangerSymmetrical(PhaseTapChangerNonLinear): - ''' - Describes a symmetrical phase shifting transformer tap model in which the secondary side voltage magnitude is the same as at the primary side. The difference voltage magnitude is the base in an equal-sided triangle where the sides corresponds to the primary and secondary voltages. The phase angle difference corresponds to the top angle and can be expressed as twice the arctangent of half the total difference voltage. - - ''' - - cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PhaseTapChangerNonLinear: \n' + PhaseTapChangerNonLinear.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=PhaseTapChangerSymmetrical\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py deleted file mode 100644 index a017461c..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class PhaseTapChangerTable(IdentifiedObject): - ''' - Describes a tabular curve for how the phase angle difference and impedance varies with the tap step. - - :PhaseTapChangerTablePoint: The points of this table. Default: "list" - :PhaseTapChangerTabular: The phase tap changers to which this phase tap table applies. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'PhaseTapChangerTablePoint': [cgmesProfile.EQ.value, ], - 'PhaseTapChangerTabular': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, PhaseTapChangerTablePoint = "list", PhaseTapChangerTabular = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PhaseTapChangerTablePoint = PhaseTapChangerTablePoint - self.PhaseTapChangerTabular = PhaseTapChangerTabular - - def __str__(self): - str = 'class=PhaseTapChangerTable\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py deleted file mode 100644 index 0f6f618b..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py +++ /dev/null @@ -1,34 +0,0 @@ -from .TapChangerTablePoint import TapChangerTablePoint - - -class PhaseTapChangerTablePoint(TapChangerTablePoint): - ''' - Describes each tap step in the phase tap changer tabular curve. - - :PhaseTapChangerTable: The table of this point. Default: None - :angle: The angle difference in degrees. Default: 0.0 - ''' - - cgmesProfile = TapChangerTablePoint.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'PhaseTapChangerTable': [cgmesProfile.EQ.value, ], - 'angle': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TapChangerTablePoint: \n' + TapChangerTablePoint.__doc__ - - def __init__(self, PhaseTapChangerTable = None, angle = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PhaseTapChangerTable = PhaseTapChangerTable - self.angle = angle - - def __str__(self): - str = 'class=PhaseTapChangerTablePoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py b/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py deleted file mode 100644 index 6f51fa15..00000000 --- a/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py +++ /dev/null @@ -1,31 +0,0 @@ -from .PhaseTapChanger import PhaseTapChanger - - -class PhaseTapChangerTabular(PhaseTapChanger): - ''' - - - :PhaseTapChangerTable: The phase tap changer table for this phase tap changer. Default: None - ''' - - cgmesProfile = PhaseTapChanger.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'PhaseTapChangerTable': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PhaseTapChanger: \n' + PhaseTapChanger.__doc__ - - def __init__(self, PhaseTapChangerTable = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PhaseTapChangerTable = PhaseTapChangerTable - - def __str__(self): - str = 'class=PhaseTapChangerTabular\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PositionPoint.py b/cimpy/cgmes_v2_4_15/PositionPoint.py deleted file mode 100644 index 3989740d..00000000 --- a/cimpy/cgmes_v2_4_15/PositionPoint.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class PositionPoint(Base): - ''' - Set of spatial coordinates that determine a point, defined in the coordinate system specified in 'Location.CoordinateSystem'. Use a single position point instance to desribe a point-oriented location. Use a sequence of position points to describe a line-oriented object (physical location of non-point oriented objects like cables or lines), or area of an object (like a substation or a geographical zone - in this case, have first and last position point with the same values). - - :Location: Location described by this position point. Default: None - :sequenceNumber: Zero-relative sequence number of this point within a series of points. Default: 0 - :xPosition: X axis position. Default: '' - :yPosition: Y axis position. Default: '' - :zPosition: (if applicable) Z axis position. Default: '' - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.GL.value, ], - 'Location': [cgmesProfile.GL.value, ], - 'sequenceNumber': [cgmesProfile.GL.value, ], - 'xPosition': [cgmesProfile.GL.value, ], - 'yPosition': [cgmesProfile.GL.value, ], - 'zPosition': [cgmesProfile.GL.value, ], - } - - serializationProfile = {} - - - - def __init__(self, Location = None, sequenceNumber = 0, xPosition = '', yPosition = '', zPosition = '', ): - - self.Location = Location - self.sequenceNumber = sequenceNumber - self.xPosition = xPosition - self.yPosition = yPosition - self.zPosition = zPosition - - def __str__(self): - str = 'class=PositionPoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PowerSystemResource.py b/cimpy/cgmes_v2_4_15/PowerSystemResource.py deleted file mode 100644 index 6ac0ffe2..00000000 --- a/cimpy/cgmes_v2_4_15/PowerSystemResource.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class PowerSystemResource(IdentifiedObject): - ''' - A power system resource can be an item of equipment such as a switch, an equipment container containing many individual items of equipment such as a substation, or an organisational entity such as sub-control area. Power system resources can have measurements associated. - - :Controls: Regulating device governed by this control output. Default: "list" - :Measurements: The power system resource that contains the measurement. Default: "list" - :Location: Location of this power system resource. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.GL.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'Controls': [cgmesProfile.EQ.value, ], - 'Measurements': [cgmesProfile.EQ.value, ], - 'Location': [cgmesProfile.GL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Controls = "list", Measurements = "list", Location = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Controls = Controls - self.Measurements = Measurements - self.Location = Location - - def __str__(self): - str = 'class=PowerSystemResource\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py b/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py deleted file mode 100644 index 570c4b8b..00000000 --- a/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class PowerSystemStabilizerDynamics(DynamicsFunctionBlock): - ''' - Power system stabilizer function block whose behaviour is described by reference to a standard model - - :RemoteInputSignal: Remote input signal used by this power system stabilizer model. Default: "list" - :ExcitationSystemDynamics: Excitation system model with which this power system stabilizer model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = "list", ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=PowerSystemStabilizerDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py b/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py deleted file mode 100644 index 5f68b8f7..00000000 --- a/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PowerSystemStabilizerUserDefined(PowerSystemStabilizerDynamics): - ''' - function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=PowerSystemStabilizerUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PowerTransformer.py b/cimpy/cgmes_v2_4_15/PowerTransformer.py deleted file mode 100644 index 731786f2..00000000 --- a/cimpy/cgmes_v2_4_15/PowerTransformer.py +++ /dev/null @@ -1,49 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class PowerTransformer(ConductingEquipment): - ''' - An electrical device consisting of two or more coupled windings, with or without a magnetic core, for introducing mutual coupling between electric circuits. Transformers can be used to control voltage and phase shift (active power flow). A power transformer may be composed of separate transformer tanks that need not be identical. A power transformer can be modeled with or without tanks and is intended for use in both balanced and unbalanced representations. A power transformer typically has two terminals, but may have one (grounding), three or more terminals. The inherited association ConductingEquipment.BaseVoltage should not be used. The association from TransformerEnd to BaseVoltage should be used instead. - - :PowerTransformerEnd: The power transformer of this power transformer end. Default: "list" - :beforeShCircuitHighestOperatingCurrent: The highest operating current (Ib in the IEC 60909-0) before short circuit (depends on network configuration and relevant reliability philosophy). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. Default: 0.0 - :beforeShCircuitHighestOperatingVoltage: The highest operating voltage (Ub in the IEC 60909-0) before short circuit. It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is worst case voltage on the low side winding (Section 3.7.1 in the standard). Used to define operating conditions. Default: 0.0 - :beforeShortCircuitAnglePf: The angle of power factor before short circuit (phib in the IEC 60909-0). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is the worst case power factor. Used to define operating conditions. Default: 0.0 - :highSideMinOperatingU: The minimum operating voltage (uQmin in the IEC 60909-0) at the high voltage side (Q side) of the unit transformer of the power station unit. A value well established from long-term operating experience of the system. It is used for calculation of the impedance correction factor KG defined in IEC 60909-0 Default: 0.0 - :isPartOfGeneratorUnit: Indicates whether the machine is part of a power station unit. Used for short circuit data exchange according to IEC 60909 Default: False - :operationalValuesConsidered: It is used to define if the data (other attributes related to short circuit data exchange) defines long term operational conditions or not. Used for short circuit data exchange according to IEC 60909. Default: False - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'PowerTransformerEnd': [cgmesProfile.EQ.value, ], - 'beforeShCircuitHighestOperatingCurrent': [cgmesProfile.EQ.value, ], - 'beforeShCircuitHighestOperatingVoltage': [cgmesProfile.EQ.value, ], - 'beforeShortCircuitAnglePf': [cgmesProfile.EQ.value, ], - 'highSideMinOperatingU': [cgmesProfile.EQ.value, ], - 'isPartOfGeneratorUnit': [cgmesProfile.EQ.value, ], - 'operationalValuesConsidered': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, PowerTransformerEnd = "list", beforeShCircuitHighestOperatingCurrent = 0.0, beforeShCircuitHighestOperatingVoltage = 0.0, beforeShortCircuitAnglePf = 0.0, highSideMinOperatingU = 0.0, isPartOfGeneratorUnit = False, operationalValuesConsidered = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PowerTransformerEnd = PowerTransformerEnd - self.beforeShCircuitHighestOperatingCurrent = beforeShCircuitHighestOperatingCurrent - self.beforeShCircuitHighestOperatingVoltage = beforeShCircuitHighestOperatingVoltage - self.beforeShortCircuitAnglePf = beforeShortCircuitAnglePf - self.highSideMinOperatingU = highSideMinOperatingU - self.isPartOfGeneratorUnit = isPartOfGeneratorUnit - self.operationalValuesConsidered = operationalValuesConsidered - - def __str__(self): - str = 'class=PowerTransformer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py b/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py deleted file mode 100644 index 9e76847f..00000000 --- a/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py +++ /dev/null @@ -1,67 +0,0 @@ -from .TransformerEnd import TransformerEnd - - -class PowerTransformerEnd(TransformerEnd): - ''' - A PowerTransformerEnd is associated with each Terminal of a PowerTransformer. The impedance values r, r0, x, and x0 of a PowerTransformerEnd represents a star equivalent as follows 1) for a two Terminal PowerTransformer the high voltage PowerTransformerEnd has non zero values on r, r0, x, and x0 while the low voltage PowerTransformerEnd has zero values for r, r0, x, and x0. 2) for a three Terminal PowerTransformer the three PowerTransformerEnds represents a star equivalent with each leg in the star represented by r, r0, x, and x0 values. 3) for a PowerTransformer with more than three Terminals the PowerTransformerEnd impedance values cannot be used. Instead use the TransformerMeshImpedance or split the transformer into multiple PowerTransformers. - - :PowerTransformer: The ends of this power transformer. Default: None - :b: Magnetizing branch susceptance (B mag). The value can be positive or negative. Default: 0.0 - :connectionKind: Kind of connection. Default: None - :ratedS: Normal apparent power rating. The attribute shall be a positive value. For a two-winding transformer the values for the high and low voltage sides shall be identical. Default: 0.0 - :g: Magnetizing branch conductance. Default: 0.0 - :ratedU: Rated voltage: phase-phase for three-phase windings, and either phase-phase or phase-neutral for single-phase windings. A high voltage side, as given by TransformerEnd.endNumber, shall have a ratedU that is greater or equal than ratedU for the lower voltage sides. Default: 0.0 - :r: Resistance (star-model) of the transformer end. The attribute shall be equal or greater than zero for non-equivalent transformers. Default: 0.0 - :x: Positive sequence series reactance (star-model) of the transformer end. Default: 0.0 - :b0: Zero sequence magnetizing branch susceptance. Default: 0.0 - :phaseAngleClock: Terminal voltage phase angle displacement where 360 degrees are represented with clock hours. The valid values are 0 to 11. For example, for the secondary side end of a transformer with vector group code of `Dyn11`, specify the connection kind as wye with neutral and specify the phase angle of the clock as 11. The clock value of the transformer end number specified as 1, is assumed to be zero. Note the transformer end number is not assumed to be the same as the terminal sequence number. Default: 0 - :g0: Zero sequence magnetizing branch conductance (star-model). Default: 0.0 - :r0: Zero sequence series resistance (star-model) of the transformer end. Default: 0.0 - :x0: Zero sequence series reactance of the transformer end. Default: 0.0 - ''' - - cgmesProfile = TransformerEnd.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'PowerTransformer': [cgmesProfile.EQ.value, ], - 'b': [cgmesProfile.EQ.value, ], - 'connectionKind': [cgmesProfile.EQ.value, ], - 'ratedS': [cgmesProfile.EQ.value, ], - 'g': [cgmesProfile.EQ.value, ], - 'ratedU': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'b0': [cgmesProfile.EQ.value, ], - 'phaseAngleClock': [cgmesProfile.EQ.value, ], - 'g0': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TransformerEnd: \n' + TransformerEnd.__doc__ - - def __init__(self, PowerTransformer = None, b = 0.0, connectionKind = None, ratedS = 0.0, g = 0.0, ratedU = 0.0, r = 0.0, x = 0.0, b0 = 0.0, phaseAngleClock = 0, g0 = 0.0, r0 = 0.0, x0 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PowerTransformer = PowerTransformer - self.b = b - self.connectionKind = connectionKind - self.ratedS = ratedS - self.g = g - self.ratedU = ratedU - self.r = r - self.x = x - self.b0 = b0 - self.phaseAngleClock = phaseAngleClock - self.g0 = g0 - self.r0 = r0 - self.x0 = x0 - - def __str__(self): - str = 'class=PowerTransformerEnd\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py b/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py deleted file mode 100644 index ab441997..00000000 --- a/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py +++ /dev/null @@ -1,93 +0,0 @@ -from .Base import Base - - -class ProprietaryParameterDynamics(Base): - ''' - Supports definition of one or more parameters of several different datatypes for use by proprietary user-defined models. NOTE: This class does not inherit from IdentifiedObject since it is not intended that a single instance of it be referenced by more than one proprietary user-defined model instance. - - :WindPlantUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :WindType1or2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :WindType3or4UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :SynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :AsynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :TurbineGovernorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :TurbineLoadControllerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :MechanicalLoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :ExcitationSystemUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :OverexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :UnderexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :PowerSystemStabilizerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :DiscontinuousExcitationControlUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :PFVArControllerType1UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :VoltageAdjusterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :PFVArControllerType2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :VoltageCompensatorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :LoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None - :parameterNumber: Sequence number of the parameter among the set of parameters associated with the related proprietary user-defined model. Default: 0 - :booleanParameterValue: Used for boolean parameter value. If this attribute is populated, integerParameterValue and floatParameterValue will not be. Default: False - :integerParameterValue: Used for integer parameter value. If this attribute is populated, booleanParameterValue and floatParameterValue will not be. Default: 0 - :floatParameterValue: Used for floating point parameter value. If this attribute is populated, booleanParameterValue and integerParameterValue will not be. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindPlantUserDefined': [cgmesProfile.DY.value, ], - 'WindType1or2UserDefined': [cgmesProfile.DY.value, ], - 'WindType3or4UserDefined': [cgmesProfile.DY.value, ], - 'SynchronousMachineUserDefined': [cgmesProfile.DY.value, ], - 'AsynchronousMachineUserDefined': [cgmesProfile.DY.value, ], - 'TurbineGovernorUserDefined': [cgmesProfile.DY.value, ], - 'TurbineLoadControllerUserDefined': [cgmesProfile.DY.value, ], - 'MechanicalLoadUserDefined': [cgmesProfile.DY.value, ], - 'ExcitationSystemUserDefined': [cgmesProfile.DY.value, ], - 'OverexcitationLimiterUserDefined': [cgmesProfile.DY.value, ], - 'UnderexcitationLimiterUserDefined': [cgmesProfile.DY.value, ], - 'PowerSystemStabilizerUserDefined': [cgmesProfile.DY.value, ], - 'DiscontinuousExcitationControlUserDefined': [cgmesProfile.DY.value, ], - 'PFVArControllerType1UserDefined': [cgmesProfile.DY.value, ], - 'VoltageAdjusterUserDefined': [cgmesProfile.DY.value, ], - 'PFVArControllerType2UserDefined': [cgmesProfile.DY.value, ], - 'VoltageCompensatorUserDefined': [cgmesProfile.DY.value, ], - 'LoadUserDefined': [cgmesProfile.DY.value, ], - 'parameterNumber': [cgmesProfile.DY.value, ], - 'booleanParameterValue': [cgmesProfile.DY.value, ], - 'integerParameterValue': [cgmesProfile.DY.value, ], - 'floatParameterValue': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, WindPlantUserDefined = None, WindType1or2UserDefined = None, WindType3or4UserDefined = None, SynchronousMachineUserDefined = None, AsynchronousMachineUserDefined = None, TurbineGovernorUserDefined = None, TurbineLoadControllerUserDefined = None, MechanicalLoadUserDefined = None, ExcitationSystemUserDefined = None, OverexcitationLimiterUserDefined = None, UnderexcitationLimiterUserDefined = None, PowerSystemStabilizerUserDefined = None, DiscontinuousExcitationControlUserDefined = None, PFVArControllerType1UserDefined = None, VoltageAdjusterUserDefined = None, PFVArControllerType2UserDefined = None, VoltageCompensatorUserDefined = None, LoadUserDefined = None, parameterNumber = 0, booleanParameterValue = False, integerParameterValue = 0, floatParameterValue = 0.0, ): - - self.WindPlantUserDefined = WindPlantUserDefined - self.WindType1or2UserDefined = WindType1or2UserDefined - self.WindType3or4UserDefined = WindType3or4UserDefined - self.SynchronousMachineUserDefined = SynchronousMachineUserDefined - self.AsynchronousMachineUserDefined = AsynchronousMachineUserDefined - self.TurbineGovernorUserDefined = TurbineGovernorUserDefined - self.TurbineLoadControllerUserDefined = TurbineLoadControllerUserDefined - self.MechanicalLoadUserDefined = MechanicalLoadUserDefined - self.ExcitationSystemUserDefined = ExcitationSystemUserDefined - self.OverexcitationLimiterUserDefined = OverexcitationLimiterUserDefined - self.UnderexcitationLimiterUserDefined = UnderexcitationLimiterUserDefined - self.PowerSystemStabilizerUserDefined = PowerSystemStabilizerUserDefined - self.DiscontinuousExcitationControlUserDefined = DiscontinuousExcitationControlUserDefined - self.PFVArControllerType1UserDefined = PFVArControllerType1UserDefined - self.VoltageAdjusterUserDefined = VoltageAdjusterUserDefined - self.PFVArControllerType2UserDefined = PFVArControllerType2UserDefined - self.VoltageCompensatorUserDefined = VoltageCompensatorUserDefined - self.LoadUserDefined = LoadUserDefined - self.parameterNumber = parameterNumber - self.booleanParameterValue = booleanParameterValue - self.integerParameterValue = integerParameterValue - self.floatParameterValue = floatParameterValue - - def __str__(self): - str = 'class=ProprietaryParameterDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ProtectedSwitch.py b/cimpy/cgmes_v2_4_15/ProtectedSwitch.py deleted file mode 100644 index dcf4373d..00000000 --- a/cimpy/cgmes_v2_4_15/ProtectedSwitch.py +++ /dev/null @@ -1,29 +0,0 @@ -from .Switch import Switch - - -class ProtectedSwitch(Switch): - ''' - A ProtectedSwitch is a switching device that can be operated by ProtectionEquipment. - - ''' - - cgmesProfile = Switch.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Switch: \n' + Switch.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=ProtectedSwitch\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Pss1.py b/cimpy/cgmes_v2_4_15/Pss1.py deleted file mode 100644 index b28e5eac..00000000 --- a/cimpy/cgmes_v2_4_15/Pss1.py +++ /dev/null @@ -1,73 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class Pss1(PowerSystemStabilizerDynamics): - ''' - Italian PSS - three input PSS (speed, frequency, power). - - :kw: Shaft speed power input gain (K). Typical Value = 0. Default: 0.0 - :kf: Frequency power input gain (K). Typical Value = 5. Default: 0.0 - :kpe: Electric power input gain (K). Typical Value = 0.3. Default: 0.0 - :pmin: Minimum power PSS enabling (P). Typical Value = 0.25. Default: 0.0 - :ks: PSS gain (K). Typical Value = 1. Default: 0.0 - :vsmn: Stabilizer output max limit (V). Typical Value = -0.06. Default: 0.0 - :vsmx: Stabilizer output min limit (V). Typical Value = 0.06. Default: 0.0 - :tpe: Electric power filter time constant (T). Typical Value = 0.05. Default: 0 - :t5: Washout (T). Typical Value = 3.5. Default: 0 - :t6: Filter time constant (T). Typical Value = 0. Default: 0 - :t7: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :t8: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :t9: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :t10: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :vadat: Default: False - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kw': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'kpe': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'vsmn': [cgmesProfile.DY.value, ], - 'vsmx': [cgmesProfile.DY.value, ], - 'tpe': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 't9': [cgmesProfile.DY.value, ], - 't10': [cgmesProfile.DY.value, ], - 'vadat': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, kw = 0.0, kf = 0.0, kpe = 0.0, pmin = 0.0, ks = 0.0, vsmn = 0.0, vsmx = 0.0, tpe = 0, t5 = 0, t6 = 0, t7 = 0, t8 = 0, t9 = 0, t10 = 0, vadat = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kw = kw - self.kf = kf - self.kpe = kpe - self.pmin = pmin - self.ks = ks - self.vsmn = vsmn - self.vsmx = vsmx - self.tpe = tpe - self.t5 = t5 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.t9 = t9 - self.t10 = t10 - self.vadat = vadat - - def __str__(self): - str = 'class=Pss1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Pss1A.py b/cimpy/cgmes_v2_4_15/Pss1A.py deleted file mode 100644 index bbe6a878..00000000 --- a/cimpy/cgmes_v2_4_15/Pss1A.py +++ /dev/null @@ -1,94 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class Pss1A(PowerSystemStabilizerDynamics): - ''' - Single input power system stabilizer. It is a modified version in order to allow representation of various vendors' implementations on PSS type 1A. - - :inputSignalType: Type of input signal. Default: None - :a1: Notch filter parameter (A1). Default: 0.0 - :a2: Notch filter parameter (A2). Default: 0.0 - :t1: Lead/lag time constant (T1). Default: 0 - :t2: Lead/lag time constant (T2). Default: 0 - :t3: Lead/lag time constant (T3). Default: 0 - :t4: Lead/lag time constant (T4). Default: 0 - :t5: Washout time constant (T5). Default: 0 - :t6: Transducer time constant (T6). Default: 0 - :ks: Stabilizer gain (Ks). Default: 0.0 - :vrmax: Maximum stabilizer output (Vrmax). Default: 0.0 - :vrmin: Minimum stabilizer output (Vrmin). Default: 0.0 - :vcu: Stabilizer input cutoff threshold (Vcu). Default: 0.0 - :vcl: Stabilizer input cutoff threshold (Vcl). Default: 0.0 - :a3: Notch filter parameter (A3). Default: 0.0 - :a4: Notch filter parameter (A4). Default: 0.0 - :a5: Notch filter parameter (A5). Default: 0.0 - :a6: Notch filter parameter (A6). Default: 0.0 - :a7: Notch filter parameter (A7). Default: 0.0 - :a8: Notch filter parameter (A8). Default: 0.0 - :kd: Selector (Kd). true = e used false = e not used. Default: False - :tdelay: Time constant (Tdelay). Default: 0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignalType': [cgmesProfile.DY.value, ], - 'a1': [cgmesProfile.DY.value, ], - 'a2': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - 'vcu': [cgmesProfile.DY.value, ], - 'vcl': [cgmesProfile.DY.value, ], - 'a3': [cgmesProfile.DY.value, ], - 'a4': [cgmesProfile.DY.value, ], - 'a5': [cgmesProfile.DY.value, ], - 'a6': [cgmesProfile.DY.value, ], - 'a7': [cgmesProfile.DY.value, ], - 'a8': [cgmesProfile.DY.value, ], - 'kd': [cgmesProfile.DY.value, ], - 'tdelay': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignalType = None, a1 = 0.0, a2 = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, ks = 0.0, vrmax = 0.0, vrmin = 0.0, vcu = 0.0, vcl = 0.0, a3 = 0.0, a4 = 0.0, a5 = 0.0, a6 = 0.0, a7 = 0.0, a8 = 0.0, kd = False, tdelay = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignalType = inputSignalType - self.a1 = a1 - self.a2 = a2 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.ks = ks - self.vrmax = vrmax - self.vrmin = vrmin - self.vcu = vcu - self.vcl = vcl - self.a3 = a3 - self.a4 = a4 - self.a5 = a5 - self.a6 = a6 - self.a7 = a7 - self.a8 = a8 - self.kd = kd - self.tdelay = tdelay - - def __str__(self): - str = 'class=Pss1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Pss2B.py b/cimpy/cgmes_v2_4_15/Pss2B.py deleted file mode 100644 index 8930959d..00000000 --- a/cimpy/cgmes_v2_4_15/Pss2B.py +++ /dev/null @@ -1,121 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class Pss2B(PowerSystemStabilizerDynamics): - ''' - Modified IEEE PSS2B Model. Extra lead/lag (or rate) block added at end (up to 4 lead/lags total). - - :inputSignal1Type: Type of input signal #1. Typical Value = rotorSpeed. Default: None - :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None - :vsi1max: Input signal #1 max limit (Vsi1max). Typical Value = 2. Default: 0.0 - :vsi1min: Input signal #1 min limit (Vsi1min). Typical Value = -2. Default: 0.0 - :tw1: First washout on signal #1 (Tw1). Typical Value = 2. Default: 0 - :tw2: Second washout on signal #1 (Tw2). Typical Value = 2. Default: 0 - :vsi2max: Input signal #2 max limit (Vsi2max). Typical Value = 2. Default: 0.0 - :vsi2min: Input signal #2 min limit (Vsi2min). Typical Value = -2. Default: 0.0 - :tw3: First washout on signal #2 (Tw3). Typical Value = 2. Default: 0 - :tw4: Second washout on signal #2 (Tw4). Typical Value = 0. Default: 0 - :t1: Lead/lag time constant (T1). Typical Value = 0.12. Default: 0 - :t2: Lead/lag time constant (T2). Typical Value = 0.02. Default: 0 - :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 - :t4: Lead/lag time constant (T4). Typical Value = 0.02. Default: 0 - :t6: Time constant on signal #1 (T6). Typical Value = 0. Default: 0 - :t7: Time constant on signal #2 (T7). Typical Value = 2. Default: 0 - :t8: Lead of ramp tracking filter (T8). Typical Value = 0.2. Default: 0 - :t9: Lag of ramp tracking filter (T9). Typical Value = 0.1. Default: 0 - :t10: Lead/lag time constant (T10). Typical Value = 0. Default: 0 - :t11: Lead/lag time constant (T11). Typical Value = 0. Default: 0 - :ks1: Stabilizer gain (Ks1). Typical Value = 12. Default: 0.0 - :ks2: Gain on signal #2 (Ks2). Typical Value = 0.2. Default: 0.0 - :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical Value = 1. Default: 0.0 - :ks4: Gain on signal #2 input after ramp-tracking filter (Ks4). Typical Value = 1. Default: 0.0 - :n: Order of ramp tracking filter (N). Typical Value = 1. Default: 0 - :m: Denominator order of ramp tracking filter (M). Typical Value = 5. Default: 0 - :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 - :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 - :a: Numerator constant (a). Typical Value = 1. Default: 0.0 - :ta: Lead constant (Ta). Typical Value = 0. Default: 0 - :tb: Lag time constant (Tb). Typical Value = 0. Default: 0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignal1Type': [cgmesProfile.DY.value, ], - 'inputSignal2Type': [cgmesProfile.DY.value, ], - 'vsi1max': [cgmesProfile.DY.value, ], - 'vsi1min': [cgmesProfile.DY.value, ], - 'tw1': [cgmesProfile.DY.value, ], - 'tw2': [cgmesProfile.DY.value, ], - 'vsi2max': [cgmesProfile.DY.value, ], - 'vsi2min': [cgmesProfile.DY.value, ], - 'tw3': [cgmesProfile.DY.value, ], - 'tw4': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 't9': [cgmesProfile.DY.value, ], - 't10': [cgmesProfile.DY.value, ], - 't11': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - 'ks2': [cgmesProfile.DY.value, ], - 'ks3': [cgmesProfile.DY.value, ], - 'ks4': [cgmesProfile.DY.value, ], - 'n': [cgmesProfile.DY.value, ], - 'm': [cgmesProfile.DY.value, ], - 'vstmax': [cgmesProfile.DY.value, ], - 'vstmin': [cgmesProfile.DY.value, ], - 'a': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignal1Type = None, inputSignal2Type = None, vsi1max = 0.0, vsi1min = 0.0, tw1 = 0, tw2 = 0, vsi2max = 0.0, vsi2min = 0.0, tw3 = 0, tw4 = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t6 = 0, t7 = 0, t8 = 0, t9 = 0, t10 = 0, t11 = 0, ks1 = 0.0, ks2 = 0.0, ks3 = 0.0, ks4 = 0.0, n = 0, m = 0, vstmax = 0.0, vstmin = 0.0, a = 0.0, ta = 0, tb = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignal1Type = inputSignal1Type - self.inputSignal2Type = inputSignal2Type - self.vsi1max = vsi1max - self.vsi1min = vsi1min - self.tw1 = tw1 - self.tw2 = tw2 - self.vsi2max = vsi2max - self.vsi2min = vsi2min - self.tw3 = tw3 - self.tw4 = tw4 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.t9 = t9 - self.t10 = t10 - self.t11 = t11 - self.ks1 = ks1 - self.ks2 = ks2 - self.ks3 = ks3 - self.ks4 = ks4 - self.n = n - self.m = m - self.vstmax = vstmax - self.vstmin = vstmin - self.a = a - self.ta = ta - self.tb = tb - - def __str__(self): - str = 'class=Pss2B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Pss2ST.py b/cimpy/cgmes_v2_4_15/Pss2ST.py deleted file mode 100644 index 7f70da5c..00000000 --- a/cimpy/cgmes_v2_4_15/Pss2ST.py +++ /dev/null @@ -1,82 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class Pss2ST(PowerSystemStabilizerDynamics): - ''' - PTI Microprocessor-Based Stabilizer type 1. - - :inputSignal1Type: Type of input signal #1. Typical Value = rotorAngularFrequencyDeviation. Default: None - :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None - :k1: Gain (K1). Default: 0.0 - :k2: Gain (K2). Default: 0.0 - :t1: Time constant (T1). Default: 0 - :t2: Time constant (T2). Default: 0 - :t3: Time constant (T3). Default: 0 - :t4: Time constant (T4). Default: 0 - :t5: Time constant (T5). Default: 0 - :t6: Time constant (T6). Default: 0 - :t7: Time constant (T7). Default: 0 - :t8: Time constant (T8). Default: 0 - :t9: Time constant (T9). Default: 0 - :t10: Time constant (T10). Default: 0 - :lsmax: Limiter (Lsmax). Default: 0.0 - :lsmin: Limiter (Lsmin). Default: 0.0 - :vcu: Cutoff limiter (Vcu). Default: 0.0 - :vcl: Cutoff limiter (Vcl). Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignal1Type': [cgmesProfile.DY.value, ], - 'inputSignal2Type': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 't9': [cgmesProfile.DY.value, ], - 't10': [cgmesProfile.DY.value, ], - 'lsmax': [cgmesProfile.DY.value, ], - 'lsmin': [cgmesProfile.DY.value, ], - 'vcu': [cgmesProfile.DY.value, ], - 'vcl': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignal1Type = None, inputSignal2Type = None, k1 = 0.0, k2 = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, t7 = 0, t8 = 0, t9 = 0, t10 = 0, lsmax = 0.0, lsmin = 0.0, vcu = 0.0, vcl = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignal1Type = inputSignal1Type - self.inputSignal2Type = inputSignal2Type - self.k1 = k1 - self.k2 = k2 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.t9 = t9 - self.t10 = t10 - self.lsmax = lsmax - self.lsmin = lsmin - self.vcu = vcu - self.vcl = vcl - - def __str__(self): - str = 'class=Pss2ST\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Pss5.py b/cimpy/cgmes_v2_4_15/Pss5.py deleted file mode 100644 index a73c6939..00000000 --- a/cimpy/cgmes_v2_4_15/Pss5.py +++ /dev/null @@ -1,79 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class Pss5(PowerSystemStabilizerDynamics): - ''' - Italian PSS - Detailed PSS. - - :kpe: Electric power input gain (K). Typical Value = 0.3. Default: 0.0 - :kf: Frequency/shaft speed input gain (K). Typical Value = 5. Default: 0.0 - :isfreq: Selector for Frequency/shaft speed input (IsFreq). true = speed false = frequency. Typical Value = true. Default: False - :kpss: PSS gain (K). Typical Value = 1. Default: 0.0 - :ctw2: Selector for Second washout enabling (C). true = second washout filter is bypassed false = second washout filter in use. Typical Value = true. Default: False - :tw1: First WashOut (T). Typical Value = 3.5. Default: 0 - :tw2: Second WashOut (T). Typical Value = 0. Default: 0 - :tl1: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :tl2: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :tl3: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :tl4: Lead/lag time constant (T). Typical Value = 0. Default: 0 - :vsmn: Stabilizer output max limit (V). Typical Value = -0.1. Default: 0.0 - :vsmx: Stabilizer output min limit (V). Typical Value = 0.1. Default: 0.0 - :tpe: Electric power filter time constant (T). Typical Value = 0.05. Default: 0 - :pmm: Minimum power PSS enabling (P). Typical Value = 0.25. Default: 0.0 - :deadband: Stabilizer output dead band (DeadBand). Typical Value = 0. Default: 0.0 - :vadat: Default: False - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpe': [cgmesProfile.DY.value, ], - 'kf': [cgmesProfile.DY.value, ], - 'isfreq': [cgmesProfile.DY.value, ], - 'kpss': [cgmesProfile.DY.value, ], - 'ctw2': [cgmesProfile.DY.value, ], - 'tw1': [cgmesProfile.DY.value, ], - 'tw2': [cgmesProfile.DY.value, ], - 'tl1': [cgmesProfile.DY.value, ], - 'tl2': [cgmesProfile.DY.value, ], - 'tl3': [cgmesProfile.DY.value, ], - 'tl4': [cgmesProfile.DY.value, ], - 'vsmn': [cgmesProfile.DY.value, ], - 'vsmx': [cgmesProfile.DY.value, ], - 'tpe': [cgmesProfile.DY.value, ], - 'pmm': [cgmesProfile.DY.value, ], - 'deadband': [cgmesProfile.DY.value, ], - 'vadat': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, kpe = 0.0, kf = 0.0, isfreq = False, kpss = 0.0, ctw2 = False, tw1 = 0, tw2 = 0, tl1 = 0, tl2 = 0, tl3 = 0, tl4 = 0, vsmn = 0.0, vsmx = 0.0, tpe = 0, pmm = 0.0, deadband = 0.0, vadat = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpe = kpe - self.kf = kf - self.isfreq = isfreq - self.kpss = kpss - self.ctw2 = ctw2 - self.tw1 = tw1 - self.tw2 = tw2 - self.tl1 = tl1 - self.tl2 = tl2 - self.tl3 = tl3 - self.tl4 = tl4 - self.vsmn = vsmn - self.vsmx = vsmx - self.tpe = tpe - self.pmm = pmm - self.deadband = deadband - self.vadat = vadat - - def __str__(self): - str = 'class=Pss5\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssELIN2.py b/cimpy/cgmes_v2_4_15/PssELIN2.py deleted file mode 100644 index 09ccb184..00000000 --- a/cimpy/cgmes_v2_4_15/PssELIN2.py +++ /dev/null @@ -1,61 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssELIN2(PowerSystemStabilizerDynamics): - ''' - Power system stabilizer typically associated with ExcELIN2 (though PssIEEE2B or Pss2B can also be used). - - :ts1: Time constant (Ts1). Typical Value = 0. Default: 0 - :ts2: Time constant (Ts2). Typical Value = 1. Default: 0 - :ts3: Time constant (Ts3). Typical Value = 1. Default: 0 - :ts4: Time constant (Ts4). Typical Value = 0.1. Default: 0 - :ts5: Time constant (Ts5). Typical Value = 0. Default: 0 - :ts6: Time constant (Ts6). Typical Value = 1. Default: 0 - :ks1: Gain (Ks1). Typical Value = 1. Default: 0.0 - :ks2: Gain (Ks2). Typical Value = 0.1. Default: 0.0 - :ppss: Coefficient (p_PSS) (>=0 and <=4). Typical Value = 0.1. Default: 0.0 - :apss: Coefficient (a_PSS). Typical Value = 0.1. Default: 0.0 - :psslim: PSS limiter (psslim). Typical Value = 0.1. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'ts1': [cgmesProfile.DY.value, ], - 'ts2': [cgmesProfile.DY.value, ], - 'ts3': [cgmesProfile.DY.value, ], - 'ts4': [cgmesProfile.DY.value, ], - 'ts5': [cgmesProfile.DY.value, ], - 'ts6': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - 'ks2': [cgmesProfile.DY.value, ], - 'ppss': [cgmesProfile.DY.value, ], - 'apss': [cgmesProfile.DY.value, ], - 'psslim': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, ts1 = 0, ts2 = 0, ts3 = 0, ts4 = 0, ts5 = 0, ts6 = 0, ks1 = 0.0, ks2 = 0.0, ppss = 0.0, apss = 0.0, psslim = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ts1 = ts1 - self.ts2 = ts2 - self.ts3 = ts3 - self.ts4 = ts4 - self.ts5 = ts5 - self.ts6 = ts6 - self.ks1 = ks1 - self.ks2 = ks2 - self.ppss = ppss - self.apss = apss - self.psslim = psslim - - def __str__(self): - str = 'class=PssELIN2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssIEEE1A.py b/cimpy/cgmes_v2_4_15/PssIEEE1A.py deleted file mode 100644 index d33bc8de..00000000 --- a/cimpy/cgmes_v2_4_15/PssIEEE1A.py +++ /dev/null @@ -1,64 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssIEEE1A(PowerSystemStabilizerDynamics): - ''' - The class represents IEEE Std 421.5-2005 type PSS1A power system stabilizer model. PSS1A is the generalized form of a PSS with a single input. Some common stabilizer input signals are speed, frequency, and power. Reference: IEEE 1A 421.5-2005 Section 8.1. - - :inputSignalType: Type of input signal. Typical Value = rotorAngularFrequencyDeviation. Default: None - :a1: PSS signal conditioning frequency filter constant (A1). Typical Value = 0.061. Default: 0.0 - :a2: PSS signal conditioning frequency filter constant (A2). Typical Value = 0.0017. Default: 0.0 - :t1: Lead/lag time constant (T1). Typical Value = 0.3. Default: 0 - :t2: Lead/lag time constant (T2). Typical Value = 0.03. Default: 0 - :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 - :t4: Lead/lag time constant (T4). Typical Value = 0.03. Default: 0 - :t5: Washout time constant (T5). Typical Value = 10. Default: 0 - :t6: Transducer time constant (T6). Typical Value = 0.01. Default: 0 - :ks: Stabilizer gain (Ks). Typical Value = 5. Default: 0.0 - :vrmax: Maximum stabilizer output (Vrmax). Typical Value = 0.05. Default: 0.0 - :vrmin: Minimum stabilizer output (Vrmin). Typical Value = -0.05. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignalType': [cgmesProfile.DY.value, ], - 'a1': [cgmesProfile.DY.value, ], - 'a2': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'vrmax': [cgmesProfile.DY.value, ], - 'vrmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignalType = None, a1 = 0.0, a2 = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, ks = 0.0, vrmax = 0.0, vrmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignalType = inputSignalType - self.a1 = a1 - self.a2 = a2 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.ks = ks - self.vrmax = vrmax - self.vrmin = vrmin - - def __str__(self): - str = 'class=PssIEEE1A\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssIEEE2B.py b/cimpy/cgmes_v2_4_15/PssIEEE2B.py deleted file mode 100644 index ccf04e71..00000000 --- a/cimpy/cgmes_v2_4_15/PssIEEE2B.py +++ /dev/null @@ -1,109 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssIEEE2B(PowerSystemStabilizerDynamics): - ''' - The class represents IEEE Std 421.5-2005 type PSS2B power system stabilizer model. This stabilizer model is designed to represent a variety of dual-input stabilizers, which normally use combinations of power and speed or frequency to derive the stabilizing signal. Reference: IEEE 2B 421.5-2005 Section 8.2. - - :inputSignal1Type: Type of input signal #1. Typical Value = rotorSpeed. Default: None - :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None - :vsi1max: Input signal #1 max limit (Vsi1max). Typical Value = 2. Default: 0.0 - :vsi1min: Input signal #1 min limit (Vsi1min). Typical Value = -2. Default: 0.0 - :tw1: First washout on signal #1 (Tw1). Typical Value = 2. Default: 0 - :tw2: Second washout on signal #1 (Tw2). Typical Value = 2. Default: 0 - :vsi2max: Input signal #2 max limit (Vsi2max). Typical Value = 2. Default: 0.0 - :vsi2min: Input signal #2 min limit (Vsi2min). Typical Value = -2. Default: 0.0 - :tw3: First washout on signal #2 (Tw3). Typical Value = 2. Default: 0 - :tw4: Second washout on signal #2 (Tw4). Typical Value = 0. Default: 0 - :t1: Lead/lag time constant (T1). Typical Value = 0.12. Default: 0 - :t2: Lead/lag time constant (T2). Typical Value = 0.02. Default: 0 - :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 - :t4: Lead/lag time constant (T4). Typical Value = 0.02. Default: 0 - :t6: Time constant on signal #1 (T6). Typical Value = 0. Default: 0 - :t7: Time constant on signal #2 (T7). Typical Value = 2. Default: 0 - :t8: Lead of ramp tracking filter (T8). Typical Value = 0.2. Default: 0 - :t9: Lag of ramp tracking filter (T9). Typical Value = 0.1. Default: 0 - :t10: Lead/lag time constant (T10). Typical Value = 0. Default: 0 - :t11: Lead/lag time constant (T11). Typical Value = 0. Default: 0 - :ks1: Stabilizer gain (Ks1). Typical Value = 12. Default: 0.0 - :ks2: Gain on signal #2 (Ks2). Typical Value = 0.2. Default: 0.0 - :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical Value = 1. Default: 0.0 - :n: Order of ramp tracking filter (N). Typical Value = 1. Default: 0 - :m: Denominator order of ramp tracking filter (M). Typical Value = 5. Default: 0 - :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 - :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignal1Type': [cgmesProfile.DY.value, ], - 'inputSignal2Type': [cgmesProfile.DY.value, ], - 'vsi1max': [cgmesProfile.DY.value, ], - 'vsi1min': [cgmesProfile.DY.value, ], - 'tw1': [cgmesProfile.DY.value, ], - 'tw2': [cgmesProfile.DY.value, ], - 'vsi2max': [cgmesProfile.DY.value, ], - 'vsi2min': [cgmesProfile.DY.value, ], - 'tw3': [cgmesProfile.DY.value, ], - 'tw4': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 't9': [cgmesProfile.DY.value, ], - 't10': [cgmesProfile.DY.value, ], - 't11': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - 'ks2': [cgmesProfile.DY.value, ], - 'ks3': [cgmesProfile.DY.value, ], - 'n': [cgmesProfile.DY.value, ], - 'm': [cgmesProfile.DY.value, ], - 'vstmax': [cgmesProfile.DY.value, ], - 'vstmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignal1Type = None, inputSignal2Type = None, vsi1max = 0.0, vsi1min = 0.0, tw1 = 0, tw2 = 0, vsi2max = 0.0, vsi2min = 0.0, tw3 = 0, tw4 = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t6 = 0, t7 = 0, t8 = 0, t9 = 0, t10 = 0, t11 = 0, ks1 = 0.0, ks2 = 0.0, ks3 = 0.0, n = 0, m = 0, vstmax = 0.0, vstmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignal1Type = inputSignal1Type - self.inputSignal2Type = inputSignal2Type - self.vsi1max = vsi1max - self.vsi1min = vsi1min - self.tw1 = tw1 - self.tw2 = tw2 - self.vsi2max = vsi2max - self.vsi2min = vsi2min - self.tw3 = tw3 - self.tw4 = tw4 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.t9 = t9 - self.t10 = t10 - self.t11 = t11 - self.ks1 = ks1 - self.ks2 = ks2 - self.ks3 = ks3 - self.n = n - self.m = m - self.vstmax = vstmax - self.vstmin = vstmin - - def __str__(self): - str = 'class=PssIEEE2B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssIEEE3B.py b/cimpy/cgmes_v2_4_15/PssIEEE3B.py deleted file mode 100644 index ccb71dd2..00000000 --- a/cimpy/cgmes_v2_4_15/PssIEEE3B.py +++ /dev/null @@ -1,85 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssIEEE3B(PowerSystemStabilizerDynamics): - ''' - The class represents IEEE Std 421.5-2005 type PSS3B power system stabilizer model. The PSS model PSS3B has dual inputs of electrical power and rotor angular frequency deviation. The signals are used to derive an equivalent mechanical power signal. Reference: IEEE 3B 421.5-2005 Section 8.3. - - :inputSignal1Type: Type of input signal #1. Typical Value = generatorElectricalPower. Default: None - :inputSignal2Type: Type of input signal #2. Typical Value = rotorSpeed. Default: None - :t1: Transducer time constant (T1). Typical Value = 0.012. Default: 0 - :t2: Transducer time constant (T2). Typical Value = 0.012. Default: 0 - :tw1: Washout time constant (Tw1). Typical Value = 0.3. Default: 0 - :tw2: Washout time constant (Tw2). Typical Value = 0.3. Default: 0 - :tw3: Washout time constant (Tw3). Typical Value = 0.6. Default: 0 - :ks1: Gain on signal # 1 (Ks1). Typical Value = -0.602. Default: 0.0 - :ks2: Gain on signal # 2 (Ks2). Typical Value = 30.12. Default: 0.0 - :a1: Notch filter parameter (A1). Typical Value = 0.359. Default: 0.0 - :a2: Notch filter parameter (A2). Typical Value = 0.586. Default: 0.0 - :a3: Notch filter parameter (A3). Typical Value = 0.429. Default: 0.0 - :a4: Notch filter parameter (A4). Typical Value = 0.564. Default: 0.0 - :a5: Notch filter parameter (A5). Typical Value = 0.001. Default: 0.0 - :a6: Notch filter parameter (A6). Typical Value = 0. Default: 0.0 - :a7: Notch filter parameter (A7). Typical Value = 0.031. Default: 0.0 - :a8: Notch filter parameter (A8). Typical Value = 0. Default: 0.0 - :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 - :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignal1Type': [cgmesProfile.DY.value, ], - 'inputSignal2Type': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'tw1': [cgmesProfile.DY.value, ], - 'tw2': [cgmesProfile.DY.value, ], - 'tw3': [cgmesProfile.DY.value, ], - 'ks1': [cgmesProfile.DY.value, ], - 'ks2': [cgmesProfile.DY.value, ], - 'a1': [cgmesProfile.DY.value, ], - 'a2': [cgmesProfile.DY.value, ], - 'a3': [cgmesProfile.DY.value, ], - 'a4': [cgmesProfile.DY.value, ], - 'a5': [cgmesProfile.DY.value, ], - 'a6': [cgmesProfile.DY.value, ], - 'a7': [cgmesProfile.DY.value, ], - 'a8': [cgmesProfile.DY.value, ], - 'vstmax': [cgmesProfile.DY.value, ], - 'vstmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignal1Type = None, inputSignal2Type = None, t1 = 0, t2 = 0, tw1 = 0, tw2 = 0, tw3 = 0, ks1 = 0.0, ks2 = 0.0, a1 = 0.0, a2 = 0.0, a3 = 0.0, a4 = 0.0, a5 = 0.0, a6 = 0.0, a7 = 0.0, a8 = 0.0, vstmax = 0.0, vstmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignal1Type = inputSignal1Type - self.inputSignal2Type = inputSignal2Type - self.t1 = t1 - self.t2 = t2 - self.tw1 = tw1 - self.tw2 = tw2 - self.tw3 = tw3 - self.ks1 = ks1 - self.ks2 = ks2 - self.a1 = a1 - self.a2 = a2 - self.a3 = a3 - self.a4 = a4 - self.a5 = a5 - self.a6 = a6 - self.a7 = a7 - self.a8 = a8 - self.vstmax = vstmax - self.vstmin = vstmin - - def __str__(self): - str = 'class=PssIEEE3B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssIEEE4B.py b/cimpy/cgmes_v2_4_15/PssIEEE4B.py deleted file mode 100644 index b17fec99..00000000 --- a/cimpy/cgmes_v2_4_15/PssIEEE4B.py +++ /dev/null @@ -1,229 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssIEEE4B(PowerSystemStabilizerDynamics): - ''' - The class represents IEEE Std 421.5-2005 type PSS2B power system stabilizer model. The PSS4B model represents a structure based on multiple working frequency bands. Three separate bands, respectively dedicated to the low-, intermediate- and high-frequency modes of oscillations, are used in this delta-omega (speed input) PSS. Reference: IEEE 4B 421.5-2005 Section 8.4. - - :bwh1: Notch filter 1 (high-frequency band): Three dB bandwidth (B). Default: 0.0 - :bwh2: Notch filter 2 (high-frequency band): Three dB bandwidth (B). Default: 0.0 - :bwl1: Notch filter 1 (low-frequency band): Three dB bandwidth (B). Default: 0.0 - :bwl2: Notch filter 2 (low-frequency band): Three dB bandwidth (B). Default: 0.0 - :kh: High band gain (K). Typical Value = 120. Default: 0.0 - :kh1: High band differential filter gain (K). Typical Value = 66. Default: 0.0 - :kh11: High band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :kh17: High band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :kh2: High band differential filter gain (K). Typical Value = 66. Default: 0.0 - :ki: Intermediate band gain (K). Typical Value = 30. Default: 0.0 - :ki1: Intermediate band differential filter gain (K). Typical Value = 66. Default: 0.0 - :ki11: Intermediate band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :ki17: Intermediate band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :ki2: Intermediate band differential filter gain (K). Typical Value = 66. Default: 0.0 - :kl: Low band gain (K). Typical Value = 7.5. Default: 0.0 - :kl1: Low band differential filter gain (K). Typical Value = 66. Default: 0.0 - :kl11: Low band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :kl17: Low band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 - :kl2: Low band differential filter gain (K). Typical Value = 66. Default: 0.0 - :omeganh1: Notch filter 1 (high-frequency band): filter frequency (omega). Default: 0.0 - :omeganh2: Notch filter 2 (high-frequency band): filter frequency (omega). Default: 0.0 - :omeganl1: Notch filter 1 (low-frequency band): filter frequency (omega). Default: 0.0 - :omeganl2: Notch filter 2 (low-frequency band): filter frequency (omega). Default: 0.0 - :th1: High band time constant (T). Typical Value = 0.01513. Default: 0 - :th10: High band time constant (T). Typical Value = 0. Default: 0 - :th11: High band time constant (T). Typical Value = 0. Default: 0 - :th12: High band time constant (T). Typical Value = 0. Default: 0 - :th2: High band time constant (T). Typical Value = 0.01816. Default: 0 - :th3: High band time constant (T). Typical Value = 0. Default: 0 - :th4: High band time constant (T). Typical Value = 0. Default: 0 - :th5: High band time constant (T). Typical Value = 0. Default: 0 - :th6: High band time constant (T). Typical Value = 0. Default: 0 - :th7: High band time constant (T). Typical Value = 0.01816. Default: 0 - :th8: High band time constant (T). Typical Value = 0.02179. Default: 0 - :th9: High band time constant (T). Typical Value = 0. Default: 0 - :ti1: Intermediate band time constant (T). Typical Value = 0.173. Default: 0 - :ti10: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti11: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti12: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti2: Intermediate band time constant (T). Typical Value = 0.2075. Default: 0 - :ti3: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti4: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti5: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti6: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :ti7: Intermediate band time constant (T). Typical Value = 0.2075. Default: 0 - :ti8: Intermediate band time constant (T). Typical Value = 0.2491. Default: 0 - :ti9: Intermediate band time constant (T). Typical Value = 0. Default: 0 - :tl1: Low band time constant (T). Typical Value = 1.73. Default: 0 - :tl10: Low band time constant (T). Typical Value = 0. Default: 0 - :tl11: Low band time constant (T). Typical Value = 0. Default: 0 - :tl12: Low band time constant (T). Typical Value = 0. Default: 0 - :tl2: Low band time constant (T). Typical Value = 2.075. Default: 0 - :tl3: Low band time constant (T). Typical Value = 0. Default: 0 - :tl4: Low band time constant (T). Typical Value = 0. Default: 0 - :tl5: Low band time constant (T). Typical Value = 0. Default: 0 - :tl6: Low band time constant (T). Typical Value = 0. Default: 0 - :tl7: Low band time constant (T). Typical Value = 2.075. Default: 0 - :tl8: Low band time constant (T). Typical Value = 2.491. Default: 0 - :tl9: Low band time constant (T). Typical Value = 0. Default: 0 - :vhmax: High band output maximum limit (V). Typical Value = 0.6. Default: 0.0 - :vhmin: High band output minimum limit (V). Typical Value = -0.6. Default: 0.0 - :vimax: Intermediate band output maximum limit (V). Typical Value = 0.6. Default: 0.0 - :vimin: Intermediate band output minimum limit (V). Typical Value = -0.6. Default: 0.0 - :vlmax: Low band output maximum limit (V). Typical Value = 0.075. Default: 0.0 - :vlmin: Low band output minimum limit (V). Typical Value = -0.075. Default: 0.0 - :vstmax: PSS output maximum limit (V). Typical Value = 0.15. Default: 0.0 - :vstmin: PSS output minimum limit (V). Typical Value = -0.15. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'bwh1': [cgmesProfile.DY.value, ], - 'bwh2': [cgmesProfile.DY.value, ], - 'bwl1': [cgmesProfile.DY.value, ], - 'bwl2': [cgmesProfile.DY.value, ], - 'kh': [cgmesProfile.DY.value, ], - 'kh1': [cgmesProfile.DY.value, ], - 'kh11': [cgmesProfile.DY.value, ], - 'kh17': [cgmesProfile.DY.value, ], - 'kh2': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'ki1': [cgmesProfile.DY.value, ], - 'ki11': [cgmesProfile.DY.value, ], - 'ki17': [cgmesProfile.DY.value, ], - 'ki2': [cgmesProfile.DY.value, ], - 'kl': [cgmesProfile.DY.value, ], - 'kl1': [cgmesProfile.DY.value, ], - 'kl11': [cgmesProfile.DY.value, ], - 'kl17': [cgmesProfile.DY.value, ], - 'kl2': [cgmesProfile.DY.value, ], - 'omeganh1': [cgmesProfile.DY.value, ], - 'omeganh2': [cgmesProfile.DY.value, ], - 'omeganl1': [cgmesProfile.DY.value, ], - 'omeganl2': [cgmesProfile.DY.value, ], - 'th1': [cgmesProfile.DY.value, ], - 'th10': [cgmesProfile.DY.value, ], - 'th11': [cgmesProfile.DY.value, ], - 'th12': [cgmesProfile.DY.value, ], - 'th2': [cgmesProfile.DY.value, ], - 'th3': [cgmesProfile.DY.value, ], - 'th4': [cgmesProfile.DY.value, ], - 'th5': [cgmesProfile.DY.value, ], - 'th6': [cgmesProfile.DY.value, ], - 'th7': [cgmesProfile.DY.value, ], - 'th8': [cgmesProfile.DY.value, ], - 'th9': [cgmesProfile.DY.value, ], - 'ti1': [cgmesProfile.DY.value, ], - 'ti10': [cgmesProfile.DY.value, ], - 'ti11': [cgmesProfile.DY.value, ], - 'ti12': [cgmesProfile.DY.value, ], - 'ti2': [cgmesProfile.DY.value, ], - 'ti3': [cgmesProfile.DY.value, ], - 'ti4': [cgmesProfile.DY.value, ], - 'ti5': [cgmesProfile.DY.value, ], - 'ti6': [cgmesProfile.DY.value, ], - 'ti7': [cgmesProfile.DY.value, ], - 'ti8': [cgmesProfile.DY.value, ], - 'ti9': [cgmesProfile.DY.value, ], - 'tl1': [cgmesProfile.DY.value, ], - 'tl10': [cgmesProfile.DY.value, ], - 'tl11': [cgmesProfile.DY.value, ], - 'tl12': [cgmesProfile.DY.value, ], - 'tl2': [cgmesProfile.DY.value, ], - 'tl3': [cgmesProfile.DY.value, ], - 'tl4': [cgmesProfile.DY.value, ], - 'tl5': [cgmesProfile.DY.value, ], - 'tl6': [cgmesProfile.DY.value, ], - 'tl7': [cgmesProfile.DY.value, ], - 'tl8': [cgmesProfile.DY.value, ], - 'tl9': [cgmesProfile.DY.value, ], - 'vhmax': [cgmesProfile.DY.value, ], - 'vhmin': [cgmesProfile.DY.value, ], - 'vimax': [cgmesProfile.DY.value, ], - 'vimin': [cgmesProfile.DY.value, ], - 'vlmax': [cgmesProfile.DY.value, ], - 'vlmin': [cgmesProfile.DY.value, ], - 'vstmax': [cgmesProfile.DY.value, ], - 'vstmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, bwh1 = 0.0, bwh2 = 0.0, bwl1 = 0.0, bwl2 = 0.0, kh = 0.0, kh1 = 0.0, kh11 = 0.0, kh17 = 0.0, kh2 = 0.0, ki = 0.0, ki1 = 0.0, ki11 = 0.0, ki17 = 0.0, ki2 = 0.0, kl = 0.0, kl1 = 0.0, kl11 = 0.0, kl17 = 0.0, kl2 = 0.0, omeganh1 = 0.0, omeganh2 = 0.0, omeganl1 = 0.0, omeganl2 = 0.0, th1 = 0, th10 = 0, th11 = 0, th12 = 0, th2 = 0, th3 = 0, th4 = 0, th5 = 0, th6 = 0, th7 = 0, th8 = 0, th9 = 0, ti1 = 0, ti10 = 0, ti11 = 0, ti12 = 0, ti2 = 0, ti3 = 0, ti4 = 0, ti5 = 0, ti6 = 0, ti7 = 0, ti8 = 0, ti9 = 0, tl1 = 0, tl10 = 0, tl11 = 0, tl12 = 0, tl2 = 0, tl3 = 0, tl4 = 0, tl5 = 0, tl6 = 0, tl7 = 0, tl8 = 0, tl9 = 0, vhmax = 0.0, vhmin = 0.0, vimax = 0.0, vimin = 0.0, vlmax = 0.0, vlmin = 0.0, vstmax = 0.0, vstmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.bwh1 = bwh1 - self.bwh2 = bwh2 - self.bwl1 = bwl1 - self.bwl2 = bwl2 - self.kh = kh - self.kh1 = kh1 - self.kh11 = kh11 - self.kh17 = kh17 - self.kh2 = kh2 - self.ki = ki - self.ki1 = ki1 - self.ki11 = ki11 - self.ki17 = ki17 - self.ki2 = ki2 - self.kl = kl - self.kl1 = kl1 - self.kl11 = kl11 - self.kl17 = kl17 - self.kl2 = kl2 - self.omeganh1 = omeganh1 - self.omeganh2 = omeganh2 - self.omeganl1 = omeganl1 - self.omeganl2 = omeganl2 - self.th1 = th1 - self.th10 = th10 - self.th11 = th11 - self.th12 = th12 - self.th2 = th2 - self.th3 = th3 - self.th4 = th4 - self.th5 = th5 - self.th6 = th6 - self.th7 = th7 - self.th8 = th8 - self.th9 = th9 - self.ti1 = ti1 - self.ti10 = ti10 - self.ti11 = ti11 - self.ti12 = ti12 - self.ti2 = ti2 - self.ti3 = ti3 - self.ti4 = ti4 - self.ti5 = ti5 - self.ti6 = ti6 - self.ti7 = ti7 - self.ti8 = ti8 - self.ti9 = ti9 - self.tl1 = tl1 - self.tl10 = tl10 - self.tl11 = tl11 - self.tl12 = tl12 - self.tl2 = tl2 - self.tl3 = tl3 - self.tl4 = tl4 - self.tl5 = tl5 - self.tl6 = tl6 - self.tl7 = tl7 - self.tl8 = tl8 - self.tl9 = tl9 - self.vhmax = vhmax - self.vhmin = vhmin - self.vimax = vimax - self.vimin = vimin - self.vlmax = vlmax - self.vlmin = vlmin - self.vstmax = vstmax - self.vstmin = vstmin - - def __str__(self): - str = 'class=PssIEEE4B\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssPTIST1.py b/cimpy/cgmes_v2_4_15/PssPTIST1.py deleted file mode 100644 index 2335ce3f..00000000 --- a/cimpy/cgmes_v2_4_15/PssPTIST1.py +++ /dev/null @@ -1,61 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssPTIST1(PowerSystemStabilizerDynamics): - ''' - PTI Microprocessor-Based Stabilizer type 1. - - :m: (M). M=2*H. Typical Value = 5. Default: 0.0 - :tf: Time constant (Tf). Typical Value = 0.2. Default: 0 - :tp: Time constant (Tp). Typical Value = 0.2. Default: 0 - :t1: Time constant (T1). Typical Value = 0.3. Default: 0 - :t2: Time constant (T2). Typical Value = 1. Default: 0 - :t3: Time constant (T3). Typical Value = 0.2. Default: 0 - :t4: Time constant (T4). Typical Value = 0.05. Default: 0 - :k: Gain (K). Typical Value = 9. Default: 0.0 - :dtf: Time step frequency calculation (Dtf). Typical Value = 0.025. Default: 0 - :dtc: Time step related to activation of controls (Dtc). Typical Value = 0.025. Default: 0 - :dtp: Time step active power calculation (Dtp). Typical Value = 0.0125. Default: 0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'm': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'dtf': [cgmesProfile.DY.value, ], - 'dtc': [cgmesProfile.DY.value, ], - 'dtp': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, m = 0.0, tf = 0, tp = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, k = 0.0, dtf = 0, dtc = 0, dtp = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.m = m - self.tf = tf - self.tp = tp - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.k = k - self.dtf = dtf - self.dtc = dtc - self.dtp = dtp - - def __str__(self): - str = 'class=PssPTIST1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssPTIST3.py b/cimpy/cgmes_v2_4_15/PssPTIST3.py deleted file mode 100644 index 5526bea0..00000000 --- a/cimpy/cgmes_v2_4_15/PssPTIST3.py +++ /dev/null @@ -1,130 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssPTIST3(PowerSystemStabilizerDynamics): - ''' - PTI Microprocessor-Based Stabilizer type 3. - - :m: (M). M=2*H. Typical Value = 5. Default: 0.0 - :tf: Time constant (Tf). Typical Value = 0.2. Default: 0 - :tp: Time constant (Tp). Typical Value = 0.2. Default: 0 - :t1: Time constant (T1). Typical Value = 0.3. Default: 0 - :t2: Time constant (T2). Typical Value = 1. Default: 0 - :t3: Time constant (T3). Typical Value = 0.2. Default: 0 - :t4: Time constant (T4). Typical Value = 0.05. Default: 0 - :k: Gain (K). Typical Value = 9. Default: 0.0 - :dtf: Time step frequency calculation (0.03 for 50 Hz) (Dtf). Typical Value = 0.025. Default: 0 - :dtc: Time step related to activation of controls (0.03 for 50 Hz) (Dtc). Typical Value = 0.025. Default: 0 - :dtp: Time step active power calculation (0.015 for 50 Hz) (Dtp). Typical Value = 0.0125. Default: 0 - :t5: Time constant (T5). Default: 0 - :t6: Time constant (T6). Default: 0 - :a0: Filter coefficient (A0). Default: 0.0 - :a1: Limiter (Al). Default: 0.0 - :a2: Filter coefficient (A2). Default: 0.0 - :b0: Filter coefficient (B0). Default: 0.0 - :b1: Filter coefficient (B1). Default: 0.0 - :b2: Filter coefficient (B2). Default: 0.0 - :a3: Filter coefficient (A3). Default: 0.0 - :a4: Filter coefficient (A4). Default: 0.0 - :a5: Filter coefficient (A5). Default: 0.0 - :b3: Filter coefficient (B3). Default: 0.0 - :b4: Filter coefficient (B4). Default: 0.0 - :b5: Filter coefficient (B5). Default: 0.0 - :athres: Threshold value above which output averaging will be bypassed (Athres). Typical Value = 0.005. Default: 0.0 - :dl: Limiter (Dl). Default: 0.0 - :al: Limiter (Al). Default: 0.0 - :lthres: Threshold value (Lthres). Default: 0.0 - :pmin: (Pmin). Default: 0.0 - :isw: Digital/analog output switch (Isw). true = produce analog output false = convert to digital output, using tap selection table. Default: False - :nav: Number of control outputs to average (Nav) (1 <= Nav <= 16). Typical Value = 4. Default: 0.0 - :ncl: Number of counts at limit to active limit function (Ncl) (>0). Default: 0.0 - :ncr: Number of counts until reset after limit function is triggered (Ncr). Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'm': [cgmesProfile.DY.value, ], - 'tf': [cgmesProfile.DY.value, ], - 'tp': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'dtf': [cgmesProfile.DY.value, ], - 'dtc': [cgmesProfile.DY.value, ], - 'dtp': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'a0': [cgmesProfile.DY.value, ], - 'a1': [cgmesProfile.DY.value, ], - 'a2': [cgmesProfile.DY.value, ], - 'b0': [cgmesProfile.DY.value, ], - 'b1': [cgmesProfile.DY.value, ], - 'b2': [cgmesProfile.DY.value, ], - 'a3': [cgmesProfile.DY.value, ], - 'a4': [cgmesProfile.DY.value, ], - 'a5': [cgmesProfile.DY.value, ], - 'b3': [cgmesProfile.DY.value, ], - 'b4': [cgmesProfile.DY.value, ], - 'b5': [cgmesProfile.DY.value, ], - 'athres': [cgmesProfile.DY.value, ], - 'dl': [cgmesProfile.DY.value, ], - 'al': [cgmesProfile.DY.value, ], - 'lthres': [cgmesProfile.DY.value, ], - 'pmin': [cgmesProfile.DY.value, ], - 'isw': [cgmesProfile.DY.value, ], - 'nav': [cgmesProfile.DY.value, ], - 'ncl': [cgmesProfile.DY.value, ], - 'ncr': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, m = 0.0, tf = 0, tp = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, k = 0.0, dtf = 0, dtc = 0, dtp = 0, t5 = 0, t6 = 0, a0 = 0.0, a1 = 0.0, a2 = 0.0, b0 = 0.0, b1 = 0.0, b2 = 0.0, a3 = 0.0, a4 = 0.0, a5 = 0.0, b3 = 0.0, b4 = 0.0, b5 = 0.0, athres = 0.0, dl = 0.0, al = 0.0, lthres = 0.0, pmin = 0.0, isw = False, nav = 0.0, ncl = 0.0, ncr = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.m = m - self.tf = tf - self.tp = tp - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.k = k - self.dtf = dtf - self.dtc = dtc - self.dtp = dtp - self.t5 = t5 - self.t6 = t6 - self.a0 = a0 - self.a1 = a1 - self.a2 = a2 - self.b0 = b0 - self.b1 = b1 - self.b2 = b2 - self.a3 = a3 - self.a4 = a4 - self.a5 = a5 - self.b3 = b3 - self.b4 = b4 - self.b5 = b5 - self.athres = athres - self.dl = dl - self.al = al - self.lthres = lthres - self.pmin = pmin - self.isw = isw - self.nav = nav - self.ncl = ncl - self.ncr = ncr - - def __str__(self): - str = 'class=PssPTIST3\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssSB4.py b/cimpy/cgmes_v2_4_15/PssSB4.py deleted file mode 100644 index 50bbc9d7..00000000 --- a/cimpy/cgmes_v2_4_15/PssSB4.py +++ /dev/null @@ -1,61 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssSB4(PowerSystemStabilizerDynamics): - ''' - Power sensitive stabilizer model. - - :tt: Time constant (Tt). Default: 0 - :kx: Gain (Kx). Default: 0.0 - :tx2: Time constant (Tx2). Default: 0 - :ta: Time constant (Ta). Default: 0 - :tx1: Reset time constant (Tx1). Default: 0 - :tb: Time constant (Tb). Default: 0 - :tc: Time constant (Tc). Default: 0 - :td: Time constant (Td). Default: 0 - :te: Time constant (Te). Default: 0 - :vsmax: Limiter (Vsmax). Default: 0.0 - :vsmin: Limiter (Vsmin). Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tt': [cgmesProfile.DY.value, ], - 'kx': [cgmesProfile.DY.value, ], - 'tx2': [cgmesProfile.DY.value, ], - 'ta': [cgmesProfile.DY.value, ], - 'tx1': [cgmesProfile.DY.value, ], - 'tb': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 'te': [cgmesProfile.DY.value, ], - 'vsmax': [cgmesProfile.DY.value, ], - 'vsmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, tt = 0, kx = 0.0, tx2 = 0, ta = 0, tx1 = 0, tb = 0, tc = 0, td = 0, te = 0, vsmax = 0.0, vsmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tt = tt - self.kx = kx - self.tx2 = tx2 - self.ta = ta - self.tx1 = tx1 - self.tb = tb - self.tc = tc - self.td = td - self.te = te - self.vsmax = vsmax - self.vsmin = vsmin - - def __str__(self): - str = 'class=PssSB4\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssSH.py b/cimpy/cgmes_v2_4_15/PssSH.py deleted file mode 100644 index 948dff6c..00000000 --- a/cimpy/cgmes_v2_4_15/PssSH.py +++ /dev/null @@ -1,67 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssSH(PowerSystemStabilizerDynamics): - ''' - Model for Siemens "H infinity" power system stabilizer with generator electrical power input. - - :k: Main gain (K). Typical Value = 1. Default: 0.0 - :k0: Gain 0 (K0). Typical Value = 0.012. Default: 0.0 - :k1: Gain 1 (K1). Typical Value = 0.488. Default: 0.0 - :k2: Gain 2 (K2). Typical Value = 0.064. Default: 0.0 - :k3: Gain 3 (K3). Typical Value = 0.224. Default: 0.0 - :k4: Gain 4 (K4). Typical Value = 0.1. Default: 0.0 - :td: Input time constant (Td). Typical Value = 10. Default: 0 - :t1: Time constant 1 (T1). Typical Value = 0.076. Default: 0 - :t2: Time constant 2 (T2). Typical Value = 0.086. Default: 0 - :t3: Time constant 3 (T3). Typical Value = 1.068. Default: 0 - :t4: Time constant 4 (T4). Typical Value = 1.913. Default: 0 - :vsmax: Output maximum limit (Vsmax). Typical Value = 0.1. Default: 0.0 - :vsmin: Output minimum limit (Vsmin). Typical Value = -0.1. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - 'k0': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 'k4': [cgmesProfile.DY.value, ], - 'td': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 'vsmax': [cgmesProfile.DY.value, ], - 'vsmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, k = 0.0, k0 = 0.0, k1 = 0.0, k2 = 0.0, k3 = 0.0, k4 = 0.0, td = 0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, vsmax = 0.0, vsmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k = k - self.k0 = k0 - self.k1 = k1 - self.k2 = k2 - self.k3 = k3 - self.k4 = k4 - self.td = td - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.vsmax = vsmax - self.vsmin = vsmin - - def __str__(self): - str = 'class=PssSH\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssSK.py b/cimpy/cgmes_v2_4_15/PssSK.py deleted file mode 100644 index 85d81f2a..00000000 --- a/cimpy/cgmes_v2_4_15/PssSK.py +++ /dev/null @@ -1,61 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssSK(PowerSystemStabilizerDynamics): - ''' - PSS Slovakian type - three inputs. - - :k1: Gain P (K1). Typical Value = -0.3. Default: 0.0 - :k2: Gain fe (K2). Typical Value = -0.15. Default: 0.0 - :k3: Gain If (K3). Typical Value = 10. Default: 0.0 - :t1: Denominator time constant (T1). Typical Value = 0.3. Default: 0 - :t2: Filter time constant (T2). Typical Value = 0.35. Default: 0 - :t3: Denominator time constant (T3). Typical Value = 0.22. Default: 0 - :t4: Filter time constant (T4). Typical Value = 0.02. Default: 0 - :t5: Denominator time constant (T5). Typical Value = 0.02. Default: 0 - :t6: Filter time constant (T6). Typical Value = 0.02. Default: 0 - :vsmax: Stabilizer output max limit (Vsmax). Typical Value = 0.4. Default: 0.0 - :vsmin: Stabilizer output min limit (Vsmin). Typical Value = -0.4. Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 'k3': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 'vsmax': [cgmesProfile.DY.value, ], - 'vsmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, k1 = 0.0, k2 = 0.0, k3 = 0.0, t1 = 0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, vsmax = 0.0, vsmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.k1 = k1 - self.k2 = k2 - self.k3 = k3 - self.t1 = t1 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.vsmax = vsmax - self.vsmin = vsmin - - def __str__(self): - str = 'class=PssSK\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/PssWECC.py b/cimpy/cgmes_v2_4_15/PssWECC.py deleted file mode 100644 index 4bf7d190..00000000 --- a/cimpy/cgmes_v2_4_15/PssWECC.py +++ /dev/null @@ -1,82 +0,0 @@ -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics - - -class PssWECC(PowerSystemStabilizerDynamics): - ''' - Dual input Power System Stabilizer, based on IEEE type 2, with modified output limiter defined by WECC (Western Electricity Coordinating Council, USA). - - :inputSignal1Type: Type of input signal #1. Default: None - :inputSignal2Type: Type of input signal #2. Default: None - :k1: Input signal 1 gain (K). Default: 0.0 - :t1: Input signal 1 transducer time constant (T). Default: 0 - :k2: Input signal 2 gain (K). Default: 0.0 - :t2: Input signal 2 transducer time constant (T). Default: 0 - :t3: Stabilizer washout time constant (T). Default: 0 - :t4: Stabilizer washout time lag constant (T) (>0). Default: 0 - :t5: Lead time constant (T). Default: 0 - :t6: Lag time constant (T). Default: 0 - :t7: Lead time constant (T). Default: 0 - :t8: Lag time constant (T). Default: 0 - :t10: Lag time constant (T). Default: 0 - :t9: Lead time constant (T). Default: 0 - :vsmax: Maximum output signal (Vsmax). Default: 0.0 - :vsmin: Minimum output signal (Vsmin). Default: 0.0 - :vcu: Maximum value for voltage compensator output (V). Default: 0.0 - :vcl: Minimum value for voltage compensator output (V). Default: 0.0 - ''' - - cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'inputSignal1Type': [cgmesProfile.DY.value, ], - 'inputSignal2Type': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 't3': [cgmesProfile.DY.value, ], - 't4': [cgmesProfile.DY.value, ], - 't5': [cgmesProfile.DY.value, ], - 't6': [cgmesProfile.DY.value, ], - 't7': [cgmesProfile.DY.value, ], - 't8': [cgmesProfile.DY.value, ], - 't10': [cgmesProfile.DY.value, ], - 't9': [cgmesProfile.DY.value, ], - 'vsmax': [cgmesProfile.DY.value, ], - 'vsmin': [cgmesProfile.DY.value, ], - 'vcu': [cgmesProfile.DY.value, ], - 'vcl': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemStabilizerDynamics: \n' + PowerSystemStabilizerDynamics.__doc__ - - def __init__(self, inputSignal1Type = None, inputSignal2Type = None, k1 = 0.0, t1 = 0, k2 = 0.0, t2 = 0, t3 = 0, t4 = 0, t5 = 0, t6 = 0, t7 = 0, t8 = 0, t10 = 0, t9 = 0, vsmax = 0.0, vsmin = 0.0, vcu = 0.0, vcl = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.inputSignal1Type = inputSignal1Type - self.inputSignal2Type = inputSignal2Type - self.k1 = k1 - self.t1 = t1 - self.k2 = k2 - self.t2 = t2 - self.t3 = t3 - self.t4 = t4 - self.t5 = t5 - self.t6 = t6 - self.t7 = t7 - self.t8 = t8 - self.t10 = t10 - self.t9 = t9 - self.vsmax = vsmax - self.vsmin = vsmin - self.vcu = vcu - self.vcl = vcl - - def __str__(self): - str = 'class=PssWECC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Quality61850.py b/cimpy/cgmes_v2_4_15/Quality61850.py deleted file mode 100644 index a0930b86..00000000 --- a/cimpy/cgmes_v2_4_15/Quality61850.py +++ /dev/null @@ -1,63 +0,0 @@ -from .Base import Base - - -class Quality61850(Base): - ''' - Quality flags in this class are as defined in IEC 61850, except for estimatorReplaced, which has been included in this class for convenience. - - :badReference: Measurement value may be incorrect due to a reference being out of calibration. Default: False - :estimatorReplaced: Value has been replaced by State Estimator. estimatorReplaced is not an IEC61850 quality bit but has been put in this class for convenience. Default: False - :failure: This identifier indicates that a supervision function has detected an internal or external failure, e.g. communication failure. Default: False - :oldData: Measurement value is old and possibly invalid, as it has not been successfully updated during a specified time interval. Default: False - :operatorBlocked: Measurement value is blocked and hence unavailable for transmission. Default: False - :oscillatory: To prevent some overload of the communication it is sensible to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0) then oscillation is detected and the detail quality identifier `oscillatory` is set. If it is detected a configured numbers of transient changes could be passed by. In this time the validity status `questionable` is set. If after this defined numbers of changes the signal is still in the oscillating state the value shall be set either to the opposite state of the previous stable value or to a defined default value. In this case the validity status `questionable` is reset and `invalid` is set as long as the signal is oscillating. If it is configured such that no transient changes should be passed by then the validity status `invalid` is set immediately in addition to the detail quality identifier `oscillatory` (used for status information only). Default: False - :outOfRange: Measurement value is beyond a predefined range of value. Default: False - :overFlow: Measurement value is beyond the capability of being represented properly. For example, a counter value overflows from maximum count back to a value of zero. Default: False - :source: Source gives information related to the origin of a value. The value may be acquired from the process, defaulted or substituted. Default: None - :suspect: A correlation function has detected that the value is not consitent with other values. Typically set by a network State Estimator. Default: False - :test: Measurement value is transmitted for test purposes. Default: False - :validity: Validity of the measurement value. Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'badReference': [cgmesProfile.EQ.value, ], - 'estimatorReplaced': [cgmesProfile.EQ.value, ], - 'failure': [cgmesProfile.EQ.value, ], - 'oldData': [cgmesProfile.EQ.value, ], - 'operatorBlocked': [cgmesProfile.EQ.value, ], - 'oscillatory': [cgmesProfile.EQ.value, ], - 'outOfRange': [cgmesProfile.EQ.value, ], - 'overFlow': [cgmesProfile.EQ.value, ], - 'source': [cgmesProfile.EQ.value, ], - 'suspect': [cgmesProfile.EQ.value, ], - 'test': [cgmesProfile.EQ.value, ], - 'validity': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, badReference = False, estimatorReplaced = False, failure = False, oldData = False, operatorBlocked = False, oscillatory = False, outOfRange = False, overFlow = False, source = None, suspect = False, test = False, validity = None, ): - - self.badReference = badReference - self.estimatorReplaced = estimatorReplaced - self.failure = failure - self.oldData = oldData - self.operatorBlocked = operatorBlocked - self.oscillatory = oscillatory - self.outOfRange = outOfRange - self.overFlow = overFlow - self.source = source - self.suspect = suspect - self.test = test - self.validity = validity - - def __str__(self): - str = 'class=Quality61850\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py b/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py deleted file mode 100644 index aefc385d..00000000 --- a/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py +++ /dev/null @@ -1,31 +0,0 @@ -from .AnalogControl import AnalogControl - - -class RaiseLowerCommand(AnalogControl): - ''' - An analog control that increase or decrease a set point value with pulses. - - :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None - ''' - - cgmesProfile = AnalogControl.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'ValueAliasSet': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class AnalogControl: \n' + AnalogControl.__doc__ - - def __init__(self, ValueAliasSet = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ValueAliasSet = ValueAliasSet - - def __str__(self): - str = 'class=RaiseLowerCommand\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RatioTapChanger.py b/cimpy/cgmes_v2_4_15/RatioTapChanger.py deleted file mode 100644 index 7902c21b..00000000 --- a/cimpy/cgmes_v2_4_15/RatioTapChanger.py +++ /dev/null @@ -1,40 +0,0 @@ -from .TapChanger import TapChanger - - -class RatioTapChanger(TapChanger): - ''' - A tap changer that changes the voltage ratio impacting the voltage magnitude but not the phase angle across the transformer. - - :tculControlMode: Specifies the regulation control mode (voltage or reactive) of the RatioTapChanger. Default: None - :stepVoltageIncrement: Tap step increment, in per cent of nominal voltage, per step position. Default: 0.0 - :RatioTapChangerTable: The ratio tap changer of this tap ratio table. Default: None - :TransformerEnd: Ratio tap changer associated with this transformer end. Default: None - ''' - - cgmesProfile = TapChanger.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'tculControlMode': [cgmesProfile.EQ.value, ], - 'stepVoltageIncrement': [cgmesProfile.EQ.value, ], - 'RatioTapChangerTable': [cgmesProfile.EQ.value, ], - 'TransformerEnd': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TapChanger: \n' + TapChanger.__doc__ - - def __init__(self, tculControlMode = None, stepVoltageIncrement = 0.0, RatioTapChangerTable = None, TransformerEnd = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tculControlMode = tculControlMode - self.stepVoltageIncrement = stepVoltageIncrement - self.RatioTapChangerTable = RatioTapChangerTable - self.TransformerEnd = TransformerEnd - - def __str__(self): - str = 'class=RatioTapChanger\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py b/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py deleted file mode 100644 index a0384288..00000000 --- a/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class RatioTapChangerTable(IdentifiedObject): - ''' - Describes a curve for how the voltage magnitude and impedance varies with the tap step. - - :RatioTapChanger: The tap ratio table for this ratio tap changer. Default: "list" - :RatioTapChangerTablePoint: Table of this point. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'RatioTapChanger': [cgmesProfile.EQ.value, ], - 'RatioTapChangerTablePoint': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, RatioTapChanger = "list", RatioTapChangerTablePoint = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RatioTapChanger = RatioTapChanger - self.RatioTapChangerTablePoint = RatioTapChangerTablePoint - - def __str__(self): - str = 'class=RatioTapChangerTable\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py b/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py deleted file mode 100644 index 8040c1b8..00000000 --- a/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py +++ /dev/null @@ -1,31 +0,0 @@ -from .TapChangerTablePoint import TapChangerTablePoint - - -class RatioTapChangerTablePoint(TapChangerTablePoint): - ''' - Describes each tap step in the ratio tap changer tabular curve. - - :RatioTapChangerTable: Points of this table. Default: None - ''' - - cgmesProfile = TapChangerTablePoint.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'RatioTapChangerTable': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TapChangerTablePoint: \n' + TapChangerTablePoint.__doc__ - - def __init__(self, RatioTapChangerTable = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RatioTapChangerTable = RatioTapChangerTable - - def __str__(self): - str = 'class=RatioTapChangerTablePoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Reactance.py b/cimpy/cgmes_v2_4_15/Reactance.py deleted file mode 100644 index 9af4eb82..00000000 --- a/cimpy/cgmes_v2_4_15/Reactance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Reactance(Base): - ''' - Reactance (imaginary part of impedance), at rated frequency. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Reactance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py b/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py deleted file mode 100644 index 9406b029..00000000 --- a/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py +++ /dev/null @@ -1,34 +0,0 @@ -from .Curve import Curve - - -class ReactiveCapabilityCurve(Curve): - ''' - Reactive power rating envelope versus the synchronous machine's active power, in both the generating and motoring modes. For each active power value there is a corresponding high and low reactive power limit value. Typically there will be a separate curve for each coolant condition, such as hydrogen pressure. The Y1 axis values represent reactive minimum and the Y2 axis values represent reactive maximum. - - :EquivalentInjection: The reactive capability curve used by this equivalent injection. Default: "list" - :InitiallyUsedBySynchronousMachines: The default reactive capability curve for use by a synchronous machine. Default: "list" - ''' - - cgmesProfile = Curve.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'EquivalentInjection': [cgmesProfile.EQ.value, ], - 'InitiallyUsedBySynchronousMachines': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Curve: \n' + Curve.__doc__ - - def __init__(self, EquivalentInjection = "list", InitiallyUsedBySynchronousMachines = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EquivalentInjection = EquivalentInjection - self.InitiallyUsedBySynchronousMachines = InitiallyUsedBySynchronousMachines - - def __str__(self): - str = 'class=ReactiveCapabilityCurve\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ReactivePower.py b/cimpy/cgmes_v2_4_15/ReactivePower.py deleted file mode 100644 index a0c7f8d4..00000000 --- a/cimpy/cgmes_v2_4_15/ReactivePower.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class ReactivePower(Base): - ''' - Product of RMS value of the voltage and the RMS value of the quadrature component of the current. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=ReactivePower\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py b/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py deleted file mode 100644 index ab6c56c5..00000000 --- a/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py +++ /dev/null @@ -1,37 +0,0 @@ -from .BasicIntervalSchedule import BasicIntervalSchedule - - -class RegularIntervalSchedule(BasicIntervalSchedule): - ''' - The schedule has time points where the time between them is constant. - - :timeStep: The time between each pair of subsequent regular time points in sequence order. Default: 0 - :endTime: The time for the last time point. Default: '' - :TimePoints: The regular interval time point data values that define this schedule. Default: "list" - ''' - - cgmesProfile = BasicIntervalSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'timeStep': [cgmesProfile.EQ.value, ], - 'endTime': [cgmesProfile.EQ.value, ], - 'TimePoints': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class BasicIntervalSchedule: \n' + BasicIntervalSchedule.__doc__ - - def __init__(self, timeStep = 0, endTime = '', TimePoints = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.timeStep = timeStep - self.endTime = endTime - self.TimePoints = TimePoints - - def __str__(self): - str = 'class=RegularIntervalSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegularTimePoint.py b/cimpy/cgmes_v2_4_15/RegularTimePoint.py deleted file mode 100644 index c24efa25..00000000 --- a/cimpy/cgmes_v2_4_15/RegularTimePoint.py +++ /dev/null @@ -1,39 +0,0 @@ -from .Base import Base - - -class RegularTimePoint(Base): - ''' - Time point for a schedule where the time between the consecutive points is constant. - - :IntervalSchedule: Regular interval schedule containing this time point. Default: None - :sequenceNumber: The position of the regular time point in the sequence. Note that time points don`t have to be sequential, i.e. time points may be omitted. The actual time for a RegularTimePoint is computed by multiplying the associated regular interval schedule`s time step with the regular time point sequence number and adding the associated schedules start time. Default: 0 - :value1: The first value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 - :value2: The second value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'IntervalSchedule': [cgmesProfile.EQ.value, ], - 'sequenceNumber': [cgmesProfile.EQ.value, ], - 'value1': [cgmesProfile.EQ.value, ], - 'value2': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, IntervalSchedule = None, sequenceNumber = 0, value1 = 0.0, value2 = 0.0, ): - - self.IntervalSchedule = IntervalSchedule - self.sequenceNumber = sequenceNumber - self.value1 = value1 - self.value2 = value2 - - def __str__(self): - str = 'class=RegularTimePoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegulatingCondEq.py b/cimpy/cgmes_v2_4_15/RegulatingCondEq.py deleted file mode 100644 index 99a7d174..00000000 --- a/cimpy/cgmes_v2_4_15/RegulatingCondEq.py +++ /dev/null @@ -1,34 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class RegulatingCondEq(ConductingEquipment): - ''' - A type of conducting equipment that can regulate a quantity (i.e. voltage or flow) at a specific point in the network. - - :RegulatingControl: The regulating control scheme in which this equipment participates. Default: None - :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'RegulatingControl': [cgmesProfile.EQ.value, ], - 'controlEnabled': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, RegulatingControl = None, controlEnabled = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RegulatingControl = RegulatingControl - self.controlEnabled = controlEnabled - - def __str__(self): - str = 'class=RegulatingCondEq\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegulatingControl.py b/cimpy/cgmes_v2_4_15/RegulatingControl.py deleted file mode 100644 index 8c6c9bbd..00000000 --- a/cimpy/cgmes_v2_4_15/RegulatingControl.py +++ /dev/null @@ -1,55 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class RegulatingControl(PowerSystemResource): - ''' - Specifies a set of equipment that works together to control a power system quantity such as voltage or flow. Remote bus voltage control is possible by specifying the controlled terminal located at some place remote from the controlling equipment. In case multiple equipment, possibly of different types, control same terminal there must be only one RegulatingControl at that terminal. The most specific subtype of RegulatingControl shall be used in case such equipment participate in the control, e.g. TapChangerControl for tap changers. For flow control load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. - - :Terminal: The controls regulating this terminal. Default: None - :RegulatingCondEq: The equipment that participates in this regulating control scheme. Default: "list" - :mode: The regulating control mode presently available. This specification allows for determining the kind of regulation without need for obtaining the units from a schedule. Default: None - :RegulationSchedule: Schedule for this Regulating regulating control. Default: "list" - :discrete: The regulation is performed in a discrete mode. This applies to equipment with discrete controls, e.g. tap changers and shunt compensators. Default: False - :enabled: The flag tells if regulation is enabled. Default: False - :targetDeadband: This is a deadband used with discrete control to avoid excessive update of controls like tap changers and shunt compensator banks while regulating. The units of those appropriate for the mode. Default: 0.0 - :targetValue: The target value specified for case input. This value can be used for the target value without the use of schedules. The value has the units appropriate to the mode attribute. Default: 0.0 - :targetValueUnitMultiplier: Specify the multiplier for used for the targetValue. Default: None - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - 'RegulatingCondEq': [cgmesProfile.EQ.value, ], - 'mode': [cgmesProfile.EQ.value, ], - 'RegulationSchedule': [cgmesProfile.EQ.value, ], - 'discrete': [cgmesProfile.SSH.value, ], - 'enabled': [cgmesProfile.SSH.value, ], - 'targetDeadband': [cgmesProfile.SSH.value, ], - 'targetValue': [cgmesProfile.SSH.value, ], - 'targetValueUnitMultiplier': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, Terminal = None, RegulatingCondEq = "list", mode = None, RegulationSchedule = "list", discrete = False, enabled = False, targetDeadband = 0.0, targetValue = 0.0, targetValueUnitMultiplier = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Terminal = Terminal - self.RegulatingCondEq = RegulatingCondEq - self.mode = mode - self.RegulationSchedule = RegulationSchedule - self.discrete = discrete - self.enabled = enabled - self.targetDeadband = targetDeadband - self.targetValue = targetValue - self.targetValueUnitMultiplier = targetValueUnitMultiplier - - def __str__(self): - str = 'class=RegulatingControl\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py b/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py deleted file mode 100644 index 9af4f1cd..00000000 --- a/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class RegulatingControlModeKind(Base): - ''' - The kind of regulation model. For example regulating voltage, reactive power, active power, etc. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=RegulatingControlModeKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RegulationSchedule.py b/cimpy/cgmes_v2_4_15/RegulationSchedule.py deleted file mode 100644 index ab0d864b..00000000 --- a/cimpy/cgmes_v2_4_15/RegulationSchedule.py +++ /dev/null @@ -1,31 +0,0 @@ -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule - - -class RegulationSchedule(SeasonDayTypeSchedule): - ''' - A pre-established pattern over time for a controlled variable, e.g., busbar voltage. - - :RegulatingControl: Regulating controls that have this Schedule. Default: None - ''' - - cgmesProfile = SeasonDayTypeSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'RegulatingControl': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SeasonDayTypeSchedule: \n' + SeasonDayTypeSchedule.__doc__ - - def __init__(self, RegulatingControl = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RegulatingControl = RegulatingControl - - def __str__(self): - str = 'class=RegulationSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RemoteInputSignal.py b/cimpy/cgmes_v2_4_15/RemoteInputSignal.py deleted file mode 100644 index 0cb79202..00000000 --- a/cimpy/cgmes_v2_4_15/RemoteInputSignal.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class RemoteInputSignal(IdentifiedObject): - ''' - Supports connection to a terminal associated with a remote bus from which an input signal of a specific type is coming. - - :Terminal: Remote terminal with which this input signal is associated. Default: None - :remoteSignalType: Type of input signal. Default: None - :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model using this remote input signal. Default: None - :UnderexcitationLimiterDynamics: Underexcitation limiter model using this remote input signal. Default: None - :WindTurbineType1or2Dynamics: Wind generator Type 1 or Type 2 model using this remote input signal. Default: None - :VoltageCompensatorDynamics: Voltage compensator model using this remote input signal. Default: None - :PowerSystemStabilizerDynamics: Power system stabilizer model using this remote input signal. Default: None - :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model using this remote input signal. Default: None - :WindTurbineType3or4Dynamics: Remote input signal used by these wind turbine Type 3 or 4 models. Default: None - :WindPlantDynamics: The remote signal with which this power plant is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'Terminal': [cgmesProfile.DY.value, ], - 'remoteSignalType': [cgmesProfile.DY.value, ], - 'PFVArControllerType1Dynamics': [cgmesProfile.DY.value, ], - 'UnderexcitationLimiterDynamics': [cgmesProfile.DY.value, ], - 'WindTurbineType1or2Dynamics': [cgmesProfile.DY.value, ], - 'VoltageCompensatorDynamics': [cgmesProfile.DY.value, ], - 'PowerSystemStabilizerDynamics': [cgmesProfile.DY.value, ], - 'DiscontinuousExcitationControlDynamics': [cgmesProfile.DY.value, ], - 'WindTurbineType3or4Dynamics': [cgmesProfile.DY.value, ], - 'WindPlantDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Terminal = None, remoteSignalType = None, PFVArControllerType1Dynamics = None, UnderexcitationLimiterDynamics = None, WindTurbineType1or2Dynamics = None, VoltageCompensatorDynamics = None, PowerSystemStabilizerDynamics = None, DiscontinuousExcitationControlDynamics = None, WindTurbineType3or4Dynamics = None, WindPlantDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Terminal = Terminal - self.remoteSignalType = remoteSignalType - self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics - self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics - self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics - self.VoltageCompensatorDynamics = VoltageCompensatorDynamics - self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics - self.DiscontinuousExcitationControlDynamics = DiscontinuousExcitationControlDynamics - self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics - self.WindPlantDynamics = WindPlantDynamics - - def __str__(self): - str = 'class=RemoteInputSignal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RemoteSignalKind.py b/cimpy/cgmes_v2_4_15/RemoteSignalKind.py deleted file mode 100644 index 8e5d229c..00000000 --- a/cimpy/cgmes_v2_4_15/RemoteSignalKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class RemoteSignalKind(Base): - ''' - Type of input signal coming from remote bus. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=RemoteSignalKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ReportingGroup.py b/cimpy/cgmes_v2_4_15/ReportingGroup.py deleted file mode 100644 index 732a1c71..00000000 --- a/cimpy/cgmes_v2_4_15/ReportingGroup.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ReportingGroup(IdentifiedObject): - ''' - A reporting group is used for various ad-hoc groupings used for reporting. - - :BusNameMarker: The reporting group to which this bus name marker belongs. Default: "list" - :TopologicalNode: The reporting group to which the topological node belongs. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.TP.value, ], - 'BusNameMarker': [cgmesProfile.EQ.value, ], - 'TopologicalNode': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, BusNameMarker = "list", TopologicalNode = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.BusNameMarker = BusNameMarker - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=ReportingGroup\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Resistance.py b/cimpy/cgmes_v2_4_15/Resistance.py deleted file mode 100644 index ca574d5e..00000000 --- a/cimpy/cgmes_v2_4_15/Resistance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Resistance(Base): - ''' - Resistance (real part of impedance). - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Resistance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RotatingMachine.py b/cimpy/cgmes_v2_4_15/RotatingMachine.py deleted file mode 100644 index 13c5eff1..00000000 --- a/cimpy/cgmes_v2_4_15/RotatingMachine.py +++ /dev/null @@ -1,49 +0,0 @@ -from .RegulatingCondEq import RegulatingCondEq - - -class RotatingMachine(RegulatingCondEq): - ''' - A rotating machine which may be used as a generator or motor. - - :GeneratingUnit: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: None - :HydroPump: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None - :ratedPowerFactor: Power factor (nameplate data). It is primarily used for short circuit data exchange according to IEC 60909. Default: 0.0 - :ratedS: Nameplate apparent power rating for the unit. The attribute shall have a positive value. Default: 0.0 - :ratedU: Rated voltage (nameplate data, Ur in IEC 60909-0). It is primarily used for short circuit data exchange according to IEC 60909. Default: 0.0 - :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 - :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 - ''' - - cgmesProfile = RegulatingCondEq.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'GeneratingUnit': [cgmesProfile.EQ.value, ], - 'HydroPump': [cgmesProfile.EQ.value, ], - 'ratedPowerFactor': [cgmesProfile.EQ.value, ], - 'ratedS': [cgmesProfile.EQ.value, ], - 'ratedU': [cgmesProfile.EQ.value, ], - 'p': [cgmesProfile.SSH.value, ], - 'q': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegulatingCondEq: \n' + RegulatingCondEq.__doc__ - - def __init__(self, GeneratingUnit = None, HydroPump = None, ratedPowerFactor = 0.0, ratedS = 0.0, ratedU = 0.0, p = 0.0, q = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.GeneratingUnit = GeneratingUnit - self.HydroPump = HydroPump - self.ratedPowerFactor = ratedPowerFactor - self.ratedS = ratedS - self.ratedU = ratedU - self.p = p - self.q = q - - def __str__(self): - str = 'class=RotatingMachine\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py b/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py deleted file mode 100644 index bdb81b86..00000000 --- a/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py +++ /dev/null @@ -1,46 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class RotatingMachineDynamics(DynamicsFunctionBlock): - ''' - Abstract parent class for all synchronous and asynchronous machine standard models. - - :damping: Damping torque coefficient (D). A proportionality constant that, when multiplied by the angular velocity of the rotor poles with respect to the magnetic field (frequency), results in the damping torque. This value is often zero when the sources of damping torques (generator damper windings, load damping effects, etc.) are modelled in detail. Typical Value = 0. Default: 0.0 - :inertia: Inertia constant of generator or motor and mechanical load (H) (>0). This is the specification for the stored energy in the rotating mass when operating at rated speed. For a generator, this includes the generator plus all other elements (turbine, exciter) on the same shaft and has units of MW*sec. For a motor, it includes the motor plus its mechanical load. Conventional units are per unit on the generator MVA base, usually expressed as MW*second/MVA or just second. This value is used in the accelerating power reference frame for operator training simulator solutions. Typical Value = 3. Default: 0 - :saturationFactor: Saturation factor at rated terminal voltage (S1) (> or =0). Not used by simplified model. Defined by defined by S(E1) in the SynchronousMachineSaturationParameters diagram. Typical Value = 0.02. Default: 0.0 - :saturationFactor120: Saturation factor at 120% of rated terminal voltage (S12) (> or =S1). Not used by the simplified model, defined by S(E2) in the SynchronousMachineSaturationParameters diagram. Typical Value = 0.12. Default: 0.0 - :statorLeakageReactance: Stator leakage reactance (Xl) (> or =0). Typical Value = 0.15. Default: 0.0 - :statorResistance: Stator (armature) resistance (Rs) (> or =0). Typical Value = 0.005. Default: 0.0 - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'damping': [cgmesProfile.DY.value, ], - 'inertia': [cgmesProfile.DY.value, ], - 'saturationFactor': [cgmesProfile.DY.value, ], - 'saturationFactor120': [cgmesProfile.DY.value, ], - 'statorLeakageReactance': [cgmesProfile.DY.value, ], - 'statorResistance': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, damping = 0.0, inertia = 0, saturationFactor = 0.0, saturationFactor120 = 0.0, statorLeakageReactance = 0.0, statorResistance = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.damping = damping - self.inertia = inertia - self.saturationFactor = saturationFactor - self.saturationFactor120 = saturationFactor120 - self.statorLeakageReactance = statorLeakageReactance - self.statorResistance = statorResistance - - def __str__(self): - str = 'class=RotatingMachineDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RotationSpeed.py b/cimpy/cgmes_v2_4_15/RotationSpeed.py deleted file mode 100644 index c3d29d5c..00000000 --- a/cimpy/cgmes_v2_4_15/RotationSpeed.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class RotationSpeed(Base): - ''' - Number of revolutions per second. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - :denominatorUnit: Default: None - :denominatorMultiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - 'denominatorUnit': [cgmesProfile.EQ.value, ], - 'denominatorMultiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, denominatorUnit = None, denominatorMultiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - self.denominatorUnit = denominatorUnit - self.denominatorMultiplier = denominatorMultiplier - - def __str__(self): - str = 'class=RotationSpeed\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/RotorKind.py b/cimpy/cgmes_v2_4_15/RotorKind.py deleted file mode 100644 index 9c92393d..00000000 --- a/cimpy/cgmes_v2_4_15/RotorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class RotorKind(Base): - ''' - Type of rotor on physical machine. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=RotorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SVCControlMode.py b/cimpy/cgmes_v2_4_15/SVCControlMode.py deleted file mode 100644 index ffa8b5df..00000000 --- a/cimpy/cgmes_v2_4_15/SVCControlMode.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class SVCControlMode(Base): - ''' - Static VAr Compensator control mode. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=SVCControlMode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Season.py b/cimpy/cgmes_v2_4_15/Season.py deleted file mode 100644 index bb7ea332..00000000 --- a/cimpy/cgmes_v2_4_15/Season.py +++ /dev/null @@ -1,37 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class Season(IdentifiedObject): - ''' - A specified time period of the year. - - :endDate: Date season ends. Default: 0.0 - :startDate: Date season starts. Default: 0.0 - :SeasonDayTypeSchedules: Season for the Schedule. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'endDate': [cgmesProfile.EQ.value, ], - 'startDate': [cgmesProfile.EQ.value, ], - 'SeasonDayTypeSchedules': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, endDate = 0.0, startDate = 0.0, SeasonDayTypeSchedules = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.endDate = endDate - self.startDate = startDate - self.SeasonDayTypeSchedules = SeasonDayTypeSchedules - - def __str__(self): - str = 'class=Season\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py b/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py deleted file mode 100644 index 599e2c5a..00000000 --- a/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py +++ /dev/null @@ -1,34 +0,0 @@ -from .RegularIntervalSchedule import RegularIntervalSchedule - - -class SeasonDayTypeSchedule(RegularIntervalSchedule): - ''' - A time schedule covering a 24 hour period, with curve data for a specific type of season and day. - - :DayType: Schedules that use this DayType. Default: None - :Season: Schedules that use this Season. Default: None - ''' - - cgmesProfile = RegularIntervalSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'DayType': [cgmesProfile.EQ.value, ], - 'Season': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegularIntervalSchedule: \n' + RegularIntervalSchedule.__doc__ - - def __init__(self, DayType = None, Season = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DayType = DayType - self.Season = Season - - def __str__(self): - str = 'class=SeasonDayTypeSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Seconds.py b/cimpy/cgmes_v2_4_15/Seconds.py deleted file mode 100644 index 47306fb1..00000000 --- a/cimpy/cgmes_v2_4_15/Seconds.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Seconds(Base): - ''' - Time, in seconds. - - :value: Time, in seconds Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Seconds\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SeriesCompensator.py b/cimpy/cgmes_v2_4_15/SeriesCompensator.py deleted file mode 100644 index 850e4faa..00000000 --- a/cimpy/cgmes_v2_4_15/SeriesCompensator.py +++ /dev/null @@ -1,49 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class SeriesCompensator(ConductingEquipment): - ''' - A Series Compensator is a series capacitor or reactor or an AC transmission line without charging susceptance. It is a two terminal device. - - :r: Positive sequence resistance. Default: 0.0 - :x: Positive sequence reactance. Default: 0.0 - :varistorPresent: Describe if a metal oxide varistor (mov) for over voltage protection is configured at the series compensator. Default: False - :varistorRatedCurrent: The maximum current the varistor is designed to handle at specified duration. Default: 0.0 - :varistorVoltageThreshold: The dc voltage at which the varistor start conducting. Default: 0.0 - :r0: Zero sequence resistance. Default: 0.0 - :x0: Zero sequence reactance. Default: 0.0 - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - 'varistorPresent': [cgmesProfile.EQ.value, ], - 'varistorRatedCurrent': [cgmesProfile.EQ.value, ], - 'varistorVoltageThreshold': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, r = 0.0, x = 0.0, varistorPresent = False, varistorRatedCurrent = 0.0, varistorVoltageThreshold = 0.0, r0 = 0.0, x0 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.r = r - self.x = x - self.varistorPresent = varistorPresent - self.varistorRatedCurrent = varistorRatedCurrent - self.varistorVoltageThreshold = varistorVoltageThreshold - self.r0 = r0 - self.x0 = x0 - - def __str__(self): - str = 'class=SeriesCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SetPoint.py b/cimpy/cgmes_v2_4_15/SetPoint.py deleted file mode 100644 index 49eb78ed..00000000 --- a/cimpy/cgmes_v2_4_15/SetPoint.py +++ /dev/null @@ -1,34 +0,0 @@ -from .AnalogControl import AnalogControl - - -class SetPoint(AnalogControl): - ''' - An analog control that issue a set point value. - - :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0.0 - :value: The value representing the actuator output. Default: 0.0 - ''' - - cgmesProfile = AnalogControl.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'normalValue': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class AnalogControl: \n' + AnalogControl.__doc__ - - def __init__(self, normalValue = 0.0, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.normalValue = normalValue - self.value = value - - def __str__(self): - str = 'class=SetPoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py b/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py deleted file mode 100644 index d9b02045..00000000 --- a/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class ShortCircuitRotorKind(Base): - ''' - Type of rotor, used by short circuit applications. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=ShortCircuitRotorKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ShuntCompensator.py b/cimpy/cgmes_v2_4_15/ShuntCompensator.py deleted file mode 100644 index 69b14909..00000000 --- a/cimpy/cgmes_v2_4_15/ShuntCompensator.py +++ /dev/null @@ -1,58 +0,0 @@ -from .RegulatingCondEq import RegulatingCondEq - - -class ShuntCompensator(RegulatingCondEq): - ''' - A shunt capacitor or reactor or switchable bank of shunt capacitors or reactors. A section of a shunt compensator is an individual capacitor or reactor. A negative value for reactivePerSection indicates that the compensator is a reactor. ShuntCompensator is a single terminal device. Ground is implied. - - :aVRDelay: Time delay required for the device to be connected or disconnected by automatic voltage regulation (AVR). Default: 0 - :grounded: Used for Yn and Zn connections. True if the neutral is solidly grounded. Default: False - :maximumSections: The maximum number of sections that may be switched in. Default: 0 - :nomU: The voltage at which the nominal reactive power may be calculated. This should normally be within 10% of the voltage at which the capacitor is connected to the network. Default: 0.0 - :normalSections: The normal number of sections switched in. Default: 0 - :switchOnCount: The switch on count since the capacitor count was last reset or initialized. Default: 0 - :switchOnDate: The date and time when the capacitor bank was last switched on. Default: '' - :voltageSensitivity: Voltage sensitivity required for the device to regulate the bus voltage, in voltage/reactive power. Default: 0.0 - :sections: Shunt compensator sections in use. Starting value for steady state solution. Non integer values are allowed to support continuous variables. The reasons for continuous value are to support study cases where no discrete shunt compensators has yet been designed, a solutions where a narrow voltage band force the sections to oscillate or accommodate for a continuous solution as input. Default: 0.0 - :SvShuntCompensatorSections: The state for the number of shunt compensator sections in service. Default: None - ''' - - cgmesProfile = RegulatingCondEq.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'aVRDelay': [cgmesProfile.EQ.value, ], - 'grounded': [cgmesProfile.EQ.value, ], - 'maximumSections': [cgmesProfile.EQ.value, ], - 'nomU': [cgmesProfile.EQ.value, ], - 'normalSections': [cgmesProfile.EQ.value, ], - 'switchOnCount': [cgmesProfile.EQ.value, ], - 'switchOnDate': [cgmesProfile.EQ.value, ], - 'voltageSensitivity': [cgmesProfile.EQ.value, ], - 'sections': [cgmesProfile.SSH.value, ], - 'SvShuntCompensatorSections': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegulatingCondEq: \n' + RegulatingCondEq.__doc__ - - def __init__(self, aVRDelay = 0, grounded = False, maximumSections = 0, nomU = 0.0, normalSections = 0, switchOnCount = 0, switchOnDate = '', voltageSensitivity = 0.0, sections = 0.0, SvShuntCompensatorSections = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.aVRDelay = aVRDelay - self.grounded = grounded - self.maximumSections = maximumSections - self.nomU = nomU - self.normalSections = normalSections - self.switchOnCount = switchOnCount - self.switchOnDate = switchOnDate - self.voltageSensitivity = voltageSensitivity - self.sections = sections - self.SvShuntCompensatorSections = SvShuntCompensatorSections - - def __str__(self): - str = 'class=ShuntCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py b/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py deleted file mode 100644 index ef51fead..00000000 --- a/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py +++ /dev/null @@ -1,29 +0,0 @@ -from .GeneratingUnit import GeneratingUnit - - -class SolarGeneratingUnit(GeneratingUnit): - ''' - A solar thermal generating unit. - - ''' - - cgmesProfile = GeneratingUnit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class GeneratingUnit: \n' + GeneratingUnit.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=SolarGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Source.py b/cimpy/cgmes_v2_4_15/Source.py deleted file mode 100644 index 7a16742a..00000000 --- a/cimpy/cgmes_v2_4_15/Source.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Source(Base): - ''' - Source gives information related to the origin of a value. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Source\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py b/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py deleted file mode 100644 index 66cd340d..00000000 --- a/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class StaticLoadModelKind(Base): - ''' - Type of static load model. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=StaticLoadModelKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/StaticVarCompensator.py b/cimpy/cgmes_v2_4_15/StaticVarCompensator.py deleted file mode 100644 index d41aa7f6..00000000 --- a/cimpy/cgmes_v2_4_15/StaticVarCompensator.py +++ /dev/null @@ -1,46 +0,0 @@ -from .RegulatingCondEq import RegulatingCondEq - - -class StaticVarCompensator(RegulatingCondEq): - ''' - A facility for providing variable and controllable shunt reactive power. The SVC typically consists of a stepdown transformer, filter, thyristor-controlled reactor, and thyristor-switched capacitor arms. The SVC may operate in fixed MVar output mode or in voltage control mode. When in voltage control mode, the output of the SVC will be proportional to the deviation of voltage at the controlled bus from the voltage setpoint. The SVC characteristic slope defines the proportion. If the voltage at the controlled bus is equal to the voltage setpoint, the SVC MVar output is zero. - - :capacitiveRating: Maximum available capacitive reactance. Default: 0.0 - :inductiveRating: Maximum available inductive reactance. Default: 0.0 - :slope: The characteristics slope of an SVC defines how the reactive power output changes in proportion to the difference between the regulated bus voltage and the voltage setpoint. Default: 0.0 - :sVCControlMode: SVC control mode. Default: None - :voltageSetPoint: The reactive power output of the SVC is proportional to the difference between the voltage at the regulated bus and the voltage setpoint. When the regulated bus voltage is equal to the voltage setpoint, the reactive power output is zero. Default: 0.0 - :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 - ''' - - cgmesProfile = RegulatingCondEq.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'capacitiveRating': [cgmesProfile.EQ.value, ], - 'inductiveRating': [cgmesProfile.EQ.value, ], - 'slope': [cgmesProfile.EQ.value, ], - 'sVCControlMode': [cgmesProfile.EQ.value, ], - 'voltageSetPoint': [cgmesProfile.EQ.value, ], - 'q': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegulatingCondEq: \n' + RegulatingCondEq.__doc__ - - def __init__(self, capacitiveRating = 0.0, inductiveRating = 0.0, slope = 0.0, sVCControlMode = None, voltageSetPoint = 0.0, q = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.capacitiveRating = capacitiveRating - self.inductiveRating = inductiveRating - self.slope = slope - self.sVCControlMode = sVCControlMode - self.voltageSetPoint = voltageSetPoint - self.q = q - - def __str__(self): - str = 'class=StaticVarCompensator\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/StationSupply.py b/cimpy/cgmes_v2_4_15/StationSupply.py deleted file mode 100644 index 1953b51e..00000000 --- a/cimpy/cgmes_v2_4_15/StationSupply.py +++ /dev/null @@ -1,29 +0,0 @@ -from .EnergyConsumer import EnergyConsumer - - -class StationSupply(EnergyConsumer): - ''' - Station supply with load derived from the station output. - - ''' - - cgmesProfile = EnergyConsumer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EnergyConsumer: \n' + EnergyConsumer.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=StationSupply\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/StringMeasurement.py b/cimpy/cgmes_v2_4_15/StringMeasurement.py deleted file mode 100644 index 0cd18710..00000000 --- a/cimpy/cgmes_v2_4_15/StringMeasurement.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Measurement import Measurement - - -class StringMeasurement(Measurement): - ''' - StringMeasurement represents a measurement with values of type string. - - :StringMeasurementValues: The values connected to this measurement. Default: "list" - ''' - - cgmesProfile = Measurement.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'StringMeasurementValues': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Measurement: \n' + Measurement.__doc__ - - def __init__(self, StringMeasurementValues = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.StringMeasurementValues = StringMeasurementValues - - def __str__(self): - str = 'class=StringMeasurement\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/StringMeasurementValue.py b/cimpy/cgmes_v2_4_15/StringMeasurementValue.py deleted file mode 100644 index 49f39f44..00000000 --- a/cimpy/cgmes_v2_4_15/StringMeasurementValue.py +++ /dev/null @@ -1,34 +0,0 @@ -from .MeasurementValue import MeasurementValue - - -class StringMeasurementValue(MeasurementValue): - ''' - StringMeasurementValue represents a measurement value of type string. - - :StringMeasurement: Measurement to which this value is connected. Default: None - :value: The value to supervise. Default: '' - ''' - - cgmesProfile = MeasurementValue.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'StringMeasurement': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class MeasurementValue: \n' + MeasurementValue.__doc__ - - def __init__(self, StringMeasurement = None, value = '', *args, **kw_args): - super().__init__(*args, **kw_args) - - self.StringMeasurement = StringMeasurement - self.value = value - - def __str__(self): - str = 'class=StringMeasurementValue\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py b/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py deleted file mode 100644 index a6168805..00000000 --- a/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class SubGeographicalRegion(IdentifiedObject): - ''' - A subset of a geographical region of a power system network model. - - :DCLines: Default: "list" - :Region: The geographical region to which this sub-geographical region is within. Default: None - :Lines: The lines within the sub-geographical region. Default: "list" - :Substations: The substations in this sub-geographical region. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'DCLines': [cgmesProfile.EQ.value, ], - 'Region': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'Lines': [cgmesProfile.EQ.value, cgmesProfile.EQ_BD.value, ], - 'Substations': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, DCLines = "list", Region = None, Lines = "list", Substations = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCLines = DCLines - self.Region = Region - self.Lines = Lines - self.Substations = Substations - - def __str__(self): - str = 'class=SubGeographicalRegion\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SubLoadArea.py b/cimpy/cgmes_v2_4_15/SubLoadArea.py deleted file mode 100644 index 4f211e8a..00000000 --- a/cimpy/cgmes_v2_4_15/SubLoadArea.py +++ /dev/null @@ -1,34 +0,0 @@ -from .EnergyArea import EnergyArea - - -class SubLoadArea(EnergyArea): - ''' - The class is the second level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. - - :LoadArea: The LoadArea where the SubLoadArea belongs. Default: None - :LoadGroups: The Loadgroups in the SubLoadArea. Default: "list" - ''' - - cgmesProfile = EnergyArea.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'LoadArea': [cgmesProfile.EQ.value, ], - 'LoadGroups': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EnergyArea: \n' + EnergyArea.__doc__ - - def __init__(self, LoadArea = None, LoadGroups = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.LoadArea = LoadArea - self.LoadGroups = LoadGroups - - def __str__(self): - str = 'class=SubLoadArea\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Substation.py b/cimpy/cgmes_v2_4_15/Substation.py deleted file mode 100644 index 669b1c40..00000000 --- a/cimpy/cgmes_v2_4_15/Substation.py +++ /dev/null @@ -1,37 +0,0 @@ -from .EquipmentContainer import EquipmentContainer - - -class Substation(EquipmentContainer): - ''' - A collection of equipment for purposes other than generation or utilization, through which electric energy in bulk is passed for the purposes of switching or modifying its characteristics. - - :DCConverterUnit: Default: "list" - :Region: The SubGeographicalRegion containing the substation. Default: None - :VoltageLevels: The voltage levels within this substation. Default: "list" - ''' - - cgmesProfile = EquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'DCConverterUnit': [cgmesProfile.EQ.value, ], - 'Region': [cgmesProfile.EQ.value, ], - 'VoltageLevels': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquipmentContainer: \n' + EquipmentContainer.__doc__ - - def __init__(self, DCConverterUnit = "list", Region = None, VoltageLevels = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.DCConverterUnit = DCConverterUnit - self.Region = Region - self.VoltageLevels = VoltageLevels - - def __str__(self): - str = 'class=Substation\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Susceptance.py b/cimpy/cgmes_v2_4_15/Susceptance.py deleted file mode 100644 index c2eaa7c8..00000000 --- a/cimpy/cgmes_v2_4_15/Susceptance.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Susceptance(Base): - ''' - Imaginary part of admittance. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Susceptance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvInjection.py b/cimpy/cgmes_v2_4_15/SvInjection.py deleted file mode 100644 index 02d51d20..00000000 --- a/cimpy/cgmes_v2_4_15/SvInjection.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class SvInjection(Base): - ''' - The SvInjection is reporting the calculated bus injection minus the sum of the terminal flows. The terminal flow is positive out from the bus (load sign convention) and bus injection has positive flow into the bus. SvInjection may have the remainder after state estimation or slack after power flow calculation. - - :pInjection: The active power injected into the bus in addition to injections from equipment terminals. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 - :qInjection: The reactive power injected into the bus in addition to injections from equipment terminals. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 - :TopologicalNode: The injection flows state variables associated with the topological node. Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'pInjection': [cgmesProfile.SV.value, ], - 'qInjection': [cgmesProfile.SV.value, ], - 'TopologicalNode': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, pInjection = 0.0, qInjection = 0.0, TopologicalNode = None, ): - - self.pInjection = pInjection - self.qInjection = qInjection - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=SvInjection\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvPowerFlow.py b/cimpy/cgmes_v2_4_15/SvPowerFlow.py deleted file mode 100644 index e05c11bf..00000000 --- a/cimpy/cgmes_v2_4_15/SvPowerFlow.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class SvPowerFlow(Base): - ''' - State variable for power flow. Load convention is used for flow direction. This means flow out from the TopologicalNode into the equipment is positive. - - :Terminal: The terminal associated with the power flow state variable. Default: None - :p: The active power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 - :q: The reactive power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'Terminal': [cgmesProfile.SV.value, ], - 'p': [cgmesProfile.SV.value, ], - 'q': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, Terminal = None, p = 0.0, q = 0.0, ): - - self.Terminal = Terminal - self.p = p - self.q = q - - def __str__(self): - str = 'class=SvPowerFlow\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py b/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py deleted file mode 100644 index c746a764..00000000 --- a/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py +++ /dev/null @@ -1,33 +0,0 @@ -from .Base import Base - - -class SvShuntCompensatorSections(Base): - ''' - State variable for the number of sections in service for a shunt compensator. - - :sections: The number of sections in service as a continous variable. To get integer value scale with ShuntCompensator.bPerSection. Default: 0.0 - :ShuntCompensator: The shunt compensator for which the state applies. Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'sections': [cgmesProfile.SV.value, ], - 'ShuntCompensator': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, sections = 0.0, ShuntCompensator = None, ): - - self.sections = sections - self.ShuntCompensator = ShuntCompensator - - def __str__(self): - str = 'class=SvShuntCompensatorSections\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvStatus.py b/cimpy/cgmes_v2_4_15/SvStatus.py deleted file mode 100644 index a34c214f..00000000 --- a/cimpy/cgmes_v2_4_15/SvStatus.py +++ /dev/null @@ -1,33 +0,0 @@ -from .Base import Base - - -class SvStatus(Base): - ''' - State variable for status. - - :ConductingEquipment: The conducting equipment associated with the status state variable. Default: None - :inService: The in service status as a result of topology processing. Default: False - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'ConductingEquipment': [cgmesProfile.SV.value, ], - 'inService': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ConductingEquipment = None, inService = False, ): - - self.ConductingEquipment = ConductingEquipment - self.inService = inService - - def __str__(self): - str = 'class=SvStatus\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvTapStep.py b/cimpy/cgmes_v2_4_15/SvTapStep.py deleted file mode 100644 index b4b79ff0..00000000 --- a/cimpy/cgmes_v2_4_15/SvTapStep.py +++ /dev/null @@ -1,33 +0,0 @@ -from .Base import Base - - -class SvTapStep(Base): - ''' - State variable for transformer tap step. This class is to be used for taps of LTC (load tap changing) transformers, not fixed tap transformers. - - :position: The floating point tap position. This is not the tap ratio, but rather the tap step position as defined by the related tap changer model and normally is constrained to be within the range of minimum and maximum tap positions. Default: 0.0 - :TapChanger: The tap changer associated with the tap step state. Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'position': [cgmesProfile.SV.value, ], - 'TapChanger': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, position = 0.0, TapChanger = None, ): - - self.position = position - self.TapChanger = TapChanger - - def __str__(self): - str = 'class=SvTapStep\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SvVoltage.py b/cimpy/cgmes_v2_4_15/SvVoltage.py deleted file mode 100644 index 6a16d7f9..00000000 --- a/cimpy/cgmes_v2_4_15/SvVoltage.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class SvVoltage(Base): - ''' - State variable for voltage. - - :angle: The voltage angle of the topological node complex voltage with respect to system reference. Default: 0.0 - :v: The voltage magnitude of the topological node. Default: 0.0 - :TopologicalNode: The state voltage associated with the topological node. Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'angle': [cgmesProfile.SV.value, ], - 'v': [cgmesProfile.SV.value, ], - 'TopologicalNode': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - - - def __init__(self, angle = 0.0, v = 0.0, TopologicalNode = None, ): - - self.angle = angle - self.v = v - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=SvVoltage\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Switch.py b/cimpy/cgmes_v2_4_15/Switch.py deleted file mode 100644 index 9e8f3fef..00000000 --- a/cimpy/cgmes_v2_4_15/Switch.py +++ /dev/null @@ -1,43 +0,0 @@ -from .ConductingEquipment import ConductingEquipment - - -class Switch(ConductingEquipment): - ''' - A generic device designed to close, or open, or both, one or more electric circuits. All switches are two terminal devices including grounding switches. - - :normalOpen: The attribute is used in cases when no Measurement for the status value is present. If the Switch has a status measurement the Discrete.normalValue is expected to match with the Switch.normalOpen. Default: False - :ratedCurrent: The maximum continuous current carrying capacity in amps governed by the device material and construction. Default: 0.0 - :retained: Branch is retained in a bus branch model. The flow through retained switches will normally be calculated in power flow. Default: False - :SwitchSchedules: A SwitchSchedule is associated with a Switch. Default: "list" - :open: The attribute tells if the switch is considered open when used as input to topology processing. Default: False - ''' - - cgmesProfile = ConductingEquipment.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'normalOpen': [cgmesProfile.EQ.value, ], - 'ratedCurrent': [cgmesProfile.EQ.value, ], - 'retained': [cgmesProfile.EQ.value, ], - 'SwitchSchedules': [cgmesProfile.EQ.value, ], - 'open': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ConductingEquipment: \n' + ConductingEquipment.__doc__ - - def __init__(self, normalOpen = False, ratedCurrent = 0.0, retained = False, SwitchSchedules = "list", open = False, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.normalOpen = normalOpen - self.ratedCurrent = ratedCurrent - self.retained = retained - self.SwitchSchedules = SwitchSchedules - self.open = open - - def __str__(self): - str = 'class=Switch\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SwitchSchedule.py b/cimpy/cgmes_v2_4_15/SwitchSchedule.py deleted file mode 100644 index 0ecfd7c6..00000000 --- a/cimpy/cgmes_v2_4_15/SwitchSchedule.py +++ /dev/null @@ -1,31 +0,0 @@ -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule - - -class SwitchSchedule(SeasonDayTypeSchedule): - ''' - A schedule of switch positions. If RegularTimePoint.value1 is 0, the switch is open. If 1, the switch is closed. - - :Switch: A Switch can be associated with SwitchSchedules. Default: None - ''' - - cgmesProfile = SeasonDayTypeSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Switch': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SeasonDayTypeSchedule: \n' + SeasonDayTypeSchedule.__doc__ - - def __init__(self, Switch = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Switch = Switch - - def __str__(self): - str = 'class=SwitchSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachine.py b/cimpy/cgmes_v2_4_15/SynchronousMachine.py deleted file mode 100644 index 476e0f1a..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachine.py +++ /dev/null @@ -1,97 +0,0 @@ -from .RotatingMachine import RotatingMachine - - -class SynchronousMachine(RotatingMachine): - ''' - An electromechanical device that operates with shaft rotating synchronously with the network. It is a single machine operating either as a generator or synchronous condenser or pump. - - :InitialReactiveCapabilityCurve: Synchronous machines using this curve as default. Default: None - :maxQ: Maximum reactive power limit. This is the maximum (nameplate) limit for the unit. Default: 0.0 - :minQ: Minimum reactive power limit for the unit. Default: 0.0 - :qPercent: Percent of the coordinated reactive control that comes from this machine. Default: 0.0 - :type: Modes that this synchronous machine can operate in. Default: None - :earthing: Indicates whether or not the generator is earthed. Used for short circuit data exchange according to IEC 60909 Default: False - :earthingStarPointR: Generator star point earthing resistance (Re). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :earthingStarPointX: Generator star point earthing reactance (Xe). Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :ikk: Steady-state short-circuit current (in A for the profile) of generator with compound excitation during 3-phase short circuit. - Ikk=0: Generator with no compound excitation. - Ikk?0: Generator with compound excitation. Ikk is used to calculate the minimum steady-state short-circuit current for generators with compound excitation (Section 4.6.1.2 in the IEC 60909-0) Used only for single fed short circuit on a generator. (Section 4.3.4.2. in the IEC 60909-0) Default: 0.0 - :mu: Factor to calculate the breaking current (Section 4.5.2.1 in the IEC 60909-0). Used only for single fed short circuit on a generator (Section 4.3.4.2. in the IEC 60909-0). Default: 0.0 - :r0: Zero sequence resistance of the synchronous machine. Default: 0.0 - :r2: Negative sequence resistance. Default: 0.0 - :satDirectSubtransX: Direct-axis subtransient reactance saturated, also known as Xd`sat. Default: 0.0 - :satDirectSyncX: Direct-axes saturated synchronous reactance (xdsat); reciprocal of short-circuit ration. Used for short circuit data exchange, only for single fed short circuit on a generator. (Section 4.3.4.2. in the IEC 60909-0). Default: 0.0 - :satDirectTransX: Saturated Direct-axis transient reactance. The attribute is primarily used for short circuit calculations according to ANSI. Default: 0.0 - :shortCircuitRotorType: Type of rotor, used by short circuit applications, only for single fed short circuit according to IEC 60909. Default: None - :voltageRegulationRange: Range of generator voltage regulation (PG in the IEC 60909-0) used for calculation of the impedance correction factor KG defined in IEC 60909-0 This attribute is used to describe the operating voltage of the generating unit. Default: 0.0 - :r: Equivalent resistance (RG) of generator. RG is considered for the calculation of all currents, except for the calculation of the peak current ip. Used for short circuit data exchange according to IEC 60909 Default: 0.0 - :x0: Zero sequence reactance of the synchronous machine. Default: 0.0 - :x2: Negative sequence reactance. Default: 0.0 - :operatingMode: Current mode of operation. Default: None - :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 - :SynchronousMachineDynamics: Synchronous machine dynamics model used to describe dynamic behavior of this synchronous machine. Default: None - ''' - - cgmesProfile = RotatingMachine.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.DY.value, ], - 'InitialReactiveCapabilityCurve': [cgmesProfile.EQ.value, ], - 'maxQ': [cgmesProfile.EQ.value, ], - 'minQ': [cgmesProfile.EQ.value, ], - 'qPercent': [cgmesProfile.EQ.value, ], - 'type': [cgmesProfile.EQ.value, ], - 'earthing': [cgmesProfile.EQ.value, ], - 'earthingStarPointR': [cgmesProfile.EQ.value, ], - 'earthingStarPointX': [cgmesProfile.EQ.value, ], - 'ikk': [cgmesProfile.EQ.value, ], - 'mu': [cgmesProfile.EQ.value, ], - 'r0': [cgmesProfile.EQ.value, ], - 'r2': [cgmesProfile.EQ.value, ], - 'satDirectSubtransX': [cgmesProfile.EQ.value, ], - 'satDirectSyncX': [cgmesProfile.EQ.value, ], - 'satDirectTransX': [cgmesProfile.EQ.value, ], - 'shortCircuitRotorType': [cgmesProfile.EQ.value, ], - 'voltageRegulationRange': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'x0': [cgmesProfile.EQ.value, ], - 'x2': [cgmesProfile.EQ.value, ], - 'operatingMode': [cgmesProfile.SSH.value, ], - 'referencePriority': [cgmesProfile.SSH.value, ], - 'SynchronousMachineDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RotatingMachine: \n' + RotatingMachine.__doc__ - - def __init__(self, InitialReactiveCapabilityCurve = None, maxQ = 0.0, minQ = 0.0, qPercent = 0.0, type = None, earthing = False, earthingStarPointR = 0.0, earthingStarPointX = 0.0, ikk = 0.0, mu = 0.0, r0 = 0.0, r2 = 0.0, satDirectSubtransX = 0.0, satDirectSyncX = 0.0, satDirectTransX = 0.0, shortCircuitRotorType = None, voltageRegulationRange = 0.0, r = 0.0, x0 = 0.0, x2 = 0.0, operatingMode = None, referencePriority = 0, SynchronousMachineDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.InitialReactiveCapabilityCurve = InitialReactiveCapabilityCurve - self.maxQ = maxQ - self.minQ = minQ - self.qPercent = qPercent - self.type = type - self.earthing = earthing - self.earthingStarPointR = earthingStarPointR - self.earthingStarPointX = earthingStarPointX - self.ikk = ikk - self.mu = mu - self.r0 = r0 - self.r2 = r2 - self.satDirectSubtransX = satDirectSubtransX - self.satDirectSyncX = satDirectSyncX - self.satDirectTransX = satDirectTransX - self.shortCircuitRotorType = shortCircuitRotorType - self.voltageRegulationRange = voltageRegulationRange - self.r = r - self.x0 = x0 - self.x2 = x2 - self.operatingMode = operatingMode - self.referencePriority = referencePriority - self.SynchronousMachineDynamics = SynchronousMachineDynamics - - def __str__(self): - str = 'class=SynchronousMachine\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py b/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py deleted file mode 100644 index 9e86793a..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py +++ /dev/null @@ -1,43 +0,0 @@ -from .SynchronousMachineDynamics import SynchronousMachineDynamics - - -class SynchronousMachineDetailed(SynchronousMachineDynamics): - ''' - All synchronous machine detailed types use a subset of the same data parameters and input/output variables. The several variations differ in the following ways: It is not necessary for each simulation tool to have separate models for each of the model types. The same model can often be used for several types by alternative logic within the model. Also, differences in saturation representation may not result in significant model performance differences so model substitutions are often acceptable. - - :saturationFactorQAxis: Q-axis saturation factor at rated terminal voltage (S1q) (>= 0). Typical Value = 0.02. Default: 0.0 - :saturationFactor120QAxis: Q-axis saturation factor at 120% of rated terminal voltage (S12q) (>=S1q). Typical Value = 0.12. Default: 0.0 - :efdBaseRatio: Ratio of Efd bases of exciter and generator models. Typical Value = 1. Default: 0.0 - :ifdBaseType: Excitation base system mode. Typical Value = ifag. Default: None - :ifdBaseValue: Ifd base current if .ifdBaseType = other. Not needed if .ifdBaseType not = other. Unit = A. Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = SynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'saturationFactorQAxis': [cgmesProfile.DY.value, ], - 'saturationFactor120QAxis': [cgmesProfile.DY.value, ], - 'efdBaseRatio': [cgmesProfile.DY.value, ], - 'ifdBaseType': [cgmesProfile.DY.value, ], - 'ifdBaseValue': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SynchronousMachineDynamics: \n' + SynchronousMachineDynamics.__doc__ - - def __init__(self, saturationFactorQAxis = 0.0, saturationFactor120QAxis = 0.0, efdBaseRatio = 0.0, ifdBaseType = None, ifdBaseValue = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.saturationFactorQAxis = saturationFactorQAxis - self.saturationFactor120QAxis = saturationFactor120QAxis - self.efdBaseRatio = efdBaseRatio - self.ifdBaseType = ifdBaseType - self.ifdBaseValue = ifdBaseValue - - def __str__(self): - str = 'class=SynchronousMachineDetailed\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py b/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py deleted file mode 100644 index fe6d24fa..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py +++ /dev/null @@ -1,43 +0,0 @@ -from .RotatingMachineDynamics import RotatingMachineDynamics - - -class SynchronousMachineDynamics(RotatingMachineDynamics): - ''' - Synchronous machine whose behaviour is described by reference to a standard model expressed in one of the following forms: - - :SynchronousMachine: Synchronous machine to which synchronous machine dynamics model applies. Default: None - :TurbineGovernorDynamics: Synchronous machine model with which this turbine-governor model is associated. Default: "list" - :ExcitationSystemDynamics: Excitation system model associated with this synchronous machine model. Default: None - :MechanicalLoadDynamics: Mechanical load model associated with this synchronous machine model. Default: None - :GenICompensationForGenJ: Compensation of voltage compensator`s generator for current flow out of this generator. Default: "list" - ''' - - cgmesProfile = RotatingMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'SynchronousMachine': [cgmesProfile.DY.value, ], - 'TurbineGovernorDynamics': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - 'MechanicalLoadDynamics': [cgmesProfile.DY.value, ], - 'GenICompensationForGenJ': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RotatingMachineDynamics: \n' + RotatingMachineDynamics.__doc__ - - def __init__(self, SynchronousMachine = None, TurbineGovernorDynamics = "list", ExcitationSystemDynamics = None, MechanicalLoadDynamics = None, GenICompensationForGenJ = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SynchronousMachine = SynchronousMachine - self.TurbineGovernorDynamics = TurbineGovernorDynamics - self.ExcitationSystemDynamics = ExcitationSystemDynamics - self.MechanicalLoadDynamics = MechanicalLoadDynamics - self.GenICompensationForGenJ = GenICompensationForGenJ - - def __str__(self): - str = 'class=SynchronousMachineDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py b/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py deleted file mode 100644 index e3168da6..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py +++ /dev/null @@ -1,61 +0,0 @@ -from .SynchronousMachineDetailed import SynchronousMachineDetailed - - -class SynchronousMachineEquivalentCircuit(SynchronousMachineDetailed): - ''' - The electrical equations for all variations of the synchronous models are based on the SynchronousEquivalentCircuit diagram for the direct and quadrature axes. = + = + * / ( + ) = + * * / ( * + * + * ) = + = + * / (+ ) = + ** / ( * + * + * ) = ( + ) / ( * ) = ( * + * + * ) / ( * * ( + ) = ( + ) / ( * ) = ( * + * + * )/ ( * * ( + ) Same equations using CIM attributes from SynchronousMachineTimeConstantReactance class on left of = sign and SynchronousMachineEquivalentCircuit class on right (except as noted): xDirectSync = xad + RotatingMachineDynamics.statorLeakageReactance xDirectTrans = RotatingMachineDynamics.statorLeakageReactance + xad * xfd / (xad + xfd) xDirectSubtrans = RotatingMachineDynamics.statorLeakageReactance + xad * xfd * x1d / (xad * xfd + xad * x1d + xfd * x1d) xQuadSync = xaq + RotatingMachineDynamics.statorLeakageReactance xQuadTrans = RotatingMachineDynamics.statorLeakageReactance + xaq * x1q / (xaq+ x1q) xQuadSubtrans = RotatingMachineDynamics.statorLeakageReactance + xaq * x1q* x2q / (xaq * x1q + xaq * x2q + x1q * x2q) tpdo = (xad + xfd) / (2*pi*nominal frequency * rfd) tppdo = (xad * xfd + xad * x1d + xfd * x1d) / (2*pi*nominal frequency * r1d * (xad + xfd) tpqo = (xaq + x1q) / (2*pi*nominal frequency * r1q) tppqo = (xaq * x1q + xaq * x2q + x1q * x2q)/ (2*pi*nominal frequency * r2q * (xaq + x1q). Are only valid for a simplified model where "Canay" reactance is zero. - - :xad: D-axis mutual reactance. Default: 0.0 - :rfd: Field winding resistance. Default: 0.0 - :xfd: Field winding leakage reactance. Default: 0.0 - :r1d: D-axis damper 1 winding resistance. Default: 0.0 - :x1d: D-axis damper 1 winding leakage reactance. Default: 0.0 - :xf1d: Differential mutual (`Canay`) reactance. Default: 0.0 - :xaq: Q-axis mutual reactance. Default: 0.0 - :r1q: Q-axis damper 1 winding resistance. Default: 0.0 - :x1q: Q-axis damper 1 winding leakage reactance. Default: 0.0 - :r2q: Q-axis damper 2 winding resistance. Default: 0.0 - :x2q: Q-axis damper 2 winding leakage reactance. Default: 0.0 - ''' - - cgmesProfile = SynchronousMachineDetailed.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'xad': [cgmesProfile.DY.value, ], - 'rfd': [cgmesProfile.DY.value, ], - 'xfd': [cgmesProfile.DY.value, ], - 'r1d': [cgmesProfile.DY.value, ], - 'x1d': [cgmesProfile.DY.value, ], - 'xf1d': [cgmesProfile.DY.value, ], - 'xaq': [cgmesProfile.DY.value, ], - 'r1q': [cgmesProfile.DY.value, ], - 'x1q': [cgmesProfile.DY.value, ], - 'r2q': [cgmesProfile.DY.value, ], - 'x2q': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SynchronousMachineDetailed: \n' + SynchronousMachineDetailed.__doc__ - - def __init__(self, xad = 0.0, rfd = 0.0, xfd = 0.0, r1d = 0.0, x1d = 0.0, xf1d = 0.0, xaq = 0.0, r1q = 0.0, x1q = 0.0, r2q = 0.0, x2q = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.xad = xad - self.rfd = rfd - self.xfd = xfd - self.r1d = r1d - self.x1d = x1d - self.xf1d = xf1d - self.xaq = xaq - self.r1q = r1q - self.x1q = x1q - self.r2q = r2q - self.x2q = x2q - - def __str__(self): - str = 'class=SynchronousMachineEquivalentCircuit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py b/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py deleted file mode 100644 index bb3b09c0..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class SynchronousMachineKind(Base): - ''' - Synchronous machine type. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=SynchronousMachineKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py b/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py deleted file mode 100644 index ad033564..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class SynchronousMachineModelKind(Base): - ''' - Type of synchronous machine model used in Dynamic simulation applications. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=SynchronousMachineModelKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py b/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py deleted file mode 100644 index bf125a97..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class SynchronousMachineOperatingMode(Base): - ''' - Synchronous machine operating mode. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=SynchronousMachineOperatingMode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py b/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py deleted file mode 100644 index c83de9b0..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py +++ /dev/null @@ -1,29 +0,0 @@ -from .SynchronousMachineDynamics import SynchronousMachineDynamics - - -class SynchronousMachineSimplified(SynchronousMachineDynamics): - ''' - The simplified model represents a synchronous generator as a constant internal voltage behind an impedance ( + ) as shown in the Simplified diagram. Since internal voltage is held constant, there is no input and any excitation system model will be ignored. There is also no output. This model should not be used for representing a real generator except, perhaps, small generators whose response is insignificant. The parameters used for the Simplified model include: - - ''' - - cgmesProfile = SynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SynchronousMachineDynamics: \n' + SynchronousMachineDynamics.__doc__ - - def __init__(self, *args, **kw_args): - super().__init__(*args, **kw_args) - - pass - - def __str__(self): - str = 'class=SynchronousMachineSimplified\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py b/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py deleted file mode 100644 index ef592f50..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py +++ /dev/null @@ -1,70 +0,0 @@ -from .SynchronousMachineDetailed import SynchronousMachineDetailed - - -class SynchronousMachineTimeConstantReactance(SynchronousMachineDetailed): - ''' - Synchronous machine detailed modelling types are defined by the combination of the attributes SynchronousMachineTimeConstantReactance.modelType and SynchronousMachineTimeConstantReactance.rotorType. The parameters used for models expressed in time constant reactance form include: - - :rotorType: Type of rotor on physical machine. Default: None - :modelType: Type of synchronous machine model used in Dynamic simulation applications. Default: None - :ks: Saturation loading correction factor (Ks) (>= 0). Used only by Type J model. Typical Value = 0. Default: 0.0 - :xDirectSync: Direct-axis synchronous reactance (Xd) (>= X`d). The quotient of a sustained value of that AC component of armature voltage that is produced by the total direct-axis flux due to direct-axis armature current and the value of the AC component of this current, the machine running at rated speed. Typical Value = 1.8. Default: 0.0 - :xDirectTrans: Direct-axis transient reactance (unsaturated) (X`d) (> =X``d). Typical Value = 0.5. Default: 0.0 - :xDirectSubtrans: Direct-axis subtransient reactance (unsaturated) (X``d) (> Xl). Typical Value = 0.2. Default: 0.0 - :xQuadSync: Quadrature-axis synchronous reactance (Xq) (> =X`q). The ratio of the component of reactive armature voltage, due to the quadrature-axis component of armature current, to this component of current, under steady state conditions and at rated frequency. Typical Value = 1.6. Default: 0.0 - :xQuadTrans: Quadrature-axis transient reactance (X`q) (> =X``q). Typical Value = 0.3. Default: 0.0 - :xQuadSubtrans: Quadrature-axis subtransient reactance (X``q) (> Xl). Typical Value = 0.2. Default: 0.0 - :tpdo: Direct-axis transient rotor time constant (T`do) (> T``do). Typical Value = 5. Default: 0 - :tppdo: Direct-axis subtransient rotor time constant (T``do) (> 0). Typical Value = 0.03. Default: 0 - :tpqo: Quadrature-axis transient rotor time constant (T`qo) (> T``qo). Typical Value = 0.5. Default: 0 - :tppqo: Quadrature-axis subtransient rotor time constant (T``qo) (> 0). Typical Value = 0.03. Default: 0 - :tc: Damping time constant for `Canay` reactance. Typical Value = 0. Default: 0 - ''' - - cgmesProfile = SynchronousMachineDetailed.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'rotorType': [cgmesProfile.DY.value, ], - 'modelType': [cgmesProfile.DY.value, ], - 'ks': [cgmesProfile.DY.value, ], - 'xDirectSync': [cgmesProfile.DY.value, ], - 'xDirectTrans': [cgmesProfile.DY.value, ], - 'xDirectSubtrans': [cgmesProfile.DY.value, ], - 'xQuadSync': [cgmesProfile.DY.value, ], - 'xQuadTrans': [cgmesProfile.DY.value, ], - 'xQuadSubtrans': [cgmesProfile.DY.value, ], - 'tpdo': [cgmesProfile.DY.value, ], - 'tppdo': [cgmesProfile.DY.value, ], - 'tpqo': [cgmesProfile.DY.value, ], - 'tppqo': [cgmesProfile.DY.value, ], - 'tc': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SynchronousMachineDetailed: \n' + SynchronousMachineDetailed.__doc__ - - def __init__(self, rotorType = None, modelType = None, ks = 0.0, xDirectSync = 0.0, xDirectTrans = 0.0, xDirectSubtrans = 0.0, xQuadSync = 0.0, xQuadTrans = 0.0, xQuadSubtrans = 0.0, tpdo = 0, tppdo = 0, tpqo = 0, tppqo = 0, tc = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.rotorType = rotorType - self.modelType = modelType - self.ks = ks - self.xDirectSync = xDirectSync - self.xDirectTrans = xDirectTrans - self.xDirectSubtrans = xDirectSubtrans - self.xQuadSync = xQuadSync - self.xQuadTrans = xQuadTrans - self.xQuadSubtrans = xQuadSubtrans - self.tpdo = tpdo - self.tppdo = tppdo - self.tpqo = tpqo - self.tppqo = tppqo - self.tc = tc - - def __str__(self): - str = 'class=SynchronousMachineTimeConstantReactance\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py b/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py deleted file mode 100644 index 362af11b..00000000 --- a/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .SynchronousMachineDynamics import SynchronousMachineDynamics - - -class SynchronousMachineUserDefined(SynchronousMachineDynamics): - ''' - Synchronous machine whose dynamic behaviour is described by a user-defined model. - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = SynchronousMachineDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SynchronousMachineDynamics: \n' + SynchronousMachineDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=SynchronousMachineUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TapChanger.py b/cimpy/cgmes_v2_4_15/TapChanger.py deleted file mode 100644 index 8baec9c0..00000000 --- a/cimpy/cgmes_v2_4_15/TapChanger.py +++ /dev/null @@ -1,61 +0,0 @@ -from .PowerSystemResource import PowerSystemResource - - -class TapChanger(PowerSystemResource): - ''' - Mechanism for changing transformer winding tap positions. - - :highStep: Highest possible tap step position, advance from neutral. The attribute shall be greater than lowStep. Default: 0 - :lowStep: Lowest possible tap step position, retard from neutral Default: 0 - :ltcFlag: Specifies whether or not a TapChanger has load tap changing capabilities. Default: False - :neutralStep: The neutral tap step position for this winding. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0 - :neutralU: Voltage at which the winding operates at the neutral tap setting. Default: 0.0 - :normalStep: The tap step position used in `normal` network operation for this winding. For a `Fixed` tap changer indicates the current physical tap setting. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0 - :TapChangerControl: The tap changers that participates in this regulating tap control scheme. Default: None - :TapSchedules: A TapSchedule is associated with a TapChanger. Default: "list" - :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False - :step: Tap changer position. Starting step for a steady state solution. Non integer values are allowed to support continuous tap variables. The reasons for continuous value are to support study cases where no discrete tap changers has yet been designed, a solutions where a narrow voltage band force the tap step to oscillate or accommodate for a continuous solution as input. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0.0 - :SvTapStep: The tap step state associated with the tap changer. Default: None - ''' - - cgmesProfile = PowerSystemResource.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'highStep': [cgmesProfile.EQ.value, ], - 'lowStep': [cgmesProfile.EQ.value, ], - 'ltcFlag': [cgmesProfile.EQ.value, ], - 'neutralStep': [cgmesProfile.EQ.value, ], - 'neutralU': [cgmesProfile.EQ.value, ], - 'normalStep': [cgmesProfile.EQ.value, ], - 'TapChangerControl': [cgmesProfile.EQ.value, ], - 'TapSchedules': [cgmesProfile.EQ.value, ], - 'controlEnabled': [cgmesProfile.SSH.value, ], - 'step': [cgmesProfile.SSH.value, ], - 'SvTapStep': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class PowerSystemResource: \n' + PowerSystemResource.__doc__ - - def __init__(self, highStep = 0, lowStep = 0, ltcFlag = False, neutralStep = 0, neutralU = 0.0, normalStep = 0, TapChangerControl = None, TapSchedules = "list", controlEnabled = False, step = 0.0, SvTapStep = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.highStep = highStep - self.lowStep = lowStep - self.ltcFlag = ltcFlag - self.neutralStep = neutralStep - self.neutralU = neutralU - self.normalStep = normalStep - self.TapChangerControl = TapChangerControl - self.TapSchedules = TapSchedules - self.controlEnabled = controlEnabled - self.step = step - self.SvTapStep = SvTapStep - - def __str__(self): - str = 'class=TapChanger\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TapChangerControl.py b/cimpy/cgmes_v2_4_15/TapChangerControl.py deleted file mode 100644 index de69d595..00000000 --- a/cimpy/cgmes_v2_4_15/TapChangerControl.py +++ /dev/null @@ -1,31 +0,0 @@ -from .RegulatingControl import RegulatingControl - - -class TapChangerControl(RegulatingControl): - ''' - Describes behavior specific to tap changers, e.g. how the voltage at the end of a line varies with the load level and compensation of the voltage drop by tap adjustment. - - :TapChanger: The regulating control scheme in which this tap changer participates. Default: "list" - ''' - - cgmesProfile = RegulatingControl.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'TapChanger': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class RegulatingControl: \n' + RegulatingControl.__doc__ - - def __init__(self, TapChanger = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.TapChanger = TapChanger - - def __str__(self): - str = 'class=TapChangerControl\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py b/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py deleted file mode 100644 index e1fbc340..00000000 --- a/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py +++ /dev/null @@ -1,45 +0,0 @@ -from .Base import Base - - -class TapChangerTablePoint(Base): - ''' - - - :b: The magnetizing branch susceptance deviation in percent of nominal value. The actual susceptance is calculated as follows: calculated magnetizing susceptance = b(nominal) * (1 + b(from this class)/100). The b(nominal) is defined as the static magnetizing susceptance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 - :g: The magnetizing branch conductance deviation in percent of nominal value. The actual conductance is calculated as follows: calculated magnetizing conductance = g(nominal) * (1 + g(from this class)/100). The g(nominal) is defined as the static magnetizing conductance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 - :r: The resistance deviation in percent of nominal value. The actual reactance is calculated as follows: calculated resistance = r(nominal) * (1 + r(from this class)/100). The r(nominal) is defined as the static resistance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 - :ratio: The voltage ratio in per unit. Hence this is a value close to one. Default: 0.0 - :step: The tap step. Default: 0 - :x: The series reactance deviation in percent of nominal value. The actual reactance is calculated as follows: calculated reactance = x(nominal) * (1 + x(from this class)/100). The x(nominal) is defined as the static series reactance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'b': [cgmesProfile.EQ.value, ], - 'g': [cgmesProfile.EQ.value, ], - 'r': [cgmesProfile.EQ.value, ], - 'ratio': [cgmesProfile.EQ.value, ], - 'step': [cgmesProfile.EQ.value, ], - 'x': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, b = 0.0, g = 0.0, r = 0.0, ratio = 0.0, step = 0, x = 0.0, ): - - self.b = b - self.g = g - self.r = r - self.ratio = ratio - self.step = step - self.x = x - - def __str__(self): - str = 'class=TapChangerTablePoint\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TapSchedule.py b/cimpy/cgmes_v2_4_15/TapSchedule.py deleted file mode 100644 index ec29f48a..00000000 --- a/cimpy/cgmes_v2_4_15/TapSchedule.py +++ /dev/null @@ -1,31 +0,0 @@ -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule - - -class TapSchedule(SeasonDayTypeSchedule): - ''' - A pre-established pattern over time for a tap step. - - :TapChanger: A TapChanger can have TapSchedules. Default: None - ''' - - cgmesProfile = SeasonDayTypeSchedule.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'TapChanger': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class SeasonDayTypeSchedule: \n' + SeasonDayTypeSchedule.__doc__ - - def __init__(self, TapChanger = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.TapChanger = TapChanger - - def __str__(self): - str = 'class=TapSchedule\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Temperature.py b/cimpy/cgmes_v2_4_15/Temperature.py deleted file mode 100644 index 4fa91445..00000000 --- a/cimpy/cgmes_v2_4_15/Temperature.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Temperature(Base): - ''' - Value of temperature in degrees Celsius. - - :multiplier: Default: None - :unit: Default: None - :value: Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, multiplier = None, unit = None, value = 0.0, ): - - self.multiplier = multiplier - self.unit = unit - self.value = value - - def __str__(self): - str = 'class=Temperature\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Terminal.py b/cimpy/cgmes_v2_4_15/Terminal.py deleted file mode 100644 index def7a98d..00000000 --- a/cimpy/cgmes_v2_4_15/Terminal.py +++ /dev/null @@ -1,64 +0,0 @@ -from .ACDCTerminal import ACDCTerminal - - -class Terminal(ACDCTerminal): - ''' - An AC electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. - - :ConverterDCSides: Point of common coupling terminal for this converter DC side. It is typically the terminal on the power transformer (or switch) closest to the AC network. The power flow measurement must be the sum of all flows into the transformer. Default: "list" - :ConductingEquipment: The conducting equipment of the terminal. Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: None - :phases: Represents the normal network phasing condition. If the attribute is missing three phases (ABC or ABCN) shall be assumed. Default: None - :RegulatingControl: The terminal associated with this regulating control. The terminal is associated instead of a node, since the terminal could connect into either a topological node (bus in bus-branch model) or a connectivity node (detailed switch model). Sometimes it is useful to model regulation at a terminal of a bus bar object since the bus bar can be present in both a bus-branch model or a model with switch detail. Default: None - :TieFlow: The control area tie flows to which this terminal associates. Default: "list" - :TransformerEnd: All transformer ends connected at this terminal. Default: "list" - :ConnectivityNode: Terminals interconnected with zero impedance at a this connectivity node. Default: None - :HasFirstMutualCoupling: Mutual couplings associated with the branch as the first branch. Default: "list" - :HasSecondMutualCoupling: Mutual couplings with the branch associated as the first branch. Default: "list" - :SvPowerFlow: The power flow state variable associated with the terminal. Default: None - :RemoteInputSignal: Input signal coming from this terminal. Default: "list" - :TopologicalNode: The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connectivity nodes in some cases. Note that if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: None - ''' - - cgmesProfile = ACDCTerminal.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.TP.value, cgmesProfile.EQ_BD.value, ], - 'ConverterDCSides': [cgmesProfile.EQ.value, ], - 'ConductingEquipment': [cgmesProfile.EQ.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - 'phases': [cgmesProfile.EQ.value, ], - 'RegulatingControl': [cgmesProfile.EQ.value, ], - 'TieFlow': [cgmesProfile.EQ.value, ], - 'TransformerEnd': [cgmesProfile.EQ.value, ], - 'ConnectivityNode': [cgmesProfile.EQ.value, ], - 'HasFirstMutualCoupling': [cgmesProfile.EQ.value, ], - 'HasSecondMutualCoupling': [cgmesProfile.EQ.value, ], - 'SvPowerFlow': [cgmesProfile.SV.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'TopologicalNode': [cgmesProfile.TP.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ACDCTerminal: \n' + ACDCTerminal.__doc__ - - def __init__(self, ConverterDCSides = "list", ConductingEquipment = None, phases = None, RegulatingControl = None, TieFlow = "list", TransformerEnd = "list", ConnectivityNode = None, HasFirstMutualCoupling = "list", HasSecondMutualCoupling = "list", SvPowerFlow = None, RemoteInputSignal = "list", TopologicalNode = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ConverterDCSides = ConverterDCSides - self.ConductingEquipment = ConductingEquipment - self.phases = phases - self.RegulatingControl = RegulatingControl - self.TieFlow = TieFlow - self.TransformerEnd = TransformerEnd - self.ConnectivityNode = ConnectivityNode - self.HasFirstMutualCoupling = HasFirstMutualCoupling - self.HasSecondMutualCoupling = HasSecondMutualCoupling - self.SvPowerFlow = SvPowerFlow - self.RemoteInputSignal = RemoteInputSignal - self.TopologicalNode = TopologicalNode - - def __str__(self): - str = 'class=Terminal\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TextDiagramObject.py b/cimpy/cgmes_v2_4_15/TextDiagramObject.py deleted file mode 100644 index af268ac1..00000000 --- a/cimpy/cgmes_v2_4_15/TextDiagramObject.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DiagramObject import DiagramObject - - -class TextDiagramObject(DiagramObject): - ''' - A diagram object for placing free-text or text derived from an associated domain object. - - :text: The text that is displayed by this text diagram object. Default: '' - ''' - - cgmesProfile = DiagramObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'text': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DiagramObject: \n' + DiagramObject.__doc__ - - def __init__(self, text = '', *args, **kw_args): - super().__init__(*args, **kw_args) - - self.text = text - - def __str__(self): - str = 'class=TextDiagramObject\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py b/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py deleted file mode 100644 index 0b35ee9f..00000000 --- a/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .GeneratingUnit import GeneratingUnit - - -class ThermalGeneratingUnit(GeneratingUnit): - ''' - A generating unit whose prime mover could be a steam turbine, combustion turbine, or diesel engine. - - :FossilFuels: A thermal generating unit may have one or more fossil fuels. Default: "list" - ''' - - cgmesProfile = GeneratingUnit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'FossilFuels': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class GeneratingUnit: \n' + GeneratingUnit.__doc__ - - def __init__(self, FossilFuels = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.FossilFuels = FossilFuels - - def __str__(self): - str = 'class=ThermalGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TieFlow.py b/cimpy/cgmes_v2_4_15/TieFlow.py deleted file mode 100644 index 35669913..00000000 --- a/cimpy/cgmes_v2_4_15/TieFlow.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class TieFlow(Base): - ''' - A flow specification in terms of location and direction for a control area. - - :Terminal: The terminal to which this tie flow belongs. Default: None - :ControlArea: The control area of the tie flows. Default: None - :positiveFlowIn: True if the flow into the terminal (load convention) is also flow into the control area. For example, this attribute should be true if using the tie line terminal further away from the control area. For example to represent a tie to a shunt component (like a load or generator) in another area, this is the near end of a branch and this attribute would be specified as false. Default: False - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - 'ControlArea': [cgmesProfile.EQ.value, ], - 'positiveFlowIn': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, Terminal = None, ControlArea = None, positiveFlowIn = False, ): - - self.Terminal = Terminal - self.ControlArea = ControlArea - self.positiveFlowIn = positiveFlowIn - - def __str__(self): - str = 'class=TieFlow\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TopologicalIsland.py b/cimpy/cgmes_v2_4_15/TopologicalIsland.py deleted file mode 100644 index d79ceb67..00000000 --- a/cimpy/cgmes_v2_4_15/TopologicalIsland.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class TopologicalIsland(IdentifiedObject): - ''' - An electrically connected subset of the network. Topological islands can change as the current network state changes: e.g. due to - disconnect switches or breakers change state in a SCADA/EMS - manual creation, change or deletion of topological nodes in a planning tool. - - :AngleRefTopologicalNode: The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is typically optional. Default: None - :TopologicalNodes: A topological node belongs to a topological island. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, ], - 'AngleRefTopologicalNode': [cgmesProfile.SV.value, ], - 'TopologicalNodes': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, AngleRefTopologicalNode = None, TopologicalNodes = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.AngleRefTopologicalNode = AngleRefTopologicalNode - self.TopologicalNodes = TopologicalNodes - - def __str__(self): - str = 'class=TopologicalIsland\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TopologicalNode.py b/cimpy/cgmes_v2_4_15/TopologicalNode.py deleted file mode 100644 index d9e0373b..00000000 --- a/cimpy/cgmes_v2_4_15/TopologicalNode.py +++ /dev/null @@ -1,76 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class TopologicalNode(IdentifiedObject): - ''' - For a detailed substation model a topological node is a set of connectivity nodes that, in the current network state, are connected together through any type of closed switches, including jumpers. Topological nodes change as the current network state changes (i.e., switches, breakers, etc. change state). For a planning model, switch statuses are not used to form topological nodes. Instead they are manually created or deleted in a model builder tool. Topological nodes maintained this way are also called "busses". - - :SvInjection: The topological node associated with the flow injection state variable. Default: None - :SvVoltage: The topological node associated with the voltage state. Default: None - :AngleRefTopologicalIsland: The island for which the node is an angle reference. Normally there is one angle reference node for each island. Default: None - :TopologicalIsland: A topological node belongs to a topological island. Default: None - :BaseVoltage: The base voltage of the topologocial node. Default: None - :ConnectivityNodes: The topological node to which this connectivity node is assigned. May depend on the current state of switches in the network. Default: "list" - :ConnectivityNodeContainer: The connectivity node container to which the toplogical node belongs. Default: None - :ReportingGroup: The topological nodes that belong to the reporting group. Default: None - :Terminal: The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connectivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: "list" - :boundaryPoint: Identifies if a node is a BoundaryPoint. If boundaryPoint=true the ConnectivityNode or the TopologicalNode represents a BoundaryPoint. Default: False - :fromEndIsoCode: The attribute is used for an exchange of the ISO code of the region to which the `From` side of the Boundary point belongs to or it is connected to. The ISO code is two characters country code as defined by ISO 3166 (). The length of the string is 2 characters maximum. The attribute is a required for the Boundary Model Authority Set where this attribute is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :fromEndName: The attribute is used for an exchange of a human readable name with length of the string 32 characters maximum. The attribute covers two cases: The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :fromEndNameTso: The attribute is used for an exchange of the name of the TSO to which the `From` side of the Boundary point belongs to or it is connected to. The length of the string is 32 characters maximum. The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndIsoCode: The attribute is used for an exchange of the ISO code of the region to which the `To` side of the Boundary point belongs to or it is connected to. The ISO code is two characters country code as defined by ISO 3166 (). The length of the string is 2 characters maximum. The attribute is a required for the Boundary Model Authority Set where this attribute is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndName: The attribute is used for an exchange of a human readable name with length of the string 32 characters maximum. The attribute covers two cases: The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - :toEndNameTso: The attribute is used for an exchange of the name of the TSO to which the `To` side of the Boundary point belongs to or it is connected to. The length of the string is 32 characters maximum. The attribute is required for the Boundary Model Authority Set where it is used only for the TopologicalNode in the Boundary Topology profile and ConnectivityNode in the Boundary Equipment profile. Default: '' - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SV.value, cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - 'SvInjection': [cgmesProfile.SV.value, ], - 'SvVoltage': [cgmesProfile.SV.value, ], - 'AngleRefTopologicalIsland': [cgmesProfile.SV.value, ], - 'TopologicalIsland': [cgmesProfile.SV.value, ], - 'BaseVoltage': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - 'ConnectivityNodes': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - 'ConnectivityNodeContainer': [cgmesProfile.TP.value, cgmesProfile.TP_BD.value, ], - 'ReportingGroup': [cgmesProfile.TP.value, ], - 'Terminal': [cgmesProfile.TP.value, ], - 'boundaryPoint': [cgmesProfile.TP_BD.value, ], - 'fromEndIsoCode': [cgmesProfile.TP_BD.value, ], - 'fromEndName': [cgmesProfile.TP_BD.value, ], - 'fromEndNameTso': [cgmesProfile.TP_BD.value, ], - 'toEndIsoCode': [cgmesProfile.TP_BD.value, ], - 'toEndName': [cgmesProfile.TP_BD.value, ], - 'toEndNameTso': [cgmesProfile.TP_BD.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, SvInjection = None, SvVoltage = None, AngleRefTopologicalIsland = None, TopologicalIsland = None, BaseVoltage = None, ConnectivityNodes = "list", ConnectivityNodeContainer = None, ReportingGroup = None, Terminal = "list", boundaryPoint = False, fromEndIsoCode = '', fromEndName = '', fromEndNameTso = '', toEndIsoCode = '', toEndName = '', toEndNameTso = '', *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SvInjection = SvInjection - self.SvVoltage = SvVoltage - self.AngleRefTopologicalIsland = AngleRefTopologicalIsland - self.TopologicalIsland = TopologicalIsland - self.BaseVoltage = BaseVoltage - self.ConnectivityNodes = ConnectivityNodes - self.ConnectivityNodeContainer = ConnectivityNodeContainer - self.ReportingGroup = ReportingGroup - self.Terminal = Terminal - self.boundaryPoint = boundaryPoint - self.fromEndIsoCode = fromEndIsoCode - self.fromEndName = fromEndName - self.fromEndNameTso = fromEndNameTso - self.toEndIsoCode = toEndIsoCode - self.toEndName = toEndName - self.toEndNameTso = toEndNameTso - - def __str__(self): - str = 'class=TopologicalNode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TransformerControlMode.py b/cimpy/cgmes_v2_4_15/TransformerControlMode.py deleted file mode 100644 index 35c72f87..00000000 --- a/cimpy/cgmes_v2_4_15/TransformerControlMode.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class TransformerControlMode(Base): - ''' - Control modes for a transformer. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=TransformerControlMode\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TransformerEnd.py b/cimpy/cgmes_v2_4_15/TransformerEnd.py deleted file mode 100644 index 1e8942f0..00000000 --- a/cimpy/cgmes_v2_4_15/TransformerEnd.py +++ /dev/null @@ -1,52 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class TransformerEnd(IdentifiedObject): - ''' - A conducting connection point of a power transformer. It corresponds to a physical transformer winding terminal. In earlier CIM versions, the TransformerWinding class served a similar purpose, but this class is more flexible because it associates to terminal but is not a specialization of ConductingEquipment. - - :BaseVoltage: Base voltage of the transformer end. This is essential for PU calculation. Default: None - :Terminal: Terminal of the power transformer to which this transformer end belongs. Default: None - :PhaseTapChanger: Transformer end to which this phase tap changer belongs. Default: None - :RatioTapChanger: Transformer end to which this ratio tap changer belongs. Default: None - :endNumber: Number for this transformer end, corresponding to the end`s order in the power transformer vector group or phase angle clock number. Highest voltage winding should be 1. Each end within a power transformer should have a unique subsequent end number. Note the transformer end number need not match the terminal sequence number. Default: 0 - :rground: (for Yn and Zn connections) Resistance part of neutral impedance where `grounded` is true. Default: 0.0 - :grounded: (for Yn and Zn connections) True if the neutral is solidly grounded. Default: False - :xground: (for Yn and Zn connections) Reactive part of neutral impedance where `grounded` is true. Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'BaseVoltage': [cgmesProfile.EQ.value, ], - 'Terminal': [cgmesProfile.EQ.value, ], - 'PhaseTapChanger': [cgmesProfile.EQ.value, ], - 'RatioTapChanger': [cgmesProfile.EQ.value, ], - 'endNumber': [cgmesProfile.EQ.value, ], - 'rground': [cgmesProfile.EQ.value, ], - 'grounded': [cgmesProfile.EQ.value, ], - 'xground': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, BaseVoltage = None, Terminal = None, PhaseTapChanger = None, RatioTapChanger = None, endNumber = 0, rground = 0.0, grounded = False, xground = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.BaseVoltage = BaseVoltage - self.Terminal = Terminal - self.PhaseTapChanger = PhaseTapChanger - self.RatioTapChanger = RatioTapChanger - self.endNumber = endNumber - self.rground = rground - self.grounded = grounded - self.xground = xground - - def __str__(self): - str = 'class=TransformerEnd\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TurbLCFB1.py b/cimpy/cgmes_v2_4_15/TurbLCFB1.py deleted file mode 100644 index 9b5ace07..00000000 --- a/cimpy/cgmes_v2_4_15/TurbLCFB1.py +++ /dev/null @@ -1,64 +0,0 @@ -from .TurbineLoadControllerDynamics import TurbineLoadControllerDynamics - - -class TurbLCFB1(TurbineLoadControllerDynamics): - ''' - Turbine Load Controller model developed in the WECC. This model represents a supervisory turbine load controller that acts to maintain turbine power at a set value by continuous adjustment of the turbine governor speed-load reference. This model is intended to represent slow reset 'outer loop' controllers managing the action of the turbine governor. - - :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 - :speedReferenceGovernor: Type of turbine governor reference (Type). true = speed reference governor false = load reference governor. Typical Value = true. Default: False - :db: Controller dead band (db). Typical Value = 0. Default: 0.0 - :emax: Maximum control error (Emax) (note 4). Typical Value = 0.02. Default: 0.0 - :fb: Frequency bias gain (Fb). Typical Value = 0. Default: 0.0 - :kp: Proportional gain (Kp). Typical Value = 0. Default: 0.0 - :ki: Integral gain (Ki). Typical Value = 0. Default: 0.0 - :fbf: Frequency bias flag (Fbf). true = enable frequency bias false = disable frequency bias. Typical Value = false. Default: False - :pbf: Power controller flag (Pbf). true = enable load controller false = disable load controller. Typical Value = false. Default: False - :tpelec: Power transducer time constant (Tpelec). Typical Value = 0. Default: 0 - :irmax: Maximum turbine speed/load reference bias (Irmax) (note 3). Typical Value = 0. Default: 0.0 - :pmwset: Power controller setpoint (Pmwset) (note 1). Unit = MW. Typical Value = 0. Default: 0.0 - ''' - - cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'mwbase': [cgmesProfile.DY.value, ], - 'speedReferenceGovernor': [cgmesProfile.DY.value, ], - 'db': [cgmesProfile.DY.value, ], - 'emax': [cgmesProfile.DY.value, ], - 'fb': [cgmesProfile.DY.value, ], - 'kp': [cgmesProfile.DY.value, ], - 'ki': [cgmesProfile.DY.value, ], - 'fbf': [cgmesProfile.DY.value, ], - 'pbf': [cgmesProfile.DY.value, ], - 'tpelec': [cgmesProfile.DY.value, ], - 'irmax': [cgmesProfile.DY.value, ], - 'pmwset': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineLoadControllerDynamics: \n' + TurbineLoadControllerDynamics.__doc__ - - def __init__(self, mwbase = 0.0, speedReferenceGovernor = False, db = 0.0, emax = 0.0, fb = 0.0, kp = 0.0, ki = 0.0, fbf = False, pbf = False, tpelec = 0, irmax = 0.0, pmwset = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.mwbase = mwbase - self.speedReferenceGovernor = speedReferenceGovernor - self.db = db - self.emax = emax - self.fb = fb - self.kp = kp - self.ki = ki - self.fbf = fbf - self.pbf = pbf - self.tpelec = tpelec - self.irmax = irmax - self.pmwset = pmwset - - def __str__(self): - str = 'class=TurbLCFB1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py b/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py deleted file mode 100644 index e128aa67..00000000 --- a/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py +++ /dev/null @@ -1,37 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class TurbineGovernorDynamics(DynamicsFunctionBlock): - ''' - Turbine-governor function block whose behavior is described by reference to a standard model - - :SynchronousMachineDynamics: Turbine-governor model associated with this synchronous machine model. Default: "list" - :AsynchronousMachineDynamics: Asynchronous machine model with which this turbine-governor model is associated. Default: None - :TurbineLoadControllerDynamics: Turbine load controller providing input to this turbine-governor. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'SynchronousMachineDynamics': [cgmesProfile.DY.value, ], - 'AsynchronousMachineDynamics': [cgmesProfile.DY.value, ], - 'TurbineLoadControllerDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, SynchronousMachineDynamics = "list", AsynchronousMachineDynamics = None, TurbineLoadControllerDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.SynchronousMachineDynamics = SynchronousMachineDynamics - self.AsynchronousMachineDynamics = AsynchronousMachineDynamics - self.TurbineLoadControllerDynamics = TurbineLoadControllerDynamics - - def __str__(self): - str = 'class=TurbineGovernorDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py b/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py deleted file mode 100644 index 14dd9d06..00000000 --- a/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .TurbineGovernorDynamics import TurbineGovernorDynamics - - -class TurbineGovernorUserDefined(TurbineGovernorDynamics): - ''' - Turbine-governor function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = TurbineGovernorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineGovernorDynamics: \n' + TurbineGovernorDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=TurbineGovernorUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py b/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py deleted file mode 100644 index 7401aae2..00000000 --- a/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class TurbineLoadControllerDynamics(DynamicsFunctionBlock): - ''' - Turbine load controller function block whose behavior is described by reference to a standard model - - :TurbineGovernorDynamics: Turbine-governor controlled by this turbine load controller. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'TurbineGovernorDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, TurbineGovernorDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.TurbineGovernorDynamics = TurbineGovernorDynamics - - def __str__(self): - str = 'class=TurbineLoadControllerDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py b/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py deleted file mode 100644 index 84946b5a..00000000 --- a/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .TurbineLoadControllerDynamics import TurbineLoadControllerDynamics - - -class TurbineLoadControllerUserDefined(TurbineLoadControllerDynamics): - ''' - Turbine load controller function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class TurbineLoadControllerDynamics: \n' + TurbineLoadControllerDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=TurbineLoadControllerUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py b/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py deleted file mode 100644 index ae1b368b..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py +++ /dev/null @@ -1,49 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcLim2Simplified(UnderexcitationLimiterDynamics): - ''' - This model can be derived from UnderexcLimIEEE2. The limit characteristic (look -up table) is a single straight-line, the same as UnderexcLimIEEE2 (see Figure 10.4 (p 32), IEEE 421.5-2005 Section 10.2). - - :q0: Segment Q initial point (Q0). Typical Value = -0.31. Default: 0.0 - :q1: Segment Q end point (Q1). Typical Value = -0.1. Default: 0.0 - :p0: Segment P initial point (P0). Typical Value = 0. Default: 0.0 - :p1: Segment P end point (P1). Typical Value = 1. Default: 0.0 - :kui: Gain Under excitation limiter (Kui). Typical Value = 0.1. Default: 0.0 - :vuimin: Minimum error signal (V). Typical Value = 0. Default: 0.0 - :vuimax: Maximum error signal (V). Typical Value = 1. Default: 0.0 - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'q0': [cgmesProfile.DY.value, ], - 'q1': [cgmesProfile.DY.value, ], - 'p0': [cgmesProfile.DY.value, ], - 'p1': [cgmesProfile.DY.value, ], - 'kui': [cgmesProfile.DY.value, ], - 'vuimin': [cgmesProfile.DY.value, ], - 'vuimax': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, q0 = 0.0, q1 = 0.0, p0 = 0.0, p1 = 0.0, kui = 0.0, vuimin = 0.0, vuimax = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.q0 = q0 - self.q1 = q1 - self.p0 = p0 - self.p1 = p1 - self.kui = kui - self.vuimin = vuimin - self.vuimax = vuimax - - def __str__(self): - str = 'class=UnderexcLim2Simplified\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py b/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py deleted file mode 100644 index de0e005a..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py +++ /dev/null @@ -1,73 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcLimIEEE1(UnderexcitationLimiterDynamics): - ''' - The class represents the Type UEL1 model which has a circular limit boundary when plotted in terms of machine reactive power vs. real power output. Reference: IEEE UEL1 421.5-2005 Section 10.1. - - :kur: UEL radius setting (K). Typical Value = 1.95. Default: 0.0 - :kuc: UEL center setting (K). Typical Value = 1.38. Default: 0.0 - :kuf: UEL excitation system stabilizer gain (K). Typical Value = 3.3. Default: 0.0 - :vurmax: UEL maximum limit for radius phasor magnitude (V). Typical Value = 5.8. Default: 0.0 - :vucmax: UEL maximum limit for operating point phasor magnitude (V). Typical Value = 5.8. Default: 0.0 - :kui: UEL integral gain (K). Typical Value = 0. Default: 0.0 - :kul: UEL proportional gain (K). Typical Value = 100. Default: 0.0 - :vuimax: UEL integrator output maximum limit (V). Default: 0.0 - :vuimin: UEL integrator output minimum limit (V). Default: 0.0 - :tu1: UEL lead time constant (T). Typical Value = 0. Default: 0 - :tu2: UEL lag time constant (T). Typical Value = 0.05. Default: 0 - :tu3: UEL lead time constant (T). Typical Value = 0. Default: 0 - :tu4: UEL lag time constant (T). Typical Value = 0. Default: 0 - :vulmax: UEL output maximum limit (V). Typical Value = 18. Default: 0.0 - :vulmin: UEL output minimum limit (V). Typical Value = -18. Default: 0.0 - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kur': [cgmesProfile.DY.value, ], - 'kuc': [cgmesProfile.DY.value, ], - 'kuf': [cgmesProfile.DY.value, ], - 'vurmax': [cgmesProfile.DY.value, ], - 'vucmax': [cgmesProfile.DY.value, ], - 'kui': [cgmesProfile.DY.value, ], - 'kul': [cgmesProfile.DY.value, ], - 'vuimax': [cgmesProfile.DY.value, ], - 'vuimin': [cgmesProfile.DY.value, ], - 'tu1': [cgmesProfile.DY.value, ], - 'tu2': [cgmesProfile.DY.value, ], - 'tu3': [cgmesProfile.DY.value, ], - 'tu4': [cgmesProfile.DY.value, ], - 'vulmax': [cgmesProfile.DY.value, ], - 'vulmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, kur = 0.0, kuc = 0.0, kuf = 0.0, vurmax = 0.0, vucmax = 0.0, kui = 0.0, kul = 0.0, vuimax = 0.0, vuimin = 0.0, tu1 = 0, tu2 = 0, tu3 = 0, tu4 = 0, vulmax = 0.0, vulmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kur = kur - self.kuc = kuc - self.kuf = kuf - self.vurmax = vurmax - self.vucmax = vucmax - self.kui = kui - self.kul = kul - self.vuimax = vuimax - self.vuimin = vuimin - self.tu1 = tu1 - self.tu2 = tu2 - self.tu3 = tu3 - self.tu4 = tu4 - self.vulmax = vulmax - self.vulmin = vulmin - - def __str__(self): - str = 'class=UnderexcLimIEEE1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py b/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py deleted file mode 100644 index 15d0db60..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py +++ /dev/null @@ -1,148 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcLimIEEE2(UnderexcitationLimiterDynamics): - ''' - The class represents the Type UEL2 which has either a straight-line or multi-segment characteristic when plotted in terms of machine reactive power output vs. real power output. Reference: IEEE UEL2 421.5-2005 Section 10.2. (Limit characteristic lookup table shown in Figure 10.4 (p 32) of the standard). - - :tuv: Voltage filter time constant (T). Typical Value = 5. Default: 0 - :tup: Real power filter time constant (T). Typical Value = 5. Default: 0 - :tuq: Reactive power filter time constant (T). Typical Value = 0. Default: 0 - :kui: UEL integral gain (K). Typical Value = 0.5. Default: 0.0 - :kul: UEL proportional gain (K). Typical Value = 0.8. Default: 0.0 - :vuimax: UEL integrator output maximum limit (V). Typical Value = 0.25. Default: 0.0 - :vuimin: UEL integrator output minimum limit (V). Typical Value = 0. Default: 0.0 - :kuf: UEL excitation system stabilizer gain (K). Typical Value = 0. Default: 0.0 - :kfb: Gain associated with optional integrator feedback input signal to UEL (K). Typical Value = 0. Default: 0.0 - :tul: Time constant associated with optional integrator feedback input signal to UEL (T). Typical Value = 0. Default: 0 - :tu1: UEL lead time constant (T). Typical Value = 0. Default: 0 - :tu2: UEL lag time constant (T). Typical Value = 0. Default: 0 - :tu3: UEL lead time constant (T). Typical Value = 0. Default: 0 - :tu4: UEL lag time constant (T). Typical Value = 0. Default: 0 - :vulmax: UEL output maximum limit (V). Typical Value = 0.25. Default: 0.0 - :vulmin: UEL output minimum limit (V). Typical Value = 0. Default: 0.0 - :p0: Real power values for endpoints (P). Typical Value = 0. Default: 0.0 - :q0: Reactive power values for endpoints (Q). Typical Value = -0.31. Default: 0.0 - :p1: Real power values for endpoints (P). Typical Value = 0.3. Default: 0.0 - :q1: Reactive power values for endpoints (Q). Typical Value = -0.31. Default: 0.0 - :p2: Real power values for endpoints (P). Typical Value = 0.6. Default: 0.0 - :q2: Reactive power values for endpoints (Q). Typical Value = -0.28. Default: 0.0 - :p3: Real power values for endpoints (P). Typical Value = 0.9. Default: 0.0 - :q3: Reactive power values for endpoints (Q). Typical Value = -0.21. Default: 0.0 - :p4: Real power values for endpoints (P). Typical Value = 1.02. Default: 0.0 - :q4: Reactive power values for endpoints (Q). Typical Value = 0. Default: 0.0 - :p5: Real power values for endpoints (P). Default: 0.0 - :q5: Reactive power values for endpoints (Q). Default: 0.0 - :p6: Real power values for endpoints (P). Default: 0.0 - :q6: Reactive power values for endpoints (Q). Default: 0.0 - :p7: Real power values for endpoints (P). Default: 0.0 - :q7: Reactive power values for endpoints (Q). Default: 0.0 - :p8: Real power values for endpoints (P). Default: 0.0 - :q8: Reactive power values for endpoints (Q). Default: 0.0 - :p9: Real power values for endpoints (P). Default: 0.0 - :q9: Reactive power values for endpoints (Q). Default: 0.0 - :p10: Real power values for endpoints (P). Default: 0.0 - :q10: Reactive power values for endpoints (Q). Default: 0.0 - :k1: UEL terminal voltage exponent applied to real power input to UEL limit look-up table (k1). Typical Value = 2. Default: 0.0 - :k2: UEL terminal voltage exponent applied to reactive power output from UEL limit look-up table (k2). Typical Value = 2. Default: 0.0 - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tuv': [cgmesProfile.DY.value, ], - 'tup': [cgmesProfile.DY.value, ], - 'tuq': [cgmesProfile.DY.value, ], - 'kui': [cgmesProfile.DY.value, ], - 'kul': [cgmesProfile.DY.value, ], - 'vuimax': [cgmesProfile.DY.value, ], - 'vuimin': [cgmesProfile.DY.value, ], - 'kuf': [cgmesProfile.DY.value, ], - 'kfb': [cgmesProfile.DY.value, ], - 'tul': [cgmesProfile.DY.value, ], - 'tu1': [cgmesProfile.DY.value, ], - 'tu2': [cgmesProfile.DY.value, ], - 'tu3': [cgmesProfile.DY.value, ], - 'tu4': [cgmesProfile.DY.value, ], - 'vulmax': [cgmesProfile.DY.value, ], - 'vulmin': [cgmesProfile.DY.value, ], - 'p0': [cgmesProfile.DY.value, ], - 'q0': [cgmesProfile.DY.value, ], - 'p1': [cgmesProfile.DY.value, ], - 'q1': [cgmesProfile.DY.value, ], - 'p2': [cgmesProfile.DY.value, ], - 'q2': [cgmesProfile.DY.value, ], - 'p3': [cgmesProfile.DY.value, ], - 'q3': [cgmesProfile.DY.value, ], - 'p4': [cgmesProfile.DY.value, ], - 'q4': [cgmesProfile.DY.value, ], - 'p5': [cgmesProfile.DY.value, ], - 'q5': [cgmesProfile.DY.value, ], - 'p6': [cgmesProfile.DY.value, ], - 'q6': [cgmesProfile.DY.value, ], - 'p7': [cgmesProfile.DY.value, ], - 'q7': [cgmesProfile.DY.value, ], - 'p8': [cgmesProfile.DY.value, ], - 'q8': [cgmesProfile.DY.value, ], - 'p9': [cgmesProfile.DY.value, ], - 'q9': [cgmesProfile.DY.value, ], - 'p10': [cgmesProfile.DY.value, ], - 'q10': [cgmesProfile.DY.value, ], - 'k1': [cgmesProfile.DY.value, ], - 'k2': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, tuv = 0, tup = 0, tuq = 0, kui = 0.0, kul = 0.0, vuimax = 0.0, vuimin = 0.0, kuf = 0.0, kfb = 0.0, tul = 0, tu1 = 0, tu2 = 0, tu3 = 0, tu4 = 0, vulmax = 0.0, vulmin = 0.0, p0 = 0.0, q0 = 0.0, p1 = 0.0, q1 = 0.0, p2 = 0.0, q2 = 0.0, p3 = 0.0, q3 = 0.0, p4 = 0.0, q4 = 0.0, p5 = 0.0, q5 = 0.0, p6 = 0.0, q6 = 0.0, p7 = 0.0, q7 = 0.0, p8 = 0.0, q8 = 0.0, p9 = 0.0, q9 = 0.0, p10 = 0.0, q10 = 0.0, k1 = 0.0, k2 = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tuv = tuv - self.tup = tup - self.tuq = tuq - self.kui = kui - self.kul = kul - self.vuimax = vuimax - self.vuimin = vuimin - self.kuf = kuf - self.kfb = kfb - self.tul = tul - self.tu1 = tu1 - self.tu2 = tu2 - self.tu3 = tu3 - self.tu4 = tu4 - self.vulmax = vulmax - self.vulmin = vulmin - self.p0 = p0 - self.q0 = q0 - self.p1 = p1 - self.q1 = q1 - self.p2 = p2 - self.q2 = q2 - self.p3 = p3 - self.q3 = q3 - self.p4 = p4 - self.q4 = q4 - self.p5 = p5 - self.q5 = q5 - self.p6 = p6 - self.q6 = q6 - self.p7 = p7 - self.q7 = q7 - self.p8 = p8 - self.q8 = q8 - self.p9 = p9 - self.q9 = q9 - self.p10 = p10 - self.q10 = q10 - self.k1 = k1 - self.k2 = k2 - - def __str__(self): - str = 'class=UnderexcLimIEEE2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcLimX1.py b/cimpy/cgmes_v2_4_15/UnderexcLimX1.py deleted file mode 100644 index 78183f04..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcLimX1.py +++ /dev/null @@ -1,46 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcLimX1(UnderexcitationLimiterDynamics): - ''' - - - :kf2: Differential gain (Kf2). Default: 0.0 - :tf2: Differential time constant (Tf2) (>0). Default: 0 - :km: Minimum excitation limit gain (Km). Default: 0.0 - :tm: Minimum excitation limit time constant (Tm). Default: 0 - :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 - :k: Minimum excitation limit slope (K) (>0). Default: 0.0 - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kf2': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'tm': [cgmesProfile.DY.value, ], - 'melmax': [cgmesProfile.DY.value, ], - 'k': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, kf2 = 0.0, tf2 = 0, km = 0.0, tm = 0, melmax = 0.0, k = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kf2 = kf2 - self.tf2 = tf2 - self.km = km - self.tm = tm - self.melmax = melmax - self.k = k - - def __str__(self): - str = 'class=UnderexcLimX1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcLimX2.py b/cimpy/cgmes_v2_4_15/UnderexcLimX2.py deleted file mode 100644 index 87008391..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcLimX2.py +++ /dev/null @@ -1,49 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcLimX2(UnderexcitationLimiterDynamics): - ''' - - - :kf2: Differential gain (Kf2). Default: 0.0 - :tf2: Differential time constant (Tf2) (>0). Default: 0 - :km: Minimum excitation limit gain (Km). Default: 0.0 - :tm: Minimum excitation limit time constant (Tm). Default: 0 - :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 - :qo: Excitation center setting (Qo). Default: 0.0 - :r: Excitation radius (R). Default: 0.0 - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kf2': [cgmesProfile.DY.value, ], - 'tf2': [cgmesProfile.DY.value, ], - 'km': [cgmesProfile.DY.value, ], - 'tm': [cgmesProfile.DY.value, ], - 'melmax': [cgmesProfile.DY.value, ], - 'qo': [cgmesProfile.DY.value, ], - 'r': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, kf2 = 0.0, tf2 = 0, km = 0.0, tm = 0, melmax = 0.0, qo = 0.0, r = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kf2 = kf2 - self.tf2 = tf2 - self.km = km - self.tm = tm - self.melmax = melmax - self.qo = qo - self.r = r - - def __str__(self): - str = 'class=UnderexcLimX2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py b/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py deleted file mode 100644 index f6ad3cd5..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class UnderexcitationLimiterDynamics(DynamicsFunctionBlock): - ''' - Underexcitation limiter function block whose behaviour is described by reference to a standard model - - :RemoteInputSignal: Remote input signal used by this underexcitation limiter model. Default: None - :ExcitationSystemDynamics: Excitation system model with which this underexcitation limiter model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=UnderexcitationLimiterDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py b/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py deleted file mode 100644 index a833a4b8..00000000 --- a/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics - - -class UnderexcitationLimiterUserDefined(UnderexcitationLimiterDynamics): - ''' - Underexcitation limiter function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class UnderexcitationLimiterDynamics: \n' + UnderexcitationLimiterDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=UnderexcitationLimiterUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnitMultiplier.py b/cimpy/cgmes_v2_4_15/UnitMultiplier.py deleted file mode 100644 index 9a57d471..00000000 --- a/cimpy/cgmes_v2_4_15/UnitMultiplier.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class UnitMultiplier(Base): - ''' - The unit multipliers defined for the CIM. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=UnitMultiplier\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/UnitSymbol.py b/cimpy/cgmes_v2_4_15/UnitSymbol.py deleted file mode 100644 index eb5b0dfd..00000000 --- a/cimpy/cgmes_v2_4_15/UnitSymbol.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class UnitSymbol(Base): - ''' - The units defined for usage in the CIM. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.DY.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=UnitSymbol\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VAdjIEEE.py b/cimpy/cgmes_v2_4_15/VAdjIEEE.py deleted file mode 100644 index fa38b7aa..00000000 --- a/cimpy/cgmes_v2_4_15/VAdjIEEE.py +++ /dev/null @@ -1,46 +0,0 @@ -from .VoltageAdjusterDynamics import VoltageAdjusterDynamics - - -class VAdjIEEE(VoltageAdjusterDynamics): - ''' - The class represents IEEE Voltage Adjuster which is used to represent the voltage adjuster in either a power factor or var control system. Reference: IEEE Standard 421.5-2005 Section 11.1. - - :vadjf: Set high to provide a continuous raise or lower (). Default: 0.0 - :adjslew: Rate at which output of adjuster changes (). Unit = sec./PU. Typical Value = 300. Default: 0.0 - :vadjmax: Maximum output of the adjuster (). Typical Value = 1.1. Default: 0.0 - :vadjmin: Minimum output of the adjuster (). Typical Value = 0.9. Default: 0.0 - :taon: Time that adjuster pulses are on (). Typical Value = 0.1. Default: 0 - :taoff: Time that adjuster pulses are off (). Typical Value = 0.5. Default: 0 - ''' - - cgmesProfile = VoltageAdjusterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'vadjf': [cgmesProfile.DY.value, ], - 'adjslew': [cgmesProfile.DY.value, ], - 'vadjmax': [cgmesProfile.DY.value, ], - 'vadjmin': [cgmesProfile.DY.value, ], - 'taon': [cgmesProfile.DY.value, ], - 'taoff': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class VoltageAdjusterDynamics: \n' + VoltageAdjusterDynamics.__doc__ - - def __init__(self, vadjf = 0.0, adjslew = 0.0, vadjmax = 0.0, vadjmin = 0.0, taon = 0, taoff = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.vadjf = vadjf - self.adjslew = adjslew - self.vadjmax = vadjmax - self.vadjmin = vadjmin - self.taon = taon - self.taoff = taoff - - def __str__(self): - str = 'class=VAdjIEEE\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VCompIEEEType1.py b/cimpy/cgmes_v2_4_15/VCompIEEEType1.py deleted file mode 100644 index 13af9c86..00000000 --- a/cimpy/cgmes_v2_4_15/VCompIEEEType1.py +++ /dev/null @@ -1,37 +0,0 @@ -from .VoltageCompensatorDynamics import VoltageCompensatorDynamics - - -class VCompIEEEType1(VoltageCompensatorDynamics): - ''' - Reference: IEEE Standard 421.5-2005 Section 4. - - :rc: Default: 0.0 - :xc: Default: 0.0 - :tr: Default: 0 - ''' - - cgmesProfile = VoltageCompensatorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'rc': [cgmesProfile.DY.value, ], - 'xc': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class VoltageCompensatorDynamics: \n' + VoltageCompensatorDynamics.__doc__ - - def __init__(self, rc = 0.0, xc = 0.0, tr = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.rc = rc - self.xc = xc - self.tr = tr - - def __str__(self): - str = 'class=VCompIEEEType1\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VCompIEEEType2.py b/cimpy/cgmes_v2_4_15/VCompIEEEType2.py deleted file mode 100644 index a57ab00a..00000000 --- a/cimpy/cgmes_v2_4_15/VCompIEEEType2.py +++ /dev/null @@ -1,34 +0,0 @@ -from .VoltageCompensatorDynamics import VoltageCompensatorDynamics - - -class VCompIEEEType2(VoltageCompensatorDynamics): - ''' - - - :tr: Default: 0 - :GenICompensationForGenJ: Compensation of this voltage compensator`s generator for current flow out of another generator. Default: "list" - ''' - - cgmesProfile = VoltageCompensatorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'tr': [cgmesProfile.DY.value, ], - 'GenICompensationForGenJ': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class VoltageCompensatorDynamics: \n' + VoltageCompensatorDynamics.__doc__ - - def __init__(self, tr = 0, GenICompensationForGenJ = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.tr = tr - self.GenICompensationForGenJ = GenICompensationForGenJ - - def __str__(self): - str = 'class=VCompIEEEType2\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Validity.py b/cimpy/cgmes_v2_4_15/Validity.py deleted file mode 100644 index 00451f68..00000000 --- a/cimpy/cgmes_v2_4_15/Validity.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class Validity(Base): - ''' - Validity for MeasurementValue. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=Validity\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ValueAliasSet.py b/cimpy/cgmes_v2_4_15/ValueAliasSet.py deleted file mode 100644 index a7a98aa6..00000000 --- a/cimpy/cgmes_v2_4_15/ValueAliasSet.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ValueAliasSet(IdentifiedObject): - ''' - Describes the translation of a set of values into a name and is intendend to facilitate cusom translations. Each ValueAliasSet has a name, description etc. A specific Measurement may represent a discrete state like Open, Closed, Intermediate etc. This requires a translation from the MeasurementValue.value number to a string, e.g. 0->"Invalid", 1->"Open", 2->"Closed", 3->"Intermediate". Each ValueToAlias member in ValueAliasSet.Value describe a mapping for one particular value to a name. - - :Commands: The Commands using the set for translation. Default: "list" - :Discretes: The Measurements using the set for translation. Default: "list" - :RaiseLowerCommands: The Commands using the set for translation. Default: "list" - :Values: The ValueAliasSet having the ValueToAlias mappings. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'Commands': [cgmesProfile.EQ.value, ], - 'Discretes': [cgmesProfile.EQ.value, ], - 'RaiseLowerCommands': [cgmesProfile.EQ.value, ], - 'Values': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, Commands = "list", Discretes = "list", RaiseLowerCommands = "list", Values = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.Commands = Commands - self.Discretes = Discretes - self.RaiseLowerCommands = RaiseLowerCommands - self.Values = Values - - def __str__(self): - str = 'class=ValueAliasSet\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/ValueToAlias.py b/cimpy/cgmes_v2_4_15/ValueToAlias.py deleted file mode 100644 index 357bc071..00000000 --- a/cimpy/cgmes_v2_4_15/ValueToAlias.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class ValueToAlias(IdentifiedObject): - ''' - Describes the translation of one particular value into a name, e.g. 1 as "Open". - - :ValueAliasSet: The ValueToAlias mappings included in the set. Default: None - :value: The value that is mapped. Default: 0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'ValueAliasSet': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, ValueAliasSet = None, value = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.ValueAliasSet = ValueAliasSet - self.value = value - - def __str__(self): - str = 'class=ValueToAlias\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VisibilityLayer.py b/cimpy/cgmes_v2_4_15/VisibilityLayer.py deleted file mode 100644 index 0f77b875..00000000 --- a/cimpy/cgmes_v2_4_15/VisibilityLayer.py +++ /dev/null @@ -1,34 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class VisibilityLayer(IdentifiedObject): - ''' - Layers are typically used for grouping diagram objects according to themes and scales. Themes are used to display or hide certain information (e.g., lakes, borders), while scales are used for hiding or displaying information depending on the current zoom level (hide text when it is too small to be read, or when it exceeds the screen size). This is also called de-cluttering. CIM based graphics exchange will support an m:n relationship between diagram objects and layers. It will be the task of the importing system to convert an m:n case into an appropriate 1:n representation if the importing system does not support m:n. - - :VisibleObjects: A visibility layer can contain one or more diagram objects. Default: "list" - :drawingOrder: The drawing order for this layer. The higher the number, the later the layer and the objects within it are rendered. Default: 0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DL.value, ], - 'VisibleObjects': [cgmesProfile.DL.value, ], - 'drawingOrder': [cgmesProfile.DL.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, VisibleObjects = "list", drawingOrder = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.VisibleObjects = VisibleObjects - self.drawingOrder = drawingOrder - - def __str__(self): - str = 'class=VisibilityLayer\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/Voltage.py b/cimpy/cgmes_v2_4_15/Voltage.py deleted file mode 100644 index c16805ae..00000000 --- a/cimpy/cgmes_v2_4_15/Voltage.py +++ /dev/null @@ -1,36 +0,0 @@ -from .Base import Base - - -class Voltage(Base): - ''' - Electrical voltage, can be both AC and DC. - - :value: Default: 0.0 - :unit: Default: None - :multiplier: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.EQ_BD.value, ], - 'value': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.EQ_BD.value, ], - 'unit': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.EQ_BD.value, ], - 'multiplier': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, cgmesProfile.EQ_BD.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, multiplier = None, ): - - self.value = value - self.unit = unit - self.multiplier = multiplier - - def __str__(self): - str = 'class=Voltage\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py b/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py deleted file mode 100644 index b3f865f1..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py +++ /dev/null @@ -1,31 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class VoltageAdjusterDynamics(DynamicsFunctionBlock): - ''' - Voltage adjuster function block whose behaviour is described by reference to a standard model - - :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model with which this voltage adjuster is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'PFVArControllerType1Dynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, PFVArControllerType1Dynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics - - def __str__(self): - str = 'class=VoltageAdjusterDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py b/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py deleted file mode 100644 index 3bd9b1f0..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .VoltageAdjusterDynamics import VoltageAdjusterDynamics - - -class VoltageAdjusterUserDefined(VoltageAdjusterDynamics): - ''' - function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = VoltageAdjusterDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class VoltageAdjusterDynamics: \n' + VoltageAdjusterDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=VoltageAdjusterUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py b/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py deleted file mode 100644 index c5d13248..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class VoltageCompensatorDynamics(DynamicsFunctionBlock): - ''' - Voltage compensator function block whose behaviour is described by reference to a standard model - - :RemoteInputSignal: Remote input signal used by this voltage compensator model. Default: None - :ExcitationSystemDynamics: Excitation system model with which this voltage compensator is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'ExcitationSystemDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, ExcitationSystemDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.ExcitationSystemDynamics = ExcitationSystemDynamics - - def __str__(self): - str = 'class=VoltageCompensatorDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py b/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py deleted file mode 100644 index 3f4002d1..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .VoltageCompensatorDynamics import VoltageCompensatorDynamics - - -class VoltageCompensatorUserDefined(VoltageCompensatorDynamics): - ''' - Voltage compensator function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = VoltageCompensatorDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class VoltageCompensatorDynamics: \n' + VoltageCompensatorDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=VoltageCompensatorUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageLevel.py b/cimpy/cgmes_v2_4_15/VoltageLevel.py deleted file mode 100644 index 00f2edc1..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageLevel.py +++ /dev/null @@ -1,43 +0,0 @@ -from .EquipmentContainer import EquipmentContainer - - -class VoltageLevel(EquipmentContainer): - ''' - A collection of equipment at one common system voltage forming a switchgear. The equipment typically consist of breakers, busbars, instrumentation, control, regulation and protection devices as well as assemblies of all these. - - :BaseVoltage: The base voltage used for all equipment within the voltage level. Default: None - :Substation: The substation of the voltage level. Default: None - :highVoltageLimit: The bus bar`s high voltage limit Default: 0.0 - :lowVoltageLimit: The bus bar`s low voltage limit Default: 0.0 - :Bays: The bays within this voltage level. Default: "list" - ''' - - cgmesProfile = EquipmentContainer.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'BaseVoltage': [cgmesProfile.EQ.value, ], - 'Substation': [cgmesProfile.EQ.value, ], - 'highVoltageLimit': [cgmesProfile.EQ.value, ], - 'lowVoltageLimit': [cgmesProfile.EQ.value, ], - 'Bays': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class EquipmentContainer: \n' + EquipmentContainer.__doc__ - - def __init__(self, BaseVoltage = None, Substation = None, highVoltageLimit = 0.0, lowVoltageLimit = 0.0, Bays = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.BaseVoltage = BaseVoltage - self.Substation = Substation - self.highVoltageLimit = highVoltageLimit - self.lowVoltageLimit = lowVoltageLimit - self.Bays = Bays - - def __str__(self): - str = 'class=VoltageLevel\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltageLimit.py b/cimpy/cgmes_v2_4_15/VoltageLimit.py deleted file mode 100644 index d2f9ed65..00000000 --- a/cimpy/cgmes_v2_4_15/VoltageLimit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .OperationalLimit import OperationalLimit - - -class VoltageLimit(OperationalLimit): - ''' - Operational limit applied to voltage. - - :value: Limit on voltage. High or low limit nature of the limit depends upon the properties of the operational limit type. Default: 0.0 - ''' - - cgmesProfile = OperationalLimit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class OperationalLimit: \n' + OperationalLimit.__doc__ - - def __init__(self, value = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.value = value - - def __str__(self): - str = 'class=VoltageLimit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py b/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py deleted file mode 100644 index 575c4740..00000000 --- a/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class VoltagePerReactivePower(Base): - ''' - Voltage variation with reactive power. - - :value: Default: 0.0 - :unit: Default: None - :denominatorMultiplier: Default: None - :multiplier: Default: None - :denominatorUnit: Default: None - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'value': [cgmesProfile.EQ.value, ], - 'unit': [cgmesProfile.EQ.value, ], - 'denominatorMultiplier': [cgmesProfile.EQ.value, ], - 'multiplier': [cgmesProfile.EQ.value, ], - 'denominatorUnit': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, value = 0.0, unit = None, denominatorMultiplier = None, multiplier = None, denominatorUnit = None, ): - - self.value = value - self.unit = unit - self.denominatorMultiplier = denominatorMultiplier - self.multiplier = multiplier - self.denominatorUnit = denominatorUnit - - def __str__(self): - str = 'class=VoltagePerReactivePower\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VolumeFlowRate.py b/cimpy/cgmes_v2_4_15/VolumeFlowRate.py deleted file mode 100644 index e07d07f9..00000000 --- a/cimpy/cgmes_v2_4_15/VolumeFlowRate.py +++ /dev/null @@ -1,42 +0,0 @@ -from .Base import Base - - -class VolumeFlowRate(Base): - ''' - Volume per time. - - :denominatorMultiplier: Default: None - :denominatorUnit: Default: None - :multiplier: Default: None - :unit: Default: None - :value: Default: 0.0 - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'denominatorMultiplier': [cgmesProfile.DY.value, ], - 'denominatorUnit': [cgmesProfile.DY.value, ], - 'multiplier': [cgmesProfile.DY.value, ], - 'unit': [cgmesProfile.DY.value, ], - 'value': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, denominatorMultiplier = None, denominatorUnit = None, multiplier = None, unit = None, value = 0.0, ): - - self.denominatorMultiplier = denominatorMultiplier - self.denominatorUnit = denominatorUnit - self.multiplier = multiplier - self.unit = unit - self.value = value - - def __str__(self): - str = 'class=VolumeFlowRate\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py b/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py deleted file mode 100644 index 5710a6f5..00000000 --- a/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py +++ /dev/null @@ -1,31 +0,0 @@ -from .Curve import Curve - - -class VsCapabilityCurve(Curve): - ''' - The P-Q capability curve for a voltage source converter, with P on x-axis and Qmin and Qmax on y1-axis and y2-axis. - - :VsConverterDCSides: Capability curve of this converter. Default: "list" - ''' - - cgmesProfile = Curve.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - 'VsConverterDCSides': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class Curve: \n' + Curve.__doc__ - - def __init__(self, VsConverterDCSides = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.VsConverterDCSides = VsConverterDCSides - - def __str__(self): - str = 'class=VsCapabilityCurve\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VsConverter.py b/cimpy/cgmes_v2_4_15/VsConverter.py deleted file mode 100644 index 37c7f498..00000000 --- a/cimpy/cgmes_v2_4_15/VsConverter.py +++ /dev/null @@ -1,64 +0,0 @@ -from .ACDCConverter import ACDCConverter - - -class VsConverter(ACDCConverter): - ''' - DC side of the voltage source converter (VSC). - - :CapabilityCurve: All converters with this capability curve. Default: None - :maxModulationIndex: The max quotient between the AC converter voltage (Uc) and DC voltage (Ud). A factor typically less than 1. VSC configuration data used in power flow. Default: 0.0 - :maxValveCurrent: The maximum current through a valve. This current limit is the basis for calculating the capability diagram. VSC configuration data. Default: 0.0 - :droop: Droop constant; pu value is obtained as D [kV^2 / MW] x Sb / Ubdc^2. Default: 0.0 - :droopCompensation: Compensation (resistance) constant. Used to compensate for voltage drop when controlling voltage at a distant bus. Default: 0.0 - :pPccControl: Kind of control of real power and/or DC voltage. Default: None - :qPccControl: Default: None - :qShare: Reactive power sharing factor among parallel converters on Uac control. Default: 0.0 - :targetQpcc: Reactive power injection target in AC grid, at point of common coupling. Default: 0.0 - :targetUpcc: Voltage target in AC grid, at point of common coupling. Default: 0.0 - :delta: Angle between uf and uc. Converter state variable used in power flow. Default: 0.0 - :uf: Filter bus voltage. Converter state variable, result from power flow. Default: 0.0 - ''' - - cgmesProfile = ACDCConverter.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, cgmesProfile.SV.value, ], - 'CapabilityCurve': [cgmesProfile.EQ.value, ], - 'maxModulationIndex': [cgmesProfile.EQ.value, ], - 'maxValveCurrent': [cgmesProfile.EQ.value, ], - 'droop': [cgmesProfile.SSH.value, ], - 'droopCompensation': [cgmesProfile.SSH.value, ], - 'pPccControl': [cgmesProfile.SSH.value, ], - 'qPccControl': [cgmesProfile.SSH.value, ], - 'qShare': [cgmesProfile.SSH.value, ], - 'targetQpcc': [cgmesProfile.SSH.value, ], - 'targetUpcc': [cgmesProfile.SSH.value, ], - 'delta': [cgmesProfile.SV.value, ], - 'uf': [cgmesProfile.SV.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class ACDCConverter: \n' + ACDCConverter.__doc__ - - def __init__(self, CapabilityCurve = None, maxModulationIndex = 0.0, maxValveCurrent = 0.0, droop = 0.0, droopCompensation = 0.0, pPccControl = None, qPccControl = None, qShare = 0.0, targetQpcc = 0.0, targetUpcc = 0.0, delta = 0.0, uf = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.CapabilityCurve = CapabilityCurve - self.maxModulationIndex = maxModulationIndex - self.maxValveCurrent = maxValveCurrent - self.droop = droop - self.droopCompensation = droopCompensation - self.pPccControl = pPccControl - self.qPccControl = qPccControl - self.qShare = qShare - self.targetQpcc = targetQpcc - self.targetUpcc = targetUpcc - self.delta = delta - self.uf = uf - - def __str__(self): - str = 'class=VsConverter\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VsPpccControlKind.py b/cimpy/cgmes_v2_4_15/VsPpccControlKind.py deleted file mode 100644 index b5798535..00000000 --- a/cimpy/cgmes_v2_4_15/VsPpccControlKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class VsPpccControlKind(Base): - ''' - Types applicable to the control of real power and/or DC voltage by voltage source converter. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=VsPpccControlKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/VsQpccControlKind.py b/cimpy/cgmes_v2_4_15/VsQpccControlKind.py deleted file mode 100644 index 9fa6f941..00000000 --- a/cimpy/cgmes_v2_4_15/VsQpccControlKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class VsQpccControlKind(Base): - ''' - - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.SSH.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=VsQpccControlKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py b/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py deleted file mode 100644 index da659403..00000000 --- a/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py +++ /dev/null @@ -1,31 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindAeroConstIEC(IdentifiedObject): - ''' - The constant aerodynamic torque model assumes that the aerodynamic torque is constant. Reference: IEC Standard 61400-27-1 Section 6.6.1.1. - - :WindGenTurbineType1IEC: Wind turbine type 1 model with which this wind aerodynamic model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindGenTurbineType1IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindGenTurbineType1IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindGenTurbineType1IEC = WindGenTurbineType1IEC - - def __str__(self): - str = 'class=WindAeroConstIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py b/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py deleted file mode 100644 index 4e2f992f..00000000 --- a/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py +++ /dev/null @@ -1,46 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindAeroLinearIEC(IdentifiedObject): - ''' - The linearised aerodynamic model. Reference: IEC Standard 614000-27-1 Section 6.6.1.2. - - :dpomega: Partial derivative of aerodynamic power with respect to changes in WTR speed (). It is case dependent parameter. Default: 0.0 - :dptheta: Partial derivative of aerodynamic power with respect to changes in pitch angle (). It is case dependent parameter. Default: 0.0 - :omegazero: Rotor speed if the wind turbine is not derated (). It is case dependent parameter. Default: 0.0 - :pavail: Available aerodynamic power (). It is case dependent parameter. Default: 0.0 - :thetazero: Pitch angle if the wind turbine is not derated (). It is case dependent parameter. Default: 0.0 - :WindGenTurbineType3IEC: Wind generator type 3 model with which this wind aerodynamic model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dpomega': [cgmesProfile.DY.value, ], - 'dptheta': [cgmesProfile.DY.value, ], - 'omegazero': [cgmesProfile.DY.value, ], - 'pavail': [cgmesProfile.DY.value, ], - 'thetazero': [cgmesProfile.DY.value, ], - 'WindGenTurbineType3IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, dpomega = 0.0, dptheta = 0.0, omegazero = 0.0, pavail = 0.0, thetazero = 0.0, WindGenTurbineType3IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dpomega = dpomega - self.dptheta = dptheta - self.omegazero = omegazero - self.pavail = pavail - self.thetazero = thetazero - self.WindGenTurbineType3IEC = WindGenTurbineType3IEC - - def __str__(self): - str = 'class=WindAeroLinearIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py b/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py deleted file mode 100644 index ef4c0c68..00000000 --- a/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py +++ /dev/null @@ -1,49 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContCurrLimIEC(IdentifiedObject): - ''' - Current limitation model. The current limitation model combines the physical limits. Reference: IEC Standard 61400-27-1 Section 6.6.5.7. - - :imax: Maximum continuous current at the wind turbine terminals (). It is type dependent parameter. Default: 0.0 - :imaxdip: Maximum current during voltage dip at the wind turbine terminals (). It is project dependent parameter. Default: 0.0 - :mdfslim: Limitation of type 3 stator current (): - false=0: total current limitation, - true=1: stator current limitation). It is type dependent parameter. Default: False - :mqpri: Prioritisation of q control during LVRT (): - true = 1: reactive power priority, - false = 0: active power priority. It is project dependent parameter. Default: False - :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 - :WindTurbineType3or4IEC: Wind turbine type 3 or 4 model with which this wind control current limitation model is associated. Default: None - :WindDynamicsLookupTable: The current control limitation model with which this wind dynamics lookup table is associated. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'imax': [cgmesProfile.DY.value, ], - 'imaxdip': [cgmesProfile.DY.value, ], - 'mdfslim': [cgmesProfile.DY.value, ], - 'mqpri': [cgmesProfile.DY.value, ], - 'tufilt': [cgmesProfile.DY.value, ], - 'WindTurbineType3or4IEC': [cgmesProfile.DY.value, ], - 'WindDynamicsLookupTable': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, imax = 0.0, imaxdip = 0.0, mdfslim = False, mqpri = False, tufilt = 0, WindTurbineType3or4IEC = None, WindDynamicsLookupTable = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.imax = imax - self.imaxdip = imaxdip - self.mdfslim = mdfslim - self.mqpri = mqpri - self.tufilt = tufilt - self.WindTurbineType3or4IEC = WindTurbineType3or4IEC - self.WindDynamicsLookupTable = WindDynamicsLookupTable - - def __str__(self): - str = 'class=WindContCurrLimIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContPType3IEC.py b/cimpy/cgmes_v2_4_15/WindContPType3IEC.py deleted file mode 100644 index e623554b..00000000 --- a/cimpy/cgmes_v2_4_15/WindContPType3IEC.py +++ /dev/null @@ -1,97 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContPType3IEC(IdentifiedObject): - ''' - P control model Type 3. Reference: IEC Standard 61400-27-1 Section 6.6.5.3. - - :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 - :dtrisemaxlvrt: Limitation of torque rise rate during LVRT for S (d). It is project dependent parameter. Default: 0.0 - :kdtd: Gain for active drive train damping (). It is type dependent parameter. Default: 0.0 - :kip: PI controller integration parameter (). It is type dependent parameter. Default: 0.0 - :kpp: PI controller proportional gain (). It is type dependent parameter. Default: 0.0 - :mplvrt: Enable LVRT power control mode (M true = 1: voltage control false = 0: reactive power control. It is project dependent parameter. Default: False - :omegaoffset: Offset to reference value that limits controller action during rotor speed changes (omega). It is case dependent parameter. Default: 0.0 - :pdtdmax: Maximum active drive train damping power (). It is type dependent parameter. Default: 0.0 - :rramp: Ramp limitation of torque, required in some grid codes (). It is project dependent parameter. Default: 0.0 - :tdvs: Timedelay after deep voltage sags (T). It is project dependent parameter. Default: 0 - :temin: Minimum electrical generator torque (). It is type dependent parameter. Default: 0.0 - :tomegafilt: Filter time constant for generator speed measurement (). It is type dependent parameter. Default: 0 - :tpfilt: Filter time constant for power measurement (). It is type dependent parameter. Default: 0 - :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0.0 - :tufilt: Filter time constant for voltage measurement (). It is type dependent parameter. Default: 0 - :tuscale: Voltage scaling factor of reset-torque (T). It is project dependent parameter. Default: 0.0 - :twref: Time constant in speed reference filter (). It is type dependent parameter. Default: 0 - :udvs: Voltage limit for hold LVRT status after deep voltage sags (). It is project dependent parameter. Default: 0.0 - :updip: Voltage dip threshold for P-control (). Part of turbine control, often different (e.g 0.8) from converter thresholds. It is project dependent parameter. Default: 0.0 - :wdtd: Active drive train damping frequency (omega). It can be calculated from two mass model parameters. It is type dependent parameter. Default: 0.0 - :zeta: Coefficient for active drive train damping (zeta). It is type dependent parameter. Default: 0.0 - :WindGenTurbineType3IEC: Wind turbine type 3 model with which this Wind control P type 3 model is associated. Default: None - :WindDynamicsLookupTable: The P control type 3 model with which this wind dynamics lookup table is associated. Default: "list" - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dpmax': [cgmesProfile.DY.value, ], - 'dtrisemaxlvrt': [cgmesProfile.DY.value, ], - 'kdtd': [cgmesProfile.DY.value, ], - 'kip': [cgmesProfile.DY.value, ], - 'kpp': [cgmesProfile.DY.value, ], - 'mplvrt': [cgmesProfile.DY.value, ], - 'omegaoffset': [cgmesProfile.DY.value, ], - 'pdtdmax': [cgmesProfile.DY.value, ], - 'rramp': [cgmesProfile.DY.value, ], - 'tdvs': [cgmesProfile.DY.value, ], - 'temin': [cgmesProfile.DY.value, ], - 'tomegafilt': [cgmesProfile.DY.value, ], - 'tpfilt': [cgmesProfile.DY.value, ], - 'tpord': [cgmesProfile.DY.value, ], - 'tufilt': [cgmesProfile.DY.value, ], - 'tuscale': [cgmesProfile.DY.value, ], - 'twref': [cgmesProfile.DY.value, ], - 'udvs': [cgmesProfile.DY.value, ], - 'updip': [cgmesProfile.DY.value, ], - 'wdtd': [cgmesProfile.DY.value, ], - 'zeta': [cgmesProfile.DY.value, ], - 'WindGenTurbineType3IEC': [cgmesProfile.DY.value, ], - 'WindDynamicsLookupTable': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, dpmax = 0.0, dtrisemaxlvrt = 0.0, kdtd = 0.0, kip = 0.0, kpp = 0.0, mplvrt = False, omegaoffset = 0.0, pdtdmax = 0.0, rramp = 0.0, tdvs = 0, temin = 0.0, tomegafilt = 0, tpfilt = 0, tpord = 0.0, tufilt = 0, tuscale = 0.0, twref = 0, udvs = 0.0, updip = 0.0, wdtd = 0.0, zeta = 0.0, WindGenTurbineType3IEC = None, WindDynamicsLookupTable = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dpmax = dpmax - self.dtrisemaxlvrt = dtrisemaxlvrt - self.kdtd = kdtd - self.kip = kip - self.kpp = kpp - self.mplvrt = mplvrt - self.omegaoffset = omegaoffset - self.pdtdmax = pdtdmax - self.rramp = rramp - self.tdvs = tdvs - self.temin = temin - self.tomegafilt = tomegafilt - self.tpfilt = tpfilt - self.tpord = tpord - self.tufilt = tufilt - self.tuscale = tuscale - self.twref = twref - self.udvs = udvs - self.updip = updip - self.wdtd = wdtd - self.zeta = zeta - self.WindGenTurbineType3IEC = WindGenTurbineType3IEC - self.WindDynamicsLookupTable = WindDynamicsLookupTable - - def __str__(self): - str = 'class=WindContPType3IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py b/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py deleted file mode 100644 index dada5451..00000000 --- a/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py +++ /dev/null @@ -1,40 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContPType4aIEC(IdentifiedObject): - ''' - P control model Type 4A. Reference: IEC Standard 61400-27-1 Section 6.6.5.4. - - :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 - :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0 - :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 - :WindTurbineType4aIEC: Wind turbine type 4A model with which this wind control P type 4A model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dpmax': [cgmesProfile.DY.value, ], - 'tpord': [cgmesProfile.DY.value, ], - 'tufilt': [cgmesProfile.DY.value, ], - 'WindTurbineType4aIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, dpmax = 0.0, tpord = 0, tufilt = 0, WindTurbineType4aIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dpmax = dpmax - self.tpord = tpord - self.tufilt = tufilt - self.WindTurbineType4aIEC = WindTurbineType4aIEC - - def __str__(self): - str = 'class=WindContPType4aIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py b/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py deleted file mode 100644 index b10f8175..00000000 --- a/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py +++ /dev/null @@ -1,43 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContPType4bIEC(IdentifiedObject): - ''' - P control model Type 4B. Reference: IEC Standard 61400-27-1 Section 6.6.5.5. - - :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 - :tpaero: Time constant in aerodynamic power response (). It is type dependent parameter. Default: 0 - :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0 - :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 - :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind control P type 4B model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dpmax': [cgmesProfile.DY.value, ], - 'tpaero': [cgmesProfile.DY.value, ], - 'tpord': [cgmesProfile.DY.value, ], - 'tufilt': [cgmesProfile.DY.value, ], - 'WindTurbineType4bIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, dpmax = 0.0, tpaero = 0, tpord = 0, tufilt = 0, WindTurbineType4bIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dpmax = dpmax - self.tpaero = tpaero - self.tpord = tpord - self.tufilt = tufilt - self.WindTurbineType4bIEC = WindTurbineType4bIEC - - def __str__(self): - str = 'class=WindContPType4bIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py b/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py deleted file mode 100644 index be835831..00000000 --- a/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py +++ /dev/null @@ -1,61 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContPitchAngleIEC(IdentifiedObject): - ''' - Pitch angle control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.8. - - :dthetamax: Maximum pitch positive ramp rate (d). It is type dependent parameter. Unit = degrees/sec. Default: 0.0 - :dthetamin: Maximum pitch negative ramp rate (d). It is type dependent parameter. Unit = degrees/sec. Default: 0.0 - :kic: Power PI controller integration gain (). It is type dependent parameter. Default: 0.0 - :kiomega: Speed PI controller integration gain (). It is type dependent parameter. Default: 0.0 - :kpc: Power PI controller proportional gain (). It is type dependent parameter. Default: 0.0 - :kpomega: Speed PI controller proportional gain (). It is type dependent parameter. Default: 0.0 - :kpx: Pitch cross coupling gain (K). It is type dependent parameter. Default: 0.0 - :thetamax: Maximum pitch angle (). It is type dependent parameter. Default: 0.0 - :thetamin: Minimum pitch angle (). It is type dependent parameter. Default: 0.0 - :ttheta: Pitch time constant (t). It is type dependent parameter. Default: 0 - :WindGenTurbineType3IEC: Wind turbine type 3 model with which this pitch control model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dthetamax': [cgmesProfile.DY.value, ], - 'dthetamin': [cgmesProfile.DY.value, ], - 'kic': [cgmesProfile.DY.value, ], - 'kiomega': [cgmesProfile.DY.value, ], - 'kpc': [cgmesProfile.DY.value, ], - 'kpomega': [cgmesProfile.DY.value, ], - 'kpx': [cgmesProfile.DY.value, ], - 'thetamax': [cgmesProfile.DY.value, ], - 'thetamin': [cgmesProfile.DY.value, ], - 'ttheta': [cgmesProfile.DY.value, ], - 'WindGenTurbineType3IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, dthetamax = 0.0, dthetamin = 0.0, kic = 0.0, kiomega = 0.0, kpc = 0.0, kpomega = 0.0, kpx = 0.0, thetamax = 0.0, thetamin = 0.0, ttheta = 0, WindGenTurbineType3IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dthetamax = dthetamax - self.dthetamin = dthetamin - self.kic = kic - self.kiomega = kiomega - self.kpc = kpc - self.kpomega = kpomega - self.kpx = kpx - self.thetamax = thetamax - self.thetamin = thetamin - self.ttheta = ttheta - self.WindGenTurbineType3IEC = WindGenTurbineType3IEC - - def __str__(self): - str = 'class=WindContPitchAngleIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContQIEC.py b/cimpy/cgmes_v2_4_15/WindContQIEC.py deleted file mode 100644 index f3c84722..00000000 --- a/cimpy/cgmes_v2_4_15/WindContQIEC.py +++ /dev/null @@ -1,109 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContQIEC(IdentifiedObject): - ''' - Q control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.6. - - :iqh1: Maximum reactive current injection during dip (i). It is type dependent parameter. Default: 0.0 - :iqmax: Maximum reactive current injection (i). It is type dependent parameter. Default: 0.0 - :iqmin: Minimum reactive current injection (i). It is type dependent parameter. Default: 0.0 - :iqpost: Post fault reactive current injection (). It is project dependent parameter. Default: 0.0 - :kiq: Reactive power PI controller integration gain (). It is type dependent parameter. Default: 0.0 - :kiu: Voltage PI controller integration gain (). It is type dependent parameter. Default: 0.0 - :kpq: Reactive power PI controller proportional gain (). It is type dependent parameter. Default: 0.0 - :kpu: Voltage PI controller proportional gain (). It is type dependent parameter. Default: 0.0 - :kqv: Voltage scaling factor for LVRT current (). It is project dependent parameter. Default: 0.0 - :qmax: Maximum reactive power (q). It is type dependent parameter. Default: 0.0 - :qmin: Minimum reactive power (q). It is type dependent parameter. Default: 0.0 - :rdroop: Resistive component of voltage drop impedance (). It is project dependent parameter. Default: 0.0 - :tiq: Time constant in reactive current lag (T). It is type dependent parameter. Default: 0 - :tpfilt: Power measurement filter time constant (). It is type dependent parameter. Default: 0 - :tpost: Length of time period where post fault reactive power is injected (). It is project dependent parameter. Default: 0 - :tqord: Time constant in reactive power order lag (). It is type dependent parameter. Default: 0 - :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 - :udb1: Voltage dead band lower limit (). It is type dependent parameter. Default: 0.0 - :udb2: Voltage dead band upper limit (). It is type dependent parameter. Default: 0.0 - :umax: Maximum voltage in voltage PI controller integral term (u). It is type dependent parameter. Default: 0.0 - :umin: Minimum voltage in voltage PI controller integral term (u). It is type dependent parameter. Default: 0.0 - :uqdip: Voltage threshold for LVRT detection in q control (). It is type dependent parameter. Default: 0.0 - :uref0: User defined bias in voltage reference (), used when =. It is case dependent parameter. Default: 0.0 - :windLVRTQcontrolModesType: Types of LVRT Q control modes (). It is project dependent parameter. Default: None - :windQcontrolModesType: Types of general wind turbine Q control modes (). It is project dependent parameter. Default: None - :xdroop: Inductive component of voltage drop impedance (). It is project dependent parameter. Default: 0.0 - :WindTurbineType3or4IEC: Wind turbine type 3 or 4 model with which this reactive control mode is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'iqh1': [cgmesProfile.DY.value, ], - 'iqmax': [cgmesProfile.DY.value, ], - 'iqmin': [cgmesProfile.DY.value, ], - 'iqpost': [cgmesProfile.DY.value, ], - 'kiq': [cgmesProfile.DY.value, ], - 'kiu': [cgmesProfile.DY.value, ], - 'kpq': [cgmesProfile.DY.value, ], - 'kpu': [cgmesProfile.DY.value, ], - 'kqv': [cgmesProfile.DY.value, ], - 'qmax': [cgmesProfile.DY.value, ], - 'qmin': [cgmesProfile.DY.value, ], - 'rdroop': [cgmesProfile.DY.value, ], - 'tiq': [cgmesProfile.DY.value, ], - 'tpfilt': [cgmesProfile.DY.value, ], - 'tpost': [cgmesProfile.DY.value, ], - 'tqord': [cgmesProfile.DY.value, ], - 'tufilt': [cgmesProfile.DY.value, ], - 'udb1': [cgmesProfile.DY.value, ], - 'udb2': [cgmesProfile.DY.value, ], - 'umax': [cgmesProfile.DY.value, ], - 'umin': [cgmesProfile.DY.value, ], - 'uqdip': [cgmesProfile.DY.value, ], - 'uref0': [cgmesProfile.DY.value, ], - 'windLVRTQcontrolModesType': [cgmesProfile.DY.value, ], - 'windQcontrolModesType': [cgmesProfile.DY.value, ], - 'xdroop': [cgmesProfile.DY.value, ], - 'WindTurbineType3or4IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, iqh1 = 0.0, iqmax = 0.0, iqmin = 0.0, iqpost = 0.0, kiq = 0.0, kiu = 0.0, kpq = 0.0, kpu = 0.0, kqv = 0.0, qmax = 0.0, qmin = 0.0, rdroop = 0.0, tiq = 0, tpfilt = 0, tpost = 0, tqord = 0, tufilt = 0, udb1 = 0.0, udb2 = 0.0, umax = 0.0, umin = 0.0, uqdip = 0.0, uref0 = 0.0, windLVRTQcontrolModesType = None, windQcontrolModesType = None, xdroop = 0.0, WindTurbineType3or4IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.iqh1 = iqh1 - self.iqmax = iqmax - self.iqmin = iqmin - self.iqpost = iqpost - self.kiq = kiq - self.kiu = kiu - self.kpq = kpq - self.kpu = kpu - self.kqv = kqv - self.qmax = qmax - self.qmin = qmin - self.rdroop = rdroop - self.tiq = tiq - self.tpfilt = tpfilt - self.tpost = tpost - self.tqord = tqord - self.tufilt = tufilt - self.udb1 = udb1 - self.udb2 = udb2 - self.umax = umax - self.umin = umin - self.uqdip = uqdip - self.uref0 = uref0 - self.windLVRTQcontrolModesType = windLVRTQcontrolModesType - self.windQcontrolModesType = windQcontrolModesType - self.xdroop = xdroop - self.WindTurbineType3or4IEC = WindTurbineType3or4IEC - - def __str__(self): - str = 'class=WindContQIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py b/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py deleted file mode 100644 index 959d87f0..00000000 --- a/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindContRotorRIEC(IdentifiedObject): - ''' - Rotor resistance control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.2. - - :kirr: Integral gain in rotor resistance PI controller (). It is type dependent parameter. Default: 0.0 - :komegafilt: Filter gain for generator speed measurement (K). It is type dependent parameter. Default: 0.0 - :kpfilt: Filter gain for power measurement (). It is type dependent parameter. Default: 0.0 - :kprr: Proportional gain in rotor resistance PI controller (). It is type dependent parameter. Default: 0.0 - :rmax: Maximum rotor resistance (). It is type dependent parameter. Default: 0.0 - :rmin: Minimum rotor resistance (). It is type dependent parameter. Default: 0.0 - :tomegafilt: Filter time constant for generator speed measurement (). It is type dependent parameter. Default: 0 - :tpfilt: Filter time constant for power measurement (). It is type dependent parameter. Default: 0 - :WindDynamicsLookupTable: The wind dynamics lookup table associated with this rotor resistance control model. Default: "list" - :WindGenTurbineType2IEC: Wind turbine type 2 model with whitch this wind control rotor resistance model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kirr': [cgmesProfile.DY.value, ], - 'komegafilt': [cgmesProfile.DY.value, ], - 'kpfilt': [cgmesProfile.DY.value, ], - 'kprr': [cgmesProfile.DY.value, ], - 'rmax': [cgmesProfile.DY.value, ], - 'rmin': [cgmesProfile.DY.value, ], - 'tomegafilt': [cgmesProfile.DY.value, ], - 'tpfilt': [cgmesProfile.DY.value, ], - 'WindDynamicsLookupTable': [cgmesProfile.DY.value, ], - 'WindGenTurbineType2IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, kirr = 0.0, komegafilt = 0.0, kpfilt = 0.0, kprr = 0.0, rmax = 0.0, rmin = 0.0, tomegafilt = 0, tpfilt = 0, WindDynamicsLookupTable = "list", WindGenTurbineType2IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kirr = kirr - self.komegafilt = komegafilt - self.kpfilt = kpfilt - self.kprr = kprr - self.rmax = rmax - self.rmin = rmin - self.tomegafilt = tomegafilt - self.tpfilt = tpfilt - self.WindDynamicsLookupTable = WindDynamicsLookupTable - self.WindGenTurbineType2IEC = WindGenTurbineType2IEC - - def __str__(self): - str = 'class=WindContRotorRIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py b/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py deleted file mode 100644 index 9717bca5..00000000 --- a/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py +++ /dev/null @@ -1,52 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindDynamicsLookupTable(IdentifiedObject): - ''' - The class models a look up table for the purpose of wind standard models. - - :WindContCurrLimIEC: The wind dynamics lookup table associated with this current control limitation model. Default: None - :WindContPType3IEC: The wind dynamics lookup table associated with this P control type 3 model. Default: None - :WindContRotorRIEC: The rotor resistance control model with which this wind dynamics lookup table is associated. Default: None - :input: Input value (x) for the lookup table function. Default: 0.0 - :lookupTableFunctionType: Type of the lookup table function. Default: None - :output: Output value (y) for the lookup table function. Default: 0.0 - :sequence: Sequence numbers of the pairs of the input (x) and the output (y) of the lookup table function. Default: 0 - :WindPlantFreqPcontrolIEC: The wind dynamics lookup table associated with this frequency and active power wind plant model. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindContCurrLimIEC': [cgmesProfile.DY.value, ], - 'WindContPType3IEC': [cgmesProfile.DY.value, ], - 'WindContRotorRIEC': [cgmesProfile.DY.value, ], - 'input': [cgmesProfile.DY.value, ], - 'lookupTableFunctionType': [cgmesProfile.DY.value, ], - 'output': [cgmesProfile.DY.value, ], - 'sequence': [cgmesProfile.DY.value, ], - 'WindPlantFreqPcontrolIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindContCurrLimIEC = None, WindContPType3IEC = None, WindContRotorRIEC = None, input = 0.0, lookupTableFunctionType = None, output = 0.0, sequence = 0, WindPlantFreqPcontrolIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindContCurrLimIEC = WindContCurrLimIEC - self.WindContPType3IEC = WindContPType3IEC - self.WindContRotorRIEC = WindContRotorRIEC - self.input = input - self.lookupTableFunctionType = lookupTableFunctionType - self.output = output - self.sequence = sequence - self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC - - def __str__(self): - str = 'class=WindDynamicsLookupTable\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py b/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py deleted file mode 100644 index 98f5343a..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py +++ /dev/null @@ -1,31 +0,0 @@ -from .WindTurbineType1or2IEC import WindTurbineType1or2IEC - - -class WindGenTurbineType1IEC(WindTurbineType1or2IEC): - ''' - Wind turbine IEC Type 1. Reference: IEC Standard 61400-27-1, section 6.5.2. - - :WindAeroConstIEC: Wind aerodynamic model associated with this wind turbine type 1 model. Default: None - ''' - - cgmesProfile = WindTurbineType1or2IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindAeroConstIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType1or2IEC: \n' + WindTurbineType1or2IEC.__doc__ - - def __init__(self, WindAeroConstIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindAeroConstIEC = WindAeroConstIEC - - def __str__(self): - str = 'class=WindGenTurbineType1IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py b/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py deleted file mode 100644 index 21d8f82b..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindTurbineType1or2IEC import WindTurbineType1or2IEC - - -class WindGenTurbineType2IEC(WindTurbineType1or2IEC): - ''' - Wind turbine IEC Type 2. Reference: IEC Standard 61400-27-1, section 6.5.3. - - :WindContRotorRIEC: Wind control rotor resistance model associated with wind turbine type 2 model. Default: None - :WindPitchContEmulIEC: Pitch control emulator model associated with this wind turbine type 2 model. Default: None - ''' - - cgmesProfile = WindTurbineType1or2IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindContRotorRIEC': [cgmesProfile.DY.value, ], - 'WindPitchContEmulIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType1or2IEC: \n' + WindTurbineType1or2IEC.__doc__ - - def __init__(self, WindContRotorRIEC = None, WindPitchContEmulIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindContRotorRIEC = WindContRotorRIEC - self.WindPitchContEmulIEC = WindPitchContEmulIEC - - def __str__(self): - str = 'class=WindGenTurbineType2IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py b/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py deleted file mode 100644 index f2a5d598..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py +++ /dev/null @@ -1,46 +0,0 @@ -from .WindTurbineType3or4IEC import WindTurbineType3or4IEC - - -class WindGenTurbineType3IEC(WindTurbineType3or4IEC): - ''' - Generator model for wind turbines of IEC type 3A and 3B. - - :WindAeroLinearIEC: Wind aerodynamic model associated with this wind generator type 3 model. Default: None - :WindContPitchAngleIEC: Wind control pitch angle model associated with this wind turbine type 3. Default: None - :WindContPType3IEC: Wind control P type 3 model associated with this wind turbine type 3 model. Default: None - :dipmax: Maximum active current ramp rate (di). It is project dependent parameter. Default: 0.0 - :diqmax: Maximum reactive current ramp rate (di). It is project dependent parameter. Default: 0.0 - :WindMechIEC: Wind mechanical model associated with this wind turbine Type 3 model. Default: None - ''' - - cgmesProfile = WindTurbineType3or4IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindAeroLinearIEC': [cgmesProfile.DY.value, ], - 'WindContPitchAngleIEC': [cgmesProfile.DY.value, ], - 'WindContPType3IEC': [cgmesProfile.DY.value, ], - 'dipmax': [cgmesProfile.DY.value, ], - 'diqmax': [cgmesProfile.DY.value, ], - 'WindMechIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType3or4IEC: \n' + WindTurbineType3or4IEC.__doc__ - - def __init__(self, WindAeroLinearIEC = None, WindContPitchAngleIEC = None, WindContPType3IEC = None, dipmax = 0.0, diqmax = 0.0, WindMechIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindAeroLinearIEC = WindAeroLinearIEC - self.WindContPitchAngleIEC = WindContPitchAngleIEC - self.WindContPType3IEC = WindContPType3IEC - self.dipmax = dipmax - self.diqmax = diqmax - self.WindMechIEC = WindMechIEC - - def __str__(self): - str = 'class=WindGenTurbineType3IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py b/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py deleted file mode 100644 index ee268f9c..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py +++ /dev/null @@ -1,37 +0,0 @@ -from .WindGenTurbineType3IEC import WindGenTurbineType3IEC - - -class WindGenTurbineType3aIEC(WindGenTurbineType3IEC): - ''' - IEC Type 3A generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.2. - - :kpc: Current PI controller proportional gain (K). It is type dependent parameter. Default: 0.0 - :xs: Electromagnetic transient reactance (x). It is type dependent parameter. Default: 0.0 - :tic: Current PI controller integration time constant (T). It is type dependent parameter. Default: 0 - ''' - - cgmesProfile = WindGenTurbineType3IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'kpc': [cgmesProfile.DY.value, ], - 'xs': [cgmesProfile.DY.value, ], - 'tic': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindGenTurbineType3IEC: \n' + WindGenTurbineType3IEC.__doc__ - - def __init__(self, kpc = 0.0, xs = 0.0, tic = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.kpc = kpc - self.xs = xs - self.tic = tic - - def __str__(self): - str = 'class=WindGenTurbineType3aIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py b/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py deleted file mode 100644 index 532c105c..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py +++ /dev/null @@ -1,43 +0,0 @@ -from .WindGenTurbineType3IEC import WindGenTurbineType3IEC - - -class WindGenTurbineType3bIEC(WindGenTurbineType3IEC): - ''' - IEC Type 3B generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.3. - - :fducw: Crowbar duration versus voltage variation look-up table (f()). It is case dependent parameter. Default: 0.0 - :tg: Current generation Time constant (). It is type dependent parameter. Default: 0 - :two: Time constant for crowbar washout filter (). It is case dependent parameter. Default: 0 - :mwtcwp: Crowbar control mode (). The parameter is case dependent parameter. Default: False - :xs: Electromagnetic transient reactance (x). It is type dependent parameter. Default: 0.0 - ''' - - cgmesProfile = WindGenTurbineType3IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'fducw': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - 'two': [cgmesProfile.DY.value, ], - 'mwtcwp': [cgmesProfile.DY.value, ], - 'xs': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindGenTurbineType3IEC: \n' + WindGenTurbineType3IEC.__doc__ - - def __init__(self, fducw = 0.0, tg = 0, two = 0, mwtcwp = False, xs = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.fducw = fducw - self.tg = tg - self.two = two - self.mwtcwp = mwtcwp - self.xs = xs - - def __str__(self): - str = 'class=WindGenTurbineType3bIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenType4IEC.py b/cimpy/cgmes_v2_4_15/WindGenType4IEC.py deleted file mode 100644 index 2d850d43..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenType4IEC.py +++ /dev/null @@ -1,40 +0,0 @@ -from .WindTurbineType3or4IEC import WindTurbineType3or4IEC - - -class WindGenType4IEC(WindTurbineType3or4IEC): - ''' - IEC Type 4 generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.4. - - :dipmax: Maximum active current ramp rate (di). It is project dependent parameter. Default: 0.0 - :diqmin: Minimum reactive current ramp rate (d). It is case dependent parameter. Default: 0.0 - :diqmax: Maximum reactive current ramp rate (di). It is project dependent parameter. Default: 0.0 - :tg: Time constant (T). It is type dependent parameter. Default: 0 - ''' - - cgmesProfile = WindTurbineType3or4IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'dipmax': [cgmesProfile.DY.value, ], - 'diqmin': [cgmesProfile.DY.value, ], - 'diqmax': [cgmesProfile.DY.value, ], - 'tg': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType3or4IEC: \n' + WindTurbineType3or4IEC.__doc__ - - def __init__(self, dipmax = 0.0, diqmin = 0.0, diqmax = 0.0, tg = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.dipmax = dipmax - self.diqmin = diqmin - self.diqmax = diqmax - self.tg = tg - - def __str__(self): - str = 'class=WindGenType4IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGenUnitKind.py b/cimpy/cgmes_v2_4_15/WindGenUnitKind.py deleted file mode 100644 index d97d352f..00000000 --- a/cimpy/cgmes_v2_4_15/WindGenUnitKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class WindGenUnitKind(Base): - ''' - Kind of wind generating unit. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=WindGenUnitKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py b/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py deleted file mode 100644 index d58234fd..00000000 --- a/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py +++ /dev/null @@ -1,31 +0,0 @@ -from .GeneratingUnit import GeneratingUnit - - -class WindGeneratingUnit(GeneratingUnit): - ''' - A wind driven generating unit. May be used to represent a single turbine or an aggregation. - - :windGenUnitType: The kind of wind generating unit Default: None - ''' - - cgmesProfile = GeneratingUnit.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, cgmesProfile.SSH.value, ], - 'windGenUnitType': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class GeneratingUnit: \n' + GeneratingUnit.__doc__ - - def __init__(self, windGenUnitType = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.windGenUnitType = windGenUnitType - - def __str__(self): - str = 'class=WindGeneratingUnit\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py b/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py deleted file mode 100644 index 0c68ed95..00000000 --- a/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class WindLVRTQcontrolModesKind(Base): - ''' - LVRT Q control modes . - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=WindLVRTQcontrolModesKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py b/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py deleted file mode 100644 index 020c6c1b..00000000 --- a/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class WindLookupTableFunctionKind(Base): - ''' - Function of the lookup table. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=WindLookupTableFunctionKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindMechIEC.py b/cimpy/cgmes_v2_4_15/WindMechIEC.py deleted file mode 100644 index 45b49b8e..00000000 --- a/cimpy/cgmes_v2_4_15/WindMechIEC.py +++ /dev/null @@ -1,49 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindMechIEC(IdentifiedObject): - ''' - Two mass model. Reference: IEC Standard 61400-27-1 Section 6.6.2.1. - - :WindGenTurbineType3IEC: Wind turbine Type 3 model with which this wind mechanical model is associated. Default: None - :cdrt: Drive train damping (. It is type dependent parameter. Default: 0.0 - :hgen: Inertia constant of generator (). It is type dependent parameter. Default: 0 - :hwtr: Inertia constant of wind turbine rotor (). It is type dependent parameter. Default: 0 - :kdrt: Drive train stiffness (). It is type dependent parameter. Default: 0.0 - :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind mechanical model is associated. Default: None - :WindTurbineType1or2IEC: Wind generator type 1 or 2 model with which this wind mechanical model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindGenTurbineType3IEC': [cgmesProfile.DY.value, ], - 'cdrt': [cgmesProfile.DY.value, ], - 'hgen': [cgmesProfile.DY.value, ], - 'hwtr': [cgmesProfile.DY.value, ], - 'kdrt': [cgmesProfile.DY.value, ], - 'WindTurbineType4bIEC': [cgmesProfile.DY.value, ], - 'WindTurbineType1or2IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindGenTurbineType3IEC = None, cdrt = 0.0, hgen = 0, hwtr = 0, kdrt = 0.0, WindTurbineType4bIEC = None, WindTurbineType1or2IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindGenTurbineType3IEC = WindGenTurbineType3IEC - self.cdrt = cdrt - self.hgen = hgen - self.hwtr = hwtr - self.kdrt = kdrt - self.WindTurbineType4bIEC = WindTurbineType4bIEC - self.WindTurbineType1or2IEC = WindTurbineType1or2IEC - - def __str__(self): - str = 'class=WindMechIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py b/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py deleted file mode 100644 index c863f2c2..00000000 --- a/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py +++ /dev/null @@ -1,61 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindPitchContEmulIEC(IdentifiedObject): - ''' - Pitch control emulator model. Reference: IEC Standard 61400-27-1 Section 6.6.5.1. - - :WindGenTurbineType2IEC: Wind turbine type 2 model with which this Pitch control emulator model is associated. Default: None - :kdroop: Power error gain (). It is case dependent parameter. Default: 0.0 - :kipce: Pitch control emulator integral constant (). It is type dependent parameter. Default: 0.0 - :komegaaero: Aerodynamic power change vs. omegachange (). It is case dependent parameter. Default: 0.0 - :kppce: Pitch control emulator proportional constant (). It is type dependent parameter. Default: 0.0 - :omegaref: Rotor speed in initial steady state (omega). It is case dependent parameter. Default: 0.0 - :pimax: Maximum steady state power (). It is case dependent parameter. Default: 0.0 - :pimin: Minimum steady state power (). It is case dependent parameter. Default: 0.0 - :t1: First time constant in pitch control lag (). It is type dependent parameter. Default: 0 - :t2: Second time constant in pitch control lag (). It is type dependent parameter. Default: 0 - :tpe: Time constant in generator air gap power lag (). It is type dependent parameter. Default: 0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindGenTurbineType2IEC': [cgmesProfile.DY.value, ], - 'kdroop': [cgmesProfile.DY.value, ], - 'kipce': [cgmesProfile.DY.value, ], - 'komegaaero': [cgmesProfile.DY.value, ], - 'kppce': [cgmesProfile.DY.value, ], - 'omegaref': [cgmesProfile.DY.value, ], - 'pimax': [cgmesProfile.DY.value, ], - 'pimin': [cgmesProfile.DY.value, ], - 't1': [cgmesProfile.DY.value, ], - 't2': [cgmesProfile.DY.value, ], - 'tpe': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindGenTurbineType2IEC = None, kdroop = 0.0, kipce = 0.0, komegaaero = 0.0, kppce = 0.0, omegaref = 0.0, pimax = 0.0, pimin = 0.0, t1 = 0, t2 = 0, tpe = 0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindGenTurbineType2IEC = WindGenTurbineType2IEC - self.kdroop = kdroop - self.kipce = kipce - self.komegaaero = komegaaero - self.kppce = kppce - self.omegaref = omegaref - self.pimax = pimax - self.pimin = pimin - self.t1 = t1 - self.t2 = t2 - self.tpe = tpe - - def __str__(self): - str = 'class=WindPitchContEmulIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPlantDynamics.py b/cimpy/cgmes_v2_4_15/WindPlantDynamics.py deleted file mode 100644 index 9636dce8..00000000 --- a/cimpy/cgmes_v2_4_15/WindPlantDynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class WindPlantDynamics(DynamicsFunctionBlock): - ''' - Parent class supporting relationships to wind turbines Type 3 and 4 and wind plant IEC and user defined wind plants including their control models. - - :RemoteInputSignal: The wind plant using the remote signal. Default: None - :WindTurbineType3or4Dynamics: The wind turbine type 3 or 4 associated with this wind plant. Default: "list" - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'WindTurbineType3or4Dynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, WindTurbineType3or4Dynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics - - def __str__(self): - str = 'class=WindPlantDynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py b/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py deleted file mode 100644 index 7df19aaf..00000000 --- a/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py +++ /dev/null @@ -1,64 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindPlantFreqPcontrolIEC(IdentifiedObject): - ''' - Frequency and active power controller model. Reference: IEC Standard 61400-27-1 Annex E. - - :WindDynamicsLookupTable: The frequency and active power wind plant control model with which this wind dynamics lookup table is associated. Default: "list" - :dprefmax: Maximum ramp rate of request from the plant controller to the wind turbines (). It is project dependent parameter. Default: 0.0 - :dprefmin: Minimum (negative) ramp rate of request from the plant controller to the wind turbines (). It is project dependent parameter. Default: 0.0 - :kiwpp: Plant P controller integral gain (). It is type dependent parameter. Default: 0.0 - :kpwpp: Plant P controller proportional gain (). It is type dependent parameter. Default: 0.0 - :prefmax: Maximum request from the plant controller to the wind turbines (). It is type dependent parameter. Default: 0.0 - :prefmin: Minimum request from the plant controller to the wind turbines (). It is type dependent parameter. Default: 0.0 - :tpft: Lead time constant in reference value transfer function (). It is type dependent parameter. Default: 0 - :tpfv: Lag time constant in reference value transfer function (). It is type dependent parameter. Default: 0 - :twpffilt: Filter time constant for frequency measurement (). It is type dependent parameter. Default: 0 - :twppfilt: Filter time constant for active power measurement (). It is type dependent parameter. Default: 0 - :WindPlantIEC: Wind plant model with which this wind plant frequency and active power control is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindDynamicsLookupTable': [cgmesProfile.DY.value, ], - 'dprefmax': [cgmesProfile.DY.value, ], - 'dprefmin': [cgmesProfile.DY.value, ], - 'kiwpp': [cgmesProfile.DY.value, ], - 'kpwpp': [cgmesProfile.DY.value, ], - 'prefmax': [cgmesProfile.DY.value, ], - 'prefmin': [cgmesProfile.DY.value, ], - 'tpft': [cgmesProfile.DY.value, ], - 'tpfv': [cgmesProfile.DY.value, ], - 'twpffilt': [cgmesProfile.DY.value, ], - 'twppfilt': [cgmesProfile.DY.value, ], - 'WindPlantIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindDynamicsLookupTable = "list", dprefmax = 0.0, dprefmin = 0.0, kiwpp = 0.0, kpwpp = 0.0, prefmax = 0.0, prefmin = 0.0, tpft = 0, tpfv = 0, twpffilt = 0, twppfilt = 0, WindPlantIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindDynamicsLookupTable = WindDynamicsLookupTable - self.dprefmax = dprefmax - self.dprefmin = dprefmin - self.kiwpp = kiwpp - self.kpwpp = kpwpp - self.prefmax = prefmax - self.prefmin = prefmin - self.tpft = tpft - self.tpfv = tpfv - self.twpffilt = twpffilt - self.twppfilt = twppfilt - self.WindPlantIEC = WindPlantIEC - - def __str__(self): - str = 'class=WindPlantFreqPcontrolIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPlantIEC.py b/cimpy/cgmes_v2_4_15/WindPlantIEC.py deleted file mode 100644 index f97cc448..00000000 --- a/cimpy/cgmes_v2_4_15/WindPlantIEC.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindPlantDynamics import WindPlantDynamics - - -class WindPlantIEC(WindPlantDynamics): - ''' - Simplified IEC type plant level model. Reference: IEC 61400-27-1, AnnexE. - - :WindPlantFreqPcontrolIEC: Wind plant frequency and active power control model associated with this wind plant. Default: None - :WindPlantReactiveControlIEC: Wind plant reactive control model associated with this wind plant. Default: None - ''' - - cgmesProfile = WindPlantDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindPlantFreqPcontrolIEC': [cgmesProfile.DY.value, ], - 'WindPlantReactiveControlIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindPlantDynamics: \n' + WindPlantDynamics.__doc__ - - def __init__(self, WindPlantFreqPcontrolIEC = None, WindPlantReactiveControlIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC - self.WindPlantReactiveControlIEC = WindPlantReactiveControlIEC - - def __str__(self): - str = 'class=WindPlantIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py b/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py deleted file mode 100644 index 915b8bf8..00000000 --- a/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py +++ /dev/null @@ -1,70 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindPlantReactiveControlIEC(IdentifiedObject): - ''' - Simplified plant voltage and reactive power control model for use with type 3 and type 4 wind turbine models. Reference: IEC Standard 61400-27-1 Annex E. - - :WindPlantIEC: Wind plant model with which this wind reactive control is associated. Default: None - :kiwpx: Plant Q controller integral gain (). It is type dependent parameter. Default: 0.0 - :kpwpx: Plant Q controller proportional gain (). It is type dependent parameter. Default: 0.0 - :kwpqu: Plant voltage control droop (). It is project dependent parameter. Default: 0.0 - :mwppf: Power factor control modes selector (). Used only if mwpu is set to false. true = 1: power factor control false = 0: reactive power control. It is project dependent parameter. Default: False - :mwpu: Reactive power control modes selector (). true = 1: voltage control false = 0: reactive power control. It is project dependent parameter. Default: False - :twppfilt: Filter time constant for active power measurement (). It is type dependent parameter. Default: 0 - :twpqfilt: Filter time constant for reactive power measurement (). It is type dependent parameter. Default: 0 - :twpufilt: Filter time constant for voltage measurement (). It is type dependent parameter. Default: 0 - :txft: Lead time constant in reference value transfer function (). It is type dependent parameter. Default: 0 - :txfv: Lag time constant in reference value transfer function (). It is type dependent parameter. Default: 0 - :uwpqdip: Voltage threshold for LVRT detection in q control (). It is type dependent parameter. Default: 0.0 - :xrefmax: Maximum ( or delta ) request from the plant controller (). It is project dependent parameter. Default: 0.0 - :xrefmin: Minimum ( or delta) request from the plant controller (). It is project dependent parameter. Default: 0.0 - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindPlantIEC': [cgmesProfile.DY.value, ], - 'kiwpx': [cgmesProfile.DY.value, ], - 'kpwpx': [cgmesProfile.DY.value, ], - 'kwpqu': [cgmesProfile.DY.value, ], - 'mwppf': [cgmesProfile.DY.value, ], - 'mwpu': [cgmesProfile.DY.value, ], - 'twppfilt': [cgmesProfile.DY.value, ], - 'twpqfilt': [cgmesProfile.DY.value, ], - 'twpufilt': [cgmesProfile.DY.value, ], - 'txft': [cgmesProfile.DY.value, ], - 'txfv': [cgmesProfile.DY.value, ], - 'uwpqdip': [cgmesProfile.DY.value, ], - 'xrefmax': [cgmesProfile.DY.value, ], - 'xrefmin': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, WindPlantIEC = None, kiwpx = 0.0, kpwpx = 0.0, kwpqu = 0.0, mwppf = False, mwpu = False, twppfilt = 0, twpqfilt = 0, twpufilt = 0, txft = 0, txfv = 0, uwpqdip = 0.0, xrefmax = 0.0, xrefmin = 0.0, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindPlantIEC = WindPlantIEC - self.kiwpx = kiwpx - self.kpwpx = kpwpx - self.kwpqu = kwpqu - self.mwppf = mwppf - self.mwpu = mwpu - self.twppfilt = twppfilt - self.twpqfilt = twpqfilt - self.twpufilt = twpufilt - self.txft = txft - self.txfv = txfv - self.uwpqdip = uwpqdip - self.xrefmax = xrefmax - self.xrefmin = xrefmin - - def __str__(self): - str = 'class=WindPlantReactiveControlIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py b/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py deleted file mode 100644 index 0bddde31..00000000 --- a/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindPlantDynamics import WindPlantDynamics - - -class WindPlantUserDefined(WindPlantDynamics): - ''' - Wind plant function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = WindPlantDynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindPlantDynamics: \n' + WindPlantDynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=WindPlantUserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindProtectionIEC.py b/cimpy/cgmes_v2_4_15/WindProtectionIEC.py deleted file mode 100644 index 06b2707d..00000000 --- a/cimpy/cgmes_v2_4_15/WindProtectionIEC.py +++ /dev/null @@ -1,58 +0,0 @@ -from .IdentifiedObject import IdentifiedObject - - -class WindProtectionIEC(IdentifiedObject): - ''' - The grid protection model includes protection against over and under voltage, and against over and under frequency. Reference: IEC Standard 614000-27-1 Section 6.6.6. - - :fover: Set of wind turbine over frequency protection levels (). It is project dependent parameter. Default: 0.0 - :funder: Set of wind turbine under frequency protection levels (). It is project dependent parameter. Default: 0.0 - :tfover: Set of corresponding wind turbine over frequency protection disconnection times (). It is project dependent parameter. Default: 0 - :tfunder: Set of corresponding wind turbine under frequency protection disconnection times (). It is project dependent parameter. Default: 0 - :tuover: Set of corresponding wind turbine over voltage protection disconnection times (). It is project dependent parameter. Default: 0 - :tuunder: Set of corresponding wind turbine under voltage protection disconnection times (). It is project dependent parameter. Default: 0 - :uover: Set of wind turbine over voltage protection levels (). It is project dependent parameter. Default: 0.0 - :uunder: Set of wind turbine under voltage protection levels (). It is project dependent parameter. Default: 0.0 - :WindTurbineType3or4IEC: Wind generator type 3 or 4 model with which this wind turbine protection model is associated. Default: None - :WindTurbineType1or2IEC: Wind generator type 1 or 2 model with which this wind turbine protection model is associated. Default: None - ''' - - cgmesProfile = IdentifiedObject.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'fover': [cgmesProfile.DY.value, ], - 'funder': [cgmesProfile.DY.value, ], - 'tfover': [cgmesProfile.DY.value, ], - 'tfunder': [cgmesProfile.DY.value, ], - 'tuover': [cgmesProfile.DY.value, ], - 'tuunder': [cgmesProfile.DY.value, ], - 'uover': [cgmesProfile.DY.value, ], - 'uunder': [cgmesProfile.DY.value, ], - 'WindTurbineType3or4IEC': [cgmesProfile.DY.value, ], - 'WindTurbineType1or2IEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class IdentifiedObject: \n' + IdentifiedObject.__doc__ - - def __init__(self, fover = 0.0, funder = 0.0, tfover = 0, tfunder = 0, tuover = 0, tuunder = 0, uover = 0.0, uunder = 0.0, WindTurbineType3or4IEC = None, WindTurbineType1or2IEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.fover = fover - self.funder = funder - self.tfover = tfover - self.tfunder = tfunder - self.tuover = tuover - self.tuunder = tuunder - self.uover = uover - self.uunder = uunder - self.WindTurbineType3or4IEC = WindTurbineType3or4IEC - self.WindTurbineType1or2IEC = WindTurbineType1or2IEC - - def __str__(self): - str = 'class=WindProtectionIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py b/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py deleted file mode 100644 index 2a5709d4..00000000 --- a/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class WindQcontrolModesKind(Base): - ''' - General wind turbine Q control modes . - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=WindQcontrolModesKind\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py b/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py deleted file mode 100644 index 1fcc2293..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py +++ /dev/null @@ -1,34 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class WindTurbineType1or2Dynamics(DynamicsFunctionBlock): - ''' - Parent class supporting relationships to wind turbines Type 1 and 2 and their control models. - - :RemoteInputSignal: Remote input signal used by this wind generator Type 1 or Type 2 model. Default: None - :AsynchronousMachineDynamics: Asynchronous machine model with which this wind generator type 1 or 2 model is associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'AsynchronousMachineDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, RemoteInputSignal = None, AsynchronousMachineDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.RemoteInputSignal = RemoteInputSignal - self.AsynchronousMachineDynamics = AsynchronousMachineDynamics - - def __str__(self): - str = 'class=WindTurbineType1or2Dynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py b/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py deleted file mode 100644 index 9dbf2362..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics - - -class WindTurbineType1or2IEC(WindTurbineType1or2Dynamics): - ''' - Generator model for wind turbine of IEC Type 1 or Type 2 is a standard asynchronous generator model. Reference: IEC Standard 614000-27-1 Section 6.6.3.1. - - :WindMechIEC: Wind mechanical model associated with this wind generator type 1 or 2 model. Default: None - :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 1 or 2 model. Default: None - ''' - - cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindMechIEC': [cgmesProfile.DY.value, ], - 'WindProtectionIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType1or2Dynamics: \n' + WindTurbineType1or2Dynamics.__doc__ - - def __init__(self, WindMechIEC = None, WindProtectionIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindMechIEC = WindMechIEC - self.WindProtectionIEC = WindProtectionIEC - - def __str__(self): - str = 'class=WindTurbineType1or2IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py b/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py deleted file mode 100644 index a5abf9aa..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py +++ /dev/null @@ -1,37 +0,0 @@ -from .DynamicsFunctionBlock import DynamicsFunctionBlock - - -class WindTurbineType3or4Dynamics(DynamicsFunctionBlock): - ''' - Parent class supporting relationships to wind turbines Type 3 and 4 and wind plant including their control models. - - :EnergySource: Energy Source (current source) with which this wind Type 3 or 4 dynamics model is asoociated. Default: None - :RemoteInputSignal: Wind turbine Type 3 or 4 models using this remote input signal. Default: None - :WindPlantDynamics: The wind plant with which the wind turbines type 3 or 4 are associated. Default: None - ''' - - cgmesProfile = DynamicsFunctionBlock.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'EnergySource': [cgmesProfile.DY.value, ], - 'RemoteInputSignal': [cgmesProfile.DY.value, ], - 'WindPlantDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class DynamicsFunctionBlock: \n' + DynamicsFunctionBlock.__doc__ - - def __init__(self, EnergySource = None, RemoteInputSignal = None, WindPlantDynamics = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.EnergySource = EnergySource - self.RemoteInputSignal = RemoteInputSignal - self.WindPlantDynamics = WindPlantDynamics - - def __str__(self): - str = 'class=WindTurbineType3or4Dynamics\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py b/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py deleted file mode 100644 index fa4d707a..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py +++ /dev/null @@ -1,37 +0,0 @@ -from .WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics - - -class WindTurbineType3or4IEC(WindTurbineType3or4Dynamics): - ''' - Parent class supporting relationships to IEC wind turbines Type 3 and 4 and wind plant including their control models. - - :WindContCurrLimIEC: Wind control current limitation model associated with this wind turbine type 3 or 4 model. Default: None - :WIndContQIEC: Wind control Q model associated with this wind turbine type 3 or 4 model. Default: None - :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 3 or 4 model. Default: None - ''' - - cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindContCurrLimIEC': [cgmesProfile.DY.value, ], - 'WIndContQIEC': [cgmesProfile.DY.value, ], - 'WindProtectionIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType3or4Dynamics: \n' + WindTurbineType3or4Dynamics.__doc__ - - def __init__(self, WindContCurrLimIEC = None, WIndContQIEC = None, WindProtectionIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindContCurrLimIEC = WindContCurrLimIEC - self.WIndContQIEC = WIndContQIEC - self.WindProtectionIEC = WindProtectionIEC - - def __str__(self): - str = 'class=WindTurbineType3or4IEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py b/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py deleted file mode 100644 index 24989781..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py +++ /dev/null @@ -1,31 +0,0 @@ -from .WindGenType4IEC import WindGenType4IEC - - -class WindTurbineType4aIEC(WindGenType4IEC): - ''' - Wind turbine IEC Type 4A. Reference: IEC Standard 61400-27-1, section 6.5.5.2. - - :WindContPType4aIEC: Wind control P type 4A model associated with this wind turbine type 4A model. Default: None - ''' - - cgmesProfile = WindGenType4IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindContPType4aIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindGenType4IEC: \n' + WindGenType4IEC.__doc__ - - def __init__(self, WindContPType4aIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindContPType4aIEC = WindContPType4aIEC - - def __str__(self): - str = 'class=WindTurbineType4aIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py b/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py deleted file mode 100644 index f84e053b..00000000 --- a/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindGenType4IEC import WindGenType4IEC - - -class WindTurbineType4bIEC(WindGenType4IEC): - ''' - Wind turbine IEC Type 4A. Reference: IEC Standard 61400-27-1, section 6.5.5.3. - - :WindContPType4bIEC: Wind control P type 4B model associated with this wind turbine type 4B model. Default: None - :WindMechIEC: Wind mechanical model associated with this wind turbine Type 4B model. Default: None - ''' - - cgmesProfile = WindGenType4IEC.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'WindContPType4bIEC': [cgmesProfile.DY.value, ], - 'WindMechIEC': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindGenType4IEC: \n' + WindGenType4IEC.__doc__ - - def __init__(self, WindContPType4bIEC = None, WindMechIEC = None, *args, **kw_args): - super().__init__(*args, **kw_args) - - self.WindContPType4bIEC = WindContPType4bIEC - self.WindMechIEC = WindMechIEC - - def __str__(self): - str = 'class=WindTurbineType4bIEC\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py b/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py deleted file mode 100644 index 3b966d46..00000000 --- a/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics - - -class WindType1or2UserDefined(WindTurbineType1or2Dynamics): - ''' - Wind Type 1 or Type 2 function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType1or2Dynamics: \n' + WindTurbineType1or2Dynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=WindType1or2UserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py b/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py deleted file mode 100644 index bcb93e14..00000000 --- a/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py +++ /dev/null @@ -1,34 +0,0 @@ -from .WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics - - -class WindType3or4UserDefined(WindTurbineType3or4Dynamics): - ''' - Wind Type 3 or Type 4 function block whose dynamic behaviour is described by - - :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False - :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" - ''' - - cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.DY.value, ], - 'proprietary': [cgmesProfile.DY.value, ], - 'ProprietaryParameterDynamics': [cgmesProfile.DY.value, ], - } - - serializationProfile = {} - - __doc__ += '\n Documentation of parent class WindTurbineType3or4Dynamics: \n' + WindTurbineType3or4Dynamics.__doc__ - - def __init__(self, proprietary = False, ProprietaryParameterDynamics = "list", *args, **kw_args): - super().__init__(*args, **kw_args) - - self.proprietary = proprietary - self.ProprietaryParameterDynamics = ProprietaryParameterDynamics - - def __str__(self): - str = 'class=WindType3or4UserDefined\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/cgmes_v2_4_15/WindingConnection.py b/cimpy/cgmes_v2_4_15/WindingConnection.py deleted file mode 100644 index ca3bb250..00000000 --- a/cimpy/cgmes_v2_4_15/WindingConnection.py +++ /dev/null @@ -1,28 +0,0 @@ -from .Base import Base - - -class WindingConnection(Base): - ''' - Winding connection type. - - ''' - - cgmesProfile = Base.cgmesProfile - - possibleProfileList = {'class': [cgmesProfile.EQ.value, ], - } - - serializationProfile = {} - - - - def __init__(self, ): - - pass - - def __str__(self): - str = 'class=WindingConnection\n' - attributes = self.__dict__ - for key in attributes.keys(): - str = str + key + '={}\n'.format(attributes[key]) - return str diff --git a/cimpy/examples/import_cigre_mv.py b/cimpy/examples/import_cigre_mv.py deleted file mode 100644 index ff3b3af2..00000000 --- a/cimpy/examples/import_cigre_mv.py +++ /dev/null @@ -1,26 +0,0 @@ -import logging -import cimpy -from pathlib import Path - -logging.basicConfig(filename="importCIGREMV.log", level=logging.INFO, filemode="w") - -example = Path(__file__).resolve().parent - -# Called as cimpy.examples.import_example() or file run from quickstart directory? -if "cimexamples.py" in str(__file__): - sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" -else: - sample_folder = example / "sampledata" / "CIGRE_MV" -print(sample_folder) -sample_files = sample_folder.glob("*.xml") -print(sample_files) -xml_files = [] -for file in sample_folder.glob("*.xml"): - xml_files.append(str(file.absolute())) - -import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -print("\n\n") -results = ["ACLineSegment", "PowerTransformer", "EnergyConsumer"] -for key, value in import_result["topology"].items(): - if value.__class__.__name__ in results: - print(value.__str__()) diff --git a/cimpy_3/Dockerfile b/cimpy_3/Dockerfile new file mode 100644 index 00000000..07680538 --- /dev/null +++ b/cimpy_3/Dockerfile @@ -0,0 +1,35 @@ +FROM fedora:29 + +LABEL \ + org.label-schema.schema-version = "1.0" \ + org.label-schema.name = "cimpy" \ + org.label-schema.license = "Mozilla Public License Version 2.0" \ + org.label-schema.vendor = "Institute for Automation of Complex Power Systems, RWTH Aachen University" \ + org.label-schema.author.name = "Jan Dinkelbach" \ + org.label-schema.author.email = "acs-software@eonerc.rwth-aachen.de" \ + org.label-schema.vcs-url = "https://git.rwth-aachen.de/acs/public/cim/cimpy" + + +RUN dnf -y update + +RUN dnf -y install \ + make \ + python3-pip \ + graphviz-devel + +RUN dnf --refresh -y install \ + python3-devel + +RUN pip3 install sphinx_rtd_theme + +RUN pip3 install sphinx==2.2.0 + +RUN pip3 install pytest + +RUN pip3 install pytest-check + +ADD . /cimpy + +WORKDIR /cimpy + +RUN python3 setup.py install diff --git a/cimpy_3/LICENSE b/cimpy_3/LICENSE new file mode 100644 index 00000000..a612ad98 --- /dev/null +++ b/cimpy_3/LICENSE @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/cimpy_3/MANIFEST.in b/cimpy_3/MANIFEST.in new file mode 100644 index 00000000..ba74de8f --- /dev/null +++ b/cimpy_3/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include cimpy/examples *.xml *.py +recursive-include cimpy *.mustache diff --git a/cimpy_3/README.md b/cimpy_3/README.md new file mode 100644 index 00000000..98946188 --- /dev/null +++ b/cimpy_3/README.md @@ -0,0 +1,26 @@ +# CIMpy + +The CIMpy package enables the import, modification and export of grid data in the format of XML/RDF documents based on the Common Information Model (CIM) specified by the IEC61970 standard. + +The processing of grid data is based on CIM compatible Python classes. The codebase for the CIM compatible Python classes was generated in an automated way. A separate tool allows for an easy adaption of CIMpy and its underlying codebase. + +The focus of CIMpy is on the support of the Common Grid Model Exchange Standard (CGMES) specified by the European Network of Transmission System Operators for Electricity (ENTSO-E). However, the CIMpy package can readily support further as well as new CIM versions if required. + +## Documentation + +CIMpy's documentation you can find [here](https://acs.pages.rwth-aachen.de/public/cim/cimpy/index.html). +The documentation provides instructions on CIMpy's installation, getting started examples and the possibility to browse through the supported CIM class codebases. + +## License + +This project is released under the terms of the [Mozilla Public License Version 2.0](./LICENSE). + +## Contact + +[![EONERC ACS Logo](https://www.fein-aachen.org/img/logos/eonerc.png)](http://www.acs.eonerc.rwth-aachen.de) + +- Jan Dinkelbach + +[Institute for Automation of Complex Power Systems (ACS)](http://www.acs.eonerc.rwth-aachen.de) +[EON Energy Research Center (EONERC)](http://www.eonerc.rwth-aachen.de) +[RWTH University Aachen, Germany](http://www.rwth-aachen.de) diff --git a/cimpy/__init__.py b/cimpy_3/cimpy/__init__.py similarity index 56% rename from cimpy/__init__.py rename to cimpy_3/cimpy/__init__.py index 061e9d82..15a9ab7f 100644 --- a/cimpy/__init__.py +++ b/cimpy_3/cimpy/__init__.py @@ -1,9 +1,7 @@ -# flake8: noqa - from cimpy.cimexport import cim_export from cimpy.cimimport import cim_import import cimpy.utils from cimpy.cimexamples import import_example from cimpy.cimexamples import export_example -from cimpy.cimexamples import add_external_network_injection_example -from cimpy.cimexamples import convert_to_bus_branch_example +from cimpy.cimexamples import addExternalNetworkInjection_example +from cimpy.cimexamples import convertToBusBranch_example diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverter.py b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverter.py new file mode 100644 index 00000000..49a0283d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverter.py @@ -0,0 +1,154 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class ACDCConverter(ConductingEquipment): + """ + A unit with valves for three phases, together with unit control equipment, essential protective and switching devices, DC storage capacitors, phase reactors and auxiliaries, if any, used for conversion. + + :baseS: Base apparent power of the converter pole. Default: 0.0 + :idleLoss: Active power loss in pole at no power transfer. Converter configuration data used in power flow. Default: 0.0 + :maxUdc: The maximum voltage on the DC side at which the converter should operate. Converter configuration data used in power flow. Default: 0.0 + :minUdc: Min allowed converter DC voltage. Converter configuration data used in power flow. Default: 0.0 + :numberOfValves: Number of valves in the converter. Used in loss calculations. Default: 0 + :ratedUdc: Rated converter DC voltage, also called UdN. Converter configuration data used in power flow. Default: 0.0 + :resistiveLoss: Converter configuration data used in power flow. Refer to poleLossP. Default: 0.0 + :switchingLoss: Switching losses, relative to the base apparent power 'baseS'. Refer to poleLossP. Default: 0.0 + :valveU0: Valve threshold voltage. Forward voltage drop when the valve is conducting. Used in loss calculations, i.e. the switchLoss depend on numberOfValves * valveU0. Default: 0.0 + :DCTerminals: Default: "list" + :PccTerminal: All converters' DC sides linked to this point of common coupling terminal. Default: None + :idc: Converter DC current, also called Id. Converter state variable, result from power flow. Default: 0.0 + :poleLossP: The active power loss at a DC Pole = idleLoss + switchingLoss*|Idc| + resitiveLoss*Idc^2 For lossless operation Pdc=Pac For rectifier operation with losses Pdc=Pac-lossP For inverter operation with losses Pdc=Pac+lossP Converter state variable used in power flow. Default: 0.0 + :uc: Converter voltage, the voltage at the AC side of the bridge. Converter state variable, result from power flow. Default: 0.0 + :udc: Converter voltage at the DC side, also called Ud. Converter state variable, result from power flow. Default: 0.0 + :p: Active power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 + :q: Reactive power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 + :targetPpcc: Real power injection target in AC grid, at point of common coupling. Default: 0.0 + :targetUdc: Target value for DC voltage magnitude. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "baseS": [ + cgmesProfile.EQ.value, + ], + "idleLoss": [ + cgmesProfile.EQ.value, + ], + "maxUdc": [ + cgmesProfile.EQ.value, + ], + "minUdc": [ + cgmesProfile.EQ.value, + ], + "numberOfValves": [ + cgmesProfile.EQ.value, + ], + "ratedUdc": [ + cgmesProfile.EQ.value, + ], + "resistiveLoss": [ + cgmesProfile.EQ.value, + ], + "switchingLoss": [ + cgmesProfile.EQ.value, + ], + "valveU0": [ + cgmesProfile.EQ.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + "PccTerminal": [ + cgmesProfile.EQ.value, + ], + "idc": [ + cgmesProfile.SV.value, + ], + "poleLossP": [ + cgmesProfile.SV.value, + ], + "uc": [ + cgmesProfile.SV.value, + ], + "udc": [ + cgmesProfile.SV.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "targetPpcc": [ + cgmesProfile.SSH.value, + ], + "targetUdc": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + baseS=0.0, + idleLoss=0.0, + maxUdc=0.0, + minUdc=0.0, + numberOfValves=0, + ratedUdc=0.0, + resistiveLoss=0.0, + switchingLoss=0.0, + valveU0=0.0, + DCTerminals="list", + PccTerminal=None, + idc=0.0, + poleLossP=0.0, + uc=0.0, + udc=0.0, + p=0.0, + q=0.0, + targetPpcc=0.0, + targetUdc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.baseS = baseS + self.idleLoss = idleLoss + self.maxUdc = maxUdc + self.minUdc = minUdc + self.numberOfValves = numberOfValves + self.ratedUdc = ratedUdc + self.resistiveLoss = resistiveLoss + self.switchingLoss = switchingLoss + self.valveU0 = valveU0 + self.DCTerminals = DCTerminals + self.PccTerminal = PccTerminal + self.idc = idc + self.poleLossP = poleLossP + self.uc = uc + self.udc = udc + self.p = p + self.q = q + self.targetPpcc = targetPpcc + self.targetUdc = targetUdc + + def __str__(self): + str = "class=ACDCConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py new file mode 100644 index 00000000..ef38b08b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCConverterDCTerminal.py @@ -0,0 +1,45 @@ +from cimpy.cgmes_v2_4_15.DCBaseTerminal import DCBaseTerminal + + +class ACDCConverterDCTerminal(DCBaseTerminal): + """ + A DC electrical connection point at the AC/DC converter. The AC/DC converter is electrically connected also to the AC side. The AC connection is inherited from the AC conducting equipment in the same way as any other AC equipment. The AC/DC converter DC terminal is separate from generic DC terminal to restrict the connection with the AC side to AC/DC converter and so that no other DC conducting equipment can be connected to the AC side. + + :DCConductingEquipment: Default: None + :polarity: Represents the normal network polarity condition. Default: None + """ + + cgmesProfile = DCBaseTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "DCConductingEquipment": [ + cgmesProfile.EQ.value, + ], + "polarity": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCBaseTerminal: \n" + DCBaseTerminal.__doc__ + ) + + def __init__(self, DCConductingEquipment=None, polarity=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCConductingEquipment = DCConductingEquipment + self.polarity = polarity + + def __str__(self): + str = "class=ACDCConverterDCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ACDCTerminal.py b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCTerminal.py new file mode 100644 index 00000000..94360025 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ACDCTerminal.py @@ -0,0 +1,66 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class ACDCTerminal(IdentifiedObject): + """ + An electrical connection point (AC or DC) to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. + + :BusNameMarker: The bus name marker used to name the bus (topological node). Default: None + :sequenceNumber: The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the "starting point" for a two terminal branch. Default: 0 + :OperationalLimitSet: Default: "list" + :connected: The connected status is related to a bus-branch model and the topological node to terminal relation. True implies the terminal is connected to the related topological node and false implies it is not. In a bus-branch model, the connected status is used to tell if equipment is disconnected without having to change the connectivity described by the topological node to terminal relation. A valid case is that conducting equipment can be connected in one end and open in the other. In particular for an AC line segment, where the reactive line charging can be significant, this is a relevant case. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "BusNameMarker": [ + cgmesProfile.EQ.value, + ], + "sequenceNumber": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitSet": [ + cgmesProfile.EQ.value, + ], + "connected": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + BusNameMarker=None, + sequenceNumber=0, + OperationalLimitSet="list", + connected=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BusNameMarker = BusNameMarker + self.sequenceNumber = sequenceNumber + self.OperationalLimitSet = OperationalLimitSet + self.connected = connected + + def __str__(self): + str = "class=ACDCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ACLineSegment.py b/cimpy_3/cimpy/cgmes_v2_4_15/ACLineSegment.py new file mode 100644 index 00000000..0926fe20 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ACLineSegment.py @@ -0,0 +1,89 @@ +from cimpy.cgmes_v2_4_15.Conductor import Conductor + + +class ACLineSegment(Conductor): + """ + A wire or combination of wires, with consistent electrical characteristics, building a single electrical system, used to carry alternating current between points in the power system. For symmetrical, transposed 3ph lines, it is sufficient to use attributes of the line segment, which describe impedances and admittances for the entire length of the segment. Additionally impedances can be computed by using length and associated per length impedances. The BaseVoltage at the two ends of ACLineSegments in a Line shall have the same BaseVoltage.nominalVoltage. However, boundary lines may have slightly different BaseVoltage.nominalVoltages and variation is allowed. Larger voltage difference in general requires use of an equivalent branch. + + :bch: Positive sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. This value represents the full charging over the full length of the line. Default: 0.0 + :gch: Positive sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r: Positive sequence series resistance of the entire line section. Default: 0.0 + :x: Positive sequence series reactance of the entire line section. Default: 0.0 + :b0ch: Zero sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 + :g0ch: Zero sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r0: Zero sequence series resistance of the entire line section. Default: 0.0 + :shortCircuitEndTemperature: Maximum permitted temperature at the end of SC for the calculation of minimum short-circuit currents. Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :x0: Zero sequence series reactance of the entire line section. Default: 0.0 + """ + + cgmesProfile = Conductor.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "bch": [ + cgmesProfile.EQ.value, + ], + "gch": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "b0ch": [ + cgmesProfile.EQ.value, + ], + "g0ch": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "shortCircuitEndTemperature": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Conductor: \n" + Conductor.__doc__ + + def __init__( + self, + bch=0.0, + gch=0.0, + r=0.0, + x=0.0, + b0ch=0.0, + g0ch=0.0, + r0=0.0, + shortCircuitEndTemperature=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bch = bch + self.gch = gch + self.r = r + self.x = x + self.b0ch = b0ch + self.g0ch = g0ch + self.r0 = r0 + self.shortCircuitEndTemperature = shortCircuitEndTemperature + self.x0 = x0 + + def __str__(self): + str = "class=ACLineSegment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Accumulator.py b/cimpy_3/cimpy/cgmes_v2_4_15/Accumulator.py new file mode 100644 index 00000000..32843b29 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Accumulator.py @@ -0,0 +1,41 @@ +from .Measurement import Measurement + + +class Accumulator(Measurement): + """ + Accumulator represents an accumulated (counted) Measurement, e.g. an energy value. + + :LimitSets: The Measurements using the LimitSet. Default: "list" + :AccumulatorValues: Measurement to which this value is connected. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "LimitSets": [ + cgmesProfile.EQ.value, + ], + "AccumulatorValues": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, LimitSets="list", AccumulatorValues="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LimitSets = LimitSets + self.AccumulatorValues = AccumulatorValues + + def __str__(self): + str = "class=Accumulator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimit.py new file mode 100644 index 00000000..6f1a6699 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimit.py @@ -0,0 +1,41 @@ +from .Limit import Limit + + +class AccumulatorLimit(Limit): + """ + Limit values for Accumulator measurements. + + :value: The value to supervise against. The value is positive. Default: 0 + :LimitSet: The limit values used for supervision of Measurements. Default: None + """ + + cgmesProfile = Limit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "LimitSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Limit: \n" + Limit.__doc__ + + def __init__(self, value=0, LimitSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.LimitSet = LimitSet + + def __str__(self): + str = "class=AccumulatorLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py new file mode 100644 index 00000000..acaa8230 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorLimitSet.py @@ -0,0 +1,41 @@ +from .LimitSet import LimitSet + + +class AccumulatorLimitSet(LimitSet): + """ + An AccumulatorLimitSet specifies a set of Limits that are associated with an Accumulator measurement. + + :Measurements: A measurement may have zero or more limit ranges defined for it. Default: "list" + :Limits: The set of limits. Default: "list" + """ + + cgmesProfile = LimitSet.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Measurements": [ + cgmesProfile.EQ.value, + ], + "Limits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LimitSet: \n" + LimitSet.__doc__ + + def __init__(self, Measurements="list", Limits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Measurements = Measurements + self.Limits = Limits + + def __str__(self): + str = "class=AccumulatorLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorReset.py b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorReset.py new file mode 100644 index 00000000..388f41e3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorReset.py @@ -0,0 +1,36 @@ +from .Control import Control + + +class AccumulatorReset(Control): + """ + This command reset the counter value to zero. + + :AccumulatorValue: The accumulator value that is reset by the command. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "AccumulatorValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__(self, AccumulatorValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.AccumulatorValue = AccumulatorValue + + def __str__(self): + str = "class=AccumulatorReset\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorValue.py b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorValue.py new file mode 100644 index 00000000..0f1ef444 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AccumulatorValue.py @@ -0,0 +1,51 @@ +from .MeasurementValue import MeasurementValue + + +class AccumulatorValue(MeasurementValue): + """ + AccumulatorValue represents an accumulated (counted) MeasurementValue. + + :Accumulator: The values connected to this measurement. Default: None + :AccumulatorReset: The command that reset the accumulator value. Default: None + :value: The value to supervise. The value is positive. Default: 0 + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Accumulator": [ + cgmesProfile.EQ.value, + ], + "AccumulatorReset": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__( + self, Accumulator=None, AccumulatorReset=None, value=0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.Accumulator = Accumulator + self.AccumulatorReset = AccumulatorReset + self.value = value + + def __str__(self): + str = "class=AccumulatorValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ActivePower.py b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePower.py new file mode 100644 index 00000000..f79de08c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePower.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ActivePower(Base): + """ + Product of RMS value of the voltage and the RMS value of the in-phase component of the current. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=ActivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerLimit.py new file mode 100644 index 00000000..636c07bc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerLimit.py @@ -0,0 +1,39 @@ +from .OperationalLimit import OperationalLimit + + +class ActivePowerLimit(OperationalLimit): + """ + Limit on active power flow. + + :value: Value of active power limit. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + + def __str__(self): + str = "class=ActivePowerLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py new file mode 100644 index 00000000..882c6a88 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerCurrentFlow.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ActivePowerPerCurrentFlow(Base): + """ + + + :denominatorMultiplier: Default: None + :denominatorUnit: Default: None + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + denominatorMultiplier=None, + denominatorUnit=None, + multiplier=None, + unit=None, + value=0.0, + ): + + self.denominatorMultiplier = denominatorMultiplier + self.denominatorUnit = denominatorUnit + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=ActivePowerPerCurrentFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py new file mode 100644 index 00000000..d1360c3b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ActivePowerPerFrequency.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ActivePowerPerFrequency(Base): + """ + Active power variation with frequency. + + :denominatorMultiplier: Default: None + :denominatorUnit: Default: None + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + denominatorMultiplier=None, + denominatorUnit=None, + multiplier=None, + unit=None, + value=0.0, + ): + + self.denominatorMultiplier = denominatorMultiplier + self.denominatorUnit = denominatorUnit + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=ActivePowerPerFrequency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Analog.py b/cimpy_3/cimpy/cgmes_v2_4_15/Analog.py new file mode 100644 index 00000000..6c53f8bb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Analog.py @@ -0,0 +1,53 @@ +from .Measurement import Measurement + + +class Analog(Measurement): + """ + Analog represents an analog Measurement. + + :positiveFlowIn: If true then this measurement is an active power, reactive power or current with the convention that a positive value measured at the Terminal means power is flowing into the related PowerSystemResource. Default: False + :AnalogValues: Measurement to which this value is connected. Default: "list" + :LimitSets: The Measurements using the LimitSet. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "positiveFlowIn": [ + cgmesProfile.EQ.value, + ], + "AnalogValues": [ + cgmesProfile.EQ.value, + ], + "LimitSets": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__( + self, + positiveFlowIn=False, + AnalogValues="list", + LimitSets="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.positiveFlowIn = positiveFlowIn + self.AnalogValues = AnalogValues + self.LimitSets = LimitSets + + def __str__(self): + str = "class=Analog\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AnalogControl.py b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogControl.py new file mode 100644 index 00000000..0bc083cf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogControl.py @@ -0,0 +1,46 @@ +from .Control import Control + + +class AnalogControl(Control): + """ + An analog control used for supervisory control. + + :maxValue: Normal value range maximum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 + :minValue: Normal value range minimum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 + :AnalogValue: The Control variable associated with the MeasurementValue. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "maxValue": [ + cgmesProfile.EQ.value, + ], + "minValue": [ + cgmesProfile.EQ.value, + ], + "AnalogValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__(self, maxValue=0.0, minValue=0.0, AnalogValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.maxValue = maxValue + self.minValue = minValue + self.AnalogValue = AnalogValue + + def __str__(self): + str = "class=AnalogControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimit.py new file mode 100644 index 00000000..07bc7ea1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimit.py @@ -0,0 +1,41 @@ +from .Limit import Limit + + +class AnalogLimit(Limit): + """ + Limit values for Analog measurements. + + :value: The value to supervise against. Default: 0.0 + :LimitSet: The limit values used for supervision of Measurements. Default: None + """ + + cgmesProfile = Limit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "LimitSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Limit: \n" + Limit.__doc__ + + def __init__(self, value=0.0, LimitSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.LimitSet = LimitSet + + def __str__(self): + str = "class=AnalogLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimitSet.py b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimitSet.py new file mode 100644 index 00000000..6b7bf8dd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogLimitSet.py @@ -0,0 +1,41 @@ +from .LimitSet import LimitSet + + +class AnalogLimitSet(LimitSet): + """ + An AnalogLimitSet specifies a set of Limits that are associated with an Analog measurement. + + :Measurements: A measurement may have zero or more limit ranges defined for it. Default: "list" + :Limits: The set of limits. Default: "list" + """ + + cgmesProfile = LimitSet.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Measurements": [ + cgmesProfile.EQ.value, + ], + "Limits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LimitSet: \n" + LimitSet.__doc__ + + def __init__(self, Measurements="list", Limits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Measurements = Measurements + self.Limits = Limits + + def __str__(self): + str = "class=AnalogLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AnalogValue.py b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogValue.py new file mode 100644 index 00000000..4021c66a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AnalogValue.py @@ -0,0 +1,49 @@ +from .MeasurementValue import MeasurementValue + + +class AnalogValue(MeasurementValue): + """ + AnalogValue represents an analog MeasurementValue. + + :Analog: The values connected to this measurement. Default: None + :AnalogControl: The MeasurementValue that is controlled. Default: None + :value: The value to supervise. Default: 0.0 + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Analog": [ + cgmesProfile.EQ.value, + ], + "AnalogControl": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, Analog=None, AnalogControl=None, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Analog = Analog + self.AnalogControl = AnalogControl + self.value = value + + def __str__(self): + str = "class=AnalogValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AngleDegrees.py b/cimpy_3/cimpy/cgmes_v2_4_15/AngleDegrees.py new file mode 100644 index 00000000..059923ca --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AngleDegrees.py @@ -0,0 +1,64 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class AngleDegrees(Base): + """ + Measurement of angle in degrees. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=AngleDegrees\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AngleRadians.py b/cimpy_3/cimpy/cgmes_v2_4_15/AngleRadians.py new file mode 100644 index 00000000..ad261e7a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AngleRadians.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class AngleRadians(Base): + """ + Phase angle in radians. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=AngleRadians\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPower.py b/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPower.py new file mode 100644 index 00000000..3c0d1066 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPower.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ApparentPower(Base): + """ + Product of the RMS value of the voltage and the RMS value of the current. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=ApparentPower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py new file mode 100644 index 00000000..f5efef67 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ApparentPowerLimit.py @@ -0,0 +1,39 @@ +from .OperationalLimit import OperationalLimit + + +class ApparentPowerLimit(OperationalLimit): + """ + Apparent power limit. + + :value: The apparent power limit. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + + def __str__(self): + str = "class=ApparentPowerLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Area.py b/cimpy_3/cimpy/cgmes_v2_4_15/Area.py new file mode 100644 index 00000000..32e97e05 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Area.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Area(Base): + """ + Area. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "value": [ + cgmesProfile.DY.value, + ], + "unit": [ + cgmesProfile.DY.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Area\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachine.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachine.py new file mode 100644 index 00000000..bbc71550 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachine.py @@ -0,0 +1,105 @@ +from cimpy.cgmes_v2_4_15.RotatingMachine import RotatingMachine + + +class AsynchronousMachine(RotatingMachine): + """ + A rotating machine whose shaft rotates asynchronously with the electrical field. Also known as an induction machine with no external connection to the rotor windings, e.g squirrel-cage induction machine. + + :AsynchronousMachineDynamics: Asynchronous machine dynamics model used to describe dynamic behavior of this asynchronous machine. Default: None + :nominalFrequency: Nameplate data indicates if the machine is 50 or 60 Hz. Default: 0.0 + :nominalSpeed: Nameplate data. Depends on the slip and number of pole pairs. Default: 0.0 + :converterFedDrive: Indicates whether the machine is a converter fed drive. Used for short circuit data exchange according to IEC 60909 Default: False + :efficiency: Efficiency of the asynchronous machine at nominal operation in percent. Indicator for converter drive motors. Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :iaIrRatio: Ratio of locked-rotor current to the rated current of the motor (Ia/Ir). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :polePairNumber: Number of pole pairs of stator. Used for short circuit data exchange according to IEC 60909 Default: 0 + :ratedMechanicalPower: Rated mechanical power (Pr in the IEC 60909-0). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :reversible: Indicates for converter drive motors if the power can be reversible. Used for short circuit data exchange according to IEC 60909 Default: False + :rxLockedRotorRatio: Locked rotor ratio (R/X). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :asynchronousMachineType: Indicates the type of Asynchronous Machine (motor or generator). Default: None + """ + + cgmesProfile = RotatingMachine.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "nominalFrequency": [ + cgmesProfile.EQ.value, + ], + "nominalSpeed": [ + cgmesProfile.EQ.value, + ], + "converterFedDrive": [ + cgmesProfile.EQ.value, + ], + "efficiency": [ + cgmesProfile.EQ.value, + ], + "iaIrRatio": [ + cgmesProfile.EQ.value, + ], + "polePairNumber": [ + cgmesProfile.EQ.value, + ], + "ratedMechanicalPower": [ + cgmesProfile.EQ.value, + ], + "reversible": [ + cgmesProfile.EQ.value, + ], + "rxLockedRotorRatio": [ + cgmesProfile.EQ.value, + ], + "asynchronousMachineType": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachine: \n" + RotatingMachine.__doc__ + ) + + def __init__( + self, + AsynchronousMachineDynamics=None, + nominalFrequency=0.0, + nominalSpeed=0.0, + converterFedDrive=False, + efficiency=0.0, + iaIrRatio=0.0, + polePairNumber=0, + ratedMechanicalPower=0.0, + reversible=False, + rxLockedRotorRatio=0.0, + asynchronousMachineType=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + self.nominalFrequency = nominalFrequency + self.nominalSpeed = nominalSpeed + self.converterFedDrive = converterFedDrive + self.efficiency = efficiency + self.iaIrRatio = iaIrRatio + self.polePairNumber = polePairNumber + self.ratedMechanicalPower = ratedMechanicalPower + self.reversible = reversible + self.rxLockedRotorRatio = rxLockedRotorRatio + self.asynchronousMachineType = asynchronousMachineType + + def __str__(self): + str = "class=AsynchronousMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py new file mode 100644 index 00000000..f1114589 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineDynamics.py @@ -0,0 +1,62 @@ +from cimpy.cgmes_v2_4_15.RotatingMachineDynamics import RotatingMachineDynamics + + +class AsynchronousMachineDynamics(RotatingMachineDynamics): + """ + Asynchronous machine whose behaviour is described by reference to a standard model expressed in either time constant reactance form or equivalent circuit form + + :AsynchronousMachine: Asynchronous machine to which this asynchronous machine dynamics model applies. Default: None + :MechanicalLoadDynamics: Mechanical load model associated with this asynchronous machine model. Default: None + :WindTurbineType1or2Dynamics: Wind generator type 1 or 2 model associated with this asynchronous machine model. Default: None + :TurbineGovernorDynamics: Turbine-governor model associated with this asynchronous machine model. Default: None + """ + + cgmesProfile = RotatingMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachine": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2Dynamics": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachineDynamics: \n" + + RotatingMachineDynamics.__doc__ + ) + + def __init__( + self, + AsynchronousMachine=None, + MechanicalLoadDynamics=None, + WindTurbineType1or2Dynamics=None, + TurbineGovernorDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.AsynchronousMachine = AsynchronousMachine + self.MechanicalLoadDynamics = MechanicalLoadDynamics + self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics + self.TurbineGovernorDynamics = TurbineGovernorDynamics + + def __str__(self): + str = "class=AsynchronousMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py new file mode 100644 index 00000000..5abec1a4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineEquivalentCircuit.py @@ -0,0 +1,59 @@ +from cimpy.cgmes_v2_4_15.AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineEquivalentCircuit(AsynchronousMachineDynamics): + """ + The electrical equations of all variations of the asynchronous model are based on the AsynchronousEquivalentCircuit diagram for the direct and quadrature axes, with two equivalent rotor windings in each axis. = + = + * / ( + ) = + * * / ( * + * + * ) = ( + ) / ( * ) = ( * + * + * ) / ( * * (+ ) Same equations using CIM attributes from AsynchronousMachineTimeConstantReactance class on left of = sign and AsynchronousMachineEquivalentCircuit class on right (except as noted): xs = xm + RotatingMachineDynamics.statorLeakageReactance xp = RotatingMachineDynamics.statorLeakageReactance + xm * xlr1 / (xm + xlr1) xpp = RotatingMachineDynamics.statorLeakageReactance + xm * xlr1* xlr2 / (xm * xlr1 + xm * xlr2 + xlr1 * xlr2) tpo = (xm + xlr1) / (2*pi*nominal frequency * rr1) tppo = (xm * xlr1 + xm * xlr2 + xlr1 * xlr2) / (2*pi*nominal frequency * rr2 * (xm + xlr1). + + :xm: Magnetizing reactance. Default: 0.0 + :rr1: Damper 1 winding resistance. Default: 0.0 + :xlr1: Damper 1 winding leakage reactance. Default: 0.0 + :rr2: Damper 2 winding resistance. Default: 0.0 + :xlr2: Damper 2 winding leakage reactance. Default: 0.0 + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xm": [ + cgmesProfile.DY.value, + ], + "rr1": [ + cgmesProfile.DY.value, + ], + "xlr1": [ + cgmesProfile.DY.value, + ], + "rr2": [ + cgmesProfile.DY.value, + ], + "xlr2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__(self, xm=0.0, rr1=0.0, xlr1=0.0, rr2=0.0, xlr2=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.xm = xm + self.rr1 = rr1 + self.xlr1 = xlr1 + self.rr2 = rr2 + self.xlr2 = xlr2 + + def __str__(self): + str = "class=AsynchronousMachineEquivalentCircuit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py new file mode 100644 index 00000000..080ca970 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class AsynchronousMachineKind(Base): + """ + Kind of Asynchronous Machine. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=AsynchronousMachineKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py new file mode 100644 index 00000000..f33c9092 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineTimeConstantReactance.py @@ -0,0 +1,59 @@ +from cimpy.cgmes_v2_4_15.AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineTimeConstantReactance(AsynchronousMachineDynamics): + """ + The parameters used for models expressed in time constant reactance form include: + + :xs: Synchronous reactance (Xs) (>= X'). Typical Value = 1.8. Default: 0.0 + :xp: Transient reactance (unsaturated) (X') (>=X''). Typical Value = 0.5. Default: 0.0 + :xpp: Subtransient reactance (unsaturated) (X'') (> Xl). Typical Value = 0.2. Default: 0.0 + :tpo: Transient rotor time constant (T'o) (> T''o). Typical Value = 5. Default: 0 + :tppo: Subtransient rotor time constant (T''o) (> 0). Typical Value = 0.03. Default: 0 + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + "xp": [ + cgmesProfile.DY.value, + ], + "xpp": [ + cgmesProfile.DY.value, + ], + "tpo": [ + cgmesProfile.DY.value, + ], + "tppo": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__(self, xs=0.0, xp=0.0, xpp=0.0, tpo=0, tppo=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.xs = xs + self.xp = xp + self.xpp = xpp + self.tpo = tpo + self.tppo = tppo + + def __str__(self): + str = "class=AsynchronousMachineTimeConstantReactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py new file mode 100644 index 00000000..1e944945 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/AsynchronousMachineUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineUserDefined(AsynchronousMachineDynamics): + """ + Asynchronous machine whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=AsynchronousMachineUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/Base.py b/cimpy_3/cimpy/cgmes_v2_4_15/Base.py similarity index 74% rename from cimpy/cgmes_v2_4_15/Base.py rename to cimpy_3/cimpy/cgmes_v2_4_15/Base.py index 0ae0d705..342ddd5c 100644 --- a/cimpy/cgmes_v2_4_15/Base.py +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Base.py @@ -2,17 +2,16 @@ # Mapping between the profiles and their short names short_profile_name = { - "DiagramLayout": 'DL', + "DiagramLayout": "DI", "Dynamics": "DY", "Equipment": "EQ", "GeographicalLocation": "GL", "StateVariables": "SV", "SteadyStateHypothesis": "SSH", - "Topology": "TP" + "Topology": "TP", } long_profile_name = { - 'DL': "DiagramLayout", - 'DI': "DiagramLayout", + "DI": "DiagramLayout", "DY": "Dynamics", "EQ": "Equipment", "GL": "GeographicalLocation", @@ -22,9 +21,9 @@ } -class Profile (Enum): - """ Enum containing all CGMES profiles and their export priority. - """ +class Profile(Enum): + """Enum containing all CGMES profiles and their export priority.""" + EQ = 0 SSH = 1 TP = 2 @@ -32,13 +31,9 @@ class Profile (Enum): DY = 4 GL = 5 DI = 6 - DL = 7 - TP_BD = 8 - EQ_BD = 9 def long_name(self): - """Testdocumentation - """ + """Testdocumentation""" return long_profile_name[self.name] @classmethod @@ -46,7 +41,7 @@ def from_long_name(cls, long_name): return cls[short_profile_name[long_name]] -class Base(): +class Base: """ Base Class for CIM """ diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/BaseVoltage.py b/cimpy_3/cimpy/cgmes_v2_4_15/BaseVoltage.py new file mode 100644 index 00000000..f9b6e00b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/BaseVoltage.py @@ -0,0 +1,69 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class BaseVoltage(IdentifiedObject): + """ + Defines a system base voltage which is referenced. + + :nominalVoltage: The power system resource's base voltage. Default: 0.0 + :ConductingEquipment: Base voltage of this conducting equipment. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: "list" + :VoltageLevel: The voltage levels having this base voltage. Default: "list" + :TransformerEnds: Transformer ends at the base voltage. This is essential for PU calculation. Default: "list" + :TopologicalNode: The topological nodes at the base voltage. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "nominalVoltage": [ + cgmesProfile.EQ.value, + ], + "ConductingEquipment": [ + cgmesProfile.EQ.value, + ], + "VoltageLevel": [ + cgmesProfile.EQ.value, + ], + "TransformerEnds": [ + cgmesProfile.EQ.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + nominalVoltage=0.0, + ConductingEquipment="list", + VoltageLevel="list", + TransformerEnds="list", + TopologicalNode="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.nominalVoltage = nominalVoltage + self.ConductingEquipment = ConductingEquipment + self.VoltageLevel = VoltageLevel + self.TransformerEnds = TransformerEnds + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=BaseVoltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py new file mode 100644 index 00000000..f6cab99f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/BasicIntervalSchedule.py @@ -0,0 +1,51 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class BasicIntervalSchedule(IdentifiedObject): + """ + Schedule of values at points in time. + + :startTime: The time for the first time point. Default: '' + :value1Unit: Value1 units of measure. Default: None + :value2Unit: Value2 units of measure. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "startTime": [ + cgmesProfile.EQ.value, + ], + "value1Unit": [ + cgmesProfile.EQ.value, + ], + "value2Unit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, startTime="", value1Unit=None, value2Unit=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.startTime = startTime + self.value1Unit = value1Unit + self.value2Unit = value2Unit + + def __str__(self): + str = "class=BasicIntervalSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Bay.py b/cimpy_3/cimpy/cgmes_v2_4_15/Bay.py new file mode 100644 index 00000000..ea7c0d01 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Bay.py @@ -0,0 +1,39 @@ +from .EquipmentContainer import EquipmentContainer + + +class Bay(EquipmentContainer): + """ + A collection of power system resources (within a given substation) including conducting equipment, protection relays, measurements, and telemetry. A bay typically represents a physical grouping related to modularization of equipment. + + :VoltageLevel: The voltage level containing this bay. Default: None + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "VoltageLevel": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, VoltageLevel=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VoltageLevel = VoltageLevel + + def __str__(self): + str = "class=Bay\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Boolean.py b/cimpy_3/cimpy/cgmes_v2_4_15/Boolean.py new file mode 100644 index 00000000..7288df72 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Boolean.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Boolean(Base): + """ + A type with the value space "true" and "false". + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Boolean\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Breaker.py b/cimpy_3/cimpy/cgmes_v2_4_15/Breaker.py new file mode 100644 index 00000000..4be5dc85 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Breaker.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.ProtectedSwitch import ProtectedSwitch + + +class Breaker(ProtectedSwitch): + """ + A mechanical switching device capable of making, carrying, and breaking currents under normal circuit conditions and also making, carrying for a specified time, and breaking currents under specified abnormal circuit conditions e.g. those of short circuit. + + """ + + cgmesProfile = ProtectedSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ProtectedSwitch: \n" + ProtectedSwitch.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Breaker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/BusNameMarker.py b/cimpy_3/cimpy/cgmes_v2_4_15/BusNameMarker.py new file mode 100644 index 00000000..0a61137a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/BusNameMarker.py @@ -0,0 +1,51 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class BusNameMarker(IdentifiedObject): + """ + Used to apply user standard names to topology buses. Typically used for "bus/branch" case generation. Associated with one or more terminals that are normally connected with the bus name. The associated terminals are normally connected by non-retained switches. For a ring bus station configuration, all busbar terminals in the ring are typically associated. For a breaker and a half scheme, both busbars would normally be associated. For a ring bus, all busbars would normally be associated. For a "straight" busbar configuration, normally only the main terminal at the busbar would be associated. + + :priority: Priority of bus name marker for use as topology bus name. Use 0 for don t care. Use 1 for highest priority. Use 2 as priority is less than 1 and so on. Default: 0 + :ReportingGroup: The bus name markers that belong to this reporting group. Default: None + :Terminal: The terminals associated with this bus name marker. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "priority": [ + cgmesProfile.EQ.value, + ], + "ReportingGroup": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, priority=0, ReportingGroup=None, Terminal="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.priority = priority + self.ReportingGroup = ReportingGroup + self.Terminal = Terminal + + def __str__(self): + str = "class=BusNameMarker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/BusbarSection.py b/cimpy_3/cimpy/cgmes_v2_4_15/BusbarSection.py new file mode 100644 index 00000000..ba20c07b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/BusbarSection.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.Connector import Connector + + +class BusbarSection(Connector): + """ + A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation. Voltage measurements are typically obtained from VoltageTransformers that are connected to busbar sections. A bus bar section may have many physical terminals but for analysis is modelled with exactly one logical terminal. + + :ipMax: Maximum allowable peak short-circuit current of busbar (Ipmax in the IEC 60909-0). Mechanical limit of the busbar in the substation itself. Used for short circuit data exchange according to IEC 60909 Default: 0.0 + """ + + cgmesProfile = Connector.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ipMax": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Connector: \n" + Connector.__doc__ + + def __init__(self, ipMax=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ipMax = ipMax + + def __str__(self): + str = "class=BusbarSection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Capacitance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Capacitance.py new file mode 100644 index 00000000..36bf2475 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Capacitance.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Capacitance(Base): + """ + Capacitive part of reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Capacitance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CapacitancePerLength.py b/cimpy_3/cimpy/cgmes_v2_4_15/CapacitancePerLength.py new file mode 100644 index 00000000..f8323f42 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CapacitancePerLength.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CapacitancePerLength(Base): + """ + Capacitance per unit of length. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + :denominatorUnit: Default: None + :denominatorMultiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + denominatorUnit=None, + denominatorMultiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + self.denominatorUnit = denominatorUnit + self.denominatorMultiplier = denominatorMultiplier + + def __str__(self): + str = "class=CapacitancePerLength\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Command.py b/cimpy_3/cimpy/cgmes_v2_4_15/Command.py new file mode 100644 index 00000000..78499677 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Command.py @@ -0,0 +1,59 @@ +from .Control import Control + + +class Command(Control): + """ + A Command is a discrete control used for supervisory control. + + :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0 + :value: The value representing the actuator output. Default: 0 + :DiscreteValue: The Control variable associated with the MeasurementValue. Default: None + :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "DiscreteValue": [ + cgmesProfile.EQ.value, + ], + "ValueAliasSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__( + self, + normalValue=0, + value=0, + DiscreteValue=None, + ValueAliasSet=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.normalValue = normalValue + self.value = value + self.DiscreteValue = DiscreteValue + self.ValueAliasSet = ValueAliasSet + + def __str__(self): + str = "class=Command\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Conductance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Conductance.py new file mode 100644 index 00000000..9bb539ce --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Conductance.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Conductance(Base): + """ + Factor by which voltage must be multiplied to give corresponding power lost from a circuit. Real part of admittance. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Conductance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConductingEquipment.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConductingEquipment.py new file mode 100644 index 00000000..0e25afbb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConductingEquipment.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Equipment import Equipment + + +class ConductingEquipment(Equipment): + """ + The parts of the AC power system that are designed to carry current or that are conductively connected through terminals. + + :Terminals: Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: "list" + :BaseVoltage: All conducting equipment with this base voltage. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: None + :SvStatus: The status state variable associated with this conducting equipment. Default: None + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "Terminals": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + ], + "SvStatus": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__( + self, Terminals="list", BaseVoltage=None, SvStatus=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.Terminals = Terminals + self.BaseVoltage = BaseVoltage + self.SvStatus = SvStatus + + def __str__(self): + str = "class=ConductingEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Conductor.py b/cimpy_3/cimpy/cgmes_v2_4_15/Conductor.py new file mode 100644 index 00000000..faecfb3b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Conductor.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class Conductor(ConductingEquipment): + """ + Combination of conducting material with consistent electrical characteristics, building a single electrical system, used to carry current between points in the power system. + + :length: Segment length for calculating line section capabilities Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "length": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, length=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.length = length + + def __str__(self): + str = "class=Conductor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoad.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoad.py new file mode 100644 index 00000000..50aea424 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoad.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.EnergyConsumer import EnergyConsumer + + +class ConformLoad(EnergyConsumer): + """ + ConformLoad represent loads that follow a daily load change pattern where the pattern can be used to scale the load with a system load. + + :LoadGroup: Group of this ConformLoad. Default: None + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "LoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, LoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadGroup = LoadGroup + + def __str__(self): + str = "class=ConformLoad\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadGroup.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadGroup.py new file mode 100644 index 00000000..10e20e86 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadGroup.py @@ -0,0 +1,43 @@ +from cimpy.cgmes_v2_4_15.LoadGroup import LoadGroup + + +class ConformLoadGroup(LoadGroup): + """ + A group of loads conforming to an allocation pattern. + + :EnergyConsumers: Conform loads assigned to this ConformLoadGroup. Default: "list" + :ConformLoadSchedules: The ConformLoadSchedules in the ConformLoadGroup. Default: "list" + """ + + cgmesProfile = LoadGroup.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumers": [ + cgmesProfile.EQ.value, + ], + "ConformLoadSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LoadGroup: \n" + LoadGroup.__doc__ + + def __init__( + self, EnergyConsumers="list", ConformLoadSchedules="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.EnergyConsumers = EnergyConsumers + self.ConformLoadSchedules = ConformLoadSchedules + + def __str__(self): + str = "class=ConformLoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py new file mode 100644 index 00000000..cbf9fbfc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConformLoadSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class ConformLoadSchedule(SeasonDayTypeSchedule): + """ + A curve of load versus time (X-axis) showing the active power values (Y1-axis) and reactive power (Y2-axis) for each unit of the period covered. This curve represents a typical pattern of load over the time period for a given day type and season. + + :ConformLoadGroup: The ConformLoadGroup where the ConformLoadSchedule belongs. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ConformLoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, ConformLoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ConformLoadGroup = ConformLoadGroup + + def __str__(self): + str = "class=ConformLoadSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNode.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNode.py new file mode 100644 index 00000000..2d47c187 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNode.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ConnectivityNode(Base): + """ + Connectivity nodes are points where terminals of AC conducting equipment are connected together with zero impedance. + + :TopologicalNode: The connectivity nodes combine together to form this topological node. May depend on the current state of switches in the network. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + TopologicalNode=None, + ): + + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=ConnectivityNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py b/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py new file mode 100644 index 00000000..237ce41f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ConnectivityNodeContainer.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class ConnectivityNodeContainer(PowerSystemResource): + """ + A base class for all objects that may contain connectivity nodes or topological nodes. + + :TopologicalNode: The topological nodes which belong to this connectivity node container. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, TopologicalNode="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=ConnectivityNodeContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Connector.py b/cimpy_3/cimpy/cgmes_v2_4_15/Connector.py new file mode 100644 index 00000000..404018c1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Connector.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class Connector(ConductingEquipment): + """ + A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation and are modelled with a single logical terminal. + + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Connector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Control.py b/cimpy_3/cimpy/cgmes_v2_4_15/Control.py new file mode 100644 index 00000000..adc23fe9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Control.py @@ -0,0 +1,74 @@ +from .IdentifiedObject import IdentifiedObject + + +class Control(IdentifiedObject): + """ + Control is used for supervisory/device control. It represents control outputs that are used to change the state in a process, e.g. close or open breaker, a set point value or a raise lower command. + + :controlType: Specifies the type of Control, e.g. BreakerOn/Off, GeneratorVoltageSetPoint, TieLineFlow etc. The ControlType.name shall be unique among all specified types and describe the type. Default: '' + :operationInProgress: Indicates that a client is currently sending control commands that has not completed. Default: False + :timeStamp: The last time a control output was sent. Default: '' + :unitMultiplier: The unit multiplier of the controlled quantity. Default: None + :unitSymbol: The unit of measure of the controlled quantity. Default: None + :PowerSystemResource: The controller outputs used to actually govern a regulating device, e.g. the magnetization of a synchronous machine or capacitor bank breaker actuator. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "controlType": [ + cgmesProfile.EQ.value, + ], + "operationInProgress": [ + cgmesProfile.EQ.value, + ], + "timeStamp": [ + cgmesProfile.EQ.value, + ], + "unitMultiplier": [ + cgmesProfile.EQ.value, + ], + "unitSymbol": [ + cgmesProfile.EQ.value, + ], + "PowerSystemResource": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + controlType="", + operationInProgress=False, + timeStamp="", + unitMultiplier=None, + unitSymbol=None, + PowerSystemResource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.controlType = controlType + self.operationInProgress = operationInProgress + self.timeStamp = timeStamp + self.unitMultiplier = unitMultiplier + self.unitSymbol = unitSymbol + self.PowerSystemResource = PowerSystemResource + + def __str__(self): + str = "class=Control\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ControlArea.py b/cimpy_3/cimpy/cgmes_v2_4_15/ControlArea.py new file mode 100644 index 00000000..e3e29d19 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ControlArea.py @@ -0,0 +1,69 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class ControlArea(PowerSystemResource): + """ + A control areais a grouping of generating units and/or loads and a cutset of tie lines (as terminals) which may be used for a variety of purposes including automatic generation control, powerflow solution area interchange control specification, and input to load forecasting. Note that any number of overlapping control area specifications can be superimposed on the physical model. + + :type: The primary type of control area definition used to determine if this is used for automatic generation control, for planning interchange control, or other purposes. A control area specified with primary type of automatic generation control could still be forecast and used as an interchange area in power flow analysis. Default: None + :TieFlow: The tie flows associated with the control area. Default: "list" + :ControlAreaGeneratingUnit: The generating unit specificaitons for the control area. Default: "list" + :netInterchange: The specified positive net interchange into the control area, i.e. positive sign means flow in to the area. Default: 0.0 + :pTolerance: Active power net interchange tolerance Default: 0.0 + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "type": [ + cgmesProfile.EQ.value, + ], + "TieFlow": [ + cgmesProfile.EQ.value, + ], + "ControlAreaGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "netInterchange": [ + cgmesProfile.SSH.value, + ], + "pTolerance": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + type=None, + TieFlow="list", + ControlAreaGeneratingUnit="list", + netInterchange=0.0, + pTolerance=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.type = type + self.TieFlow = TieFlow + self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit + self.netInterchange = netInterchange + self.pTolerance = pTolerance + + def __str__(self): + str = "class=ControlArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py new file mode 100644 index 00000000..80b8d46d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaGeneratingUnit.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class ControlAreaGeneratingUnit(IdentifiedObject): + """ + A control area generating unit. This class is needed so that alternate control area definitions may include the same generating unit. Note only one instance within a control area should reference a specific generating unit. + + :GeneratingUnit: The generating unit specified for this control area. Note that a control area should include a GeneratingUnit only once. Default: None + :ControlArea: The parent control area for the generating unit specifications. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, GeneratingUnit=None, ControlArea=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.GeneratingUnit = GeneratingUnit + self.ControlArea = ControlArea + + def __str__(self): + str = "class=ControlAreaGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py new file mode 100644 index 00000000..254f99a1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ControlAreaTypeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ControlAreaTypeKind(Base): + """ + The type of control area. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ControlAreaTypeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CoordinateSystem.py b/cimpy_3/cimpy/cgmes_v2_4_15/CoordinateSystem.py new file mode 100644 index 00000000..a53a1cb9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CoordinateSystem.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class CoordinateSystem(IdentifiedObject): + """ + Coordinate reference system. + + :crsUrn: A Uniform Resource Name (URN) for the coordinate reference system (crs) used to define 'Location.PositionPoints'. An example would be the European Petroleum Survey Group (EPSG) code for a coordinate reference system, defined in URN under the Open Geospatial Consortium (OGC) namespace as: urn:ogc:def:uom:EPSG::XXXX, where XXXX is an EPSG code (a full list of codes can be found at the EPSG Registry web site http://www.epsg-registry.org/). To define the coordinate system as being WGS84 (latitude, longitude) using an EPSG OGC, this attribute would be urn:ogc:def:uom:EPSG::4236. A profile should limit this code to a set of allowed URNs agreed to by all sending and receiving parties. Default: '' + :Location: All locations described with position points in this coordinate system. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "crsUrn": [ + cgmesProfile.GL.value, + ], + "Location": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, crsUrn="", Location="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.crsUrn = crsUrn + self.Location = Location + + def __str__(self): + str = "class=CoordinateSystem\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CsConverter.py b/cimpy_3/cimpy/cgmes_v2_4_15/CsConverter.py new file mode 100644 index 00000000..efa1b135 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CsConverter.py @@ -0,0 +1,123 @@ +from cimpy.cgmes_v2_4_15.ACDCConverter import ACDCConverter + + +class CsConverter(ACDCConverter): + """ + DC side of the current source converter (CSC). + + :maxAlpha: Maximum firing angle. CSC configuration data used in power flow. Default: 0.0 + :maxGamma: Maximum extinction angle. CSC configuration data used in power flow. Default: 0.0 + :maxIdc: The maximum direct current (Id) on the DC side at which the converter should operate. Converter configuration data use in power flow. Default: 0.0 + :minAlpha: Minimum firing angle. CSC configuration data used in power flow. Default: 0.0 + :minGamma: Minimum extinction angle. CSC configuration data used in power flow. Default: 0.0 + :minIdc: The minimum direct current (Id) on the DC side at which the converter should operate. CSC configuration data used in power flow. Default: 0.0 + :ratedIdc: Rated converter DC current, also called IdN. Converter configuration data used in power flow. Default: 0.0 + :alpha: Firing angle, typical value between 10 and 18 degrees for a rectifier. CSC state variable, result from power flow. Default: 0.0 + :gamma: Extinction angle. CSC state variable, result from power flow. Default: 0.0 + :operatingMode: Indicates whether the DC pole is operating as an inverter or as a rectifier. CSC control variable used in power flow. Default: None + :pPccControl: Default: None + :targetAlpha: Target firing angle. CSC control variable used in power flow. Default: 0.0 + :targetGamma: Target extinction angle. CSC control variable used in power flow. Default: 0.0 + :targetIdc: DC current target value. CSC control variable used in power flow. Default: 0.0 + """ + + cgmesProfile = ACDCConverter.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "maxAlpha": [ + cgmesProfile.EQ.value, + ], + "maxGamma": [ + cgmesProfile.EQ.value, + ], + "maxIdc": [ + cgmesProfile.EQ.value, + ], + "minAlpha": [ + cgmesProfile.EQ.value, + ], + "minGamma": [ + cgmesProfile.EQ.value, + ], + "minIdc": [ + cgmesProfile.EQ.value, + ], + "ratedIdc": [ + cgmesProfile.EQ.value, + ], + "alpha": [ + cgmesProfile.SV.value, + ], + "gamma": [ + cgmesProfile.SV.value, + ], + "operatingMode": [ + cgmesProfile.SSH.value, + ], + "pPccControl": [ + cgmesProfile.SSH.value, + ], + "targetAlpha": [ + cgmesProfile.SSH.value, + ], + "targetGamma": [ + cgmesProfile.SSH.value, + ], + "targetIdc": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCConverter: \n" + ACDCConverter.__doc__ + ) + + def __init__( + self, + maxAlpha=0.0, + maxGamma=0.0, + maxIdc=0.0, + minAlpha=0.0, + minGamma=0.0, + minIdc=0.0, + ratedIdc=0.0, + alpha=0.0, + gamma=0.0, + operatingMode=None, + pPccControl=None, + targetAlpha=0.0, + targetGamma=0.0, + targetIdc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.maxAlpha = maxAlpha + self.maxGamma = maxGamma + self.maxIdc = maxIdc + self.minAlpha = minAlpha + self.minGamma = minGamma + self.minIdc = minIdc + self.ratedIdc = ratedIdc + self.alpha = alpha + self.gamma = gamma + self.operatingMode = operatingMode + self.pPccControl = pPccControl + self.targetAlpha = targetAlpha + self.targetGamma = targetGamma + self.targetIdc = targetIdc + + def __str__(self): + str = "class=CsConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py new file mode 100644 index 00000000..44df9aa3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CsOperatingModeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CsOperatingModeKind(Base): + """ + Operating mode for HVDC line operating as Current Source Converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CsOperatingModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CsPpccControlKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/CsPpccControlKind.py new file mode 100644 index 00000000..942b44c7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CsPpccControlKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CsPpccControlKind(Base): + """ + Active power control modes for HVDC line operating as Current Source Converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CsPpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Currency.py b/cimpy_3/cimpy/cgmes_v2_4_15/Currency.py new file mode 100644 index 00000000..24d25a05 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Currency.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Currency(Base): + """ + Monetary currencies. Apologies for this list not being exhaustive. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Currency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CurrentFlow.py b/cimpy_3/cimpy/cgmes_v2_4_15/CurrentFlow.py new file mode 100644 index 00000000..80135122 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CurrentFlow.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CurrentFlow(Base): + """ + Electrical current with sign convention: positive flow is out of the conducting equipment into the connectivity node. Can be both AC and DC. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=CurrentFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CurrentLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/CurrentLimit.py new file mode 100644 index 00000000..c35e649e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CurrentLimit.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.OperationalLimit import OperationalLimit + + +class CurrentLimit(OperationalLimit): + """ + Operational limit on current. + + :value: Limit on current flow. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + + def __str__(self): + str = "class=CurrentLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Curve.py b/cimpy_3/cimpy/cgmes_v2_4_15/Curve.py new file mode 100644 index 00000000..775251c1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Curve.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class Curve(IdentifiedObject): + """ + A multi-purpose curve or functional relationship between an independent variable (X-axis) and dependent (Y-axis) variables. + + :curveStyle: The style or shape of the curve. Default: None + :xUnit: The X-axis units of measure. Default: None + :y1Unit: The Y1-axis units of measure. Default: None + :y2Unit: The Y2-axis units of measure. Default: None + :CurveDatas: The curve of this curve data point. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "curveStyle": [ + cgmesProfile.EQ.value, + ], + "xUnit": [ + cgmesProfile.EQ.value, + ], + "y1Unit": [ + cgmesProfile.EQ.value, + ], + "y2Unit": [ + cgmesProfile.EQ.value, + ], + "CurveDatas": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + curveStyle=None, + xUnit=None, + y1Unit=None, + y2Unit=None, + CurveDatas="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.curveStyle = curveStyle + self.xUnit = xUnit + self.y1Unit = y1Unit + self.y2Unit = y2Unit + self.CurveDatas = CurveDatas + + def __str__(self): + str = "class=Curve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CurveData.py b/cimpy_3/cimpy/cgmes_v2_4_15/CurveData.py new file mode 100644 index 00000000..616e86a4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CurveData.py @@ -0,0 +1,54 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CurveData(Base): + """ + Multi-purpose data points for defining a curve. The use of this generic class is discouraged if a more specific class can be used to specify the x and y axis values along with their specific data types. + + :Curve: The point data values that define this curve. Default: None + :xvalue: The data value of the X-axis variable, depending on the X-axis units. Default: 0.0 + :y1value: The data value of the first Y-axis variable, depending on the Y-axis units. Default: 0.0 + :y2value: The data value of the second Y-axis variable (if present), depending on the Y-axis units. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Curve": [ + cgmesProfile.EQ.value, + ], + "xvalue": [ + cgmesProfile.EQ.value, + ], + "y1value": [ + cgmesProfile.EQ.value, + ], + "y2value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Curve=None, + xvalue=0.0, + y1value=0.0, + y2value=0.0, + ): + + self.Curve = Curve + self.xvalue = xvalue + self.y1value = y1value + self.y2value = y2value + + def __str__(self): + str = "class=CurveData\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/CurveStyle.py b/cimpy_3/cimpy/cgmes_v2_4_15/CurveStyle.py new file mode 100644 index 00000000..c68c516b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/CurveStyle.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class CurveStyle(Base): + """ + Style or shape of curve. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CurveStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCBaseTerminal.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCBaseTerminal.py new file mode 100644 index 00000000..2f0e13a6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCBaseTerminal.py @@ -0,0 +1,45 @@ +from cimpy.cgmes_v2_4_15.ACDCTerminal import ACDCTerminal + + +class DCBaseTerminal(ACDCTerminal): + """ + An electrical connection point at a piece of DC conducting equipment. DC terminals are connected at one physical DC node that may have multiple DC terminals connected. A DC node is similar to an AC connectivity node. The model enforces that DC connections are distinct from AC connections. + + :DCNode: Default: None + :DCTopologicalNode: See association end TopologicalNode.Terminal. Default: None + """ + + cgmesProfile = ACDCTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "DCNode": [ + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCTerminal: \n" + ACDCTerminal.__doc__ + ) + + def __init__(self, DCNode=None, DCTopologicalNode=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCNode = DCNode + self.DCTopologicalNode = DCTopologicalNode + + def __str__(self): + str = "class=DCBaseTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCBreaker.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCBreaker.py new file mode 100644 index 00000000..c682afee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCBreaker.py @@ -0,0 +1,32 @@ +from cimpy.cgmes_v2_4_15.DCSwitch import DCSwitch + + +class DCBreaker(DCSwitch): + """ + A breaker within a DC system. + + """ + + cgmesProfile = DCSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class DCSwitch: \n" + DCSwitch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCBreaker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCBusbar.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCBusbar.py new file mode 100644 index 00000000..0696dea7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCBusbar.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCBusbar(DCConductingEquipment): + """ + A busbar within a DC system. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCBusbar\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCChopper.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCChopper.py new file mode 100644 index 00000000..de8b78fd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCChopper.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCChopper(DCConductingEquipment): + """ + Low resistance equipment used in the internal DC circuit to balance voltages. It has typically positive and negative pole terminals and a ground. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCChopper\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCConductingEquipment.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCConductingEquipment.py new file mode 100644 index 00000000..8775412d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCConductingEquipment.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.Equipment import Equipment + + +class DCConductingEquipment(Equipment): + """ + The parts of the DC power system that are designed to carry current or that are conductively connected through DC terminals. + + :DCTerminals: Default: "list" + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__(self, DCTerminals="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCTerminals = DCTerminals + + def __str__(self): + str = "class=DCConductingEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py new file mode 100644 index 00000000..81caf0a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterOperatingModeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DCConverterOperatingModeKind(Base): + """ + The operating mode of an HVDC bipole. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DCConverterOperatingModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterUnit.py new file mode 100644 index 00000000..8251d1cc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCConverterUnit.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.DCEquipmentContainer import DCEquipmentContainer + + +class DCConverterUnit(DCEquipmentContainer): + """ + Indivisible operative unit comprising all equipment between the point of common coupling on the AC side and the point of common coupling - DC side, essentially one or more converters, together with one or more converter transformers, converter control equipment, essential protective and switching devices and auxiliaries, if any, used for conversion. + + :operationMode: Default: None + :Substation: Default: None + """ + + cgmesProfile = DCEquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "operationMode": [ + cgmesProfile.EQ.value, + ], + "Substation": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCEquipmentContainer: \n" + + DCEquipmentContainer.__doc__ + ) + + def __init__(self, operationMode=None, Substation=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.operationMode = operationMode + self.Substation = Substation + + def __str__(self): + str = "class=DCConverterUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCDisconnector.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCDisconnector.py new file mode 100644 index 00000000..5ee8c74a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCDisconnector.py @@ -0,0 +1,32 @@ +from cimpy.cgmes_v2_4_15.DCSwitch import DCSwitch + + +class DCDisconnector(DCSwitch): + """ + A disconnector within a DC system. + + """ + + cgmesProfile = DCSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class DCSwitch: \n" + DCSwitch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCDisconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py new file mode 100644 index 00000000..869a6391 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCEquipmentContainer.py @@ -0,0 +1,45 @@ +from cimpy.cgmes_v2_4_15.EquipmentContainer import EquipmentContainer + + +class DCEquipmentContainer(EquipmentContainer): + """ + A modeling construct to provide a root class for containment of DC as well as AC equipment. The class differ from the EquipmentContaner for AC in that it may also contain DCNodes. Hence it can contain both AC and DC equipment. + + :DCNodes: Default: "list" + :DCTopologicalNode: Default: "list" + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "DCNodes": [ + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, DCNodes="list", DCTopologicalNode="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCNodes = DCNodes + self.DCTopologicalNode = DCTopologicalNode + + def __str__(self): + str = "class=DCEquipmentContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCGround.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCGround.py new file mode 100644 index 00000000..915677dc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCGround.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCGround(DCConductingEquipment): + """ + A ground within a DC system. + + :inductance: Inductance to ground. Default: 0.0 + :r: Resistance to ground. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, inductance=0.0, r=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.inductance = inductance + self.r = r + + def __str__(self): + str = "class=DCGround\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCLine.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCLine.py new file mode 100644 index 00000000..5f630d79 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCLine.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.DCEquipmentContainer import DCEquipmentContainer + + +class DCLine(DCEquipmentContainer): + """ + Overhead lines and/or cables connecting two or more HVDC substations. + + :Region: Default: None + """ + + cgmesProfile = DCEquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCEquipmentContainer: \n" + + DCEquipmentContainer.__doc__ + ) + + def __init__(self, Region=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Region = Region + + def __str__(self): + str = "class=DCLine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCLineSegment.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCLineSegment.py new file mode 100644 index 00000000..39e1bca6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCLineSegment.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCLineSegment(DCConductingEquipment): + """ + A wire or combination of wires not insulated from one another, with consistent electrical characteristics, used to carry direct current between points in the DC region of the power system. + + :capacitance: Capacitance of the DC line segment. Significant for cables only. Default: 0.0 + :inductance: Inductance of the DC line segment. Neglectable compared with DCSeriesDevice used for smoothing. Default: 0.0 + :resistance: Resistance of the DC line segment. Default: 0.0 + :length: Segment length for calculating line section capabilities. Default: 0.0 + :PerLengthParameter: Set of per-length parameters for this line segment. Default: None + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "capacitance": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + "length": [ + cgmesProfile.EQ.value, + ], + "PerLengthParameter": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__( + self, + capacitance=0.0, + inductance=0.0, + resistance=0.0, + length=0.0, + PerLengthParameter=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.capacitance = capacitance + self.inductance = inductance + self.resistance = resistance + self.length = length + self.PerLengthParameter = PerLengthParameter + + def __str__(self): + str = "class=DCLineSegment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCNode.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCNode.py new file mode 100644 index 00000000..5a8afcc4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCNode.py @@ -0,0 +1,57 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DCNode(IdentifiedObject): + """ + DC nodes are points where terminals of DC conducting equipment are connected together with zero impedance. + + :DCTerminals: Default: "list" + :DCEquipmentContainer: Default: None + :DCTopologicalNode: See association end TopologicalNode.ConnectivityNodes. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + "DCEquipmentContainer": [ + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCTerminals="list", + DCEquipmentContainer=None, + DCTopologicalNode=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCTerminals = DCTerminals + self.DCEquipmentContainer = DCEquipmentContainer + self.DCTopologicalNode = DCTopologicalNode + + def __str__(self): + str = "class=DCNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCPolarityKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCPolarityKind.py new file mode 100644 index 00000000..2cb830f0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCPolarityKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DCPolarityKind(Base): + """ + Polarity for DC circuits. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DCPolarityKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCSeriesDevice.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCSeriesDevice.py new file mode 100644 index 00000000..1d619e64 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCSeriesDevice.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCSeriesDevice(DCConductingEquipment): + """ + A series device within the DC system, typically a reactor used for filtering or smoothing. Needed for transient and short circuit studies. + + :inductance: Inductance of the device. Default: 0.0 + :resistance: Resistance of the DC device. Default: 0.0 + :ratedUdc: Rated DC device voltage. Converter configuration data used in power flow. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + "ratedUdc": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, inductance=0.0, resistance=0.0, ratedUdc=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.inductance = inductance + self.resistance = resistance + self.ratedUdc = ratedUdc + + def __str__(self): + str = "class=DCSeriesDevice\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCShunt.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCShunt.py new file mode 100644 index 00000000..0a38d3cf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCShunt.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCShunt(DCConductingEquipment): + """ + A shunt device within the DC system, typically used for filtering. Needed for transient and short circuit studies. + + :capacitance: Capacitance of the DC shunt. Default: 0.0 + :resistance: Resistance of the DC device. Default: 0.0 + :ratedUdc: Rated DC device voltage. Converter configuration data used in power flow. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "capacitance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + "ratedUdc": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, capacitance=0.0, resistance=0.0, ratedUdc=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.capacitance = capacitance + self.resistance = resistance + self.ratedUdc = ratedUdc + + def __str__(self): + str = "class=DCShunt\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCSwitch.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCSwitch.py new file mode 100644 index 00000000..c8b55620 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCSwitch.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.DCConductingEquipment import DCConductingEquipment + + +class DCSwitch(DCConductingEquipment): + """ + A switch within the DC system. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCTerminal.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCTerminal.py new file mode 100644 index 00000000..10fadad9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCTerminal.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.DCBaseTerminal import DCBaseTerminal + + +class DCTerminal(DCBaseTerminal): + """ + An electrical connection point to generic DC conducting equipment. + + :DCConductingEquipment: Default: None + """ + + cgmesProfile = DCBaseTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "DCConductingEquipment": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCBaseTerminal: \n" + DCBaseTerminal.__doc__ + ) + + def __init__(self, DCConductingEquipment=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCConductingEquipment = DCConductingEquipment + + def __str__(self): + str = "class=DCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py new file mode 100644 index 00000000..2983f20c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalIsland.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DCTopologicalIsland(IdentifiedObject): + """ + An electrically connected subset of the network. DC topological islands can change as the current network state changes: e.g. due to - disconnect switches or breakers change state in a SCADA/EMS - manual creation, change or deletion of topological nodes in a planning tool. + + :DCTopologicalNodes: Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "DCTopologicalNodes": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, DCTopologicalNodes="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCTopologicalNodes = DCTopologicalNodes + + def __str__(self): + str = "class=DCTopologicalIsland\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalNode.py b/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalNode.py new file mode 100644 index 00000000..cd50d1b8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DCTopologicalNode.py @@ -0,0 +1,63 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DCTopologicalNode(IdentifiedObject): + """ + DC bus. + + :DCTopologicalIsland: Default: None + :DCTerminals: See association end Terminal.TopologicalNode. Default: "list" + :DCEquipmentContainer: Default: None + :DCNodes: See association end ConnectivityNode.TopologicalNode. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + cgmesProfile.TP.value, + ], + "DCTopologicalIsland": [ + cgmesProfile.SV.value, + ], + "DCTerminals": [ + cgmesProfile.TP.value, + ], + "DCEquipmentContainer": [ + cgmesProfile.TP.value, + ], + "DCNodes": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCTopologicalIsland=None, + DCTerminals="list", + DCEquipmentContainer=None, + DCNodes="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCTopologicalIsland = DCTopologicalIsland + self.DCTerminals = DCTerminals + self.DCEquipmentContainer = DCEquipmentContainer + self.DCNodes = DCNodes + + def __str__(self): + str = "class=DCTopologicalNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Date.py b/cimpy_3/cimpy/cgmes_v2_4_15/Date.py new file mode 100644 index 00000000..2ad8962d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Date.py @@ -0,0 +1,37 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Date(Base): + """ + Date as "yyyy-mm-dd", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddZ". A local timezone relative UTC is specified as "yyyy-mm-dd(+/-)hh:mm". + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Date\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DateTime.py b/cimpy_3/cimpy/cgmes_v2_4_15/DateTime.py new file mode 100644 index 00000000..55b4f07d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DateTime.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DateTime(Base): + """ + Date and time as "yyyy-mm-ddThh:mm:ss.sss", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddThh:mm:ss.sssZ". A local timezone relative UTC is specified as "yyyy-mm-ddThh:mm:ss.sss-hh:mm". The second component (shown here as "ss.sss") could have any number of digits in its fractional part to allow any kind of precision beyond seconds. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DateTime\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DayType.py b/cimpy_3/cimpy/cgmes_v2_4_15/DayType.py new file mode 100644 index 00000000..f609354c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DayType.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DayType(IdentifiedObject): + """ + Group of similar days. For example it could be used to represent weekdays, weekend, or holidays. + + :SeasonDayTypeSchedules: DayType for the Schedule. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SeasonDayTypeSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, SeasonDayTypeSchedules="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SeasonDayTypeSchedules = SeasonDayTypeSchedules + + def __str__(self): + str = "class=DayType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Decimal.py b/cimpy_3/cimpy/cgmes_v2_4_15/Decimal.py new file mode 100644 index 00000000..1c3a38d7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Decimal.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Decimal(Base): + """ + Decimal is the base-10 notational system for representing real numbers. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Decimal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Diagram.py b/cimpy_3/cimpy/cgmes_v2_4_15/Diagram.py new file mode 100644 index 00000000..97c04bc4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Diagram.py @@ -0,0 +1,80 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class Diagram(IdentifiedObject): + """ + The diagram being exchanged. The coordinate system is a standard Cartesian coordinate system and the orientation attribute defines the orientation. + + :DiagramStyle: A Diagram may have a DiagramStyle. Default: None + :orientation: Coordinate system orientation of the diagram. Default: None + :x1InitialView: X coordinate of the first corner of the initial view. Default: 0.0 + :x2InitialView: X coordinate of the second corner of the initial view. Default: 0.0 + :y1InitialView: Y coordinate of the first corner of the initial view. Default: 0.0 + :y2InitialView: Y coordinate of the second corner of the initial view. Default: 0.0 + :DiagramElements: A diagram is made up of multiple diagram objects. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "DiagramStyle": [ + cgmesProfile.DI.value, + ], + "orientation": [ + cgmesProfile.DI.value, + ], + "x1InitialView": [ + cgmesProfile.DI.value, + ], + "x2InitialView": [ + cgmesProfile.DI.value, + ], + "y1InitialView": [ + cgmesProfile.DI.value, + ], + "y2InitialView": [ + cgmesProfile.DI.value, + ], + "DiagramElements": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DiagramStyle=None, + orientation=None, + x1InitialView=0.0, + x2InitialView=0.0, + y1InitialView=0.0, + y2InitialView=0.0, + DiagramElements="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DiagramStyle = DiagramStyle + self.orientation = orientation + self.x1InitialView = x1InitialView + self.x2InitialView = x2InitialView + self.y1InitialView = y1InitialView + self.y2InitialView = y2InitialView + self.DiagramElements = DiagramElements + + def __str__(self): + str = "class=Diagram\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py new file mode 100644 index 00000000..8bff5787 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DiagramLayoutVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/DiagramLayout/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "baseUML": [ + cgmesProfile.DI.value, + ], + "baseURI": [ + cgmesProfile.DI.value, + ], + "date": [ + cgmesProfile.DI.value, + ], + "differenceModelURI": [ + cgmesProfile.DI.value, + ], + "entsoeUML": [ + cgmesProfile.DI.value, + ], + "entsoeURI": [ + cgmesProfile.DI.value, + ], + "modelDescriptionURI": [ + cgmesProfile.DI.value, + ], + "namespaceRDF": [ + cgmesProfile.DI.value, + ], + "namespaceUML": [ + cgmesProfile.DI.value, + ], + "shortName": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=DiagramLayoutVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObject.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObject.py new file mode 100644 index 00000000..ec74f533 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObject.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DiagramObject(IdentifiedObject): + """ + An object that defines one or more points in a given space. This object can be associated with anything that specializes IdentifiedObject. For single line diagrams such objects typically include such items as analog values, breakers, disconnectors, power transformers, and transmission lines. + + :Diagram: A diagram object is part of a diagram. Default: None + :drawingOrder: The drawing order of this element. The higher the number, the later the element is drawn in sequence. This is used to ensure that elements that overlap are rendered in the correct order. Default: 0 + :isPolygon: Defines whether or not the diagram objects points define the boundaries of a polygon or the routing of a polyline. If this value is true then a receiving application should consider the first and last points to be connected. Default: False + :offsetX: The offset in the X direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the horizontal centre of the icon. -0.5 indicates it is offset by 50% to the left and 0.5 indicates an offset of 50% to the right. Default: 0.0 + :offsetY: The offset in the Y direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the vertical centre of the icon. The offset direction is dependent on the orientation of the diagram, with -0.5 and 0.5 indicating an offset of +/- 50% on the vertical axis. Default: 0.0 + :rotation: Sets the angle of rotation of the diagram object. Zero degrees is pointing to the top of the diagram. Rotation is clockwise. Default: 0.0 + :IdentifiedObject: The diagram objects that are associated with the domain object. Default: None + :DiagramObjectPoints: A diagram object can have 0 or more points to reflect its layout position, routing (for polylines) or boundary (for polygons). Default: "list" + :VisibilityLayers: A diagram object can be part of multiple visibility layers. Default: "list" + :DiagramObjectStyle: A diagram object has a style associated that provides a reference for the style used in the originating system. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "Diagram": [ + cgmesProfile.DI.value, + ], + "drawingOrder": [ + cgmesProfile.DI.value, + ], + "isPolygon": [ + cgmesProfile.DI.value, + ], + "offsetX": [ + cgmesProfile.DI.value, + ], + "offsetY": [ + cgmesProfile.DI.value, + ], + "rotation": [ + cgmesProfile.DI.value, + ], + "IdentifiedObject": [ + cgmesProfile.DI.value, + ], + "DiagramObjectPoints": [ + cgmesProfile.DI.value, + ], + "VisibilityLayers": [ + cgmesProfile.DI.value, + ], + "DiagramObjectStyle": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Diagram=None, + drawingOrder=0, + isPolygon=False, + offsetX=0.0, + offsetY=0.0, + rotation=0.0, + IdentifiedObject=None, + DiagramObjectPoints="list", + VisibilityLayers="list", + DiagramObjectStyle=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Diagram = Diagram + self.drawingOrder = drawingOrder + self.isPolygon = isPolygon + self.offsetX = offsetX + self.offsetY = offsetY + self.rotation = rotation + self.IdentifiedObject = IdentifiedObject + self.DiagramObjectPoints = DiagramObjectPoints + self.VisibilityLayers = VisibilityLayers + self.DiagramObjectStyle = DiagramObjectStyle + + def __str__(self): + str = "class=DiagramObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py new file mode 100644 index 00000000..8234921f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectGluePoint.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DiagramObjectGluePoint(Base): + """ + This is used for grouping diagram object points from different diagram objects that are considered to be glued together in a diagram even if they are not at the exact same coordinates. + + :DiagramObjectPoints: The 'glue' point to which this point is associated. Default: "list" + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "DiagramObjectPoints": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DiagramObjectPoints="list", + ): + + self.DiagramObjectPoints = DiagramObjectPoints + + def __str__(self): + str = "class=DiagramObjectGluePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py new file mode 100644 index 00000000..61f46708 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectPoint.py @@ -0,0 +1,66 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DiagramObjectPoint(Base): + """ + A point in a given space defined by 3 coordinates and associated to a diagram object. The coordinates may be positive or negative as the origin does not have to be in the corner of a diagram. + + :DiagramObject: The diagram object with which the points are associated. Default: None + :DiagramObjectGluePoint: A diagram object glue point is associated with 2 or more object points that are considered to be 'glued' together. Default: None + :sequenceNumber: The sequence position of the point, used for defining the order of points for diagram objects acting as a polyline or polygon with more than one point. Default: 0 + :xPosition: The X coordinate of this point. Default: 0.0 + :yPosition: The Y coordinate of this point. Default: 0.0 + :zPosition: The Z coordinate of this point. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "DiagramObject": [ + cgmesProfile.DI.value, + ], + "DiagramObjectGluePoint": [ + cgmesProfile.DI.value, + ], + "sequenceNumber": [ + cgmesProfile.DI.value, + ], + "xPosition": [ + cgmesProfile.DI.value, + ], + "yPosition": [ + cgmesProfile.DI.value, + ], + "zPosition": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DiagramObject=None, + DiagramObjectGluePoint=None, + sequenceNumber=0, + xPosition=0.0, + yPosition=0.0, + zPosition=0.0, + ): + + self.DiagramObject = DiagramObject + self.DiagramObjectGluePoint = DiagramObjectGluePoint + self.sequenceNumber = sequenceNumber + self.xPosition = xPosition + self.yPosition = yPosition + self.zPosition = zPosition + + def __str__(self): + str = "class=DiagramObjectPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py new file mode 100644 index 00000000..187e13eb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramObjectStyle.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DiagramObjectStyle(IdentifiedObject): + """ + A reference to a style used by the originating system for a diagram object. A diagram object style describes information such as line thickness, shape such as circle or rectangle etc, and color. + + :StyledObjects: A style can be assigned to multiple diagram objects. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "StyledObjects": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, StyledObjects="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StyledObjects = StyledObjects + + def __str__(self): + str = "class=DiagramObjectStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiagramStyle.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramStyle.py new file mode 100644 index 00000000..879a02c7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiagramStyle.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DiagramStyle(IdentifiedObject): + """ + The diagram style refer to a style used by the originating system for a diagram. A diagram style describes information such as schematic, geographic, bus-branch etc. + + :Diagram: A DiagramStyle can be used by many Diagrams. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "Diagram": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, Diagram="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Diagram = Diagram + + def __str__(self): + str = "class=DiagramStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py new file mode 100644 index 00000000..626fe02b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC1A.py @@ -0,0 +1,148 @@ +from cimpy.cgmes_v2_4_15.DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC1A(DiscontinuousExcitationControlDynamics): + """ + The class represents IEEE Type DEC1A discontinuous excitation control model that boosts generator excitation to a level higher than that demanded by the voltage regulator and stabilizer immediately following a system fault. Reference: IEEE Standard 421.5-2005 Section 12.2. + + :vtlmt: Voltage reference (). Typical Value = 1.1. Default: 0.0 + :vomax: Limiter (). Typical Value = 0.3. Default: 0.0 + :vomin: Limiter (). Typical Value = 0.1. Default: 0.0 + :ketl: Terminal voltage limiter gain (). Typical Value = 47. Default: 0.0 + :vtc: Terminal voltage level reference (). Typical Value = 0.95. Default: 0.0 + :val: Regulator voltage reference (). Typical Value = 5.5. Default: 0.0 + :esc: Speed change reference (). Typical Value = 0.0015. Default: 0.0 + :kan: Discontinuous controller gain (). Typical Value = 400. Default: 0.0 + :tan: Discontinuous controller time constant (). Typical Value = 0.08. Default: 0 + :tw5: DEC washout time constant (). Typical Value = 5. Default: 0 + :vsmax: Limiter (). Typical Value = 0.2. Default: 0.0 + :vsmin: Limiter (). Typical Value = -0.066. Default: 0.0 + :td: Time constant (). Typical Value = 0.03. Default: 0 + :tl1: Time constant (). Typical Value = 0.025. Default: 0 + :tl2: Time constant (). Typical Value = 1.25. Default: 0 + :vtm: Voltage limits (). Typical Value = 1.13. Default: 0.0 + :vtn: Voltage limits (). Typical Value = 1.12. Default: 0.0 + :vanmax: Limiter for Van (). Default: 0.0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vtlmt": [ + cgmesProfile.DY.value, + ], + "vomax": [ + cgmesProfile.DY.value, + ], + "vomin": [ + cgmesProfile.DY.value, + ], + "ketl": [ + cgmesProfile.DY.value, + ], + "vtc": [ + cgmesProfile.DY.value, + ], + "val": [ + cgmesProfile.DY.value, + ], + "esc": [ + cgmesProfile.DY.value, + ], + "kan": [ + cgmesProfile.DY.value, + ], + "tan": [ + cgmesProfile.DY.value, + ], + "tw5": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "vtm": [ + cgmesProfile.DY.value, + ], + "vtn": [ + cgmesProfile.DY.value, + ], + "vanmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__( + self, + vtlmt=0.0, + vomax=0.0, + vomin=0.0, + ketl=0.0, + vtc=0.0, + val=0.0, + esc=0.0, + kan=0.0, + tan=0, + tw5=0, + vsmax=0.0, + vsmin=0.0, + td=0, + tl1=0, + tl2=0, + vtm=0.0, + vtn=0.0, + vanmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vtlmt = vtlmt + self.vomax = vomax + self.vomin = vomin + self.ketl = ketl + self.vtc = vtc + self.val = val + self.esc = esc + self.kan = kan + self.tan = tan + self.tw5 = tw5 + self.vsmax = vsmax + self.vsmin = vsmin + self.td = td + self.tl1 = tl1 + self.tl2 = tl2 + self.vtm = vtm + self.vtn = vtn + self.vanmax = vanmax + + def __str__(self): + str = "class=DiscExcContIEEEDEC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py new file mode 100644 index 00000000..bf947746 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC2A.py @@ -0,0 +1,61 @@ +from cimpy.cgmes_v2_4_15.DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC2A(DiscontinuousExcitationControlDynamics): + """ + The class represents IEEE Type DEC2A model for the discontinuous excitation control. This system provides transient excitation boosting via an open-loop control as initiated by a trigger signal generated remotely. Reference: IEEE Standard 421.5-2005 Section 12.3. + + :vk: Discontinuous controller input reference (). Default: 0.0 + :td1: Discontinuous controller time constant (). Default: 0 + :td2: Discontinuous controller washout time constant (). Default: 0 + :vdmin: Limiter (). Default: 0.0 + :vdmax: Limiter (). Default: 0.0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vk": [ + cgmesProfile.DY.value, + ], + "td1": [ + cgmesProfile.DY.value, + ], + "td2": [ + cgmesProfile.DY.value, + ], + "vdmin": [ + cgmesProfile.DY.value, + ], + "vdmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__(self, vk=0.0, td1=0, td2=0, vdmin=0.0, vdmax=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.vk = vk + self.td1 = td1 + self.td2 = td2 + self.vdmin = vdmin + self.vdmax = vdmax + + def __str__(self): + str = "class=DiscExcContIEEEDEC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py new file mode 100644 index 00000000..8dd0fd31 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscExcContIEEEDEC3A.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC3A(DiscontinuousExcitationControlDynamics): + """ + The class represents IEEE Type DEC3A model. In some systems, the stabilizer output is disconnected from the regulator immediately following a severe fault to prevent the stabilizer from competing with action of voltage regulator during the first swing. Reference: IEEE Standard 421.5-2005 Section 12.4. + + :vtmin: Terminal undervoltage comparison level (). Default: 0.0 + :tdr: Reset time delay (). Default: 0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vtmin": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__(self, vtmin=0.0, tdr=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.vtmin = vtmin + self.tdr = tdr + + def __str__(self): + str = "class=DiscExcContIEEEDEC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Disconnector.py b/cimpy_3/cimpy/cgmes_v2_4_15/Disconnector.py new file mode 100644 index 00000000..12672ff5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Disconnector.py @@ -0,0 +1,33 @@ +from cimpy.cgmes_v2_4_15.Switch import Switch + + +class Disconnector(Switch): + """ + A manually operated or motor operated mechanical switching device used for changing the connections in a circuit, or for isolating a circuit or equipment from a source of power. It is required to open or close circuits when negligible current is broken or made. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Disconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py new file mode 100644 index 00000000..df77194e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlDynamics.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class DiscontinuousExcitationControlDynamics(DynamicsFunctionBlock): + """ + Discontinuous excitation control function block whose behaviour is described by reference to a standard model . + + :RemoteInputSignal: Remote input signal used by this discontinuous excitation control system model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this discontinuous excitation control model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=DiscontinuousExcitationControlDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py new file mode 100644 index 00000000..27e6859c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscontinuousExcitationControlUserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscontinuousExcitationControlUserDefined(DiscontinuousExcitationControlDynamics): + """ + Discontinuous excitation control function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=DiscontinuousExcitationControlUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Discrete.py b/cimpy_3/cimpy/cgmes_v2_4_15/Discrete.py new file mode 100644 index 00000000..303be69b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Discrete.py @@ -0,0 +1,41 @@ +from .Measurement import Measurement + + +class Discrete(Measurement): + """ + Discrete represents a discrete Measurement, i.e. a Measurement representing discrete values, e.g. a Breaker position. + + :DiscreteValues: Measurement to which this value is connected. Default: "list" + :ValueAliasSet: The ValueAliasSet used for translation of a MeasurementValue.value to a name. Default: None + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DiscreteValues": [ + cgmesProfile.EQ.value, + ], + "ValueAliasSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, DiscreteValues="list", ValueAliasSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DiscreteValues = DiscreteValues + self.ValueAliasSet = ValueAliasSet + + def __str__(self): + str = "class=Discrete\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DiscreteValue.py b/cimpy_3/cimpy/cgmes_v2_4_15/DiscreteValue.py new file mode 100644 index 00000000..865a3dd9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DiscreteValue.py @@ -0,0 +1,49 @@ +from .MeasurementValue import MeasurementValue + + +class DiscreteValue(MeasurementValue): + """ + DiscreteValue represents a discrete MeasurementValue. + + :Command: The MeasurementValue that is controlled. Default: None + :Discrete: The values connected to this measurement. Default: None + :value: The value to supervise. Default: 0 + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Command": [ + cgmesProfile.EQ.value, + ], + "Discrete": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, Command=None, Discrete=None, value=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Command = Command + self.Discrete = Discrete + self.value = value + + def __str__(self): + str = "class=DiscreteValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py new file mode 100644 index 00000000..41a17daa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DroopSignalFeedbackKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DroopSignalFeedbackKind(Base): + """ + Governor droop signal feedback source. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DroopSignalFeedbackKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py b/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py new file mode 100644 index 00000000..fa39f37b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsFunctionBlock.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class DynamicsFunctionBlock(IdentifiedObject): + """ + Abstract parent class for all Dynamics function blocks. + + :enabled: Function block used indicator. true = use of function block is enabled false = use of function block is disabled. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "enabled": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, enabled=False, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.enabled = enabled + + def __str__(self): + str = "class=DynamicsFunctionBlock\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsVersion.py new file mode 100644 index 00000000..4f41ece1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/DynamicsVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class DynamicsVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/Dynamics/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "baseUML": [ + cgmesProfile.DY.value, + ], + "baseURI": [ + cgmesProfile.DY.value, + ], + "date": [ + cgmesProfile.DY.value, + ], + "differenceModelURI": [ + cgmesProfile.DY.value, + ], + "entsoeUML": [ + cgmesProfile.DY.value, + ], + "entsoeURI": [ + cgmesProfile.DY.value, + ], + "modelDescriptionURI": [ + cgmesProfile.DY.value, + ], + "namespaceRDF": [ + cgmesProfile.DY.value, + ], + "namespaceUML": [ + cgmesProfile.DY.value, + ], + "shortName": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=DynamicsVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py new file mode 100644 index 00000000..ece76357 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EarthFaultCompensator.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class EarthFaultCompensator(ConductingEquipment): + """ + A conducting equipment used to represent a connection to ground which is typically used to compensate earth faults.. An earth fault compensator device modeled with a single terminal implies a second terminal solidly connected to ground. If two terminals are modeled, the ground is not assumed and normal connection rules apply. + + :r: Nominal resistance of device. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, r=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.r = r + + def __str__(self): + str = "class=EarthFaultCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EnergyArea.py b/cimpy_3/cimpy/cgmes_v2_4_15/EnergyArea.py new file mode 100644 index 00000000..c7a92c01 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EnergyArea.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class EnergyArea(IdentifiedObject): + """ + Describes an area having energy production or consumption. Specializations are intended to support the load allocation function as typically required in energy management systems or planning studies to allocate hypothesized load levels to individual load points for power flow analysis. Often the energy area can be linked to both measured and forecast load levels. + + :ControlArea: The control area specification that is used for the load forecast. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, ControlArea=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ControlArea = ControlArea + + def __str__(self): + str = "class=EnergyArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EnergyConsumer.py b/cimpy_3/cimpy/cgmes_v2_4_15/EnergyConsumer.py new file mode 100644 index 00000000..3bb02347 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EnergyConsumer.py @@ -0,0 +1,58 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class EnergyConsumer(ConductingEquipment): + """ + Generic user of energy - a point of consumption on the power system model. + + :LoadDynamics: Load dynamics model used to describe dynamic behavior of this energy consumer. Default: None + :LoadResponse: The load response characteristic of this load. If missing, this load is assumed to be constant power. Default: None + :p: Active power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 + :q: Reactive power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "LoadDynamics": [ + cgmesProfile.DY.value, + ], + "LoadResponse": [ + cgmesProfile.EQ.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, LoadDynamics=None, LoadResponse=None, p=0.0, q=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.LoadDynamics = LoadDynamics + self.LoadResponse = LoadResponse + self.p = p + self.q = q + + def __str__(self): + str = "class=EnergyConsumer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EnergySchedulingType.py b/cimpy_3/cimpy/cgmes_v2_4_15/EnergySchedulingType.py new file mode 100644 index 00000000..69357abc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EnergySchedulingType.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class EnergySchedulingType(IdentifiedObject): + """ + Used to define the type of generation for scheduling purposes. + + :EnergySource: Energy Scheduling Type of an Energy Source Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergySource": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, EnergySource="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EnergySource = EnergySource + + def __str__(self): + str = "class=EnergySchedulingType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EnergySource.py b/cimpy_3/cimpy/cgmes_v2_4_15/EnergySource.py new file mode 100644 index 00000000..1c0b1b68 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EnergySource.py @@ -0,0 +1,118 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class EnergySource(ConductingEquipment): + """ + A generic equivalent for an energy supplier on a transmission or distribution voltage level. + + :WindTurbineType3or4Dynamics: Wind generator Type 3 or 4 dynamics model associated with this energy source. Default: None + :EnergySchedulingType: Energy Source of a particular Energy Scheduling Type Default: None + :nominalVoltage: Phase-to-phase nominal voltage. Default: 0.0 + :r: Positive sequence Thevenin resistance. Default: 0.0 + :r0: Zero sequence Thevenin resistance. Default: 0.0 + :rn: Negative sequence Thevenin resistance. Default: 0.0 + :voltageAngle: Phase angle of a-phase open circuit. Default: 0.0 + :voltageMagnitude: Phase-to-phase open circuit voltage magnitude. Default: 0.0 + :x: Positive sequence Thevenin reactance. Default: 0.0 + :x0: Zero sequence Thevenin reactance. Default: 0.0 + :xn: Negative sequence Thevenin reactance. Default: 0.0 + :activePower: High voltage source active injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :reactivePower: High voltage source reactive injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + "EnergySchedulingType": [ + cgmesProfile.EQ.value, + ], + "nominalVoltage": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "rn": [ + cgmesProfile.EQ.value, + ], + "voltageAngle": [ + cgmesProfile.EQ.value, + ], + "voltageMagnitude": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + "xn": [ + cgmesProfile.EQ.value, + ], + "activePower": [ + cgmesProfile.SSH.value, + ], + "reactivePower": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + WindTurbineType3or4Dynamics=None, + EnergySchedulingType=None, + nominalVoltage=0.0, + r=0.0, + r0=0.0, + rn=0.0, + voltageAngle=0.0, + voltageMagnitude=0.0, + x=0.0, + x0=0.0, + xn=0.0, + activePower=0.0, + reactivePower=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + self.EnergySchedulingType = EnergySchedulingType + self.nominalVoltage = nominalVoltage + self.r = r + self.r0 = r0 + self.rn = rn + self.voltageAngle = voltageAngle + self.voltageMagnitude = voltageMagnitude + self.x = x + self.x0 = x0 + self.xn = xn + self.activePower = activePower + self.reactivePower = reactivePower + + def __str__(self): + str = "class=EnergySource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Equipment.py b/cimpy_3/cimpy/cgmes_v2_4_15/Equipment.py new file mode 100644 index 00000000..aa054e8a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Equipment.py @@ -0,0 +1,58 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class Equipment(PowerSystemResource): + """ + The parts of a power system that are physical devices, electronic or mechanical. + + :aggregate: The single instance of equipment represents multiple pieces of equipment that have been modeled together as an aggregate. Examples would be power transformers or synchronous machines operating in parallel modeled as a single aggregate power transformer or aggregate synchronous machine. This is not to be used to indicate equipment that is part of a group of interdependent equipment produced by a network production program. Default: False + :EquipmentContainer: Container of this equipment. Default: None + :OperationalLimitSet: The operational limit sets associated with this equipment. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "aggregate": [ + cgmesProfile.EQ.value, + ], + "EquipmentContainer": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + aggregate=False, + EquipmentContainer=None, + OperationalLimitSet="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.aggregate = aggregate + self.EquipmentContainer = EquipmentContainer + self.OperationalLimitSet = OperationalLimitSet + + def __str__(self): + str = "class=Equipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py new file mode 100644 index 00000000..57d06d8c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py @@ -0,0 +1,96 @@ +from .Base import Base + + +class EquipmentBoundaryVersion(Base): + """ + Profile version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURIcore: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/EquipmentBoundary/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :entsoeURIoperation: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/EquipmentBoundaryOperation/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ_BD.value, + ], + "baseUML": [ + cgmesProfile.EQ_BD.value, + ], + "baseURI": [ + cgmesProfile.EQ_BD.value, + ], + "date": [ + cgmesProfile.EQ_BD.value, + ], + "differenceModelURI": [ + cgmesProfile.EQ_BD.value, + ], + "entsoeUML": [ + cgmesProfile.EQ_BD.value, + ], + "entsoeURIcore": [ + cgmesProfile.EQ_BD.value, + ], + "entsoeURIoperation": [ + cgmesProfile.EQ_BD.value, + ], + "modelDescriptionURI": [ + cgmesProfile.EQ_BD.value, + ], + "namespaceRDF": [ + cgmesProfile.EQ_BD.value, + ], + "namespaceUML": [ + cgmesProfile.EQ_BD.value, + ], + "shortName": [ + cgmesProfile.EQ_BD.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURIcore="", + entsoeURIoperation="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURIcore = entsoeURIcore + self.entsoeURIoperation = entsoeURIoperation + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=EquipmentBoundaryVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentContainer.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentContainer.py new file mode 100644 index 00000000..351fa6a6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentContainer.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.ConnectivityNodeContainer import ConnectivityNodeContainer + + +class EquipmentContainer(ConnectivityNodeContainer): + """ + A modeling construct to provide a root class for containing equipment. + + :Equipments: Contained equipment. Default: "list" + """ + + cgmesProfile = ConnectivityNodeContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Equipments": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConnectivityNodeContainer: \n" + + ConnectivityNodeContainer.__doc__ + ) + + def __init__(self, Equipments="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Equipments = Equipments + + def __str__(self): + str = "class=EquipmentContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentVersion.py new file mode 100644 index 00000000..1640ad35 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquipmentVersion.py @@ -0,0 +1,114 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class EquipmentVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURIcore: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :baseURIoperation: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :baseURIshortCircuit: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURIcore: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/EquipmentCore/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :entsoeURIoperation: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/EquipmentOperation/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :entsoeURIshortCircuit: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/EquipmentShortCircuit/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "baseUML": [ + cgmesProfile.EQ.value, + ], + "baseURIcore": [ + cgmesProfile.EQ.value, + ], + "baseURIoperation": [ + cgmesProfile.EQ.value, + ], + "baseURIshortCircuit": [ + cgmesProfile.EQ.value, + ], + "date": [ + cgmesProfile.EQ.value, + ], + "differenceModelURI": [ + cgmesProfile.EQ.value, + ], + "entsoeUML": [ + cgmesProfile.EQ.value, + ], + "entsoeURIcore": [ + cgmesProfile.EQ.value, + ], + "entsoeURIoperation": [ + cgmesProfile.EQ.value, + ], + "entsoeURIshortCircuit": [ + cgmesProfile.EQ.value, + ], + "modelDescriptionURI": [ + cgmesProfile.EQ.value, + ], + "namespaceRDF": [ + cgmesProfile.EQ.value, + ], + "namespaceUML": [ + cgmesProfile.EQ.value, + ], + "shortName": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURIcore="", + baseURIoperation="", + baseURIshortCircuit="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURIcore="", + entsoeURIoperation="", + entsoeURIshortCircuit="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURIcore = baseURIcore + self.baseURIoperation = baseURIoperation + self.baseURIshortCircuit = baseURIshortCircuit + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURIcore = entsoeURIcore + self.entsoeURIoperation = entsoeURIoperation + self.entsoeURIshortCircuit = entsoeURIshortCircuit + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=EquipmentVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentBranch.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentBranch.py new file mode 100644 index 00000000..7240a8aa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentBranch.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.EquivalentEquipment import EquivalentEquipment + + +class EquivalentBranch(EquivalentEquipment): + """ + The class represents equivalent branches. + + :r: Positive sequence series resistance of the reduced branch. Default: 0.0 + :r21: Resistance from terminal sequence 2 to terminal sequence 1 .Used for steady state power flow. This attribute is optional and represent unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.r is given, then EquivalentBranch.r21 is assumed equal to EquivalentBranch.r. Usage rule : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :x: Positive sequence series reactance of the reduced branch. Default: 0.0 + :x21: Reactance from terminal sequence 2 to terminal sequence 1 .Used for steady state power flow. This attribute is optional and represent unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.x is given, then EquivalentBranch.x21 is assumed equal to EquivalentBranch.x. Usage rule : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :negativeR12: Negative sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :negativeR21: Negative sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :negativeX12: Negative sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :negativeX21: Negative sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage: EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :positiveR12: Positive sequence series resistance from terminal sequence 1 to terminal sequence 2 . Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :positiveR21: Positive sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :positiveX12: Positive sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :positiveX21: Positive sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :zeroR12: Zero sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :zeroR21: Zero sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :zeroX12: Zero sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + :zeroX21: Zero sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909 Usage : EquivalentBranch is a result of network reduction prior to the data exchange Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "r21": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "x21": [ + cgmesProfile.EQ.value, + ], + "negativeR12": [ + cgmesProfile.EQ.value, + ], + "negativeR21": [ + cgmesProfile.EQ.value, + ], + "negativeX12": [ + cgmesProfile.EQ.value, + ], + "negativeX21": [ + cgmesProfile.EQ.value, + ], + "positiveR12": [ + cgmesProfile.EQ.value, + ], + "positiveR21": [ + cgmesProfile.EQ.value, + ], + "positiveX12": [ + cgmesProfile.EQ.value, + ], + "positiveX21": [ + cgmesProfile.EQ.value, + ], + "zeroR12": [ + cgmesProfile.EQ.value, + ], + "zeroR21": [ + cgmesProfile.EQ.value, + ], + "zeroX12": [ + cgmesProfile.EQ.value, + ], + "zeroX21": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__( + self, + r=0.0, + r21=0.0, + x=0.0, + x21=0.0, + negativeR12=0.0, + negativeR21=0.0, + negativeX12=0.0, + negativeX21=0.0, + positiveR12=0.0, + positiveR21=0.0, + positiveX12=0.0, + positiveX21=0.0, + zeroR12=0.0, + zeroR21=0.0, + zeroX12=0.0, + zeroX21=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.r = r + self.r21 = r21 + self.x = x + self.x21 = x21 + self.negativeR12 = negativeR12 + self.negativeR21 = negativeR21 + self.negativeX12 = negativeX12 + self.negativeX21 = negativeX21 + self.positiveR12 = positiveR12 + self.positiveR21 = positiveR21 + self.positiveX12 = positiveX12 + self.positiveX21 = positiveX21 + self.zeroR12 = zeroR12 + self.zeroR21 = zeroR21 + self.zeroX12 = zeroX12 + self.zeroX21 = zeroX21 + + def __str__(self): + str = "class=EquivalentBranch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentEquipment.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentEquipment.py new file mode 100644 index 00000000..9dc9f8d3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentEquipment.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class EquivalentEquipment(ConductingEquipment): + """ + The class represents equivalent objects that are the result of a network reduction. The class is the base for equivalent objects of different types. + + :EquivalentNetwork: The associated reduced equivalents. Default: None + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "EquivalentNetwork": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, EquivalentNetwork=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EquivalentNetwork = EquivalentNetwork + + def __str__(self): + str = "class=EquivalentEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentInjection.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentInjection.py new file mode 100644 index 00000000..cf8ad9df --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentInjection.py @@ -0,0 +1,135 @@ +from cimpy.cgmes_v2_4_15.EquivalentEquipment import EquivalentEquipment + + +class EquivalentInjection(EquivalentEquipment): + """ + This class represents equivalent injections (generation or load). Voltage regulation is allowed only at the point of connection. + + :ReactiveCapabilityCurve: The equivalent injection using this reactive capability curve. Default: None + :maxP: Maximum active power of the injection. Default: 0.0 + :maxQ: Used for modeling of infeed for load flow exchange. Not used for short circuit modeling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 + :minP: Minimum active power of the injection. Default: 0.0 + :minQ: Used for modeling of infeed for load flow exchange. Not used for short circuit modeling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 + :regulationCapability: Specifies whether or not the EquivalentInjection has the capability to regulate the local voltage. Default: False + :r: Positive sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :r0: Zero sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :r2: Negative sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x: Positive sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x0: Zero sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x2: Negative sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :regulationStatus: Specifies the default regulation status of the EquivalentInjection. True is regulating. False is not regulating. Default: False + :regulationTarget: The target voltage for voltage regulation. Default: 0.0 + :p: Equivalent active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :q: Equivalent reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "ReactiveCapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "regulationCapability": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "r2": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + "x2": [ + cgmesProfile.EQ.value, + ], + "regulationStatus": [ + cgmesProfile.SSH.value, + ], + "regulationTarget": [ + cgmesProfile.SSH.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__( + self, + ReactiveCapabilityCurve=None, + maxP=0.0, + maxQ=0.0, + minP=0.0, + minQ=0.0, + regulationCapability=False, + r=0.0, + r0=0.0, + r2=0.0, + x=0.0, + x0=0.0, + x2=0.0, + regulationStatus=False, + regulationTarget=0.0, + p=0.0, + q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ReactiveCapabilityCurve = ReactiveCapabilityCurve + self.maxP = maxP + self.maxQ = maxQ + self.minP = minP + self.minQ = minQ + self.regulationCapability = regulationCapability + self.r = r + self.r0 = r0 + self.r2 = r2 + self.x = x + self.x0 = x0 + self.x2 = x2 + self.regulationStatus = regulationStatus + self.regulationTarget = regulationTarget + self.p = p + self.q = q + + def __str__(self): + str = "class=EquivalentInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentNetwork.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentNetwork.py new file mode 100644 index 00000000..7ecfa3f4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentNetwork.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.ConnectivityNodeContainer import ConnectivityNodeContainer + + +class EquivalentNetwork(ConnectivityNodeContainer): + """ + A class that represents an external meshed network that has been reduced to an electrically equivalent model. The ConnectivityNodes contained in the equivalent are intended to reflect internal nodes of the equivalent. The boundary Connectivity nodes where the equivalent connects outside itself are NOT contained by the equivalent. + + :EquivalentEquipments: The equivalent where the reduced model belongs. Default: "list" + """ + + cgmesProfile = ConnectivityNodeContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EquivalentEquipments": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConnectivityNodeContainer: \n" + + ConnectivityNodeContainer.__doc__ + ) + + def __init__(self, EquivalentEquipments="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EquivalentEquipments = EquivalentEquipments + + def __str__(self): + str = "class=EquivalentNetwork\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentShunt.py b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentShunt.py new file mode 100644 index 00000000..eaad8f71 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/EquivalentShunt.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.EquivalentEquipment import EquivalentEquipment + + +class EquivalentShunt(EquivalentEquipment): + """ + The class represents equivalent shunts. + + :b: Positive sequence shunt susceptance. Default: 0.0 + :g: Positive sequence shunt conductance. Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__(self, b=0.0, g=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.b = b + self.g = g + + def __str__(self): + str = "class=EquivalentShunt\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC1A.py new file mode 100644 index 00000000..3d392e26 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC1A.py @@ -0,0 +1,170 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC1A(ExcitationSystemDynamics): + """ + Modified IEEE AC1A alternator-supplied rectifier excitation system with different rate feedback source. + + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.8. Default: 0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 + :kf1: Coefficient to allow different usage of the model (Kf1). Typical Value = 0. Default: 0.0 + :kf2: Coefficient to allow different usage of the model (Kf2). Typical Value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.2. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.38. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1). Typical Value = 4.18. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0.1. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 3.14. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 0.03. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 6.03. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Rrmin). Typical Value = -5.43. Default: 0.0 + :hvlvgates: Indicates if both HV gate and LV gate are active (HVLVgates). true = gates are used false = gates are not used. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "hvlvgates": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + kf=0.0, + kf1=0.0, + kf2=0.0, + ks=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vrmax=0.0, + vrmin=0.0, + hvlvgates=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.kf = kf + self.kf1 = kf1 + self.kf2 = kf2 + self.ks = ks + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vrmax = vrmax + self.vrmin = vrmin + self.hvlvgates = hvlvgates + + def __str__(self): + str = "class=ExcAC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC2A.py new file mode 100644 index 00000000..82f4e773 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC2A.py @@ -0,0 +1,206 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC2A(ExcitationSystemDynamics): + """ + Modified IEEE AC2A alternator-supplied rectifier excitation system with different field current limit. + + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 8. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -8. Default: 0.0 + :kb: Second stage regulator gain (Kb) (>0). Exciter field current controller gain. Typical Value = 25. Default: 0.0 + :kb1: Second stage regulator gain (Kb1). It is exciter field current controller gain used as alternative to Kb to represent a variant of the ExcAC2A model. Typical Value = 25. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 105. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.6. Default: 0 + :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 4.4. Default: 0.0 + :kh: Exciter field current feedback gain (Kh). Typical Value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 + :kl: Exciter field current limiter gain (Kl). Typical Value = 10. Default: 0.0 + :vlr: Maximum exciter field current (Vlr). Typical Value = 4.4. Default: 0.0 + :kl1: Coefficient to allow different usage of the model (Kl1). Typical Value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.28. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.35. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 4.4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.037. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 3.3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.012. Default: 0.0 + :hvgate: Indicates if HV gate is active (HVgate). true = gate is used false = gate is not used. Typical Value = true. Default: False + :lvgate: Indicates if LV gate is active (LVgate). true = gate is used false = gate is not used. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kb": [ + cgmesProfile.DY.value, + ], + "kb1": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "vlr": [ + cgmesProfile.DY.value, + ], + "kl1": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "hvgate": [ + cgmesProfile.DY.value, + ], + "lvgate": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + kb=0.0, + kb1=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + vfemax=0.0, + kh=0.0, + kf=0.0, + kl=0.0, + vlr=0.0, + kl1=0.0, + ks=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + hvgate=False, + lvgate=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.kb = kb + self.kb1 = kb1 + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.vfemax = vfemax + self.kh = kh + self.kf = kf + self.kl = kl + self.vlr = vlr + self.kl1 = kl1 + self.ks = ks + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.hvgate = hvgate + self.lvgate = lvgate + + def __str__(self): + str = "class=ExcAC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC3A.py new file mode 100644 index 00000000..550ad931 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC3A.py @@ -0,0 +1,194 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC3A(ExcitationSystemDynamics): + """ + Modified IEEE AC3A alternator-supplied rectifier excitation system with different field current limit. + + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (Ka). Typical Value = 45.62. Default: 0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.013. Default: 0.0 + :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.17. Default: 0 + :vemin: Minimum exciter voltage output (Vemin). Typical Value = 0.1. Default: 0.0 + :kr: Constant associated with regulator and alternator field power supply (Kr). Typical Value =3.77. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.143. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :kn: Excitation control system stabilizer gain (Kn). Typical Value =0.05. Default: 0.0 + :efdn: Value of at which feedback gain changes (Efdn). Typical Value = 2.36. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.104. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 0.499. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :klv: Gain used in the minimum field voltage limiter loop (Klv). Typical Value = 0.194. Default: 0.0 + :kf1: Coefficient to allow different usage of the model (Kf1). Typical Value = 1. Default: 0.0 + :kf2: Coefficient to allow different usage of the model (Kf2). Typical Value = 0. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 16. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) equals Vemax (Ve1). Typical Value = 6.24. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 1.143. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 4.68. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve]). Typical Value = 0.1. Default: 0.0 + :vlv: Field voltage used in the minimum field voltage limiter loop (Vlv). Typical Value = 0.79. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kn": [ + cgmesProfile.DY.value, + ], + "efdn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "klv": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vlv": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0, + ta=0.0, + vamax=0.0, + vamin=0.0, + te=0, + vemin=0.0, + kr=0.0, + kf=0.0, + tf=0, + kn=0.0, + efdn=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + klv=0.0, + kf1=0.0, + kf2=0.0, + ks=0.0, + vfemax=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vlv=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.vemin = vemin + self.kr = kr + self.kf = kf + self.tf = tf + self.kn = kn + self.efdn = efdn + self.kc = kc + self.kd = kd + self.ke = ke + self.klv = klv + self.kf1 = kf1 + self.kf2 = kf2 + self.ks = ks + self.vfemax = vfemax + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vlv = vlv + + def __str__(self): + str = "class=ExcAC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC4A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC4A.py new file mode 100644 index 00000000..33705de0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC4A.py @@ -0,0 +1,92 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC4A(ExcitationSystemDynamics): + """ + Modified IEEE AC4A alternator-supplied rectifier excitation system with different minimum controller output. + + :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -10. Default: 0.0 + :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 + :tb: Voltage regulator time constant (Tb). Typical Value = 10. Default: 0 + :ka: Voltage regulator gain (Ka). Typical Value = 200. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.015. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5.64. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.53. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + + def __str__(self): + str = "class=ExcAC4A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC5A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC5A.py new file mode 100644 index 00000000..1e86357d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC5A.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC5A(ExcitationSystemDynamics): + """ + Modified IEEE AC5A alternator-supplied rectifier excitation system with different minimum controller output. + + :ka: Voltage regulator gain (Ka). Typical Value = 400. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 7.3. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value =-7.3. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.8. Default: 0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.03. Default: 0.0 + :tf1: Excitation control system stabilizer time constant (Tf1). Typical Value = 1. Default: 0 + :tf2: Excitation control system stabilizer time constant (Tf2). Typical Value = 0.8. Default: 0 + :tf3: Excitation control system stabilizer time constant (Tf3). Typical Value = 0. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 5.6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (S[Efd1]). Typical Value = 0.86. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 4.2. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (S[Efd2]). Typical Value = 0.5. Default: 0.0 + :a: Coefficient to allow different usage of the model (a). Typical Value = 1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tf3": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + tb=0, + tc=0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf1=0, + tf2=0, + tf3=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + a=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.tb = tb + self.tc = tc + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.tf3 = tf3 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.a = a + + def __str__(self): + str = "class=ExcAC5A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC6A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC6A.py new file mode 100644 index 00000000..eeaf59b3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC6A.py @@ -0,0 +1,176 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC6A(ExcitationSystemDynamics): + """ + Modified IEEE AC6A alternator-supplied rectifier excitation system with speed input. + + :ka: Voltage regulator gain (Ka). Typical Value = 536. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.086. Default: 0 + :tk: Voltage regulator time constant (Tk). Typical Value = 0.18. Default: 0 + :tb: Voltage regulator time constant (Tb). Typical Value = 9. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 3. Default: 0 + :vamax: Maximum voltage regulator output (Vamax). Typical Value = 75. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin). Typical Value = -75. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 44. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -36. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1. Default: 0 + :kh: Exciter field current limiter gain (Kh). Typical Value = 92. Default: 0.0 + :tj: Exciter field current limiter time constant (Tj). Typical Value = 0.02. Default: 0 + :th: Exciter field current limiter time constant (Th). Typical Value = 0.08. Default: 0 + :vfelim: Exciter field current limit reference (Vfelim). Typical Value = 19. Default: 0.0 + :vhmax: Maximum field current limiter signal reference (Vhmax). Typical Value = 75. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.173. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 1.91. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1.6. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 7.4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0.214. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 5.55. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 0.044. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tk": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "tj": [ + cgmesProfile.DY.value, + ], + "th": [ + cgmesProfile.DY.value, + ], + "vfelim": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tk=0, + tb=0, + tc=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + kh=0.0, + tj=0, + th=0, + vfelim=0.0, + vhmax=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tk = tk + self.tb = tb + self.tc = tc + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kh = kh + self.tj = tj + self.th = th + self.vfelim = vfelim + self.vhmax = vhmax + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcAC6A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC8B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC8B.py new file mode 100644 index 00000000..88dff3f5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAC8B.py @@ -0,0 +1,200 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC8B(ExcitationSystemDynamics): + """ + Modified IEEE AC8B alternator-supplied rectifier excitation system with speed input and input limiter. + + :inlim: Input limiter indicator. true = input limiter Vimax and Vimin is considered false = input limiter Vimax and Vimin is not considered. Typical Value = true. Default: False + :ka: Voltage regulator gain (Ka). Typical Value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.55. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd). Typical Value = 1.1. Default: 0.0 + :kdr: Voltage regulator derivative gain (Kdr). Typical Value = 10. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :kir: Voltage regulator integral gain (Kir). Typical Value = 5. Default: 0.0 + :kpr: Voltage regulator proportional gain (Kpr). Typical Value = 80. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :pidlim: PID limiter indicator. true = input limiter Vpidmax and Vpidmin is considered false = input limiter Vpidmax and Vpidmin is not considered. Typical Value = true. Default: False + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve1]). Typical Value = 0.3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve, back of commutating reactance (Se[Ve2]). Typical Value = 3. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0. Default: 0 + :tdr: Lag time constant (Tdr). Typical Value = 0.1. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.2. Default: 0 + :telim: Selector for the limiter on the block [1/sTe]. See diagram for meaning of true and false. Typical Value = false. Default: False + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve) equals V (Ve1). Typical Value = 6.5. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve). Typical Value = 9. Default: 0.0 + :vemin: Minimum exciter voltage output (Vemin). Typical Value = 0. Default: 0.0 + :vfemax: Exciter field current limit reference (Vfemax). Typical Value = 6. Default: 0.0 + :vimax: Input signal maximum (Vimax). Typical Value = 35. Default: 0.0 + :vimin: Input signal minimum (Vimin). Typical Value = -10. Default: 0.0 + :vpidmax: PID maximum controller output (Vpidmax). Typical Value = 35. Default: 0.0 + :vpidmin: PID minimum controller output (Vpidmin). Typical Value = -10. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 35. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 + :vtmult: Multiply by generator's terminal voltage indicator. true =the limits Vrmax and Vrmin are multiplied by the generator's terminal voltage to represent a thyristor power stage fed from the generator terminals false = limits are not multiplied by generator's terminal voltage. Typical Value = false. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inlim": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "pidlim": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "telim": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vpidmax": [ + cgmesProfile.DY.value, + ], + "vpidmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vtmult": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + inlim=False, + ka=0.0, + kc=0.0, + kd=0.0, + kdr=0.0, + ke=0.0, + kir=0.0, + kpr=0.0, + ks=0.0, + pidlim=False, + seve1=0.0, + seve2=0.0, + ta=0, + tdr=0, + te=0, + telim=False, + ve1=0.0, + ve2=0.0, + vemin=0.0, + vfemax=0.0, + vimax=0.0, + vimin=0.0, + vpidmax=0.0, + vpidmin=0.0, + vrmax=0.0, + vrmin=0.0, + vtmult=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inlim = inlim + self.ka = ka + self.kc = kc + self.kd = kd + self.kdr = kdr + self.ke = ke + self.kir = kir + self.kpr = kpr + self.ks = ks + self.pidlim = pidlim + self.seve1 = seve1 + self.seve2 = seve2 + self.ta = ta + self.tdr = tdr + self.te = te + self.telim = telim + self.ve1 = ve1 + self.ve2 = ve2 + self.vemin = vemin + self.vfemax = vfemax + self.vimax = vimax + self.vimin = vimin + self.vpidmax = vpidmax + self.vpidmin = vpidmin + self.vrmax = vrmax + self.vrmin = vrmin + self.vtmult = vtmult + + def __str__(self): + str = "class=ExcAC8B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcANS.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcANS.py new file mode 100644 index 00000000..d98779b3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcANS.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcANS(ExcitationSystemDynamics): + """ + Italian excitation system. It represents static field voltage or excitation current feedback excitation system. + + :k3: AVR gain (K). Typical Value = 1000. Default: 0.0 + :k2: Exciter gain (K). Typical Value = 20. Default: 0.0 + :kce: Ceiling factor (K). Typical Value = 1. Default: 0.0 + :t3: Time constant (T). Typical Value = 1.6. Default: 0 + :t2: Time constant (T). Typical Value = 0.05. Default: 0 + :t1: Time constant (T). Typical Value = 20. Default: 0 + :blint: Governor Control Flag (BLINT). 0 = lead-lag regulator 1 = proportional integral regulator. Typical Value = 0. Default: 0 + :kvfif: Rate feedback signal flag (K). 0 = output voltage of the exciter 1 = exciter field current. Typical Value = 0. Default: 0 + :ifmn: Minimum exciter current (I). Typical Value = -5.2. Default: 0.0 + :ifmx: Maximum exciter current (I). Typical Value = 6.5. Default: 0.0 + :vrmn: Maximum AVR output (V). Typical Value = -5.2. Default: 0.0 + :vrmx: Minimum AVR output (V). Typical Value = 6.5. Default: 0.0 + :krvecc: Feedback enabling (K). 0 = Open loop control 1 = Closed loop control. Typical Value = 1. Default: 0 + :tb: Exciter time constant (T). Typical Value = 0.04. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "kce": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "blint": [ + cgmesProfile.DY.value, + ], + "kvfif": [ + cgmesProfile.DY.value, + ], + "ifmn": [ + cgmesProfile.DY.value, + ], + "ifmx": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "krvecc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k3=0.0, + k2=0.0, + kce=0.0, + t3=0, + t2=0, + t1=0, + blint=0, + kvfif=0, + ifmn=0.0, + ifmx=0.0, + vrmn=0.0, + vrmx=0.0, + krvecc=0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k3 = k3 + self.k2 = k2 + self.kce = kce + self.t3 = t3 + self.t2 = t2 + self.t1 = t1 + self.blint = blint + self.kvfif = kvfif + self.ifmn = ifmn + self.ifmx = ifmx + self.vrmn = vrmn + self.vrmx = vrmx + self.krvecc = krvecc + self.tb = tb + + def __str__(self): + str = "class=ExcANS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR1.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR1.py new file mode 100644 index 00000000..01e2a9ee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR1.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR1(ExcitationSystemDynamics): + """ + Italian excitation system corresponding to IEEE (1968) Type 1 Model. It represents exciter dynamo and electromechanical regulator. + + :ka: AVR gain (K). Typical Value = 500. Default: 0.0 + :vrmn: Maximum AVR output (V). Typical Value = -6. Default: 0.0 + :vrmx: Minimum AVR output (V). Typical Value = 7. Default: 0.0 + :ta: AVR time constant (T). Typical Value = 0.2. Default: 0 + :tb: AVR time constant (T). Typical Value = 0. Default: 0 + :te: Exciter time constant (T). Typical Value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 + :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 + :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 + :kf: Rate feedback gain (K). Typical Value = 0.02. Default: 0.0 + :tf: Rate feedback time constant (T). Typical Value = 1. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + ta=0, + tb=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kf=0.0, + tf=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.ta = ta + self.tb = tb + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kf = kf + self.tf = tf + + def __str__(self): + str = "class=ExcAVR1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR2.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR2.py new file mode 100644 index 00000000..2c209919 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR2.py @@ -0,0 +1,116 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR2(ExcitationSystemDynamics): + """ + Italian excitation system corresponding to IEEE (1968) Type 2 Model. It represents alternator and rotating diodes and electromechanic voltage regulators. + + :ka: AVR gain (K). Typical Value = 500. Default: 0.0 + :vrmn: Maximum AVR output (V). Typical Value = -6. Default: 0.0 + :vrmx: Minimum AVR output (V). Typical Value = 7. Default: 0.0 + :ta: AVR time constant (T). Typical Value = 0.02. Default: 0 + :tb: AVR time constant (T). Typical Value = 0. Default: 0 + :te: Exciter time constant (T). Typical Value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 + :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 + :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 + :kf: Rate feedback gain (K). Typical Value = 0.02. Default: 0.0 + :tf1: Rate feedback time constant (T). Typical Value = 1. Default: 0 + :tf2: Rate feedback time constant (T). Typical Value = 1. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + ta=0, + tb=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kf=0.0, + tf1=0, + tf2=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.ta = ta + self.tb = tb + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + + def __str__(self): + str = "class=ExcAVR2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR3.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR3.py new file mode 100644 index 00000000..49c5dbb7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR3.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR3(ExcitationSystemDynamics): + """ + Italian excitation system. It represents exciter dynamo and electric regulator. + + :ka: AVR gain (K). Typical Value = 3000. Default: 0.0 + :vrmn: Maximum AVR output (V). Typical Value = -7.5. Default: 0.0 + :vrmx: Minimum AVR output (V). Typical Value = 7.5. Default: 0.0 + :t1: AVR time constant (T). Typical Value = 220. Default: 0 + :t2: AVR time constant (T). Typical Value = 1.6. Default: 0 + :t3: AVR time constant (T). Typical Value = 0.66. Default: 0 + :t4: AVR time constant (T). Typical Value = 0.07. Default: 0 + :te: Exciter time constant (T). Typical Value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical Value = 4.18. Default: 0.0 + :se1: Saturation factor at E1 (S(E1)). Typical Value = 0.1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical Value = 3.14. Default: 0.0 + :se2: Saturation factor at E2 (S(E2)). Typical Value = 0.03. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + + def __str__(self): + str = "class=ExcAVR3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR4.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR4.py new file mode 100644 index 00000000..eeab2337 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR4.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR4(ExcitationSystemDynamics): + """ + Italian excitation system. It represents static exciter and electric voltage regulator. + + :ka: AVR gain (K). Typical Value = 300. Default: 0.0 + :vrmn: Maximum AVR output (V). Typical Value = 0. Default: 0.0 + :vrmx: Minimum AVR output (V). Typical Value = 5. Default: 0.0 + :t1: AVR time constant (T). Typical Value = 4.8. Default: 0 + :t2: AVR time constant (T). Typical Value = 1.5. Default: 0 + :t3: AVR time constant (T). Typical Value = 0. Default: 0 + :t4: AVR time constant (T). Typical Value = 0. Default: 0 + :ke: Exciter gain (K). Typical Value = 1. Default: 0.0 + :vfmx: Maximum exciter output (V). Typical Value = 5. Default: 0.0 + :vfmn: Minimum exciter output (V). Typical Value = 0. Default: 0.0 + :kif: Exciter internal reactance (K). Typical Value = 0. Default: 0.0 + :tif: Exciter current feedback time constant (T). Typical Value = 0. Default: 0 + :t1if: Exciter current feedback time constant (T). Typical Value = 60. Default: 0 + :imul: AVR output voltage dependency selector (Imul). true = selector is connected false = selector is not connected. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vfmx": [ + cgmesProfile.DY.value, + ], + "vfmn": [ + cgmesProfile.DY.value, + ], + "kif": [ + cgmesProfile.DY.value, + ], + "tif": [ + cgmesProfile.DY.value, + ], + "t1if": [ + cgmesProfile.DY.value, + ], + "imul": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + ke=0.0, + vfmx=0.0, + vfmn=0.0, + kif=0.0, + tif=0, + t1if=0, + imul=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.ke = ke + self.vfmx = vfmx + self.vfmn = vfmn + self.kif = kif + self.tif = tif + self.t1if = t1if + self.imul = imul + + def __str__(self): + str = "class=ExcAVR4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR5.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR5.py new file mode 100644 index 00000000..193b3f2f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR5.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR5(ExcitationSystemDynamics): + """ + Manual excitation control with field circuit resistance. This model can be used as a very simple representation of manual voltage control. + + :ka: Gain (Ka). Default: 0.0 + :ta: Time constant (Ta). Default: 0 + :rex: Effective Output Resistance (Rex). Rex represents the effective output resistance seen by the excitation system. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "rex": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__(self, ka=0.0, ta=0, rex=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.rex = rex + + def __str__(self): + str = "class=ExcAVR5\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR7.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR7.py new file mode 100644 index 00000000..c6d7994d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcAVR7.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR7(ExcitationSystemDynamics): + """ + IVO excitation system. + + :k1: Gain (K1). Typical Value = 1. Default: 0.0 + :a1: Lead coefficient (A1). Typical Value = 0.5. Default: 0.0 + :a2: Lag coefficient (A2). Typical Value = 0.5. Default: 0.0 + :t1: Lead time constant (T1). Typical Value = 0.05. Default: 0 + :t2: Lag time constant (T2). Typical Value = 0.1. Default: 0 + :vmax1: Lead-lag max. limit (Vmax1). Typical Value = 5. Default: 0.0 + :vmin1: Lead-lag min. limit (Vmin1). Typical Value = -5. Default: 0.0 + :k3: Gain (K3). Typical Value = 3. Default: 0.0 + :a3: Lead coefficient (A3). Typical Value = 0.5. Default: 0.0 + :a4: Lag coefficient (A4). Typical Value = 0.5. Default: 0.0 + :t3: Lead time constant (T3). Typical Value = 0.1. Default: 0 + :t4: Lag time constant (T4). Typical Value = 0.1. Default: 0 + :vmax3: Lead-lag max. limit (Vmax3). Typical Value = 5. Default: 0.0 + :vmin3: Lead-lag min. limit (Vmin3). Typical Value = -5. Default: 0.0 + :k5: Gain (K5). Typical Value = 1. Default: 0.0 + :a5: Lead coefficient (A5). Typical Value = 0.5. Default: 0.0 + :a6: Lag coefficient (A6). Typical Value = 0.5. Default: 0.0 + :t5: Lead time constant (T5). Typical Value = 0.1. Default: 0 + :t6: Lag time constant (T6). Typical Value = 0.1. Default: 0 + :vmax5: Lead-lag max. limit (Vmax5). Typical Value = 5. Default: 0.0 + :vmin5: Lead-lag min. limit (Vmin5). Typical Value = -2. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "vmax1": [ + cgmesProfile.DY.value, + ], + "vmin1": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "vmax3": [ + cgmesProfile.DY.value, + ], + "vmin3": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vmax5": [ + cgmesProfile.DY.value, + ], + "vmin5": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + vmax1=0.0, + vmin1=0.0, + k3=0.0, + a3=0.0, + a4=0.0, + t3=0, + t4=0, + vmax3=0.0, + vmin3=0.0, + k5=0.0, + a5=0.0, + a6=0.0, + t5=0, + t6=0, + vmax5=0.0, + vmin5=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.vmax1 = vmax1 + self.vmin1 = vmin1 + self.k3 = k3 + self.a3 = a3 + self.a4 = a4 + self.t3 = t3 + self.t4 = t4 + self.vmax3 = vmax3 + self.vmin3 = vmin3 + self.k5 = k5 + self.a5 = a5 + self.a6 = a6 + self.t5 = t5 + self.t6 = t6 + self.vmax5 = vmax5 + self.vmin5 = vmin5 + + def __str__(self): + str = "class=ExcAVR7\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcBBC.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcBBC.py new file mode 100644 index 00000000..afbb7ec5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcBBC.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcBBC(ExcitationSystemDynamics): + """ + Transformer fed static excitation system (static with ABB regulator). This model represents a static excitation system in which a gated thyristor bridge fed by a transformer at the main generator terminals feeds the main generator directly. + + :t1: Controller time constant (T1). Typical Value = 6. Default: 0 + :t2: Controller time constant (T2). Typical Value = 1. Default: 0 + :t3: Lead/lag time constant (T3). Typical Value = 0.05. Default: 0 + :t4: Lead/lag time constant (T4). Typical Value = 0.01. Default: 0 + :k: Steady state gain (K). Typical Value = 300. Default: 0.0 + :vrmin: Minimum control element output (Vrmin). Typical Value = -5. Default: 0.0 + :vrmax: Maximum control element output (Vrmax). Typical Value = 5. Default: 0.0 + :efdmin: Minimum open circuit exciter voltage (Efdmin). Typical Value = -5. Default: 0.0 + :efdmax: Maximum open circuit exciter voltage (Efdmax). Typical Value = 5. Default: 0.0 + :xe: Effective excitation transformer reactance (Xe). Typical Value = 0.05. Default: 0.0 + :switch: Supplementary signal routing selector (switch). true = Vs connected to 3rd summing point false = Vs connected to 1st summing point (see diagram). Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + "switch": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + vrmin=0.0, + vrmax=0.0, + efdmin=0.0, + efdmax=0.0, + xe=0.0, + switch=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.vrmin = vrmin + self.vrmax = vrmax + self.efdmin = efdmin + self.efdmax = efdmax + self.xe = xe + self.switch = switch + + def __str__(self): + str = "class=ExcBBC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcCZ.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcCZ.py new file mode 100644 index 00000000..e0d967fb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcCZ.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcCZ(ExcitationSystemDynamics): + """ + Czech Proportion/Integral Exciter. + + :kp: Regulator proportional gain (Kp). Default: 0.0 + :tc: Regulator integral time constant (Tc). Default: 0 + :vrmax: Voltage regulator maximum limit (Vrmax). Default: 0.0 + :vrmin: Voltage regulator minimum limit (Vrmin). Default: 0.0 + :ka: Regulator gain (Ka). Default: 0.0 + :ta: Regulator time constant (Ta). Default: 0 + :ke: Exciter constant related to self-excited field (Ke). Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Default: 0 + :efdmax: Exciter output maximum limit (Efdmax). Default: 0.0 + :efdmin: Exciter output minimum limit (Efdmin). Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kp=0.0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ka=0.0, + ta=0, + ke=0.0, + te=0, + efdmax=0.0, + efdmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kp = kp + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ka = ka + self.ta = ta + self.ke = ke + self.te = te + self.efdmax = efdmax + self.efdmin = efdmin + + def __str__(self): + str = "class=ExcCZ\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC1A.py new file mode 100644 index 00000000..e103445c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC1A.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC1A(ExcitationSystemDynamics): + """ + Modified IEEE DC1A direct current commutator exciter with speed input and without underexcitation limiters (UEL) inputs. + + :ka: Voltage regulator gain (Ka). Typical Value = 46. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.06. Default: 0 + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -0.9. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.46. Default: 0 + :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 3.1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.33. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 2.3. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.33. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False + :efdmin: Minimum voltage exciter output limiter (Efdmin). Typical Value = -99. Default: 0.0 + :edfmax: Maximum voltage exciter output limiter (Efdmax). Typical Value = 99. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "edfmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + efdmin=0.0, + edfmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.efdmin = efdmin + self.edfmax = edfmax + + def __str__(self): + str = "class=ExcDC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC2A.py new file mode 100644 index 00000000..641b6787 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC2A.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC2A(ExcitationSystemDynamics): + """ + Modified IEEE DC2A direct current commutator exciters with speed input, one more leg block in feedback loop and without underexcitation limiters (UEL) inputs. DC type 2 excitation system model with added speed multiplier, added lead-lag, and voltage-dependent limits. + + :ka: Voltage regulator gain (Ka). Typical Value = 300. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.01. Default: 0 + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 4.95. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.9. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). If Ke is entered as zero, the model calculates an effective value of Ke such that the initial condition value of Vr is zero. The zero value of Ke is not changed. If Ke is entered as non-zero, its value is used directly, without change. Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.33. Default: 0 + :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.675. Default: 0 + :tf1: Excitation control system stabilizer time constant (Tf1). Typical Value = 0. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 3.05. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.279. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 2.29. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]). Typical Value = 0.117. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False + :vtlim: (Vtlim). true = limiter at the block [Ka/(1+sTa)] is dependent on Vt false = limiter at the block is not dependent on Vt. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "vtlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + tf1=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + vtlim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.tf1 = tf1 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.vtlim = vtlim + + def __str__(self): + str = "class=ExcDC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A.py new file mode 100644 index 00000000..8180201a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC3A(ExcitationSystemDynamics): + """ + This is modified IEEE DC3A direct current commutator exciters with speed input, and death band. DC old type 4. + + :trh: Rheostat travel time (Trh). Typical Value = 20. Default: 0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :kr: Death band (Kr). If Kr is not zero, the voltage regulator input changes at a constant rate if Verr > Kr or Verr < -Kr as per the IEEE (1968) Type 4 model. If Kr is zero, the error signal drives the voltage regulator continuously as per the IEEE (1980) DC3 and IEEE (1992, 2005) DC3A models. Typical Value = 0. Default: 0.0 + :kv: Fast raise/lower contact setting (Kv). Typical Value = 0.05. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.83. Default: 0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1). Typical Value = 2.6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]). Typical Value = 0.1. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2). Typical Value = 3.45. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]). Typical Value = 0.35. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero not applied to integrator output. Typical Value = true. Default: False + :edfmax: Maximum voltage exciter output limiter (Efdmax). Typical Value = 99. Default: 0.0 + :efdmin: Minimum voltage exciter output limiter (Efdmin). Typical Value = -99. Default: 0.0 + :efdlim: (Efdlim). true = exciter output limiter is active false = exciter output limiter not active. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kv": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "edfmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + trh=0, + ks=0.0, + kr=0.0, + kv=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + ke=0.0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + edfmax=0.0, + efdmin=0.0, + efdlim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.trh = trh + self.ks = ks + self.kr = kr + self.kv = kv + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.ke = ke + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.edfmax = edfmax + self.efdmin = efdmin + self.efdlim = efdlim + + def __str__(self): + str = "class=ExcDC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A1.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A1.py new file mode 100644 index 00000000..951f00fd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcDC3A1.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC3A1(ExcitationSystemDynamics): + """ + This is modified old IEEE type 3 excitation system. + + :ka: Voltage regulator gain (Ka). Typical Value = 300. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.01. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 1.83. Default: 0 + :kf: Excitation control system stabilizer gain (Kf). Typical Value = 0.1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.675. Default: 0 + :kp: Potential circuit gain coefficient (Kp). Typical Value = 4.37. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki). Typical Value = 4.83. Default: 0.0 + :vbmax: Available exciter voltage limiter (Vbmax). Typical Value = 11.63. Default: 0.0 + :exclim: (exclim). true = lower limit of zero is applied to integrator output false = lower limit of zero not applied to integrator output. Typical Value = true. Default: False + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :vb1max: Available exciter voltage limiter (Vb1max). Typical Value = 11.63. Default: 0.0 + :vblim: Vb limiter indicator. true = exciter Vbmax limiter is active false = Vb1max is active. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vb1max": [ + cgmesProfile.DY.value, + ], + "vblim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + vbmax=0.0, + exclim=False, + ke=0.0, + vb1max=0.0, + vblim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.vbmax = vbmax + self.exclim = exclim + self.ke = ke + self.vb1max = vb1max + self.vblim = vblim + + def __str__(self): + str = "class=ExcDC3A1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN1.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN1.py new file mode 100644 index 00000000..fbaaa97c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN1.py @@ -0,0 +1,128 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcELIN1(ExcitationSystemDynamics): + """ + Static PI transformer fed excitation system: ELIN (VATECH) - simplified model. This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. A power system stabilizer with power input is included in the model. + + :tfi: Current transducer time constant (Tfi). Typical Value = 0. Default: 0 + :tnu: Controller reset time constant (Tnu). Typical Value = 2. Default: 0 + :vpu: Voltage controller proportional gain (Vpu). Typical Value = 34.5. Default: 0.0 + :vpi: Current controller gain (Vpi). Typical Value = 12.45. Default: 0.0 + :vpnf: Controller follow up gain (Vpnf). Typical Value = 2. Default: 0.0 + :dpnf: Controller follow up dead band (Dpnf). Typical Value = 0. Default: 0.0 + :tsw: Stabilizer parameters (Tsw). Typical Value = 3. Default: 0 + :efmin: Minimum open circuit excitation voltage (Efmin). Typical Value = -5. Default: 0.0 + :efmax: Maximum open circuit excitation voltage (Efmax). Typical Value = 5. Default: 0.0 + :xe: Excitation transformer effective reactance (Xe) (>=0). Xe represents the regulation of the transformer/rectifier unit. Typical Value = 0.06. Default: 0.0 + :ks1: Stabilizer Gain 1 (Ks1). Typical Value = 0. Default: 0.0 + :ks2: Stabilizer Gain 2 (Ks2). Typical Value = 0. Default: 0.0 + :ts1: Stabilizer Phase Lag Time Constant (Ts1). Typical Value = 1. Default: 0 + :ts2: Stabilizer Filter Time Constant (Ts2). Typical Value = 1. Default: 0 + :smax: Stabilizer Limit Output (smax). Typical Value = 0.1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tfi": [ + cgmesProfile.DY.value, + ], + "tnu": [ + cgmesProfile.DY.value, + ], + "vpu": [ + cgmesProfile.DY.value, + ], + "vpi": [ + cgmesProfile.DY.value, + ], + "vpnf": [ + cgmesProfile.DY.value, + ], + "dpnf": [ + cgmesProfile.DY.value, + ], + "tsw": [ + cgmesProfile.DY.value, + ], + "efmin": [ + cgmesProfile.DY.value, + ], + "efmax": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ts1": [ + cgmesProfile.DY.value, + ], + "ts2": [ + cgmesProfile.DY.value, + ], + "smax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tfi=0, + tnu=0, + vpu=0.0, + vpi=0.0, + vpnf=0.0, + dpnf=0.0, + tsw=0, + efmin=0.0, + efmax=0.0, + xe=0.0, + ks1=0.0, + ks2=0.0, + ts1=0, + ts2=0, + smax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tfi = tfi + self.tnu = tnu + self.vpu = vpu + self.vpi = vpi + self.vpnf = vpnf + self.dpnf = dpnf + self.tsw = tsw + self.efmin = efmin + self.efmax = efmax + self.xe = xe + self.ks1 = ks1 + self.ks2 = ks2 + self.ts1 = ts1 + self.ts2 = ts2 + self.smax = smax + + def __str__(self): + str = "class=ExcELIN1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN2.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN2.py new file mode 100644 index 00000000..1a610d2a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcELIN2.py @@ -0,0 +1,200 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcELIN2(ExcitationSystemDynamics): + """ + Detailed Excitation System Model - ELIN (VATECH). This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. Power system stabilizer models used in conjunction with this excitation system model: PssELIN2, PssIEEE2B, Pss2B. + + :k1: Voltage regulator input gain (K1). Typical Value = 0. Default: 0.0 + :k1ec: Voltage regulator input limit (K1ec). Typical Value = 2. Default: 0.0 + :kd1: Voltage controller derivative gain (Kd1). Typical Value = 34.5. Default: 0.0 + :tb1: Voltage controller derivative washout time constant (Tb1). Typical Value = 12.45. Default: 0 + :pid1max: Controller follow up gain (PID1max). Typical Value = 2. Default: 0.0 + :ti1: Controller follow up dead band (Ti1). Typical Value = 0. Default: 0.0 + :iefmax2: Minimum open circuit excitation voltage (Iefmax2). Typical Value = -5. Default: 0.0 + :k2: Gain (K2). Typical Value = 5. Default: 0.0 + :ketb: Gain (Ketb). Typical Value = 0.06. Default: 0.0 + :upmax: Limiter (Upmax). Typical Value = 3. Default: 0.0 + :upmin: Limiter (Upmin). Typical Value = 0. Default: 0.0 + :te: Time constant (Te). Typical Value = 0. Default: 0 + :xp: Excitation transformer effective reactance (Xp). Typical Value = 1. Default: 0.0 + :te2: Time Constant (Te2). Typical Value = 1. Default: 0 + :ke2: Gain (Ke2). Typical Value = 0.1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1). Typical Value = 3. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]). Typical Value = 0. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2). Typical Value = 0. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]). Typical Value = 1. Default: 0.0 + :tr4: Time constant (Tr4). Typical Value = 1. Default: 0 + :k3: Gain (K3). Typical Value = 0.1. Default: 0.0 + :ti3: Time constant (Ti3). Typical Value = 3. Default: 0 + :k4: Gain (K4). Typical Value = 0. Default: 0.0 + :ti4: Time constant (Ti4). Typical Value = 0. Default: 0 + :iefmax: Limiter (Iefmax). Typical Value = 1. Default: 0.0 + :iefmin: Limiter (Iefmin). Typical Value = 1. Default: 0.0 + :efdbas: Gain (Efdbas). Typical Value = 0.1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k1ec": [ + cgmesProfile.DY.value, + ], + "kd1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "pid1max": [ + cgmesProfile.DY.value, + ], + "ti1": [ + cgmesProfile.DY.value, + ], + "iefmax2": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ketb": [ + cgmesProfile.DY.value, + ], + "upmax": [ + cgmesProfile.DY.value, + ], + "upmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "xp": [ + cgmesProfile.DY.value, + ], + "te2": [ + cgmesProfile.DY.value, + ], + "ke2": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "tr4": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "ti3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "ti4": [ + cgmesProfile.DY.value, + ], + "iefmax": [ + cgmesProfile.DY.value, + ], + "iefmin": [ + cgmesProfile.DY.value, + ], + "efdbas": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + k1ec=0.0, + kd1=0.0, + tb1=0, + pid1max=0.0, + ti1=0.0, + iefmax2=0.0, + k2=0.0, + ketb=0.0, + upmax=0.0, + upmin=0.0, + te=0, + xp=0.0, + te2=0, + ke2=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + tr4=0, + k3=0.0, + ti3=0, + k4=0.0, + ti4=0, + iefmax=0.0, + iefmin=0.0, + efdbas=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.k1ec = k1ec + self.kd1 = kd1 + self.tb1 = tb1 + self.pid1max = pid1max + self.ti1 = ti1 + self.iefmax2 = iefmax2 + self.k2 = k2 + self.ketb = ketb + self.upmax = upmax + self.upmin = upmin + self.te = te + self.xp = xp + self.te2 = te2 + self.ke2 = ke2 + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.tr4 = tr4 + self.k3 = k3 + self.ti3 = ti3 + self.k4 = k4 + self.ti4 = ti4 + self.iefmax = iefmax + self.iefmin = iefmin + self.efdbas = efdbas + + def __str__(self): + str = "class=ExcELIN2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcHU.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcHU.py new file mode 100644 index 00000000..87637b74 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcHU.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcHU(ExcitationSystemDynamics): + """ + Hungarian Excitation System Model, with built-in voltage transducer. + + :tr: Filter time constant (Tr). If a voltage compensator is used in conjunction with this excitation system model, Tr should be set to 0. Typical Value = 0.01. Default: 0 + :te: Major loop PI tag integration time constant (Te). Typical Value = 0.154. Default: 0 + :imin: Major loop PI tag output signal lower limit (Imin). Typical Value = 0.1. Default: 0.0 + :imax: Major loop PI tag output signal upper limit (Imax). Typical Value = 2.19. Default: 0.0 + :ae: Major loop PI tag gain factor (Ae). Typical Value = 3. Default: 0.0 + :emin: Field voltage control signal lower limit on AVR base (Emin). Typical Value = -0.866. Default: 0.0 + :emax: Field voltage control signal upper limit on AVR base (Emax). Typical Value = 0.996. Default: 0.0 + :ki: Current base conversion constant (Ki). Typical Value = 0.21428. Default: 0.0 + :ai: Minor loop PI tag gain factor (Ai). Typical Value = 22. Default: 0.0 + :ti: Minor loop PI control tag integration time constant (Ti). Typical Value = 0.01333. Default: 0 + :atr: AVR constant (Atr). Typical Value = 2.19. Default: 0.0 + :ke: Voltage base conversion constant (Ke). Typical Value = 4.666. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "imin": [ + cgmesProfile.DY.value, + ], + "imax": [ + cgmesProfile.DY.value, + ], + "ae": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "ai": [ + cgmesProfile.DY.value, + ], + "ti": [ + cgmesProfile.DY.value, + ], + "atr": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tr=0, + te=0, + imin=0.0, + imax=0.0, + ae=0.0, + emin=0.0, + emax=0.0, + ki=0.0, + ai=0.0, + ti=0, + atr=0.0, + ke=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tr = tr + self.te = te + self.imin = imin + self.imax = imax + self.ae = ae + self.emin = emin + self.emax = emax + self.ki = ki + self.ai = ai + self.ti = ti + self.atr = atr + self.ke = ke + + def __str__(self): + str = "class=ExcHU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py new file mode 100644 index 00000000..bcdb0b30 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC1A.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC1A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC1A model. The model represents the field-controlled alternator-rectifier excitation systems designated Type AC1A. These excitation systems consist of an alternator main exciter with non-controlled rectifiers. Reference: IEEE Standard 421.5-2005 Section 6.1. + + :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.2. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.38. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.18. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.1. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.14. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.03. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (V). Typical Value = 6.03. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (V). Typical Value = -5.43. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEAC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py new file mode 100644 index 00000000..f1f49769 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC2A.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC2A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC2A model. The model represents a high initial response field-controlled alternator-rectifier excitation system. The alternator main exciter is used with non-controlled rectifiers. The Type AC2A model is similar to that of Type AC1A except for the inclusion of exciter time constant compensation and exciter field current limiting elements. Reference: IEEE Standard 421.5-2005 Section 6.2. + + :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 8. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -8. Default: 0.0 + :kb: Second stage regulator gain (K). Typical Value = 25. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (V). Typical Value = 105. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (V). Typical Value = -95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.6. Default: 0 + :vfemax: Exciter field current limit reference (V). Typical Value = 4.4. Default: 0.0 + :kh: Exciter field current feedback gain (K). Typical Value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.28. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.35. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.037. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.012. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kb": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + kb=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + vfemax=0.0, + kh=0.0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.kb = kb + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.vfemax = vfemax + self.kh = kh + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py new file mode 100644 index 00000000..1c444914 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC3A.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC3A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC3A model. The model represents the field-controlled alternator-rectifier excitation systems designated Type AC3A. These excitation systems include an alternator main exciter with non-controlled rectifiers. The exciter employs self-excitation, and the voltage regulator power is derived from the exciter output voltage. Therefore, this system has an additional nonlinearity, simulated by the use of a multiplier whose inputs are the voltage regulator command signal, , and the exciter output voltage, , times . This model is applicable to excitation systems employing static voltage regulators. Reference: IEEE Standard 421.5-2005 Section 6.3. + + :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :ka: Voltage regulator gain (K). Typical Value = 45.62. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.013. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.17. Default: 0 + :vemin: Minimum exciter voltage output (V). Typical Value = 0.1. Default: 0.0 + :kr: Constant associated with regulator and alternator field power supply (K). Typical Value = 3.77. Default: 0.0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0.143. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :kn: Excitation control system stabilizer gain (K). Typical Value = 0.05. Default: 0.0 + :efdn: Value of at which feedback gain changes (E). Typical Value = 2.36. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.104. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.499. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :vfemax: Exciter field current limit reference (V). Typical Value = 16. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V(V). Typical Value = 6.24. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 1.143. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 4.68. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kn": [ + cgmesProfile.DY.value, + ], + "efdn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + vemin=0.0, + kr=0.0, + kf=0.0, + tf=0, + kn=0.0, + efdn=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + vfemax=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.vemin = vemin + self.kr = kr + self.kf = kf + self.tf = tf + self.kn = kn + self.efdn = efdn + self.kc = kc + self.kd = kd + self.ke = ke + self.vfemax = vfemax + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py new file mode 100644 index 00000000..b38affc1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC4A.py @@ -0,0 +1,92 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC4A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC4A model. The model represents type AC4A alternator-supplied controlled-rectifier excitation system which is quite different from the other type ac systems. This high initial response excitation system utilizes a full thyristor bridge in the exciter output circuit. The voltage regulator controls the firing of the thyristor bridges. The exciter alternator uses an independent voltage regulator to control its output voltage to a constant value. These effects are not modeled; however, transient loading effects on the exciter alternator are included. Reference: IEEE Standard 421.5-2005 Section 6.4. + + :vimax: Maximum voltage regulator input limit (V). Typical Value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (V). Typical Value = -10. Default: 0.0 + :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 + :ka: Voltage regulator gain (K). Typical Value = 200. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.015. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 5.64. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -4.53. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + + def __str__(self): + str = "class=ExcIEEEAC4A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py new file mode 100644 index 00000000..c5faa944 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC5A.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC5A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC5A model. The model represents a simplified model for brushless excitation systems. The regulator is supplied from a source, such as a permanent magnet generator, which is not affected by system disturbances. Unlike other ac models, this model uses loaded rather than open circuit exciter saturation data in the same way as it is used for the dc models. Because the model has been widely implemented by the industry, it is sometimes used to represent other types of systems when either detailed data for them are not available or simplified models are required. Reference: IEEE Standard 421.5-2005 Section 6.5. + + :ka: Voltage regulator gain (K). Typical Value = 400. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 7.3. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -7.3. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0.03. Default: 0.0 + :tf1: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :tf2: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :tf3: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 5.6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.86. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 4.2. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tf3": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf1=0, + tf2=0, + tf3=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.tf3 = tf3 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + + def __str__(self): + str = "class=ExcIEEEAC5A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py new file mode 100644 index 00000000..ab24ee5f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC6A.py @@ -0,0 +1,170 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC6A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC6A model. The model represents field-controlled alternator-rectifier excitation systems with system-supplied electronic voltage regulators. The maximum output of the regulator, , is a function of terminal voltage, . The field current limiter included in the original model AC6A remains in the 2005 update. Reference: IEEE Standard 421.5-2005 Section 6.6. + + :ka: Voltage regulator gain (K). Typical Value = 536. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.086. Default: 0 + :tk: Voltage regulator time constant (T). Typical Value = 0.18. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 9. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 3. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 75. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -75. Default: 0.0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 44. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -36. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1. Default: 0 + :kh: Exciter field current limiter gain (K). Typical Value = 92. Default: 0.0 + :tj: Exciter field current limiter time constant (T). Typical Value = 0.02. Default: 0 + :th: Exciter field current limiter time constant (T). Typical Value = 0.08. Default: 0 + :vfelim: Exciter field current limit reference (V). Typical Value = 19. Default: 0.0 + :vhmax: Maximum field current limiter signal reference (V). Typical Value = 75. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.173. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 1.91. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1.6. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V(V). Typical Value = 7.4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.214. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 5.55. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.044. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tk": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "tj": [ + cgmesProfile.DY.value, + ], + "th": [ + cgmesProfile.DY.value, + ], + "vfelim": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + tk=0, + tb=0, + tc=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + kh=0.0, + tj=0, + th=0, + vfelim=0.0, + vhmax=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.tk = tk + self.tb = tb + self.tc = tc + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kh = kh + self.tj = tj + self.th = th + self.vfelim = vfelim + self.vhmax = vhmax + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC6A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py new file mode 100644 index 00000000..932f828c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC7B.py @@ -0,0 +1,194 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC7B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC7B model. The model represents excitation systems which consist of an ac alternator with either stationary or rotating rectifiers to produce the dc field requirements. It is an upgrade to earlier ac excitation systems, which replace only the controls but retain the ac alternator and diode rectifier bridge. Reference: IEEE Standard 421.5-2005 Section 6.7. In the IEEE Standard 421.5 - 2005, the [1 / sT] block is shown as [1 / (1 + sT)], which is incorrect. + + :kpr: Voltage regulator proportional gain (K). Typical Value = 4.24. Default: 0.0 + :kir: Voltage regulator integral gain (K). Typical Value = 4.24. Default: 0.0 + :kdr: Voltage regulator derivative gain (K). Typical Value = 0. Default: 0.0 + :tdr: Lag time constant (T). Typical Value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 5.79. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -5.79. Default: 0.0 + :kpa: Voltage regulator proportional gain (K). Typical Value = 65.36. Default: 0.0 + :kia: Voltage regulator integral gain (K). Typical Value = 59.69. Default: 0.0 + :vamax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -0.95. Default: 0.0 + :kp: Potential circuit gain coefficient (K). Typical Value = 4.96. Default: 0.0 + :kl: Exciter field voltage lower limit parameter (K). Typical Value = 10. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.1. Default: 0 + :vfemax: Exciter field current limit reference (V). Typical Value = 6.9. Default: 0.0 + :vemin: Minimum exciter voltage output (V). Typical Value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.18. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 0.02. Default: 0.0 + :kf1: Excitation control system stabilizer gain (K). Typical Value = 0.212. Default: 0.0 + :kf2: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 + :kf3: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V (V). Typical Value = 6.3. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.44. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 3.02. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.075. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "kf3": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + kdr=0.0, + tdr=0, + vrmax=0.0, + vrmin=0.0, + kpa=0.0, + kia=0.0, + vamax=0.0, + vamin=0.0, + kp=0.0, + kl=0.0, + te=0, + vfemax=0.0, + vemin=0.0, + ke=0.0, + kc=0.0, + kd=0.0, + kf1=0.0, + kf2=0.0, + kf3=0.0, + tf=0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.kdr = kdr + self.tdr = tdr + self.vrmax = vrmax + self.vrmin = vrmin + self.kpa = kpa + self.kia = kia + self.vamax = vamax + self.vamin = vamin + self.kp = kp + self.kl = kl + self.te = te + self.vfemax = vfemax + self.vemin = vemin + self.ke = ke + self.kc = kc + self.kd = kd + self.kf1 = kf1 + self.kf2 = kf2 + self.kf3 = kf3 + self.tf = tf + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py new file mode 100644 index 00000000..15a803a1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEAC8B.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC8B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type AC8B model. This model represents a PID voltage regulator with either a brushless exciter or dc exciter. The AVR in this model consists of PID control, with separate constants for the proportional (), integral (), and derivative () gains. The representation of the brushless exciter (, , , , ) is similar to the model Type AC2A. The Type AC8B model can be used to represent static voltage regulators applied to brushless excitation systems. Digitally based voltage regulators feeding dc rotating main exciters can be represented with the AC Type AC8B model with the parameters and set to 0. For thyristor power stages fed from the generator terminals, the limits and should be a function of terminal voltage: * and * . Reference: IEEE Standard 421.5-2005 Section 6.8. + + :kpr: Voltage regulator proportional gain (K). Typical Value = 80. Default: 0.0 + :kir: Voltage regulator integral gain (K). Typical Value = 5. Default: 0.0 + :kdr: Voltage regulator derivative gain (K). Typical Value = 10. Default: 0.0 + :tdr: Lag time constant (T). Typical Value = 0.1. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 35. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = 0. Default: 0.0 + :ka: Voltage regulator gain (K). Typical Value = 1. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.2. Default: 0 + :vfemax: Exciter field current limit reference (V). Typical Value = 6. Default: 0.0 + :vemin: Minimum exciter voltage output (V). Typical Value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.55. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (K). Typical Value = 1.1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V) equals V (V). Typical Value = 6.5. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 0.3. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (V). Typical Value = 9. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, V, back of commutating reactance (S[V]). Typical Value = 3. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + kdr=0.0, + tdr=0, + vrmax=0.0, + vrmin=0.0, + ka=0.0, + ta=0, + te=0, + vfemax=0.0, + vemin=0.0, + ke=0.0, + kc=0.0, + kd=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.kdr = kdr + self.tdr = tdr + self.vrmax = vrmax + self.vrmin = vrmin + self.ka = ka + self.ta = ta + self.te = te + self.vfemax = vfemax + self.vemin = vemin + self.ke = ke + self.kc = kc + self.kd = kd + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC8B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py new file mode 100644 index 00000000..669ae434 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC1A.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC1A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type DC1A model. This model represents field-controlled dc commutator exciters with continuously acting voltage regulators (especially the direct-acting rheostatic, rotating amplifier, and magnetic amplifier types). Because this model has been widely implemented by the industry, it is sometimes used to represent other types of systems when detailed data for them are not available or when a simplified model is required. Reference: IEEE Standard 421.5-2005 Section 5.1. + + :ka: Voltage regulator gain (K). Typical Value = 46. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.06. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -0.9. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.46. Default: 0 + :kf: Excitation control system stabilizer gain (K). Typical Value = 0.1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.33. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.3. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.1. Default: 0.0 + :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical Value = true. Default: False + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + uelin=False, + exclim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.uelin = uelin + self.exclim = exclim + + def __str__(self): + str = "class=ExcIEEEDC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py new file mode 100644 index 00000000..5a7f1e76 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC2A.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC2A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type DC2A model. This model represents represent field-controlled dc commutator exciters with continuously acting voltage regulators having supplies obtained from the generator or auxiliary bus. It differs from the Type DC1A model only in the voltage regulator output limits, which are now proportional to terminal voltage . It is representative of solid-state replacements for various forms of older mechanical and rotating amplifier regulating equipment connected to dc commutator exciters. Reference: IEEE Standard 421.5-2005 Section 5.2. + + :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.05. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.29. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. Typical Value = - 999 which means that there is no limit applied. Default: 0.0 + :ka: Voltage regulator gain (K). Typical Value = 300. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gain (K). Typical Value = 0.1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.279. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.117. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.01. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 1.33. Default: 0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 0.675. Default: 0 + :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical Value = true. Default: False + :vrmax: Maximum voltage regulator output (V). Typical Value = 4.95. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -4.9. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + efd1=0.0, + efd2=0.0, + exclim=0.0, + ka=0.0, + ke=0.0, + kf=0.0, + seefd1=0.0, + seefd2=0.0, + ta=0, + tb=0, + tc=0, + te=0, + tf=0, + uelin=False, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efd1 = efd1 + self.efd2 = efd2 + self.exclim = exclim + self.ka = ka + self.ke = ke + self.kf = kf + self.seefd1 = seefd1 + self.seefd2 = seefd2 + self.ta = ta + self.tb = tb + self.tc = tc + self.te = te + self.tf = tf + self.uelin = uelin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEDC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py new file mode 100644 index 00000000..6ab5ee09 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC3A.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC3A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type DC3A model. This model represents represent older systems, in particular those dc commutator exciters with non-continuously acting regulators that were commonly used before the development of the continuously acting varieties. These systems respond at basically two different rates, depending upon the magnitude of voltage error. For small errors, adjustment is made periodically with a signal to a motor-operated rheostat. Larger errors cause resistors to be quickly shorted or inserted and a strong forcing signal applied to the exciter. Continuous motion of the motor-operated rheostat occurs for these larger error signals, even though it is bypassed by contactor action. Reference: IEEE Standard 421.5-2005 Section 5.3. + + :trh: Rheostat travel time (T). Typical Value = 20. Default: 0 + :kv: Fast raise/lower contact setting (K). Typical Value = 0.05. Default: 0.0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.5. Default: 0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 0.05. Default: 0.0 + :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.375. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.267. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 3.15. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.068. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "kv": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + trh=0, + kv=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + ke=0.0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.trh = trh + self.kv = kv + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.ke = ke + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + + def __str__(self): + str = "class=ExcIEEEDC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py new file mode 100644 index 00000000..dfadfdd1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEDC4B.py @@ -0,0 +1,152 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC4B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type DC4B model. These excitation systems utilize a field-controlled dc commutator exciter with a continuously acting voltage regulator having supplies obtained from the generator or auxiliary bus. Reference: IEEE Standard 421.5-2005 Section 5.4. + + :ka: Voltage regulator gain (K). Typical Value = 1. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.2. Default: 0 + :kp: Regulator proportional gain (K). Typical Value = 20. Default: 0.0 + :ki: Regulator integral gain (K). Typical Value = 20. Default: 0.0 + :kd: Regulator derivative gain (K). Typical Value = 20. Default: 0.0 + :td: Regulator derivative filter time constant(T). Typical Value = 0.01. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 2.7. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -0.9. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.8. Default: 0 + :kf: Excitation control system stabilizer gain (K). Typical Value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (E). Typical Value = 1.75. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.08. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (E). Typical Value = 2.33. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, E (S[E]). Typical Value = 0.27. Default: 0.0 + :vemin: Minimum exciter voltage output(V). Typical Value = 0. Default: 0.0 + :oelin: OEL input (OELin). true = LV gate false = subtract from error signal. Typical Value = true. Default: False + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + kp=0.0, + ki=0.0, + kd=0.0, + td=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + vemin=0.0, + oelin=False, + uelin=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.kp = kp + self.ki = ki + self.kd = kd + self.td = td + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.vemin = vemin + self.oelin = oelin + self.uelin = uelin + + def __str__(self): + str = "class=ExcIEEEDC4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py new file mode 100644 index 00000000..db23dfcd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1A.py @@ -0,0 +1,152 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST1A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST1A model. This model represents systems in which excitation power is supplied through a transformer from the generator terminals (or the unit's auxiliary bus) and is regulated by a controlled rectifier. The maximum exciter voltage available from such systems is directly related to the generator terminal voltage. Reference: IEEE Standard 421.5-2005 Section 7.1. + + :ilr: Exciter output current limit reference (I). Typical Value = 0. Default: 0.0 + :ka: Voltage regulator gain (K). Typical Value = 190. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.08. Default: 0.0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0. Default: 0.0 + :klr: Exciter output current limiter gain (K). Typical Value = 0. Default: 0.0 + :pssin: Selector of the Power System Stabilizer (PSS) input (PSSin). true = PSS input (Vs) added to error signal false = PSS input (Vs) added to voltage regulator output. Typical Value = true. Default: False + :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 + :tb1: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 + :tc1: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :uelin: Selector of the connection of the UEL input (UELin). Typical Value = ignoreUELsignal. Default: None + :vamax: Maximum voltage regulator output (V). Typical Value = 14.5. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -14.5. Default: 0.0 + :vimax: Maximum voltage regulator input limit (V). Typical Value = 999. Default: 0.0 + :vimin: Minimum voltage regulator input limit (V). Typical Value = -999. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (V). Typical Value = 7.8. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (V). Typical Value = -6.7. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "pssin": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + ka=0.0, + kc=0.0, + kf=0.0, + klr=0.0, + pssin=False, + ta=0, + tb=0, + tb1=0, + tc=0, + tc1=0, + tf=0, + uelin=None, + vamax=0.0, + vamin=0.0, + vimax=0.0, + vimin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.ka = ka + self.kc = kc + self.kf = kf + self.klr = klr + self.pssin = pssin + self.ta = ta + self.tb = tb + self.tb1 = tb1 + self.tc = tc + self.tc1 = tc1 + self.tf = tf + self.uelin = uelin + self.vamax = vamax + self.vamin = vamin + self.vimax = vimax + self.vimin = vimin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py new file mode 100644 index 00000000..f38cc023 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST1AUELselectorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ExcIEEEST1AUELselectorKind(Base): + """ + Type of connection for the UEL input used in ExcIEEEST1A. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcIEEEST1AUELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py new file mode 100644 index 00000000..47ab1260 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST2A.py @@ -0,0 +1,116 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST2A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST2A model. Some static systems utilize both current and voltage sources (generator terminal quantities) to comprise the power source. The regulator controls the exciter output through controlled saturation of the power transformer components. These compound-source rectifier excitation systems are designated Type ST2A and are represented by ExcIEEEST2A. Reference: IEEE Standard 421.5-2005 Section 7.2. + + :ka: Voltage regulator gain (K). Typical Value = 120. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.15. Default: 0 + :vrmax: Maximum voltage regulator outputs (V). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (V). Typical Value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (K). Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (T). Typical Value = 0.5. Default: 0 + :kf: Excitation control system stabilizer gains (K). Typical Value = 0.05. Default: 0.0 + :tf: Excitation control system stabilizer time constant (T). Typical Value = 1. Default: 0 + :kp: Potential circuit gain coefficient (K). Typical Value = 4.88. Default: 0.0 + :ki: Potential circuit gain coefficient (K). Typical Value = 8. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 1.82. Default: 0.0 + :efdmax: Maximum field voltage (E). Typical Value = 99. Default: 0.0 + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + kc=0.0, + efdmax=0.0, + uelin=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.kc = kc + self.efdmax = efdmax + self.uelin = uelin + + def __str__(self): + str = "class=ExcIEEEST2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py new file mode 100644 index 00000000..e0514845 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST3A.py @@ -0,0 +1,158 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST3A(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST3A model. Some static systems utilize a field voltage control loop to linearize the exciter control characteristic. This also makes the output independent of supply source variations until supply limitations are reached. These systems utilize a variety of controlled-rectifier designs: full thyristor complements or hybrid bridges in either series or shunt configurations. The power source may consist of only a potential source, either fed from the machine terminals or from internal windings. Some designs may have compound power sources utilizing both machine potential and current. These power sources are represented as phasor combinations of machine terminal current and voltage and are accommodated by suitable parameters in model Type ST3A which is represented by ExcIEEEST3A. Reference: IEEE Standard 421.5-2005 Section 7.3. + + :vimax: Maximum voltage regulator input limit (V). Typical Value = 0.2. Default: 0.0 + :vimin: Minimum voltage regulator input limit (V). Typical Value = -0.2. Default: 0.0 + :ka: Voltage regulator gain (K). This is parameter K in the IEEE Std. Typical Value = 200. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0. Default: 0 + :tb: Voltage regulator time constant (T). Typical Value = 10. Default: 0 + :tc: Voltage regulator time constant (T). Typical Value = 1. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 10. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -10. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (K). Typical Value = 7.93. Default: 0.0 + :tm: Forward time constant of inner loop field regulator (T). Typical Value = 0.4. Default: 0 + :vmmax: Maximum inner loop output (V). Typical Value = 1. Default: 0.0 + :vmmin: Minimum inner loop output (V). Typical Value = 0. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 + :kp: Potential circuit gain coefficient (K). Typical Value = 6.15. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (K). Typical Value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.2. Default: 0.0 + :xl: Reactance associated with potential source (X). Typical Value = 0.081. Default: 0.0 + :vbmax: Maximum excitation voltage (V). Typical Value = 6.9. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (V). Typical Value = 5.8. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + ka=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + km=0.0, + tm=0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.ka = ka + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.km = km + self.tm = tm + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + + def __str__(self): + str = "class=ExcIEEEST3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py new file mode 100644 index 00000000..bc8d3daf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST4B.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST4B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST4B model. This model is a variation of the Type ST3A model, with a proportional plus integral (PI) regulator block replacing the lag-lead regulator characteristic that is in the ST3A model. Both potential and compound source rectifier excitation systems are modeled. The PI regulator blocks have non-windup limits that are represented. The voltage regulator of this model is typically implemented digitally. Reference: IEEE Standard 421.5-2005 Section 7.4. + + :kpr: Voltage regulator proportional gain (K). Typical Value = 10.75. Default: 0.0 + :kir: Voltage regulator integral gain (K). Typical Value = 10.75. Default: 0.0 + :ta: Voltage regulator time constant (T). Typical Value = 0.02. Default: 0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -0.87. Default: 0.0 + :kpm: Voltage regulator proportional gain output (K). Typical Value = 1. Default: 0.0 + :kim: Voltage regulator integral gain output (K). Typical Value = 0. Default: 0.0 + :vmmax: Maximum inner loop output (V). Typical Value = 99. Default: 0.0 + :vmmin: Minimum inner loop output (V). Typical Value = -99. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 0. Default: 0.0 + :kp: Potential circuit gain coefficient (K). Typical Value = 9.3. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (K). Typical Value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (K). Typical Value = 0.113. Default: 0.0 + :xl: Reactance associated with potential source (X). Typical Value = 0.124. Default: 0.0 + :vbmax: Maximum excitation voltage (V). Typical Value = 11.63. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpm": [ + cgmesProfile.DY.value, + ], + "kim": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kpm=0.0, + kim=0.0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kpm = kpm + self.kim = kim + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + + def __str__(self): + str = "class=ExcIEEEST4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py new file mode 100644 index 00000000..22b196df --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST5B.py @@ -0,0 +1,140 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST5B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST5B model. The Type ST5B excitation system is a variation of the Type ST1A model, with alternative overexcitation and underexcitation inputs and additional limits. Reference: IEEE Standard 421.5-2005 Section 7.5. Note: the block diagram in the IEEE 421.5 standard has input signal Vc and does not indicate the summation point with Vref. The implementation of the ExcIEEEST5B shall consider summation point with Vref. + + :kr: Regulator gain (K). Typical Value = 200. Default: 0.0 + :t1: Firing circuit time constant (T1). Typical Value = 0.004. Default: 0 + :kc: Rectifier regulation factor (K). Typical Value = 0.004. Default: 0.0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -4. Default: 0.0 + :tc1: Regulator lead time constant (T). Typical Value = 0.8. Default: 0 + :tb1: Regulator lag time constant (T). Typical Value = 6. Default: 0 + :tc2: Regulator lead time constant (T). Typical Value = 0.08. Default: 0 + :tb2: Regulator lag time constant (T). Typical Value = 0.01. Default: 0 + :toc1: OEL lead time constant (T). Typical Value = 0.1. Default: 0 + :tob1: OEL lag time constant (T). Typical Value = 2. Default: 0 + :toc2: OEL lead time constant (T). Typical Value = 0.08. Default: 0 + :tob2: OEL lag time constant (T). Typical Value = 0.08. Default: 0 + :tuc1: UEL lead time constant (T). Typical Value = 2. Default: 0 + :tub1: UEL lag time constant (T). Typical Value = 10. Default: 0 + :tuc2: UEL lead time constant (T). Typical Value = 0.1. Default: 0 + :tub2: UEL lag time constant (T). Typical Value = 0.05. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tc2": [ + cgmesProfile.DY.value, + ], + "tb2": [ + cgmesProfile.DY.value, + ], + "toc1": [ + cgmesProfile.DY.value, + ], + "tob1": [ + cgmesProfile.DY.value, + ], + "toc2": [ + cgmesProfile.DY.value, + ], + "tob2": [ + cgmesProfile.DY.value, + ], + "tuc1": [ + cgmesProfile.DY.value, + ], + "tub1": [ + cgmesProfile.DY.value, + ], + "tuc2": [ + cgmesProfile.DY.value, + ], + "tub2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kr=0.0, + t1=0, + kc=0.0, + vrmax=0.0, + vrmin=0.0, + tc1=0, + tb1=0, + tc2=0, + tb2=0, + toc1=0, + tob1=0, + toc2=0, + tob2=0, + tuc1=0, + tub1=0, + tuc2=0, + tub2=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kr = kr + self.t1 = t1 + self.kc = kc + self.vrmax = vrmax + self.vrmin = vrmin + self.tc1 = tc1 + self.tb1 = tb1 + self.tc2 = tc2 + self.tb2 = tb2 + self.toc1 = toc1 + self.tob1 = tob1 + self.toc2 = toc2 + self.tob2 = tob2 + self.tuc1 = tuc1 + self.tub1 = tub1 + self.tuc2 = tuc2 + self.tub2 = tub2 + + def __str__(self): + str = "class=ExcIEEEST5B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py new file mode 100644 index 00000000..2ce0b468 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST6B.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST6B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST6B model. This model consists of a PI voltage regulator with an inner loop field voltage regulator and pre-control. The field voltage regulator implements a proportional control. The pre-control and the delay in the feedback circuit increase the dynamic response. Reference: IEEE Standard 421.5-2005 Section 7.6. + + :ilr: Exciter output current limit reference (I). Typical Value = 4.164. Default: 0.0 + :kci: Exciter output current limit adjustment (K). Typical Value = 1.0577. Default: 0.0 + :kff: Pre-control gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (K). Typical Value = 45.094. Default: 0.0 + :klr: Exciter output current limiter gain (K). Typical Value = 17.33. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (K). Typical Value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (K). Typical Value = 18.038. Default: 0.0 + :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None + :tg: Feedback time constant of inner loop field voltage regulator (T). Typical Value = 0.02. Default: 0 + :vamax: Maximum voltage regulator output (V). Typical Value = 4.81. Default: 0.0 + :vamin: Minimum voltage regulator output (V). Typical Value = -3.85. Default: 0.0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 4.81. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -3.85. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "kci": [ + cgmesProfile.DY.value, + ], + "kff": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + kci=0.0, + kff=0.0, + kg=0.0, + kia=0.0, + klr=0.0, + km=0.0, + kpa=0.0, + oelin=None, + tg=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.kci = kci + self.kff = kff + self.kg = kg + self.kia = kia + self.klr = klr + self.km = km + self.kpa = kpa + self.oelin = oelin + self.tg = tg + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST6B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py new file mode 100644 index 00000000..c450a503 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcIEEEST7B.py @@ -0,0 +1,128 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST7B(ExcitationSystemDynamics): + """ + The class represents IEEE Std 421.5-2005 type ST7B model. This model is representative of static potential-source excitation systems. In this system, the AVR consists of a PI voltage regulator. A phase lead-lag filter in series allows introduction of a derivative function, typically used with brushless excitation systems. In that case, the regulator is of the PID type. In addition, the terminal voltage channel includes a phase lead-lag filter. The AVR includes the appropriate inputs on its reference for overexcitation limiter (OEL1), underexcitation limiter (UEL), stator current limiter (SCL), and current compensator (DROOP). All these limitations, when they work at voltage reference level, keep the PSS (VS signal from Type PSS1A, PSS2A, or PSS2B) in operation. However, the UEL limitation can also be transferred to the high value (HV) gate acting on the output signal. In addition, the output signal passes through a low value (LV) gate for a ceiling overexcitation limiter (OEL2). Reference: IEEE Standard 421.5-2005 Section 7.7. + + :kh: High-value gate feedback gain (K). Typical Value 1. Default: 0.0 + :kia: Voltage regulator integral gain (K). Typical Value = 1. Default: 0.0 + :kl: Low-value gate feedback gain (K). Typical Value 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (K). Typical Value = 40. Default: 0.0 + :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None + :tb: Regulator lag time constant (T). Typical Value 1. Default: 0 + :tc: Regulator lead time constant (T). Typical Value 1. Default: 0 + :tf: Excitation control system stabilizer time constant (T). Typical Value 1. Default: 0 + :tg: Feedback time constant of inner loop field voltage regulator (T). Typical Value 1. Default: 0 + :tia: Feedback time constant (T). Typical Value = 3. Default: 0 + :uelin: UEL input selector (UELin). Typical Value = noUELinput. Default: None + :vmax: Maximum voltage reference signal (V). Typical Value = 1.1. Default: 0.0 + :vmin: Minimum voltage reference signal (V). Typical Value = 0.9. Default: 0.0 + :vrmax: Maximum voltage regulator output (V). Typical Value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (V). Typical Value = -4.5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tia": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kh=0.0, + kia=0.0, + kl=0.0, + kpa=0.0, + oelin=None, + tb=0, + tc=0, + tf=0, + tg=0, + tia=0, + uelin=None, + vmax=0.0, + vmin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kh = kh + self.kia = kia + self.kl = kl + self.kpa = kpa + self.oelin = oelin + self.tb = tb + self.tc = tc + self.tf = tf + self.tg = tg + self.tia = tia + self.uelin = uelin + self.vmax = vmax + self.vmin = vmin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcOEX3T.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcOEX3T.py new file mode 100644 index 00000000..c531a835 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcOEX3T.py @@ -0,0 +1,152 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcOEX3T(ExcitationSystemDynamics): + """ + Modified IEEE Type ST1 Excitation System with semi-continuous and acting terminal voltage limiter. + + :t1: Time constant (T). Default: 0 + :t2: Time constant (T). Default: 0 + :t3: Time constant (T). Default: 0 + :t4: Time constant (T). Default: 0 + :ka: Gain (K). Default: 0.0 + :t5: Time constant (T). Default: 0 + :t6: Time constant (T). Default: 0 + :vrmax: Limiter (V). Default: 0.0 + :vrmin: Limiter (V). Default: 0.0 + :te: Time constant (T). Default: 0 + :kf: Gain (K). Default: 0.0 + :tf: Time constant (T). Default: 0 + :kc: Gain (K). Default: 0.0 + :kd: Gain (K). Default: 0.0 + :ke: Gain (K). Default: 0.0 + :e1: Saturation parameter (E). Default: 0.0 + :see1: Saturation parameter (S(E)). Default: 0.0 + :e2: Saturation parameter (E). Default: 0.0 + :see2: Saturation parameter (S(E)). Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "see1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "see2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + t1=0, + t2=0, + t3=0, + t4=0, + ka=0.0, + t5=0, + t6=0, + vrmax=0.0, + vrmin=0.0, + te=0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + e1=0.0, + see1=0.0, + e2=0.0, + see2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.ka = ka + self.t5 = t5 + self.t6 = t6 + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.e1 = e1 + self.see1 = see1 + self.e2 = e2 + self.see2 = see2 + + def __str__(self): + str = "class=ExcOEX3T\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcPIC.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcPIC.py new file mode 100644 index 00000000..8af55a05 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcPIC.py @@ -0,0 +1,176 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcPIC(ExcitationSystemDynamics): + """ + Proportional/Integral Regulator Excitation System Model. This model can be used to represent excitation systems with a proportional-integral (PI) voltage regulator controller. + + :ka: PI controller gain (Ka). Typical Value = 3.15. Default: 0.0 + :ta1: PI controller time constant (Ta1). Typical Value = 1. Default: 0 + :vr1: PI maximum limit (Vr1). Typical Value = 1. Default: 0.0 + :vr2: PI minimum limit (Vr2). Typical Value = -0.87. Default: 0.0 + :ta2: Voltage regulator time constant (Ta2). Typical Value = 0.01. Default: 0 + :ta3: Lead time constant (Ta3). Typical Value = 0. Default: 0 + :ta4: Lag time constant (Ta4). Typical Value = 0. Default: 0 + :vrmax: Voltage regulator maximum limit (Vrmax). Typical Value = 1. Default: 0.0 + :vrmin: Voltage regulator minimum limit (Vrmin). Typical Value = -0.87. Default: 0.0 + :kf: Rate feedback gain (Kf). Typical Value = 0. Default: 0.0 + :tf1: Rate feedback time constant (Tf1). Typical Value = 0. Default: 0 + :tf2: Rate feedback lag time constant (Tf2). Typical Value = 0. Default: 0 + :efdmax: Exciter maximum limit (Efdmax). Typical Value = 8. Default: 0.0 + :efdmin: Exciter minimum limit (Efdmin). Typical Value = -0.87. Default: 0.0 + :ke: Exciter constant (Ke). Typical Value = 0. Default: 0.0 + :te: Exciter time constant (Te). Typical Value = 0. Default: 0 + :e1: Field voltage value 1 (E1). Typical Value = 0. Default: 0.0 + :se1: Saturation factor at E1 (Se1). Typical Value = 0. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical Value = 0. Default: 0.0 + :se2: Saturation factor at E2 (Se2). Typical Value = 0. Default: 0.0 + :kp: Potential source gain (Kp). Typical Value = 6.5. Default: 0.0 + :ki: Current source gain (Ki). Typical Value = 0. Default: 0.0 + :kc: Exciter regulation factor (Kc). Typical Value = 0.08. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta1": [ + cgmesProfile.DY.value, + ], + "vr1": [ + cgmesProfile.DY.value, + ], + "vr2": [ + cgmesProfile.DY.value, + ], + "ta2": [ + cgmesProfile.DY.value, + ], + "ta3": [ + cgmesProfile.DY.value, + ], + "ta4": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta1=0, + vr1=0.0, + vr2=0.0, + ta2=0, + ta3=0, + ta4=0, + vrmax=0.0, + vrmin=0.0, + kf=0.0, + tf1=0, + tf2=0, + efdmax=0.0, + efdmin=0.0, + ke=0.0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kp=0.0, + ki=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta1 = ta1 + self.vr1 = vr1 + self.vr2 = vr2 + self.ta2 = ta2 + self.ta3 = ta3 + self.ta4 = ta4 + self.vrmax = vrmax + self.vrmin = vrmin + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.efdmax = efdmax + self.efdmin = efdmin + self.ke = ke + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kp = kp + self.ki = ki + self.kc = kc + + def __str__(self): + str = "class=ExcPIC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXS.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXS.py new file mode 100644 index 00000000..6fd459fe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXS.py @@ -0,0 +1,254 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcREXS(ExcitationSystemDynamics): + """ + General Purpose Rotating Excitation System Model. This model can be used to represent a wide range of excitation systems whose DC power source is an AC or DC generator. It encompasses IEEE type AC1, AC2, DC1, and DC2 excitation system models. + + :e1: Field voltage value 1 (E1). Typical Value = 3. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical Value = 4. Default: 0.0 + :fbf: Rate feedback signal flag (Fbf). Typical Value = fieldCurrent. Default: None + :flimf: Limit type flag (Flimf). Typical Value = 0. Default: 0.0 + :kc: Rectifier regulation factor (Kc). Typical Value = 0.05. Default: 0.0 + :kd: Exciter regulation factor (Kd). Typical Value = 2. Default: 0.0 + :ke: Exciter field proportional constant (Ke). Typical Value = 1. Default: 0.0 + :kefd: Field voltage feedback gain (Kefd). Typical Value = 0. Default: 0.0 + :kf: Rate feedback gain (Kf). Typical Value = 0.05. Default: 0 + :kh: Field voltage controller feedback gain (Kh). Typical Value = 0. Default: 0.0 + :kii: Field Current Regulator Integral Gain (Kii). Typical Value = 0. Default: 0.0 + :kip: Field Current Regulator Proportional Gain (Kip). Typical Value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :kvi: Voltage Regulator Integral Gain (Kvi). Typical Value = 0. Default: 0.0 + :kvp: Voltage Regulator Proportional Gain (Kvp). Typical Value = 2800. Default: 0.0 + :kvphz: V/Hz limiter gain (Kvphz). Typical Value = 0. Default: 0.0 + :nvphz: Pickup speed of V/Hz limiter (Nvphz). Typical Value = 0. Default: 0.0 + :se1: Saturation factor at E1 (Se1). Typical Value = 0.0001. Default: 0.0 + :se2: Saturation factor at E2 (Se2). Typical Value = 0.001. Default: 0.0 + :ta: Voltage Regulator time constant (Ta). Typical Value = 0.01. Default: 0 + :tb1: Lag time constant (Tb1). Typical Value = 0. Default: 0 + :tb2: Lag time constant (Tb2). Typical Value = 0. Default: 0 + :tc1: Lead time constant (Tc1). Typical Value = 0. Default: 0 + :tc2: Lead time constant (Tc2). Typical Value = 0. Default: 0 + :te: Exciter field time constant (Te). Typical Value = 1.2. Default: 0 + :tf: Rate feedback time constant (Tf). Typical Value = 1. Default: 0 + :tf1: Feedback lead time constant (Tf1). Typical Value = 0. Default: 0 + :tf2: Feedback lag time constant (Tf2). Typical Value = 0. Default: 0 + :tp: Field current Bridge time constant (Tp). Typical Value = 0. Default: 0 + :vcmax: Maximum compounding voltage (Vcmax). Typical Value = 0. Default: 0.0 + :vfmax: Maximum Exciter Field Current (Vfmax). Typical Value = 47. Default: 0.0 + :vfmin: Minimum Exciter Field Current (Vfmin). Typical Value = -20. Default: 0.0 + :vimax: Voltage Regulator Input Limit (Vimax). Typical Value = 0.1. Default: 0.0 + :vrmax: Maximum controller output (Vrmax). Typical Value = 47. Default: 0.0 + :vrmin: Minimum controller output (Vrmin). Typical Value = -20. Default: 0.0 + :xc: Exciter compounding reactance (Xc). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "fbf": [ + cgmesProfile.DY.value, + ], + "flimf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kefd": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kii": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "kvi": [ + cgmesProfile.DY.value, + ], + "kvp": [ + cgmesProfile.DY.value, + ], + "kvphz": [ + cgmesProfile.DY.value, + ], + "nvphz": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tb2": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tc2": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "vcmax": [ + cgmesProfile.DY.value, + ], + "vfmax": [ + cgmesProfile.DY.value, + ], + "vfmin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + e1=0.0, + e2=0.0, + fbf=None, + flimf=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + kefd=0.0, + kf=0, + kh=0.0, + kii=0.0, + kip=0.0, + ks=0.0, + kvi=0.0, + kvp=0.0, + kvphz=0.0, + nvphz=0.0, + se1=0.0, + se2=0.0, + ta=0, + tb1=0, + tb2=0, + tc1=0, + tc2=0, + te=0, + tf=0, + tf1=0, + tf2=0, + tp=0, + vcmax=0.0, + vfmax=0.0, + vfmin=0.0, + vimax=0.0, + vrmax=0.0, + vrmin=0.0, + xc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.e1 = e1 + self.e2 = e2 + self.fbf = fbf + self.flimf = flimf + self.kc = kc + self.kd = kd + self.ke = ke + self.kefd = kefd + self.kf = kf + self.kh = kh + self.kii = kii + self.kip = kip + self.ks = ks + self.kvi = kvi + self.kvp = kvp + self.kvphz = kvphz + self.nvphz = nvphz + self.se1 = se1 + self.se2 = se2 + self.ta = ta + self.tb1 = tb1 + self.tb2 = tb2 + self.tc1 = tc1 + self.tc2 = tc2 + self.te = te + self.tf = tf + self.tf1 = tf1 + self.tf2 = tf2 + self.tp = tp + self.vcmax = vcmax + self.vfmax = vfmax + self.vfmin = vfmin + self.vimax = vimax + self.vrmax = vrmax + self.vrmin = vrmin + self.xc = xc + + def __str__(self): + str = "class=ExcREXS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py new file mode 100644 index 00000000..cd1dde70 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcREXSFeedbackSignalKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ExcREXSFeedbackSignalKind(Base): + """ + Type of rate feedback signals. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcREXSFeedbackSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcSCRX.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSCRX.py new file mode 100644 index 00000000..81fd6876 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSCRX.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSCRX(ExcitationSystemDynamics): + """ + Simple excitation system model representing generic characteristics of many excitation systems; intended for use where negative field current may be a problem. + + :tatb: Ta/Tb - gain reduction ratio of lag-lead element (TaTb). The parameter Ta is not defined explicitly. Typical Value = 0.1. Default: 0.0 + :tb: Denominator time constant of lag-lead block (Tb). Typical Value = 10. Default: 0 + :k: Gain (K) (>0). Typical Value = 200. Default: 0.0 + :te: Time constant of gain block (Te) (>0). Typical Value = 0.02. Default: 0 + :emin: Minimum field voltage output (Emin). Typical Value = 0. Default: 0.0 + :emax: Maximum field voltage output (Emax). Typical Value = 5. Default: 0.0 + :cswitch: Power source switch (Cswitch). true = fixed voltage of 1.0 PU false = generator terminal voltage. Default: False + :rcrfd: Rc/Rfd - ratio of field discharge resistance to field winding resistance (RcRfd). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tatb": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "cswitch": [ + cgmesProfile.DY.value, + ], + "rcrfd": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tatb=0.0, + tb=0, + k=0.0, + te=0, + emin=0.0, + emax=0.0, + cswitch=False, + rcrfd=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tatb = tatb + self.tb = tb + self.k = k + self.te = te + self.emin = emin + self.emax = emax + self.cswitch = cswitch + self.rcrfd = rcrfd + + def __str__(self): + str = "class=ExcSCRX\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcSEXS.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSEXS.py new file mode 100644 index 00000000..9ad01e4a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSEXS.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSEXS(ExcitationSystemDynamics): + """ + Simplified Excitation System Model. + + :tatb: Ta/Tb - gain reduction ratio of lag-lead element (TaTb). Typical Value = 0.1. Default: 0.0 + :tb: Denominator time constant of lag-lead block (Tb). Typical Value = 10. Default: 0 + :k: Gain (K) (>0). Typical Value = 100. Default: 0.0 + :te: Time constant of gain block (Te). Typical Value = 0.05. Default: 0 + :emin: Minimum field voltage output (Emin). Typical Value = -5. Default: 0.0 + :emax: Maximum field voltage output (Emax). Typical Value = 5. Default: 0.0 + :kc: PI controller gain (Kc). Typical Value = 0.08. Default: 0.0 + :tc: PI controller phase lead time constant (Tc). Typical Value = 0. Default: 0 + :efdmin: Field voltage clipping minimum limit (Efdmin). Typical Value = -5. Default: 0.0 + :efdmax: Field voltage clipping maximum limit (Efdmax). Typical Value = 5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tatb": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tatb=0.0, + tb=0, + k=0.0, + te=0, + emin=0.0, + emax=0.0, + kc=0.0, + tc=0, + efdmin=0.0, + efdmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tatb = tatb + self.tb = tb + self.k = k + self.te = te + self.emin = emin + self.emax = emax + self.kc = kc + self.tc = tc + self.efdmin = efdmin + self.efdmax = efdmax + + def __str__(self): + str = "class=ExcSEXS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcSK.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSK.py new file mode 100644 index 00000000..81696e21 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcSK.py @@ -0,0 +1,230 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSK(ExcitationSystemDynamics): + """ + Slovakian Excitation System Model. UEL and secondary voltage control are included in this model. When this model is used, there cannot be a separate underexcitation limiter or VAr controller model. + + :efdmax: Field voltage clipping limit (Efdmax). Default: 0.0 + :efdmin: Field voltage clipping limit (Efdmin). Default: 0.0 + :emax: Maximum field voltage output (Emax). Typical Value = 20. Default: 0.0 + :emin: Minimum field voltage output (Emin). Typical Value = -20. Default: 0.0 + :k: Gain (K). Typical Value = 1. Default: 0.0 + :k1: Parameter of underexcitation limit (K1). Typical Value = 0.1364. Default: 0.0 + :k2: Parameter of underexcitation limit (K2). Typical Value = -0.3861. Default: 0.0 + :kc: PI controller gain (Kc). Typical Value = 70. Default: 0.0 + :kce: Rectifier regulation factor (Kce). Typical Value = 0. Default: 0.0 + :kd: Exciter internal reactance (Kd). Typical Value = 0. Default: 0.0 + :kgob: P controller gain (Kgob). Typical Value = 10. Default: 0.0 + :kp: PI controller gain (Kp). Typical Value = 1. Default: 0.0 + :kqi: PI controller gain of integral component (Kqi). Typical Value = 0. Default: 0.0 + :kqob: Rate of rise of the reactive power (Kqob). Default: 0.0 + :kqp: PI controller gain (Kqp). Typical Value = 0. Default: 0.0 + :nq: Dead band of reactive power (nq). Determines the range of sensitivity. Typical Value = 0.001. Default: 0.0 + :qconoff: Secondary voltage control state (Qc_on_off). true = secondary voltage control is ON false = secondary voltage control is OFF. Typical Value = false. Default: False + :qz: Desired value (setpoint) of reactive power, manual setting (Qz). Default: 0.0 + :remote: Selector to apply automatic calculation in secondary controller model. true = automatic calculation is activated false = manual set is active; the use of desired value of reactive power (Qz) is required. Typical Value = true. Default: False + :sbase: Apparent power of the unit (Sbase). Unit = MVA. Typical Value = 259. Default: 0.0 + :tc: PI controller phase lead time constant (Tc). Typical Value = 8. Default: 0 + :te: Time constant of gain block (Te). Typical Value = 0.1. Default: 0 + :ti: PI controller phase lead time constant (Ti). Typical Value = 2. Default: 0 + :tp: Time constant (Tp). Typical Value = 0.1. Default: 0 + :tr: Voltage transducer time constant (Tr). Typical Value = 0.01. Default: 0 + :uimax: Maximum error (Uimax). Typical Value = 10. Default: 0.0 + :uimin: Minimum error (UImin). Typical Value = -10. Default: 0.0 + :urmax: Maximum controller output (URmax). Typical Value = 10. Default: 0.0 + :urmin: Minimum controller output (URmin). Typical Value = -10. Default: 0.0 + :vtmax: Maximum terminal voltage input (Vtmax). Determines the range of voltage dead band. Typical Value = 1.05. Default: 0.0 + :vtmin: Minimum terminal voltage input (Vtmin). Determines the range of voltage dead band. Typical Value = 0.95. Default: 0.0 + :yp: Maximum output (Yp). Minimum output = 0. Typical Value = 1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kce": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kgob": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "kqi": [ + cgmesProfile.DY.value, + ], + "kqob": [ + cgmesProfile.DY.value, + ], + "kqp": [ + cgmesProfile.DY.value, + ], + "nq": [ + cgmesProfile.DY.value, + ], + "qconoff": [ + cgmesProfile.DY.value, + ], + "qz": [ + cgmesProfile.DY.value, + ], + "remote": [ + cgmesProfile.DY.value, + ], + "sbase": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ti": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "uimax": [ + cgmesProfile.DY.value, + ], + "uimin": [ + cgmesProfile.DY.value, + ], + "urmax": [ + cgmesProfile.DY.value, + ], + "urmin": [ + cgmesProfile.DY.value, + ], + "vtmax": [ + cgmesProfile.DY.value, + ], + "vtmin": [ + cgmesProfile.DY.value, + ], + "yp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + efdmax=0.0, + efdmin=0.0, + emax=0.0, + emin=0.0, + k=0.0, + k1=0.0, + k2=0.0, + kc=0.0, + kce=0.0, + kd=0.0, + kgob=0.0, + kp=0.0, + kqi=0.0, + kqob=0.0, + kqp=0.0, + nq=0.0, + qconoff=False, + qz=0.0, + remote=False, + sbase=0.0, + tc=0, + te=0, + ti=0, + tp=0, + tr=0, + uimax=0.0, + uimin=0.0, + urmax=0.0, + urmin=0.0, + vtmax=0.0, + vtmin=0.0, + yp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efdmax = efdmax + self.efdmin = efdmin + self.emax = emax + self.emin = emin + self.k = k + self.k1 = k1 + self.k2 = k2 + self.kc = kc + self.kce = kce + self.kd = kd + self.kgob = kgob + self.kp = kp + self.kqi = kqi + self.kqob = kqob + self.kqp = kqp + self.nq = nq + self.qconoff = qconoff + self.qz = qz + self.remote = remote + self.sbase = sbase + self.tc = tc + self.te = te + self.ti = ti + self.tp = tp + self.tr = tr + self.uimax = uimax + self.uimin = uimin + self.urmax = urmax + self.urmin = urmin + self.vtmax = vtmax + self.vtmin = vtmin + self.yp = yp + + def __str__(self): + str = "class=ExcSK\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST1A.py new file mode 100644 index 00000000..0a795154 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST1A.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST1A(ExcitationSystemDynamics): + """ + Modification of an old IEEE ST1A static excitation system without overexcitation limiter (OEL) and underexcitation limiter (UEL). + + :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 999. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -999. Default: 0.0 + :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 + :tb: Voltage regulator time constant (Tb). Typical Value = 10. Default: 0 + :ka: Voltage regulator gain (Ka). Typical Value = 190. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 + :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 7.8. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -6.7. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.05. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :tc1: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 + :tb1: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :vamax: Maximum voltage regulator output (Vamax). Typical Value = 999. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin). Typical Value = -999. Default: 0.0 + :ilr: Exciter output current limit reference (Ilr). Typical Value = 0. Default: 0.0 + :klr: Exciter output current limiter gain (Klr). Typical Value = 0. Default: 0.0 + :xe: Excitation xfmr effective reactance (Xe). Typical Value = 0.04. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + kf=0.0, + tf=0, + tc1=0, + tb1=0, + vamax=0.0, + vamin=0.0, + ilr=0.0, + klr=0.0, + xe=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + self.kf = kf + self.tf = tf + self.tc1 = tc1 + self.tb1 = tb1 + self.vamax = vamax + self.vamin = vamin + self.ilr = ilr + self.klr = klr + self.xe = xe + + def __str__(self): + str = "class=ExcST1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST2A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST2A.py new file mode 100644 index 00000000..3ccb1ca2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST2A.py @@ -0,0 +1,128 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST2A(ExcitationSystemDynamics): + """ + Modified IEEE ST2A static excitation system - another lead-lag block added to match the model defined by WECC. + + :ka: Voltage regulator gain (Ka). Typical Value = 120. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.15. Default: 0 + :vrmax: Maximum voltage regulator outputs (Vrmax). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin). Typical Value = -1. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical Value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te). Typical Value = 0.5. Default: 0 + :kf: Excitation control system stabilizer gains (Kf). Typical Value = 0.05. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 0.7. Default: 0 + :kp: Potential circuit gain coefficient (Kp). Typical Value = 4.88. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki). Typical Value = 8. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 1.82. Default: 0.0 + :efdmax: Maximum field voltage (Efdmax). Typical Value = 99. Default: 0.0 + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical Value = false. Default: False + :tb: Voltage regulator time constant (Tb). Typical Value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 0. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + kc=0.0, + efdmax=0.0, + uelin=False, + tb=0, + tc=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.kc = kc + self.efdmax = efdmax + self.uelin = uelin + self.tb = tb + self.tc = tc + + def __str__(self): + str = "class=ExcST2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST3A.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST3A.py new file mode 100644 index 00000000..08e3b5a4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST3A.py @@ -0,0 +1,158 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST3A(ExcitationSystemDynamics): + """ + Modified IEEE ST3A static excitation system with added speed multiplier. + + :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 0.2. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -0.2. Default: 0.0 + :kj: AVR gain (Kj). Typical Value = 200. Default: 0.0 + :tb: Voltage regulator time constant (Tb). Typical Value = 6.67. Default: 0 + :tc: Voltage regulator time constant (Tc). Typical Value = 1. Default: 0 + :efdmax: Maximum AVR output (Efdmax). Typical Value = 6.9. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (Km). Typical Value = 7.04. Default: 0.0 + :tm: Forward time constant of inner loop field regulator (Tm). Typical Value = 1. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = 0. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 1. Default: 0.0 + :kp: Potential source gain (Kp) (>0). Typical Value = 4.37. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical Value = 20. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki). Typical Value = 4.83. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 1.1. Default: 0.0 + :xl: Reactance associated with potential source (Xl). Typical Value = 0.09. Default: 0.0 + :vbmax: Maximum excitation voltage (Vbmax). Typical Value = 8.63. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (Vgmax). Typical Value = 6.53. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical Value = 0. Default: 0.0 + :ks1: Coefficient to allow different usage of the model-speed coefficient (Ks1). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "kj": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + kj=0.0, + tb=0, + tc=0, + efdmax=0.0, + km=0.0, + tm=0, + vrmax=0.0, + vrmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + ks=0.0, + ks1=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.kj = kj + self.tb = tb + self.tc = tc + self.efdmax = efdmax + self.km = km + self.tm = tm + self.vrmax = vrmax + self.vrmin = vrmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + self.ks = ks + self.ks1 = ks1 + + def __str__(self): + str = "class=ExcST3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST4B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST4B.py new file mode 100644 index 00000000..618951c4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST4B.py @@ -0,0 +1,152 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST4B(ExcitationSystemDynamics): + """ + Modified IEEE ST4B static excitation system with maximum inner loop feedback gain . + + :kpr: Voltage regulator proportional gain (Kpr). Typical Value = 10.75. Default: 0.0 + :kir: Voltage regulator integral gain (Kir). Typical Value = 10.75. Default: 0.0 + :ta: Voltage regulator time constant (Ta). Typical Value = 0.02. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -0.87. Default: 0.0 + :kpm: Voltage regulator proportional gain output (Kpm). Typical Value = 1. Default: 0.0 + :kim: Voltage regulator integral gain output (Kim). Typical Value = 0. Default: 0.0 + :vmmax: Maximum inner loop output (Vmmax). Typical Value = 99. Default: 0.0 + :vmmin: Minimum inner loop output (Vmmin). Typical Value = -99. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 0. Default: 0.0 + :kp: Potential circuit gain coefficient (Kp). Typical Value = 9.3. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical Value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki). Typical Value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc). Typical Value = 0.113. Default: 0.0 + :xl: Reactance associated with potential source (Xl). Typical Value = 0.124. Default: 0.0 + :vbmax: Maximum excitation voltage (Vbmax). Typical Value = 11.63. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (Vgmax). Typical Value = 5.8. Default: 0.0 + :uel: Selector (Uel). true = UEL is part of block diagram false = UEL is not part of block diagram. Typical Value = false. Default: False + :lvgate: Selector (LVgate). true = LVgate is part of the block diagram false = LVgate is not part of the block diagram. Typical Value = false. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpm": [ + cgmesProfile.DY.value, + ], + "kim": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + "uel": [ + cgmesProfile.DY.value, + ], + "lvgate": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kpm=0.0, + kim=0.0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + uel=False, + lvgate=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kpm = kpm + self.kim = kim + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + self.uel = uel + self.lvgate = lvgate + + def __str__(self): + str = "class=ExcST4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6B.py new file mode 100644 index 00000000..f8c749af --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6B.py @@ -0,0 +1,176 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST6B(ExcitationSystemDynamics): + """ + Modified IEEE ST6B static excitation system with PID controller and optional inner feedbacks loop. + + :ilr: Exciter output current limit reference (Ilr). Typical Value = 4.164. Default: 0.0 + :k1: Selector (K1). true = feedback is from Ifd false = feedback is not from Ifd. Typical Value = true. Default: False + :kcl: Exciter output current limit adjustment (Kcl). Typical Value = 1.0577. Default: 0.0 + :kff: Pre-control gain constant of the inner loop field regulator (Kff). Typical Value = 1. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg). Typical Value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (Kia). Typical Value = 45.094. Default: 0.0 + :klr: Exciter output current limit adjustment (Kcl). Typical Value = 17.33. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (Km). Typical Value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (Kpa). Typical Value = 18.038. Default: 0.0 + :kvd: Voltage regulator derivative gain (Kvd). Typical Value = 0. Default: 0.0 + :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None + :tg: Feedback time constant of inner loop field voltage regulator (Tg). Typical Value = 0.02. Default: 0 + :ts: Rectifier firing time constant (Ts). Typical Value = 0. Default: 0 + :tvd: Voltage regulator derivative gain (Tvd). Typical Value = 0. Default: 0 + :vamax: Maximum voltage regulator output (Vamax). Typical Value = 4.81. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin). Typical Value = -3.85. Default: 0.0 + :vilim: Selector (Vilim). true = Vimin-Vimax limiter is active false = Vimin-Vimax limiter is not active. Typical Value = true. Default: False + :vimax: Maximum voltage regulator input limit (Vimax). Typical Value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin). Typical Value = -10. Default: 0.0 + :vmult: Selector (Vmult). true = multiply regulator output by terminal voltage false = do not multiply regulator output by terminal voltage. Typical Value = true. Default: False + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 4.81. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -3.85. Default: 0.0 + :xc: Excitation source reactance (Xc). Typical Value = 0.05. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "kcl": [ + cgmesProfile.DY.value, + ], + "kff": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "kvd": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "tvd": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vilim": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vmult": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + k1=False, + kcl=0.0, + kff=0.0, + kg=0.0, + kia=0.0, + klr=0.0, + km=0.0, + kpa=0.0, + kvd=0.0, + oelin=None, + tg=0, + ts=0, + tvd=0, + vamax=0.0, + vamin=0.0, + vilim=False, + vimax=0.0, + vimin=0.0, + vmult=False, + vrmax=0.0, + vrmin=0.0, + xc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.k1 = k1 + self.kcl = kcl + self.kff = kff + self.kg = kg + self.kia = kia + self.klr = klr + self.km = km + self.kpa = kpa + self.kvd = kvd + self.oelin = oelin + self.tg = tg + self.ts = ts + self.tvd = tvd + self.vamax = vamax + self.vamin = vamin + self.vilim = vilim + self.vimax = vimax + self.vimin = vimin + self.vmult = vmult + self.vrmax = vrmax + self.vrmin = vrmin + self.xc = xc + + def __str__(self): + str = "class=ExcST6B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py new file mode 100644 index 00000000..2bb49a8d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST6BOELselectorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ExcST6BOELselectorKind(Base): + """ + Type of connection for the OEL input used for static excitation systems type 6B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST6BOELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7B.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7B.py new file mode 100644 index 00000000..c40b1500 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7B.py @@ -0,0 +1,134 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST7B(ExcitationSystemDynamics): + """ + Modified IEEE ST7B static excitation system without stator current limiter (SCL) and current compensator (DROOP) inputs. + + :kh: High-value gate feedback gain (Kh). Typical Value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (Kia). Typical Value = 1. Default: 0.0 + :kl: Low-value gate feedback gain (Kl). Typical Value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (Kpa). Typical Value = 40. Default: 0.0 + :oelin: OEL input selector (OELin). Typical Value = noOELinput. Default: None + :tb: Regulator lag time constant (Tb). Typical Value = 1. Default: 0 + :tc: Regulator lead time constant (Tc). Typical Value = 1. Default: 0 + :tf: Excitation control system stabilizer time constant (Tf). Typical Value = 1. Default: 0 + :tg: Feedback time constant of inner loop field voltage regulator (Tg). Typical Value = 1. Default: 0 + :tia: Feedback time constant (Tia). Typical Value = 3. Default: 0 + :ts: Rectifier firing time constant (Ts). Typical Value = 0. Default: 0 + :uelin: UEL input selector (UELin). Typical Value = noUELinput. Default: None + :vmax: Maximum voltage reference signal (Vmax). Typical Value = 1.1. Default: 0.0 + :vmin: Minimum voltage reference signal (Vmin). Typical Value = 0.9. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax). Typical Value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin). Typical Value = -4.5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tia": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kh=0.0, + kia=0.0, + kl=0.0, + kpa=0.0, + oelin=None, + tb=0, + tc=0, + tf=0, + tg=0, + tia=0, + ts=0, + uelin=None, + vmax=0.0, + vmin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kh = kh + self.kia = kia + self.kl = kl + self.kpa = kpa + self.oelin = oelin + self.tb = tb + self.tc = tc + self.tf = tf + self.tg = tg + self.tia = tia + self.ts = ts + self.uelin = uelin + self.vmax = vmax + self.vmin = vmin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcST7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py new file mode 100644 index 00000000..0036bd35 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BOELselectorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ExcST7BOELselectorKind(Base): + """ + Type of connection for the OEL input used for static excitation systems type 7B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST7BOELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py new file mode 100644 index 00000000..4b0f0474 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcST7BUELselectorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ExcST7BUELselectorKind(Base): + """ + Type of connection for the UEL input used for static excitation systems type 7B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST7BUELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py new file mode 100644 index 00000000..3bd89396 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemDynamics.py @@ -0,0 +1,88 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class ExcitationSystemDynamics(DynamicsFunctionBlock): + """ + Excitation system function block whose behavior is described by reference to a standard model + + :SynchronousMachineDynamics: Synchronous machine model with which this excitation system model is associated. Default: None + :PowerSystemStabilizerDynamics: Power system stabilizer model associated with this excitation system model. Default: None + :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model associated with this excitation system model. Default: None + :VoltageCompensatorDynamics: Voltage compensator model associated with this excitation system model. Default: None + :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model associated with this excitation system model. Default: None + :UnderexcitationLimiterDynamics: Undrexcitation limiter model associated with this excitation system model. Default: None + :PFVArControllerType2Dynamics: Power Factor or VAr controller Type II model associated with this excitation system model. Default: None + :OverexcitationLimiterDynamics: Overexcitation limiter model associated with this excitation system model. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerDynamics": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorDynamics": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlDynamics": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType2Dynamics": [ + cgmesProfile.DY.value, + ], + "OverexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + PowerSystemStabilizerDynamics=None, + PFVArControllerType1Dynamics=None, + VoltageCompensatorDynamics=None, + DiscontinuousExcitationControlDynamics=None, + UnderexcitationLimiterDynamics=None, + PFVArControllerType2Dynamics=None, + OverexcitationLimiterDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + self.VoltageCompensatorDynamics = VoltageCompensatorDynamics + self.DiscontinuousExcitationControlDynamics = ( + DiscontinuousExcitationControlDynamics + ) + self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics + self.PFVArControllerType2Dynamics = PFVArControllerType2Dynamics + self.OverexcitationLimiterDynamics = OverexcitationLimiterDynamics + + def __str__(self): + str = "class=ExcitationSystemDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py new file mode 100644 index 00000000..46cdc3f6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExcitationSystemUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcitationSystemUserDefined(ExcitationSystemDynamics): + """ + Excitation system function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=ExcitationSystemUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py b/cimpy_3/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py new file mode 100644 index 00000000..4278417c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ExternalNetworkInjection.py @@ -0,0 +1,147 @@ +from cimpy.cgmes_v2_4_15.RegulatingCondEq import RegulatingCondEq + + +class ExternalNetworkInjection(RegulatingCondEq): + """ + This class represents external network and it is used for IEC 60909 calculations. + + :governorSCD: Power Frequency Bias. This is the change in power injection divided by the change in frequency and negated. A positive value of the power frequency bias provides additional power injection upon a drop in frequency. Default: 0.0 + :maxP: Maximum active power of the injection. Default: 0.0 + :maxQ: Not for short circuit modelling; It is used for modelling of infeed for load flow exchange. If maxQ and minQ are not used ReactiveCapabilityCurve can be used Default: 0.0 + :minP: Minimum active power of the injection. Default: 0.0 + :minQ: Not for short circuit modelling; It is used for modelling of infeed for load flow exchange. If maxQ and minQ are not used ReactiveCapabilityCurve can be used Default: 0.0 + :ikSecond: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik"). Default: False + :maxInitialSymShCCurrent: Maximum initial symmetrical short-circuit currents (Ik" max) in A (Ik" = Sk"/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :maxR0ToX0Ratio: Maximum ratio of zero sequence resistance of Network Feeder to its zero sequence reactance (R(0)/X(0) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :maxR1ToX1Ratio: Maximum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :maxZ0ToZ1Ratio: Maximum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) max). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :minInitialSymShCCurrent: Minimum initial symmetrical short-circuit currents (Ik" min) in A (Ik" = Sk"/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :minR0ToX0Ratio: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik"). Used for short circuit data exchange according to IEC 6090 Default: 0.0 + :minR1ToX1Ratio: Minimum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) min). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :minZ0ToZ1Ratio: Minimum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) min). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :voltageFactor: Voltage factor in pu, which was used to calculate short-circuit current Ik" and power Sk". Default: 0.0 + :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 + :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "governorSCD": [ + cgmesProfile.EQ.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "ikSecond": [ + cgmesProfile.EQ.value, + ], + "maxInitialSymShCCurrent": [ + cgmesProfile.EQ.value, + ], + "maxR0ToX0Ratio": [ + cgmesProfile.EQ.value, + ], + "maxR1ToX1Ratio": [ + cgmesProfile.EQ.value, + ], + "maxZ0ToZ1Ratio": [ + cgmesProfile.EQ.value, + ], + "minInitialSymShCCurrent": [ + cgmesProfile.EQ.value, + ], + "minR0ToX0Ratio": [ + cgmesProfile.EQ.value, + ], + "minR1ToX1Ratio": [ + cgmesProfile.EQ.value, + ], + "minZ0ToZ1Ratio": [ + cgmesProfile.EQ.value, + ], + "voltageFactor": [ + cgmesProfile.EQ.value, + ], + "referencePriority": [ + cgmesProfile.SSH.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + governorSCD=0.0, + maxP=0.0, + maxQ=0.0, + minP=0.0, + minQ=0.0, + ikSecond=False, + maxInitialSymShCCurrent=0.0, + maxR0ToX0Ratio=0.0, + maxR1ToX1Ratio=0.0, + maxZ0ToZ1Ratio=0.0, + minInitialSymShCCurrent=0.0, + minR0ToX0Ratio=0.0, + minR1ToX1Ratio=0.0, + minZ0ToZ1Ratio=0.0, + voltageFactor=0.0, + referencePriority=0, + p=0.0, + q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.governorSCD = governorSCD + self.maxP = maxP + self.maxQ = maxQ + self.minP = minP + self.minQ = minQ + self.ikSecond = ikSecond + self.maxInitialSymShCCurrent = maxInitialSymShCCurrent + self.maxR0ToX0Ratio = maxR0ToX0Ratio + self.maxR1ToX1Ratio = maxR1ToX1Ratio + self.maxZ0ToZ1Ratio = maxZ0ToZ1Ratio + self.minInitialSymShCCurrent = minInitialSymShCCurrent + self.minR0ToX0Ratio = minR0ToX0Ratio + self.minR1ToX1Ratio = minR1ToX1Ratio + self.minZ0ToZ1Ratio = minZ0ToZ1Ratio + self.voltageFactor = voltageFactor + self.referencePriority = referencePriority + self.p = p + self.q = q + + def __str__(self): + str = "class=ExternalNetworkInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Float.py b/cimpy_3/cimpy/cgmes_v2_4_15/Float.py new file mode 100644 index 00000000..c9a03ec4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Float.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Float(Base): + """ + A floating point number. The range is unspecified and not limited. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Float\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/FossilFuel.py b/cimpy_3/cimpy/cgmes_v2_4_15/FossilFuel.py new file mode 100644 index 00000000..a8b48a4b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/FossilFuel.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class FossilFuel(IdentifiedObject): + """ + The fossil fuel consumed by the non-nuclear thermal generating unit. For example, coal, oil, gas, etc. This a the specific fuels that the generating unit can consume. + + :fossilFuelType: The type of fossil fuel, such as coal, oil, or gas. Default: None + :ThermalGeneratingUnit: A thermal generating unit may have one or more fossil fuels. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "fossilFuelType": [ + cgmesProfile.EQ.value, + ], + "ThermalGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, fossilFuelType=None, ThermalGeneratingUnit=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.fossilFuelType = fossilFuelType + self.ThermalGeneratingUnit = ThermalGeneratingUnit + + def __str__(self): + str = "class=FossilFuel\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py new file mode 100644 index 00000000..09d25062 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/FrancisGovernorControlKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class FrancisGovernorControlKind(Base): + """ + Governor control flag for Francis hydro model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=FrancisGovernorControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Frequency.py b/cimpy_3/cimpy/cgmes_v2_4_15/Frequency.py new file mode 100644 index 00000000..668f6c8a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Frequency.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Frequency(Base): + """ + Cycles per second. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Frequency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/FuelType.py b/cimpy_3/cimpy/cgmes_v2_4_15/FuelType.py new file mode 100644 index 00000000..b7f3d6e2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/FuelType.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class FuelType(Base): + """ + Type of fuel. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=FuelType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py b/cimpy_3/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py new file mode 100644 index 00000000..c7cec2fb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GenICompensationForGenJ.py @@ -0,0 +1,62 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class GenICompensationForGenJ(IdentifiedObject): + """ + This class provides the resistive and reactive components of compensation for the generator associated with the IEEE Type 2 voltage compensator for current flow out of one of the other generators in the interconnection. + + :SynchronousMachineDynamics: Standard synchronous machine out of which current flow is being compensated for. Default: None + :VcompIEEEType2: The standard IEEE Type 2 voltage compensator of this compensation. Default: None + :rcij: Default: 0.0 + :xcij: Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "VcompIEEEType2": [ + cgmesProfile.DY.value, + ], + "rcij": [ + cgmesProfile.DY.value, + ], + "xcij": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + VcompIEEEType2=None, + rcij=0.0, + xcij=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.VcompIEEEType2 = VcompIEEEType2 + self.rcij = rcij + self.xcij = xcij + + def __str__(self): + str = "class=GenICompensationForGenJ\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/GeneratingUnit.py new file mode 100644 index 00000000..1676c436 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GeneratingUnit.py @@ -0,0 +1,144 @@ +from cimpy.cgmes_v2_4_15.Equipment import Equipment + + +class GeneratingUnit(Equipment): + """ + A single or set of synchronous machines for converting mechanical power into alternating-current power. For example, individual machines within a set may be defined for scheduling purposes while a single control signal is derived for the set. In this case there would be a GeneratingUnit for each member of the set and an additional GeneratingUnit corresponding to the set. + + :genControlSource: The source of controls for a generating unit. Default: None + :governorSCD: Governor Speed Changer Droop. This is the change in generator power output divided by the change in frequency normalized by the nominal power of the generator and the nominal frequency and expressed in percent and negated. A positive value of speed change droop provides additional generator output upon a drop in frequency. Default: 0.0 + :initialP: Default initial active power which is used to store a powerflow result for the initial active power for this unit in this network configuration. Default: 0.0 + :longPF: Generating unit long term economic participation factor. Default: 0.0 + :maximumAllowableSpinningReserve: Maximum allowable spinning reserve. Spinning reserve will never be considered greater than this value regardless of the current operating point. Default: 0.0 + :maxOperatingP: This is the maximum operating active power limit the dispatcher can enter for this unit. Default: 0.0 + :minOperatingP: This is the minimum operating active power limit the dispatcher can enter for this unit. Default: 0.0 + :nominalP: The nominal power of the generating unit. Used to give precise meaning to percentage based attributes such as the governor speed change droop (governorSCD attribute). The attribute shall be a positive value equal or less than RotatingMachine.ratedS. Default: 0.0 + :ratedGrossMaxP: The unit's gross rated maximum capacity (book value). Default: 0.0 + :ratedGrossMinP: The gross rated minimum generation level which the unit can safely operate at while delivering power to the transmission grid. Default: 0.0 + :ratedNetMaxP: The net rated maximum capacity determined by subtracting the auxiliary power used to operate the internal plant machinery from the rated gross maximum capacity. Default: 0.0 + :shortPF: Generating unit short term economic participation factor. Default: 0.0 + :startupCost: The initial startup cost incurred for each start of the GeneratingUnit. Default: 0.0 + :variableCost: The variable cost component of production per unit of ActivePower. Default: 0.0 + :totalEfficiency: The efficiency of the unit in converting the fuel into electrical energy. Default: 0.0 + :ControlAreaGeneratingUnit: ControlArea specifications for this generating unit. Default: "list" + :RotatingMachine: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: "list" + :normalPF: Generating unit economic participation factor. Default: 0.0 + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "genControlSource": [ + cgmesProfile.EQ.value, + ], + "governorSCD": [ + cgmesProfile.EQ.value, + ], + "initialP": [ + cgmesProfile.EQ.value, + ], + "longPF": [ + cgmesProfile.EQ.value, + ], + "maximumAllowableSpinningReserve": [ + cgmesProfile.EQ.value, + ], + "maxOperatingP": [ + cgmesProfile.EQ.value, + ], + "minOperatingP": [ + cgmesProfile.EQ.value, + ], + "nominalP": [ + cgmesProfile.EQ.value, + ], + "ratedGrossMaxP": [ + cgmesProfile.EQ.value, + ], + "ratedGrossMinP": [ + cgmesProfile.EQ.value, + ], + "ratedNetMaxP": [ + cgmesProfile.EQ.value, + ], + "shortPF": [ + cgmesProfile.EQ.value, + ], + "startupCost": [ + cgmesProfile.EQ.value, + ], + "variableCost": [ + cgmesProfile.EQ.value, + ], + "totalEfficiency": [ + cgmesProfile.EQ.value, + ], + "ControlAreaGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "RotatingMachine": [ + cgmesProfile.EQ.value, + ], + "normalPF": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__( + self, + genControlSource=None, + governorSCD=0.0, + initialP=0.0, + longPF=0.0, + maximumAllowableSpinningReserve=0.0, + maxOperatingP=0.0, + minOperatingP=0.0, + nominalP=0.0, + ratedGrossMaxP=0.0, + ratedGrossMinP=0.0, + ratedNetMaxP=0.0, + shortPF=0.0, + startupCost=0.0, + variableCost=0.0, + totalEfficiency=0.0, + ControlAreaGeneratingUnit="list", + RotatingMachine="list", + normalPF=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.genControlSource = genControlSource + self.governorSCD = governorSCD + self.initialP = initialP + self.longPF = longPF + self.maximumAllowableSpinningReserve = maximumAllowableSpinningReserve + self.maxOperatingP = maxOperatingP + self.minOperatingP = minOperatingP + self.nominalP = nominalP + self.ratedGrossMaxP = ratedGrossMaxP + self.ratedGrossMinP = ratedGrossMinP + self.ratedNetMaxP = ratedNetMaxP + self.shortPF = shortPF + self.startupCost = startupCost + self.variableCost = variableCost + self.totalEfficiency = totalEfficiency + self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit + self.RotatingMachine = RotatingMachine + self.normalPF = normalPF + + def __str__(self): + str = "class=GeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GeneratorControlSource.py b/cimpy_3/cimpy/cgmes_v2_4_15/GeneratorControlSource.py new file mode 100644 index 00000000..19e3e907 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GeneratorControlSource.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class GeneratorControlSource(Base): + """ + The source of controls for a generating unit. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=GeneratorControlSource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py new file mode 100644 index 00000000..deaf07b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GenericNonLinearLoadModelKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class GenericNonLinearLoadModelKind(Base): + """ + Type of generic non-linear load model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=GenericNonLinearLoadModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py new file mode 100644 index 00000000..67c6a122 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class GeographicalLocationVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/GeographicalLocation/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "baseUML": [ + cgmesProfile.GL.value, + ], + "baseURI": [ + cgmesProfile.GL.value, + ], + "date": [ + cgmesProfile.GL.value, + ], + "differenceModelURI": [ + cgmesProfile.GL.value, + ], + "entsoeUML": [ + cgmesProfile.GL.value, + ], + "entsoeURI": [ + cgmesProfile.GL.value, + ], + "modelDescriptionURI": [ + cgmesProfile.GL.value, + ], + "namespaceRDF": [ + cgmesProfile.GL.value, + ], + "namespaceUML": [ + cgmesProfile.GL.value, + ], + "shortName": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=GeographicalLocationVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalRegion.py b/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalRegion.py new file mode 100644 index 00000000..8597b188 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GeographicalRegion.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class GeographicalRegion(IdentifiedObject): + """ + A geographical region of a power system network model. + + :Regions: All sub-geograhpical regions within this geographical region. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Regions": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, Regions="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Regions = Regions + + def __str__(self): + str = "class=GeographicalRegion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovCT1.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovCT1.py new file mode 100644 index 00000000..e8131f07 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovCT1.py @@ -0,0 +1,248 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovCT1(TurbineGovernorDynamics): + """ + General model for any prime mover with a PID governor, used primarily for combustion turbine and combined cycle units. This model can be used to represent a variety of prime movers controlled by PID governors. It is suitable, for example, for representation of Additional information on this model is available in the 2012 IEEE report, , section 3.1.2.3 page 3-4 (GGOV1). + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 + :rselect: Feedback signal for droop (Rselect). Typical Value = electricalPower. Default: None + :tpelec: Electrical power transducer time constant (Tpelec) (>0). Typical Value = 1. Default: 0 + :maxerr: Maximum value for speed error signal (maxerr). Typical Value = 0.05. Default: 0.0 + :minerr: Minimum value for speed error signal (minerr). Typical Value = -0.05. Default: 0.0 + :kpgov: Governor proportional gain (Kpgov). Typical Value = 10. Default: 0.0 + :kigov: Governor integral gain (Kigov). Typical Value = 2. Default: 0.0 + :kdgov: Governor derivative gain (Kdgov). Typical Value = 0. Default: 0.0 + :tdgov: Governor derivative controller time constant (Tdgov). Typical Value = 1. Default: 0 + :vmax: Maximum valve position limit (Vmax). Typical Value = 1. Default: 0.0 + :vmin: Minimum valve position limit (Vmin). Typical Value = 0.15. Default: 0.0 + :tact: Actuator time constant (Tact). Typical Value = 0.5. Default: 0 + :kturb: Turbine gain (Kturb) (>0). Typical Value = 1.5. Default: 0.0 + :wfnl: No load fuel flow (Wfnl). Typical Value = 0.2. Default: 0.0 + :tb: Turbine lag time constant (Tb) (>0). Typical Value = 0.5. Default: 0 + :tc: Turbine lead time constant (Tc). Typical Value = 0. Default: 0 + :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical Value = true. Default: False + :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical Value = 0. Default: 0 + :tfload: Load Limiter time constant (Tfload) (>0). Typical Value = 3. Default: 0 + :kpload: Load limiter proportional gain for PI controller (Kpload). Typical Value = 2. Default: 0.0 + :kiload: Load limiter integral gain for PI controller (Kiload). Typical Value = 0.67. Default: 0.0 + :ldref: Load limiter reference value (Ldref). Typical Value = 1. Default: 0.0 + :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical Value = 0. Default: 0.0 + :ropen: Maximum valve opening rate (Ropen). Unit = PU/sec. Typical Value = 0.10. Default: 0.0 + :rclose: Minimum valve closing rate (Rclose). Unit = PU/sec. Typical Value = -0.1. Default: 0.0 + :kimw: Power controller (reset) gain (Kimw). The default value of 0.01 corresponds to a reset time of 100 seconds. A value of 0.001 corresponds to a relatively slow acting load controller. Typical Value = 0.01. Default: 0.0 + :aset: Acceleration limiter setpoint (Aset). Unit = PU/sec. Typical Value = 0.01. Default: 0.0 + :ka: Acceleration limiter gain (Ka). Typical Value = 10. Default: 0.0 + :ta: Acceleration limiter time constant (Ta) (>0). Typical Value = 0.1. Default: 0 + :db: Speed governor dead band in per unit speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical Value = 0. Default: 0.0 + :tsa: Temperature detection lead time constant (Tsa). Typical Value = 4. Default: 0 + :tsb: Temperature detection lag time constant (Tsb). Typical Value = 5. Default: 0 + :rup: Maximum rate of load limit increase (Rup). Typical Value = 99. Default: 0.0 + :rdown: Maximum rate of load limit decrease (Rdown). Typical Value = -99. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "rselect": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "maxerr": [ + cgmesProfile.DY.value, + ], + "minerr": [ + cgmesProfile.DY.value, + ], + "kpgov": [ + cgmesProfile.DY.value, + ], + "kigov": [ + cgmesProfile.DY.value, + ], + "kdgov": [ + cgmesProfile.DY.value, + ], + "tdgov": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "tact": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "wfnl": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "wfspd": [ + cgmesProfile.DY.value, + ], + "teng": [ + cgmesProfile.DY.value, + ], + "tfload": [ + cgmesProfile.DY.value, + ], + "kpload": [ + cgmesProfile.DY.value, + ], + "kiload": [ + cgmesProfile.DY.value, + ], + "ldref": [ + cgmesProfile.DY.value, + ], + "dm": [ + cgmesProfile.DY.value, + ], + "ropen": [ + cgmesProfile.DY.value, + ], + "rclose": [ + cgmesProfile.DY.value, + ], + "kimw": [ + cgmesProfile.DY.value, + ], + "aset": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "tsa": [ + cgmesProfile.DY.value, + ], + "tsb": [ + cgmesProfile.DY.value, + ], + "rup": [ + cgmesProfile.DY.value, + ], + "rdown": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + rselect=None, + tpelec=0, + maxerr=0.0, + minerr=0.0, + kpgov=0.0, + kigov=0.0, + kdgov=0.0, + tdgov=0, + vmax=0.0, + vmin=0.0, + tact=0, + kturb=0.0, + wfnl=0.0, + tb=0, + tc=0, + wfspd=False, + teng=0, + tfload=0, + kpload=0.0, + kiload=0.0, + ldref=0.0, + dm=0.0, + ropen=0.0, + rclose=0.0, + kimw=0.0, + aset=0.0, + ka=0.0, + ta=0, + db=0.0, + tsa=0, + tsb=0, + rup=0.0, + rdown=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.rselect = rselect + self.tpelec = tpelec + self.maxerr = maxerr + self.minerr = minerr + self.kpgov = kpgov + self.kigov = kigov + self.kdgov = kdgov + self.tdgov = tdgov + self.vmax = vmax + self.vmin = vmin + self.tact = tact + self.kturb = kturb + self.wfnl = wfnl + self.tb = tb + self.tc = tc + self.wfspd = wfspd + self.teng = teng + self.tfload = tfload + self.kpload = kpload + self.kiload = kiload + self.ldref = ldref + self.dm = dm + self.ropen = ropen + self.rclose = rclose + self.kimw = kimw + self.aset = aset + self.ka = ka + self.ta = ta + self.db = db + self.tsa = tsa + self.tsb = tsb + self.rup = rup + self.rdown = rdown + + def __str__(self): + str = "class=GovCT1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovCT2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovCT2.py new file mode 100644 index 00000000..e0294127 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovCT2.py @@ -0,0 +1,374 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovCT2(TurbineGovernorDynamics): + """ + General governor model with frequency-dependent fuel flow limit. This model is a modification of the GovCT1model in order to represent the frequency-dependent fuel flow limit of a specific gas turbine manufacturer. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical Value = 0.05. Default: 0.0 + :rselect: Feedback signal for droop (Rselect). Typical Value = electricalPower. Default: None + :tpelec: Electrical power transducer time constant (Tpelec). Typical Value = 2.5. Default: 0 + :maxerr: Maximum value for speed error signal (Maxerr). Typical Value = 1. Default: 0.0 + :minerr: Minimum value for speed error signal (Minerr). Typical Value = -1. Default: 0.0 + :kpgov: Governor proportional gain (Kpgov). Typical Value = 4. Default: 0.0 + :kigov: Governor integral gain (Kigov). Typical Value = 0.45. Default: 0.0 + :kdgov: Governor derivative gain (Kdgov). Typical Value = 0. Default: 0.0 + :tdgov: Governor derivative controller time constant (Tdgov). Typical Value = 1. Default: 0 + :vmax: Maximum valve position limit (Vmax). Typical Value = 1. Default: 0.0 + :vmin: Minimum valve position limit (Vmin). Typical Value = 0.175. Default: 0.0 + :tact: Actuator time constant (Tact). Typical Value = 0.4. Default: 0 + :kturb: Turbine gain (Kturb). Typical Value = 1.9168. Default: 0.0 + :wfnl: No load fuel flow (Wfnl). Typical Value = 0.187. Default: 0.0 + :tb: Turbine lag time constant (Tb). Typical Value = 0.1. Default: 0 + :tc: Turbine lead time constant (Tc). Typical Value = 0. Default: 0 + :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical Value = false. Default: False + :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical Value = 0. Default: 0 + :tfload: Load Limiter time constant (Tfload). Typical Value = 3. Default: 0 + :kpload: Load limiter proportional gain for PI controller (Kpload). Typical Value = 1. Default: 0.0 + :kiload: Load limiter integral gain for PI controller (Kiload). Typical Value = 1. Default: 0.0 + :ldref: Load limiter reference value (Ldref). Typical Value = 1. Default: 0.0 + :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical Value = 0. Default: 0.0 + :ropen: Maximum valve opening rate (Ropen). Unit = PU/sec. Typical Value = 99. Default: 0.0 + :rclose: Minimum valve closing rate (Rclose). Unit = PU/sec. Typical Value = -99. Default: 0.0 + :kimw: Power controller (reset) gain (Kimw). The default value of 0.01 corresponds to a reset time of 100 seconds. A value of 0.001 corresponds to a relatively slow acting load controller. Typical Value = 0. Default: 0.0 + :aset: Acceleration limiter setpoint (Aset). Unit = PU/sec. Typical Value = 10. Default: 0.0 + :ka: Acceleration limiter Gain (Ka). Typical Value = 10. Default: 0.0 + :ta: Acceleration limiter time constant (Ta). Typical Value = 1. Default: 0 + :db: Speed governor dead band in per unit speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical Value = 0. Default: 0.0 + :tsa: Temperature detection lead time constant (Tsa). Typical Value = 0. Default: 0 + :tsb: Temperature detection lag time constant (Tsb). Typical Value = 50. Default: 0 + :rup: Maximum rate of load limit increase (Rup). Typical Value = 99. Default: 0.0 + :rdown: Maximum rate of load limit decrease (Rdown). Typical Value = -99. Default: 0.0 + :prate: Ramp rate for frequency-dependent power limit (Prate). Typical Value = 0.017. Default: 0.0 + :flim1: Frequency threshold 1 (Flim1). Unit = Hz. Typical Value = 59. Default: 0.0 + :plim1: Power limit 1 (Plim1). Typical Value = 0.8325. Default: 0.0 + :flim2: Frequency threshold 2 (Flim2). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim2: Power limit 2 (Plim2). Typical Value = 0. Default: 0.0 + :flim3: Frequency threshold 3 (Flim3). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim3: Power limit 3 (Plim3). Typical Value = 0. Default: 0.0 + :flim4: Frequency threshold 4 (Flim4). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim4: Power limit 4 (Plim4). Typical Value = 0. Default: 0.0 + :flim5: Frequency threshold 5 (Flim5). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim5: Power limit 5 (Plim5). Typical Value = 0. Default: 0.0 + :flim6: Frequency threshold 6 (Flim6). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim6: Power limit 6 (Plim6). Typical Value = 0. Default: 0.0 + :flim7: Frequency threshold 7 (Flim7). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim7: Power limit 7 (Plim7). Typical Value = 0. Default: 0.0 + :flim8: Frequency threshold 8 (Flim8). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim8: Power limit 8 (Plim8). Typical Value = 0. Default: 0.0 + :flim9: Frequency threshold 9 (Flim9). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim9: Power Limit 9 (Plim9). Typical Value = 0. Default: 0.0 + :flim10: Frequency threshold 10 (Flim10). Unit = Hz. Typical Value = 0. Default: 0.0 + :plim10: Power limit 10 (Plim10). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "rselect": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "maxerr": [ + cgmesProfile.DY.value, + ], + "minerr": [ + cgmesProfile.DY.value, + ], + "kpgov": [ + cgmesProfile.DY.value, + ], + "kigov": [ + cgmesProfile.DY.value, + ], + "kdgov": [ + cgmesProfile.DY.value, + ], + "tdgov": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "tact": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "wfnl": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "wfspd": [ + cgmesProfile.DY.value, + ], + "teng": [ + cgmesProfile.DY.value, + ], + "tfload": [ + cgmesProfile.DY.value, + ], + "kpload": [ + cgmesProfile.DY.value, + ], + "kiload": [ + cgmesProfile.DY.value, + ], + "ldref": [ + cgmesProfile.DY.value, + ], + "dm": [ + cgmesProfile.DY.value, + ], + "ropen": [ + cgmesProfile.DY.value, + ], + "rclose": [ + cgmesProfile.DY.value, + ], + "kimw": [ + cgmesProfile.DY.value, + ], + "aset": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "tsa": [ + cgmesProfile.DY.value, + ], + "tsb": [ + cgmesProfile.DY.value, + ], + "rup": [ + cgmesProfile.DY.value, + ], + "rdown": [ + cgmesProfile.DY.value, + ], + "prate": [ + cgmesProfile.DY.value, + ], + "flim1": [ + cgmesProfile.DY.value, + ], + "plim1": [ + cgmesProfile.DY.value, + ], + "flim2": [ + cgmesProfile.DY.value, + ], + "plim2": [ + cgmesProfile.DY.value, + ], + "flim3": [ + cgmesProfile.DY.value, + ], + "plim3": [ + cgmesProfile.DY.value, + ], + "flim4": [ + cgmesProfile.DY.value, + ], + "plim4": [ + cgmesProfile.DY.value, + ], + "flim5": [ + cgmesProfile.DY.value, + ], + "plim5": [ + cgmesProfile.DY.value, + ], + "flim6": [ + cgmesProfile.DY.value, + ], + "plim6": [ + cgmesProfile.DY.value, + ], + "flim7": [ + cgmesProfile.DY.value, + ], + "plim7": [ + cgmesProfile.DY.value, + ], + "flim8": [ + cgmesProfile.DY.value, + ], + "plim8": [ + cgmesProfile.DY.value, + ], + "flim9": [ + cgmesProfile.DY.value, + ], + "plim9": [ + cgmesProfile.DY.value, + ], + "flim10": [ + cgmesProfile.DY.value, + ], + "plim10": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + rselect=None, + tpelec=0, + maxerr=0.0, + minerr=0.0, + kpgov=0.0, + kigov=0.0, + kdgov=0.0, + tdgov=0, + vmax=0.0, + vmin=0.0, + tact=0, + kturb=0.0, + wfnl=0.0, + tb=0, + tc=0, + wfspd=False, + teng=0, + tfload=0, + kpload=0.0, + kiload=0.0, + ldref=0.0, + dm=0.0, + ropen=0.0, + rclose=0.0, + kimw=0.0, + aset=0.0, + ka=0.0, + ta=0, + db=0.0, + tsa=0, + tsb=0, + rup=0.0, + rdown=0.0, + prate=0.0, + flim1=0.0, + plim1=0.0, + flim2=0.0, + plim2=0.0, + flim3=0.0, + plim3=0.0, + flim4=0.0, + plim4=0.0, + flim5=0.0, + plim5=0.0, + flim6=0.0, + plim6=0.0, + flim7=0.0, + plim7=0.0, + flim8=0.0, + plim8=0.0, + flim9=0.0, + plim9=0.0, + flim10=0.0, + plim10=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.rselect = rselect + self.tpelec = tpelec + self.maxerr = maxerr + self.minerr = minerr + self.kpgov = kpgov + self.kigov = kigov + self.kdgov = kdgov + self.tdgov = tdgov + self.vmax = vmax + self.vmin = vmin + self.tact = tact + self.kturb = kturb + self.wfnl = wfnl + self.tb = tb + self.tc = tc + self.wfspd = wfspd + self.teng = teng + self.tfload = tfload + self.kpload = kpload + self.kiload = kiload + self.ldref = ldref + self.dm = dm + self.ropen = ropen + self.rclose = rclose + self.kimw = kimw + self.aset = aset + self.ka = ka + self.ta = ta + self.db = db + self.tsa = tsa + self.tsb = tsb + self.rup = rup + self.rdown = rdown + self.prate = prate + self.flim1 = flim1 + self.plim1 = plim1 + self.flim2 = flim2 + self.plim2 = plim2 + self.flim3 = flim3 + self.plim3 = plim3 + self.flim4 = flim4 + self.plim4 = plim4 + self.flim5 = flim5 + self.plim5 = plim5 + self.flim6 = flim6 + self.plim6 = plim6 + self.flim7 = flim7 + self.plim7 = plim7 + self.flim8 = flim8 + self.plim8 = plim8 + self.flim9 = flim9 + self.plim9 = plim9 + self.flim10 = flim10 + self.plim10 = plim10 + + def __str__(self): + str = "class=GovCT2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST.py new file mode 100644 index 00000000..48b4dd71 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST(TurbineGovernorDynamics): + """ + Single shaft gas turbine. + + :mwbase: Base for power values (MWbase) (> 0). Default: 0.0 + :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 + :t1: Governor mechanism time constant (T1). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical Value = 0.5. Default: 0 + :t2: Turbine power time constant (T2). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of a the free power turbine of an aero-derivative unit, for example. Typical Value = 0.5. Default: 0 + :t3: Turbine exhaust temperature time constant (T3). Typical Value = 3. Default: 0 + :at: Ambient temperature load limit (Load Limit). Typical Value = 1. Default: 0.0 + :kt: Temperature limiter gain (Kt). Typical Value = 3. Default: 0.0 + :vmax: Maximum turbine power, PU of MWbase (Vmax). Typical Value = 1. Default: 0.0 + :vmin: Minimum turbine power, PU of MWbase (Vmin). Typical Value = 0. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical Value = 0.18. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + t2=0, + t3=0, + at=0.0, + kt=0.0, + vmax=0.0, + vmin=0.0, + dturb=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.at = at + self.kt = kt + self.vmax = vmax + self.vmin = vmin + self.dturb = dturb + + def __str__(self): + str = "class=GovGAST\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST1.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST1.py new file mode 100644 index 00000000..28570af9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST1.py @@ -0,0 +1,242 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST1(TurbineGovernorDynamics): + """ + Modified single shaft gas turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical Value = 0.04. Default: 0.0 + :t1: Governor mechanism time constant (T1). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical Value = 0.5. Default: 0 + :t2: Turbine power time constant (T2). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of the free power turbine of an aero-derivative unit, for example. Typical Value = 0.5. Default: 0 + :t3: Turbine exhaust temperature time constant (T3). T3 represents delay in the exhaust temperature and load limiting system. Typical Value = 3. Default: 0 + :lmax: Ambient temperature load limit (Lmax). Lmax is the turbine power output corresponding to the limiting exhaust gas temperature. Typical Value = 1. Default: 0.0 + :kt: Temperature limiter gain (Kt). Typical Value = 3. Default: 0.0 + :vmax: Maximum turbine power, PU of MWbase (Vmax). Typical Value = 1. Default: 0.0 + :vmin: Minimum turbine power, PU of MWbase (Vmin). Typical Value = 0. Default: 0.0 + :fidle: Fuel flow at zero power output (Fidle). Typical Value = 0.18. Default: 0.0 + :rmax: Maximum fuel valve opening rate (Rmax). Unit = PU/sec. Typical Value = 1. Default: 0.0 + :loadinc: Valve position change allowed at fast rate (Loadinc). Typical Value = 0.05. Default: 0.0 + :tltr: Valve position averaging time constant (Tltr). Typical Value = 10. Default: 0 + :ltrate: Maximum long term fuel valve opening rate (Ltrate). Typical Value = 0.02. Default: 0.0 + :a: Turbine power time constant numerator scale factor (a). Typical Value = 0.8. Default: 0.0 + :b: Turbine power time constant denominator scale factor (b). Typical Value = 1. Default: 0.0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2,PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + :ka: Governor gain (Ka). Typical Value = 0. Default: 0.0 + :t4: Governor lead time constant (T4). Typical Value = 0. Default: 0 + :t5: Governor lag time constant (T5). Typical Value = 0. Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "lmax": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "fidle": [ + cgmesProfile.DY.value, + ], + "rmax": [ + cgmesProfile.DY.value, + ], + "loadinc": [ + cgmesProfile.DY.value, + ], + "tltr": [ + cgmesProfile.DY.value, + ], + "ltrate": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + t2=0, + t3=0, + lmax=0.0, + kt=0.0, + vmax=0.0, + vmin=0.0, + fidle=0.0, + rmax=0.0, + loadinc=0.0, + tltr=0, + ltrate=0.0, + a=0.0, + b=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + ka=0.0, + t4=0, + t5=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.lmax = lmax + self.kt = kt + self.vmax = vmax + self.vmin = vmin + self.fidle = fidle + self.rmax = rmax + self.loadinc = loadinc + self.tltr = tltr + self.ltrate = ltrate + self.a = a + self.b = b + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + self.ka = ka + self.t4 = t4 + self.t5 = t5 + + def __str__(self): + str = "class=GovGAST1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST2.py new file mode 100644 index 00000000..f9163706 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST2.py @@ -0,0 +1,230 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST2(TurbineGovernorDynamics): + """ + Gas turbine model. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :w: Governor gain (1/droop) on turbine rating (W). Default: 0.0 + :x: Governor lead time constant (X). Default: 0 + :y: Governor lag time constant (Y) (>0). Default: 0 + :z: Governor mode (Z). true = Droop false = ISO. Default: False + :etd: Turbine and exhaust delay (Etd). Default: 0 + :tcd: Compressor discharge time constant (Tcd). Default: 0 + :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 + :t: Fuel Control Time Constant (T). Default: 0 + :tmax: Maximum Turbine limit (Tmax). Default: 0.0 + :tmin: Minimum Turbine limit (Tmin). Default: 0.0 + :ecr: Combustion reaction time delay (Ecr). Default: 0 + :k3: Ratio of Fuel Adjustment (K3). Default: 0.0 + :a: Valve positioner (A). Default: 0.0 + :b: Valve positioner (B). Default: 0.0 + :c: Valve positioner (C). Default: 0.0 + :tf: Fuel system time constant (Tf). Default: 0 + :kf: Fuel system feedback (Kf). Default: 0.0 + :k5: Gain of radiation shield (K5). Default: 0.0 + :k4: Gain of radiation shield (K4). Default: 0.0 + :t3: Radiation shield time constant (T3). Default: 0 + :t4: Thermocouple time constant (T4). Default: 0 + :tt: Temperature controller integration rate (Tt). Default: 0 + :t5: Temperature control time constant (T5). Default: 0 + :af1: Exhaust temperature Parameter (Af1). Unit = per unit temperature. Based on temperature in degrees C. Default: 0.0 + :bf1: (Bf1). Bf1 = E(1-w) where E (speed sensitivity coefficient) is 0.55 to 0.65 x Tr. Unit = per unit temperature. Based on temperature in degrees C. Default: 0.0 + :af2: Coefficient equal to 0.5(1-speed) (Af2). Default: 0.0 + :bf2: Turbine Torque Coefficient K (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 + :cf2: Coefficient defining fuel flow where power output is 0% (Cf2). Synchronous but no output. Typically 0.23 x K (23% fuel flow). Default: 0.0 + :tr: Rated temperature (Tr). Unit = C depending on parameters Af1 and Bf1. Default: 0.0 + :k6: Minimum fuel flow (K6). Default: 0.0 + :tc: Temperature control (Tc). Unit = F or C depending on constants Af1 and Bf1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "w": [ + cgmesProfile.DY.value, + ], + "x": [ + cgmesProfile.DY.value, + ], + "y": [ + cgmesProfile.DY.value, + ], + "z": [ + cgmesProfile.DY.value, + ], + "etd": [ + cgmesProfile.DY.value, + ], + "tcd": [ + cgmesProfile.DY.value, + ], + "trate": [ + cgmesProfile.DY.value, + ], + "t": [ + cgmesProfile.DY.value, + ], + "tmax": [ + cgmesProfile.DY.value, + ], + "tmin": [ + cgmesProfile.DY.value, + ], + "ecr": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "c": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "af1": [ + cgmesProfile.DY.value, + ], + "bf1": [ + cgmesProfile.DY.value, + ], + "af2": [ + cgmesProfile.DY.value, + ], + "bf2": [ + cgmesProfile.DY.value, + ], + "cf2": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + w=0.0, + x=0, + y=0, + z=False, + etd=0, + tcd=0, + trate=0.0, + t=0, + tmax=0.0, + tmin=0.0, + ecr=0, + k3=0.0, + a=0.0, + b=0.0, + c=0.0, + tf=0, + kf=0.0, + k5=0.0, + k4=0.0, + t3=0, + t4=0, + tt=0, + t5=0, + af1=0.0, + bf1=0.0, + af2=0.0, + bf2=0.0, + cf2=0.0, + tr=0.0, + k6=0.0, + tc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.w = w + self.x = x + self.y = y + self.z = z + self.etd = etd + self.tcd = tcd + self.trate = trate + self.t = t + self.tmax = tmax + self.tmin = tmin + self.ecr = ecr + self.k3 = k3 + self.a = a + self.b = b + self.c = c + self.tf = tf + self.kf = kf + self.k5 = k5 + self.k4 = k4 + self.t3 = t3 + self.t4 = t4 + self.tt = tt + self.t5 = t5 + self.af1 = af1 + self.bf1 = bf1 + self.af2 = af2 + self.bf2 = bf2 + self.cf2 = cf2 + self.tr = tr + self.k6 = k6 + self.tc = tc + + def __str__(self): + str = "class=GovGAST2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST3.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST3.py new file mode 100644 index 00000000..d296f4f4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST3.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST3(TurbineGovernorDynamics): + """ + Generic turbogas with acceleration and temperature controller. + + :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 + :tg: Time constant of speed governor (Tg). Typical Value = 0.05. Default: 0 + :rcmx: Maximum fuel flow (RCMX). Typical Value = 1. Default: 0.0 + :rcmn: Minimum fuel flow (RCMN). Typical Value = -0.1. Default: 0.0 + :ky: Coefficient of transfer function of fuel valve positioner (Ky). Typical Value = 1. Default: 0.0 + :ty: Time constant of fuel valve positioner (Ty). Typical Value = 0.2. Default: 0 + :tac: Fuel control time constant (Tac). Typical Value = 0.1. Default: 0 + :kac: Fuel system feedback (K). Typical Value = 0. Default: 0.0 + :tc: Compressor discharge volume time constant (Tc). Typical Value = 0.2. Default: 0 + :bca: Acceleration limit set-point (Bca). Unit = 1/s. Typical Value = 0.01. Default: 0.0 + :kca: Acceleration control integral gain (Kca). Unit = 1/s. Typical Value = 100. Default: 0.0 + :dtc: Exhaust temperature variation due to fuel flow increasing from 0 to 1 PU (deltaTc). Typical Value = 390. Default: 0.0 + :ka: Minimum fuel flow (Ka). Typical Value = 0.23. Default: 0.0 + :tsi: Time constant of radiation shield (Tsi). Typical Value = 15. Default: 0 + :ksi: Gain of radiation shield (Ksi). Typical Value = 0.8. Default: 0.0 + :ttc: Time constant of thermocouple (Ttc). Typical Value = 2.5. Default: 0 + :tfen: Turbine rated exhaust temperature correspondent to Pm=1 PU (Tfen). Typical Value = 540. Default: 0.0 + :td: Temperature controller derivative gain (Td). Typical Value = 3.3. Default: 0 + :tt: Temperature controller integration rate (Tt). Typical Value = 250. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MX). Typical Value = 0.05. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MN). Typical Value = -0.05. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "rcmx": [ + cgmesProfile.DY.value, + ], + "rcmn": [ + cgmesProfile.DY.value, + ], + "ky": [ + cgmesProfile.DY.value, + ], + "ty": [ + cgmesProfile.DY.value, + ], + "tac": [ + cgmesProfile.DY.value, + ], + "kac": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "bca": [ + cgmesProfile.DY.value, + ], + "kca": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "tsi": [ + cgmesProfile.DY.value, + ], + "ksi": [ + cgmesProfile.DY.value, + ], + "ttc": [ + cgmesProfile.DY.value, + ], + "tfen": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + bp=0.0, + tg=0, + rcmx=0.0, + rcmn=0.0, + ky=0.0, + ty=0, + tac=0, + kac=0.0, + tc=0, + bca=0.0, + kca=0.0, + dtc=0.0, + ka=0.0, + tsi=0, + ksi=0.0, + ttc=0, + tfen=0.0, + td=0, + tt=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bp = bp + self.tg = tg + self.rcmx = rcmx + self.rcmn = rcmn + self.ky = ky + self.ty = ty + self.tac = tac + self.kac = kac + self.tc = tc + self.bca = bca + self.kca = kca + self.dtc = dtc + self.ka = ka + self.tsi = tsi + self.ksi = ksi + self.ttc = ttc + self.tfen = tfen + self.td = td + self.tt = tt + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovGAST3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST4.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST4.py new file mode 100644 index 00000000..23a2517a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGAST4.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST4(TurbineGovernorDynamics): + """ + Generic turbogas. + + :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 + :tv: Time constant of fuel valve positioner (T). Typical Value = 0.1. Default: 0 + :ta: Maximum gate opening velocity (T). Typical Value = 3. Default: 0 + :tc: Maximum gate closing velocity (T). Typical Value = 0.5. Default: 0 + :tcm: Fuel control time constant (T). Typical Value = 0.1. Default: 0 + :ktm: Compressor gain (K). Typical Value = 0. Default: 0.0 + :tm: Compressor discharge volume time constant (T). Typical Value = 0.2. Default: 0 + :rymx: Maximum valve opening (RYMX). Typical Value = 1.1. Default: 0.0 + :rymn: Minimum valve opening (RYMN). Typical Value = 0. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MX). Typical Value = 0.05. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MN). Typical Value = -0.05. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tcm": [ + cgmesProfile.DY.value, + ], + "ktm": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "rymx": [ + cgmesProfile.DY.value, + ], + "rymn": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + bp=0.0, + tv=0, + ta=0, + tc=0, + tcm=0, + ktm=0.0, + tm=0, + rymx=0.0, + rymn=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bp = bp + self.tv = tv + self.ta = ta + self.tc = tc + self.tcm = tcm + self.ktm = ktm + self.tm = tm + self.rymx = rymx + self.rymn = rymn + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovGAST4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovGASTWD.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovGASTWD.py new file mode 100644 index 00000000..634bb48c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovGASTWD.py @@ -0,0 +1,236 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGASTWD(TurbineGovernorDynamics): + """ + Woodward Gas turbine governor model. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :kdroop: (Kdroop). Default: 0.0 + :kp: PID Proportional gain (Kp). Default: 0.0 + :ki: Isochronous Governor Gain (Ki). Default: 0.0 + :kd: Drop Governor Gain (Kd). Default: 0.0 + :etd: Turbine and exhaust delay (Etd). Default: 0 + :tcd: Compressor discharge time constant (Tcd). Default: 0 + :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 + :t: Fuel Control Time Constant (T). Default: 0 + :tmax: Maximum Turbine limit (Tmax). Default: 0.0 + :tmin: Minimum Turbine limit (Tmin). Default: 0.0 + :ecr: Combustion reaction time delay (Ecr). Default: 0 + :k3: Ratio of Fuel Adjustment (K3). Default: 0.0 + :a: Valve positioner (). Default: 0.0 + :b: Valve positioner (). Default: 0.0 + :c: Valve positioner (). Default: 0.0 + :tf: Fuel system time constant (Tf). Default: 0 + :kf: Fuel system feedback (Kf). Default: 0.0 + :k5: Gain of radiation shield (K5). Default: 0.0 + :k4: Gain of radiation shield (K4). Default: 0.0 + :t3: Radiation shield time constant (T3). Default: 0 + :t4: Thermocouple time constant (T4). Default: 0 + :tt: Temperature controller integration rate (Tt). Default: 0 + :t5: Temperature control time constant (T5). Default: 0 + :af1: Exhaust temperature Parameter (Af1). Default: 0.0 + :bf1: (Bf1). Bf1 = E(1-w) where E (speed sensitivity coefficient) is 0.55 to 0.65 x Tr. Default: 0.0 + :af2: Coefficient equal to 0.5(1-speed) (Af2). Default: 0.0 + :bf2: Turbine Torque Coefficient K (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 + :cf2: Coefficient defining fuel flow where power output is 0% (Cf2). Synchronous but no output. Typically 0.23 x K(23% fuel flow). Default: 0.0 + :tr: Rated temperature (Tr). Default: 0.0 + :k6: Minimum fuel flow (K6). Default: 0.0 + :tc: Temperature control (Tc). Default: 0.0 + :td: Power transducer time constant (Td). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "kdroop": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "etd": [ + cgmesProfile.DY.value, + ], + "tcd": [ + cgmesProfile.DY.value, + ], + "trate": [ + cgmesProfile.DY.value, + ], + "t": [ + cgmesProfile.DY.value, + ], + "tmax": [ + cgmesProfile.DY.value, + ], + "tmin": [ + cgmesProfile.DY.value, + ], + "ecr": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "c": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "af1": [ + cgmesProfile.DY.value, + ], + "bf1": [ + cgmesProfile.DY.value, + ], + "af2": [ + cgmesProfile.DY.value, + ], + "bf2": [ + cgmesProfile.DY.value, + ], + "cf2": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + kdroop=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + etd=0, + tcd=0, + trate=0.0, + t=0, + tmax=0.0, + tmin=0.0, + ecr=0, + k3=0.0, + a=0.0, + b=0.0, + c=0.0, + tf=0, + kf=0.0, + k5=0.0, + k4=0.0, + t3=0, + t4=0, + tt=0, + t5=0, + af1=0.0, + bf1=0.0, + af2=0.0, + bf2=0.0, + cf2=0.0, + tr=0.0, + k6=0.0, + tc=0.0, + td=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.kdroop = kdroop + self.kp = kp + self.ki = ki + self.kd = kd + self.etd = etd + self.tcd = tcd + self.trate = trate + self.t = t + self.tmax = tmax + self.tmin = tmin + self.ecr = ecr + self.k3 = k3 + self.a = a + self.b = b + self.c = c + self.tf = tf + self.kf = kf + self.k5 = k5 + self.k4 = k4 + self.t3 = t3 + self.t4 = t4 + self.tt = tt + self.t5 = t5 + self.af1 = af1 + self.bf1 = bf1 + self.af2 = af2 + self.bf2 = bf2 + self.cf2 = cf2 + self.tr = tr + self.k6 = k6 + self.tc = tc + self.td = td + + def __str__(self): + str = "class=GovGASTWD\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro1.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro1.py new file mode 100644 index 00000000..70808b03 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro1.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro1(TurbineGovernorDynamics): + """ + Basic Hydro turbine governor model. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :rperm: Permanent droop (R) (>0). Typical Value = 0.04. Default: 0.0 + :rtemp: Temporary droop (r) (>R). Typical Value = 0.3. Default: 0.0 + :tr: Washout time constant (Tr) (>0). Typical Value = 5. Default: 0 + :tf: Filter time constant () (>0). Typical Value = 0.05. Default: 0 + :tg: Gate servo time constant (Tg) (>0). Typical Value = 0.5. Default: 0 + :velm: Maximum gate velocity (Vlem) (>0). Typical Value = 0.2. Default: 0.0 + :gmax: Maximum gate opening (Gmax) (>0). Typical Value = 1. Default: 0.0 + :gmin: Minimum gate opening (Gmin) (>=0). Typical Value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (>0). Typical Value = 1. Default: 0 + :at: Turbine gain (At) (>0). Typical Value = 1.2. Default: 0.0 + :dturb: Turbine damping factor (Dturb) (>=0). Typical Value = 0.5. Default: 0.0 + :qnl: No-load flow at nominal head (qnl) (>=0). Typical Value = 0.08. Default: 0.0 + :hdam: Turbine nominal head (hdam). Typical Value = 1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "velm": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "hdam": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tf=0, + tg=0, + velm=0.0, + gmax=0.0, + gmin=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + hdam=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tf = tf + self.tg = tg + self.velm = velm + self.gmax = gmax + self.gmin = gmin + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.hdam = hdam + + def __str__(self): + str = "class=GovHydro1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro2.py new file mode 100644 index 00000000..ef41d789 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro2.py @@ -0,0 +1,212 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro2(TurbineGovernorDynamics): + """ + IEEE hydro turbine governor model represents plants with straightforward penstock configurations and hydraulic-dashpot governors. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg). Typical Value = 0.5. Default: 0 + :tp: Pilot servo valve time constant (Tp). Typical Value = 0.03. Default: 0 + :uo: Maximum gate opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 + :uc: Maximum gate closing velocity (Uc) (<0). Unit = PU/sec. Typical Value = -0.1. Default: 0.0 + :pmax: Maximum gate opening (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening; (). Typical Value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0.0 + :rtemp: Temporary droop (Rtemp). Typical Value = 0.5. Default: 0.0 + :tr: Dashpot time constant (Tr). Typical Value = 12. Default: 0 + :tw: Water inertia time constant (Tw). Typical Value = 2. Default: 0 + :kturb: Turbine gain (Kturb). Typical Value = 1. Default: 0.0 + :aturb: Turbine numerator multiplier (Aturb). Typical Value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb). Typical Value = 0.5. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional deadband (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tw=0, + kturb=0.0, + aturb=0.0, + bturb=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.kturb = kturb + self.aturb = aturb + self.bturb = bturb + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydro2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro3.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro3.py new file mode 100644 index 00000000..e3c1e2d8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro3.py @@ -0,0 +1,254 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro3(TurbineGovernorDynamics): + """ + Modified IEEE Hydro Governor-Turbine Model. This model differs from that defined in the IEEE modeling guideline paper in that the limits on gate position and velocity do not permit "wind up" of the upstream signals. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 + :governorControl: Governor control flag (Cflag). true = PID control is active false = double derivative control is active. Typical Value = true. Default: False + :rgate: Steady-state droop, PU, for governor output feedback (Rgate). Typical Value = 0. Default: 0.0 + :relec: Steady-state droop, PU, for electrical power feedback (Relec). Typical Value = 0.05. Default: 0.0 + :td: Input filter time constant (Td). Typical Value = 0.05. Default: 0 + :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 + :tp: Gate servo time constant (Tp). Typical Value = 0.05. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.2. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.2. Default: 0.0 + :k1: Derivative gain (K1). Typical Value = 0.01. Default: 0.0 + :k2: Double derivative gain, if Cflag = -1 (K2). Typical Value = 2.5. Default: 0.0 + :ki: Integral gain (Ki). Typical Value = 0.5. Default: 0.0 + :kg: Gate servo gain (Kg). Typical Value = 2. Default: 0.0 + :tt: Power feedback time constant (Tt). Typical Value = 0.2. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw). Typical Value = 1. Default: 0 + :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical Value = 0.2. Default: 0.0 + :qnl: No-load turbine flow at nominal head (Qnl). Typical Value = 0.08. Default: 0.0 + :h0: Turbine nominal head (H0). Typical Value = 1. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "governorControl": [ + cgmesProfile.DY.value, + ], + "rgate": [ + cgmesProfile.DY.value, + ], + "relec": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "h0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + governorControl=False, + rgate=0.0, + relec=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + k1=0.0, + k2=0.0, + ki=0.0, + kg=0.0, + tt=0, + db1=0.0, + eps=0.0, + db2=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + h0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.governorControl = governorControl + self.rgate = rgate + self.relec = relec + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.k1 = k1 + self.k2 = k2 + self.ki = ki + self.kg = kg + self.tt = tt + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.h0 = h0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydro3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro4.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro4.py new file mode 100644 index 00000000..1cff6cf7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydro4.py @@ -0,0 +1,266 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro4(TurbineGovernorDynamics): + """ + Hydro turbine and governor. Represents plants with straight-forward penstock configurations and hydraulic governors of traditional 'dashpot' type. This model can be used to represent simple, Francis, Pelton or Kaplan turbines. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg) (>0). Typical Value = 0.5. Default: 0 + :tp: Pilot servo time constant (Tp). Typical Value = 0.1. Default: 0 + :uo: Max gate opening velocity (Uo). Typical Vlaue = 0.2. Default: 0.0 + :uc: Max gate closing velocity (Uc). Typical Value = 0.2. Default: 0.0 + :gmax: Maximum gate opening, PU of MWbase (Gmax). Typical Value = 1. Default: 0.0 + :gmin: Minimum gate opening, PU of MWbase (Gmin). Typical Value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0 + :rtemp: Temporary droop (Rtemp). Typical Value = 0.3. Default: 0 + :tr: Dashpot time constant (Tr) (>0). Typical Value = 5. Default: 0 + :tw: Water inertia time constant (Tw) (>0). Typical Value = 1. Default: 0 + :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Typical Value = 0.5. Typical Value Francis = 1.1, Kaplan = 1.1. Default: 0.0 + :hdam: Head available at dam (hdam). Typical Value = 1. Default: 0.0 + :qn1: No-load flow at nominal head (Qnl). Typical Value = 0.08. Typical Value Francis = 0, Kaplan = 0. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :gv0: Nonlinear gain point 0, PU gv (Gv0). Typical Value = 0. Typical Value Francis = 0.1, Kaplan = 0.1. Default: 0.0 + :pgv0: Nonlinear gain point 0, PU power (Pgv0). Typical Value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Typical Value Francis = 0.4, Kaplan = 0.4. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Typical Value Francis = 0.42, Kaplan = 0.35. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Typical Value Francis = 0.5, Kaplan = 0.5. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Typical Value Francis = 0.56, Kaplan = 0.468. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Typical Value Francis = 0.7, Kaplan = 0.7. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Typical Value Francis = 0.8, Kaplan = 0.796. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Typical Value Francis = 0.8, Kaplan = 0.8. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Typical Value Francis = 0.9, Kaplan = 0.917. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Typical Value Francis = 0.9, Kaplan = 0.9. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Typical Value Francis = 0.97, Kaplan = 0.99. Default: 0.0 + :bgv0: Kaplan blade servo point 0 (Bgv0). Typical Value = 0. Default: 0.0 + :bgv1: Kaplan blade servo point 1 (Bgv1). Typical Value = 0. Default: 0.0 + :bgv2: Kaplan blade servo point 2 (Bgv2). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.1. Default: 0.0 + :bgv3: Kaplan blade servo point 3 (Bgv3). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.667. Default: 0.0 + :bgv4: Kaplan blade servo point 4 (Bgv4). Typical Value = 0. Typical Value Francis = 0, Kaplan = 0.9. Default: 0.0 + :bgv5: Kaplan blade servo point 5 (Bgv5). Typical Value = 0. Typical Value Francis = 0, Kaplan = 1. Default: 0.0 + :bmax: Maximum blade adjustment factor (Bmax). Typical Value = 0. Typical Value Francis = 0, Kaplan = 1.1276. Default: 0.0 + :tblade: Blade servo time constant (Tblade). Typical Value = 100. Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "hdam": [ + cgmesProfile.DY.value, + ], + "qn1": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv0": [ + cgmesProfile.DY.value, + ], + "pgv0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "bgv0": [ + cgmesProfile.DY.value, + ], + "bgv1": [ + cgmesProfile.DY.value, + ], + "bgv2": [ + cgmesProfile.DY.value, + ], + "bgv3": [ + cgmesProfile.DY.value, + ], + "bgv4": [ + cgmesProfile.DY.value, + ], + "bgv5": [ + cgmesProfile.DY.value, + ], + "bmax": [ + cgmesProfile.DY.value, + ], + "tblade": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + gmax=0.0, + gmin=0.0, + rperm=0, + rtemp=0, + tr=0, + tw=0, + at=0.0, + dturb=0.0, + hdam=0.0, + qn1=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv0=0.0, + pgv0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + bgv0=0.0, + bgv1=0.0, + bgv2=0.0, + bgv3=0.0, + bgv4=0.0, + bgv5=0.0, + bmax=0.0, + tblade=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.gmax = gmax + self.gmin = gmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.at = at + self.dturb = dturb + self.hdam = hdam + self.qn1 = qn1 + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv0 = gv0 + self.pgv0 = pgv0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.bgv0 = bgv0 + self.bgv1 = bgv1 + self.bgv2 = bgv2 + self.bgv3 = bgv3 + self.bgv4 = bgv4 + self.bgv5 = bgv5 + self.bmax = bmax + self.tblade = tblade + + def __str__(self): + str = "class=GovHydro4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroDD.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroDD.py new file mode 100644 index 00000000..3eefb9e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroDD.py @@ -0,0 +1,248 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroDD(TurbineGovernorDynamics): + """ + Double derivative hydro governor and turbine. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 + :r: Steady state droop (R). Typical Value = 0.05. Default: 0.0 + :td: Input filter time constant (Td). Typical Value = 0. Default: 0 + :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 + :tp: Gate servo time constant (Tp). Typical Value = 0.35. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.09. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.14. Default: 0.0 + :k1: Single derivative gain (K1). Typical Value = 3.6. Default: 0.0 + :k2: Double derivative gain (K2). Typical Value = 0.2. Default: 0.0 + :ki: Integral gain (Ki). Typical Value = 1. Default: 0.0 + :kg: Gate servo gain (Kg). Typical Value = 3. Default: 0.0 + :tturb: Turbine time constant (Tturb) (note 3). Typical Value = 0.8. Default: 0 + :aturb: Turbine numerator multiplier (Aturb) (note 3). Typical Value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (note 3). Typical Value = 0.5. Default: 0.0 + :tt: Power feedback time constant (Tt). Typical Value = 0.02. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + :gmax: Maximum gate opening (Gmax). Typical Value = 0. Default: 0.0 + :gmin: Minimum gate opening (Gmin). Typical Value = 0. Default: 0.0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + k1=0.0, + k2=0.0, + ki=0.0, + kg=0.0, + tturb=0, + aturb=0.0, + bturb=0.0, + tt=0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + gmax=0.0, + gmin=0.0, + inputSignal=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.k1 = k1 + self.k2 = k2 + self.ki = ki + self.kg = kg + self.tturb = tturb + self.aturb = aturb + self.bturb = bturb + self.tt = tt + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + self.gmax = gmax + self.gmin = gmin + self.inputSignal = inputSignal + + def __str__(self): + str = "class=GovHydroDD\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroFrancis.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroFrancis.py new file mode 100644 index 00000000..23d44853 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroFrancis.py @@ -0,0 +1,200 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroFrancis(TurbineGovernorDynamics): + """ + Detailed hydro unit - Francis model. This model can be used to represent three types of governors. A schematic of the hydraulic system of detailed hydro unit models, like Francis and Pelton, is provided in the DetailedHydroModelHydraulicSystem diagram. + + :am: Opening section S at the maximum efficiency (Am). Typical Value = 0.7. Default: 0.0 + :av0: Area of the surge tank (A). Unit = m. Typical Value = 30. Default: 0.0 + :av1: Area of the compensation tank (A). Unit = m. Typical Value = 700. Default: 0.0 + :bp: Droop (Bp). Typical Value = 0.05. Default: 0.0 + :db1: Intentional dead-band width (DB1). Unit = Hz. Typical Value = 0. Default: 0.0 + :etamax: Maximum efficiency (EtaMax). Typical Value = 1.05. Default: 0.0 + :governorControl: Governor control flag (Cflag). Typical Value = mechanicHydrolicTachoAccelerator. Default: None + :h1: Head of compensation chamber water level with respect to the level of penstock (H). Unit = m. Typical Value = 4. Default: 0.0 + :h2: Head of surge tank water level with respect to the level of penstock (H). Unit = m. Typical Value = 40. Default: 0.0 + :hn: Rated hydraulic head (H). Unit = m. Typical Value = 250. Default: 0.0 + :kc: Penstock loss coefficient (due to friction) (Kc). Typical Value = 0.025. Default: 0.0 + :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical Value = 0.025. Default: 0.0 + :kt: Washout gain (Kt). Typical Value = 0.25. Default: 0.0 + :qc0: No-load turbine flow at nominal head (Qc0). Typical Value = 0.21. Default: 0.0 + :qn: Rated flow (Q). Unit = m/s. Typical Value = 40. Default: 0.0 + :ta: Derivative gain (Ta). Typical Value = 3. Default: 0 + :td: Washout time constant (Td). Typical Value = 3. Default: 0 + :ts: Gate servo time constant (Ts). Typical Value = 0.5. Default: 0 + :twnc: Water inertia time constant (Twnc). Typical Value = 1. Default: 0 + :twng: Water tunnel and surge chamber inertia time constant (Twng). Typical Value = 3. Default: 0 + :tx: Derivative feedback gain (Tx). Typical Value = 1. Default: 0 + :va: Maximum gate opening velocity (Va). Unit = PU/sec. Typical Value = 0.011. Default: 0.0 + :valvmax: Maximum gate opening (ValvMax). Typical Value = 1. Default: 0.0 + :valvmin: Minimum gate opening (ValvMin). Typical Value = 0. Default: 0.0 + :vc: Maximum gate closing velocity (Vc). Unit = PU/sec. Typical Value = -0.011. Default: 0.0 + :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical Value = false. Default: False + :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = m. Typical Value = 25. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "am": [ + cgmesProfile.DY.value, + ], + "av0": [ + cgmesProfile.DY.value, + ], + "av1": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "etamax": [ + cgmesProfile.DY.value, + ], + "governorControl": [ + cgmesProfile.DY.value, + ], + "h1": [ + cgmesProfile.DY.value, + ], + "h2": [ + cgmesProfile.DY.value, + ], + "hn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "qc0": [ + cgmesProfile.DY.value, + ], + "qn": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "twnc": [ + cgmesProfile.DY.value, + ], + "twng": [ + cgmesProfile.DY.value, + ], + "tx": [ + cgmesProfile.DY.value, + ], + "va": [ + cgmesProfile.DY.value, + ], + "valvmax": [ + cgmesProfile.DY.value, + ], + "valvmin": [ + cgmesProfile.DY.value, + ], + "vc": [ + cgmesProfile.DY.value, + ], + "waterTunnelSurgeChamberSimulation": [ + cgmesProfile.DY.value, + ], + "zsfc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + am=0.0, + av0=0.0, + av1=0.0, + bp=0.0, + db1=0.0, + etamax=0.0, + governorControl=None, + h1=0.0, + h2=0.0, + hn=0.0, + kc=0.0, + kg=0.0, + kt=0.0, + qc0=0.0, + qn=0.0, + ta=0, + td=0, + ts=0, + twnc=0, + twng=0, + tx=0, + va=0.0, + valvmax=0.0, + valvmin=0.0, + vc=0.0, + waterTunnelSurgeChamberSimulation=False, + zsfc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.am = am + self.av0 = av0 + self.av1 = av1 + self.bp = bp + self.db1 = db1 + self.etamax = etamax + self.governorControl = governorControl + self.h1 = h1 + self.h2 = h2 + self.hn = hn + self.kc = kc + self.kg = kg + self.kt = kt + self.qc0 = qc0 + self.qn = qn + self.ta = ta + self.td = td + self.ts = ts + self.twnc = twnc + self.twng = twng + self.tx = tx + self.va = va + self.valvmax = valvmax + self.valvmin = valvmin + self.vc = vc + self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation + self.zsfc = zsfc + + def __str__(self): + str = "class=GovHydroFrancis\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py new file mode 100644 index 00000000..ba3851d4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE0.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroIEEE0(TurbineGovernorDynamics): + """ + IEEE Simplified Hydro Governor-Turbine Model. Used for Mechanical-Hydraulic and Electro-Hydraulic turbine governors, with our without steam feedback. Typical values given are for Mechanical-Hydraulic. Ref + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :k: Governor gain (K. Default: 0.0 + :t1: Governor lag time constant (T1). Typical Value = 0.25. Default: 0 + :t2: Governor lead time constant (T2. Typical Value = 0. Default: 0 + :t3: Gate actuator time constant (T3). Typical Value = 0.1. Default: 0 + :t4: Water starting time (T4). Default: 0 + :pmax: Gate maximum (Pmax). Default: 0.0 + :pmin: Gate minimum (Pmin). Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + pmax=0.0, + pmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.pmax = pmax + self.pmin = pmin + + def __str__(self): + str = "class=GovHydroIEEE0\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py new file mode 100644 index 00000000..4d73ea7c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroIEEE2.py @@ -0,0 +1,194 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroIEEE2(TurbineGovernorDynamics): + """ + IEEE hydro turbine governor model represents plants with straightforward penstock configurations and hydraulic-dashpot governors. Ref + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg). Typical Value = 0.5. Default: 0 + :tp: Pilot servo valve time constant (Tp). Typical Value = 0.03. Default: 0 + :uo: Maximum gate opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 + :uc: Maximum gate closing velocity (Uc) (<0). Typical Value = -0.1. Default: 0.0 + :pmax: Maximum gate opening (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening (Pmin). Typical Value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm). Typical Value = 0.05. Default: 0.0 + :rtemp: Temporary droop (Rtemp). Typical Value = 0.5. Default: 0.0 + :tr: Dashpot time constant (Tr). Typical Value = 12. Default: 0 + :tw: Water inertia time constant (Tw). Typical Value = 2. Default: 0 + :kturb: Turbine gain (Kturb). Typical Value = 1. Default: 0.0 + :aturb: Turbine numerator multiplier (Aturb). Typical Value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb). Typical Value = 0.5. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tw=0, + kturb=0.0, + aturb=0.0, + bturb=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.kturb = kturb + self.aturb = aturb + self.bturb = bturb + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroIEEE2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID.py new file mode 100644 index 00000000..9e336422 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID.py @@ -0,0 +1,236 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPID(TurbineGovernorDynamics): + """ + PID governor and turbine. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 + :r: Steady state droop (R). Typical Value = 0.05. Default: 0.0 + :td: Input filter time constant (Td). Typical Value = 0. Default: 0 + :tf: Washout time constant (Tf). Typical Value = 0.1. Default: 0 + :tp: Gate servo time constant (Tp). Typical Value = 0.35. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.09. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.14. Default: 0.0 + :kd: Derivative gain (Kd). Typical Value = 1.11. Default: 0.0 + :kp: Proportional gain (Kp). Typical Value = 0.1. Default: 0.0 + :ki: Integral gain (Ki). Typical Value = 0.36. Default: 0.0 + :kg: Gate servo gain (Kg). Typical Value = 2.5. Default: 0.0 + :tturb: Turbine time constant (Tturb) (note 3). Typical Value = 0.8. Default: 0 + :aturb: Turbine numerator multiplier (Aturb) (note 3). Typical Value -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (note 3). Typical Value = 0.5. Default: 0.0 + :tt: Power feedback time constant (Tt). Typical Value = 0.02. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + kd=0.0, + kp=0.0, + ki=0.0, + kg=0.0, + tturb=0, + aturb=0.0, + bturb=0.0, + tt=0, + db1=0.0, + inputSignal=False, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.kd = kd + self.kp = kp + self.ki = ki + self.kg = kg + self.tturb = tturb + self.aturb = aturb + self.bturb = bturb + self.tt = tt + self.db1 = db1 + self.inputSignal = inputSignal + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroPID\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID2.py new file mode 100644 index 00000000..085fabe1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPID2.py @@ -0,0 +1,170 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPID2(TurbineGovernorDynamics): + """ + Hydro turbine and governor. Represents plants with straight forward penstock configurations and "three term" electro-hydraulic governors (i.e. Woodard electronic). + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :treg: Speed detector time constant (Treg). Typical Value = 0. Default: 0 + :rperm: Permanent drop (Rperm). Typical Value = 0. Default: 0.0 + :kp: Proportional gain (Kp). Typical Value = 0. Default: 0.0 + :ki: Reset gain (Ki). Unit = PU/ sec. Typical Value = 0. Default: 0.0 + :kd: Derivative gain (Kd). Typical Value = 0. Default: 0.0 + :ta: Controller time constant (Ta) (>0). Typical Value = 0. Default: 0 + :tb: Gate servo time constant (Tb) (>0). Typical Value = 0. Default: 0 + :velmax: Maximum gate opening velocity (Velmax). Unit = PU/sec. Typical Value = 0. Default: 0.0 + :velmin: Maximum gate closing velocity (Velmin). Unit = PU/sec. Typical Value = 0. Default: 0.0 + :gmax: Maximum gate opening (Gmax). Typical Value = 0. Default: 0.0 + :gmin: Minimum gate opening (Gmin). Typical Value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (>0). Typical Value = 0. Default: 0 + :d: Turbine damping factor (D). Unit = delta P / delta speed. Typical Value = 0. Default: 0.0 + :g0: Gate opening at speed no load (G0). Typical Value = 0. Default: 0.0 + :g1: Intermediate gate opening (G1). Typical Value = 0. Default: 0.0 + :p1: Power at gate opening G1 (P1). Typical Value = 0. Default: 0.0 + :g2: Intermediate gate opening (G2). Typical Value = 0. Default: 0.0 + :p2: Power at gate opening G2 (P2). Typical Value = 0. Default: 0.0 + :p3: Power at full opened gate (P3). Typical Value = 0. Default: 0.0 + :atw: Factor multiplying Tw (Atw). Typical Value = 0. Default: 0.0 + :feedbackSignal: Feedback signal type flag (Flag). true = use gate position feedback signal false = use Pe. Default: False + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "treg": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "velmax": [ + cgmesProfile.DY.value, + ], + "velmin": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "g0": [ + cgmesProfile.DY.value, + ], + "g1": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "g2": [ + cgmesProfile.DY.value, + ], + "p2": [ + cgmesProfile.DY.value, + ], + "p3": [ + cgmesProfile.DY.value, + ], + "atw": [ + cgmesProfile.DY.value, + ], + "feedbackSignal": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + treg=0, + rperm=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + ta=0, + tb=0, + velmax=0.0, + velmin=0.0, + gmax=0.0, + gmin=0.0, + tw=0, + d=0.0, + g0=0.0, + g1=0.0, + p1=0.0, + g2=0.0, + p2=0.0, + p3=0.0, + atw=0.0, + feedbackSignal=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.treg = treg + self.rperm = rperm + self.kp = kp + self.ki = ki + self.kd = kd + self.ta = ta + self.tb = tb + self.velmax = velmax + self.velmin = velmin + self.gmax = gmax + self.gmin = gmin + self.tw = tw + self.d = d + self.g0 = g0 + self.g1 = g1 + self.p1 = p1 + self.g2 = g2 + self.p2 = p2 + self.p3 = p3 + self.atw = atw + self.feedbackSignal = feedbackSignal + + def __str__(self): + str = "class=GovHydroPID2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPelton.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPelton.py new file mode 100644 index 00000000..289803c8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroPelton.py @@ -0,0 +1,206 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPelton(TurbineGovernorDynamics): + """ + Detailed hydro unit - Pelton model. This model can be used to represent the dynamic related to water tunnel and surge chamber. A schematic of the hydraulic system of detailed hydro unit models, like Francis and Pelton, is located under the GovHydroFrancis class. + + :av0: Area of the surge tank (A). Unit = m. Typical Value = 30. Default: 0.0 + :av1: Area of the compensation tank (A). Unit = m. Typical Value = 700. Default: 0.0 + :bp: Droop (bp). Typical Value = 0.05. Default: 0.0 + :db1: Intentional dead-band width (DB1). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Intentional dead-band width of valve opening error (DB2). Unit = Hz. Typical Value = 0.01. Default: 0.0 + :h1: Head of compensation chamber water level with respect to the level of penstock (H). Unit = m. Typical Value = 4. Default: 0.0 + :h2: Head of surge tank water level with respect to the level of penstock (H). Unit = m. Typical Value = 40. Default: 0.0 + :hn: Rated hydraulic head (H). Unit = m. Typical Value = 250. Default: 0.0 + :kc: Penstock loss coefficient (due to friction) (Kc). Typical Value = 0.025. Default: 0.0 + :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical Value = -0.025. Default: 0.0 + :qc0: No-load turbine flow at nominal head (Qc0). Typical Value = 0.05. Default: 0.0 + :qn: Rated flow (Q). Unit = m/s. Typical Value = 40. Default: 0.0 + :simplifiedPelton: Simplified Pelton model simulation (Sflag). true = enable of simplified Pelton model simulation false = enable of complete Pelton model simulation (non linear gain). Typical Value = false. Default: False + :staticCompensating: Static compensating characteristic (Cflag). true = enable of static compensating characteristic false = inhibit of static compensating characteristic. Typical Value = false. Default: False + :ta: Derivative gain (accelerometer time constant) (Ta). Typical Value = 3. Default: 0 + :ts: Gate servo time constant (Ts). Typical Value = 0.15. Default: 0 + :tv: Servomotor integrator time constant (TV). Typical Value = 0.3. Default: 0 + :twnc: Water inertia time constant (Twnc). Typical Value = 1. Default: 0 + :twng: Water tunnel and surge chamber inertia time constant (Twng). Typical Value = 3. Default: 0 + :tx: Electronic integrator time constant (Tx). Typical Value = 0.5. Default: 0 + :va: Maximum gate opening velocity (Va). Unit = PU/sec. Typical Value = 0.016. Default: 0.0 + :valvmax: Maximum gate opening (ValvMax). Typical Value = 1. Default: 0.0 + :valvmin: Minimum gate opening (ValvMin). Typical Value = 0. Default: 0.0 + :vav: Maximum servomotor valve opening velocity (Vav). Typical Value = 0.017. Default: 0.0 + :vc: Maximum gate closing velocity (Vc). Unit = PU/sec. Typical Value = -0.016. Default: 0.0 + :vcv: Maximum servomotor valve closing velocity (Vcv). Typical Value = -0.017. Default: 0.0 + :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical Value = false. Default: False + :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = m. Typical Value = 25. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "av0": [ + cgmesProfile.DY.value, + ], + "av1": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "h1": [ + cgmesProfile.DY.value, + ], + "h2": [ + cgmesProfile.DY.value, + ], + "hn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "qc0": [ + cgmesProfile.DY.value, + ], + "qn": [ + cgmesProfile.DY.value, + ], + "simplifiedPelton": [ + cgmesProfile.DY.value, + ], + "staticCompensating": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "twnc": [ + cgmesProfile.DY.value, + ], + "twng": [ + cgmesProfile.DY.value, + ], + "tx": [ + cgmesProfile.DY.value, + ], + "va": [ + cgmesProfile.DY.value, + ], + "valvmax": [ + cgmesProfile.DY.value, + ], + "valvmin": [ + cgmesProfile.DY.value, + ], + "vav": [ + cgmesProfile.DY.value, + ], + "vc": [ + cgmesProfile.DY.value, + ], + "vcv": [ + cgmesProfile.DY.value, + ], + "waterTunnelSurgeChamberSimulation": [ + cgmesProfile.DY.value, + ], + "zsfc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + av0=0.0, + av1=0.0, + bp=0.0, + db1=0.0, + db2=0.0, + h1=0.0, + h2=0.0, + hn=0.0, + kc=0.0, + kg=0.0, + qc0=0.0, + qn=0.0, + simplifiedPelton=False, + staticCompensating=False, + ta=0, + ts=0, + tv=0, + twnc=0, + twng=0, + tx=0, + va=0.0, + valvmax=0.0, + valvmin=0.0, + vav=0.0, + vc=0.0, + vcv=0.0, + waterTunnelSurgeChamberSimulation=False, + zsfc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.av0 = av0 + self.av1 = av1 + self.bp = bp + self.db1 = db1 + self.db2 = db2 + self.h1 = h1 + self.h2 = h2 + self.hn = hn + self.kc = kc + self.kg = kg + self.qc0 = qc0 + self.qn = qn + self.simplifiedPelton = simplifiedPelton + self.staticCompensating = staticCompensating + self.ta = ta + self.ts = ts + self.tv = tv + self.twnc = twnc + self.twng = twng + self.tx = tx + self.va = va + self.valvmax = valvmax + self.valvmin = valvmin + self.vav = vav + self.vc = vc + self.vcv = vcv + self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation + self.zsfc = zsfc + + def __str__(self): + str = "class=GovHydroPelton\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroR.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroR.py new file mode 100644 index 00000000..8e9dd84e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroR.py @@ -0,0 +1,290 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroR(TurbineGovernorDynamics): + """ + Fourth order lead-lag governor and hydro turbine. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 + :r: Steady-state droop (R). Typical Value = 0.05. Default: 0.0 + :td: Input filter time constant (Td). Typical Value = 0.05. Default: 0 + :t1: Lead time constant 1 (T1). Typical Value = 1.5. Default: 0 + :t2: Lag time constant 1 (T2). Typical Value = 0.1. Default: 0 + :t3: Lead time constant 2 (T3). Typical Value = 1.5. Default: 0 + :t4: Lag time constant 2 (T4). Typical Value = 0.1. Default: 0 + :t5: Lead time constant 3 (T5). Typical Value = 0. Default: 0 + :t6: Lag time constant 3 (T6). Typical Value = 0.05. Default: 0 + :t7: Lead time constant 4 (T7). Typical Value = 0. Default: 0 + :t8: Lag time constant 4 (T8). Typical Value = 0.05. Default: 0 + :tp: Gate servo time constant (Tp). Typical Value = 0.05. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU/sec. Typical Value = 0.2. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU/sec. Typical Value = -0.2. Default: 0.0 + :ki: Integral gain (Ki). Typical Value = 0.5. Default: 0.0 + :kg: Gate servo gain (Kg). Typical Value = 2. Default: 0.0 + :gmax: Maximum governor output (Gmax). Typical Value = 1.05. Default: 0.0 + :gmin: Minimum governor output (Gmin). Typical Value = -0.05. Default: 0.0 + :tt: Power feedback time constant (Tt). Typical Value = 0. Default: 0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tf is zero, Flag is set to false. If Tf is not zero, Flag is set to true. Typical Value = true. Default: False + :db1: Intentional dead-band width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw). Typical Value = 1. Default: 0 + :at: Turbine gain (At). Typical Value = 1.2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical Value = 0.2. Default: 0.0 + :qnl: No-load turbine flow at nominal head (Qnl). Typical Value = 0.08. Default: 0.0 + :h0: Turbine nominal head (H0). Typical Value = 1. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical Value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical Value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical Value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical Value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical Value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical Value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical Value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical Value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "h0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + tp=0, + velop=0.0, + velcl=0.0, + ki=0.0, + kg=0.0, + gmax=0.0, + gmin=0.0, + tt=0, + inputSignal=False, + db1=0.0, + eps=0.0, + db2=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + h0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.tp = tp + self.velop = velop + self.velcl = velcl + self.ki = ki + self.kg = kg + self.gmax = gmax + self.gmin = gmin + self.tt = tt + self.inputSignal = inputSignal + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.h0 = h0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroR\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWEH.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWEH.py new file mode 100644 index 00000000..a2b5c79e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWEH.py @@ -0,0 +1,344 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroWEH(TurbineGovernorDynamics): + """ + Woodward Electric Hydro Governor Model. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :rpg: Permanent droop for governor output feedback (R-Perm-Gate). Default: 0.0 + :rpp: Permanent droop for electrical power feedback (R-Perm-Pe). Default: 0.0 + :tpe: Electrical power droop time constant (Tpe). Default: 0 + :kp: Derivative control gain (Kp). Default: 0.0 + :ki: Derivative controller Integral gain (Ki). Default: 0.0 + :kd: Derivative controller derivative gain (Kd). Default: 0.0 + :td: Derivative controller time constant to limit the derivative characteristic beyond a breakdown frequency to avoid amplification of high-frequency noise (Td). Default: 0 + :tp: Pilot Valve time lag time constant (Tp). Default: 0 + :tdv: Distributive Valve time lag time constant (Tdv). Default: 0 + :tg: Value to allow the Distribution valve controller to advance beyond the gate movement rate limit (Tg). Default: 0 + :gtmxop: Maximum gate opening rate (Gtmxop). Default: 0.0 + :gtmxcl: Maximum gate closing rate (Gtmxcl). Default: 0.0 + :gmax: Maximum Gate Position (Gmax). Default: 0.0 + :gmin: Minimum Gate Position (Gmin). Default: 0.0 + :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Default: 0.0 + :tw: Water inertia time constant (Tw) (>0). Default: 0 + :db: Speed Dead Band (db). Default: 0.0 + :dpv: Value to allow the Pilot valve controller to advance beyond the gate limits (Dpv). Default: 0.0 + :dicn: Value to allow the integral controller to advance beyond the gate limits (Dicn). Default: 0.0 + :feedbackSignal: Feedback signal selection (Sw). true = PID Output (if R-Perm-Gate=droop and R-Perm-Pe=0) false = Electrical Power (if R-Perm-Gate=0 and R-Perm-Pe=droop) or false = Gate Position (if R-Perm-Gate=droop and R-Perm-Pe=0). Default: False + :gv1: Gate 1 (Gv1). Gate Position value for point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv2: Gate 2 (Gv2). Gate Position value for point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv3: Gate 3 (Gv3). Gate Position value for point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv4: Gate 4 (Gv4). Gate Position value for point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv5: Gate 5 (Gv5). Gate Position value for point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl1: Flow Gate 1 (Fl1). Flow value for gate position point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl2: Flow Gate 2 (Fl2). Flow value for gate position point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl3: Flow Gate 3 (Fl3). Flow value for gate position point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl4: Flow Gate 4 (Fl4). Flow value for gate position point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl5: Flow Gate 5 (Fl5). Flow value for gate position point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fp1: Flow P1 (Fp1). Turbine Flow value for point 1 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp2: Flow P2 (Fp2). Turbine Flow value for point 2 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp3: Flow P3 (Fp3). Turbine Flow value for point 3 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp4: Flow P4 (Fp4). Turbine Flow value for point 4 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp5: Flow P5 (Fp5). Turbine Flow value for point 5 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp6: Flow P6 (Fp6). Turbine Flow value for point 6 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp7: Flow P7 (Fp7). Turbine Flow value for point 7 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp8: Flow P8 (Fp8). Turbine Flow value for point 8 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp9: Flow P9 (Fp9). Turbine Flow value for point 9 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp10: Flow P10 (Fp10). Turbine Flow value for point 10 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss1: Pmss Flow P1 (Pmss1). Mechanical Power output Pmss for Turbine Flow point 1 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss2: Pmss Flow P2 (Pmss2). Mechanical Power output Pmss for Turbine Flow point 2 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss3: Pmss Flow P3 (Pmss3). Mechanical Power output Pmss for Turbine Flow point 3 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss4: Pmss Flow P4 (Pmss4). Mechanical Power output Pmss for Turbine Flow point 4 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss5: Pmss Flow P5 (Pmss5). Mechanical Power output Pmss for Turbine Flow point 5 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss6: Pmss Flow P6 (Pmss6). Mechanical Power output Pmss for Turbine Flow point 6 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss7: Pmss Flow P7 (Pmss7). Mechanical Power output Pmss for Turbine Flow point 7 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss8: Pmss Flow P8 (Pmss8). Mechanical Power output Pmss for Turbine Flow point 8 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss9: Pmss Flow P9 (Pmss9). Mechanical Power output Pmss for Turbine Flow point 9 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss10: Pmss Flow P10 (Pmss10). Mechanical Power output Pmss for Turbine Flow point 10 for lookup table representing per unit mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "rpg": [ + cgmesProfile.DY.value, + ], + "rpp": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tdv": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "gtmxop": [ + cgmesProfile.DY.value, + ], + "gtmxcl": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "dpv": [ + cgmesProfile.DY.value, + ], + "dicn": [ + cgmesProfile.DY.value, + ], + "feedbackSignal": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "fl1": [ + cgmesProfile.DY.value, + ], + "fl2": [ + cgmesProfile.DY.value, + ], + "fl3": [ + cgmesProfile.DY.value, + ], + "fl4": [ + cgmesProfile.DY.value, + ], + "fl5": [ + cgmesProfile.DY.value, + ], + "fp1": [ + cgmesProfile.DY.value, + ], + "fp2": [ + cgmesProfile.DY.value, + ], + "fp3": [ + cgmesProfile.DY.value, + ], + "fp4": [ + cgmesProfile.DY.value, + ], + "fp5": [ + cgmesProfile.DY.value, + ], + "fp6": [ + cgmesProfile.DY.value, + ], + "fp7": [ + cgmesProfile.DY.value, + ], + "fp8": [ + cgmesProfile.DY.value, + ], + "fp9": [ + cgmesProfile.DY.value, + ], + "fp10": [ + cgmesProfile.DY.value, + ], + "pmss1": [ + cgmesProfile.DY.value, + ], + "pmss2": [ + cgmesProfile.DY.value, + ], + "pmss3": [ + cgmesProfile.DY.value, + ], + "pmss4": [ + cgmesProfile.DY.value, + ], + "pmss5": [ + cgmesProfile.DY.value, + ], + "pmss6": [ + cgmesProfile.DY.value, + ], + "pmss7": [ + cgmesProfile.DY.value, + ], + "pmss8": [ + cgmesProfile.DY.value, + ], + "pmss9": [ + cgmesProfile.DY.value, + ], + "pmss10": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + rpg=0.0, + rpp=0.0, + tpe=0, + kp=0.0, + ki=0.0, + kd=0.0, + td=0, + tp=0, + tdv=0, + tg=0, + gtmxop=0.0, + gtmxcl=0.0, + gmax=0.0, + gmin=0.0, + dturb=0.0, + tw=0, + db=0.0, + dpv=0.0, + dicn=0.0, + feedbackSignal=False, + gv1=0.0, + gv2=0.0, + gv3=0.0, + gv4=0.0, + gv5=0.0, + fl1=0.0, + fl2=0.0, + fl3=0.0, + fl4=0.0, + fl5=0.0, + fp1=0.0, + fp2=0.0, + fp3=0.0, + fp4=0.0, + fp5=0.0, + fp6=0.0, + fp7=0.0, + fp8=0.0, + fp9=0.0, + fp10=0.0, + pmss1=0.0, + pmss2=0.0, + pmss3=0.0, + pmss4=0.0, + pmss5=0.0, + pmss6=0.0, + pmss7=0.0, + pmss8=0.0, + pmss9=0.0, + pmss10=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.rpg = rpg + self.rpp = rpp + self.tpe = tpe + self.kp = kp + self.ki = ki + self.kd = kd + self.td = td + self.tp = tp + self.tdv = tdv + self.tg = tg + self.gtmxop = gtmxop + self.gtmxcl = gtmxcl + self.gmax = gmax + self.gmin = gmin + self.dturb = dturb + self.tw = tw + self.db = db + self.dpv = dpv + self.dicn = dicn + self.feedbackSignal = feedbackSignal + self.gv1 = gv1 + self.gv2 = gv2 + self.gv3 = gv3 + self.gv4 = gv4 + self.gv5 = gv5 + self.fl1 = fl1 + self.fl2 = fl2 + self.fl3 = fl3 + self.fl4 = fl4 + self.fl5 = fl5 + self.fp1 = fp1 + self.fp2 = fp2 + self.fp3 = fp3 + self.fp4 = fp4 + self.fp5 = fp5 + self.fp6 = fp6 + self.fp7 = fp7 + self.fp8 = fp8 + self.fp9 = fp9 + self.fp10 = fp10 + self.pmss1 = pmss1 + self.pmss2 = pmss2 + self.pmss3 = pmss3 + self.pmss4 = pmss4 + self.pmss5 = pmss5 + self.pmss6 = pmss6 + self.pmss7 = pmss7 + self.pmss8 = pmss8 + self.pmss9 = pmss9 + self.pmss10 = pmss10 + + def __str__(self): + str = "class=GovHydroWEH\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWPID.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWPID.py new file mode 100644 index 00000000..ecaa7575 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovHydroWPID.py @@ -0,0 +1,170 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroWPID(TurbineGovernorDynamics): + """ + Woodward PID Hydro Governor. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :treg: Speed detector time constant (Treg). Default: 0 + :reg: Permanent drop (Reg). Default: 0.0 + :kp: Proportional gain (Kp). Typical Value = 0.1. Default: 0.0 + :ki: Reset gain (Ki). Typical Value = 0.36. Default: 0.0 + :kd: Derivative gain (Kd). Typical Value = 1.11. Default: 0.0 + :ta: Controller time constant (Ta) (>0). Typical Value = 0. Default: 0 + :tb: Gate servo time constant (Tb) (>0). Typical Value = 0. Default: 0 + :velmax: Maximum gate opening velocity (Velmax). Unit = PU/sec. Typical Value = 0. Default: 0.0 + :velmin: Maximum gate closing velocity (Velmin). Unit = PU/sec. Typical Value = 0. Default: 0.0 + :gatmax: Gate opening Limit Maximum (Gatmax). Default: 0.0 + :gatmin: Gate opening Limit Minimum (Gatmin). Default: 0.0 + :tw: Water inertia time constant (Tw) (>0). Typical Value = 0. Default: 0 + :pmax: Maximum Power Output (Pmax). Default: 0.0 + :pmin: Minimum Power Output (Pmin). Default: 0.0 + :d: Turbine damping factor (D). Unit = delta P / delta speed. Default: 0.0 + :gv3: Gate position 3 (Gv3). Default: 0.0 + :gv1: Gate position 1 (Gv1). Default: 0.0 + :pgv1: Output at Gv1 PU of MWbase (Pgv1). Default: 0.0 + :gv2: Gate position 2 (Gv2). Default: 0.0 + :pgv2: Output at Gv2 PU of MWbase (Pgv2). Default: 0.0 + :pgv3: Output at Gv3 PU of MWbase (Pgv3). Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "treg": [ + cgmesProfile.DY.value, + ], + "reg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "velmax": [ + cgmesProfile.DY.value, + ], + "velmin": [ + cgmesProfile.DY.value, + ], + "gatmax": [ + cgmesProfile.DY.value, + ], + "gatmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + treg=0, + reg=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + ta=0, + tb=0, + velmax=0.0, + velmin=0.0, + gatmax=0.0, + gatmin=0.0, + tw=0, + pmax=0.0, + pmin=0.0, + d=0.0, + gv3=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + pgv3=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.treg = treg + self.reg = reg + self.kp = kp + self.ki = ki + self.kd = kd + self.ta = ta + self.tb = tb + self.velmax = velmax + self.velmin = velmin + self.gatmax = gatmax + self.gatmin = gatmin + self.tw = tw + self.pmax = pmax + self.pmin = pmin + self.d = d + self.gv3 = gv3 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.pgv3 = pgv3 + + def __str__(self): + str = "class=GovHydroWPID\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam0.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam0.py new file mode 100644 index 00000000..de4100b3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam0.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam0(TurbineGovernorDynamics): + """ + A simplified steam turbine governor model. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical Value = 0.05. Default: 0.0 + :t1: Steam bowl time constant (T1). Typical Value = 0.5. Default: 0 + :vmax: Maximum valve position, PU of mwcap (Vmax). Typical Value = 1. Default: 0.0 + :vmin: Minimum valve position, PU of mwcap (Vmin). Typical Value = 0. Default: 0.0 + :t2: Numerator time constant of T2/T3 block (T2). Typical Value = 3. Default: 0 + :t3: Reheater time constant (T3). Typical Value = 10. Default: 0 + :dt: Turbine damping coefficient (Dt). Unit = delta P / delta speed. Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "dt": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + vmax=0.0, + vmin=0.0, + t2=0, + t3=0, + dt=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.vmax = vmax + self.vmin = vmin + self.t2 = t2 + self.t3 = t3 + self.dt = dt + + def __str__(self): + str = "class=GovSteam0\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam1.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam1.py new file mode 100644 index 00000000..88b58585 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam1.py @@ -0,0 +1,272 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam1(TurbineGovernorDynamics): + """ + Steam turbine governor model, based on the GovSteamIEEE1 model (with optional deadband and nonlinear valve gain added). + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :k: Governor gain (reciprocal of droop) (K) (>0). Typical Value = 25. Default: 0.0 + :t1: Governor lag time constant (T1). Typical Value = 0. Default: 0 + :t2: Governor lead time constant (T2). Typical Value = 0. Default: 0 + :t3: Valve positioner time constant (T3(>0). Typical Value = 0.1. Default: 0 + :uo: Maximum valve opening velocity (Uo) (>0). Unit = PU/sec. Typical Value = 1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc) (<0). Unit = PU/sec. Typical Value = -10. Default: 0.0 + :pmax: Maximum valve opening (Pmax) (> Pmin). Typical Value = 1. Default: 0.0 + :pmin: Minimum valve opening (Pmin) (>=0). Typical Value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.3. Default: 0 + :k1: Fraction of HP shaft power after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 + :k2: Fraction of LP shaft power after first boiler pass (K2). Typical Value = 0. Default: 0.0 + :t5: Time constant of second boiler pass (T5). Typical Value = 5. Default: 0 + :k3: Fraction of HP shaft power after second boiler pass (K3). Typical Value = 0.3. Default: 0.0 + :k4: Fraction of LP shaft power after second boiler pass (K4). Typical Value = 0. Default: 0.0 + :t6: Time constant of third boiler pass (T6). Typical Value = 0.5. Default: 0 + :k5: Fraction of HP shaft power after third boiler pass (K5). Typical Value = 0.5. Default: 0.0 + :k6: Fraction of LP shaft power after third boiler pass (K6). Typical Value = 0. Default: 0.0 + :t7: Time constant of fourth boiler pass (T7). Typical Value = 0. Default: 0 + :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical Value = 0. Default: 0.0 + :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical Value = 0. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical Value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical Value = 0. Default: 0.0 + :sdb1: Intentional deadband indicator. true = intentional deadband is applied false = intentional deadband is not applied. Typical Value = true. Default: False + :sdb2: Unintentional deadband location. true = intentional deadband is applied before point "A" false = intentional deadband is applied after point "A". Typical Value = true. Default: False + :db2: Unintentional deadband (db2). Unit = MW. Typical Value = 0. Default: 0.0 + :valve: Nonlinear valve characteristic. true = nonlinear valve characteristic is used false = nonlinear valve characteristic is not used. Typical Value = true. Default: False + :gv1: Nonlinear gain valve position point 1 (GV1). Typical Value = 0. Default: 0.0 + :pgv1: Nonlinear gain power value point 1 (Pgv1). Typical Value = 0. Default: 0.0 + :gv2: Nonlinear gain valve position point 2 (GV2). Typical Value = 0.4. Default: 0.0 + :pgv2: Nonlinear gain power value point 2 (Pgv2). Typical Value = 0.75. Default: 0.0 + :gv3: Nonlinear gain valve position point 3 (GV3). Typical Value = 0.5. Default: 0.0 + :pgv3: Nonlinear gain power value point 3 (Pgv3). Typical Value = 0.91. Default: 0.0 + :gv4: Nonlinear gain valve position point 4 (GV4). Typical Value = 0.6. Default: 0.0 + :pgv4: Nonlinear gain power value point 4 (Pgv4). Typical Value = 0.98. Default: 0.0 + :gv5: Nonlinear gain valve position point 5 (GV5). Typical Value = 1. Default: 0.0 + :pgv5: Nonlinear gain power value point 5 (Pgv5). Typical Value = 1. Default: 0.0 + :gv6: Nonlinear gain valve position point 6 (GV6). Typical Value = 0. Default: 0.0 + :pgv6: Nonlinear gain power value point 6 (Pgv6). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "k7": [ + cgmesProfile.DY.value, + ], + "k8": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "sdb1": [ + cgmesProfile.DY.value, + ], + "sdb2": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "valve": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + k2=0.0, + t5=0, + k3=0.0, + k4=0.0, + t6=0, + k5=0.0, + k6=0.0, + t7=0, + k7=0.0, + k8=0.0, + db1=0.0, + eps=0.0, + sdb1=False, + sdb2=False, + db2=0.0, + valve=False, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.k2 = k2 + self.t5 = t5 + self.k3 = k3 + self.k4 = k4 + self.t6 = t6 + self.k5 = k5 + self.k6 = k6 + self.t7 = t7 + self.k7 = k7 + self.k8 = k8 + self.db1 = db1 + self.eps = eps + self.sdb1 = sdb1 + self.sdb2 = sdb2 + self.db2 = db2 + self.valve = valve + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovSteam1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam2.py new file mode 100644 index 00000000..7f8ab641 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteam2.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam2(TurbineGovernorDynamics): + """ + Simplified governor model. + + :k: Governor gain (reciprocal of droop) (K). Typical Value = 20. Default: 0.0 + :dbf: Frequency dead band (DBF). Typical Value = 0. Default: 0.0 + :t1: Governor lag time constant (T) (>0). Typical Value = 0.45. Default: 0 + :t2: Governor lead time constant (T) (may be 0). Typical Value = 0. Default: 0 + :pmax: Maximum fuel flow (P). Typical Value = 1. Default: 0.0 + :pmin: Minimum fuel flow (P). Typical Value = 0. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MX). Typical Value = 1. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MN). Typical Value = -1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dbf": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + k=0.0, + dbf=0.0, + t1=0, + t2=0, + pmax=0.0, + pmin=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k = k + self.dbf = dbf + self.t1 = t1 + self.t2 = t2 + self.pmax = pmax + self.pmin = pmin + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovSteam2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamCC.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamCC.py new file mode 100644 index 00000000..193fb566 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamCC.py @@ -0,0 +1,140 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamCC(TurbineGovernorDynamics): + """ + Cross compound turbine governor model. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :pmaxhp: Maximum HP value position (Pmaxhp). Typical Value = 1. Default: 0.0 + :rhp: HP governor droop (Rhp). Typical Value = 0.05. Default: 0.0 + :t1hp: HP governor time constant (T1hp). Typical Value = 0.1. Default: 0 + :t3hp: HP turbine time constant (T3hp). Typical Value = 0.1. Default: 0 + :t4hp: HP turbine time constant (T4hp). Typical Value = 0.1. Default: 0 + :t5hp: HP reheater time constant (T5hp). Typical Value = 10. Default: 0 + :fhp: Fraction of HP power ahead of reheater (Fhp). Typical Value = 0.3. Default: 0.0 + :dhp: HP damping factor (Dhp). Typical Value = 0. Default: 0.0 + :pmaxlp: Maximum LP value position (Pmaxlp). Typical Value = 1. Default: 0.0 + :rlp: LP governor droop (Rlp). Typical Value = 0.05. Default: 0.0 + :t1lp: LP governor time constant (T1lp). Typical Value = 0.1. Default: 0 + :t3lp: LP turbine time constant (T3lp). Typical Value = 0.1. Default: 0 + :t4lp: LP turbine time constant (T4lp). Typical Value = 0.1. Default: 0 + :t5lp: LP reheater time constant (T5lp). Typical Value = 10. Default: 0 + :flp: Fraction of LP power ahead of reheater (Flp). Typical Value = 0.7. Default: 0.0 + :dlp: LP damping factor (Dlp). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmaxhp": [ + cgmesProfile.DY.value, + ], + "rhp": [ + cgmesProfile.DY.value, + ], + "t1hp": [ + cgmesProfile.DY.value, + ], + "t3hp": [ + cgmesProfile.DY.value, + ], + "t4hp": [ + cgmesProfile.DY.value, + ], + "t5hp": [ + cgmesProfile.DY.value, + ], + "fhp": [ + cgmesProfile.DY.value, + ], + "dhp": [ + cgmesProfile.DY.value, + ], + "pmaxlp": [ + cgmesProfile.DY.value, + ], + "rlp": [ + cgmesProfile.DY.value, + ], + "t1lp": [ + cgmesProfile.DY.value, + ], + "t3lp": [ + cgmesProfile.DY.value, + ], + "t4lp": [ + cgmesProfile.DY.value, + ], + "t5lp": [ + cgmesProfile.DY.value, + ], + "flp": [ + cgmesProfile.DY.value, + ], + "dlp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmaxhp=0.0, + rhp=0.0, + t1hp=0, + t3hp=0, + t4hp=0, + t5hp=0, + fhp=0.0, + dhp=0.0, + pmaxlp=0.0, + rlp=0.0, + t1lp=0, + t3lp=0, + t4lp=0, + t5lp=0, + flp=0.0, + dlp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmaxhp = pmaxhp + self.rhp = rhp + self.t1hp = t1hp + self.t3hp = t3hp + self.t4hp = t4hp + self.t5hp = t5hp + self.fhp = fhp + self.dhp = dhp + self.pmaxlp = pmaxlp + self.rlp = rlp + self.t1lp = t1lp + self.t3lp = t3lp + self.t4lp = t4lp + self.t5lp = t5lp + self.flp = flp + self.dlp = dlp + + def __str__(self): + str = "class=GovSteamCC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamEU.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamEU.py new file mode 100644 index 00000000..efe70bf2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamEU.py @@ -0,0 +1,248 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamEU(TurbineGovernorDynamics): + """ + Simplified model of boiler and steam turbine with PID governor. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :tp: Power transducer time constant (Tp). Typical Value = 0.07. Default: 0 + :ke: Gain of the power controller (Ke). Typical Value = 0.65. Default: 0.0 + :tip: Integral time constant of the power controller (Tip). Typical Value = 2. Default: 0 + :tdp: Derivative time constant of the power controller (Tdp). Typical Value = 0. Default: 0 + :tfp: Time constant of the power controller (Tfp). Typical Value = 0. Default: 0 + :tf: Frequency transducer time constant (Tf). Typical Value = 0. Default: 0 + :kfcor: Gain of the frequency corrector (Kfcor). Typical Value = 20. Default: 0.0 + :db1: Dead band of the frequency corrector (db1). Typical Value = 0. Default: 0.0 + :wfmax: Upper limit for frequency correction (Wfmax). Typical Value = 0.05. Default: 0.0 + :wfmin: Lower limit for frequency correction (Wfmin). Typical Value = -0.05. Default: 0.0 + :pmax: Maximal active power of the turbine (Pmax). Typical Value = 1. Default: 0.0 + :ten: Electro hydraulic transducer (Ten). Typical Value = 0.1. Default: 0 + :tw: Speed transducer time constant (Tw). Typical Value = 0.02. Default: 0 + :kwcor: Gain of the speed governor (Kwcor). Typical Value = 20. Default: 0.0 + :db2: Dead band of the speed governor (db2). Typical Value = 0.0004. Default: 0.0 + :wwmax: Upper limit for the speed governor (Wwmax). Typical Value = 0.1. Default: 0.0 + :wwmin: Lower limit for the speed governor frequency correction (Wwmin). Typical Value = -1. Default: 0.0 + :wmax1: Emergency speed control lower limit (wmax1). Typical Value = 1.025. Default: 0.0 + :wmax2: Emergency speed control upper limit (wmax2). Typical Value = 1.05. Default: 0.0 + :tvhp: Control valves servo time constant (Tvhp). Typical Value = 0.1. Default: 0 + :cho: Control valves rate opening limit (Cho). Unit = PU/sec. Typical Value = 0.17. Default: 0.0 + :chc: Control valves rate closing limit (Chc). Unit = PU/sec. Typical Value = -3.3. Default: 0.0 + :hhpmax: Maximum control valve position (Hhpmax). Typical Value = 1. Default: 0.0 + :tvip: Intercept valves servo time constant (Tvip). Typical Value = 0.15. Default: 0 + :cio: Intercept valves rate opening limit (Cio). Typical Value = 0.123. Default: 0.0 + :cic: Intercept valves rate closing limit (Cic). Typical Value = -2.2. Default: 0.0 + :simx: Intercept valves transfer limit (Simx). Typical Value = 0.425. Default: 0.0 + :thp: High pressure (HP) time constant of the turbine (Thp). Typical Value = 0.31. Default: 0 + :trh: Reheater time constant of the turbine (Trh). Typical Value = 8. Default: 0 + :tlp: Low pressure(LP) time constant of the turbine (Tlp). Typical Value = 0.45. Default: 0 + :prhmax: Maximum low pressure limit (Prhmax). Typical Value = 1.4. Default: 0.0 + :khp: Fraction of total turbine output generated by HP part (Khp). Typical Value = 0.277. Default: 0.0 + :klp: Fraction of total turbine output generated by HP part (Klp). Typical Value = 0.723. Default: 0.0 + :tb: Boiler time constant (Tb). Typical Value = 100. Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "tip": [ + cgmesProfile.DY.value, + ], + "tdp": [ + cgmesProfile.DY.value, + ], + "tfp": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kfcor": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "wfmax": [ + cgmesProfile.DY.value, + ], + "wfmin": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "ten": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "kwcor": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "wwmax": [ + cgmesProfile.DY.value, + ], + "wwmin": [ + cgmesProfile.DY.value, + ], + "wmax1": [ + cgmesProfile.DY.value, + ], + "wmax2": [ + cgmesProfile.DY.value, + ], + "tvhp": [ + cgmesProfile.DY.value, + ], + "cho": [ + cgmesProfile.DY.value, + ], + "chc": [ + cgmesProfile.DY.value, + ], + "hhpmax": [ + cgmesProfile.DY.value, + ], + "tvip": [ + cgmesProfile.DY.value, + ], + "cio": [ + cgmesProfile.DY.value, + ], + "cic": [ + cgmesProfile.DY.value, + ], + "simx": [ + cgmesProfile.DY.value, + ], + "thp": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "tlp": [ + cgmesProfile.DY.value, + ], + "prhmax": [ + cgmesProfile.DY.value, + ], + "khp": [ + cgmesProfile.DY.value, + ], + "klp": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tp=0, + ke=0.0, + tip=0, + tdp=0, + tfp=0, + tf=0, + kfcor=0.0, + db1=0.0, + wfmax=0.0, + wfmin=0.0, + pmax=0.0, + ten=0, + tw=0, + kwcor=0.0, + db2=0.0, + wwmax=0.0, + wwmin=0.0, + wmax1=0.0, + wmax2=0.0, + tvhp=0, + cho=0.0, + chc=0.0, + hhpmax=0.0, + tvip=0, + cio=0.0, + cic=0.0, + simx=0.0, + thp=0, + trh=0, + tlp=0, + prhmax=0.0, + khp=0.0, + klp=0.0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tp = tp + self.ke = ke + self.tip = tip + self.tdp = tdp + self.tfp = tfp + self.tf = tf + self.kfcor = kfcor + self.db1 = db1 + self.wfmax = wfmax + self.wfmin = wfmin + self.pmax = pmax + self.ten = ten + self.tw = tw + self.kwcor = kwcor + self.db2 = db2 + self.wwmax = wwmax + self.wwmin = wwmin + self.wmax1 = wmax1 + self.wmax2 = wmax2 + self.tvhp = tvhp + self.cho = cho + self.chc = chc + self.hhpmax = hhpmax + self.tvip = tvip + self.cio = cio + self.cic = cic + self.simx = simx + self.thp = thp + self.trh = trh + self.tlp = tlp + self.prhmax = prhmax + self.khp = khp + self.klp = klp + self.tb = tb + + def __str__(self): + str = "class=GovSteamEU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV2.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV2.py new file mode 100644 index 00000000..0706b015 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV2.py @@ -0,0 +1,116 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV2(TurbineGovernorDynamics): + """ + Steam turbine governor with reheat time constants and modeling of the effects of fast valve closing to reduce mechanical power. + + :mwbase: Alternate Base used instead of Machine base in equipment model if necessary (MWbase) (>0). Unit = MW. Default: 0.0 + :r: (R). Default: 0.0 + :t1: Governor time constant (T1). Default: 0 + :vmax: (Vmax). Default: 0.0 + :vmin: (Vmin). Default: 0.0 + :k: Fraction of the turbine power developed by turbine sections not involved in fast valving (K). Default: 0.0 + :t3: Reheater time constant (T3). Default: 0 + :dt: (Dt). Default: 0.0 + :tt: Time constant with which power falls off after intercept valve closure (Tt). Default: 0 + :ta: Time after initial time for valve to close (Ta). Default: 0 + :tb: Time after initial time for valve to begin opening (Tb). Default: 0 + :tc: Time after initial time for valve to become fully open (Tc). Default: 0 + :ti: Initial time to begin fast valving (Ti). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "dt": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ti": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + vmax=0.0, + vmin=0.0, + k=0.0, + t3=0, + dt=0.0, + tt=0, + ta=0, + tb=0, + tc=0, + ti=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.vmax = vmax + self.vmin = vmin + self.k = k + self.t3 = t3 + self.dt = dt + self.tt = tt + self.ta = ta + self.tb = tb + self.tc = tc + self.ti = ti + + def __str__(self): + str = "class=GovSteamFV2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV3.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV3.py new file mode 100644 index 00000000..b2bb9ab1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV3.py @@ -0,0 +1,152 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV3(TurbineGovernorDynamics): + """ + Simplified GovSteamIEEE1 Steam turbine governor model with Prmax limit and fast valving. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :k: Governor gain, (reciprocal of droop) (K). Typical Value = 20. Default: 0.0 + :t1: Governor lead time constant (T1). Typical Value = 0. Default: 0 + :t2: Governor lag time constant (T2). Typical Value = 0. Default: 0 + :t3: Valve positioner time constant (T3). Typical Value = 0. Default: 0 + :uo: Maximum valve opening velocity (Uo). Unit = PU/sec. Typical Value = 0.1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc). Unit = PU/sec. Typical Value = -1. Default: 0.0 + :pmax: Maximum valve opening, PU of MWbase (Pmax). Typical Value = 1. Default: 0.0 + :pmin: Minimum valve opening, PU of MWbase (Pmin). Typical Value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.2. Default: 0 + :k1: Fraction of turbine power developed after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 + :t5: Time constant of second boiler pass (i.e. reheater) (T5). Typical Value = 0.5. Default: 0 + :k2: Fraction of turbine power developed after second boiler pass (K2). Typical Value = 0.2. Default: 0.0 + :t6: Time constant of crossover or third boiler pass (T6). Typical Value = 10. Default: 0 + :k3: Fraction of hp turbine power developed after crossover or third boiler pass (K3). Typical Value = 0.6. Default: 0.0 + :ta: Time to close intercept valve (IV) (Ta). Typical Value = 0.97. Default: 0 + :tb: Time until IV starts to reopen (Tb). Typical Value = 0.98. Default: 0 + :tc: Time until IV is fully open (Tc). Typical Value = 0.99. Default: 0 + :prmax: Max. pressure in reheater (Prmax). Typical Value = 1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "prmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + t5=0, + k2=0.0, + t6=0, + k3=0.0, + ta=0, + tb=0, + tc=0, + prmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.t5 = t5 + self.k2 = k2 + self.t6 = t6 + self.k3 = k3 + self.ta = ta + self.tb = tb + self.tc = tc + self.prmax = prmax + + def __str__(self): + str = "class=GovSteamFV3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV4.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV4.py new file mode 100644 index 00000000..3535a264 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamFV4.py @@ -0,0 +1,344 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV4(TurbineGovernorDynamics): + """ + Detailed electro-hydraulic governor for steam unit. + + :kf1: Frequency bias (reciprocal of droop) (Kf1). Typical Value = 20. Default: 0.0 + :kf3: Frequency control (reciprocal of droop) (Kf3). Typical Value = 20. Default: 0.0 + :lps: Maximum positive power error (Lps). Typical Value = 0.03. Default: 0.0 + :lpi: Maximum negative power error (Lpi). Typical Value = -0.15. Default: 0.0 + :mxef: Upper limit for frequency correction (MX). Typical Value = 0.05. Default: 0.0 + :mnef: Lower limit for frequency correction (MN). Typical Value = -0.05. Default: 0.0 + :crmx: Maximum value of regulator set-point (Crmx). Typical Value = 1.2. Default: 0.0 + :crmn: Minimum value of regulator set-point (Crmn). Typical Value = 0. Default: 0.0 + :kpt: Proportional gain of electro-hydraulic regulator (Kpt). Typical Value = 0.3. Default: 0.0 + :kit: Integral gain of electro-hydraulic regulator (Kit). Typical Value = 0.04. Default: 0.0 + :rvgmx: Maximum value of integral regulator (Rvgmx). Typical Value = 1.2. Default: 0.0 + :rvgmn: Minimum value of integral regulator (Rvgmn). Typical Value = 0. Default: 0.0 + :svmx: Maximum regulator gate opening velocity (Svmx). Typical Value = 0.0333. Default: 0.0 + :svmn: Maximum regulator gate closing velocity (Svmn). Typical Value = -0.0333. Default: 0.0 + :srmx: Maximum valve opening (Srmx). Typical Value = 1.1. Default: 0.0 + :srmn: Minimum valve opening (Srmn). Typical Value = 0. Default: 0.0 + :kpp: Proportional gain of pressure feedback regulator (Kpp). Typical Value = 1. Default: 0.0 + :kip: Integral gain of pressure feedback regulator (Kip). Typical Value = 0.5. Default: 0.0 + :rsmimx: Maximum value of integral regulator (Rsmimx). Typical Value = 1.1. Default: 0.0 + :rsmimn: Minimum value of integral regulator (Rsmimn). Typical Value = 0. Default: 0.0 + :kmp1: First gain coefficient of intercept valves characteristic (Kmp1). Typical Value = 0.5. Default: 0.0 + :kmp2: Second gain coefficient of intercept valves characteristic (Kmp2). Typical Value = 3.5. Default: 0.0 + :srsmp: Intercept valves characteristic discontinuity point (Srsmp). Typical Value = 0.43. Default: 0.0 + :ta: Control valves rate opening time (Ta). Typical Value = 0.8. Default: 0 + :tc: Control valves rate closing time (Tc). Typical Value = 0.5. Default: 0 + :ty: Control valves servo time constant (Ty). Typical Value = 0.1. Default: 0 + :yhpmx: Maximum control valve position (Yhpmx). Typical Value = 1.1. Default: 0.0 + :yhpmn: Minimum control valve position (Yhpmn). Typical Value = 0. Default: 0.0 + :tam: Intercept valves rate opening time (Tam). Typical Value = 0.8. Default: 0 + :tcm: Intercept valves rate closing time (Tcm). Typical Value = 0.5. Default: 0 + :ympmx: Maximum intercept valve position (Ympmx). Typical Value = 1.1. Default: 0.0 + :ympmn: Minimum intercept valve position (Ympmn). Typical Value = 0. Default: 0.0 + :y: Coefficient of linearized equations of turbine (Stodola formulation) (Y). Typical Value = 0.13. Default: 0.0 + :thp: High pressure (HP) time constant of the turbine (Thp). Typical Value = 0.15. Default: 0 + :trh: Reheater time constant of the turbine (Trh). Typical Value = 10. Default: 0 + :tmp: Low pressure (LP) time constant of the turbine (Tmp). Typical Value = 0.4. Default: 0 + :khp: Fraction of total turbine output generated by HP part (Khp). Typical Value = 0.35. Default: 0.0 + :pr1: First value of pressure set point static characteristic (Pr1). Typical Value = 0.2. Default: 0.0 + :pr2: Second value of pressure set point static characteristic, corresponding to Ps0 = 1.0 PU (Pr2). Typical Value = 0.75. Default: 0.0 + :psmn: Minimum value of pressure set point static characteristic (Psmn). Typical Value = 1. Default: 0.0 + :kpc: Proportional gain of pressure regulator (Kpc). Typical Value = 0.5. Default: 0.0 + :kic: Integral gain of pressure regulator (Kic). Typical Value = 0.0033. Default: 0.0 + :kdc: Derivative gain of pressure regulator (Kdc). Typical Value = 1. Default: 0.0 + :tdc: Derivative time constant of pressure regulator (Tdc). Typical Value = 90. Default: 0 + :cpsmx: Maximum value of pressure regulator output (Cpsmx). Typical Value = 1. Default: 0.0 + :cpsmn: Minimum value of pressure regulator output (Cpsmn). Typical Value = -1. Default: 0.0 + :krc: Maximum variation of fuel flow (Krc). Typical Value = 0.05. Default: 0.0 + :tf1: Time constant of fuel regulation (Tf1). Typical Value = 10. Default: 0 + :tf2: Time constant of steam chest (Tf2). Typical Value = 10. Default: 0 + :tv: Boiler time constant (Tv). Typical Value = 60. Default: 0 + :ksh: Pressure loss due to flow friction in the boiler tubes (Ksh). Typical Value = 0.08. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf3": [ + cgmesProfile.DY.value, + ], + "lps": [ + cgmesProfile.DY.value, + ], + "lpi": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + "crmx": [ + cgmesProfile.DY.value, + ], + "crmn": [ + cgmesProfile.DY.value, + ], + "kpt": [ + cgmesProfile.DY.value, + ], + "kit": [ + cgmesProfile.DY.value, + ], + "rvgmx": [ + cgmesProfile.DY.value, + ], + "rvgmn": [ + cgmesProfile.DY.value, + ], + "svmx": [ + cgmesProfile.DY.value, + ], + "svmn": [ + cgmesProfile.DY.value, + ], + "srmx": [ + cgmesProfile.DY.value, + ], + "srmn": [ + cgmesProfile.DY.value, + ], + "kpp": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "rsmimx": [ + cgmesProfile.DY.value, + ], + "rsmimn": [ + cgmesProfile.DY.value, + ], + "kmp1": [ + cgmesProfile.DY.value, + ], + "kmp2": [ + cgmesProfile.DY.value, + ], + "srsmp": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ty": [ + cgmesProfile.DY.value, + ], + "yhpmx": [ + cgmesProfile.DY.value, + ], + "yhpmn": [ + cgmesProfile.DY.value, + ], + "tam": [ + cgmesProfile.DY.value, + ], + "tcm": [ + cgmesProfile.DY.value, + ], + "ympmx": [ + cgmesProfile.DY.value, + ], + "ympmn": [ + cgmesProfile.DY.value, + ], + "y": [ + cgmesProfile.DY.value, + ], + "thp": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "tmp": [ + cgmesProfile.DY.value, + ], + "khp": [ + cgmesProfile.DY.value, + ], + "pr1": [ + cgmesProfile.DY.value, + ], + "pr2": [ + cgmesProfile.DY.value, + ], + "psmn": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "kic": [ + cgmesProfile.DY.value, + ], + "kdc": [ + cgmesProfile.DY.value, + ], + "tdc": [ + cgmesProfile.DY.value, + ], + "cpsmx": [ + cgmesProfile.DY.value, + ], + "cpsmn": [ + cgmesProfile.DY.value, + ], + "krc": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "ksh": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + kf1=0.0, + kf3=0.0, + lps=0.0, + lpi=0.0, + mxef=0.0, + mnef=0.0, + crmx=0.0, + crmn=0.0, + kpt=0.0, + kit=0.0, + rvgmx=0.0, + rvgmn=0.0, + svmx=0.0, + svmn=0.0, + srmx=0.0, + srmn=0.0, + kpp=0.0, + kip=0.0, + rsmimx=0.0, + rsmimn=0.0, + kmp1=0.0, + kmp2=0.0, + srsmp=0.0, + ta=0, + tc=0, + ty=0, + yhpmx=0.0, + yhpmn=0.0, + tam=0, + tcm=0, + ympmx=0.0, + ympmn=0.0, + y=0.0, + thp=0, + trh=0, + tmp=0, + khp=0.0, + pr1=0.0, + pr2=0.0, + psmn=0.0, + kpc=0.0, + kic=0.0, + kdc=0.0, + tdc=0, + cpsmx=0.0, + cpsmn=0.0, + krc=0.0, + tf1=0, + tf2=0, + tv=0, + ksh=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kf1 = kf1 + self.kf3 = kf3 + self.lps = lps + self.lpi = lpi + self.mxef = mxef + self.mnef = mnef + self.crmx = crmx + self.crmn = crmn + self.kpt = kpt + self.kit = kit + self.rvgmx = rvgmx + self.rvgmn = rvgmn + self.svmx = svmx + self.svmn = svmn + self.srmx = srmx + self.srmn = srmn + self.kpp = kpp + self.kip = kip + self.rsmimx = rsmimx + self.rsmimn = rsmimn + self.kmp1 = kmp1 + self.kmp2 = kmp2 + self.srsmp = srsmp + self.ta = ta + self.tc = tc + self.ty = ty + self.yhpmx = yhpmx + self.yhpmn = yhpmn + self.tam = tam + self.tcm = tcm + self.ympmx = ympmx + self.ympmn = ympmn + self.y = y + self.thp = thp + self.trh = trh + self.tmp = tmp + self.khp = khp + self.pr1 = pr1 + self.pr2 = pr2 + self.psmn = psmn + self.kpc = kpc + self.kic = kic + self.kdc = kdc + self.tdc = tdc + self.cpsmx = cpsmx + self.cpsmn = cpsmn + self.krc = krc + self.tf1 = tf1 + self.tf2 = tf2 + self.tv = tv + self.ksh = ksh + + def __str__(self): + str = "class=GovSteamFV4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py new file mode 100644 index 00000000..d6995431 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamIEEE1.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamIEEE1(TurbineGovernorDynamics): + """ + IEEE steam turbine governor model. Ref + + :mwbase: Base for power values (MWbase) (> 0) Default: 0.0 + :k: Governor gain (reciprocal of droop) (K) (> 0). Typical Value = 25. Default: 0.0 + :t1: Governor lag time constant (T1). Typical Value = 0. Default: 0 + :t2: Governor lead time constant (T2). Typical Value = 0. Default: 0 + :t3: Valve positioner time constant (T3) (> 0). Typical Value = 0.1. Default: 0 + :uo: Maximum valve opening velocity (Uo) (> 0). Unit = PU/sec. Typical Value = 1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc) (< 0). Unit = PU/sec. Typical Value = -10. Default: 0.0 + :pmax: Maximum valve opening (Pmax) (> Pmin). Typical Value = 1. Default: 0.0 + :pmin: Minimum valve opening (Pmin) (>= 0). Typical Value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4). Typical Value = 0.3. Default: 0 + :k1: Fraction of HP shaft power after first boiler pass (K1). Typical Value = 0.2. Default: 0.0 + :k2: Fraction of LP shaft power after first boiler pass (K2). Typical Value = 0. Default: 0.0 + :t5: Time constant of second boiler pass (T5). Typical Value = 5. Default: 0 + :k3: Fraction of HP shaft power after second boiler pass (K3). Typical Value = 0.3. Default: 0.0 + :k4: Fraction of LP shaft power after second boiler pass (K4). Typical Value = 0. Default: 0.0 + :t6: Time constant of third boiler pass (T6). Typical Value = 0.5. Default: 0 + :k5: Fraction of HP shaft power after third boiler pass (K5). Typical Value = 0.5. Default: 0.0 + :k6: Fraction of LP shaft power after third boiler pass (K6). Typical Value = 0. Default: 0.0 + :t7: Time constant of fourth boiler pass (T7). Typical Value = 0. Default: 0 + :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical Value = 0. Default: 0.0 + :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "k7": [ + cgmesProfile.DY.value, + ], + "k8": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + k2=0.0, + t5=0, + k3=0.0, + k4=0.0, + t6=0, + k5=0.0, + k6=0.0, + t7=0, + k7=0.0, + k8=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.k2 = k2 + self.t5 = t5 + self.k3 = k3 + self.k4 = k4 + self.t6 = t6 + self.k5 = k5 + self.k6 = k6 + self.t7 = t7 + self.k7 = k7 + self.k8 = k8 + + def __str__(self): + str = "class=GovSteamIEEE1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamSGO.py b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamSGO.py new file mode 100644 index 00000000..d93658d6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GovSteamSGO.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamSGO(TurbineGovernorDynamics): + """ + Simplified Steam turbine governor model. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :t1: Controller lag (T1). Default: 0 + :t2: Controller lead compensation (T2). Default: 0 + :t3: Governor lag (T3) (>0). Default: 0 + :t4: Delay due to steam inlet volumes associated with steam chest and inlet piping (T4). Default: 0 + :t5: Reheater delay including hot and cold leads (T5). Default: 0 + :t6: Delay due to IP-LP turbine, crossover pipes and LP end hoods (T6). Default: 0 + :k1: One/per unit regulation (K1). Default: 0.0 + :k2: Fraction (K2). Default: 0.0 + :k3: Fraction (K3). Default: 0.0 + :pmax: Upper power limit (Pmax). Default: 0.0 + :pmin: Lower power limit (Pmin). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + k1=0.0, + k2=0.0, + k3=0.0, + pmax=0.0, + pmin=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.pmax = pmax + self.pmin = pmin + + def __str__(self): + str = "class=GovSteamSGO\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py b/cimpy_3/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py new file mode 100644 index 00000000..5cdf48c4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GrossToNetActivePowerCurve.py @@ -0,0 +1,36 @@ +from .Curve import Curve + + +class GrossToNetActivePowerCurve(Curve): + """ + Relationship between the generating unit's gross active power output on the X-axis (measured at the terminals of the machine(s)) and the generating unit's net active power output on the Y-axis (based on utility-defined measurements at the power station). Station service loads, when modeled, should be treated as non-conforming bus loads. There may be more than one curve, depending on the auxiliary equipment that is in service. + + :GeneratingUnit: A generating unit may have a gross active power to net active power curve, describing the losses and auxiliary power requirements of the unit. Default: None + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__(self, GeneratingUnit=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.GeneratingUnit = GeneratingUnit + + def __str__(self): + str = "class=GrossToNetActivePowerCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Ground.py b/cimpy_3/cimpy/cgmes_v2_4_15/Ground.py new file mode 100644 index 00000000..0c4cc652 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Ground.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class Ground(ConductingEquipment): + """ + A point where the system is grounded used for connecting conducting equipment to ground. The power system model can have any number of grounds. + + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Ground\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GroundDisconnector.py b/cimpy_3/cimpy/cgmes_v2_4_15/GroundDisconnector.py new file mode 100644 index 00000000..3d2430d2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GroundDisconnector.py @@ -0,0 +1,33 @@ +from cimpy.cgmes_v2_4_15.Switch import Switch + + +class GroundDisconnector(Switch): + """ + A manually operated or motor operated mechanical switching device used for isolating a circuit or equipment from ground. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=GroundDisconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/GroundingImpedance.py b/cimpy_3/cimpy/cgmes_v2_4_15/GroundingImpedance.py new file mode 100644 index 00000000..d653216d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/GroundingImpedance.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.EarthFaultCompensator import EarthFaultCompensator + + +class GroundingImpedance(EarthFaultCompensator): + """ + A fixed impedance device used for grounding. + + :x: Reactance of device. Default: 0.0 + """ + + cgmesProfile = EarthFaultCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EarthFaultCompensator: \n" + + EarthFaultCompensator.__doc__ + ) + + def __init__(self, x=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.x = x + + def __str__(self): + str = "class=GroundingImpedance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py new file mode 100644 index 00000000..28412828 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/HydroEnergyConversionKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class HydroEnergyConversionKind(Base): + """ + Specifies the capability of the hydro generating unit to convert energy as a generator or pump. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=HydroEnergyConversionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py new file mode 100644 index 00000000..3b957229 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/HydroGeneratingUnit.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.GeneratingUnit import GeneratingUnit + + +class HydroGeneratingUnit(GeneratingUnit): + """ + A generating unit whose prime mover is a hydraulic turbine (e.g., Francis, Pelton, Kaplan). + + :energyConversionCapability: Energy conversion capability for generating. Default: None + :HydroPowerPlant: The hydro generating unit belongs to a hydro power plant. Default: None + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "energyConversionCapability": [ + cgmesProfile.EQ.value, + ], + "HydroPowerPlant": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__( + self, energyConversionCapability=None, HydroPowerPlant=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.energyConversionCapability = energyConversionCapability + self.HydroPowerPlant = HydroPowerPlant + + def __str__(self): + str = "class=HydroGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py new file mode 100644 index 00000000..73093714 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPlantStorageKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class HydroPlantStorageKind(Base): + """ + The type of hydro power plant. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=HydroPlantStorageKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/HydroPowerPlant.py b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPowerPlant.py new file mode 100644 index 00000000..01b4f5a2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPowerPlant.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class HydroPowerPlant(PowerSystemResource): + """ + A hydro power station which can generate or pump. When generating, the generator turbines receive water from an upper reservoir. When pumping, the pumps receive their water from a lower reservoir. + + :HydroGeneratingUnits: The hydro generating unit belongs to a hydro power plant. Default: "list" + :hydroPlantStorageType: The type of hydro power plant water storage. Default: None + :HydroPumps: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "HydroGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + "hydroPlantStorageType": [ + cgmesProfile.EQ.value, + ], + "HydroPumps": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + HydroGeneratingUnits="list", + hydroPlantStorageType=None, + HydroPumps="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.HydroGeneratingUnits = HydroGeneratingUnits + self.hydroPlantStorageType = hydroPlantStorageType + self.HydroPumps = HydroPumps + + def __str__(self): + str = "class=HydroPowerPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/HydroPump.py b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPump.py new file mode 100644 index 00000000..143e5aae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/HydroPump.py @@ -0,0 +1,41 @@ +from cimpy.cgmes_v2_4_15.Equipment import Equipment + + +class HydroPump(Equipment): + """ + A synchronous motor-driven pump, typically associated with a pumped storage plant. + + :HydroPowerPlant: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: None + :RotatingMachine: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "HydroPowerPlant": [ + cgmesProfile.EQ.value, + ], + "RotatingMachine": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__(self, HydroPowerPlant=None, RotatingMachine=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.HydroPowerPlant = HydroPowerPlant + self.RotatingMachine = RotatingMachine + + def __str__(self): + str = "class=HydroPump\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/IdentifiedObject.py b/cimpy_3/cimpy/cgmes_v2_4_15/IdentifiedObject.py new file mode 100644 index 00000000..9357085e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/IdentifiedObject.py @@ -0,0 +1,88 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class IdentifiedObject(Base): + """ + This is a root class to provide common identification for all classes needing identification and naming attributes. + + :DiagramObjects: The domain object to which this diagram object is associated. Default: "list" + :mRID: Master resource identifier issued by a model authority. The mRID is globally unique within an exchange context. Global uniqueness is easily achieved by using a UUID, as specified in RFC 4122, for the mRID. The use of UUID is strongly recommended. For CIMXML data files in RDF syntax conforming to IEC 61970-552 Edition 1, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements. Default: '' + :name: The name is any free human readable and possibly non unique text naming the object. Default: '' + :description: The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy. Default: '' + :energyIdentCodeEic: The attribute is used for an exchange of the EIC code (Energy identification Code). The length of the string is 16 characters as defined by the EIC code. References: Default: '' + :shortName: The attribute is used for an exchange of a human readable short name with length of the string 12 characters maximum. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "DiagramObjects": [ + cgmesProfile.DI.value, + ], + "mRID": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "name": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "description": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "energyIdentCodeEic": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "shortName": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DiagramObjects="list", + mRID="", + name="", + description="", + energyIdentCodeEic="", + shortName="", + ): + + self.DiagramObjects = DiagramObjects + self.mRID = mRID + self.name = name + self.description = description + self.energyIdentCodeEic = energyIdentCodeEic + self.shortName = shortName + + def __str__(self): + str = "class=IdentifiedObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/IfdBaseKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/IfdBaseKind.py new file mode 100644 index 00000000..8a178786 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/IfdBaseKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class IfdBaseKind(Base): + """ + Excitation base system mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=IfdBaseKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Inductance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Inductance.py new file mode 100644 index 00000000..fec24288 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Inductance.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Inductance(Base): + """ + Inductive part of reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Inductance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/InductancePerLength.py b/cimpy_3/cimpy/cgmes_v2_4_15/InductancePerLength.py new file mode 100644 index 00000000..8d157214 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/InductancePerLength.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class InductancePerLength(Base): + """ + Inductance per unit of length. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + :denominatorUnit: Default: None + :denominatorMultiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + denominatorUnit=None, + denominatorMultiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + self.denominatorUnit = denominatorUnit + self.denominatorMultiplier = denominatorMultiplier + + def __str__(self): + str = "class=InductancePerLength\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/InputSignalKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/InputSignalKind.py new file mode 100644 index 00000000..cdc85b61 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/InputSignalKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class InputSignalKind(Base): + """ + Input signal type. In Dynamics modelling, commonly represented by j parameter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=InputSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Integer.py b/cimpy_3/cimpy/cgmes_v2_4_15/Integer.py new file mode 100644 index 00000000..e6c8ff3c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Integer.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Integer(Base): + """ + An integer number. The range is unspecified and not limited. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Integer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Junction.py b/cimpy_3/cimpy/cgmes_v2_4_15/Junction.py new file mode 100644 index 00000000..8143bfee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Junction.py @@ -0,0 +1,32 @@ +from cimpy.cgmes_v2_4_15.Connector import Connector + + +class Junction(Connector): + """ + A point where one or more conducting equipments are connected with zero resistance. + + """ + + cgmesProfile = Connector.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Connector: \n" + Connector.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Junction\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Length.py b/cimpy_3/cimpy/cgmes_v2_4_15/Length.py new file mode 100644 index 00000000..a43cbc0b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Length.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Length(Base): + """ + Unit of length. Never negative. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Length\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Limit.py b/cimpy_3/cimpy/cgmes_v2_4_15/Limit.py new file mode 100644 index 00000000..c964ec11 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Limit.py @@ -0,0 +1,35 @@ +from .IdentifiedObject import IdentifiedObject + + +class Limit(IdentifiedObject): + """ + Specifies one limit value for a Measurement. A Measurement typically has several limits that are kept together by the LimitSet class. The actual meaning and use of a Limit instance (i.e., if it is an alarm or warning limit or if it is a high or low limit) is not captured in the Limit class. However the name of a Limit instance may indicate both meaning and use. + + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Limit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LimitSet.py b/cimpy_3/cimpy/cgmes_v2_4_15/LimitSet.py new file mode 100644 index 00000000..d06c0138 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LimitSet.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class LimitSet(IdentifiedObject): + """ + Specifies a set of Limits that are associated with a Measurement. A Measurement may have several LimitSets corresponding to seasonal or other changing conditions. The condition is captured in the name and description attributes. The same LimitSet may be used for several Measurements. In particular percentage limits are used this way. + + :isPercentageLimits: Tells if the limit values are in percentage of normalValue or the specified Unit for Measurements and Controls. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "isPercentageLimits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, isPercentageLimits=False, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.isPercentageLimits = isPercentageLimits + + def __str__(self): + str = "class=LimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LimitTypeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/LimitTypeKind.py new file mode 100644 index 00000000..1d6e09e0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LimitTypeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class LimitTypeKind(Base): + """ + The enumeration defines the kinds of the limit types. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=LimitTypeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Line.py b/cimpy_3/cimpy/cgmes_v2_4_15/Line.py new file mode 100644 index 00000000..b9d763b4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Line.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.EquipmentContainer import EquipmentContainer + + +class Line(EquipmentContainer): + """ + Contains equipment beyond a substation belonging to a power transmission line. + + :Region: The sub-geographical region of the line. Default: None + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, Region=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Region = Region + + def __str__(self): + str = "class=Line\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py new file mode 100644 index 00000000..35e1fdd6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LinearShuntCompensator.py @@ -0,0 +1,63 @@ +from cimpy.cgmes_v2_4_15.ShuntCompensator import ShuntCompensator + + +class LinearShuntCompensator(ShuntCompensator): + """ + A linear shunt compensator has banks or sections with equal admittance values. + + :bPerSection: Positive sequence shunt (charging) susceptance per section Default: 0.0 + :gPerSection: Positive sequence shunt (charging) conductance per section Default: 0.0 + :b0PerSection: Zero sequence shunt (charging) susceptance per section Default: 0.0 + :g0PerSection: Zero sequence shunt (charging) conductance per section Default: 0.0 + """ + + cgmesProfile = ShuntCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "bPerSection": [ + cgmesProfile.EQ.value, + ], + "gPerSection": [ + cgmesProfile.EQ.value, + ], + "b0PerSection": [ + cgmesProfile.EQ.value, + ], + "g0PerSection": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ShuntCompensator: \n" + + ShuntCompensator.__doc__ + ) + + def __init__( + self, + bPerSection=0.0, + gPerSection=0.0, + b0PerSection=0.0, + g0PerSection=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bPerSection = bPerSection + self.gPerSection = gPerSection + self.b0PerSection = b0PerSection + self.g0PerSection = g0PerSection + + def __str__(self): + str = "class=LinearShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadAggregate.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadAggregate.py new file mode 100644 index 00000000..e381716f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadAggregate.py @@ -0,0 +1,43 @@ +from cimpy.cgmes_v2_4_15.LoadDynamics import LoadDynamics + + +class LoadAggregate(LoadDynamics): + """ + Standard aggregate load model comprised of static and/or dynamic components. A static load model represents the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. A dynamic load model can used to represent the aggregate response of the motor components of the load. + + :LoadStatic: Aggregate static load associated with this aggregate load. Default: None + :LoadMotor: Aggregate motor (dynamic) load associated with this aggregate load. Default: None + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadStatic": [ + cgmesProfile.DY.value, + ], + "LoadMotor": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__(self, LoadStatic=None, LoadMotor=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadStatic = LoadStatic + self.LoadMotor = LoadMotor + + def __str__(self): + str = "class=LoadAggregate\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadArea.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadArea.py new file mode 100644 index 00000000..c1892ecc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadArea.py @@ -0,0 +1,36 @@ +from .EnergyArea import EnergyArea + + +class LoadArea(EnergyArea): + """ + The class is the root or first level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + :SubLoadAreas: The SubLoadAreas in the LoadArea. Default: "list" + """ + + cgmesProfile = EnergyArea.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SubLoadAreas": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class EnergyArea: \n" + EnergyArea.__doc__ + + def __init__(self, SubLoadAreas="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SubLoadAreas = SubLoadAreas + + def __str__(self): + str = "class=LoadArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py new file mode 100644 index 00000000..23907667 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadBreakSwitch.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.ProtectedSwitch import ProtectedSwitch + + +class LoadBreakSwitch(ProtectedSwitch): + """ + A mechanical switching device capable of making, carrying, and breaking currents under normal operating conditions. + + """ + + cgmesProfile = ProtectedSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ProtectedSwitch: \n" + ProtectedSwitch.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=LoadBreakSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadComposite.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadComposite.py new file mode 100644 index 00000000..c37b2e42 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadComposite.py @@ -0,0 +1,103 @@ +from cimpy.cgmes_v2_4_15.LoadDynamics import LoadDynamics + + +class LoadComposite(LoadDynamics): + """ + This models combines static load and induction motor load effects. The dynamics of the motor are simplified by linearizing the induction machine equations. + + :epvs: Active load-voltage dependence index (static) (Epvs). Typical Value = 0.7. Default: 0.0 + :epfs: Active load-frequency dependence index (static) (Epfs). Typical Value = 1.5. Default: 0.0 + :eqvs: Reactive load-voltage dependence index (static) (Eqvs). Typical Value = 2. Default: 0.0 + :eqfs: Reactive load-frequency dependence index (static) (Eqfs). Typical Value = 0. Default: 0.0 + :epvd: Active load-voltage dependence index (dynamic) (Epvd). Typical Value = 0.7. Default: 0.0 + :epfd: Active load-frequency dependence index (dynamic) (Epfd). Typical Value = 1.5. Default: 0.0 + :eqvd: Reactive load-voltage dependence index (dynamic) (Eqvd). Typical Value = 2. Default: 0.0 + :eqfd: Reactive load-frequency dependence index (dynamic) (Eqfd). Typical Value = 0. Default: 0.0 + :lfrac: Loading factor - ratio of initial P to motor MVA base (Lfrac). Typical Value = 0.8. Default: 0.0 + :h: Inertia constant (H). Typical Value = 2.5. Default: 0 + :pfrac: Fraction of constant-power load to be represented by this motor model (Pfrac) (>=0.0 and <=1.0). Typical Value = 0.5. Default: 0.0 + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "epvs": [ + cgmesProfile.DY.value, + ], + "epfs": [ + cgmesProfile.DY.value, + ], + "eqvs": [ + cgmesProfile.DY.value, + ], + "eqfs": [ + cgmesProfile.DY.value, + ], + "epvd": [ + cgmesProfile.DY.value, + ], + "epfd": [ + cgmesProfile.DY.value, + ], + "eqvd": [ + cgmesProfile.DY.value, + ], + "eqfd": [ + cgmesProfile.DY.value, + ], + "lfrac": [ + cgmesProfile.DY.value, + ], + "h": [ + cgmesProfile.DY.value, + ], + "pfrac": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, + epvs=0.0, + epfs=0.0, + eqvs=0.0, + eqfs=0.0, + epvd=0.0, + epfd=0.0, + eqvd=0.0, + eqfd=0.0, + lfrac=0.0, + h=0, + pfrac=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.epvs = epvs + self.epfs = epfs + self.eqvs = eqvs + self.eqfs = eqfs + self.epvd = epvd + self.epfd = epfd + self.eqvd = eqvd + self.eqfd = eqfd + self.lfrac = lfrac + self.h = h + self.pfrac = pfrac + + def __str__(self): + str = "class=LoadComposite\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadDynamics.py new file mode 100644 index 00000000..7169864c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadDynamics.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class LoadDynamics(IdentifiedObject): + """ + Load whose behaviour is described by reference to a standard model A standard feature of dynamic load behaviour modelling is the ability to associate the same behaviour to multiple energy consumers by means of a single aggregate load definition. Aggregate loads are used to represent all or part of the real and reactive load from one or more loads in the static (power flow) data. This load is usually the aggregation of many individual load devices and the load model is approximate representation of the aggregate response of the load devices to system disturbances. The load model is always applied to individual bus loads (energy consumers) but a single set of load model parameters can used for all loads in the grouping. + + :EnergyConsumer: Energy consumer to which this dynamics load model applies. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "EnergyConsumer": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, EnergyConsumer="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EnergyConsumer = EnergyConsumer + + def __str__(self): + str = "class=LoadDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py new file mode 100644 index 00000000..fbc3ac74 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadGenericNonLinear.py @@ -0,0 +1,91 @@ +from cimpy.cgmes_v2_4_15.LoadDynamics import LoadDynamics + + +class LoadGenericNonLinear(LoadDynamics): + """ + These load models (known also as generic non-linear dynamic (GNLD) load models) can be used in mid-term and long-term voltage stability simulations (i.e., to study voltage collapse), as they can replace a more detailed representation of aggregate load, including induction motors, thermostatically controlled and static loads. + + :genericNonLinearLoadModelType: Type of generic non-linear load model. Default: None + :pt: Dynamic portion of active load (P). Default: 0.0 + :qt: Dynamic portion of reactive load (Q). Default: 0.0 + :tp: Time constant of lag function of active power (T). Default: 0 + :tq: Time constant of lag function of reactive power (T). Default: 0 + :ls: Steady state voltage index for active power (LS). Default: 0.0 + :lt: Transient voltage index for active power (LT). Default: 0.0 + :bs: Steady state voltage index for reactive power (BS). Default: 0.0 + :bt: Transient voltage index for reactive power (BT). Default: 0.0 + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "genericNonLinearLoadModelType": [ + cgmesProfile.DY.value, + ], + "pt": [ + cgmesProfile.DY.value, + ], + "qt": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tq": [ + cgmesProfile.DY.value, + ], + "ls": [ + cgmesProfile.DY.value, + ], + "lt": [ + cgmesProfile.DY.value, + ], + "bs": [ + cgmesProfile.DY.value, + ], + "bt": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, + genericNonLinearLoadModelType=None, + pt=0.0, + qt=0.0, + tp=0, + tq=0, + ls=0.0, + lt=0.0, + bs=0.0, + bt=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.genericNonLinearLoadModelType = genericNonLinearLoadModelType + self.pt = pt + self.qt = qt + self.tp = tp + self.tq = tq + self.ls = ls + self.lt = lt + self.bs = bs + self.bt = bt + + def __str__(self): + str = "class=LoadGenericNonLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadGroup.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadGroup.py new file mode 100644 index 00000000..a5aab53e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadGroup.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class LoadGroup(IdentifiedObject): + """ + The class is the third level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=LoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadMotor.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadMotor.py new file mode 100644 index 00000000..d709c7ea --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadMotor.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class LoadMotor(IdentifiedObject): + """ + Aggregate induction motor load. This model is used to represent a fraction of an ordinary load as "induction motor load". It allows load that is treated as ordinary constant power in power flow analysis to be represented by an induction motor in dynamic simulation. If = 0. or = , or = 0., only one cage is represented. Magnetic saturation is not modelled. Either a "one-cage" or "two-cage" model of the induction machine can be modelled. Magnetic saturation is not modelled. This model is intended for representation of aggregations of many motors dispersed through a load represented at a high voltage bus but where there is no information on the characteristics of individual motors. This model treats a fraction of the constant power part of a load as a motor. During initialisation, the initial power drawn by the motor is set equal to times the constant part of the static load. The remainder of the load is left as static load. The reactive power demand of the motor is calculated during initialisation as a function of voltage at the load bus. This reactive power demand may be less than or greater than the constant component of the load. If the motor's reactive demand is greater than the constant component of the load, the model inserts a shunt capacitor at the terminal of the motor to bring its reactive demand down to equal the constant reactive load. If a motor model and a static load model are both present for a load, the motor is assumed to be subtracted from the power flow constant load before the static load model is applied. The remainder of the load, if any, is then represented by the static load model. + + :LoadAggregate: Aggregate load to which this aggregate motor (dynamic) load belongs. Default: None + :pfrac: Fraction of constant-power load to be represented by this motor model (Pfrac) (>=0.0 and <=1.0). Typical Value = 0.3. Default: 0.0 + :lfac: Loading factor - ratio of initial P to motor MVA base (Lfac). Typical Value = 0.8. Default: 0.0 + :ls: Synchronous reactance (Ls). Typical Value = 3.2. Default: 0.0 + :lp: Transient reactance (Lp). Typical Value = 0.15. Default: 0.0 + :lpp: Subtransient reactance (Lpp). Typical Value = 0.15. Default: 0.0 + :ra: Stator resistance (Ra). Typical Value = 0. Default: 0.0 + :tpo: Transient rotor time constant (Tpo) (not=0). Typical Value = 1. Default: 0 + :tppo: Subtransient rotor time constant (Tppo). Typical Value = 0.02. Default: 0 + :h: Inertia constant (H) (not=0). Typical Value = 0.4. Default: 0 + :d: Damping factor (D). Unit = delta P/delta speed. Typical Value = 2. Default: 0.0 + :vt: Voltage threshold for tripping (Vt). Typical Value = 0.7. Default: 0.0 + :tv: Voltage trip pickup time (Tv). Typical Value = 0.1. Default: 0 + :tbkr: Circuit breaker operating time (Tbkr). Typical Value = 0.08. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadAggregate": [ + cgmesProfile.DY.value, + ], + "pfrac": [ + cgmesProfile.DY.value, + ], + "lfac": [ + cgmesProfile.DY.value, + ], + "ls": [ + cgmesProfile.DY.value, + ], + "lp": [ + cgmesProfile.DY.value, + ], + "lpp": [ + cgmesProfile.DY.value, + ], + "ra": [ + cgmesProfile.DY.value, + ], + "tpo": [ + cgmesProfile.DY.value, + ], + "tppo": [ + cgmesProfile.DY.value, + ], + "h": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "vt": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "tbkr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + LoadAggregate=None, + pfrac=0.0, + lfac=0.0, + ls=0.0, + lp=0.0, + lpp=0.0, + ra=0.0, + tpo=0, + tppo=0, + h=0, + d=0.0, + vt=0.0, + tv=0, + tbkr=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.LoadAggregate = LoadAggregate + self.pfrac = pfrac + self.lfac = lfac + self.ls = ls + self.lp = lp + self.lpp = lpp + self.ra = ra + self.tpo = tpo + self.tppo = tppo + self.h = h + self.d = d + self.vt = vt + self.tv = tv + self.tbkr = tbkr + + def __str__(self): + str = "class=LoadMotor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py new file mode 100644 index 00000000..1a67b88f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadResponseCharacteristic.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class LoadResponseCharacteristic(IdentifiedObject): + """ + Models the characteristic response of the load demand due to changes in system conditions such as voltage and frequency. This is not related to demand response. If LoadResponseCharacteristic.exponentModel is True, the voltage exponents are specified and used as to calculate: Active power component = Pnominal * (Voltage/cim:BaseVoltage.nominalVoltage) ** cim:LoadResponseCharacteristic.pVoltageExponent Reactive power component = Qnominal * (Voltage/cim:BaseVoltage.nominalVoltage)** cim:LoadResponseCharacteristic.qVoltageExponent Where * means "multiply" and ** is "raised to power of". + + :EnergyConsumer: The set of loads that have the response characteristics. Default: "list" + :exponentModel: Indicates the exponential voltage dependency model is to be used. If false, the coefficient model is to be used. The exponential voltage dependency model consist of the attributes - pVoltageExponent - qVoltageExponent. The coefficient model consist of the attributes - pConstantImpedance - pConstantCurrent - pConstantPower - qConstantImpedance - qConstantCurrent - qConstantPower. The sum of pConstantImpedance, pConstantCurrent and pConstantPower shall equal 1. The sum of qConstantImpedance, qConstantCurrent and qConstantPower shall equal 1. Default: False + :pConstantCurrent: Portion of active power load modeled as constant current. Default: 0.0 + :pConstantImpedance: Portion of active power load modeled as constant impedance. Default: 0.0 + :pConstantPower: Portion of active power load modeled as constant power. Default: 0.0 + :pFrequencyExponent: Exponent of per unit frequency effecting active power. Default: 0.0 + :pVoltageExponent: Exponent of per unit voltage effecting real power. Default: 0.0 + :qConstantCurrent: Portion of reactive power load modeled as constant current. Default: 0.0 + :qConstantImpedance: Portion of reactive power load modeled as constant impedance. Default: 0.0 + :qConstantPower: Portion of reactive power load modeled as constant power. Default: 0.0 + :qFrequencyExponent: Exponent of per unit frequency effecting reactive power. Default: 0.0 + :qVoltageExponent: Exponent of per unit voltage effecting reactive power. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumer": [ + cgmesProfile.EQ.value, + ], + "exponentModel": [ + cgmesProfile.EQ.value, + ], + "pConstantCurrent": [ + cgmesProfile.EQ.value, + ], + "pConstantImpedance": [ + cgmesProfile.EQ.value, + ], + "pConstantPower": [ + cgmesProfile.EQ.value, + ], + "pFrequencyExponent": [ + cgmesProfile.EQ.value, + ], + "pVoltageExponent": [ + cgmesProfile.EQ.value, + ], + "qConstantCurrent": [ + cgmesProfile.EQ.value, + ], + "qConstantImpedance": [ + cgmesProfile.EQ.value, + ], + "qConstantPower": [ + cgmesProfile.EQ.value, + ], + "qFrequencyExponent": [ + cgmesProfile.EQ.value, + ], + "qVoltageExponent": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + EnergyConsumer="list", + exponentModel=False, + pConstantCurrent=0.0, + pConstantImpedance=0.0, + pConstantPower=0.0, + pFrequencyExponent=0.0, + pVoltageExponent=0.0, + qConstantCurrent=0.0, + qConstantImpedance=0.0, + qConstantPower=0.0, + qFrequencyExponent=0.0, + qVoltageExponent=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.EnergyConsumer = EnergyConsumer + self.exponentModel = exponentModel + self.pConstantCurrent = pConstantCurrent + self.pConstantImpedance = pConstantImpedance + self.pConstantPower = pConstantPower + self.pFrequencyExponent = pFrequencyExponent + self.pVoltageExponent = pVoltageExponent + self.qConstantCurrent = qConstantCurrent + self.qConstantImpedance = qConstantImpedance + self.qConstantPower = qConstantPower + self.qFrequencyExponent = qFrequencyExponent + self.qVoltageExponent = qVoltageExponent + + def __str__(self): + str = "class=LoadResponseCharacteristic\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadStatic.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadStatic.py new file mode 100644 index 00000000..aeb8497e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadStatic.py @@ -0,0 +1,146 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class LoadStatic(IdentifiedObject): + """ + General static load model representing the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. + + :LoadAggregate: Aggregate load to which this aggregate static load belongs. Default: None + :staticLoadModelType: Type of static load model. Typical Value = constantZ. Default: None + :kp1: First term voltage coefficient for active power (Kp1). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp2: Second term voltage coefficient for active power (Kp2). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp3: Third term voltage coefficient for active power (Kp3). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp4: Frequency coefficient for active power (Kp4). Must be non-zero when .staticLoadModelType = ZIP2. Not used for all other values of .staticLoadModelType. Default: 0.0 + :ep1: First term voltage exponent for active power (Ep1). Used only when .staticLoadModelType = exponential. Default: 0.0 + :ep2: Second term voltage exponent for active power (Ep2). Used only when .staticLoadModelType = exponential. Default: 0.0 + :ep3: Third term voltage exponent for active power (Ep3). Used only when .staticLoadModelType = exponential. Default: 0.0 + :kpf: Frequency deviation coefficient for active power (Kpf). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq1: First term voltage coefficient for reactive power (Kq1). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq2: Second term voltage coefficient for reactive power (Kq2). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq3: Third term voltage coefficient for reactive power (Kq3). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq4: Frequency coefficient for reactive power (Kq4). Must be non-zero when .staticLoadModelType = ZIP2. Not used for all other values of .staticLoadModelType. Default: 0.0 + :eq1: First term voltage exponent for reactive power (Eq1). Used only when .staticLoadModelType = exponential. Default: 0.0 + :eq2: Second term voltage exponent for reactive power (Eq2). Used only when .staticLoadModelType = exponential. Default: 0.0 + :eq3: Third term voltage exponent for reactive power (Eq3). Used only when .staticLoadModelType = exponential. Default: 0.0 + :kqf: Frequency deviation coefficient for reactive power (Kqf). Not used when .staticLoadModelType = constantZ. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadAggregate": [ + cgmesProfile.DY.value, + ], + "staticLoadModelType": [ + cgmesProfile.DY.value, + ], + "kp1": [ + cgmesProfile.DY.value, + ], + "kp2": [ + cgmesProfile.DY.value, + ], + "kp3": [ + cgmesProfile.DY.value, + ], + "kp4": [ + cgmesProfile.DY.value, + ], + "ep1": [ + cgmesProfile.DY.value, + ], + "ep2": [ + cgmesProfile.DY.value, + ], + "ep3": [ + cgmesProfile.DY.value, + ], + "kpf": [ + cgmesProfile.DY.value, + ], + "kq1": [ + cgmesProfile.DY.value, + ], + "kq2": [ + cgmesProfile.DY.value, + ], + "kq3": [ + cgmesProfile.DY.value, + ], + "kq4": [ + cgmesProfile.DY.value, + ], + "eq1": [ + cgmesProfile.DY.value, + ], + "eq2": [ + cgmesProfile.DY.value, + ], + "eq3": [ + cgmesProfile.DY.value, + ], + "kqf": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + LoadAggregate=None, + staticLoadModelType=None, + kp1=0.0, + kp2=0.0, + kp3=0.0, + kp4=0.0, + ep1=0.0, + ep2=0.0, + ep3=0.0, + kpf=0.0, + kq1=0.0, + kq2=0.0, + kq3=0.0, + kq4=0.0, + eq1=0.0, + eq2=0.0, + eq3=0.0, + kqf=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.LoadAggregate = LoadAggregate + self.staticLoadModelType = staticLoadModelType + self.kp1 = kp1 + self.kp2 = kp2 + self.kp3 = kp3 + self.kp4 = kp4 + self.ep1 = ep1 + self.ep2 = ep2 + self.ep3 = ep3 + self.kpf = kpf + self.kq1 = kq1 + self.kq2 = kq2 + self.kq3 = kq3 + self.kq4 = kq4 + self.eq1 = eq1 + self.eq2 = eq2 + self.eq3 = eq3 + self.kqf = kqf + + def __str__(self): + str = "class=LoadStatic\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/LoadUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/LoadUserDefined.py new file mode 100644 index 00000000..5dfe8894 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/LoadUserDefined.py @@ -0,0 +1,45 @@ +from cimpy.cgmes_v2_4_15.LoadDynamics import LoadDynamics + + +class LoadUserDefined(LoadDynamics): + """ + Load whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=LoadUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Location.py b/cimpy_3/cimpy/cgmes_v2_4_15/Location.py new file mode 100644 index 00000000..48bd8178 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Location.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class Location(IdentifiedObject): + """ + The place, scene, or point of something where someone or something has been, is, and/or will be at a given moment in time. It can be defined with one or more postition points (coordinates) in a given coordinate system. + + :CoordinateSystem: Coordinate system used to describe position points of this location. Default: None + :PowerSystemResources: All power system resources at this location. Default: None + :PositionPoints: Sequence of position points describing this location, expressed in coordinate system 'Location.CoordinateSystem'. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "CoordinateSystem": [ + cgmesProfile.GL.value, + ], + "PowerSystemResources": [ + cgmesProfile.GL.value, + ], + "PositionPoints": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + CoordinateSystem=None, + PowerSystemResources=None, + PositionPoints="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.CoordinateSystem = CoordinateSystem + self.PowerSystemResources = PowerSystemResources + self.PositionPoints = PositionPoints + + def __str__(self): + str = "class=Location\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Measurement.py b/cimpy_3/cimpy/cgmes_v2_4_15/Measurement.py new file mode 100644 index 00000000..3f49601e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Measurement.py @@ -0,0 +1,74 @@ +from .IdentifiedObject import IdentifiedObject + + +class Measurement(IdentifiedObject): + """ + A Measurement represents any measured, calculated or non-measured non-calculated quantity. Any piece of equipment may contain Measurements, e.g. a substation may have temperature measurements and door open indications, a transformer may have oil temperature and tank pressure measurements, a bay may contain a number of power flow measurements and a Breaker may contain a switch status measurement. The PSR - Measurement association is intended to capture this use of Measurement and is included in the naming hierarchy based on EquipmentContainer. The naming hierarchy typically has Measurements as leafs, e.g. Substation-VoltageLevel-Bay-Switch-Measurement. Some Measurements represent quantities related to a particular sensor location in the network, e.g. a voltage transformer (PT) at a busbar or a current transformer (CT) at the bar between a breaker and an isolator. The sensing position is not captured in the PSR - Measurement association. Instead it is captured by the Measurement - Terminal association that is used to define the sensing location in the network topology. The location is defined by the connection of the Terminal to ConductingEquipment. If both a Terminal and PSR are associated, and the PSR is of type ConductingEquipment, the associated Terminal should belong to that ConductingEquipment instance. When the sensor location is needed both Measurement-PSR and Measurement-Terminal are used. The Measurement-Terminal association is never used alone. + + :measurementType: Specifies the type of measurement. For example, this specifies if the measurement represents an indoor temperature, outdoor temperature, bus voltage, line flow, etc. Default: '' + :phases: Indicates to which phases the measurement applies and avoids the need to use `measurementType` to also encode phase information (which would explode the types). The phase information in Measurement, along with `measurementType` and `phases` uniquely defines a Measurement for a device, based on normal network phase. Their meaning will not change when the computed energizing phasing is changed due to jumpers or other reasons. If the attribute is missing three phases (ABC) shall be assumed. Default: None + :unitSymbol: The unit of measure of the measured quantity. Default: None + :unitMultiplier: The unit multiplier of the measured quantity. Default: None + :Terminal: One or more measurements may be associated with a terminal in the network. Default: None + :PowerSystemResource: The measurements associated with this power system resource. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "measurementType": [ + cgmesProfile.EQ.value, + ], + "phases": [ + cgmesProfile.EQ.value, + ], + "unitSymbol": [ + cgmesProfile.EQ.value, + ], + "unitMultiplier": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "PowerSystemResource": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + measurementType="", + phases=None, + unitSymbol=None, + unitMultiplier=None, + Terminal=None, + PowerSystemResource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.measurementType = measurementType + self.phases = phases + self.unitSymbol = unitSymbol + self.unitMultiplier = unitMultiplier + self.Terminal = Terminal + self.PowerSystemResource = PowerSystemResource + + def __str__(self): + str = "class=Measurement\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValue.py b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValue.py new file mode 100644 index 00000000..b2b76325 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValue.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class MeasurementValue(IdentifiedObject): + """ + The current state for a measurement. A state value is an instance of a measurement from a specific source. Measurements can be associated with many state values, each representing a different source for the measurement. + + :timeStamp: The time when the value was last updated Default: '' + :sensorAccuracy: The limit, expressed as a percentage of the sensor maximum, that errors will not exceed when the sensor is used under reference conditions. Default: 0.0 + :MeasurementValueQuality: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None + :MeasurementValueSource: The MeasurementValues updated by the source. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "timeStamp": [ + cgmesProfile.EQ.value, + ], + "sensorAccuracy": [ + cgmesProfile.EQ.value, + ], + "MeasurementValueQuality": [ + cgmesProfile.EQ.value, + ], + "MeasurementValueSource": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + timeStamp="", + sensorAccuracy=0.0, + MeasurementValueQuality=None, + MeasurementValueSource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.timeStamp = timeStamp + self.sensorAccuracy = sensorAccuracy + self.MeasurementValueQuality = MeasurementValueQuality + self.MeasurementValueSource = MeasurementValueSource + + def __str__(self): + str = "class=MeasurementValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py new file mode 100644 index 00000000..c922ab77 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueQuality.py @@ -0,0 +1,38 @@ +from .Quality61850 import Quality61850 + + +class MeasurementValueQuality(Quality61850): + """ + Measurement quality flags. Bits 0-10 are defined for substation automation in draft IEC 61850 part 7-3. Bits 11-15 are reserved for future expansion by that document. Bits 16-31 are reserved for EMS applications. + + :MeasurementValue: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None + """ + + cgmesProfile = Quality61850.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "MeasurementValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class Quality61850: \n" + Quality61850.__doc__ + ) + + def __init__(self, MeasurementValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.MeasurementValue = MeasurementValue + + def __str__(self): + str = "class=MeasurementValueQuality\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueSource.py b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueSource.py new file mode 100644 index 00000000..2006dadd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MeasurementValueSource.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class MeasurementValueSource(IdentifiedObject): + """ + MeasurementValueSource describes the alternative sources updating a MeasurementValue. User conventions for how to use the MeasurementValueSource attributes are described in the introduction to IEC 61970-301. + + :MeasurementValues: A reference to the type of source that updates the MeasurementValue, e.g. SCADA, CCLink, manual, etc. User conventions for the names of sources are contained in the introduction to IEC 61970-301. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "MeasurementValues": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, MeasurementValues="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.MeasurementValues = MeasurementValues + + def __str__(self): + str = "class=MeasurementValueSource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MechLoad1.py b/cimpy_3/cimpy/cgmes_v2_4_15/MechLoad1.py new file mode 100644 index 00000000..b7c96922 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MechLoad1.py @@ -0,0 +1,54 @@ +from cimpy.cgmes_v2_4_15.MechanicalLoadDynamics import MechanicalLoadDynamics + + +class MechLoad1(MechanicalLoadDynamics): + """ + Mechanical load model type 1. + + :a: Speed squared coefficient (a). Default: 0.0 + :b: Speed coefficient (b). Default: 0.0 + :d: Speed to the exponent coefficient (d). Default: 0.0 + :e: Exponent (e). Default: 0.0 + """ + + cgmesProfile = MechanicalLoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "e": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MechanicalLoadDynamics: \n" + + MechanicalLoadDynamics.__doc__ + ) + + def __init__(self, a=0.0, b=0.0, d=0.0, e=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.a = a + self.b = b + self.d = d + self.e = e + + def __str__(self): + str = "class=MechLoad1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py new file mode 100644 index 00000000..35285397 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadDynamics.py @@ -0,0 +1,50 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class MechanicalLoadDynamics(DynamicsFunctionBlock): + """ + Mechanical load function block whose behavior is described by reference to a standard model + + :SynchronousMachineDynamics: Synchronous machine model with which this mechanical load model is associated. Default: None + :AsynchronousMachineDynamics: Asynchronous machine model with which this mechanical load model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + AsynchronousMachineDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + + def __str__(self): + str = "class=MechanicalLoadDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py new file mode 100644 index 00000000..2c612b29 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MechanicalLoadUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.MechanicalLoadDynamics import MechanicalLoadDynamics + + +class MechanicalLoadUserDefined(MechanicalLoadDynamics): + """ + Mechanical load function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = MechanicalLoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MechanicalLoadDynamics: \n" + + MechanicalLoadDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=MechanicalLoadUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Money.py b/cimpy_3/cimpy/cgmes_v2_4_15/Money.py new file mode 100644 index 00000000..2f0a32fe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Money.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Money(Base): + """ + Amount of money. + + :unit: Default: None + :multiplier: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + unit=None, + multiplier=None, + value=0.0, + ): + + self.unit = unit + self.multiplier = multiplier + self.value = value + + def __str__(self): + str = "class=Money\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MonthDay.py b/cimpy_3/cimpy/cgmes_v2_4_15/MonthDay.py new file mode 100644 index 00000000..4598e373 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MonthDay.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class MonthDay(Base): + """ + MonthDay format as "--mm-dd", which conforms with XSD data type gMonthDay. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=MonthDay\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/MutualCoupling.py b/cimpy_3/cimpy/cgmes_v2_4_15/MutualCoupling.py new file mode 100644 index 00000000..dd70b6e7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/MutualCoupling.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class MutualCoupling(IdentifiedObject): + """ + This class represents the zero sequence line mutual coupling. + + :First_Terminal: The starting terminal for the calculation of distances along the first branch of the mutual coupling. Normally MutualCoupling would only be used for terminals of AC line segments. The first and second terminals of a mutual coupling should point to different AC line segments. Default: None + :Second_Terminal: The starting terminal for the calculation of distances along the second branch of the mutual coupling. Default: None + :b0ch: Zero sequence mutual coupling shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 + :distance11: Distance to the start of the coupled region from the first line's terminal having sequence number equal to 1. Default: 0.0 + :distance12: Distance to the end of the coupled region from the first line's terminal with sequence number equal to 1. Default: 0.0 + :distance21: Distance to the start of coupled region from the second line's terminal with sequence number equal to 1. Default: 0.0 + :distance22: Distance to the end of coupled region from the second line's terminal with sequence number equal to 1. Default: 0.0 + :g0ch: Zero sequence mutual coupling shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r0: Zero sequence branch-to-branch mutual impedance coupling, resistance. Default: 0.0 + :x0: Zero sequence branch-to-branch mutual impedance coupling, reactance. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "First_Terminal": [ + cgmesProfile.EQ.value, + ], + "Second_Terminal": [ + cgmesProfile.EQ.value, + ], + "b0ch": [ + cgmesProfile.EQ.value, + ], + "distance11": [ + cgmesProfile.EQ.value, + ], + "distance12": [ + cgmesProfile.EQ.value, + ], + "distance21": [ + cgmesProfile.EQ.value, + ], + "distance22": [ + cgmesProfile.EQ.value, + ], + "g0ch": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + First_Terminal=None, + Second_Terminal=None, + b0ch=0.0, + distance11=0.0, + distance12=0.0, + distance21=0.0, + distance22=0.0, + g0ch=0.0, + r0=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.First_Terminal = First_Terminal + self.Second_Terminal = Second_Terminal + self.b0ch = b0ch + self.distance11 = distance11 + self.distance12 = distance12 + self.distance21 = distance21 + self.distance22 = distance22 + self.g0ch = g0ch + self.r0 = r0 + self.x0 = x0 + + def __str__(self): + str = "class=MutualCoupling\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoad.py b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoad.py new file mode 100644 index 00000000..bee84f1c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoad.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.EnergyConsumer import EnergyConsumer + + +class NonConformLoad(EnergyConsumer): + """ + NonConformLoad represent loads that do not follow a daily load change pattern and changes are not correlated with the daily load change pattern. + + :LoadGroup: Conform loads assigned to this ConformLoadGroup. Default: None + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "LoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, LoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadGroup = LoadGroup + + def __str__(self): + str = "class=NonConformLoad\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py new file mode 100644 index 00000000..a094c479 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadGroup.py @@ -0,0 +1,43 @@ +from cimpy.cgmes_v2_4_15.LoadGroup import LoadGroup + + +class NonConformLoadGroup(LoadGroup): + """ + Loads that do not follow a daily and seasonal load variation pattern. + + :EnergyConsumers: Group of this ConformLoad. Default: "list" + :NonConformLoadSchedules: The NonConformLoadSchedules in the NonConformLoadGroup. Default: "list" + """ + + cgmesProfile = LoadGroup.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumers": [ + cgmesProfile.EQ.value, + ], + "NonConformLoadSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LoadGroup: \n" + LoadGroup.__doc__ + + def __init__( + self, EnergyConsumers="list", NonConformLoadSchedules="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.EnergyConsumers = EnergyConsumers + self.NonConformLoadSchedules = NonConformLoadSchedules + + def __str__(self): + str = "class=NonConformLoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py new file mode 100644 index 00000000..2f88b5ce --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NonConformLoadSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class NonConformLoadSchedule(SeasonDayTypeSchedule): + """ + An active power (Y1-axis) and reactive power (Y2-axis) schedule (curves) versus time (X-axis) for non-conforming loads, e.g., large industrial load or power station service (where modeled). + + :NonConformLoadGroup: The NonConformLoadGroup where the NonConformLoadSchedule belongs. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "NonConformLoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, NonConformLoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.NonConformLoadGroup = NonConformLoadGroup + + def __str__(self): + str = "class=NonConformLoadSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py new file mode 100644 index 00000000..e752c735 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensator.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.ShuntCompensator import ShuntCompensator + + +class NonlinearShuntCompensator(ShuntCompensator): + """ + A non linear shunt compensator has bank or section admittance values that differs. + + :NonlinearShuntCompensatorPoints: All points of the non-linear shunt compensator. Default: "list" + """ + + cgmesProfile = ShuntCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "NonlinearShuntCompensatorPoints": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ShuntCompensator: \n" + + ShuntCompensator.__doc__ + ) + + def __init__(self, NonlinearShuntCompensatorPoints="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.NonlinearShuntCompensatorPoints = NonlinearShuntCompensatorPoints + + def __str__(self): + str = "class=NonlinearShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py new file mode 100644 index 00000000..4b685aad --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NonlinearShuntCompensatorPoint.py @@ -0,0 +1,66 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class NonlinearShuntCompensatorPoint(Base): + """ + A non linear shunt compensator bank or section admittance value. + + :NonlinearShuntCompensator: Non-linear shunt compensator owning this point. Default: None + :b: Positive sequence shunt (charging) susceptance per section Default: 0.0 + :g: Positive sequence shunt (charging) conductance per section Default: 0.0 + :sectionNumber: The number of the section. Default: 0 + :b0: Zero sequence shunt (charging) susceptance per section Default: 0.0 + :g0: Zero sequence shunt (charging) conductance per section Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "NonlinearShuntCompensator": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "sectionNumber": [ + cgmesProfile.EQ.value, + ], + "b0": [ + cgmesProfile.EQ.value, + ], + "g0": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + NonlinearShuntCompensator=None, + b=0.0, + g=0.0, + sectionNumber=0, + b0=0.0, + g0=0.0, + ): + + self.NonlinearShuntCompensator = NonlinearShuntCompensator + self.b = b + self.g = g + self.sectionNumber = sectionNumber + self.b0 = b0 + self.g0 = g0 + + def __str__(self): + str = "class=NonlinearShuntCompensatorPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py new file mode 100644 index 00000000..665d8e60 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/NuclearGeneratingUnit.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.GeneratingUnit import GeneratingUnit + + +class NuclearGeneratingUnit(GeneratingUnit): + """ + A nuclear generating unit. + + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=NuclearGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimit.py new file mode 100644 index 00000000..3093b07e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimit.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class OperationalLimit(IdentifiedObject): + """ + A value associated with a specific kind of limit. The sub class value attribute shall be positive. The sub class value attribute is inversely proportional to OperationalLimitType.acceptableDuration (acceptableDuration for short). A pair of value_x and acceptableDuration_x are related to each other as follows: if value_1 > value_2 > value_3 >... then acceptableDuration_1 < acceptableDuration_2 < acceptableDuration_3 < ... A value_x with direction="high" shall be greater than a value_y with direction="low". + + :OperationalLimitSet: Values of equipment limits. Default: None + :OperationalLimitType: The limit type associated with this limit. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitSet": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitType": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, OperationalLimitSet=None, OperationalLimitType=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.OperationalLimitSet = OperationalLimitSet + self.OperationalLimitType = OperationalLimitType + + def __str__(self): + str = "class=OperationalLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py new file mode 100644 index 00000000..eab52489 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitDirectionKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class OperationalLimitDirectionKind(Base): + """ + The direction attribute describes the side of a limit that is a violation. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=OperationalLimitDirectionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitSet.py b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitSet.py new file mode 100644 index 00000000..848f99ba --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitSet.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class OperationalLimitSet(IdentifiedObject): + """ + A set of limits associated with equipment. Sets of limits might apply to a specific temperature, or season for example. A set of limits may contain different severities of limit levels that would apply to the same equipment. The set may contain limits of different types such as apparent power and current limits or high and low voltage limits that are logically applied together as a set. + + :Terminal: Default: None + :Equipment: The equipment to which the limit set applies. Default: None + :OperationalLimitValue: The limit set to which the limit values belong. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "Equipment": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Terminal=None, + Equipment=None, + OperationalLimitValue="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.Equipment = Equipment + self.OperationalLimitValue = OperationalLimitValue + + def __str__(self): + str = "class=OperationalLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitType.py b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitType.py new file mode 100644 index 00000000..cdd53f48 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OperationalLimitType.py @@ -0,0 +1,62 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class OperationalLimitType(IdentifiedObject): + """ + The operational meaning of a category of limits. + + :OperationalLimit: The operational limits associated with this type of limit. Default: "list" + :acceptableDuration: The nominal acceptable duration of the limit. Limits are commonly expressed in terms of the a time limit for which the limit is normally acceptable. The actual acceptable duration of a specific limit may depend on other local factors such as temperature or wind speed. Default: 0 + :limitType: Types of limits defined in the ENTSO-E Operational Handbook Policy 3. Default: None + :direction: The direction of the limit. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "OperationalLimit": [ + cgmesProfile.EQ.value, + ], + "acceptableDuration": [ + cgmesProfile.EQ.value, + ], + "limitType": [ + cgmesProfile.EQ.value, + ], + "direction": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + OperationalLimit="list", + acceptableDuration=0, + limitType=None, + direction=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.OperationalLimit = OperationalLimit + self.acceptableDuration = acceptableDuration + self.limitType = limitType + self.direction = direction + + def __str__(self): + str = "class=OperationalLimitType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OrientationKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/OrientationKind.py new file mode 100644 index 00000000..8b3b60d0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OrientationKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class OrientationKind(Base): + """ + The orientation of the coordinate system with respect to top, left, and the coordinate number system. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=OrientationKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLim2.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLim2.py new file mode 100644 index 00000000..53937f81 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLim2.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics, +) + + +class OverexcLim2(OverexcitationLimiterDynamics): + """ + Different from LimIEEEOEL, LimOEL2 has a fixed pickup threshold and reduces the excitation set-point by mean of non-windup integral regulator. Irated is the rated machine excitation current (calculated from nameplate conditions: V, P, CosPhi). + + :koi: Gain Over excitation limiter (K). Typical Value = 0.1. Default: 0.0 + :voimax: Maximum error signal (V). Typical Value = 0. Default: 0.0 + :voimin: Minimum error signal (V). Typical Value = -9999. Default: 0.0 + :ifdlim: Limit value of rated field current (I). Typical Value = 1.05. Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "koi": [ + cgmesProfile.DY.value, + ], + "voimax": [ + cgmesProfile.DY.value, + ], + "voimin": [ + cgmesProfile.DY.value, + ], + "ifdlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__(self, koi=0.0, voimax=0.0, voimin=0.0, ifdlim=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.koi = koi + self.voimax = voimax + self.voimin = voimin + self.ifdlim = ifdlim + + def __str__(self): + str = "class=OverexcLim2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py new file mode 100644 index 00000000..2f888a34 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimIEEE.py @@ -0,0 +1,76 @@ +from cimpy.cgmes_v2_4_15.OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics, +) + + +class OverexcLimIEEE(OverexcitationLimiterDynamics): + """ + The over excitation limiter model is intended to represent the significant features of OELs necessary for some large-scale system studies. It is the result of a pragmatic approach to obtain a model that can be widely applied with attainable data from generator owners. An attempt to include all variations in the functionality of OELs and duplicate how they interact with the rest of the excitation systems would likely result in a level of application insufficient for the studies for which they are intended. Reference: IEEE OEL 421.5-2005 Section 9. + + :itfpu: OEL timed field current limiter pickup level (I). Typical Value = 1.05. Default: 0.0 + :ifdmax: OEL instantaneous field current limit (I). Typical Value = 1.5. Default: 0.0 + :ifdlim: OEL timed field current limit (I). Typical Value = 1.05. Default: 0.0 + :hyst: OEL pickup/drop-out hysteresis (HYST). Typical Value = 0.03. Default: 0.0 + :kcd: OEL cooldown gain (K). Typical Value = 1. Default: 0.0 + :kramp: OEL ramped limit rate (K). Unit = PU/sec. Typical Value = 10. Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "itfpu": [ + cgmesProfile.DY.value, + ], + "ifdmax": [ + cgmesProfile.DY.value, + ], + "ifdlim": [ + cgmesProfile.DY.value, + ], + "hyst": [ + cgmesProfile.DY.value, + ], + "kcd": [ + cgmesProfile.DY.value, + ], + "kramp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + itfpu=0.0, + ifdmax=0.0, + ifdlim=0.0, + hyst=0.0, + kcd=0.0, + kramp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.itfpu = itfpu + self.ifdmax = ifdmax + self.ifdlim = ifdlim + self.hyst = hyst + self.kcd = kcd + self.kramp = kramp + + def __str__(self): + str = "class=OverexcLimIEEE\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX1.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX1.py new file mode 100644 index 00000000..b2e6e33d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX1.py @@ -0,0 +1,100 @@ +from cimpy.cgmes_v2_4_15.OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics, +) + + +class OverexcLimX1(OverexcitationLimiterDynamics): + """ + Field voltage over excitation limiter. + + :efdrated: Rated field voltage (EFD). Typical Value = 1.05. Default: 0.0 + :efd1: Low voltage point on the inverse time characteristic (EFD). Typical Value = 1.1. Default: 0.0 + :t1: Time to trip the exciter at the low voltage point on the inverse time characteristic (TIME). Typical Value = 120. Default: 0 + :efd2: Mid voltage point on the inverse time characteristic (EFD). Typical Value = 1.2. Default: 0.0 + :t2: Time to trip the exciter at the mid voltage point on the inverse time characteristic (TIME). Typical Value = 40. Default: 0 + :efd3: High voltage point on the inverse time characteristic (EFD). Typical Value = 1.5. Default: 0.0 + :t3: Time to trip the exciter at the high voltage point on the inverse time characteristic (TIME). Typical Value = 15. Default: 0 + :efddes: Desired field voltage (EFD). Typical Value = 0.9. Default: 0.0 + :kmx: Gain (K). Typical Value = 0.01. Default: 0.0 + :vlow: Low voltage limit (V) (>0). Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efdrated": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "efd3": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "efddes": [ + cgmesProfile.DY.value, + ], + "kmx": [ + cgmesProfile.DY.value, + ], + "vlow": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + efdrated=0.0, + efd1=0.0, + t1=0, + efd2=0.0, + t2=0, + efd3=0.0, + t3=0, + efddes=0.0, + kmx=0.0, + vlow=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efdrated = efdrated + self.efd1 = efd1 + self.t1 = t1 + self.efd2 = efd2 + self.t2 = t2 + self.efd3 = efd3 + self.t3 = t3 + self.efddes = efddes + self.kmx = kmx + self.vlow = vlow + + def __str__(self): + str = "class=OverexcLimX1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX2.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX2.py new file mode 100644 index 00000000..cf41344d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcLimX2.py @@ -0,0 +1,106 @@ +from cimpy.cgmes_v2_4_15.OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics, +) + + +class OverexcLimX2(OverexcitationLimiterDynamics): + """ + Field Voltage or Current overexcitation limiter designed to protect the generator field of an AC machine with automatic excitation control from overheating due to prolonged overexcitation. + + :m: (m). true = IFD limiting false = EFD limiting. Default: False + :efdrated: Rated field voltage if m=F or field current if m=T (EFD). Typical Value = 1.05. Default: 0.0 + :efd1: Low voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.1. Default: 0.0 + :t1: Time to trip the exciter at the low voltage or current point on the inverse time characteristic (TIME). Typical Value = 120. Default: 0 + :efd2: Mid voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.2. Default: 0.0 + :t2: Time to trip the exciter at the mid voltage or current point on the inverse time characteristic (TIME). Typical Value = 40. Default: 0 + :efd3: High voltage or current point on the inverse time characteristic (EFD). Typical Value = 1.5. Default: 0.0 + :t3: Time to trip the exciter at the high voltage or current point on the inverse time characteristic (TIME). Typical Value = 15. Default: 0 + :efddes: Desired field voltage if m=F or field current if m=T (EFD). Typical Value = 1. Default: 0.0 + :kmx: Gain (K). Typical Value = 0.002. Default: 0.0 + :vlow: Low voltage limit (V) (>0). Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "efdrated": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "efd3": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "efddes": [ + cgmesProfile.DY.value, + ], + "kmx": [ + cgmesProfile.DY.value, + ], + "vlow": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + m=False, + efdrated=0.0, + efd1=0.0, + t1=0, + efd2=0.0, + t2=0, + efd3=0.0, + t3=0, + efddes=0.0, + kmx=0.0, + vlow=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.efdrated = efdrated + self.efd1 = efd1 + self.t1 = t1 + self.efd2 = efd2 + self.t2 = t2 + self.efd3 = efd3 + self.t3 = t3 + self.efddes = efddes + self.kmx = kmx + self.vlow = vlow + + def __str__(self): + str = "class=OverexcLimX2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py new file mode 100644 index 00000000..e789a73e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterDynamics.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class OverexcitationLimiterDynamics(DynamicsFunctionBlock): + """ + Overexcitation limiter function block whose behaviour is described by reference to a standard model + + :ExcitationSystemDynamics: Excitation system model with which this overexcitation limiter model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, ExcitationSystemDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=OverexcitationLimiterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py new file mode 100644 index 00000000..377b2e70 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/OverexcitationLimiterUserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics, +) + + +class OverexcitationLimiterUserDefined(OverexcitationLimiterDynamics): + """ + Overexcitation limiter system function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=OverexcitationLimiterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py new file mode 100644 index 00000000..b82dfbeb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1Dynamics.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PFVArControllerType1Dynamics(DynamicsFunctionBlock): + """ + Power Factor or VAr controller Type I function block whose behaviour is described by reference to a standard model + + :RemoteInputSignal: Remote input signal used by this Power Factor or VAr controller Type I model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this Power Factor or VAr controller Type I model is associated. Default: None + :VoltageAdjusterDynamics: Voltage adjuster model associated with this Power Factor or VA controller Type I model. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + "VoltageAdjusterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + RemoteInputSignal=None, + ExcitationSystemDynamics=None, + VoltageAdjusterDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + self.VoltageAdjusterDynamics = VoltageAdjusterDynamics + + def __str__(self): + str = "class=PFVArControllerType1Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py new file mode 100644 index 00000000..5dbda606 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType1UserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType1Dynamics import ( + PFVArControllerType1Dynamics, +) + + +class PFVArControllerType1UserDefined(PFVArControllerType1Dynamics): + """ + Power Factor or VAr controller Type I function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PFVArControllerType1UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py new file mode 100644 index 00000000..960c66f3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2Dynamics.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PFVArControllerType2Dynamics(DynamicsFunctionBlock): + """ + Power Factor or VAr controller Type II function block whose behaviour is described by reference to a standard model + + :ExcitationSystemDynamics: Excitation system model with which this Power Factor or VAr controller Type II is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, ExcitationSystemDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=PFVArControllerType2Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py new file mode 100644 index 00000000..f69229ff --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArControllerType2UserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType2Dynamics import ( + PFVArControllerType2Dynamics, +) + + +class PFVArControllerType2UserDefined(PFVArControllerType2Dynamics): + """ + Power Factor or VAr controller Type II function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PFVArControllerType2UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py new file mode 100644 index 00000000..fb25337d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEPFController.py @@ -0,0 +1,88 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType1Dynamics import ( + PFVArControllerType1Dynamics, +) + + +class PFVArType1IEEEPFController(PFVArControllerType1Dynamics): + """ + The class represents IEEE PF Controller Type 1 which operates by moving the voltage reference directly. Reference: IEEE Standard 421.5-2005 Section 11.2. + + :ovex: Overexcitation Flag () true = overexcited false = underexcited. Default: False + :tpfc: PF controller time delay (). Typical Value = 5. Default: 0 + :vitmin: Minimum machine terminal current needed to enable pf/var controller (). Default: 0.0 + :vpf: Synchronous machine power factor (). Default: 0.0 + :vpfcbw: PF controller dead band (). Typical Value = 0.05. Default: 0.0 + :vpfref: PF controller reference (). Default: 0.0 + :vvtmax: Maximum machine terminal voltage needed for pf/var controller to be enabled (). Default: 0.0 + :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (). Default: 0.0 + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ovex": [ + cgmesProfile.DY.value, + ], + "tpfc": [ + cgmesProfile.DY.value, + ], + "vitmin": [ + cgmesProfile.DY.value, + ], + "vpf": [ + cgmesProfile.DY.value, + ], + "vpfcbw": [ + cgmesProfile.DY.value, + ], + "vpfref": [ + cgmesProfile.DY.value, + ], + "vvtmax": [ + cgmesProfile.DY.value, + ], + "vvtmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, + ovex=False, + tpfc=0, + vitmin=0.0, + vpf=0.0, + vpfcbw=0.0, + vpfref=0.0, + vvtmax=0.0, + vvtmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ovex = ovex + self.tpfc = tpfc + self.vitmin = vitmin + self.vpf = vpf + self.vpfcbw = vpfcbw + self.vpfref = vpfref + self.vvtmax = vvtmax + self.vvtmin = vvtmin + + def __str__(self): + str = "class=PFVArType1IEEEPFController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py new file mode 100644 index 00000000..4ad025c2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType1IEEEVArController.py @@ -0,0 +1,76 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType1Dynamics import ( + PFVArControllerType1Dynamics, +) + + +class PFVArType1IEEEVArController(PFVArControllerType1Dynamics): + """ + The class represents IEEE VAR Controller Type 1 which operates by moving the voltage reference directly. Reference: IEEE Standard 421.5-2005 Section 11.3. + + :tvarc: Var controller time delay (). Typical Value = 5. Default: 0 + :vvar: Synchronous machine power factor (). Default: 0.0 + :vvarcbw: Var controller dead band (). Typical Value = 0.02. Default: 0.0 + :vvarref: Var controller reference (). Default: 0.0 + :vvtmax: Maximum machine terminal voltage needed for pf/var controller to be enabled (). Default: 0.0 + :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (). Default: 0.0 + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tvarc": [ + cgmesProfile.DY.value, + ], + "vvar": [ + cgmesProfile.DY.value, + ], + "vvarcbw": [ + cgmesProfile.DY.value, + ], + "vvarref": [ + cgmesProfile.DY.value, + ], + "vvtmax": [ + cgmesProfile.DY.value, + ], + "vvtmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, + tvarc=0, + vvar=0.0, + vvarcbw=0.0, + vvarref=0.0, + vvtmax=0.0, + vvtmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tvarc = tvarc + self.vvar = vvar + self.vvarcbw = vvarcbw + self.vvarref = vvarref + self.vvtmax = vvtmax + self.vvtmin = vvtmin + + def __str__(self): + str = "class=PFVArType1IEEEVArController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2Common1.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2Common1.py new file mode 100644 index 00000000..5b4f2cd1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2Common1.py @@ -0,0 +1,61 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType2Dynamics import ( + PFVArControllerType2Dynamics, +) + + +class PFVArType2Common1(PFVArControllerType2Dynamics): + """ + Power factor / Reactive power regulator. This model represents the power factor or reactive power controller such as the Basler SCP-250. The controller measures power factor or reactive power (PU on generator rated power) and compares it with the operator's set point. + + :j: Selector (J). true = control mode for reactive power false = control mode for power factor. Default: False + :kp: Proportional gain (Kp). Default: 0.0 + :ki: Reset gain (Ki). Default: 0.0 + :max: Output limit (max). Default: 0.0 + :ref: Reference value of reactive power or power factor (Ref). The reference value is initialised by this model. This initialisation may override the value exchanged by this attribute to represent a plant operator's change of the reference setting. Default: 0.0 + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "j": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "max": [ + cgmesProfile.DY.value, + ], + "ref": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__(self, j=False, kp=0.0, ki=0.0, max=0.0, ref=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.j = j + self.kp = kp + self.ki = ki + self.max = max + self.ref = ref + + def __str__(self): + str = "class=PFVArType2Common1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py new file mode 100644 index 00000000..82692aa5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEPFController.py @@ -0,0 +1,82 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType2Dynamics import ( + PFVArControllerType2Dynamics, +) + + +class PFVArType2IEEEPFController(PFVArControllerType2Dynamics): + """ + The class represents IEEE PF Controller Type 2 which is a summing point type controller and makes up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller. The voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE Standard 421.5-2005 Section 11.4. + + :pfref: Power factor reference (). Default: 0.0 + :vref: Voltage regulator reference (). Default: 0.0 + :vclmt: Maximum output of the pf controller (). Typical Value = 0.1. Default: 0.0 + :kp: Proportional gain of the pf controller (). Typical Value = 1. Default: 0.0 + :ki: Integral gain of the pf controller (). Typical Value = 1. Default: 0.0 + :vs: Generator sensing voltage (). Default: 0.0 + :exlon: Overexcitation or under excitation flag () true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "pfref": [ + cgmesProfile.DY.value, + ], + "vref": [ + cgmesProfile.DY.value, + ], + "vclmt": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vs": [ + cgmesProfile.DY.value, + ], + "exlon": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, + pfref=0.0, + vref=0.0, + vclmt=0.0, + kp=0.0, + ki=0.0, + vs=0.0, + exlon=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.pfref = pfref + self.vref = vref + self.vclmt = vclmt + self.kp = kp + self.ki = ki + self.vs = vs + self.exlon = exlon + + def __str__(self): + str = "class=PFVArType2IEEEPFController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py new file mode 100644 index 00000000..4d6b3e11 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PFVArType2IEEEVArController.py @@ -0,0 +1,82 @@ +from cimpy.cgmes_v2_4_15.PFVArControllerType2Dynamics import ( + PFVArControllerType2Dynamics, +) + + +class PFVArType2IEEEVArController(PFVArControllerType2Dynamics): + """ + The class represents IEEE VAR Controller Type 2 which is a summing point type controller. It makes up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller, and the voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE Standard 421.5-2005 Section 11.5. + + :qref: Reactive power reference (). Default: 0.0 + :vref: Voltage regulator reference (). Default: 0.0 + :vclmt: Maximum output of the pf controller (). Default: 0.0 + :kp: Proportional gain of the pf controller (). Default: 0.0 + :ki: Integral gain of the pf controller (). Default: 0.0 + :vs: Generator sensing voltage (). Default: 0.0 + :exlon: Overexcitation or under excitation flag () true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "qref": [ + cgmesProfile.DY.value, + ], + "vref": [ + cgmesProfile.DY.value, + ], + "vclmt": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vs": [ + cgmesProfile.DY.value, + ], + "exlon": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, + qref=0.0, + vref=0.0, + vclmt=0.0, + kp=0.0, + ki=0.0, + vs=0.0, + exlon=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.qref = qref + self.vref = vref + self.vclmt = vclmt + self.kp = kp + self.ki = ki + self.vs = vs + self.exlon = exlon + + def __str__(self): + str = "class=PFVArType2IEEEVArController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PU.py b/cimpy_3/cimpy/cgmes_v2_4_15/PU.py new file mode 100644 index 00000000..ef274ec6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PU.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PU(Base): + """ + Per Unit - a positive or negative value referred to a defined base. Values typically range from -10 to +10. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=PU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PerCent.py b/cimpy_3/cimpy/cgmes_v2_4_15/PerCent.py new file mode 100644 index 00000000..b991ccd7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PerCent.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PerCent(Base): + """ + Percentage on a defined base. For example, specify as 100 to indicate at the defined base. + + :value: Normally 0 - 100 on a defined base Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=PerCent\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py b/cimpy_3/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py new file mode 100644 index 00000000..1d142479 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py @@ -0,0 +1,54 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PerLengthDCLineParameter(Base): + """ + + + :DCLineSegments: All line segments described by this set of per-length parameters. Default: "list" + :capacitance: Capacitance per unit of length of the DC line segment; significant for cables only. Default: 0.0 + :inductance: Inductance per unit of length of the DC line segment. Default: 0.0 + :resistance: Resistance per length of the DC line segment. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DCLineSegments": [ + cgmesProfile.EQ.value, + ], + "capacitance": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DCLineSegments="list", + capacitance=0.0, + inductance=0.0, + resistance=0.0, + ): + + self.DCLineSegments = DCLineSegments + self.capacitance = capacitance + self.inductance = inductance + self.resistance = resistance + + def __str__(self): + str = "class=PerLengthDCLineParameter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoil.py b/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoil.py new file mode 100644 index 00000000..68de15a8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoil.py @@ -0,0 +1,80 @@ +from cimpy.cgmes_v2_4_15.EarthFaultCompensator import EarthFaultCompensator + + +class PetersenCoil(EarthFaultCompensator): + """ + A tunable impedance device normally used to offset line charging during single line faults in an ungrounded section of network. + + :mode: The mode of operation of the Petersen coil. Default: None + :nominalU: The nominal voltage for which the coil is designed. Default: 0.0 + :offsetCurrent: The offset current that the Petersen coil controller is operating from the resonant point. This is normally a fixed amount for which the controller is configured and could be positive or negative. Typically 0 to 60 Amperes depending on voltage and resonance conditions. Default: 0.0 + :positionCurrent: The control current used to control the Petersen coil also known as the position current. Typically in the range of 20-200mA. Default: 0.0 + :xGroundMax: The maximum reactance. Default: 0.0 + :xGroundMin: The minimum reactance. Default: 0.0 + :xGroundNominal: The nominal reactance. This is the operating point (normally over compensation) that is defined based on the resonance point in the healthy network condition. The impedance is calculated based on nominal voltage divided by position current. Default: 0.0 + """ + + cgmesProfile = EarthFaultCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "mode": [ + cgmesProfile.EQ.value, + ], + "nominalU": [ + cgmesProfile.EQ.value, + ], + "offsetCurrent": [ + cgmesProfile.EQ.value, + ], + "positionCurrent": [ + cgmesProfile.EQ.value, + ], + "xGroundMax": [ + cgmesProfile.EQ.value, + ], + "xGroundMin": [ + cgmesProfile.EQ.value, + ], + "xGroundNominal": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EarthFaultCompensator: \n" + + EarthFaultCompensator.__doc__ + ) + + def __init__( + self, + mode=None, + nominalU=0.0, + offsetCurrent=0.0, + positionCurrent=0.0, + xGroundMax=0.0, + xGroundMin=0.0, + xGroundNominal=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mode = mode + self.nominalU = nominalU + self.offsetCurrent = offsetCurrent + self.positionCurrent = positionCurrent + self.xGroundMax = xGroundMax + self.xGroundMin = xGroundMin + self.xGroundNominal = xGroundNominal + + def __str__(self): + str = "class=PetersenCoil\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py new file mode 100644 index 00000000..e84fe6d0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PetersenCoilModeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PetersenCoilModeKind(Base): + """ + The mode of operation for a Petersen coil. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=PetersenCoilModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseCode.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseCode.py new file mode 100644 index 00000000..b0f36d7f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseCode.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PhaseCode(Base): + """ + Enumeration of phase identifiers. Allows designation of phases for both transmission and distribution equipment, circuits and loads. Residential and small commercial loads are often served from single-phase, or split-phase, secondary circuits. For example of s12N, phases 1 and 2 refer to hot wires that are 180 degrees out of phase, while N refers to the neutral wire. Through single-phase transformer connections, these secondary circuits may be served from one or two of the primary phases A, B, and C. For three-phase loads, use the A, B, C phase codes instead of s12N. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=PhaseCode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChanger.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChanger.py new file mode 100644 index 00000000..08f9aab3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChanger.py @@ -0,0 +1,37 @@ +from cimpy.cgmes_v2_4_15.TapChanger import TapChanger + + +class PhaseTapChanger(TapChanger): + """ + A transformer phase shifting tap model that controls the phase angle difference across the power transformer and potentially the active power flow through the power transformer. This phase tap model may also impact the voltage magnitude. + + :TransformerEnd: Phase tap changer associated with this transformer end. Default: None + """ + + cgmesProfile = TapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class TapChanger: \n" + TapChanger.__doc__ + + def __init__(self, TransformerEnd=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TransformerEnd = TransformerEnd + + def __str__(self): + str = "class=PhaseTapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py new file mode 100644 index 00000000..ecd92a4a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerAsymmetrical.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.PhaseTapChangerNonLinear import PhaseTapChangerNonLinear + + +class PhaseTapChangerAsymmetrical(PhaseTapChangerNonLinear): + """ + Describes the tap model for an asymmetrical phase shifting transformer in which the difference voltage vector adds to the primary side voltage. The angle between the primary side voltage and the difference voltage is named the winding connection angle. The phase shift depends on both the difference voltage magnitude and the winding connection angle. + + :windingConnectionAngle: The phase angle between the in-phase winding and the out-of -phase winding used for creating phase shift. The out-of-phase winding produces what is known as the difference voltage. Setting this angle to 90 degrees is not the same as a symmemtrical transformer. Default: 0.0 + """ + + cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "windingConnectionAngle": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChangerNonLinear: \n" + + PhaseTapChangerNonLinear.__doc__ + ) + + def __init__(self, windingConnectionAngle=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.windingConnectionAngle = windingConnectionAngle + + def __str__(self): + str = "class=PhaseTapChangerAsymmetrical\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py new file mode 100644 index 00000000..890e6f59 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerLinear.py @@ -0,0 +1,51 @@ +from cimpy.cgmes_v2_4_15.PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerLinear(PhaseTapChanger): + """ + Describes a tap changer with a linear relation between the tap step and the phase angle difference across the transformer. This is a mathematical model that is an approximation of a real phase tap changer. The phase angle is computed as stepPhaseShitfIncrement times the tap position. The secondary side voltage magnitude is the same as at the primary side. + + :stepPhaseShiftIncrement: Phase shift per step position. A positive value indicates a positive phase shift from the winding where the tap is located to the other winding (for a two-winding transformer). The actual phase shift increment might be more accurately computed from the symmetrical or asymmetrical models or a tap step table lookup if those are available. Default: 0.0 + :xMax: The reactance depend on the tap position according to a "u" shaped curve. The maximum reactance (xMax) appear at the low and high tap positions. Default: 0.0 + :xMin: The reactance depend on the tap position according to a "u" shaped curve. The minimum reactance (xMin) appear at the mid tap position. Default: 0.0 + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "stepPhaseShiftIncrement": [ + cgmesProfile.EQ.value, + ], + "xMax": [ + cgmesProfile.EQ.value, + ], + "xMin": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__( + self, stepPhaseShiftIncrement=0.0, xMax=0.0, xMin=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.stepPhaseShiftIncrement = stepPhaseShiftIncrement + self.xMax = xMax + self.xMin = xMin + + def __str__(self): + str = "class=PhaseTapChangerLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py new file mode 100644 index 00000000..dcd7f945 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerNonLinear.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerNonLinear(PhaseTapChanger): + """ + The non-linear phase tap changer describes the non-linear behavior of a phase tap changer. This is a base class for the symmetrical and asymmetrical phase tap changer models. The details of these models can be found in the IEC 61970-301 document. + + :voltageStepIncrement: The voltage step increment on the out of phase winding specified in percent of nominal voltage of the transformer end. Default: 0.0 + :xMax: The reactance depend on the tap position according to a "u" shaped curve. The maximum reactance (xMax) appear at the low and high tap positions. Default: 0.0 + :xMin: The reactance depend on the tap position according to a "u" shaped curve. The minimum reactance (xMin) appear at the mid tap position. Default: 0.0 + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "voltageStepIncrement": [ + cgmesProfile.EQ.value, + ], + "xMax": [ + cgmesProfile.EQ.value, + ], + "xMin": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__(self, voltageStepIncrement=0.0, xMax=0.0, xMin=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.voltageStepIncrement = voltageStepIncrement + self.xMax = xMax + self.xMin = xMin + + def __str__(self): + str = "class=PhaseTapChangerNonLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py new file mode 100644 index 00000000..86845860 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerSymmetrical.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.PhaseTapChangerNonLinear import PhaseTapChangerNonLinear + + +class PhaseTapChangerSymmetrical(PhaseTapChangerNonLinear): + """ + Describes a symmetrical phase shifting transformer tap model in which the secondary side voltage magnitude is the same as at the primary side. The difference voltage magnitude is the base in an equal-sided triangle where the sides corresponds to the primary and secondary voltages. The phase angle difference corresponds to the top angle and can be expressed as twice the arctangent of half the total difference voltage. + + """ + + cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChangerNonLinear: \n" + + PhaseTapChangerNonLinear.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PhaseTapChangerSymmetrical\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py new file mode 100644 index 00000000..e9336e16 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTable.py @@ -0,0 +1,50 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class PhaseTapChangerTable(IdentifiedObject): + """ + Describes a tabular curve for how the phase angle difference and impedance varies with the tap step. + + :PhaseTapChangerTablePoint: The points of this table. Default: "list" + :PhaseTapChangerTabular: The phase tap changers to which this phase tap table applies. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTablePoint": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTabular": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + PhaseTapChangerTablePoint="list", + PhaseTapChangerTabular="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTablePoint = PhaseTapChangerTablePoint + self.PhaseTapChangerTabular = PhaseTapChangerTabular + + def __str__(self): + str = "class=PhaseTapChangerTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py new file mode 100644 index 00000000..780d4937 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTablePoint.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.TapChangerTablePoint import TapChangerTablePoint + + +class PhaseTapChangerTablePoint(TapChangerTablePoint): + """ + Describes each tap step in the phase tap changer tabular curve. + + :PhaseTapChangerTable: The table of this point. Default: None + :angle: The angle difference in degrees. Default: 0.0 + """ + + cgmesProfile = TapChangerTablePoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTable": [ + cgmesProfile.EQ.value, + ], + "angle": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TapChangerTablePoint: \n" + + TapChangerTablePoint.__doc__ + ) + + def __init__(self, PhaseTapChangerTable=None, angle=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTable = PhaseTapChangerTable + self.angle = angle + + def __str__(self): + str = "class=PhaseTapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py new file mode 100644 index 00000000..ffe92831 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PhaseTapChangerTabular.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerTabular(PhaseTapChanger): + """ + + + :PhaseTapChangerTable: The phase tap changer table for this phase tap changer. Default: None + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "PhaseTapChangerTable": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__(self, PhaseTapChangerTable=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTable = PhaseTapChangerTable + + def __str__(self): + str = "class=PhaseTapChangerTabular\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PositionPoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/PositionPoint.py new file mode 100644 index 00000000..1b93e6b2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PositionPoint.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class PositionPoint(Base): + """ + Set of spatial coordinates that determine a point, defined in the coordinate system specified in 'Location.CoordinateSystem'. Use a single position point instance to desribe a point-oriented location. Use a sequence of position points to describe a line-oriented object (physical location of non-point oriented objects like cables or lines), or area of an object (like a substation or a geographical zone - in this case, have first and last position point with the same values). + + :Location: Location described by this position point. Default: None + :sequenceNumber: Zero-relative sequence number of this point within a series of points. Default: 0 + :xPosition: X axis position. Default: '' + :yPosition: Y axis position. Default: '' + :zPosition: (if applicable) Z axis position. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "Location": [ + cgmesProfile.GL.value, + ], + "sequenceNumber": [ + cgmesProfile.GL.value, + ], + "xPosition": [ + cgmesProfile.GL.value, + ], + "yPosition": [ + cgmesProfile.GL.value, + ], + "zPosition": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Location=None, + sequenceNumber=0, + xPosition="", + yPosition="", + zPosition="", + ): + + self.Location = Location + self.sequenceNumber = sequenceNumber + self.xPosition = xPosition + self.yPosition = yPosition + self.zPosition = zPosition + + def __str__(self): + str = "class=PositionPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemResource.py b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemResource.py new file mode 100644 index 00000000..03d5088c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemResource.py @@ -0,0 +1,42 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class PowerSystemResource(IdentifiedObject): + """ + A power system resource can be an item of equipment such as a switch, an equipment container containing many individual items of equipment such as a substation, or an organisational entity such as sub-control area. Power system resources can have measurements associated. + + :Location: Location of this power system resource. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SSH.value, + ], + "Location": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, Location=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Location = Location + + def __str__(self): + str = "class=PowerSystemResource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py new file mode 100644 index 00000000..d9354e50 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerDynamics.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PowerSystemStabilizerDynamics(DynamicsFunctionBlock): + """ + Power system stabilizer function block whose behaviour is described by reference to a standard model + + :RemoteInputSignal: Remote input signal used by this power system stabilizer model. Default: "list" + :ExcitationSystemDynamics: Excitation system model with which this power system stabilizer model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal="list", ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=PowerSystemStabilizerDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py new file mode 100644 index 00000000..d8a508f3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PowerSystemStabilizerUserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PowerSystemStabilizerUserDefined(PowerSystemStabilizerDynamics): + """ + function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PowerSystemStabilizerUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformer.py b/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformer.py new file mode 100644 index 00000000..1c2287d8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformer.py @@ -0,0 +1,84 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class PowerTransformer(ConductingEquipment): + """ + An electrical device consisting of two or more coupled windings, with or without a magnetic core, for introducing mutual coupling between electric circuits. Transformers can be used to control voltage and phase shift (active power flow). A power transformer may be composed of separate transformer tanks that need not be identical. A power transformer can be modeled with or without tanks and is intended for use in both balanced and unbalanced representations. A power transformer typically has two terminals, but may have one (grounding), three or more terminals. The inherited association ConductingEquipment.BaseVoltage should not be used. The association from TransformerEnd to BaseVoltage should be used instead. + + :PowerTransformerEnd: The power transformer of this power transformer end. Default: "list" + :beforeShCircuitHighestOperatingCurrent: The highest operating current (Ib in the IEC 60909-0) before short circuit (depends on network configuration and relevant reliability philosophy). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. Default: 0.0 + :beforeShCircuitHighestOperatingVoltage: The highest operating voltage (Ub in the IEC 60909-0) before short circuit. It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is worst case voltage on the low side winding (Section 3.7.1 in the standard). Used to define operating conditions. Default: 0.0 + :beforeShortCircuitAnglePf: The angle of power factor before short circuit (phib in the IEC 60909-0). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is the worst case power factor. Used to define operating conditions. Default: 0.0 + :highSideMinOperatingU: The minimum operating voltage (uQmin in the IEC 60909-0) at the high voltage side (Q side) of the unit transformer of the power station unit. A value well established from long-term operating experience of the system. It is used for calculation of the impedance correction factor KG defined in IEC 60909-0 Default: 0.0 + :isPartOfGeneratorUnit: Indicates whether the machine is part of a power station unit. Used for short circuit data exchange according to IEC 60909 Default: False + :operationalValuesConsidered: It is used to define if the data (other attributes related to short circuit data exchange) defines long term operational conditions or not. Used for short circuit data exchange according to IEC 60909. Default: False + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PowerTransformerEnd": [ + cgmesProfile.EQ.value, + ], + "beforeShCircuitHighestOperatingCurrent": [ + cgmesProfile.EQ.value, + ], + "beforeShCircuitHighestOperatingVoltage": [ + cgmesProfile.EQ.value, + ], + "beforeShortCircuitAnglePf": [ + cgmesProfile.EQ.value, + ], + "highSideMinOperatingU": [ + cgmesProfile.EQ.value, + ], + "isPartOfGeneratorUnit": [ + cgmesProfile.EQ.value, + ], + "operationalValuesConsidered": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + PowerTransformerEnd="list", + beforeShCircuitHighestOperatingCurrent=0.0, + beforeShCircuitHighestOperatingVoltage=0.0, + beforeShortCircuitAnglePf=0.0, + highSideMinOperatingU=0.0, + isPartOfGeneratorUnit=False, + operationalValuesConsidered=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PowerTransformerEnd = PowerTransformerEnd + self.beforeShCircuitHighestOperatingCurrent = ( + beforeShCircuitHighestOperatingCurrent + ) + self.beforeShCircuitHighestOperatingVoltage = ( + beforeShCircuitHighestOperatingVoltage + ) + self.beforeShortCircuitAnglePf = beforeShortCircuitAnglePf + self.highSideMinOperatingU = highSideMinOperatingU + self.isPartOfGeneratorUnit = isPartOfGeneratorUnit + self.operationalValuesConsidered = operationalValuesConsidered + + def __str__(self): + str = "class=PowerTransformer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py b/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py new file mode 100644 index 00000000..6fb66f99 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PowerTransformerEnd.py @@ -0,0 +1,115 @@ +from cimpy.cgmes_v2_4_15.TransformerEnd import TransformerEnd + + +class PowerTransformerEnd(TransformerEnd): + """ + A PowerTransformerEnd is associated with each Terminal of a PowerTransformer. The impedance values r, r0, x, and x0 of a PowerTransformerEnd represents a star equivalent as follows 1) for a two Terminal PowerTransformer the high voltage PowerTransformerEnd has non zero values on r, r0, x, and x0 while the low voltage PowerTransformerEnd has zero values for r, r0, x, and x0. 2) for a three Terminal PowerTransformer the three PowerTransformerEnds represents a star equivalent with each leg in the star represented by r, r0, x, and x0 values. 3) for a PowerTransformer with more than three Terminals the PowerTransformerEnd impedance values cannot be used. Instead use the TransformerMeshImpedance or split the transformer into multiple PowerTransformers. + + :PowerTransformer: The ends of this power transformer. Default: None + :b: Magnetizing branch susceptance (B mag). The value can be positive or negative. Default: 0.0 + :connectionKind: Kind of connection. Default: None + :ratedS: Normal apparent power rating. The attribute shall be a positive value. For a two-winding transformer the values for the high and low voltage sides shall be identical. Default: 0.0 + :g: Magnetizing branch conductance. Default: 0.0 + :ratedU: Rated voltage: phase-phase for three-phase windings, and either phase-phase or phase-neutral for single-phase windings. A high voltage side, as given by TransformerEnd.endNumber, shall have a ratedU that is greater or equal than ratedU for the lower voltage sides. Default: 0.0 + :r: Resistance (star-model) of the transformer end. The attribute shall be equal or greater than zero for non-equivalent transformers. Default: 0.0 + :x: Positive sequence series reactance (star-model) of the transformer end. Default: 0.0 + :b0: Zero sequence magnetizing branch susceptance. Default: 0.0 + :phaseAngleClock: Terminal voltage phase angle displacement where 360 degrees are represented with clock hours. The valid values are 0 to 11. For example, for the secondary side end of a transformer with vector group code of 'Dyn11', specify the connection kind as wye with neutral and specify the phase angle of the clock as 11. The clock value of the transformer end number specified as 1, is assumed to be zero. Note the transformer end number is not assumed to be the same as the terminal sequence number. Default: 0 + :g0: Zero sequence magnetizing branch conductance (star-model). Default: 0.0 + :r0: Zero sequence series resistance (star-model) of the transformer end. Default: 0.0 + :x0: Zero sequence series reactance of the transformer end. Default: 0.0 + """ + + cgmesProfile = TransformerEnd.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PowerTransformer": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "connectionKind": [ + cgmesProfile.EQ.value, + ], + "ratedS": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "ratedU": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "b0": [ + cgmesProfile.EQ.value, + ], + "phaseAngleClock": [ + cgmesProfile.EQ.value, + ], + "g0": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TransformerEnd: \n" + TransformerEnd.__doc__ + ) + + def __init__( + self, + PowerTransformer=None, + b=0.0, + connectionKind=None, + ratedS=0.0, + g=0.0, + ratedU=0.0, + r=0.0, + x=0.0, + b0=0.0, + phaseAngleClock=0, + g0=0.0, + r0=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PowerTransformer = PowerTransformer + self.b = b + self.connectionKind = connectionKind + self.ratedS = ratedS + self.g = g + self.ratedU = ratedU + self.r = r + self.x = x + self.b0 = b0 + self.phaseAngleClock = phaseAngleClock + self.g0 = g0 + self.r0 = r0 + self.x0 = x0 + + def __str__(self): + str = "class=PowerTransformerEnd\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py new file mode 100644 index 00000000..bce1019f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ProprietaryParameterDynamics.py @@ -0,0 +1,164 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ProprietaryParameterDynamics(Base): + """ + Supports definition of one or more parameters of several different datatypes for use by proprietary user-defined models. NOTE: This class does not inherit from IdentifiedObject since it is not intended that a single instance of it be referenced by more than one proprietary user-defined model instance. + + :WindPlantUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :WindType1or2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :WindType3or4UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :SynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :AsynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :TurbineGovernorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :TurbineLoadControllerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :MechanicalLoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :ExcitationSystemUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :OverexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :UnderexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PowerSystemStabilizerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :DiscontinuousExcitationControlUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PFVArControllerType1UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :VoltageAdjusterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PFVArControllerType2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :VoltageCompensatorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :LoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :parameterNumber: Sequence number of the parameter among the set of parameters associated with the related proprietary user-defined model. Default: 0 + :booleanParameterValue: Used for boolean parameter value. If this attribute is populated, integerParameterValue and floatParameterValue will not be. Default: False + :integerParameterValue: Used for integer parameter value. If this attribute is populated, booleanParameterValue and floatParameterValue will not be. Default: 0 + :floatParameterValue: Used for floating point parameter value. If this attribute is populated, booleanParameterValue and integerParameterValue will not be. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindPlantUserDefined": [ + cgmesProfile.DY.value, + ], + "WindType1or2UserDefined": [ + cgmesProfile.DY.value, + ], + "WindType3or4UserDefined": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineUserDefined": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineUserDefined": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorUserDefined": [ + cgmesProfile.DY.value, + ], + "TurbineLoadControllerUserDefined": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadUserDefined": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemUserDefined": [ + cgmesProfile.DY.value, + ], + "OverexcitationLimiterUserDefined": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterUserDefined": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerUserDefined": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlUserDefined": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1UserDefined": [ + cgmesProfile.DY.value, + ], + "VoltageAdjusterUserDefined": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType2UserDefined": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorUserDefined": [ + cgmesProfile.DY.value, + ], + "LoadUserDefined": [ + cgmesProfile.DY.value, + ], + "parameterNumber": [ + cgmesProfile.DY.value, + ], + "booleanParameterValue": [ + cgmesProfile.DY.value, + ], + "integerParameterValue": [ + cgmesProfile.DY.value, + ], + "floatParameterValue": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + WindPlantUserDefined=None, + WindType1or2UserDefined=None, + WindType3or4UserDefined=None, + SynchronousMachineUserDefined=None, + AsynchronousMachineUserDefined=None, + TurbineGovernorUserDefined=None, + TurbineLoadControllerUserDefined=None, + MechanicalLoadUserDefined=None, + ExcitationSystemUserDefined=None, + OverexcitationLimiterUserDefined=None, + UnderexcitationLimiterUserDefined=None, + PowerSystemStabilizerUserDefined=None, + DiscontinuousExcitationControlUserDefined=None, + PFVArControllerType1UserDefined=None, + VoltageAdjusterUserDefined=None, + PFVArControllerType2UserDefined=None, + VoltageCompensatorUserDefined=None, + LoadUserDefined=None, + parameterNumber=0, + booleanParameterValue=False, + integerParameterValue=0, + floatParameterValue=0.0, + ): + + self.WindPlantUserDefined = WindPlantUserDefined + self.WindType1or2UserDefined = WindType1or2UserDefined + self.WindType3or4UserDefined = WindType3or4UserDefined + self.SynchronousMachineUserDefined = SynchronousMachineUserDefined + self.AsynchronousMachineUserDefined = AsynchronousMachineUserDefined + self.TurbineGovernorUserDefined = TurbineGovernorUserDefined + self.TurbineLoadControllerUserDefined = TurbineLoadControllerUserDefined + self.MechanicalLoadUserDefined = MechanicalLoadUserDefined + self.ExcitationSystemUserDefined = ExcitationSystemUserDefined + self.OverexcitationLimiterUserDefined = OverexcitationLimiterUserDefined + self.UnderexcitationLimiterUserDefined = UnderexcitationLimiterUserDefined + self.PowerSystemStabilizerUserDefined = PowerSystemStabilizerUserDefined + self.DiscontinuousExcitationControlUserDefined = ( + DiscontinuousExcitationControlUserDefined + ) + self.PFVArControllerType1UserDefined = PFVArControllerType1UserDefined + self.VoltageAdjusterUserDefined = VoltageAdjusterUserDefined + self.PFVArControllerType2UserDefined = PFVArControllerType2UserDefined + self.VoltageCompensatorUserDefined = VoltageCompensatorUserDefined + self.LoadUserDefined = LoadUserDefined + self.parameterNumber = parameterNumber + self.booleanParameterValue = booleanParameterValue + self.integerParameterValue = integerParameterValue + self.floatParameterValue = floatParameterValue + + def __str__(self): + str = "class=ProprietaryParameterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ProtectedSwitch.py b/cimpy_3/cimpy/cgmes_v2_4_15/ProtectedSwitch.py new file mode 100644 index 00000000..4118e218 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ProtectedSwitch.py @@ -0,0 +1,33 @@ +from cimpy.cgmes_v2_4_15.Switch import Switch + + +class ProtectedSwitch(Switch): + """ + A ProtectedSwitch is a switching device that can be operated by ProtectionEquipment. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=ProtectedSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Pss1.py b/cimpy_3/cimpy/cgmes_v2_4_15/Pss1.py new file mode 100644 index 00000000..d9a74878 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Pss1.py @@ -0,0 +1,130 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class Pss1(PowerSystemStabilizerDynamics): + """ + Italian PSS - three input PSS (speed, frequency, power). + + :kw: Shaft speed power input gain (K). Typical Value = 0. Default: 0.0 + :kf: Frequency power input gain (K). Typical Value = 5. Default: 0.0 + :kpe: Electric power input gain (K). Typical Value = 0.3. Default: 0.0 + :pmin: Minimum power PSS enabling (P). Typical Value = 0.25. Default: 0.0 + :ks: PSS gain (K). Typical Value = 1. Default: 0.0 + :vsmn: Stabilizer output max limit (V). Typical Value = -0.06. Default: 0.0 + :vsmx: Stabilizer output min limit (V). Typical Value = 0.06. Default: 0.0 + :tpe: Electric power filter time constant (T). Typical Value = 0.05. Default: 0 + :t5: Washout (T). Typical Value = 3.5. Default: 0 + :t6: Filter time constant (T). Typical Value = 0. Default: 0 + :t7: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :t8: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :t9: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :t10: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :vadat: Default: False + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kw": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kpe": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vsmn": [ + cgmesProfile.DY.value, + ], + "vsmx": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "vadat": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + kw=0.0, + kf=0.0, + kpe=0.0, + pmin=0.0, + ks=0.0, + vsmn=0.0, + vsmx=0.0, + tpe=0, + t5=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + vadat=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kw = kw + self.kf = kf + self.kpe = kpe + self.pmin = pmin + self.ks = ks + self.vsmn = vsmn + self.vsmx = vsmx + self.tpe = tpe + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.vadat = vadat + + def __str__(self): + str = "class=Pss1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Pss1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/Pss1A.py new file mode 100644 index 00000000..8ee6c89c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Pss1A.py @@ -0,0 +1,172 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class Pss1A(PowerSystemStabilizerDynamics): + """ + Single input power system stabilizer. It is a modified version in order to allow representation of various vendors' implementations on PSS type 1A. + + :inputSignalType: Type of input signal. Default: None + :a1: Notch filter parameter (A1). Default: 0.0 + :a2: Notch filter parameter (A2). Default: 0.0 + :t1: Lead/lag time constant (T1). Default: 0 + :t2: Lead/lag time constant (T2). Default: 0 + :t3: Lead/lag time constant (T3). Default: 0 + :t4: Lead/lag time constant (T4). Default: 0 + :t5: Washout time constant (T5). Default: 0 + :t6: Transducer time constant (T6). Default: 0 + :ks: Stabilizer gain (Ks). Default: 0.0 + :vrmax: Maximum stabilizer output (Vrmax). Default: 0.0 + :vrmin: Minimum stabilizer output (Vrmin). Default: 0.0 + :vcu: Stabilizer input cutoff threshold (Vcu). Default: 0.0 + :vcl: Stabilizer input cutoff threshold (Vcl). Default: 0.0 + :a3: Notch filter parameter (A3). Default: 0.0 + :a4: Notch filter parameter (A4). Default: 0.0 + :a5: Notch filter parameter (A5). Default: 0.0 + :a6: Notch filter parameter (A6). Default: 0.0 + :a7: Notch filter parameter (A7). Default: 0.0 + :a8: Notch filter parameter (A8). Default: 0.0 + :kd: Selector (Kd). true = e used false = e not used. Default: False + :tdelay: Time constant (Tdelay). Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignalType": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "a7": [ + cgmesProfile.DY.value, + ], + "a8": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "tdelay": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignalType=None, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + ks=0.0, + vrmax=0.0, + vrmin=0.0, + vcu=0.0, + vcl=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + a6=0.0, + a7=0.0, + a8=0.0, + kd=False, + tdelay=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignalType = inputSignalType + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.ks = ks + self.vrmax = vrmax + self.vrmin = vrmin + self.vcu = vcu + self.vcl = vcl + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.a6 = a6 + self.a7 = a7 + self.a8 = a8 + self.kd = kd + self.tdelay = tdelay + + def __str__(self): + str = "class=Pss1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Pss2B.py b/cimpy_3/cimpy/cgmes_v2_4_15/Pss2B.py new file mode 100644 index 00000000..3153d5ca --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Pss2B.py @@ -0,0 +1,226 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class Pss2B(PowerSystemStabilizerDynamics): + """ + Modified IEEE PSS2B Model. Extra lead/lag (or rate) block added at end (up to 4 lead/lags total). + + :inputSignal1Type: Type of input signal #1. Typical Value = rotorSpeed. Default: None + :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None + :vsi1max: Input signal #1 max limit (Vsi1max). Typical Value = 2. Default: 0.0 + :vsi1min: Input signal #1 min limit (Vsi1min). Typical Value = -2. Default: 0.0 + :tw1: First washout on signal #1 (Tw1). Typical Value = 2. Default: 0 + :tw2: Second washout on signal #1 (Tw2). Typical Value = 2. Default: 0 + :vsi2max: Input signal #2 max limit (Vsi2max). Typical Value = 2. Default: 0.0 + :vsi2min: Input signal #2 min limit (Vsi2min). Typical Value = -2. Default: 0.0 + :tw3: First washout on signal #2 (Tw3). Typical Value = 2. Default: 0 + :tw4: Second washout on signal #2 (Tw4). Typical Value = 0. Default: 0 + :t1: Lead/lag time constant (T1). Typical Value = 0.12. Default: 0 + :t2: Lead/lag time constant (T2). Typical Value = 0.02. Default: 0 + :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 + :t4: Lead/lag time constant (T4). Typical Value = 0.02. Default: 0 + :t6: Time constant on signal #1 (T6). Typical Value = 0. Default: 0 + :t7: Time constant on signal #2 (T7). Typical Value = 2. Default: 0 + :t8: Lead of ramp tracking filter (T8). Typical Value = 0.2. Default: 0 + :t9: Lag of ramp tracking filter (T9). Typical Value = 0.1. Default: 0 + :t10: Lead/lag time constant (T10). Typical Value = 0. Default: 0 + :t11: Lead/lag time constant (T11). Typical Value = 0. Default: 0 + :ks1: Stabilizer gain (Ks1). Typical Value = 12. Default: 0.0 + :ks2: Gain on signal #2 (Ks2). Typical Value = 0.2. Default: 0.0 + :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical Value = 1. Default: 0.0 + :ks4: Gain on signal #2 input after ramp-tracking filter (Ks4). Typical Value = 1. Default: 0.0 + :n: Order of ramp tracking filter (N). Typical Value = 1. Default: 0 + :m: Denominator order of ramp tracking filter (M). Typical Value = 5. Default: 0 + :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 + :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 + :a: Numerator constant (a). Typical Value = 1. Default: 0.0 + :ta: Lead constant (Ta). Typical Value = 0. Default: 0 + :tb: Lag time constant (Tb). Typical Value = 0. Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "vsi1max": [ + cgmesProfile.DY.value, + ], + "vsi1min": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "vsi2max": [ + cgmesProfile.DY.value, + ], + "vsi2min": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "tw4": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t11": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ks3": [ + cgmesProfile.DY.value, + ], + "ks4": [ + cgmesProfile.DY.value, + ], + "n": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + vsi1max=0.0, + vsi1min=0.0, + tw1=0, + tw2=0, + vsi2max=0.0, + vsi2min=0.0, + tw3=0, + tw4=0, + t1=0, + t2=0, + t3=0, + t4=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + t11=0, + ks1=0.0, + ks2=0.0, + ks3=0.0, + ks4=0.0, + n=0, + m=0, + vstmax=0.0, + vstmin=0.0, + a=0.0, + ta=0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.vsi1max = vsi1max + self.vsi1min = vsi1min + self.tw1 = tw1 + self.tw2 = tw2 + self.vsi2max = vsi2max + self.vsi2min = vsi2min + self.tw3 = tw3 + self.tw4 = tw4 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.ks1 = ks1 + self.ks2 = ks2 + self.ks3 = ks3 + self.ks4 = ks4 + self.n = n + self.m = m + self.vstmax = vstmax + self.vstmin = vstmin + self.a = a + self.ta = ta + self.tb = tb + + def __str__(self): + str = "class=Pss2B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Pss2ST.py b/cimpy_3/cimpy/cgmes_v2_4_15/Pss2ST.py new file mode 100644 index 00000000..700c9fdd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Pss2ST.py @@ -0,0 +1,148 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class Pss2ST(PowerSystemStabilizerDynamics): + """ + PTI Microprocessor-Based Stabilizer type 1. + + :inputSignal1Type: Type of input signal #1. Typical Value = rotorAngularFrequencyDeviation. Default: None + :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None + :k1: Gain (K1). Default: 0.0 + :k2: Gain (K2). Default: 0.0 + :t1: Time constant (T1). Default: 0 + :t2: Time constant (T2). Default: 0 + :t3: Time constant (T3). Default: 0 + :t4: Time constant (T4). Default: 0 + :t5: Time constant (T5). Default: 0 + :t6: Time constant (T6). Default: 0 + :t7: Time constant (T7). Default: 0 + :t8: Time constant (T8). Default: 0 + :t9: Time constant (T9). Default: 0 + :t10: Time constant (T10). Default: 0 + :lsmax: Limiter (Lsmax). Default: 0.0 + :lsmin: Limiter (Lsmin). Default: 0.0 + :vcu: Cutoff limiter (Vcu). Default: 0.0 + :vcl: Cutoff limiter (Vcl). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "lsmax": [ + cgmesProfile.DY.value, + ], + "lsmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + k1=0.0, + k2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + lsmax=0.0, + lsmin=0.0, + vcu=0.0, + vcl=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.k1 = k1 + self.k2 = k2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.lsmax = lsmax + self.lsmin = lsmin + self.vcu = vcu + self.vcl = vcl + + def __str__(self): + str = "class=Pss2ST\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Pss5.py b/cimpy_3/cimpy/cgmes_v2_4_15/Pss5.py new file mode 100644 index 00000000..4506de1f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Pss5.py @@ -0,0 +1,142 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class Pss5(PowerSystemStabilizerDynamics): + """ + Italian PSS - Detailed PSS. + + :kpe: Electric power input gain (K). Typical Value = 0.3. Default: 0.0 + :kf: Frequency/shaft speed input gain (K). Typical Value = 5. Default: 0.0 + :isfreq: Selector for Frequency/shaft speed input (IsFreq). true = speed false = frequency. Typical Value = true. Default: False + :kpss: PSS gain (K). Typical Value = 1. Default: 0.0 + :ctw2: Selector for Second washout enabling (C). true = second washout filter is bypassed false = second washout filter in use. Typical Value = true. Default: False + :tw1: First WashOut (T). Typical Value = 3.5. Default: 0 + :tw2: Second WashOut (T). Typical Value = 0. Default: 0 + :tl1: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :tl2: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :tl3: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :tl4: Lead/lag time constant (T). Typical Value = 0. Default: 0 + :vsmn: Stabilizer output max limit (V). Typical Value = -0.1. Default: 0.0 + :vsmx: Stabilizer output min limit (V). Typical Value = 0.1. Default: 0.0 + :tpe: Electric power filter time constant (T). Typical Value = 0.05. Default: 0 + :pmm: Minimum power PSS enabling (P). Typical Value = 0.25. Default: 0.0 + :deadband: Stabilizer output dead band (DeadBand). Typical Value = 0. Default: 0.0 + :vadat: Default: False + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpe": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "isfreq": [ + cgmesProfile.DY.value, + ], + "kpss": [ + cgmesProfile.DY.value, + ], + "ctw2": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "tl3": [ + cgmesProfile.DY.value, + ], + "tl4": [ + cgmesProfile.DY.value, + ], + "vsmn": [ + cgmesProfile.DY.value, + ], + "vsmx": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "pmm": [ + cgmesProfile.DY.value, + ], + "deadband": [ + cgmesProfile.DY.value, + ], + "vadat": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + kpe=0.0, + kf=0.0, + isfreq=False, + kpss=0.0, + ctw2=False, + tw1=0, + tw2=0, + tl1=0, + tl2=0, + tl3=0, + tl4=0, + vsmn=0.0, + vsmx=0.0, + tpe=0, + pmm=0.0, + deadband=0.0, + vadat=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpe = kpe + self.kf = kf + self.isfreq = isfreq + self.kpss = kpss + self.ctw2 = ctw2 + self.tw1 = tw1 + self.tw2 = tw2 + self.tl1 = tl1 + self.tl2 = tl2 + self.tl3 = tl3 + self.tl4 = tl4 + self.vsmn = vsmn + self.vsmx = vsmx + self.tpe = tpe + self.pmm = pmm + self.deadband = deadband + self.vadat = vadat + + def __str__(self): + str = "class=Pss5\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssELIN2.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssELIN2.py new file mode 100644 index 00000000..eada96b0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssELIN2.py @@ -0,0 +1,106 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssELIN2(PowerSystemStabilizerDynamics): + """ + Power system stabilizer typically associated with ExcELIN2 (though PssIEEE2B or Pss2B can also be used). + + :ts1: Time constant (Ts1). Typical Value = 0. Default: 0 + :ts2: Time constant (Ts2). Typical Value = 1. Default: 0 + :ts3: Time constant (Ts3). Typical Value = 1. Default: 0 + :ts4: Time constant (Ts4). Typical Value = 0.1. Default: 0 + :ts5: Time constant (Ts5). Typical Value = 0. Default: 0 + :ts6: Time constant (Ts6). Typical Value = 1. Default: 0 + :ks1: Gain (Ks1). Typical Value = 1. Default: 0.0 + :ks2: Gain (Ks2). Typical Value = 0.1. Default: 0.0 + :ppss: Coefficient (p_PSS) (>=0 and <=4). Typical Value = 0.1. Default: 0.0 + :apss: Coefficient (a_PSS). Typical Value = 0.1. Default: 0.0 + :psslim: PSS limiter (psslim). Typical Value = 0.1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ts1": [ + cgmesProfile.DY.value, + ], + "ts2": [ + cgmesProfile.DY.value, + ], + "ts3": [ + cgmesProfile.DY.value, + ], + "ts4": [ + cgmesProfile.DY.value, + ], + "ts5": [ + cgmesProfile.DY.value, + ], + "ts6": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ppss": [ + cgmesProfile.DY.value, + ], + "apss": [ + cgmesProfile.DY.value, + ], + "psslim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + ts1=0, + ts2=0, + ts3=0, + ts4=0, + ts5=0, + ts6=0, + ks1=0.0, + ks2=0.0, + ppss=0.0, + apss=0.0, + psslim=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ts1 = ts1 + self.ts2 = ts2 + self.ts3 = ts3 + self.ts4 = ts4 + self.ts5 = ts5 + self.ts6 = ts6 + self.ks1 = ks1 + self.ks2 = ks2 + self.ppss = ppss + self.apss = apss + self.psslim = psslim + + def __str__(self): + str = "class=PssELIN2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE1A.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE1A.py new file mode 100644 index 00000000..14490c9e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE1A.py @@ -0,0 +1,112 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssIEEE1A(PowerSystemStabilizerDynamics): + """ + The class represents IEEE Std 421.5-2005 type PSS1A power system stabilizer model. PSS1A is the generalized form of a PSS with a single input. Some common stabilizer input signals are speed, frequency, and power. Reference: IEEE 1A 421.5-2005 Section 8.1. + + :inputSignalType: Type of input signal. Typical Value = rotorAngularFrequencyDeviation. Default: None + :a1: PSS signal conditioning frequency filter constant (A1). Typical Value = 0.061. Default: 0.0 + :a2: PSS signal conditioning frequency filter constant (A2). Typical Value = 0.0017. Default: 0.0 + :t1: Lead/lag time constant (T1). Typical Value = 0.3. Default: 0 + :t2: Lead/lag time constant (T2). Typical Value = 0.03. Default: 0 + :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 + :t4: Lead/lag time constant (T4). Typical Value = 0.03. Default: 0 + :t5: Washout time constant (T5). Typical Value = 10. Default: 0 + :t6: Transducer time constant (T6). Typical Value = 0.01. Default: 0 + :ks: Stabilizer gain (Ks). Typical Value = 5. Default: 0.0 + :vrmax: Maximum stabilizer output (Vrmax). Typical Value = 0.05. Default: 0.0 + :vrmin: Minimum stabilizer output (Vrmin). Typical Value = -0.05. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignalType": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignalType=None, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + ks=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignalType = inputSignalType + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.ks = ks + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=PssIEEE1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE2B.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE2B.py new file mode 100644 index 00000000..e444d5bb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE2B.py @@ -0,0 +1,202 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssIEEE2B(PowerSystemStabilizerDynamics): + """ + The class represents IEEE Std 421.5-2005 type PSS2B power system stabilizer model. This stabilizer model is designed to represent a variety of dual-input stabilizers, which normally use combinations of power and speed or frequency to derive the stabilizing signal. Reference: IEEE 2B 421.5-2005 Section 8.2. + + :inputSignal1Type: Type of input signal #1. Typical Value = rotorSpeed. Default: None + :inputSignal2Type: Type of input signal #2. Typical Value = generatorElectricalPower. Default: None + :vsi1max: Input signal #1 max limit (Vsi1max). Typical Value = 2. Default: 0.0 + :vsi1min: Input signal #1 min limit (Vsi1min). Typical Value = -2. Default: 0.0 + :tw1: First washout on signal #1 (Tw1). Typical Value = 2. Default: 0 + :tw2: Second washout on signal #1 (Tw2). Typical Value = 2. Default: 0 + :vsi2max: Input signal #2 max limit (Vsi2max). Typical Value = 2. Default: 0.0 + :vsi2min: Input signal #2 min limit (Vsi2min). Typical Value = -2. Default: 0.0 + :tw3: First washout on signal #2 (Tw3). Typical Value = 2. Default: 0 + :tw4: Second washout on signal #2 (Tw4). Typical Value = 0. Default: 0 + :t1: Lead/lag time constant (T1). Typical Value = 0.12. Default: 0 + :t2: Lead/lag time constant (T2). Typical Value = 0.02. Default: 0 + :t3: Lead/lag time constant (T3). Typical Value = 0.3. Default: 0 + :t4: Lead/lag time constant (T4). Typical Value = 0.02. Default: 0 + :t6: Time constant on signal #1 (T6). Typical Value = 0. Default: 0 + :t7: Time constant on signal #2 (T7). Typical Value = 2. Default: 0 + :t8: Lead of ramp tracking filter (T8). Typical Value = 0.2. Default: 0 + :t9: Lag of ramp tracking filter (T9). Typical Value = 0.1. Default: 0 + :t10: Lead/lag time constant (T10). Typical Value = 0. Default: 0 + :t11: Lead/lag time constant (T11). Typical Value = 0. Default: 0 + :ks1: Stabilizer gain (Ks1). Typical Value = 12. Default: 0.0 + :ks2: Gain on signal #2 (Ks2). Typical Value = 0.2. Default: 0.0 + :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical Value = 1. Default: 0.0 + :n: Order of ramp tracking filter (N). Typical Value = 1. Default: 0 + :m: Denominator order of ramp tracking filter (M). Typical Value = 5. Default: 0 + :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 + :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "vsi1max": [ + cgmesProfile.DY.value, + ], + "vsi1min": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "vsi2max": [ + cgmesProfile.DY.value, + ], + "vsi2min": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "tw4": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t11": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ks3": [ + cgmesProfile.DY.value, + ], + "n": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + vsi1max=0.0, + vsi1min=0.0, + tw1=0, + tw2=0, + vsi2max=0.0, + vsi2min=0.0, + tw3=0, + tw4=0, + t1=0, + t2=0, + t3=0, + t4=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + t11=0, + ks1=0.0, + ks2=0.0, + ks3=0.0, + n=0, + m=0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.vsi1max = vsi1max + self.vsi1min = vsi1min + self.tw1 = tw1 + self.tw2 = tw2 + self.vsi2max = vsi2max + self.vsi2min = vsi2min + self.tw3 = tw3 + self.tw4 = tw4 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.ks1 = ks1 + self.ks2 = ks2 + self.ks3 = ks3 + self.n = n + self.m = m + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE2B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE3B.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE3B.py new file mode 100644 index 00000000..78e5c54d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE3B.py @@ -0,0 +1,154 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssIEEE3B(PowerSystemStabilizerDynamics): + """ + The class represents IEEE Std 421.5-2005 type PSS3B power system stabilizer model. The PSS model PSS3B has dual inputs of electrical power and rotor angular frequency deviation. The signals are used to derive an equivalent mechanical power signal. Reference: IEEE 3B 421.5-2005 Section 8.3. + + :inputSignal1Type: Type of input signal #1. Typical Value = generatorElectricalPower. Default: None + :inputSignal2Type: Type of input signal #2. Typical Value = rotorSpeed. Default: None + :t1: Transducer time constant (T1). Typical Value = 0.012. Default: 0 + :t2: Transducer time constant (T2). Typical Value = 0.012. Default: 0 + :tw1: Washout time constant (Tw1). Typical Value = 0.3. Default: 0 + :tw2: Washout time constant (Tw2). Typical Value = 0.3. Default: 0 + :tw3: Washout time constant (Tw3). Typical Value = 0.6. Default: 0 + :ks1: Gain on signal # 1 (Ks1). Typical Value = -0.602. Default: 0.0 + :ks2: Gain on signal # 2 (Ks2). Typical Value = 30.12. Default: 0.0 + :a1: Notch filter parameter (A1). Typical Value = 0.359. Default: 0.0 + :a2: Notch filter parameter (A2). Typical Value = 0.586. Default: 0.0 + :a3: Notch filter parameter (A3). Typical Value = 0.429. Default: 0.0 + :a4: Notch filter parameter (A4). Typical Value = 0.564. Default: 0.0 + :a5: Notch filter parameter (A5). Typical Value = 0.001. Default: 0.0 + :a6: Notch filter parameter (A6). Typical Value = 0. Default: 0.0 + :a7: Notch filter parameter (A7). Typical Value = 0.031. Default: 0.0 + :a8: Notch filter parameter (A8). Typical Value = 0. Default: 0.0 + :vstmax: Stabilizer output max limit (Vstmax). Typical Value = 0.1. Default: 0.0 + :vstmin: Stabilizer output min limit (Vstmin). Typical Value = -0.1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "a7": [ + cgmesProfile.DY.value, + ], + "a8": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + t1=0, + t2=0, + tw1=0, + tw2=0, + tw3=0, + ks1=0.0, + ks2=0.0, + a1=0.0, + a2=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + a6=0.0, + a7=0.0, + a8=0.0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.t1 = t1 + self.t2 = t2 + self.tw1 = tw1 + self.tw2 = tw2 + self.tw3 = tw3 + self.ks1 = ks1 + self.ks2 = ks2 + self.a1 = a1 + self.a2 = a2 + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.a6 = a6 + self.a7 = a7 + self.a8 = a8 + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE3B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE4B.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE4B.py new file mode 100644 index 00000000..f7c1a5da --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssIEEE4B.py @@ -0,0 +1,442 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssIEEE4B(PowerSystemStabilizerDynamics): + """ + The class represents IEEE Std 421.5-2005 type PSS2B power system stabilizer model. The PSS4B model represents a structure based on multiple working frequency bands. Three separate bands, respectively dedicated to the low-, intermediate- and high-frequency modes of oscillations, are used in this delta-omega (speed input) PSS. Reference: IEEE 4B 421.5-2005 Section 8.4. + + :bwh1: Notch filter 1 (high-frequency band): Three dB bandwidth (B). Default: 0.0 + :bwh2: Notch filter 2 (high-frequency band): Three dB bandwidth (B). Default: 0.0 + :bwl1: Notch filter 1 (low-frequency band): Three dB bandwidth (B). Default: 0.0 + :bwl2: Notch filter 2 (low-frequency band): Three dB bandwidth (B). Default: 0.0 + :kh: High band gain (K). Typical Value = 120. Default: 0.0 + :kh1: High band differential filter gain (K). Typical Value = 66. Default: 0.0 + :kh11: High band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :kh17: High band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :kh2: High band differential filter gain (K). Typical Value = 66. Default: 0.0 + :ki: Intermediate band gain (K). Typical Value = 30. Default: 0.0 + :ki1: Intermediate band differential filter gain (K). Typical Value = 66. Default: 0.0 + :ki11: Intermediate band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :ki17: Intermediate band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :ki2: Intermediate band differential filter gain (K). Typical Value = 66. Default: 0.0 + :kl: Low band gain (K). Typical Value = 7.5. Default: 0.0 + :kl1: Low band differential filter gain (K). Typical Value = 66. Default: 0.0 + :kl11: Low band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :kl17: Low band first lead-lag blocks coefficient (K). Typical Value = 1. Default: 0.0 + :kl2: Low band differential filter gain (K). Typical Value = 66. Default: 0.0 + :omeganh1: Notch filter 1 (high-frequency band): filter frequency (omega). Default: 0.0 + :omeganh2: Notch filter 2 (high-frequency band): filter frequency (omega). Default: 0.0 + :omeganl1: Notch filter 1 (low-frequency band): filter frequency (omega). Default: 0.0 + :omeganl2: Notch filter 2 (low-frequency band): filter frequency (omega). Default: 0.0 + :th1: High band time constant (T). Typical Value = 0.01513. Default: 0 + :th10: High band time constant (T). Typical Value = 0. Default: 0 + :th11: High band time constant (T). Typical Value = 0. Default: 0 + :th12: High band time constant (T). Typical Value = 0. Default: 0 + :th2: High band time constant (T). Typical Value = 0.01816. Default: 0 + :th3: High band time constant (T). Typical Value = 0. Default: 0 + :th4: High band time constant (T). Typical Value = 0. Default: 0 + :th5: High band time constant (T). Typical Value = 0. Default: 0 + :th6: High band time constant (T). Typical Value = 0. Default: 0 + :th7: High band time constant (T). Typical Value = 0.01816. Default: 0 + :th8: High band time constant (T). Typical Value = 0.02179. Default: 0 + :th9: High band time constant (T). Typical Value = 0. Default: 0 + :ti1: Intermediate band time constant (T). Typical Value = 0.173. Default: 0 + :ti10: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti11: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti12: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti2: Intermediate band time constant (T). Typical Value = 0.2075. Default: 0 + :ti3: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti4: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti5: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti6: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :ti7: Intermediate band time constant (T). Typical Value = 0.2075. Default: 0 + :ti8: Intermediate band time constant (T). Typical Value = 0.2491. Default: 0 + :ti9: Intermediate band time constant (T). Typical Value = 0. Default: 0 + :tl1: Low band time constant (T). Typical Value = 1.73. Default: 0 + :tl10: Low band time constant (T). Typical Value = 0. Default: 0 + :tl11: Low band time constant (T). Typical Value = 0. Default: 0 + :tl12: Low band time constant (T). Typical Value = 0. Default: 0 + :tl2: Low band time constant (T). Typical Value = 2.075. Default: 0 + :tl3: Low band time constant (T). Typical Value = 0. Default: 0 + :tl4: Low band time constant (T). Typical Value = 0. Default: 0 + :tl5: Low band time constant (T). Typical Value = 0. Default: 0 + :tl6: Low band time constant (T). Typical Value = 0. Default: 0 + :tl7: Low band time constant (T). Typical Value = 2.075. Default: 0 + :tl8: Low band time constant (T). Typical Value = 2.491. Default: 0 + :tl9: Low band time constant (T). Typical Value = 0. Default: 0 + :vhmax: High band output maximum limit (V). Typical Value = 0.6. Default: 0.0 + :vhmin: High band output minimum limit (V). Typical Value = -0.6. Default: 0.0 + :vimax: Intermediate band output maximum limit (V). Typical Value = 0.6. Default: 0.0 + :vimin: Intermediate band output minimum limit (V). Typical Value = -0.6. Default: 0.0 + :vlmax: Low band output maximum limit (V). Typical Value = 0.075. Default: 0.0 + :vlmin: Low band output minimum limit (V). Typical Value = -0.075. Default: 0.0 + :vstmax: PSS output maximum limit (V). Typical Value = 0.15. Default: 0.0 + :vstmin: PSS output minimum limit (V). Typical Value = -0.15. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bwh1": [ + cgmesProfile.DY.value, + ], + "bwh2": [ + cgmesProfile.DY.value, + ], + "bwl1": [ + cgmesProfile.DY.value, + ], + "bwl2": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kh1": [ + cgmesProfile.DY.value, + ], + "kh11": [ + cgmesProfile.DY.value, + ], + "kh17": [ + cgmesProfile.DY.value, + ], + "kh2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "ki1": [ + cgmesProfile.DY.value, + ], + "ki11": [ + cgmesProfile.DY.value, + ], + "ki17": [ + cgmesProfile.DY.value, + ], + "ki2": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kl1": [ + cgmesProfile.DY.value, + ], + "kl11": [ + cgmesProfile.DY.value, + ], + "kl17": [ + cgmesProfile.DY.value, + ], + "kl2": [ + cgmesProfile.DY.value, + ], + "omeganh1": [ + cgmesProfile.DY.value, + ], + "omeganh2": [ + cgmesProfile.DY.value, + ], + "omeganl1": [ + cgmesProfile.DY.value, + ], + "omeganl2": [ + cgmesProfile.DY.value, + ], + "th1": [ + cgmesProfile.DY.value, + ], + "th10": [ + cgmesProfile.DY.value, + ], + "th11": [ + cgmesProfile.DY.value, + ], + "th12": [ + cgmesProfile.DY.value, + ], + "th2": [ + cgmesProfile.DY.value, + ], + "th3": [ + cgmesProfile.DY.value, + ], + "th4": [ + cgmesProfile.DY.value, + ], + "th5": [ + cgmesProfile.DY.value, + ], + "th6": [ + cgmesProfile.DY.value, + ], + "th7": [ + cgmesProfile.DY.value, + ], + "th8": [ + cgmesProfile.DY.value, + ], + "th9": [ + cgmesProfile.DY.value, + ], + "ti1": [ + cgmesProfile.DY.value, + ], + "ti10": [ + cgmesProfile.DY.value, + ], + "ti11": [ + cgmesProfile.DY.value, + ], + "ti12": [ + cgmesProfile.DY.value, + ], + "ti2": [ + cgmesProfile.DY.value, + ], + "ti3": [ + cgmesProfile.DY.value, + ], + "ti4": [ + cgmesProfile.DY.value, + ], + "ti5": [ + cgmesProfile.DY.value, + ], + "ti6": [ + cgmesProfile.DY.value, + ], + "ti7": [ + cgmesProfile.DY.value, + ], + "ti8": [ + cgmesProfile.DY.value, + ], + "ti9": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl10": [ + cgmesProfile.DY.value, + ], + "tl11": [ + cgmesProfile.DY.value, + ], + "tl12": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "tl3": [ + cgmesProfile.DY.value, + ], + "tl4": [ + cgmesProfile.DY.value, + ], + "tl5": [ + cgmesProfile.DY.value, + ], + "tl6": [ + cgmesProfile.DY.value, + ], + "tl7": [ + cgmesProfile.DY.value, + ], + "tl8": [ + cgmesProfile.DY.value, + ], + "tl9": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "vhmin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vlmax": [ + cgmesProfile.DY.value, + ], + "vlmin": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + bwh1=0.0, + bwh2=0.0, + bwl1=0.0, + bwl2=0.0, + kh=0.0, + kh1=0.0, + kh11=0.0, + kh17=0.0, + kh2=0.0, + ki=0.0, + ki1=0.0, + ki11=0.0, + ki17=0.0, + ki2=0.0, + kl=0.0, + kl1=0.0, + kl11=0.0, + kl17=0.0, + kl2=0.0, + omeganh1=0.0, + omeganh2=0.0, + omeganl1=0.0, + omeganl2=0.0, + th1=0, + th10=0, + th11=0, + th12=0, + th2=0, + th3=0, + th4=0, + th5=0, + th6=0, + th7=0, + th8=0, + th9=0, + ti1=0, + ti10=0, + ti11=0, + ti12=0, + ti2=0, + ti3=0, + ti4=0, + ti5=0, + ti6=0, + ti7=0, + ti8=0, + ti9=0, + tl1=0, + tl10=0, + tl11=0, + tl12=0, + tl2=0, + tl3=0, + tl4=0, + tl5=0, + tl6=0, + tl7=0, + tl8=0, + tl9=0, + vhmax=0.0, + vhmin=0.0, + vimax=0.0, + vimin=0.0, + vlmax=0.0, + vlmin=0.0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bwh1 = bwh1 + self.bwh2 = bwh2 + self.bwl1 = bwl1 + self.bwl2 = bwl2 + self.kh = kh + self.kh1 = kh1 + self.kh11 = kh11 + self.kh17 = kh17 + self.kh2 = kh2 + self.ki = ki + self.ki1 = ki1 + self.ki11 = ki11 + self.ki17 = ki17 + self.ki2 = ki2 + self.kl = kl + self.kl1 = kl1 + self.kl11 = kl11 + self.kl17 = kl17 + self.kl2 = kl2 + self.omeganh1 = omeganh1 + self.omeganh2 = omeganh2 + self.omeganl1 = omeganl1 + self.omeganl2 = omeganl2 + self.th1 = th1 + self.th10 = th10 + self.th11 = th11 + self.th12 = th12 + self.th2 = th2 + self.th3 = th3 + self.th4 = th4 + self.th5 = th5 + self.th6 = th6 + self.th7 = th7 + self.th8 = th8 + self.th9 = th9 + self.ti1 = ti1 + self.ti10 = ti10 + self.ti11 = ti11 + self.ti12 = ti12 + self.ti2 = ti2 + self.ti3 = ti3 + self.ti4 = ti4 + self.ti5 = ti5 + self.ti6 = ti6 + self.ti7 = ti7 + self.ti8 = ti8 + self.ti9 = ti9 + self.tl1 = tl1 + self.tl10 = tl10 + self.tl11 = tl11 + self.tl12 = tl12 + self.tl2 = tl2 + self.tl3 = tl3 + self.tl4 = tl4 + self.tl5 = tl5 + self.tl6 = tl6 + self.tl7 = tl7 + self.tl8 = tl8 + self.tl9 = tl9 + self.vhmax = vhmax + self.vhmin = vhmin + self.vimax = vimax + self.vimin = vimin + self.vlmax = vlmax + self.vlmin = vlmin + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST1.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST1.py new file mode 100644 index 00000000..d9308492 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST1.py @@ -0,0 +1,106 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssPTIST1(PowerSystemStabilizerDynamics): + """ + PTI Microprocessor-Based Stabilizer type 1. + + :m: (M). M=2*H. Typical Value = 5. Default: 0.0 + :tf: Time constant (Tf). Typical Value = 0.2. Default: 0 + :tp: Time constant (Tp). Typical Value = 0.2. Default: 0 + :t1: Time constant (T1). Typical Value = 0.3. Default: 0 + :t2: Time constant (T2). Typical Value = 1. Default: 0 + :t3: Time constant (T3). Typical Value = 0.2. Default: 0 + :t4: Time constant (T4). Typical Value = 0.05. Default: 0 + :k: Gain (K). Typical Value = 9. Default: 0.0 + :dtf: Time step frequency calculation (Dtf). Typical Value = 0.025. Default: 0 + :dtc: Time step related to activation of controls (Dtc). Typical Value = 0.025. Default: 0 + :dtp: Time step active power calculation (Dtp). Typical Value = 0.0125. Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dtf": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "dtp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + m=0.0, + tf=0, + tp=0, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + dtf=0, + dtc=0, + dtp=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.tf = tf + self.tp = tp + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.dtf = dtf + self.dtc = dtc + self.dtp = dtp + + def __str__(self): + str = "class=PssPTIST1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST3.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST3.py new file mode 100644 index 00000000..0adae023 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssPTIST3.py @@ -0,0 +1,244 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssPTIST3(PowerSystemStabilizerDynamics): + """ + PTI Microprocessor-Based Stabilizer type 3. + + :m: (M). M=2*H. Typical Value = 5. Default: 0.0 + :tf: Time constant (Tf). Typical Value = 0.2. Default: 0 + :tp: Time constant (Tp). Typical Value = 0.2. Default: 0 + :t1: Time constant (T1). Typical Value = 0.3. Default: 0 + :t2: Time constant (T2). Typical Value = 1. Default: 0 + :t3: Time constant (T3). Typical Value = 0.2. Default: 0 + :t4: Time constant (T4). Typical Value = 0.05. Default: 0 + :k: Gain (K). Typical Value = 9. Default: 0.0 + :dtf: Time step frequency calculation (0.03 for 50 Hz) (Dtf). Typical Value = 0.025. Default: 0 + :dtc: Time step related to activation of controls (0.03 for 50 Hz) (Dtc). Typical Value = 0.025. Default: 0 + :dtp: Time step active power calculation (0.015 for 50 Hz) (Dtp). Typical Value = 0.0125. Default: 0 + :t5: Time constant (T5). Default: 0 + :t6: Time constant (T6). Default: 0 + :a0: Filter coefficient (A0). Default: 0.0 + :a1: Limiter (Al). Default: 0.0 + :a2: Filter coefficient (A2). Default: 0.0 + :b0: Filter coefficient (B0). Default: 0.0 + :b1: Filter coefficient (B1). Default: 0.0 + :b2: Filter coefficient (B2). Default: 0.0 + :a3: Filter coefficient (A3). Default: 0.0 + :a4: Filter coefficient (A4). Default: 0.0 + :a5: Filter coefficient (A5). Default: 0.0 + :b3: Filter coefficient (B3). Default: 0.0 + :b4: Filter coefficient (B4). Default: 0.0 + :b5: Filter coefficient (B5). Default: 0.0 + :athres: Threshold value above which output averaging will be bypassed (Athres). Typical Value = 0.005. Default: 0.0 + :dl: Limiter (Dl). Default: 0.0 + :al: Limiter (Al). Default: 0.0 + :lthres: Threshold value (Lthres). Default: 0.0 + :pmin: (Pmin). Default: 0.0 + :isw: Digital/analog output switch (Isw). true = produce analog output false = convert to digital output, using tap selection table. Default: False + :nav: Number of control outputs to average (Nav) (1 <= Nav <= 16). Typical Value = 4. Default: 0.0 + :ncl: Number of counts at limit to active limit function (Ncl) (>0). Default: 0.0 + :ncr: Number of counts until reset after limit function is triggered (Ncr). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dtf": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "dtp": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "a0": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "b0": [ + cgmesProfile.DY.value, + ], + "b1": [ + cgmesProfile.DY.value, + ], + "b2": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "b3": [ + cgmesProfile.DY.value, + ], + "b4": [ + cgmesProfile.DY.value, + ], + "b5": [ + cgmesProfile.DY.value, + ], + "athres": [ + cgmesProfile.DY.value, + ], + "dl": [ + cgmesProfile.DY.value, + ], + "al": [ + cgmesProfile.DY.value, + ], + "lthres": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "isw": [ + cgmesProfile.DY.value, + ], + "nav": [ + cgmesProfile.DY.value, + ], + "ncl": [ + cgmesProfile.DY.value, + ], + "ncr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + m=0.0, + tf=0, + tp=0, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + dtf=0, + dtc=0, + dtp=0, + t5=0, + t6=0, + a0=0.0, + a1=0.0, + a2=0.0, + b0=0.0, + b1=0.0, + b2=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + b3=0.0, + b4=0.0, + b5=0.0, + athres=0.0, + dl=0.0, + al=0.0, + lthres=0.0, + pmin=0.0, + isw=False, + nav=0.0, + ncl=0.0, + ncr=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.tf = tf + self.tp = tp + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.dtf = dtf + self.dtc = dtc + self.dtp = dtp + self.t5 = t5 + self.t6 = t6 + self.a0 = a0 + self.a1 = a1 + self.a2 = a2 + self.b0 = b0 + self.b1 = b1 + self.b2 = b2 + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.b3 = b3 + self.b4 = b4 + self.b5 = b5 + self.athres = athres + self.dl = dl + self.al = al + self.lthres = lthres + self.pmin = pmin + self.isw = isw + self.nav = nav + self.ncl = ncl + self.ncr = ncr + + def __str__(self): + str = "class=PssPTIST3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssSB4.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssSB4.py new file mode 100644 index 00000000..e48c44e9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssSB4.py @@ -0,0 +1,106 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssSB4(PowerSystemStabilizerDynamics): + """ + Power sensitive stabilizer model. + + :tt: Time constant (Tt). Default: 0 + :kx: Gain (Kx). Default: 0.0 + :tx2: Time constant (Tx2). Default: 0 + :ta: Time constant (Ta). Default: 0 + :tx1: Reset time constant (Tx1). Default: 0 + :tb: Time constant (Tb). Default: 0 + :tc: Time constant (Tc). Default: 0 + :td: Time constant (Td). Default: 0 + :te: Time constant (Te). Default: 0 + :vsmax: Limiter (Vsmax). Default: 0.0 + :vsmin: Limiter (Vsmin). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "kx": [ + cgmesProfile.DY.value, + ], + "tx2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tx1": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + tt=0, + kx=0.0, + tx2=0, + ta=0, + tx1=0, + tb=0, + tc=0, + td=0, + te=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tt = tt + self.kx = kx + self.tx2 = tx2 + self.ta = ta + self.tx1 = tx1 + self.tb = tb + self.tc = tc + self.td = td + self.te = te + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSB4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssSH.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssSH.py new file mode 100644 index 00000000..e24fb420 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssSH.py @@ -0,0 +1,118 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssSH(PowerSystemStabilizerDynamics): + """ + Model for Siemens "H infinity" power system stabilizer with generator electrical power input. + + :k: Main gain (K). Typical Value = 1. Default: 0.0 + :k0: Gain 0 (K0). Typical Value = 0.012. Default: 0.0 + :k1: Gain 1 (K1). Typical Value = 0.488. Default: 0.0 + :k2: Gain 2 (K2). Typical Value = 0.064. Default: 0.0 + :k3: Gain 3 (K3). Typical Value = 0.224. Default: 0.0 + :k4: Gain 4 (K4). Typical Value = 0.1. Default: 0.0 + :td: Input time constant (Td). Typical Value = 10. Default: 0 + :t1: Time constant 1 (T1). Typical Value = 0.076. Default: 0 + :t2: Time constant 2 (T2). Typical Value = 0.086. Default: 0 + :t3: Time constant 3 (T3). Typical Value = 1.068. Default: 0 + :t4: Time constant 4 (T4). Typical Value = 1.913. Default: 0 + :vsmax: Output maximum limit (Vsmax). Typical Value = 0.1. Default: 0.0 + :vsmin: Output minimum limit (Vsmin). Typical Value = -0.1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "k0": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + k=0.0, + k0=0.0, + k1=0.0, + k2=0.0, + k3=0.0, + k4=0.0, + td=0, + t1=0, + t2=0, + t3=0, + t4=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k = k + self.k0 = k0 + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.k4 = k4 + self.td = td + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSH\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssSK.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssSK.py new file mode 100644 index 00000000..3d402358 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssSK.py @@ -0,0 +1,106 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssSK(PowerSystemStabilizerDynamics): + """ + PSS Slovakian type - three inputs. + + :k1: Gain P (K1). Typical Value = -0.3. Default: 0.0 + :k2: Gain fe (K2). Typical Value = -0.15. Default: 0.0 + :k3: Gain If (K3). Typical Value = 10. Default: 0.0 + :t1: Denominator time constant (T1). Typical Value = 0.3. Default: 0 + :t2: Filter time constant (T2). Typical Value = 0.35. Default: 0 + :t3: Denominator time constant (T3). Typical Value = 0.22. Default: 0 + :t4: Filter time constant (T4). Typical Value = 0.02. Default: 0 + :t5: Denominator time constant (T5). Typical Value = 0.02. Default: 0 + :t6: Filter time constant (T6). Typical Value = 0.02. Default: 0 + :vsmax: Stabilizer output max limit (Vsmax). Typical Value = 0.4. Default: 0.0 + :vsmin: Stabilizer output min limit (Vsmin). Typical Value = -0.4. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + k2=0.0, + k3=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSK\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/PssWECC.py b/cimpy_3/cimpy/cgmes_v2_4_15/PssWECC.py new file mode 100644 index 00000000..2f722201 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/PssWECC.py @@ -0,0 +1,148 @@ +from cimpy.cgmes_v2_4_15.PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics, +) + + +class PssWECC(PowerSystemStabilizerDynamics): + """ + Dual input Power System Stabilizer, based on IEEE type 2, with modified output limiter defined by WECC (Western Electricity Coordinating Council, USA). + + :inputSignal1Type: Type of input signal #1. Default: None + :inputSignal2Type: Type of input signal #2. Default: None + :k1: Input signal 1 gain (K). Default: 0.0 + :t1: Input signal 1 transducer time constant (T). Default: 0 + :k2: Input signal 2 gain (K). Default: 0.0 + :t2: Input signal 2 transducer time constant (T). Default: 0 + :t3: Stabilizer washout time constant (T). Default: 0 + :t4: Stabilizer washout time lag constant (T) (>0). Default: 0 + :t5: Lead time constant (T). Default: 0 + :t6: Lag time constant (T). Default: 0 + :t7: Lead time constant (T). Default: 0 + :t8: Lag time constant (T). Default: 0 + :t10: Lag time constant (T). Default: 0 + :t9: Lead time constant (T). Default: 0 + :vsmax: Maximum output signal (Vsmax). Default: 0.0 + :vsmin: Minimum output signal (Vsmin). Default: 0.0 + :vcu: Maximum value for voltage compensator output (V). Default: 0.0 + :vcl: Minimum value for voltage compensator output (V). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + k1=0.0, + t1=0, + k2=0.0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + t10=0, + t9=0, + vsmax=0.0, + vsmin=0.0, + vcu=0.0, + vcl=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.k1 = k1 + self.t1 = t1 + self.k2 = k2 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t10 = t10 + self.t9 = t9 + self.vsmax = vsmax + self.vsmin = vsmin + self.vcu = vcu + self.vcl = vcl + + def __str__(self): + str = "class=PssWECC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Quality61850.py b/cimpy_3/cimpy/cgmes_v2_4_15/Quality61850.py new file mode 100644 index 00000000..51f8ebfd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Quality61850.py @@ -0,0 +1,102 @@ +from .Base import Base + + +class Quality61850(Base): + """ + Quality flags in this class are as defined in IEC 61850, except for estimatorReplaced, which has been included in this class for convenience. + + :badReference: Measurement value may be incorrect due to a reference being out of calibration. Default: False + :estimatorReplaced: Value has been replaced by State Estimator. estimatorReplaced is not an IEC61850 quality bit but has been put in this class for convenience. Default: False + :failure: This identifier indicates that a supervision function has detected an internal or external failure, e.g. communication failure. Default: False + :oldData: Measurement value is old and possibly invalid, as it has not been successfully updated during a specified time interval. Default: False + :operatorBlocked: Measurement value is blocked and hence unavailable for transmission. Default: False + :oscillatory: To prevent some overload of the communication it is sensible to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time (tosc) twice in the same direction (from 0 to 1 or from 1 to 0) then oscillation is detected and the detail quality identifier `oscillatory` is set. If it is detected a configured numbers of transient changes could be passed by. In this time the validity status `questionable` is set. If after this defined numbers of changes the signal is still in the oscillating state the value shall be set either to the opposite state of the previous stable value or to a defined default value. In this case the validity status `questionable` is reset and `invalid` is set as long as the signal is oscillating. If it is configured such that no transient changes should be passed by then the validity status `invalid` is set immediately in addition to the detail quality identifier `oscillatory` (used for status information only). Default: False + :outOfRange: Measurement value is beyond a predefined range of value. Default: False + :overFlow: Measurement value is beyond the capability of being represented properly. For example, a counter value overflows from maximum count back to a value of zero. Default: False + :source: Source gives information related to the origin of a value. The value may be acquired from the process, defaulted or substituted. Default: None + :suspect: A correlation function has detected that the value is not consitent with other values. Typically set by a network State Estimator. Default: False + :test: Measurement value is transmitted for test purposes. Default: False + :validity: Validity of the measurement value. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "badReference": [ + cgmesProfile.EQ.value, + ], + "estimatorReplaced": [ + cgmesProfile.EQ.value, + ], + "failure": [ + cgmesProfile.EQ.value, + ], + "oldData": [ + cgmesProfile.EQ.value, + ], + "operatorBlocked": [ + cgmesProfile.EQ.value, + ], + "oscillatory": [ + cgmesProfile.EQ.value, + ], + "outOfRange": [ + cgmesProfile.EQ.value, + ], + "overFlow": [ + cgmesProfile.EQ.value, + ], + "source": [ + cgmesProfile.EQ.value, + ], + "suspect": [ + cgmesProfile.EQ.value, + ], + "test": [ + cgmesProfile.EQ.value, + ], + "validity": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + badReference=False, + estimatorReplaced=False, + failure=False, + oldData=False, + operatorBlocked=False, + oscillatory=False, + outOfRange=False, + overFlow=False, + source=None, + suspect=False, + test=False, + validity=None, + ): + + self.badReference = badReference + self.estimatorReplaced = estimatorReplaced + self.failure = failure + self.oldData = oldData + self.operatorBlocked = operatorBlocked + self.oscillatory = oscillatory + self.outOfRange = outOfRange + self.overFlow = overFlow + self.source = source + self.suspect = suspect + self.test = test + self.validity = validity + + def __str__(self): + str = "class=Quality61850\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py b/cimpy_3/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py new file mode 100644 index 00000000..d0bbf9fb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RaiseLowerCommand.py @@ -0,0 +1,38 @@ +from .AnalogControl import AnalogControl + + +class RaiseLowerCommand(AnalogControl): + """ + An analog control that increase or decrease a set point value with pulses. + + :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None + """ + + cgmesProfile = AnalogControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ValueAliasSet": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AnalogControl: \n" + AnalogControl.__doc__ + ) + + def __init__(self, ValueAliasSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ValueAliasSet = ValueAliasSet + + def __str__(self): + str = "class=RaiseLowerCommand\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChanger.py b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChanger.py new file mode 100644 index 00000000..64daccf5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChanger.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.TapChanger import TapChanger + + +class RatioTapChanger(TapChanger): + """ + A tap changer that changes the voltage ratio impacting the voltage magnitude but not the phase angle across the transformer. + + :tculControlMode: Specifies the regulation control mode (voltage or reactive) of the RatioTapChanger. Default: None + :stepVoltageIncrement: Tap step increment, in per cent of nominal voltage, per step position. Default: 0.0 + :RatioTapChangerTable: The ratio tap changer of this tap ratio table. Default: None + :TransformerEnd: Ratio tap changer associated with this transformer end. Default: None + """ + + cgmesProfile = TapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "tculControlMode": [ + cgmesProfile.EQ.value, + ], + "stepVoltageIncrement": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTable": [ + cgmesProfile.EQ.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class TapChanger: \n" + TapChanger.__doc__ + + def __init__( + self, + tculControlMode=None, + stepVoltageIncrement=0.0, + RatioTapChangerTable=None, + TransformerEnd=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tculControlMode = tculControlMode + self.stepVoltageIncrement = stepVoltageIncrement + self.RatioTapChangerTable = RatioTapChangerTable + self.TransformerEnd = TransformerEnd + + def __str__(self): + str = "class=RatioTapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py new file mode 100644 index 00000000..1697fa29 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTable.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class RatioTapChangerTable(IdentifiedObject): + """ + Describes a curve for how the voltage magnitude and impedance varies with the tap step. + + :RatioTapChanger: The tap ratio table for this ratio tap changer. Default: "list" + :RatioTapChangerTablePoint: Table of this point. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RatioTapChanger": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTablePoint": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, RatioTapChanger="list", RatioTapChangerTablePoint="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RatioTapChanger = RatioTapChanger + self.RatioTapChangerTablePoint = RatioTapChangerTablePoint + + def __str__(self): + str = "class=RatioTapChangerTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py new file mode 100644 index 00000000..cb39f3d0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RatioTapChangerTablePoint.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.TapChangerTablePoint import TapChangerTablePoint + + +class RatioTapChangerTablePoint(TapChangerTablePoint): + """ + Describes each tap step in the ratio tap changer tabular curve. + + :RatioTapChangerTable: Points of this table. Default: None + """ + + cgmesProfile = TapChangerTablePoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTable": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TapChangerTablePoint: \n" + + TapChangerTablePoint.__doc__ + ) + + def __init__(self, RatioTapChangerTable=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.RatioTapChangerTable = RatioTapChangerTable + + def __str__(self): + str = "class=RatioTapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Reactance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Reactance.py new file mode 100644 index 00000000..b3976cb3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Reactance.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Reactance(Base): + """ + Reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Reactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py b/cimpy_3/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py new file mode 100644 index 00000000..7230601f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ReactiveCapabilityCurve.py @@ -0,0 +1,47 @@ +from cimpy.cgmes_v2_4_15.Curve import Curve + + +class ReactiveCapabilityCurve(Curve): + """ + Reactive power rating envelope versus the synchronous machine's active power, in both the generating and motoring modes. For each active power value there is a corresponding high and low reactive power limit value. Typically there will be a separate curve for each coolant condition, such as hydrogen pressure. The Y1 axis values represent reactive minimum and the Y2 axis values represent reactive maximum. + + :EquivalentInjection: The reactive capability curve used by this equivalent injection. Default: "list" + :InitiallyUsedBySynchronousMachines: The default reactive capability curve for use by a synchronous machine. Default: "list" + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EquivalentInjection": [ + cgmesProfile.EQ.value, + ], + "InitiallyUsedBySynchronousMachines": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__( + self, + EquivalentInjection="list", + InitiallyUsedBySynchronousMachines="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.EquivalentInjection = EquivalentInjection + self.InitiallyUsedBySynchronousMachines = InitiallyUsedBySynchronousMachines + + def __str__(self): + str = "class=ReactiveCapabilityCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ReactivePower.py b/cimpy_3/cimpy/cgmes_v2_4_15/ReactivePower.py new file mode 100644 index 00000000..75dfb9ed --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ReactivePower.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ReactivePower(Base): + """ + Product of RMS value of the voltage and the RMS value of the quadrature component of the current. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=ReactivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py new file mode 100644 index 00000000..fce77bb3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegularIntervalSchedule.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.BasicIntervalSchedule import BasicIntervalSchedule + + +class RegularIntervalSchedule(BasicIntervalSchedule): + """ + The schedule has time points where the time between them is constant. + + :timeStep: The time between each pair of subsequent regular time points in sequence order. Default: 0 + :endTime: The time for the last time point. Default: '' + """ + + cgmesProfile = BasicIntervalSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "timeStep": [ + cgmesProfile.EQ.value, + ], + "endTime": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class BasicIntervalSchedule: \n" + + BasicIntervalSchedule.__doc__ + ) + + def __init__(self, timeStep=0, endTime="", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.timeStep = timeStep + self.endTime = endTime + + def __str__(self): + str = "class=RegularIntervalSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegularTimePoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegularTimePoint.py new file mode 100644 index 00000000..31465447 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegularTimePoint.py @@ -0,0 +1,54 @@ +from .Base import Base + + +class RegularTimePoint(Base): + """ + Time point for a schedule where the time between the consecutive points is constant. + + :IntervalSchedule: Regular interval schedule containing this time point. Default: None + :sequenceNumber: The position of the regular time point in the sequence. Note that time points don`t have to be sequential, i.e. time points may be omitted. The actual time for a RegularTimePoint is computed by multiplying the associated regular interval schedule`s time step with the regular time point sequence number and adding the associated schedules start time. Default: 0 + :value1: The first value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 + :value2: The second value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "IntervalSchedule": [ + cgmesProfile.EQ.value, + ], + "sequenceNumber": [ + cgmesProfile.EQ.value, + ], + "value1": [ + cgmesProfile.EQ.value, + ], + "value2": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + IntervalSchedule=None, + sequenceNumber=0, + value1=0.0, + value2=0.0, + ): + + self.IntervalSchedule = IntervalSchedule + self.sequenceNumber = sequenceNumber + self.value1 = value1 + self.value2 = value2 + + def __str__(self): + str = "class=RegularTimePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingCondEq.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingCondEq.py new file mode 100644 index 00000000..1818a056 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingCondEq.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class RegulatingCondEq(ConductingEquipment): + """ + A type of conducting equipment that can regulate a quantity (i.e. voltage or flow) at a specific point in the network. + + :RegulatingControl: The regulating control scheme in which this equipment participates. Default: None + :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + "controlEnabled": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, RegulatingControl=None, controlEnabled=False, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.RegulatingControl = RegulatingControl + self.controlEnabled = controlEnabled + + def __str__(self): + str = "class=RegulatingCondEq\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControl.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControl.py new file mode 100644 index 00000000..61639d44 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControl.py @@ -0,0 +1,87 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class RegulatingControl(PowerSystemResource): + """ + Specifies a set of equipment that works together to control a power system quantity such as voltage or flow. Remote bus voltage control is possible by specifying the controlled terminal located at some place remote from the controlling equipment. In case multiple equipment, possibly of different types, control same terminal there must be only one RegulatingControl at that terminal. The most specific subtype of RegulatingControl shall be used in case such equipment participate in the control, e.g. TapChangerControl for tap changers. For flow control load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. + + :Terminal: The controls regulating this terminal. Default: None + :RegulatingCondEq: The equipment that participates in this regulating control scheme. Default: "list" + :mode: The regulating control mode presently available. This specification allows for determining the kind of regulation without need for obtaining the units from a schedule. Default: None + :discrete: The regulation is performed in a discrete mode. This applies to equipment with discrete controls, e.g. tap changers and shunt compensators. Default: False + :enabled: The flag tells if regulation is enabled. Default: False + :targetDeadband: This is a deadband used with discrete control to avoid excessive update of controls like tap changers and shunt compensator banks while regulating. The units of those appropriate for the mode. Default: 0.0 + :targetValue: The target value specified for case input. This value can be used for the target value without the use of schedules. The value has the units appropriate to the mode attribute. Default: 0.0 + :targetValueUnitMultiplier: Specify the multiplier for used for the targetValue. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "RegulatingCondEq": [ + cgmesProfile.EQ.value, + ], + "mode": [ + cgmesProfile.EQ.value, + ], + "discrete": [ + cgmesProfile.SSH.value, + ], + "enabled": [ + cgmesProfile.SSH.value, + ], + "targetDeadband": [ + cgmesProfile.SSH.value, + ], + "targetValue": [ + cgmesProfile.SSH.value, + ], + "targetValueUnitMultiplier": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + Terminal=None, + RegulatingCondEq="list", + mode=None, + discrete=False, + enabled=False, + targetDeadband=0.0, + targetValue=0.0, + targetValueUnitMultiplier=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.RegulatingCondEq = RegulatingCondEq + self.mode = mode + self.discrete = discrete + self.enabled = enabled + self.targetDeadband = targetDeadband + self.targetValue = targetValue + self.targetValueUnitMultiplier = targetValueUnitMultiplier + + def __str__(self): + str = "class=RegulatingControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py new file mode 100644 index 00000000..7d761754 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegulatingControlModeKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class RegulatingControlModeKind(Base): + """ + The kind of regulation model. For example regulating voltage, reactive power, active power, etc. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RegulatingControlModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RegulationSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/RegulationSchedule.py new file mode 100644 index 00000000..ec84e1e4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RegulationSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class RegulationSchedule(SeasonDayTypeSchedule): + """ + A pre-established pattern over time for a controlled variable, e.g., busbar voltage. + + :RegulatingControl: Regulating controls that have this Schedule. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, RegulatingControl=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.RegulatingControl = RegulatingControl + + def __str__(self): + str = "class=RegulationSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RemoteInputSignal.py b/cimpy_3/cimpy/cgmes_v2_4_15/RemoteInputSignal.py new file mode 100644 index 00000000..7b3d0af8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RemoteInputSignal.py @@ -0,0 +1,100 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class RemoteInputSignal(IdentifiedObject): + """ + Supports connection to a terminal associated with a remote bus from which an input signal of a specific type is coming. + + :Terminal: Remote terminal with which this input signal is associated. Default: None + :remoteSignalType: Type of input signal. Default: None + :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model using this remote input signal. Default: None + :UnderexcitationLimiterDynamics: Underexcitation limiter model using this remote input signal. Default: None + :WindTurbineType1or2Dynamics: Wind generator Type 1 or Type 2 model using this remote input signal. Default: None + :VoltageCompensatorDynamics: Voltage compensator model using this remote input signal. Default: None + :PowerSystemStabilizerDynamics: Power system stabilizer model using this remote input signal. Default: None + :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model using this remote input signal. Default: None + :WindTurbineType3or4Dynamics: Remote input signal used by these wind turbine Type 3 or 4 models. Default: None + :WindPlantDynamics: The remote signal with which this power plant is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "Terminal": [ + cgmesProfile.DY.value, + ], + "remoteSignalType": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2Dynamics": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorDynamics": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerDynamics": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + "WindPlantDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Terminal=None, + remoteSignalType=None, + PFVArControllerType1Dynamics=None, + UnderexcitationLimiterDynamics=None, + WindTurbineType1or2Dynamics=None, + VoltageCompensatorDynamics=None, + PowerSystemStabilizerDynamics=None, + DiscontinuousExcitationControlDynamics=None, + WindTurbineType3or4Dynamics=None, + WindPlantDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.remoteSignalType = remoteSignalType + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics + self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics + self.VoltageCompensatorDynamics = VoltageCompensatorDynamics + self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics + self.DiscontinuousExcitationControlDynamics = ( + DiscontinuousExcitationControlDynamics + ) + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + self.WindPlantDynamics = WindPlantDynamics + + def __str__(self): + str = "class=RemoteInputSignal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RemoteSignalKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/RemoteSignalKind.py new file mode 100644 index 00000000..2cce7756 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RemoteSignalKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class RemoteSignalKind(Base): + """ + Type of input signal coming from remote bus. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RemoteSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ReportingGroup.py b/cimpy_3/cimpy/cgmes_v2_4_15/ReportingGroup.py new file mode 100644 index 00000000..1bd0c617 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ReportingGroup.py @@ -0,0 +1,45 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class ReportingGroup(IdentifiedObject): + """ + A reporting group is used for various ad-hoc groupings used for reporting. + + :BusNameMarker: The reporting group to which this bus name marker belongs. Default: "list" + :TopologicalNode: The reporting group to which the topological node belongs. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.TP.value, + ], + "BusNameMarker": [ + cgmesProfile.EQ.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, BusNameMarker="list", TopologicalNode="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.BusNameMarker = BusNameMarker + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=ReportingGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Resistance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Resistance.py new file mode 100644 index 00000000..0eb63bf6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Resistance.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Resistance(Base): + """ + Resistance (real part of impedance). + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Resistance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ResistancePerLength.py b/cimpy_3/cimpy/cgmes_v2_4_15/ResistancePerLength.py new file mode 100644 index 00000000..860a81aa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ResistancePerLength.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ResistancePerLength(Base): + """ + Resistance (real part of impedance) per unit of length. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + :denominatorUnit: Default: None + :denominatorMultiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + denominatorUnit=None, + denominatorMultiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + self.denominatorUnit = denominatorUnit + self.denominatorMultiplier = denominatorMultiplier + + def __str__(self): + str = "class=ResistancePerLength\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachine.py b/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachine.py new file mode 100644 index 00000000..918db0c8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachine.py @@ -0,0 +1,82 @@ +from cimpy.cgmes_v2_4_15.RegulatingCondEq import RegulatingCondEq + + +class RotatingMachine(RegulatingCondEq): + """ + A rotating machine which may be used as a generator or motor. + + :GeneratingUnit: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: None + :HydroPump: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None + :ratedPowerFactor: Power factor (nameplate data). It is primarily used for short circuit data exchange according to IEC 60909. Default: 0.0 + :ratedS: Nameplate apparent power rating for the unit. The attribute shall have a positive value. Default: 0.0 + :ratedU: Rated voltage (nameplate data, Ur in IEC 60909-0). It is primarily used for short circuit data exchange according to IEC 60909. Default: 0.0 + :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "HydroPump": [ + cgmesProfile.EQ.value, + ], + "ratedPowerFactor": [ + cgmesProfile.EQ.value, + ], + "ratedS": [ + cgmesProfile.EQ.value, + ], + "ratedU": [ + cgmesProfile.EQ.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + GeneratingUnit=None, + HydroPump=None, + ratedPowerFactor=0.0, + ratedS=0.0, + ratedU=0.0, + p=0.0, + q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.GeneratingUnit = GeneratingUnit + self.HydroPump = HydroPump + self.ratedPowerFactor = ratedPowerFactor + self.ratedS = ratedS + self.ratedU = ratedU + self.p = p + self.q = q + + def __str__(self): + str = "class=RotatingMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py new file mode 100644 index 00000000..69b6a7a2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RotatingMachineDynamics.py @@ -0,0 +1,74 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class RotatingMachineDynamics(DynamicsFunctionBlock): + """ + Abstract parent class for all synchronous and asynchronous machine standard models. + + :damping: Damping torque coefficient (D). A proportionality constant that, when multiplied by the angular velocity of the rotor poles with respect to the magnetic field (frequency), results in the damping torque. This value is often zero when the sources of damping torques (generator damper windings, load damping effects, etc.) are modelled in detail. Typical Value = 0. Default: 0.0 + :inertia: Inertia constant of generator or motor and mechanical load (H) (>0). This is the specification for the stored energy in the rotating mass when operating at rated speed. For a generator, this includes the generator plus all other elements (turbine, exciter) on the same shaft and has units of MW*sec. For a motor, it includes the motor plus its mechanical load. Conventional units are per unit on the generator MVA base, usually expressed as MW*second/MVA or just second. This value is used in the accelerating power reference frame for operator training simulator solutions. Typical Value = 3. Default: 0 + :saturationFactor: Saturation factor at rated terminal voltage (S1) (> or =0). Not used by simplified model. Defined by defined by S(E1) in the SynchronousMachineSaturationParameters diagram. Typical Value = 0.02. Default: 0.0 + :saturationFactor120: Saturation factor at 120% of rated terminal voltage (S12) (> or =S1). Not used by the simplified model, defined by S(E2) in the SynchronousMachineSaturationParameters diagram. Typical Value = 0.12. Default: 0.0 + :statorLeakageReactance: Stator leakage reactance (Xl) (> or =0). Typical Value = 0.15. Default: 0.0 + :statorResistance: Stator (armature) resistance (Rs) (> or =0). Typical Value = 0.005. Default: 0.0 + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "damping": [ + cgmesProfile.DY.value, + ], + "inertia": [ + cgmesProfile.DY.value, + ], + "saturationFactor": [ + cgmesProfile.DY.value, + ], + "saturationFactor120": [ + cgmesProfile.DY.value, + ], + "statorLeakageReactance": [ + cgmesProfile.DY.value, + ], + "statorResistance": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + damping=0.0, + inertia=0, + saturationFactor=0.0, + saturationFactor120=0.0, + statorLeakageReactance=0.0, + statorResistance=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.damping = damping + self.inertia = inertia + self.saturationFactor = saturationFactor + self.saturationFactor120 = saturationFactor120 + self.statorLeakageReactance = statorLeakageReactance + self.statorResistance = statorResistance + + def __str__(self): + str = "class=RotatingMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RotationSpeed.py b/cimpy_3/cimpy/cgmes_v2_4_15/RotationSpeed.py new file mode 100644 index 00000000..68123a20 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RotationSpeed.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class RotationSpeed(Base): + """ + Number of revolutions per second. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + :denominatorUnit: Default: None + :denominatorMultiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + denominatorUnit=None, + denominatorMultiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + self.denominatorUnit = denominatorUnit + self.denominatorMultiplier = denominatorMultiplier + + def __str__(self): + str = "class=RotationSpeed\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/RotorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/RotorKind.py new file mode 100644 index 00000000..d88ce092 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/RotorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class RotorKind(Base): + """ + Type of rotor on physical machine. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RotorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SVCControlMode.py b/cimpy_3/cimpy/cgmes_v2_4_15/SVCControlMode.py new file mode 100644 index 00000000..5e418686 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SVCControlMode.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SVCControlMode(Base): + """ + Static VAr Compensator control mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SVCControlMode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Season.py b/cimpy_3/cimpy/cgmes_v2_4_15/Season.py new file mode 100644 index 00000000..14774e1e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Season.py @@ -0,0 +1,56 @@ +from .IdentifiedObject import IdentifiedObject + + +class Season(IdentifiedObject): + """ + A specified time period of the year. + + :endDate: Date season ends. Default: 0.0 + :startDate: Date season starts. Default: 0.0 + :SeasonDayTypeSchedules: Season for the Schedule. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "endDate": [ + cgmesProfile.EQ.value, + ], + "startDate": [ + cgmesProfile.EQ.value, + ], + "SeasonDayTypeSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + endDate=0.0, + startDate=0.0, + SeasonDayTypeSchedules="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.endDate = endDate + self.startDate = startDate + self.SeasonDayTypeSchedules = SeasonDayTypeSchedules + + def __str__(self): + str = "class=Season\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py new file mode 100644 index 00000000..2578d68a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SeasonDayTypeSchedule.py @@ -0,0 +1,44 @@ +from .RegularIntervalSchedule import RegularIntervalSchedule + + +class SeasonDayTypeSchedule(RegularIntervalSchedule): + """ + A time schedule covering a 24 hour period, with curve data for a specific type of season and day. + + :DayType: Schedules that use this DayType. Default: None + :Season: Schedules that use this Season. Default: None + """ + + cgmesProfile = RegularIntervalSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DayType": [ + cgmesProfile.EQ.value, + ], + "Season": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegularIntervalSchedule: \n" + + RegularIntervalSchedule.__doc__ + ) + + def __init__(self, DayType=None, Season=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DayType = DayType + self.Season = Season + + def __str__(self): + str = "class=SeasonDayTypeSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Seconds.py b/cimpy_3/cimpy/cgmes_v2_4_15/Seconds.py new file mode 100644 index 00000000..f0bd5f49 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Seconds.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Seconds(Base): + """ + Time, in seconds. + + :value: Time, in seconds Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Seconds\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SeriesCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/SeriesCompensator.py new file mode 100644 index 00000000..3982295c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SeriesCompensator.py @@ -0,0 +1,80 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class SeriesCompensator(ConductingEquipment): + """ + A Series Compensator is a series capacitor or reactor or an AC transmission line without charging susceptance. It is a two terminal device. + + :r: Positive sequence resistance. Default: 0.0 + :x: Positive sequence reactance. Default: 0.0 + :varistorPresent: Describe if a metal oxide varistor (mov) for over voltage protection is configured at the series compensator. Default: False + :varistorRatedCurrent: The maximum current the varistor is designed to handle at specified duration. Default: 0.0 + :varistorVoltageThreshold: The dc voltage at which the varistor start conducting. Default: 0.0 + :r0: Zero sequence resistance. Default: 0.0 + :x0: Zero sequence reactance. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "varistorPresent": [ + cgmesProfile.EQ.value, + ], + "varistorRatedCurrent": [ + cgmesProfile.EQ.value, + ], + "varistorVoltageThreshold": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + r=0.0, + x=0.0, + varistorPresent=False, + varistorRatedCurrent=0.0, + varistorVoltageThreshold=0.0, + r0=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.r = r + self.x = x + self.varistorPresent = varistorPresent + self.varistorRatedCurrent = varistorRatedCurrent + self.varistorVoltageThreshold = varistorVoltageThreshold + self.r0 = r0 + self.x0 = x0 + + def __str__(self): + str = "class=SeriesCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SetPoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/SetPoint.py new file mode 100644 index 00000000..0a497689 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SetPoint.py @@ -0,0 +1,43 @@ +from .AnalogControl import AnalogControl + + +class SetPoint(AnalogControl): + """ + An analog control that issue a set point value. + + :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0.0 + :value: The value representing the actuator output. Default: 0.0 + """ + + cgmesProfile = AnalogControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AnalogControl: \n" + AnalogControl.__doc__ + ) + + def __init__(self, normalValue=0.0, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.normalValue = normalValue + self.value = value + + def __str__(self): + str = "class=SetPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py new file mode 100644 index 00000000..fc5cc236 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ShortCircuitRotorKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class ShortCircuitRotorKind(Base): + """ + Type of rotor, used by short circuit applications. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ShortCircuitRotorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ShuntCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/ShuntCompensator.py new file mode 100644 index 00000000..2e2b3e25 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ShuntCompensator.py @@ -0,0 +1,100 @@ +from cimpy.cgmes_v2_4_15.RegulatingCondEq import RegulatingCondEq + + +class ShuntCompensator(RegulatingCondEq): + """ + A shunt capacitor or reactor or switchable bank of shunt capacitors or reactors. A section of a shunt compensator is an individual capacitor or reactor. A negative value for reactivePerSection indicates that the compensator is a reactor. ShuntCompensator is a single terminal device. Ground is implied. + + :aVRDelay: Time delay required for the device to be connected or disconnected by automatic voltage regulation (AVR). Default: 0 + :grounded: Used for Yn and Zn connections. True if the neutral is solidly grounded. Default: False + :maximumSections: The maximum number of sections that may be switched in. Default: 0 + :nomU: The voltage at which the nominal reactive power may be calculated. This should normally be within 10% of the voltage at which the capacitor is connected to the network. Default: 0.0 + :normalSections: The normal number of sections switched in. Default: 0 + :switchOnCount: The switch on count since the capacitor count was last reset or initialized. Default: 0 + :switchOnDate: The date and time when the capacitor bank was last switched on. Default: '' + :voltageSensitivity: Voltage sensitivity required for the device to regulate the bus voltage, in voltage/reactive power. Default: 0.0 + :SvShuntCompensatorSections: The state for the number of shunt compensator sections in service. Default: None + :sections: Shunt compensator sections in use. Starting value for steady state solution. Non integer values are allowed to support continuous variables. The reasons for continuous value are to support study cases where no discrete shunt compensators has yet been designed, a solutions where a narrow voltage band force the sections to oscillate or accommodate for a continuous solution as input. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "aVRDelay": [ + cgmesProfile.EQ.value, + ], + "grounded": [ + cgmesProfile.EQ.value, + ], + "maximumSections": [ + cgmesProfile.EQ.value, + ], + "nomU": [ + cgmesProfile.EQ.value, + ], + "normalSections": [ + cgmesProfile.EQ.value, + ], + "switchOnCount": [ + cgmesProfile.EQ.value, + ], + "switchOnDate": [ + cgmesProfile.EQ.value, + ], + "voltageSensitivity": [ + cgmesProfile.EQ.value, + ], + "SvShuntCompensatorSections": [ + cgmesProfile.SV.value, + ], + "sections": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + aVRDelay=0, + grounded=False, + maximumSections=0, + nomU=0.0, + normalSections=0, + switchOnCount=0, + switchOnDate="", + voltageSensitivity=0.0, + SvShuntCompensatorSections=None, + sections=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.aVRDelay = aVRDelay + self.grounded = grounded + self.maximumSections = maximumSections + self.nomU = nomU + self.normalSections = normalSections + self.switchOnCount = switchOnCount + self.switchOnDate = switchOnDate + self.voltageSensitivity = voltageSensitivity + self.SvShuntCompensatorSections = SvShuntCompensatorSections + self.sections = sections + + def __str__(self): + str = "class=ShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Simple_Float.py b/cimpy_3/cimpy/cgmes_v2_4_15/Simple_Float.py new file mode 100644 index 00000000..526284c0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Simple_Float.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Simple_Float(Base): + """ + A floating point number. The range is unspecified and not limited. + + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + ): + + self.value = value + + def __str__(self): + str = "class=Simple_Float\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py new file mode 100644 index 00000000..228de634 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SolarGeneratingUnit.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.GeneratingUnit import GeneratingUnit + + +class SolarGeneratingUnit(GeneratingUnit): + """ + A solar thermal generating unit. + + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=SolarGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Source.py b/cimpy_3/cimpy/cgmes_v2_4_15/Source.py new file mode 100644 index 00000000..e01f6590 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Source.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Source(Base): + """ + Source gives information related to the origin of a value. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Source\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StateVariablesVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/StateVariablesVersion.py new file mode 100644 index 00000000..44202d6e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StateVariablesVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class StateVariablesVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/StateVariables/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "baseUML": [ + cgmesProfile.SV.value, + ], + "baseURI": [ + cgmesProfile.SV.value, + ], + "date": [ + cgmesProfile.SV.value, + ], + "differenceModelURI": [ + cgmesProfile.SV.value, + ], + "entsoeUML": [ + cgmesProfile.SV.value, + ], + "entsoeURI": [ + cgmesProfile.SV.value, + ], + "modelDescriptionURI": [ + cgmesProfile.SV.value, + ], + "namespaceRDF": [ + cgmesProfile.SV.value, + ], + "namespaceUML": [ + cgmesProfile.SV.value, + ], + "shortName": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=StateVariablesVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py new file mode 100644 index 00000000..f57a63c5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StaticLoadModelKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class StaticLoadModelKind(Base): + """ + Type of static load model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=StaticLoadModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StaticVarCompensator.py b/cimpy_3/cimpy/cgmes_v2_4_15/StaticVarCompensator.py new file mode 100644 index 00000000..db411cc8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StaticVarCompensator.py @@ -0,0 +1,75 @@ +from cimpy.cgmes_v2_4_15.RegulatingCondEq import RegulatingCondEq + + +class StaticVarCompensator(RegulatingCondEq): + """ + A facility for providing variable and controllable shunt reactive power. The SVC typically consists of a stepdown transformer, filter, thyristor-controlled reactor, and thyristor-switched capacitor arms. The SVC may operate in fixed MVar output mode or in voltage control mode. When in voltage control mode, the output of the SVC will be proportional to the deviation of voltage at the controlled bus from the voltage setpoint. The SVC characteristic slope defines the proportion. If the voltage at the controlled bus is equal to the voltage setpoint, the SVC MVar output is zero. + + :capacitiveRating: Maximum available capacitive reactance. Default: 0.0 + :inductiveRating: Maximum available inductive reactance. Default: 0.0 + :slope: The characteristics slope of an SVC defines how the reactive power output changes in proportion to the difference between the regulated bus voltage and the voltage setpoint. Default: 0.0 + :sVCControlMode: SVC control mode. Default: None + :voltageSetPoint: The reactive power output of the SVC is proportional to the difference between the voltage at the regulated bus and the voltage setpoint. When the regulated bus voltage is equal to the voltage setpoint, the reactive power output is zero. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "capacitiveRating": [ + cgmesProfile.EQ.value, + ], + "inductiveRating": [ + cgmesProfile.EQ.value, + ], + "slope": [ + cgmesProfile.EQ.value, + ], + "sVCControlMode": [ + cgmesProfile.EQ.value, + ], + "voltageSetPoint": [ + cgmesProfile.EQ.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + capacitiveRating=0.0, + inductiveRating=0.0, + slope=0.0, + sVCControlMode=None, + voltageSetPoint=0.0, + q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.capacitiveRating = capacitiveRating + self.inductiveRating = inductiveRating + self.slope = slope + self.sVCControlMode = sVCControlMode + self.voltageSetPoint = voltageSetPoint + self.q = q + + def __str__(self): + str = "class=StaticVarCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StationSupply.py b/cimpy_3/cimpy/cgmes_v2_4_15/StationSupply.py new file mode 100644 index 00000000..7bca79fb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StationSupply.py @@ -0,0 +1,34 @@ +from cimpy.cgmes_v2_4_15.EnergyConsumer import EnergyConsumer + + +class StationSupply(EnergyConsumer): + """ + Station supply with load derived from the station output. + + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=StationSupply\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py new file mode 100644 index 00000000..562334a1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SteadyStateHypothesisVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/SteadyStateHypothesis/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + "baseUML": [ + cgmesProfile.SSH.value, + ], + "baseURI": [ + cgmesProfile.SSH.value, + ], + "date": [ + cgmesProfile.SSH.value, + ], + "differenceModelURI": [ + cgmesProfile.SSH.value, + ], + "entsoeUML": [ + cgmesProfile.SSH.value, + ], + "entsoeURI": [ + cgmesProfile.SSH.value, + ], + "modelDescriptionURI": [ + cgmesProfile.SSH.value, + ], + "namespaceRDF": [ + cgmesProfile.SSH.value, + ], + "namespaceUML": [ + cgmesProfile.SSH.value, + ], + "shortName": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=SteadyStateHypothesisVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/String.py b/cimpy_3/cimpy/cgmes_v2_4_15/String.py new file mode 100644 index 00000000..34ddb309 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/String.py @@ -0,0 +1,37 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class String(Base): + """ + A string consisting of a sequence of characters. The character encoding is UTF-8. The string length is unspecified and unlimited. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.GL.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=String\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurement.py b/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurement.py new file mode 100644 index 00000000..11f1eae8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurement.py @@ -0,0 +1,36 @@ +from .Measurement import Measurement + + +class StringMeasurement(Measurement): + """ + StringMeasurement represents a measurement with values of type string. + + :StringMeasurementValues: The values connected to this measurement. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "StringMeasurementValues": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, StringMeasurementValues="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StringMeasurementValues = StringMeasurementValues + + def __str__(self): + str = "class=StringMeasurement\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurementValue.py b/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurementValue.py new file mode 100644 index 00000000..a7b9f627 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/StringMeasurementValue.py @@ -0,0 +1,44 @@ +from .MeasurementValue import MeasurementValue + + +class StringMeasurementValue(MeasurementValue): + """ + StringMeasurementValue represents a measurement value of type string. + + :StringMeasurement: Measurement to which this value is connected. Default: None + :value: The value to supervise. Default: '' + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "StringMeasurement": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, StringMeasurement=None, value="", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StringMeasurement = StringMeasurement + self.value = value + + def __str__(self): + str = "class=StringMeasurementValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py b/cimpy_3/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py new file mode 100644 index 00000000..d0d54b85 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SubGeographicalRegion.py @@ -0,0 +1,62 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class SubGeographicalRegion(IdentifiedObject): + """ + A subset of a geographical region of a power system network model. + + :DCLines: Default: "list" + :Region: The geographical region to which this sub-geographical region is within. Default: None + :Lines: The lines within the sub-geographical region. Default: "list" + :Substations: The substations in this sub-geographical region. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DCLines": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + ], + "Lines": [ + cgmesProfile.EQ.value, + ], + "Substations": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCLines="list", + Region=None, + Lines="list", + Substations="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCLines = DCLines + self.Region = Region + self.Lines = Lines + self.Substations = Substations + + def __str__(self): + str = "class=SubGeographicalRegion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SubLoadArea.py b/cimpy_3/cimpy/cgmes_v2_4_15/SubLoadArea.py new file mode 100644 index 00000000..d4edb677 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SubLoadArea.py @@ -0,0 +1,41 @@ +from .EnergyArea import EnergyArea + + +class SubLoadArea(EnergyArea): + """ + The class is the second level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + :LoadArea: The LoadArea where the SubLoadArea belongs. Default: None + :LoadGroups: The Loadgroups in the SubLoadArea. Default: "list" + """ + + cgmesProfile = EnergyArea.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "LoadArea": [ + cgmesProfile.EQ.value, + ], + "LoadGroups": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class EnergyArea: \n" + EnergyArea.__doc__ + + def __init__(self, LoadArea=None, LoadGroups="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadArea = LoadArea + self.LoadGroups = LoadGroups + + def __str__(self): + str = "class=SubLoadArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Substation.py b/cimpy_3/cimpy/cgmes_v2_4_15/Substation.py new file mode 100644 index 00000000..57b14004 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Substation.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.EquipmentContainer import EquipmentContainer + + +class Substation(EquipmentContainer): + """ + A collection of equipment for purposes other than generation or utilization, through which electric energy in bulk is passed for the purposes of switching or modifying its characteristics. + + :DCConverterUnit: Default: "list" + :Region: The SubGeographicalRegion containing the substation. Default: None + :VoltageLevels: The voltage levels within this substation. Default: "list" + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DCConverterUnit": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + ], + "VoltageLevels": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__( + self, + DCConverterUnit="list", + Region=None, + VoltageLevels="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCConverterUnit = DCConverterUnit + self.Region = Region + self.VoltageLevels = VoltageLevels + + def __str__(self): + str = "class=Substation\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Susceptance.py b/cimpy_3/cimpy/cgmes_v2_4_15/Susceptance.py new file mode 100644 index 00000000..4bcd11b2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Susceptance.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Susceptance(Base): + """ + Imaginary part of admittance. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Susceptance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvInjection.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvInjection.py new file mode 100644 index 00000000..893e7b35 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvInjection.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvInjection(Base): + """ + The SvInjection is reporting the calculated bus injection minus the sum of the terminal flows. The terminal flow is positive out from the bus (load sign convention) and bus injection has positive flow into the bus. SvInjection may have the remainder after state estimation or slack after power flow calculation. + + :pInjection: The active power injected into the bus in addition to injections from equipment terminals. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 + :qInjection: The reactive power injected into the bus in addition to injections from equipment terminals. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 + :TopologicalNode: The injection flows state variables associated with the topological node. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "pInjection": [ + cgmesProfile.SV.value, + ], + "qInjection": [ + cgmesProfile.SV.value, + ], + "TopologicalNode": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + pInjection=0.0, + qInjection=0.0, + TopologicalNode=None, + ): + + self.pInjection = pInjection + self.qInjection = qInjection + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=SvInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvPowerFlow.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvPowerFlow.py new file mode 100644 index 00000000..a8e06f30 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvPowerFlow.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvPowerFlow(Base): + """ + State variable for power flow. Load convention is used for flow direction. This means flow out from the TopologicalNode into the equipment is positive. + + :Terminal: The terminal associated with the power flow state variable. Default: None + :p: The active power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + :q: The reactive power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "Terminal": [ + cgmesProfile.SV.value, + ], + "p": [ + cgmesProfile.SV.value, + ], + "q": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Terminal=None, + p=0.0, + q=0.0, + ): + + self.Terminal = Terminal + self.p = p + self.q = q + + def __str__(self): + str = "class=SvPowerFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py new file mode 100644 index 00000000..023783f9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvShuntCompensatorSections.py @@ -0,0 +1,42 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvShuntCompensatorSections(Base): + """ + State variable for the number of sections in service for a shunt compensator. + + :sections: The number of sections in service as a continous variable. To get integer value scale with ShuntCompensator.bPerSection. Default: 0.0 + :ShuntCompensator: The shunt compensator for which the state applies. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "sections": [ + cgmesProfile.SV.value, + ], + "ShuntCompensator": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + sections=0.0, + ShuntCompensator=None, + ): + + self.sections = sections + self.ShuntCompensator = ShuntCompensator + + def __str__(self): + str = "class=SvShuntCompensatorSections\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvStatus.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvStatus.py new file mode 100644 index 00000000..4cc2182b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvStatus.py @@ -0,0 +1,42 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvStatus(Base): + """ + State variable for status. + + :ConductingEquipment: The conducting equipment associated with the status state variable. Default: None + :inService: The in service status as a result of topology processing. Default: False + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "ConductingEquipment": [ + cgmesProfile.SV.value, + ], + "inService": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ConductingEquipment=None, + inService=False, + ): + + self.ConductingEquipment = ConductingEquipment + self.inService = inService + + def __str__(self): + str = "class=SvStatus\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvTapStep.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvTapStep.py new file mode 100644 index 00000000..2b819758 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvTapStep.py @@ -0,0 +1,42 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvTapStep(Base): + """ + State variable for transformer tap step. This class is to be used for taps of LTC (load tap changing) transformers, not fixed tap transformers. + + :position: The floating point tap position. This is not the tap ratio, but rather the tap step position as defined by the related tap changer model and normally is constrained to be within the range of minimum and maximum tap positions. Default: 0.0 + :TapChanger: The tap changer associated with the tap step state. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "position": [ + cgmesProfile.SV.value, + ], + "TapChanger": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + position=0.0, + TapChanger=None, + ): + + self.position = position + self.TapChanger = TapChanger + + def __str__(self): + str = "class=SvTapStep\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SvVoltage.py b/cimpy_3/cimpy/cgmes_v2_4_15/SvVoltage.py new file mode 100644 index 00000000..0ed34622 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SvVoltage.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SvVoltage(Base): + """ + State variable for voltage. + + :angle: The voltage angle of the topological node complex voltage with respect to system reference. Default: 0.0 + :v: The voltage magnitude of the topological node. Default: 0.0 + :TopologicalNode: The state voltage associated with the topological node. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "angle": [ + cgmesProfile.SV.value, + ], + "v": [ + cgmesProfile.SV.value, + ], + "TopologicalNode": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + angle=0.0, + v=0.0, + TopologicalNode=None, + ): + + self.angle = angle + self.v = v + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=SvVoltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Switch.py b/cimpy_3/cimpy/cgmes_v2_4_15/Switch.py new file mode 100644 index 00000000..b5279d69 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Switch.py @@ -0,0 +1,63 @@ +from cimpy.cgmes_v2_4_15.ConductingEquipment import ConductingEquipment + + +class Switch(ConductingEquipment): + """ + A generic device designed to close, or open, or both, one or more electric circuits. All switches are two terminal devices including grounding switches. + + :normalOpen: The attribute is used in cases when no Measurement for the status value is present. If the Switch has a status measurement the Discrete.normalValue is expected to match with the Switch.normalOpen. Default: False + :ratedCurrent: The maximum continuous current carrying capacity in amps governed by the device material and construction. Default: 0.0 + :retained: Branch is retained in a bus branch model. The flow through retained switches will normally be calculated in power flow. Default: False + :open: The attribute tells if the switch is considered open when used as input to topology processing. Default: False + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "normalOpen": [ + cgmesProfile.EQ.value, + ], + "ratedCurrent": [ + cgmesProfile.EQ.value, + ], + "retained": [ + cgmesProfile.EQ.value, + ], + "open": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + normalOpen=False, + ratedCurrent=0.0, + retained=False, + open=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.normalOpen = normalOpen + self.ratedCurrent = ratedCurrent + self.retained = retained + self.open = open + + def __str__(self): + str = "class=Switch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SwitchSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/SwitchSchedule.py new file mode 100644 index 00000000..2ce608cf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SwitchSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class SwitchSchedule(SeasonDayTypeSchedule): + """ + A schedule of switch positions. If RegularTimePoint.value1 is 0, the switch is open. If 1, the switch is closed. + + :Switch: A Switch can be associated with SwitchSchedules. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Switch": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, Switch=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Switch = Switch + + def __str__(self): + str = "class=SwitchSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachine.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachine.py new file mode 100644 index 00000000..b123b0e8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachine.py @@ -0,0 +1,177 @@ +from cimpy.cgmes_v2_4_15.RotatingMachine import RotatingMachine + + +class SynchronousMachine(RotatingMachine): + """ + An electromechanical device that operates with shaft rotating synchronously with the network. It is a single machine operating either as a generator or synchronous condenser or pump. + + :SynchronousMachineDynamics: Synchronous machine dynamics model used to describe dynamic behavior of this synchronous machine. Default: None + :InitialReactiveCapabilityCurve: Synchronous machines using this curve as default. Default: None + :maxQ: Maximum reactive power limit. This is the maximum (nameplate) limit for the unit. Default: 0.0 + :minQ: Minimum reactive power limit for the unit. Default: 0.0 + :qPercent: Percent of the coordinated reactive control that comes from this machine. Default: 0.0 + :type: Modes that this synchronous machine can operate in. Default: None + :earthing: Indicates whether or not the generator is earthed. Used for short circuit data exchange according to IEC 60909 Default: False + :earthingStarPointR: Generator star point earthing resistance (Re). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :earthingStarPointX: Generator star point earthing reactance (Xe). Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :ikk: Steady-state short-circuit current (in A for the profile) of generator with compound excitation during 3-phase short circuit. - Ikk=0: Generator with no compound excitation. - Ikk?0: Generator with compound excitation. Ikk is used to calculate the minimum steady-state short-circuit current for generators with compound excitation (Section 4.6.1.2 in the IEC 60909-0) Used only for single fed short circuit on a generator. (Section 4.3.4.2. in the IEC 60909-0) Default: 0.0 + :mu: Factor to calculate the breaking current (Section 4.5.2.1 in the IEC 60909-0). Used only for single fed short circuit on a generator (Section 4.3.4.2. in the IEC 60909-0). Default: 0.0 + :r0: Zero sequence resistance of the synchronous machine. Default: 0.0 + :r2: Negative sequence resistance. Default: 0.0 + :satDirectSubtransX: Direct-axis subtransient reactance saturated, also known as Xd"sat. Default: 0.0 + :satDirectSyncX: Direct-axes saturated synchronous reactance (xdsat); reciprocal of short-circuit ration. Used for short circuit data exchange, only for single fed short circuit on a generator. (Section 4.3.4.2. in the IEC 60909-0). Default: 0.0 + :satDirectTransX: Saturated Direct-axis transient reactance. The attribute is primarily used for short circuit calculations according to ANSI. Default: 0.0 + :shortCircuitRotorType: Type of rotor, used by short circuit applications, only for single fed short circuit according to IEC 60909. Default: None + :voltageRegulationRange: Range of generator voltage regulation (PG in the IEC 60909-0) used for calculation of the impedance correction factor KG defined in IEC 60909-0 This attribute is used to describe the operating voltage of the generating unit. Default: 0.0 + :r: Equivalent resistance (RG) of generator. RG is considered for the calculation of all currents, except for the calculation of the peak current ip. Used for short circuit data exchange according to IEC 60909 Default: 0.0 + :x0: Zero sequence reactance of the synchronous machine. Default: 0.0 + :x2: Negative sequence reactance. Default: 0.0 + :operatingMode: Current mode of operation. Default: None + :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 + """ + + cgmesProfile = RotatingMachine.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "InitialReactiveCapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "qPercent": [ + cgmesProfile.EQ.value, + ], + "type": [ + cgmesProfile.EQ.value, + ], + "earthing": [ + cgmesProfile.EQ.value, + ], + "earthingStarPointR": [ + cgmesProfile.EQ.value, + ], + "earthingStarPointX": [ + cgmesProfile.EQ.value, + ], + "ikk": [ + cgmesProfile.EQ.value, + ], + "mu": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.EQ.value, + ], + "r2": [ + cgmesProfile.EQ.value, + ], + "satDirectSubtransX": [ + cgmesProfile.EQ.value, + ], + "satDirectSyncX": [ + cgmesProfile.EQ.value, + ], + "satDirectTransX": [ + cgmesProfile.EQ.value, + ], + "shortCircuitRotorType": [ + cgmesProfile.EQ.value, + ], + "voltageRegulationRange": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x0": [ + cgmesProfile.EQ.value, + ], + "x2": [ + cgmesProfile.EQ.value, + ], + "operatingMode": [ + cgmesProfile.SSH.value, + ], + "referencePriority": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachine: \n" + RotatingMachine.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + InitialReactiveCapabilityCurve=None, + maxQ=0.0, + minQ=0.0, + qPercent=0.0, + type=None, + earthing=False, + earthingStarPointR=0.0, + earthingStarPointX=0.0, + ikk=0.0, + mu=0.0, + r0=0.0, + r2=0.0, + satDirectSubtransX=0.0, + satDirectSyncX=0.0, + satDirectTransX=0.0, + shortCircuitRotorType=None, + voltageRegulationRange=0.0, + r=0.0, + x0=0.0, + x2=0.0, + operatingMode=None, + referencePriority=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.InitialReactiveCapabilityCurve = InitialReactiveCapabilityCurve + self.maxQ = maxQ + self.minQ = minQ + self.qPercent = qPercent + self.type = type + self.earthing = earthing + self.earthingStarPointR = earthingStarPointR + self.earthingStarPointX = earthingStarPointX + self.ikk = ikk + self.mu = mu + self.r0 = r0 + self.r2 = r2 + self.satDirectSubtransX = satDirectSubtransX + self.satDirectSyncX = satDirectSyncX + self.satDirectTransX = satDirectTransX + self.shortCircuitRotorType = shortCircuitRotorType + self.voltageRegulationRange = voltageRegulationRange + self.r = r + self.x0 = x0 + self.x2 = x2 + self.operatingMode = operatingMode + self.referencePriority = referencePriority + + def __str__(self): + str = "class=SynchronousMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py new file mode 100644 index 00000000..7d4a3081 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDetailed.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineDetailed(SynchronousMachineDynamics): + """ + All synchronous machine detailed types use a subset of the same data parameters and input/output variables. The several variations differ in the following ways: It is not necessary for each simulation tool to have separate models for each of the model types. The same model can often be used for several types by alternative logic within the model. Also, differences in saturation representation may not result in significant model performance differences so model substitutions are often acceptable. + + :saturationFactorQAxis: Q-axis saturation factor at rated terminal voltage (S1q) (>= 0). Typical Value = 0.02. Default: 0.0 + :saturationFactor120QAxis: Q-axis saturation factor at 120% of rated terminal voltage (S12q) (>=S1q). Typical Value = 0.12. Default: 0.0 + :efdBaseRatio: Ratio of Efd bases of exciter and generator models. Typical Value = 1. Default: 0.0 + :ifdBaseType: Excitation base system mode. Typical Value = ifag. Default: None + :ifdBaseValue: Ifd base current if .ifdBaseType = other. Not needed if .ifdBaseType not = other. Unit = A. Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "saturationFactorQAxis": [ + cgmesProfile.DY.value, + ], + "saturationFactor120QAxis": [ + cgmesProfile.DY.value, + ], + "efdBaseRatio": [ + cgmesProfile.DY.value, + ], + "ifdBaseType": [ + cgmesProfile.DY.value, + ], + "ifdBaseValue": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, + saturationFactorQAxis=0.0, + saturationFactor120QAxis=0.0, + efdBaseRatio=0.0, + ifdBaseType=None, + ifdBaseValue=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.saturationFactorQAxis = saturationFactorQAxis + self.saturationFactor120QAxis = saturationFactor120QAxis + self.efdBaseRatio = efdBaseRatio + self.ifdBaseType = ifdBaseType + self.ifdBaseValue = ifdBaseValue + + def __str__(self): + str = "class=SynchronousMachineDetailed\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py new file mode 100644 index 00000000..d60d3fc4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineDynamics.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.RotatingMachineDynamics import RotatingMachineDynamics + + +class SynchronousMachineDynamics(RotatingMachineDynamics): + """ + Synchronous machine whose behaviour is described by reference to a standard model expressed in one of the following forms: + + :SynchronousMachine: Synchronous machine to which synchronous machine dynamics model applies. Default: None + :TurbineGovernorDynamics: Synchronous machine model with which this turbine-governor model is associated. Default: "list" + :ExcitationSystemDynamics: Excitation system model associated with this synchronous machine model. Default: None + :MechanicalLoadDynamics: Mechanical load model associated with this synchronous machine model. Default: None + :GenICompensationForGenJ: Compensation of voltage compensator's generator for current flow out of this generator. Default: "list" + """ + + cgmesProfile = RotatingMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachine": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadDynamics": [ + cgmesProfile.DY.value, + ], + "GenICompensationForGenJ": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachineDynamics: \n" + + RotatingMachineDynamics.__doc__ + ) + + def __init__( + self, + SynchronousMachine=None, + TurbineGovernorDynamics="list", + ExcitationSystemDynamics=None, + MechanicalLoadDynamics=None, + GenICompensationForGenJ="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachine = SynchronousMachine + self.TurbineGovernorDynamics = TurbineGovernorDynamics + self.ExcitationSystemDynamics = ExcitationSystemDynamics + self.MechanicalLoadDynamics = MechanicalLoadDynamics + self.GenICompensationForGenJ = GenICompensationForGenJ + + def __str__(self): + str = "class=SynchronousMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py new file mode 100644 index 00000000..c9b5c6ca --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineEquivalentCircuit.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.SynchronousMachineDetailed import SynchronousMachineDetailed + + +class SynchronousMachineEquivalentCircuit(SynchronousMachineDetailed): + """ + The electrical equations for all variations of the synchronous models are based on the SynchronousEquivalentCircuit diagram for the direct and quadrature axes. = + = + * / ( + ) = + * * / ( * + * + * ) = + = + * / (+ ) = + ** / ( * + * + * ) = ( + ) / ( * ) = ( * + * + * ) / ( * * ( + ) = ( + ) / ( * ) = ( * + * + * )/ ( * * ( + ) Same equations using CIM attributes from SynchronousMachineTimeConstantReactance class on left of = sign and SynchronousMachineEquivalentCircuit class on right (except as noted): xDirectSync = xad + RotatingMachineDynamics.statorLeakageReactance xDirectTrans = RotatingMachineDynamics.statorLeakageReactance + xad * xfd / (xad + xfd) xDirectSubtrans = RotatingMachineDynamics.statorLeakageReactance + xad * xfd * x1d / (xad * xfd + xad * x1d + xfd * x1d) xQuadSync = xaq + RotatingMachineDynamics.statorLeakageReactance xQuadTrans = RotatingMachineDynamics.statorLeakageReactance + xaq * x1q / (xaq+ x1q) xQuadSubtrans = RotatingMachineDynamics.statorLeakageReactance + xaq * x1q* x2q / (xaq * x1q + xaq * x2q + x1q * x2q) tpdo = (xad + xfd) / (2*pi*nominal frequency * rfd) tppdo = (xad * xfd + xad * x1d + xfd * x1d) / (2*pi*nominal frequency * r1d * (xad + xfd) tpqo = (xaq + x1q) / (2*pi*nominal frequency * r1q) tppqo = (xaq * x1q + xaq * x2q + x1q * x2q)/ (2*pi*nominal frequency * r2q * (xaq + x1q). Are only valid for a simplified model where "Canay" reactance is zero. + + :xad: D-axis mutual reactance. Default: 0.0 + :rfd: Field winding resistance. Default: 0.0 + :xfd: Field winding leakage reactance. Default: 0.0 + :r1d: D-axis damper 1 winding resistance. Default: 0.0 + :x1d: D-axis damper 1 winding leakage reactance. Default: 0.0 + :xf1d: Differential mutual ("Canay") reactance. Default: 0.0 + :xaq: Q-axis mutual reactance. Default: 0.0 + :r1q: Q-axis damper 1 winding resistance. Default: 0.0 + :x1q: Q-axis damper 1 winding leakage reactance. Default: 0.0 + :r2q: Q-axis damper 2 winding resistance. Default: 0.0 + :x2q: Q-axis damper 2 winding leakage reactance. Default: 0.0 + """ + + cgmesProfile = SynchronousMachineDetailed.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xad": [ + cgmesProfile.DY.value, + ], + "rfd": [ + cgmesProfile.DY.value, + ], + "xfd": [ + cgmesProfile.DY.value, + ], + "r1d": [ + cgmesProfile.DY.value, + ], + "x1d": [ + cgmesProfile.DY.value, + ], + "xf1d": [ + cgmesProfile.DY.value, + ], + "xaq": [ + cgmesProfile.DY.value, + ], + "r1q": [ + cgmesProfile.DY.value, + ], + "x1q": [ + cgmesProfile.DY.value, + ], + "r2q": [ + cgmesProfile.DY.value, + ], + "x2q": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDetailed: \n" + + SynchronousMachineDetailed.__doc__ + ) + + def __init__( + self, + xad=0.0, + rfd=0.0, + xfd=0.0, + r1d=0.0, + x1d=0.0, + xf1d=0.0, + xaq=0.0, + r1q=0.0, + x1q=0.0, + r2q=0.0, + x2q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.xad = xad + self.rfd = rfd + self.xfd = xfd + self.r1d = r1d + self.x1d = x1d + self.xf1d = xf1d + self.xaq = xaq + self.r1q = r1q + self.x1q = x1q + self.r2q = r2q + self.x2q = x2q + + def __str__(self): + str = "class=SynchronousMachineEquivalentCircuit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py new file mode 100644 index 00000000..8bee0651 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SynchronousMachineKind(Base): + """ + Synchronous machine type. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py new file mode 100644 index 00000000..5a7a8a30 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineModelKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SynchronousMachineModelKind(Base): + """ + Type of synchronous machine model used in Dynamic simulation applications. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py new file mode 100644 index 00000000..4b2a69e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineOperatingMode.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class SynchronousMachineOperatingMode(Base): + """ + Synchronous machine operating mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineOperatingMode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py new file mode 100644 index 00000000..83ee6d6e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineSimplified.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineSimplified(SynchronousMachineDynamics): + """ + The simplified model represents a synchronous generator as a constant internal voltage behind an impedance ( + ) as shown in the Simplified diagram. Since internal voltage is held constant, there is no input and any excitation system model will be ignored. There is also no output. This model should not be used for representing a real generator except, perhaps, small generators whose response is insignificant. The parameters used for the Simplified model include: + + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=SynchronousMachineSimplified\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py new file mode 100644 index 00000000..534f0513 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineTimeConstantReactance.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.SynchronousMachineDetailed import SynchronousMachineDetailed + + +class SynchronousMachineTimeConstantReactance(SynchronousMachineDetailed): + """ + Synchronous machine detailed modelling types are defined by the combination of the attributes SynchronousMachineTimeConstantReactance.modelType and SynchronousMachineTimeConstantReactance.rotorType. The parameters used for models expressed in time constant reactance form include: + + :rotorType: Type of rotor on physical machine. Default: None + :modelType: Type of synchronous machine model used in Dynamic simulation applications. Default: None + :ks: Saturation loading correction factor (Ks) (>= 0). Used only by Type J model. Typical Value = 0. Default: 0.0 + :xDirectSync: Direct-axis synchronous reactance (Xd) (>= X'd). The quotient of a sustained value of that AC component of armature voltage that is produced by the total direct-axis flux due to direct-axis armature current and the value of the AC component of this current, the machine running at rated speed. Typical Value = 1.8. Default: 0.0 + :xDirectTrans: Direct-axis transient reactance (unsaturated) (X'd) (> =X''d). Typical Value = 0.5. Default: 0.0 + :xDirectSubtrans: Direct-axis subtransient reactance (unsaturated) (X''d) (> Xl). Typical Value = 0.2. Default: 0.0 + :xQuadSync: Quadrature-axis synchronous reactance (Xq) (> =X'q). The ratio of the component of reactive armature voltage, due to the quadrature-axis component of armature current, to this component of current, under steady state conditions and at rated frequency. Typical Value = 1.6. Default: 0.0 + :xQuadTrans: Quadrature-axis transient reactance (X'q) (> =X''q). Typical Value = 0.3. Default: 0.0 + :xQuadSubtrans: Quadrature-axis subtransient reactance (X''q) (> Xl). Typical Value = 0.2. Default: 0.0 + :tpdo: Direct-axis transient rotor time constant (T'do) (> T''do). Typical Value = 5. Default: 0 + :tppdo: Direct-axis subtransient rotor time constant (T''do) (> 0). Typical Value = 0.03. Default: 0 + :tpqo: Quadrature-axis transient rotor time constant (T'qo) (> T''qo). Typical Value = 0.5. Default: 0 + :tppqo: Quadrature-axis subtransient rotor time constant (T''qo) (> 0). Typical Value = 0.03. Default: 0 + :tc: Damping time constant for "Canay" reactance. Typical Value = 0. Default: 0 + """ + + cgmesProfile = SynchronousMachineDetailed.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "rotorType": [ + cgmesProfile.DY.value, + ], + "modelType": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "xDirectSync": [ + cgmesProfile.DY.value, + ], + "xDirectTrans": [ + cgmesProfile.DY.value, + ], + "xDirectSubtrans": [ + cgmesProfile.DY.value, + ], + "xQuadSync": [ + cgmesProfile.DY.value, + ], + "xQuadTrans": [ + cgmesProfile.DY.value, + ], + "xQuadSubtrans": [ + cgmesProfile.DY.value, + ], + "tpdo": [ + cgmesProfile.DY.value, + ], + "tppdo": [ + cgmesProfile.DY.value, + ], + "tpqo": [ + cgmesProfile.DY.value, + ], + "tppqo": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDetailed: \n" + + SynchronousMachineDetailed.__doc__ + ) + + def __init__( + self, + rotorType=None, + modelType=None, + ks=0.0, + xDirectSync=0.0, + xDirectTrans=0.0, + xDirectSubtrans=0.0, + xQuadSync=0.0, + xQuadTrans=0.0, + xQuadSubtrans=0.0, + tpdo=0, + tppdo=0, + tpqo=0, + tppqo=0, + tc=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.rotorType = rotorType + self.modelType = modelType + self.ks = ks + self.xDirectSync = xDirectSync + self.xDirectTrans = xDirectTrans + self.xDirectSubtrans = xDirectSubtrans + self.xQuadSync = xQuadSync + self.xQuadTrans = xQuadTrans + self.xQuadSubtrans = xQuadSubtrans + self.tpdo = tpdo + self.tppdo = tppdo + self.tpqo = tpqo + self.tppqo = tppqo + self.tc = tc + + def __str__(self): + str = "class=SynchronousMachineTimeConstantReactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py new file mode 100644 index 00000000..9a89cb47 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/SynchronousMachineUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineUserDefined(SynchronousMachineDynamics): + """ + Synchronous machine whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=SynchronousMachineUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TapChanger.py b/cimpy_3/cimpy/cgmes_v2_4_15/TapChanger.py new file mode 100644 index 00000000..b34c23bf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TapChanger.py @@ -0,0 +1,100 @@ +from cimpy.cgmes_v2_4_15.PowerSystemResource import PowerSystemResource + + +class TapChanger(PowerSystemResource): + """ + Mechanism for changing transformer winding tap positions. + + :highStep: Highest possible tap step position, advance from neutral. The attribute shall be greater than lowStep. Default: 0 + :lowStep: Lowest possible tap step position, retard from neutral Default: 0 + :ltcFlag: Specifies whether or not a TapChanger has load tap changing capabilities. Default: False + :neutralStep: The neutral tap step position for this winding. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0 + :neutralU: Voltage at which the winding operates at the neutral tap setting. Default: 0.0 + :normalStep: The tap step position used in "normal" network operation for this winding. For a "Fixed" tap changer indicates the current physical tap setting. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0 + :TapChangerControl: The tap changers that participates in this regulating tap control scheme. Default: None + :SvTapStep: The tap step state associated with the tap changer. Default: None + :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False + :step: Tap changer position. Starting step for a steady state solution. Non integer values are allowed to support continuous tap variables. The reasons for continuous value are to support study cases where no discrete tap changers has yet been designed, a solutions where a narrow voltage band force the tap step to oscillate or accommodate for a continuous solution as input. The attribute shall be equal or greater than lowStep and equal or less than highStep. Default: 0.0 + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "highStep": [ + cgmesProfile.EQ.value, + ], + "lowStep": [ + cgmesProfile.EQ.value, + ], + "ltcFlag": [ + cgmesProfile.EQ.value, + ], + "neutralStep": [ + cgmesProfile.EQ.value, + ], + "neutralU": [ + cgmesProfile.EQ.value, + ], + "normalStep": [ + cgmesProfile.EQ.value, + ], + "TapChangerControl": [ + cgmesProfile.EQ.value, + ], + "SvTapStep": [ + cgmesProfile.SV.value, + ], + "controlEnabled": [ + cgmesProfile.SSH.value, + ], + "step": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + highStep=0, + lowStep=0, + ltcFlag=False, + neutralStep=0, + neutralU=0.0, + normalStep=0, + TapChangerControl=None, + SvTapStep=None, + controlEnabled=False, + step=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.highStep = highStep + self.lowStep = lowStep + self.ltcFlag = ltcFlag + self.neutralStep = neutralStep + self.neutralU = neutralU + self.normalStep = normalStep + self.TapChangerControl = TapChangerControl + self.SvTapStep = SvTapStep + self.controlEnabled = controlEnabled + self.step = step + + def __str__(self): + str = "class=TapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerControl.py b/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerControl.py new file mode 100644 index 00000000..0126e6b8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerControl.py @@ -0,0 +1,40 @@ +from cimpy.cgmes_v2_4_15.RegulatingControl import RegulatingControl + + +class TapChangerControl(RegulatingControl): + """ + Describes behavior specific to tap changers, e.g. how the voltage at the end of a line varies with the load level and compensation of the voltage drop by tap adjustment. + + :TapChanger: The regulating control scheme in which this tap changer participates. Default: "list" + """ + + cgmesProfile = RegulatingControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "TapChanger": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingControl: \n" + + RegulatingControl.__doc__ + ) + + def __init__(self, TapChanger="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TapChanger = TapChanger + + def __str__(self): + str = "class=TapChangerControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py new file mode 100644 index 00000000..c2d498bd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TapChangerTablePoint.py @@ -0,0 +1,66 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class TapChangerTablePoint(Base): + """ + + + :b: The magnetizing branch susceptance deviation in percent of nominal value. The actual susceptance is calculated as follows: calculated magnetizing susceptance = b(nominal) * (1 + b(from this class)/100). The b(nominal) is defined as the static magnetizing susceptance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :g: The magnetizing branch conductance deviation in percent of nominal value. The actual conductance is calculated as follows: calculated magnetizing conductance = g(nominal) * (1 + g(from this class)/100). The g(nominal) is defined as the static magnetizing conductance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :r: The resistance deviation in percent of nominal value. The actual reactance is calculated as follows: calculated resistance = r(nominal) * (1 + r(from this class)/100). The r(nominal) is defined as the static resistance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :ratio: The voltage ratio in per unit. Hence this is a value close to one. Default: 0.0 + :step: The tap step. Default: 0 + :x: The series reactance deviation in percent of nominal value. The actual reactance is calculated as follows: calculated reactance = x(nominal) * (1 + x(from this class)/100). The x(nominal) is defined as the static series reactance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "ratio": [ + cgmesProfile.EQ.value, + ], + "step": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + b=0.0, + g=0.0, + r=0.0, + ratio=0.0, + step=0, + x=0.0, + ): + + self.b = b + self.g = g + self.r = r + self.ratio = ratio + self.step = step + self.x = x + + def __str__(self): + str = "class=TapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TapSchedule.py b/cimpy_3/cimpy/cgmes_v2_4_15/TapSchedule.py new file mode 100644 index 00000000..17c92d64 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TapSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class TapSchedule(SeasonDayTypeSchedule): + """ + A pre-established pattern over time for a tap step. + + :TapChanger: A TapChanger can have TapSchedules. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "TapChanger": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, TapChanger=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TapChanger = TapChanger + + def __str__(self): + str = "class=TapSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Temperature.py b/cimpy_3/cimpy/cgmes_v2_4_15/Temperature.py new file mode 100644 index 00000000..6c437b91 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Temperature.py @@ -0,0 +1,52 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Temperature(Base): + """ + Value of temperature in degrees Celsius. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=Temperature\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Terminal.py b/cimpy_3/cimpy/cgmes_v2_4_15/Terminal.py new file mode 100644 index 00000000..c0bdc505 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Terminal.py @@ -0,0 +1,108 @@ +from cimpy.cgmes_v2_4_15.ACDCTerminal import ACDCTerminal + + +class Terminal(ACDCTerminal): + """ + An AC electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. + + :ConductingEquipment: The conducting equipment of the terminal. Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: None + :RemoteInputSignal: Input signal coming from this terminal. Default: "list" + :ConverterDCSides: Point of common coupling terminal for this converter DC side. It is typically the terminal on the power transformer (or switch) closest to the AC network. The power flow measurement must be the sum of all flows into the transformer. Default: "list" + :phases: Represents the normal network phasing condition. If the attribute is missing three phases (ABC or ABCN) shall be assumed. Default: None + :RegulatingControl: The terminal associated with this regulating control. The terminal is associated instead of a node, since the terminal could connect into either a topological node (bus in bus-branch model) or a connectivity node (detailed switch model). Sometimes it is useful to model regulation at a terminal of a bus bar object since the bus bar can be present in both a bus-branch model or a model with switch detail. Default: None + :TieFlow: The control area tie flows to which this terminal associates. Default: "list" + :TransformerEnd: All transformer ends connected at this terminal. Default: "list" + :HasFirstMutualCoupling: Mutual couplings associated with the branch as the first branch. Default: "list" + :HasSecondMutualCoupling: Mutual couplings with the branch associated as the first branch. Default: "list" + :SvPowerFlow: The power flow state variable associated with the terminal. Default: None + :TopologicalNode: The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unneccesary to model connectivity nodes in some cases. Note that if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: None + """ + + cgmesProfile = ACDCTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + ], + "ConductingEquipment": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ConverterDCSides": [ + cgmesProfile.EQ.value, + ], + "phases": [ + cgmesProfile.EQ.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + "TieFlow": [ + cgmesProfile.EQ.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + "HasFirstMutualCoupling": [ + cgmesProfile.EQ.value, + ], + "HasSecondMutualCoupling": [ + cgmesProfile.EQ.value, + ], + "SvPowerFlow": [ + cgmesProfile.SV.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCTerminal: \n" + ACDCTerminal.__doc__ + ) + + def __init__( + self, + ConductingEquipment=None, + RemoteInputSignal="list", + ConverterDCSides="list", + phases=None, + RegulatingControl=None, + TieFlow="list", + TransformerEnd="list", + HasFirstMutualCoupling="list", + HasSecondMutualCoupling="list", + SvPowerFlow=None, + TopologicalNode=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ConductingEquipment = ConductingEquipment + self.RemoteInputSignal = RemoteInputSignal + self.ConverterDCSides = ConverterDCSides + self.phases = phases + self.RegulatingControl = RegulatingControl + self.TieFlow = TieFlow + self.TransformerEnd = TransformerEnd + self.HasFirstMutualCoupling = HasFirstMutualCoupling + self.HasSecondMutualCoupling = HasSecondMutualCoupling + self.SvPowerFlow = SvPowerFlow + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=Terminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TextDiagramObject.py b/cimpy_3/cimpy/cgmes_v2_4_15/TextDiagramObject.py new file mode 100644 index 00000000..097e0723 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TextDiagramObject.py @@ -0,0 +1,38 @@ +from cimpy.cgmes_v2_4_15.DiagramObject import DiagramObject + + +class TextDiagramObject(DiagramObject): + """ + A diagram object for placing free-text or text derived from an associated domain object. + + :text: The text that is displayed by this text diagram object. Default: '' + """ + + cgmesProfile = DiagramObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "text": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiagramObject: \n" + DiagramObject.__doc__ + ) + + def __init__(self, text="", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.text = text + + def __str__(self): + str = "class=TextDiagramObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py new file mode 100644 index 00000000..03ec917a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ThermalGeneratingUnit.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.GeneratingUnit import GeneratingUnit + + +class ThermalGeneratingUnit(GeneratingUnit): + """ + A generating unit whose prime mover could be a steam turbine, combustion turbine, or diesel engine. + + :FossilFuels: A thermal generating unit may have one or more fossil fuels. Default: "list" + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "FossilFuels": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, FossilFuels="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.FossilFuels = FossilFuels + + def __str__(self): + str = "class=ThermalGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TieFlow.py b/cimpy_3/cimpy/cgmes_v2_4_15/TieFlow.py new file mode 100644 index 00000000..36a31f38 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TieFlow.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class TieFlow(Base): + """ + A flow specification in terms of location and direction for a control area. + + :Terminal: The terminal to which this tie flow belongs. Default: None + :ControlArea: The control area of the tie flows. Default: None + :positiveFlowIn: True if the flow into the terminal (load convention) is also flow into the control area. For example, this attribute should be true if using the tie line terminal further away from the control area. For example to represent a tie to a shunt component (like a load or generator) in another area, this is the near end of a branch and this attribute would be specified as false. Default: False + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + "positiveFlowIn": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Terminal=None, + ControlArea=None, + positiveFlowIn=False, + ): + + self.Terminal = Terminal + self.ControlArea = ControlArea + self.positiveFlowIn = positiveFlowIn + + def __str__(self): + str = "class=TieFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalIsland.py b/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalIsland.py new file mode 100644 index 00000000..e7e4f60e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalIsland.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class TopologicalIsland(IdentifiedObject): + """ + An electrically connected subset of the network. Topological islands can change as the current network state changes: e.g. due to - disconnect switches or breakers change state in a SCADA/EMS - manual creation, change or deletion of topological nodes in a planning tool. + + :AngleRefTopologicalNode: The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is typically optional. Default: None + :TopologicalNodes: A topological node belongs to a topological island. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "AngleRefTopologicalNode": [ + cgmesProfile.SV.value, + ], + "TopologicalNodes": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, AngleRefTopologicalNode=None, TopologicalNodes="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.AngleRefTopologicalNode = AngleRefTopologicalNode + self.TopologicalNodes = TopologicalNodes + + def __str__(self): + str = "class=TopologicalIsland\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalNode.py b/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalNode.py new file mode 100644 index 00000000..f0c4540c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TopologicalNode.py @@ -0,0 +1,93 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class TopologicalNode(IdentifiedObject): + """ + For a detailed substation model a topological node is a set of connectivity nodes that, in the current network state, are connected together through any type of closed switches, including jumpers. Topological nodes change as the current network state changes (i.e., switches, breakers, etc. change state). For a planning model, switch statuses are not used to form topological nodes. Instead they are manually created or deleted in a model builder tool. Topological nodes maintained this way are also called "busses". + + :SvInjection: The topological node associated with the flow injection state variable. Default: None + :SvVoltage: The topological node associated with the voltage state. Default: None + :AngleRefTopologicalIsland: The island for which the node is an angle reference. Normally there is one angle reference node for each island. Default: None + :TopologicalIsland: A topological node belongs to a topological island. Default: None + :BaseVoltage: The base voltage of the topologocial node. Default: None + :ConnectivityNodes: The topological node to which this connectivity node is assigned. May depend on the current state of switches in the network. Default: "list" + :ConnectivityNodeContainer: The connectivity node container to which the toplogical node belongs. Default: None + :ReportingGroup: The topological nodes that belong to the reporting group. Default: None + :Terminal: The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unneccesary to model connectivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + cgmesProfile.TP.value, + ], + "SvInjection": [ + cgmesProfile.SV.value, + ], + "SvVoltage": [ + cgmesProfile.SV.value, + ], + "AngleRefTopologicalIsland": [ + cgmesProfile.SV.value, + ], + "TopologicalIsland": [ + cgmesProfile.SV.value, + ], + "BaseVoltage": [ + cgmesProfile.TP.value, + ], + "ConnectivityNodes": [ + cgmesProfile.TP.value, + ], + "ConnectivityNodeContainer": [ + cgmesProfile.TP.value, + ], + "ReportingGroup": [ + cgmesProfile.TP.value, + ], + "Terminal": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + SvInjection=None, + SvVoltage=None, + AngleRefTopologicalIsland=None, + TopologicalIsland=None, + BaseVoltage=None, + ConnectivityNodes="list", + ConnectivityNodeContainer=None, + ReportingGroup=None, + Terminal="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SvInjection = SvInjection + self.SvVoltage = SvVoltage + self.AngleRefTopologicalIsland = AngleRefTopologicalIsland + self.TopologicalIsland = TopologicalIsland + self.BaseVoltage = BaseVoltage + self.ConnectivityNodes = ConnectivityNodes + self.ConnectivityNodeContainer = ConnectivityNodeContainer + self.ReportingGroup = ReportingGroup + self.Terminal = Terminal + + def __str__(self): + str = "class=TopologicalNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py new file mode 100644 index 00000000..df48ca43 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py @@ -0,0 +1,90 @@ +from .Base import Base + + +class TopologyBoundaryVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/TopologyBoundary/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP_BD.value, + ], + "baseUML": [ + cgmesProfile.TP_BD.value, + ], + "baseURI": [ + cgmesProfile.TP_BD.value, + ], + "date": [ + cgmesProfile.TP_BD.value, + ], + "differenceModelURI": [ + cgmesProfile.TP_BD.value, + ], + "entsoeUML": [ + cgmesProfile.TP_BD.value, + ], + "entsoeURI": [ + cgmesProfile.TP_BD.value, + ], + "modelDescriptionURI": [ + cgmesProfile.TP_BD.value, + ], + "namespaceRDF": [ + cgmesProfile.TP_BD.value, + ], + "namespaceUML": [ + cgmesProfile.TP_BD.value, + ], + "shortName": [ + cgmesProfile.TP_BD.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=TopologyBoundaryVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TopologyVersion.py b/cimpy_3/cimpy/cgmes_v2_4_15/TopologyVersion.py new file mode 100644 index 00000000..be8a72a1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TopologyVersion.py @@ -0,0 +1,90 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class TopologyVersion(Base): + """ + Version details. + + :baseUML: Base UML provided by CIM model manager. Default: '' + :baseURI: Profile URI used in the Model Exchange header and defined in IEC standards. It uniquely identifies the Profile and its version. It is given for information only and to identify the closest IEC profile to which this CGMES profile is based on. Default: '' + :date: Profile creation date Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05. Default: '' + :differenceModelURI: Difference model URI defined by IEC 61970-552. Default: '' + :entsoeUML: UML provided by ENTSO-E. Default: '' + :entsoeURI: Profile URI defined by ENTSO-E and used in the Model Exchange header. It uniquely identifies the Profile and its version. The last two elements in the URI (http://entsoe.eu/CIM/Topology/yy/zzz) indicate major and minor versions where: - yy - indicates a major version; - zzz - indicates a minor version. Default: '' + :modelDescriptionURI: Model Description URI defined by IEC 61970-552. Default: '' + :namespaceRDF: RDF namespace. Default: '' + :namespaceUML: CIM UML namespace. Default: '' + :shortName: The short name of the profile used in profile documentation. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + ], + "baseUML": [ + cgmesProfile.TP.value, + ], + "baseURI": [ + cgmesProfile.TP.value, + ], + "date": [ + cgmesProfile.TP.value, + ], + "differenceModelURI": [ + cgmesProfile.TP.value, + ], + "entsoeUML": [ + cgmesProfile.TP.value, + ], + "entsoeURI": [ + cgmesProfile.TP.value, + ], + "modelDescriptionURI": [ + cgmesProfile.TP.value, + ], + "namespaceRDF": [ + cgmesProfile.TP.value, + ], + "namespaceUML": [ + cgmesProfile.TP.value, + ], + "shortName": [ + cgmesProfile.TP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + baseUML="", + baseURI="", + date="", + differenceModelURI="", + entsoeUML="", + entsoeURI="", + modelDescriptionURI="", + namespaceRDF="", + namespaceUML="", + shortName="", + ): + + self.baseUML = baseUML + self.baseURI = baseURI + self.date = date + self.differenceModelURI = differenceModelURI + self.entsoeUML = entsoeUML + self.entsoeURI = entsoeURI + self.modelDescriptionURI = modelDescriptionURI + self.namespaceRDF = namespaceRDF + self.namespaceUML = namespaceUML + self.shortName = shortName + + def __str__(self): + str = "class=TopologyVersion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TransformerControlMode.py b/cimpy_3/cimpy/cgmes_v2_4_15/TransformerControlMode.py new file mode 100644 index 00000000..c0f4ff49 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TransformerControlMode.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class TransformerControlMode(Base): + """ + Control modes for a transformer. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=TransformerControlMode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TransformerEnd.py b/cimpy_3/cimpy/cgmes_v2_4_15/TransformerEnd.py new file mode 100644 index 00000000..45907a0b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TransformerEnd.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class TransformerEnd(IdentifiedObject): + """ + A conducting connection point of a power transformer. It corresponds to a physical transformer winding terminal. In earlier CIM versions, the TransformerWinding class served a similar purpose, but this class is more flexible because it associates to terminal but is not a specialization of ConductingEquipment. + + :BaseVoltage: Base voltage of the transformer end. This is essential for PU calculation. Default: None + :Terminal: Terminal of the power transformer to which this transformer end belongs. Default: None + :PhaseTapChanger: Transformer end to which this phase tap changer belongs. Default: None + :RatioTapChanger: Transformer end to which this ratio tap changer belongs. Default: None + :endNumber: Number for this transformer end, corresponding to the end's order in the power transformer vector group or phase angle clock number. Highest voltage winding should be 1. Each end within a power transformer should have a unique subsequent end number. Note the transformer end number need not match the terminal sequence number. Default: 0 + :rground: (for Yn and Zn connections) Resistance part of neutral impedance where 'grounded' is true. Default: 0.0 + :grounded: (for Yn and Zn connections) True if the neutral is solidly grounded. Default: False + :xground: (for Yn and Zn connections) Reactive part of neutral impedance where 'grounded' is true. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChanger": [ + cgmesProfile.EQ.value, + ], + "RatioTapChanger": [ + cgmesProfile.EQ.value, + ], + "endNumber": [ + cgmesProfile.EQ.value, + ], + "rground": [ + cgmesProfile.EQ.value, + ], + "grounded": [ + cgmesProfile.EQ.value, + ], + "xground": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + BaseVoltage=None, + Terminal=None, + PhaseTapChanger=None, + RatioTapChanger=None, + endNumber=0, + rground=0.0, + grounded=False, + xground=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BaseVoltage = BaseVoltage + self.Terminal = Terminal + self.PhaseTapChanger = PhaseTapChanger + self.RatioTapChanger = RatioTapChanger + self.endNumber = endNumber + self.rground = rground + self.grounded = grounded + self.xground = xground + + def __str__(self): + str = "class=TransformerEnd\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TurbLCFB1.py b/cimpy_3/cimpy/cgmes_v2_4_15/TurbLCFB1.py new file mode 100644 index 00000000..a07d7146 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TurbLCFB1.py @@ -0,0 +1,112 @@ +from cimpy.cgmes_v2_4_15.TurbineLoadControllerDynamics import ( + TurbineLoadControllerDynamics, +) + + +class TurbLCFB1(TurbineLoadControllerDynamics): + """ + Turbine Load Controller model developed in the WECC. This model represents a supervisory turbine load controller that acts to maintain turbine power at a set value by continuous adjustment of the turbine governor speed-load reference. This model is intended to represent slow reset 'outer loop' controllers managing the action of the turbine governor. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :speedReferenceGovernor: Type of turbine governor reference (Type). true = speed reference governor false = load reference governor. Typical Value = true. Default: False + :db: Controller dead band (db). Typical Value = 0. Default: 0.0 + :emax: Maximum control error (Emax) (note 4). Typical Value = 0.02. Default: 0.0 + :fb: Frequency bias gain (Fb). Typical Value = 0. Default: 0.0 + :kp: Proportional gain (Kp). Typical Value = 0. Default: 0.0 + :ki: Integral gain (Ki). Typical Value = 0. Default: 0.0 + :fbf: Frequency bias flag (Fbf). true = enable frequency bias false = disable frequency bias. Typical Value = false. Default: False + :pbf: Power controller flag (Pbf). true = enable load controller false = disable load controller. Typical Value = false. Default: False + :tpelec: Power transducer time constant (Tpelec). Typical Value = 0. Default: 0 + :irmax: Maximum turbine speed/load reference bias (Irmax) (note 3). Typical Value = 0. Default: 0.0 + :pmwset: Power controller setpoint (Pmwset) (note 1). Unit = MW. Typical Value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "speedReferenceGovernor": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "fb": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "fbf": [ + cgmesProfile.DY.value, + ], + "pbf": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "irmax": [ + cgmesProfile.DY.value, + ], + "pmwset": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineLoadControllerDynamics: \n" + + TurbineLoadControllerDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + speedReferenceGovernor=False, + db=0.0, + emax=0.0, + fb=0.0, + kp=0.0, + ki=0.0, + fbf=False, + pbf=False, + tpelec=0, + irmax=0.0, + pmwset=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.speedReferenceGovernor = speedReferenceGovernor + self.db = db + self.emax = emax + self.fb = fb + self.kp = kp + self.ki = ki + self.fbf = fbf + self.pbf = pbf + self.tpelec = tpelec + self.irmax = irmax + self.pmwset = pmwset + + def __str__(self): + str = "class=TurbLCFB1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py new file mode 100644 index 00000000..e41439b6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorDynamics.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class TurbineGovernorDynamics(DynamicsFunctionBlock): + """ + Turbine-governor function block whose behavior is described by reference to a standard model + + :SynchronousMachineDynamics: Turbine-governor model associated with this synchronous machine model. Default: "list" + :AsynchronousMachineDynamics: Asynchronous machine model with which this turbine-governor model is associated. Default: None + :TurbineLoadControllerDynamics: Turbine load controller providing input to this turbine-governor. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "TurbineLoadControllerDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics="list", + AsynchronousMachineDynamics=None, + TurbineLoadControllerDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + self.TurbineLoadControllerDynamics = TurbineLoadControllerDynamics + + def __str__(self): + str = "class=TurbineGovernorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py new file mode 100644 index 00000000..5e644e19 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineGovernorUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.TurbineGovernorDynamics import TurbineGovernorDynamics + + +class TurbineGovernorUserDefined(TurbineGovernorDynamics): + """ + Turbine-governor function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=TurbineGovernorUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py new file mode 100644 index 00000000..251e6190 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerDynamics.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class TurbineLoadControllerDynamics(DynamicsFunctionBlock): + """ + Turbine load controller function block whose behavior is described by reference to a standard model + + :TurbineGovernorDynamics: Turbine-governor controlled by this turbine load controller. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, TurbineGovernorDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TurbineGovernorDynamics = TurbineGovernorDynamics + + def __str__(self): + str = "class=TurbineLoadControllerDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py new file mode 100644 index 00000000..e9eaac89 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/TurbineLoadControllerUserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.TurbineLoadControllerDynamics import ( + TurbineLoadControllerDynamics, +) + + +class TurbineLoadControllerUserDefined(TurbineLoadControllerDynamics): + """ + Turbine load controller function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineLoadControllerDynamics: \n" + + TurbineLoadControllerDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=TurbineLoadControllerUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py new file mode 100644 index 00000000..11e88b33 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLim2Simplified.py @@ -0,0 +1,82 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcLim2Simplified(UnderexcitationLimiterDynamics): + """ + This model can be derived from UnderexcLimIEEE2. The limit characteristic (look -up table) is a single straight-line, the same as UnderexcLimIEEE2 (see Figure 10.4 (p 32), IEEE 421.5-2005 Section 10.2). + + :q0: Segment Q initial point (Q0). Typical Value = -0.31. Default: 0.0 + :q1: Segment Q end point (Q1). Typical Value = -0.1. Default: 0.0 + :p0: Segment P initial point (P0). Typical Value = 0. Default: 0.0 + :p1: Segment P end point (P1). Typical Value = 1. Default: 0.0 + :kui: Gain Under excitation limiter (Kui). Typical Value = 0.1. Default: 0.0 + :vuimin: Minimum error signal (V). Typical Value = 0. Default: 0.0 + :vuimax: Maximum error signal (V). Typical Value = 1. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "q0": [ + cgmesProfile.DY.value, + ], + "q1": [ + cgmesProfile.DY.value, + ], + "p0": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + q0=0.0, + q1=0.0, + p0=0.0, + p1=0.0, + kui=0.0, + vuimin=0.0, + vuimax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.q0 = q0 + self.q1 = q1 + self.p0 = p0 + self.p1 = p1 + self.kui = kui + self.vuimin = vuimin + self.vuimax = vuimax + + def __str__(self): + str = "class=UnderexcLim2Simplified\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py new file mode 100644 index 00000000..c559655c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE1.py @@ -0,0 +1,130 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcLimIEEE1(UnderexcitationLimiterDynamics): + """ + The class represents the Type UEL1 model which has a circular limit boundary when plotted in terms of machine reactive power vs. real power output. Reference: IEEE UEL1 421.5-2005 Section 10.1. + + :kur: UEL radius setting (K). Typical Value = 1.95. Default: 0.0 + :kuc: UEL center setting (K). Typical Value = 1.38. Default: 0.0 + :kuf: UEL excitation system stabilizer gain (K). Typical Value = 3.3. Default: 0.0 + :vurmax: UEL maximum limit for radius phasor magnitude (V). Typical Value = 5.8. Default: 0.0 + :vucmax: UEL maximum limit for operating point phasor magnitude (V). Typical Value = 5.8. Default: 0.0 + :kui: UEL integral gain (K). Typical Value = 0. Default: 0.0 + :kul: UEL proportional gain (K). Typical Value = 100. Default: 0.0 + :vuimax: UEL integrator output maximum limit (V). Default: 0.0 + :vuimin: UEL integrator output minimum limit (V). Default: 0.0 + :tu1: UEL lead time constant (T). Typical Value = 0. Default: 0 + :tu2: UEL lag time constant (T). Typical Value = 0.05. Default: 0 + :tu3: UEL lead time constant (T). Typical Value = 0. Default: 0 + :tu4: UEL lag time constant (T). Typical Value = 0. Default: 0 + :vulmax: UEL output maximum limit (V). Typical Value = 18. Default: 0.0 + :vulmin: UEL output minimum limit (V). Typical Value = -18. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kur": [ + cgmesProfile.DY.value, + ], + "kuc": [ + cgmesProfile.DY.value, + ], + "kuf": [ + cgmesProfile.DY.value, + ], + "vurmax": [ + cgmesProfile.DY.value, + ], + "vucmax": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "kul": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "tu1": [ + cgmesProfile.DY.value, + ], + "tu2": [ + cgmesProfile.DY.value, + ], + "tu3": [ + cgmesProfile.DY.value, + ], + "tu4": [ + cgmesProfile.DY.value, + ], + "vulmax": [ + cgmesProfile.DY.value, + ], + "vulmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + kur=0.0, + kuc=0.0, + kuf=0.0, + vurmax=0.0, + vucmax=0.0, + kui=0.0, + kul=0.0, + vuimax=0.0, + vuimin=0.0, + tu1=0, + tu2=0, + tu3=0, + tu4=0, + vulmax=0.0, + vulmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kur = kur + self.kuc = kuc + self.kuf = kuf + self.vurmax = vurmax + self.vucmax = vucmax + self.kui = kui + self.kul = kul + self.vuimax = vuimax + self.vuimin = vuimin + self.tu1 = tu1 + self.tu2 = tu2 + self.tu3 = tu3 + self.tu4 = tu4 + self.vulmax = vulmax + self.vulmin = vulmin + + def __str__(self): + str = "class=UnderexcLimIEEE1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py new file mode 100644 index 00000000..585fedc1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimIEEE2.py @@ -0,0 +1,280 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcLimIEEE2(UnderexcitationLimiterDynamics): + """ + The class represents the Type UEL2 which has either a straight-line or multi-segment characteristic when plotted in terms of machine reactive power output vs. real power output. Reference: IEEE UEL2 421.5-2005 Section 10.2. (Limit characteristic lookup table shown in Figure 10.4 (p 32) of the standard). + + :tuv: Voltage filter time constant (T). Typical Value = 5. Default: 0 + :tup: Real power filter time constant (T). Typical Value = 5. Default: 0 + :tuq: Reactive power filter time constant (T). Typical Value = 0. Default: 0 + :kui: UEL integral gain (K). Typical Value = 0.5. Default: 0.0 + :kul: UEL proportional gain (K). Typical Value = 0.8. Default: 0.0 + :vuimax: UEL integrator output maximum limit (V). Typical Value = 0.25. Default: 0.0 + :vuimin: UEL integrator output minimum limit (V). Typical Value = 0. Default: 0.0 + :kuf: UEL excitation system stabilizer gain (K). Typical Value = 0. Default: 0.0 + :kfb: Gain associated with optional integrator feedback input signal to UEL (K). Typical Value = 0. Default: 0.0 + :tul: Time constant associated with optional integrator feedback input signal to UEL (T). Typical Value = 0. Default: 0 + :tu1: UEL lead time constant (T). Typical Value = 0. Default: 0 + :tu2: UEL lag time constant (T). Typical Value = 0. Default: 0 + :tu3: UEL lead time constant (T). Typical Value = 0. Default: 0 + :tu4: UEL lag time constant (T). Typical Value = 0. Default: 0 + :vulmax: UEL output maximum limit (V). Typical Value = 0.25. Default: 0.0 + :vulmin: UEL output minimum limit (V). Typical Value = 0. Default: 0.0 + :p0: Real power values for endpoints (P). Typical Value = 0. Default: 0.0 + :q0: Reactive power values for endpoints (Q). Typical Value = -0.31. Default: 0.0 + :p1: Real power values for endpoints (P). Typical Value = 0.3. Default: 0.0 + :q1: Reactive power values for endpoints (Q). Typical Value = -0.31. Default: 0.0 + :p2: Real power values for endpoints (P). Typical Value = 0.6. Default: 0.0 + :q2: Reactive power values for endpoints (Q). Typical Value = -0.28. Default: 0.0 + :p3: Real power values for endpoints (P). Typical Value = 0.9. Default: 0.0 + :q3: Reactive power values for endpoints (Q). Typical Value = -0.21. Default: 0.0 + :p4: Real power values for endpoints (P). Typical Value = 1.02. Default: 0.0 + :q4: Reactive power values for endpoints (Q). Typical Value = 0. Default: 0.0 + :p5: Real power values for endpoints (P). Default: 0.0 + :q5: Reactive power values for endpoints (Q). Default: 0.0 + :p6: Real power values for endpoints (P). Default: 0.0 + :q6: Reactive power values for endpoints (Q). Default: 0.0 + :p7: Real power values for endpoints (P). Default: 0.0 + :q7: Reactive power values for endpoints (Q). Default: 0.0 + :p8: Real power values for endpoints (P). Default: 0.0 + :q8: Reactive power values for endpoints (Q). Default: 0.0 + :p9: Real power values for endpoints (P). Default: 0.0 + :q9: Reactive power values for endpoints (Q). Default: 0.0 + :p10: Real power values for endpoints (P). Default: 0.0 + :q10: Reactive power values for endpoints (Q). Default: 0.0 + :k1: UEL terminal voltage exponent applied to real power input to UEL limit look-up table (k1). Typical Value = 2. Default: 0.0 + :k2: UEL terminal voltage exponent applied to reactive power output from UEL limit look-up table (k2). Typical Value = 2. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tuv": [ + cgmesProfile.DY.value, + ], + "tup": [ + cgmesProfile.DY.value, + ], + "tuq": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "kul": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "kuf": [ + cgmesProfile.DY.value, + ], + "kfb": [ + cgmesProfile.DY.value, + ], + "tul": [ + cgmesProfile.DY.value, + ], + "tu1": [ + cgmesProfile.DY.value, + ], + "tu2": [ + cgmesProfile.DY.value, + ], + "tu3": [ + cgmesProfile.DY.value, + ], + "tu4": [ + cgmesProfile.DY.value, + ], + "vulmax": [ + cgmesProfile.DY.value, + ], + "vulmin": [ + cgmesProfile.DY.value, + ], + "p0": [ + cgmesProfile.DY.value, + ], + "q0": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "q1": [ + cgmesProfile.DY.value, + ], + "p2": [ + cgmesProfile.DY.value, + ], + "q2": [ + cgmesProfile.DY.value, + ], + "p3": [ + cgmesProfile.DY.value, + ], + "q3": [ + cgmesProfile.DY.value, + ], + "p4": [ + cgmesProfile.DY.value, + ], + "q4": [ + cgmesProfile.DY.value, + ], + "p5": [ + cgmesProfile.DY.value, + ], + "q5": [ + cgmesProfile.DY.value, + ], + "p6": [ + cgmesProfile.DY.value, + ], + "q6": [ + cgmesProfile.DY.value, + ], + "p7": [ + cgmesProfile.DY.value, + ], + "q7": [ + cgmesProfile.DY.value, + ], + "p8": [ + cgmesProfile.DY.value, + ], + "q8": [ + cgmesProfile.DY.value, + ], + "p9": [ + cgmesProfile.DY.value, + ], + "q9": [ + cgmesProfile.DY.value, + ], + "p10": [ + cgmesProfile.DY.value, + ], + "q10": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + tuv=0, + tup=0, + tuq=0, + kui=0.0, + kul=0.0, + vuimax=0.0, + vuimin=0.0, + kuf=0.0, + kfb=0.0, + tul=0, + tu1=0, + tu2=0, + tu3=0, + tu4=0, + vulmax=0.0, + vulmin=0.0, + p0=0.0, + q0=0.0, + p1=0.0, + q1=0.0, + p2=0.0, + q2=0.0, + p3=0.0, + q3=0.0, + p4=0.0, + q4=0.0, + p5=0.0, + q5=0.0, + p6=0.0, + q6=0.0, + p7=0.0, + q7=0.0, + p8=0.0, + q8=0.0, + p9=0.0, + q9=0.0, + p10=0.0, + q10=0.0, + k1=0.0, + k2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tuv = tuv + self.tup = tup + self.tuq = tuq + self.kui = kui + self.kul = kul + self.vuimax = vuimax + self.vuimin = vuimin + self.kuf = kuf + self.kfb = kfb + self.tul = tul + self.tu1 = tu1 + self.tu2 = tu2 + self.tu3 = tu3 + self.tu4 = tu4 + self.vulmax = vulmax + self.vulmin = vulmin + self.p0 = p0 + self.q0 = q0 + self.p1 = p1 + self.q1 = q1 + self.p2 = p2 + self.q2 = q2 + self.p3 = p3 + self.q3 = q3 + self.p4 = p4 + self.q4 = q4 + self.p5 = p5 + self.q5 = q5 + self.p6 = p6 + self.q6 = q6 + self.p7 = p7 + self.q7 = q7 + self.p8 = p8 + self.q8 = q8 + self.p9 = p9 + self.q9 = q9 + self.p10 = p10 + self.q10 = q10 + self.k1 = k1 + self.k2 = k2 + + def __str__(self): + str = "class=UnderexcLimIEEE2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX1.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX1.py new file mode 100644 index 00000000..6f14e5ee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX1.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcLimX1(UnderexcitationLimiterDynamics): + """ + + + :kf2: Differential gain (Kf2). Default: 0.0 + :tf2: Differential time constant (Tf2) (>0). Default: 0 + :km: Minimum excitation limit gain (Km). Default: 0.0 + :tm: Minimum excitation limit time constant (Tm). Default: 0 + :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 + :k: Minimum excitation limit slope (K) (>0). Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "melmax": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, kf2=0.0, tf2=0, km=0.0, tm=0, melmax=0.0, k=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.kf2 = kf2 + self.tf2 = tf2 + self.km = km + self.tm = tm + self.melmax = melmax + self.k = k + + def __str__(self): + str = "class=UnderexcLimX1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX2.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX2.py new file mode 100644 index 00000000..1d3bccd7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcLimX2.py @@ -0,0 +1,73 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcLimX2(UnderexcitationLimiterDynamics): + """ + + + :kf2: Differential gain (Kf2). Default: 0.0 + :tf2: Differential time constant (Tf2) (>0). Default: 0 + :km: Minimum excitation limit gain (Km). Default: 0.0 + :tm: Minimum excitation limit time constant (Tm). Default: 0 + :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 + :qo: Excitation center setting (Qo). Default: 0.0 + :r: Excitation radius (R). Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "melmax": [ + cgmesProfile.DY.value, + ], + "qo": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, kf2=0.0, tf2=0, km=0.0, tm=0, melmax=0.0, qo=0.0, r=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.kf2 = kf2 + self.tf2 = tf2 + self.km = km + self.tm = tm + self.melmax = melmax + self.qo = qo + self.r = r + + def __str__(self): + str = "class=UnderexcLimX2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py new file mode 100644 index 00000000..60aa2420 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterDynamics.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class UnderexcitationLimiterDynamics(DynamicsFunctionBlock): + """ + Underexcitation limiter function block whose behaviour is described by reference to a standard model + + :RemoteInputSignal: Remote input signal used by this underexcitation limiter model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this underexcitation limiter model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=UnderexcitationLimiterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py new file mode 100644 index 00000000..5bc2bf61 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnderexcitationLimiterUserDefined.py @@ -0,0 +1,48 @@ +from cimpy.cgmes_v2_4_15.UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics, +) + + +class UnderexcitationLimiterUserDefined(UnderexcitationLimiterDynamics): + """ + Underexcitation limiter function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=UnderexcitationLimiterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnitMultiplier.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnitMultiplier.py new file mode 100644 index 00000000..674159b7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnitMultiplier.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class UnitMultiplier(Base): + """ + The unit multipliers defined for the CIM. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=UnitMultiplier\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/UnitSymbol.py b/cimpy_3/cimpy/cgmes_v2_4_15/UnitSymbol.py new file mode 100644 index 00000000..5b923d22 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/UnitSymbol.py @@ -0,0 +1,35 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class UnitSymbol(Base): + """ + The units defined for usage in the CIM. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=UnitSymbol\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VAdjIEEE.py b/cimpy_3/cimpy/cgmes_v2_4_15/VAdjIEEE.py new file mode 100644 index 00000000..f82f5990 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VAdjIEEE.py @@ -0,0 +1,74 @@ +from cimpy.cgmes_v2_4_15.VoltageAdjusterDynamics import VoltageAdjusterDynamics + + +class VAdjIEEE(VoltageAdjusterDynamics): + """ + The class represents IEEE Voltage Adjuster which is used to represent the voltage adjuster in either a power factor or var control system. Reference: IEEE Standard 421.5-2005 Section 11.1. + + :vadjf: Set high to provide a continuous raise or lower (). Default: 0.0 + :adjslew: Rate at which output of adjuster changes (). Unit = sec./PU. Typical Value = 300. Default: 0.0 + :vadjmax: Maximum output of the adjuster (). Typical Value = 1.1. Default: 0.0 + :vadjmin: Minimum output of the adjuster (). Typical Value = 0.9. Default: 0.0 + :taon: Time that adjuster pulses are on (). Typical Value = 0.1. Default: 0 + :taoff: Time that adjuster pulses are off (). Typical Value = 0.5. Default: 0 + """ + + cgmesProfile = VoltageAdjusterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vadjf": [ + cgmesProfile.DY.value, + ], + "adjslew": [ + cgmesProfile.DY.value, + ], + "vadjmax": [ + cgmesProfile.DY.value, + ], + "vadjmin": [ + cgmesProfile.DY.value, + ], + "taon": [ + cgmesProfile.DY.value, + ], + "taoff": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageAdjusterDynamics: \n" + + VoltageAdjusterDynamics.__doc__ + ) + + def __init__( + self, + vadjf=0.0, + adjslew=0.0, + vadjmax=0.0, + vadjmin=0.0, + taon=0, + taoff=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vadjf = vadjf + self.adjslew = adjslew + self.vadjmax = vadjmax + self.vadjmin = vadjmin + self.taon = taon + self.taoff = taoff + + def __str__(self): + str = "class=VAdjIEEE\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType1.py b/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType1.py new file mode 100644 index 00000000..b7c4e3fa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType1.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VCompIEEEType1(VoltageCompensatorDynamics): + """ + Reference: IEEE Standard 421.5-2005 Section 4. + + :rc: Default: 0.0 + :xc: Default: 0.0 + :tr: Default: 0 + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "rc": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__(self, rc=0.0, xc=0.0, tr=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.rc = rc + self.xc = xc + self.tr = tr + + def __str__(self): + str = "class=VCompIEEEType1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType2.py b/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType2.py new file mode 100644 index 00000000..a3e9e95c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VCompIEEEType2.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VCompIEEEType2(VoltageCompensatorDynamics): + """ + + + :tr: Default: 0 + :GenICompensationForGenJ: Compensation of this voltage compensator's generator for current flow out of another generator. Default: "list" + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "GenICompensationForGenJ": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__(self, tr=0, GenICompensationForGenJ="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.tr = tr + self.GenICompensationForGenJ = GenICompensationForGenJ + + def __str__(self): + str = "class=VCompIEEEType2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Validity.py b/cimpy_3/cimpy/cgmes_v2_4_15/Validity.py new file mode 100644 index 00000000..79131bda --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Validity.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Validity(Base): + """ + Validity for MeasurementValue. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Validity\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ValueAliasSet.py b/cimpy_3/cimpy/cgmes_v2_4_15/ValueAliasSet.py new file mode 100644 index 00000000..19ad951e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ValueAliasSet.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class ValueAliasSet(IdentifiedObject): + """ + Describes the translation of a set of values into a name and is intendend to facilitate cusom translations. Each ValueAliasSet has a name, description etc. A specific Measurement may represent a discrete state like Open, Closed, Intermediate etc. This requires a translation from the MeasurementValue.value number to a string, e.g. 0->"Invalid", 1->"Open", 2->"Closed", 3->"Intermediate". Each ValueToAlias member in ValueAliasSet.Value describe a mapping for one particular value to a name. + + :Commands: The Commands using the set for translation. Default: "list" + :Discretes: The Measurements using the set for translation. Default: "list" + :RaiseLowerCommands: The Commands using the set for translation. Default: "list" + :Values: The ValueAliasSet having the ValueToAlias mappings. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Commands": [ + cgmesProfile.EQ.value, + ], + "Discretes": [ + cgmesProfile.EQ.value, + ], + "RaiseLowerCommands": [ + cgmesProfile.EQ.value, + ], + "Values": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Commands="list", + Discretes="list", + RaiseLowerCommands="list", + Values="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Commands = Commands + self.Discretes = Discretes + self.RaiseLowerCommands = RaiseLowerCommands + self.Values = Values + + def __str__(self): + str = "class=ValueAliasSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/ValueToAlias.py b/cimpy_3/cimpy/cgmes_v2_4_15/ValueToAlias.py new file mode 100644 index 00000000..6808f783 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/ValueToAlias.py @@ -0,0 +1,44 @@ +from .IdentifiedObject import IdentifiedObject + + +class ValueToAlias(IdentifiedObject): + """ + Describes the translation of one particular value into a name, e.g. 1 as "Open". + + :ValueAliasSet: The ValueToAlias mappings included in the set. Default: None + :value: The value that is mapped. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ValueAliasSet": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, ValueAliasSet=None, value=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ValueAliasSet = ValueAliasSet + self.value = value + + def __str__(self): + str = "class=ValueToAlias\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VisibilityLayer.py b/cimpy_3/cimpy/cgmes_v2_4_15/VisibilityLayer.py new file mode 100644 index 00000000..6d18434f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VisibilityLayer.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class VisibilityLayer(IdentifiedObject): + """ + Layers are typically used for grouping diagram objects according to themes and scales. Themes are used to display or hide certain information (e.g., lakes, borders), while scales are used for hiding or displaying information depending on the current zoom level (hide text when it is too small to be read, or when it exceeds the screen size). This is also called de-cluttering. CIM based graphics exchange will support an m:n relationship between diagram objects and layers. It will be the task of the importing system to convert an m:n case into an appropriate 1:n representation if the importing system does not support m:n. + + :VisibleObjects: A visibility layer can contain one or more diagram objects. Default: "list" + :drawingOrder: The drawing order for this layer. The higher the number, the later the layer and the objects within it are rendered. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DI.value, + ], + "VisibleObjects": [ + cgmesProfile.DI.value, + ], + "drawingOrder": [ + cgmesProfile.DI.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, VisibleObjects="list", drawingOrder=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VisibleObjects = VisibleObjects + self.drawingOrder = drawingOrder + + def __str__(self): + str = "class=VisibilityLayer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/Voltage.py b/cimpy_3/cimpy/cgmes_v2_4_15/Voltage.py new file mode 100644 index 00000000..1b520dc8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/Voltage.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class Voltage(Base): + """ + Electrical voltage, can be both AC and DC. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Voltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py new file mode 100644 index 00000000..db87c705 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterDynamics.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class VoltageAdjusterDynamics(DynamicsFunctionBlock): + """ + Voltage adjuster function block whose behaviour is described by reference to a standard model + + :PFVArControllerType1Dynamics: Power Factor or VAr controller Type I model with which this voltage adjuster is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, PFVArControllerType1Dynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + + def __str__(self): + str = "class=VoltageAdjusterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py new file mode 100644 index 00000000..fdb36b21 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageAdjusterUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.VoltageAdjusterDynamics import VoltageAdjusterDynamics + + +class VoltageAdjusterUserDefined(VoltageAdjusterDynamics): + """ + function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = VoltageAdjusterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageAdjusterDynamics: \n" + + VoltageAdjusterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=VoltageAdjusterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py new file mode 100644 index 00000000..460cda4e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorDynamics.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class VoltageCompensatorDynamics(DynamicsFunctionBlock): + """ + Voltage compensator function block whose behaviour is described by reference to a standard model + + :RemoteInputSignal: Remote input signal used by this voltage compensator model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this voltage compensator is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=VoltageCompensatorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py new file mode 100644 index 00000000..2a5a1e72 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageCompensatorUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VoltageCompensatorUserDefined(VoltageCompensatorDynamics): + """ + Voltage compensator function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=VoltageCompensatorUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLevel.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLevel.py new file mode 100644 index 00000000..05bb2137 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLevel.py @@ -0,0 +1,62 @@ +from cimpy.cgmes_v2_4_15.EquipmentContainer import EquipmentContainer + + +class VoltageLevel(EquipmentContainer): + """ + A collection of equipment at one common system voltage forming a switchgear. The equipment typically consist of breakers, busbars, instrumentation, control, regulation and protection devices as well as assemblies of all these. + + :BaseVoltage: The base voltage used for all equipment within the voltage level. Default: None + :Substation: The substation of the voltage level. Default: None + :highVoltageLimit: The bus bar's high voltage limit Default: 0.0 + :lowVoltageLimit: The bus bar's low voltage limit Default: 0.0 + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + ], + "Substation": [ + cgmesProfile.EQ.value, + ], + "highVoltageLimit": [ + cgmesProfile.EQ.value, + ], + "lowVoltageLimit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__( + self, + BaseVoltage=None, + Substation=None, + highVoltageLimit=0.0, + lowVoltageLimit=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BaseVoltage = BaseVoltage + self.Substation = Substation + self.highVoltageLimit = highVoltageLimit + self.lowVoltageLimit = lowVoltageLimit + + def __str__(self): + str = "class=VoltageLevel\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLimit.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLimit.py new file mode 100644 index 00000000..b28b1fca --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltageLimit.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.OperationalLimit import OperationalLimit + + +class VoltageLimit(OperationalLimit): + """ + Operational limit applied to voltage. + + :value: Limit on voltage. High or low limit nature of the limit depends upon the properties of the operational limit type. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + + def __str__(self): + str = "class=VoltageLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py b/cimpy_3/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py new file mode 100644 index 00000000..94f6a8f5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VoltagePerReactivePower.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class VoltagePerReactivePower(Base): + """ + Voltage variation with reactive power. + + :value: Default: 0.0 + :unit: Default: None + :denominatorMultiplier: Default: None + :multiplier: Default: None + :denominatorUnit: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "denominatorMultiplier": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "denominatorUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + denominatorMultiplier=None, + multiplier=None, + denominatorUnit=None, + ): + + self.value = value + self.unit = unit + self.denominatorMultiplier = denominatorMultiplier + self.multiplier = multiplier + self.denominatorUnit = denominatorUnit + + def __str__(self): + str = "class=VoltagePerReactivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VolumeFlowRate.py b/cimpy_3/cimpy/cgmes_v2_4_15/VolumeFlowRate.py new file mode 100644 index 00000000..3f2b5a75 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VolumeFlowRate.py @@ -0,0 +1,60 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class VolumeFlowRate(Base): + """ + Volume per time. + + :denominatorMultiplier: Default: None + :denominatorUnit: Default: None + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "denominatorMultiplier": [ + cgmesProfile.DY.value, + ], + "denominatorUnit": [ + cgmesProfile.DY.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + ], + "unit": [ + cgmesProfile.DY.value, + ], + "value": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + denominatorMultiplier=None, + denominatorUnit=None, + multiplier=None, + unit=None, + value=0.0, + ): + + self.denominatorMultiplier = denominatorMultiplier + self.denominatorUnit = denominatorUnit + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=VolumeFlowRate\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py b/cimpy_3/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py new file mode 100644 index 00000000..8687431f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VsCapabilityCurve.py @@ -0,0 +1,36 @@ +from cimpy.cgmes_v2_4_15.Curve import Curve + + +class VsCapabilityCurve(Curve): + """ + The P-Q capability curve for a voltage source converter, with P on x-axis and Qmin and Qmax on y1-axis and y2-axis. + + :VsConverterDCSides: Capability curve of this converter. Default: "list" + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "VsConverterDCSides": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__(self, VsConverterDCSides="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VsConverterDCSides = VsConverterDCSides + + def __str__(self): + str = "class=VsCapabilityCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VsConverter.py b/cimpy_3/cimpy/cgmes_v2_4_15/VsConverter.py new file mode 100644 index 00000000..d85ed96f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VsConverter.py @@ -0,0 +1,111 @@ +from cimpy.cgmes_v2_4_15.ACDCConverter import ACDCConverter + + +class VsConverter(ACDCConverter): + """ + DC side of the voltage source converter (VSC). + + :CapabilityCurve: All converters with this capability curve. Default: None + :maxModulationIndex: The max quotient between the AC converter voltage (Uc) and DC voltage (Ud). A factor typically less than 1. VSC configuration data used in power flow. Default: 0.0 + :maxValveCurrent: The maximum current through a valve. This current limit is the basis for calculating the capability diagram. VSC configuration data. Default: 0.0 + :delta: Angle between uf and uc. Converter state variable used in power flow. Default: 0.0 + :uf: Filter bus voltage. Converter state variable, result from power flow. Default: 0.0 + :droop: Droop constant; pu value is obtained as D [kV^2 / MW] x Sb / Ubdc^2. Default: 0.0 + :droopCompensation: Compensation (resistance) constant. Used to compensate for voltage drop when controlling voltage at a distant bus. Default: 0.0 + :pPccControl: Kind of control of real power and/or DC voltage. Default: None + :qPccControl: Default: None + :qShare: Reactive power sharing factor among parallel converters on Uac control. Default: 0.0 + :targetQpcc: Reactive power injection target in AC grid, at point of common coupling. Default: 0.0 + :targetUpcc: Voltage target in AC grid, at point of common coupling. Default: 0.0 + """ + + cgmesProfile = ACDCConverter.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + cgmesProfile.SSH.value, + ], + "CapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "maxModulationIndex": [ + cgmesProfile.EQ.value, + ], + "maxValveCurrent": [ + cgmesProfile.EQ.value, + ], + "delta": [ + cgmesProfile.SV.value, + ], + "uf": [ + cgmesProfile.SV.value, + ], + "droop": [ + cgmesProfile.SSH.value, + ], + "droopCompensation": [ + cgmesProfile.SSH.value, + ], + "pPccControl": [ + cgmesProfile.SSH.value, + ], + "qPccControl": [ + cgmesProfile.SSH.value, + ], + "qShare": [ + cgmesProfile.SSH.value, + ], + "targetQpcc": [ + cgmesProfile.SSH.value, + ], + "targetUpcc": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCConverter: \n" + ACDCConverter.__doc__ + ) + + def __init__( + self, + CapabilityCurve=None, + maxModulationIndex=0.0, + maxValveCurrent=0.0, + delta=0.0, + uf=0.0, + droop=0.0, + droopCompensation=0.0, + pPccControl=None, + qPccControl=None, + qShare=0.0, + targetQpcc=0.0, + targetUpcc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.CapabilityCurve = CapabilityCurve + self.maxModulationIndex = maxModulationIndex + self.maxValveCurrent = maxValveCurrent + self.delta = delta + self.uf = uf + self.droop = droop + self.droopCompensation = droopCompensation + self.pPccControl = pPccControl + self.qPccControl = qPccControl + self.qShare = qShare + self.targetQpcc = targetQpcc + self.targetUpcc = targetUpcc + + def __str__(self): + str = "class=VsConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VsPpccControlKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/VsPpccControlKind.py new file mode 100644 index 00000000..c074158d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VsPpccControlKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class VsPpccControlKind(Base): + """ + Types applicable to the control of real power and/or DC voltage by voltage source converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=VsPpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/VsQpccControlKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/VsQpccControlKind.py new file mode 100644 index 00000000..84214736 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/VsQpccControlKind.py @@ -0,0 +1,28 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class VsQpccControlKind(Base): + """ """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=VsQpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py new file mode 100644 index 00000000..8e4a0f51 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroConstIEC.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindAeroConstIEC(IdentifiedObject): + """ + The constant aerodynamic torque model assumes that the aerodynamic torque is constant. Reference: IEC Standard 61400-27-1 Section 6.6.1.1. + + :WindGenTurbineType1IEC: Wind turbine type 1 model with which this wind aerodynamic model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType1IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, WindGenTurbineType1IEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindGenTurbineType1IEC = WindGenTurbineType1IEC + + def __str__(self): + str = "class=WindAeroConstIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py new file mode 100644 index 00000000..b486e329 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindAeroLinearIEC.py @@ -0,0 +1,74 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindAeroLinearIEC(IdentifiedObject): + """ + The linearised aerodynamic model. Reference: IEC Standard 614000-27-1 Section 6.6.1.2. + + :dpomega: Partial derivative of aerodynamic power with respect to changes in WTR speed (). It is case dependent parameter. Default: 0.0 + :dptheta: Partial derivative of aerodynamic power with respect to changes in pitch angle (). It is case dependent parameter. Default: 0.0 + :omegazero: Rotor speed if the wind turbine is not derated (). It is case dependent parameter. Default: 0.0 + :pavail: Available aerodynamic power (). It is case dependent parameter. Default: 0.0 + :thetazero: Pitch angle if the wind turbine is not derated (). It is case dependent parameter. Default: 0.0 + :WindGenTurbineType3IEC: Wind generator type 3 model with which this wind aerodynamic model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpomega": [ + cgmesProfile.DY.value, + ], + "dptheta": [ + cgmesProfile.DY.value, + ], + "omegazero": [ + cgmesProfile.DY.value, + ], + "pavail": [ + cgmesProfile.DY.value, + ], + "thetazero": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpomega=0.0, + dptheta=0.0, + omegazero=0.0, + pavail=0.0, + thetazero=0.0, + WindGenTurbineType3IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpomega = dpomega + self.dptheta = dptheta + self.omegazero = omegazero + self.pavail = pavail + self.thetazero = thetazero + self.WindGenTurbineType3IEC = WindGenTurbineType3IEC + + def __str__(self): + str = "class=WindAeroLinearIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py new file mode 100644 index 00000000..2ad212dc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContCurrLimIEC.py @@ -0,0 +1,80 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContCurrLimIEC(IdentifiedObject): + """ + Current limitation model. The current limitation model combines the physical limits. Reference: IEC Standard 61400-27-1 Section 6.6.5.7. + + :imax: Maximum continuous current at the wind turbine terminals (). It is type dependent parameter. Default: 0.0 + :imaxdip: Maximum current during voltage dip at the wind turbine terminals (). It is project dependent parameter. Default: 0.0 + :mdfslim: Limitation of type 3 stator current (): - false=0: total current limitation, - true=1: stator current limitation). It is type dependent parameter. Default: False + :mqpri: Prioritisation of q control during LVRT (): - true = 1: reactive power priority, - false = 0: active power priority. It is project dependent parameter. Default: False + :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 + :WindTurbineType3or4IEC: Wind turbine type 3 or 4 model with which this wind control current limitation model is associated. Default: None + :WindDynamicsLookupTable: The current control limitation model with which this wind dynamics lookup table is associated. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "imax": [ + cgmesProfile.DY.value, + ], + "imaxdip": [ + cgmesProfile.DY.value, + ], + "mdfslim": [ + cgmesProfile.DY.value, + ], + "mqpri": [ + cgmesProfile.DY.value, + ], + "tufilt": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + imax=0.0, + imaxdip=0.0, + mdfslim=False, + mqpri=False, + tufilt=0, + WindTurbineType3or4IEC=None, + WindDynamicsLookupTable="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.imax = imax + self.imaxdip = imaxdip + self.mdfslim = mdfslim + self.mqpri = mqpri + self.tufilt = tufilt + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + self.WindDynamicsLookupTable = WindDynamicsLookupTable + + def __str__(self): + str = "class=WindContCurrLimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType3IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType3IEC.py new file mode 100644 index 00000000..93c96f6d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType3IEC.py @@ -0,0 +1,176 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContPType3IEC(IdentifiedObject): + """ + P control model Type 3. Reference: IEC Standard 61400-27-1 Section 6.6.5.3. + + :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 + :dtrisemaxlvrt: Limitation of torque rise rate during LVRT for S (d). It is project dependent parameter. Default: 0.0 + :kdtd: Gain for active drive train damping (). It is type dependent parameter. Default: 0.0 + :kip: PI controller integration parameter (). It is type dependent parameter. Default: 0.0 + :kpp: PI controller proportional gain (). It is type dependent parameter. Default: 0.0 + :mplvrt: Enable LVRT power control mode (M true = 1: voltage control false = 0: reactive power control. It is project dependent parameter. Default: False + :omegaoffset: Offset to reference value that limits controller action during rotor speed changes (omega). It is case dependent parameter. Default: 0.0 + :pdtdmax: Maximum active drive train damping power (). It is type dependent parameter. Default: 0.0 + :rramp: Ramp limitation of torque, required in some grid codes (). It is project dependent parameter. Default: 0.0 + :tdvs: Timedelay after deep voltage sags (T). It is project dependent parameter. Default: 0 + :temin: Minimum electrical generator torque (). It is type dependent parameter. Default: 0.0 + :tomegafilt: Filter time constant for generator speed measurement (). It is type dependent parameter. Default: 0 + :tpfilt: Filter time constant for power measurement (). It is type dependent parameter. Default: 0 + :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0.0 + :tufilt: Filter time constant for voltage measurement (). It is type dependent parameter. Default: 0 + :tuscale: Voltage scaling factor of reset-torque (T). It is project dependent parameter. Default: 0.0 + :twref: Time constant in speed reference filter (). It is type dependent parameter. Default: 0 + :udvs: Voltage limit for hold LVRT status after deep voltage sags (). It is project dependent parameter. Default: 0.0 + :updip: Voltage dip threshold for P-control (). Part of turbine control, often different (e.g 0.8) from converter thresholds. It is project dependent parameter. Default: 0.0 + :wdtd: Active drive train damping frequency (omega). It can be calculated from two mass model parameters. It is type dependent parameter. Default: 0.0 + :zeta: Coefficient for active drive train damping (zeta). It is type dependent parameter. Default: 0.0 + :WindGenTurbineType3IEC: Wind turbine type 3 model with which this Wind control P type 3 model is associated. Default: None + :WindDynamicsLookupTable: The P control type 3 model with which this wind dynamics lookup table is associated. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmax": [ + cgmesProfile.DY.value, + ], + "dtrisemaxlvrt": [ + cgmesProfile.DY.value, + ], + "kdtd": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "kpp": [ + cgmesProfile.DY.value, + ], + "mplvrt": [ + cgmesProfile.DY.value, + ], + "omegaoffset": [ + cgmesProfile.DY.value, + ], + "pdtdmax": [ + cgmesProfile.DY.value, + ], + "rramp": [ + cgmesProfile.DY.value, + ], + "tdvs": [ + cgmesProfile.DY.value, + ], + "temin": [ + cgmesProfile.DY.value, + ], + "tomegafilt": [ + cgmesProfile.DY.value, + ], + "tpfilt": [ + cgmesProfile.DY.value, + ], + "tpord": [ + cgmesProfile.DY.value, + ], + "tufilt": [ + cgmesProfile.DY.value, + ], + "tuscale": [ + cgmesProfile.DY.value, + ], + "twref": [ + cgmesProfile.DY.value, + ], + "udvs": [ + cgmesProfile.DY.value, + ], + "updip": [ + cgmesProfile.DY.value, + ], + "wdtd": [ + cgmesProfile.DY.value, + ], + "zeta": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpmax=0.0, + dtrisemaxlvrt=0.0, + kdtd=0.0, + kip=0.0, + kpp=0.0, + mplvrt=False, + omegaoffset=0.0, + pdtdmax=0.0, + rramp=0.0, + tdvs=0, + temin=0.0, + tomegafilt=0, + tpfilt=0, + tpord=0.0, + tufilt=0, + tuscale=0.0, + twref=0, + udvs=0.0, + updip=0.0, + wdtd=0.0, + zeta=0.0, + WindGenTurbineType3IEC=None, + WindDynamicsLookupTable="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpmax = dpmax + self.dtrisemaxlvrt = dtrisemaxlvrt + self.kdtd = kdtd + self.kip = kip + self.kpp = kpp + self.mplvrt = mplvrt + self.omegaoffset = omegaoffset + self.pdtdmax = pdtdmax + self.rramp = rramp + self.tdvs = tdvs + self.temin = temin + self.tomegafilt = tomegafilt + self.tpfilt = tpfilt + self.tpord = tpord + self.tufilt = tufilt + self.tuscale = tuscale + self.twref = twref + self.udvs = udvs + self.updip = updip + self.wdtd = wdtd + self.zeta = zeta + self.WindGenTurbineType3IEC = WindGenTurbineType3IEC + self.WindDynamicsLookupTable = WindDynamicsLookupTable + + def __str__(self): + str = "class=WindContPType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py new file mode 100644 index 00000000..9e733544 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4aIEC.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContPType4aIEC(IdentifiedObject): + """ + P control model Type 4A. Reference: IEC Standard 61400-27-1 Section 6.6.5.4. + + :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 + :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0 + :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 + :WindTurbineType4aIEC: Wind turbine type 4A model with which this wind control P type 4A model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmax": [ + cgmesProfile.DY.value, + ], + "tpord": [ + cgmesProfile.DY.value, + ], + "tufilt": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4aIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, dpmax=0.0, tpord=0, tufilt=0, WindTurbineType4aIEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.dpmax = dpmax + self.tpord = tpord + self.tufilt = tufilt + self.WindTurbineType4aIEC = WindTurbineType4aIEC + + def __str__(self): + str = "class=WindContPType4aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py new file mode 100644 index 00000000..c49760e0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPType4bIEC.py @@ -0,0 +1,68 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContPType4bIEC(IdentifiedObject): + """ + P control model Type 4B. Reference: IEC Standard 61400-27-1 Section 6.6.5.5. + + :dpmax: Maximum wind turbine power ramp rate (). It is project dependent parameter. Default: 0.0 + :tpaero: Time constant in aerodynamic power response (). It is type dependent parameter. Default: 0 + :tpord: Time constant in power order lag (). It is type dependent parameter. Default: 0 + :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 + :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind control P type 4B model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmax": [ + cgmesProfile.DY.value, + ], + "tpaero": [ + cgmesProfile.DY.value, + ], + "tpord": [ + cgmesProfile.DY.value, + ], + "tufilt": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4bIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpmax=0.0, + tpaero=0, + tpord=0, + tufilt=0, + WindTurbineType4bIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpmax = dpmax + self.tpaero = tpaero + self.tpord = tpord + self.tufilt = tufilt + self.WindTurbineType4bIEC = WindTurbineType4bIEC + + def __str__(self): + str = "class=WindContPType4bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py new file mode 100644 index 00000000..f44b8cbe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContPitchAngleIEC.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContPitchAngleIEC(IdentifiedObject): + """ + Pitch angle control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.8. + + :dthetamax: Maximum pitch positive ramp rate (d). It is type dependent parameter. Unit = degrees/sec. Default: 0.0 + :dthetamin: Maximum pitch negative ramp rate (d). It is type dependent parameter. Unit = degrees/sec. Default: 0.0 + :kic: Power PI controller integration gain (). It is type dependent parameter. Default: 0.0 + :kiomega: Speed PI controller integration gain (). It is type dependent parameter. Default: 0.0 + :kpc: Power PI controller proportional gain (). It is type dependent parameter. Default: 0.0 + :kpomega: Speed PI controller proportional gain (). It is type dependent parameter. Default: 0.0 + :kpx: Pitch cross coupling gain (K). It is type dependent parameter. Default: 0.0 + :thetamax: Maximum pitch angle (). It is type dependent parameter. Default: 0.0 + :thetamin: Minimum pitch angle (). It is type dependent parameter. Default: 0.0 + :ttheta: Pitch time constant (t). It is type dependent parameter. Default: 0 + :WindGenTurbineType3IEC: Wind turbine type 3 model with which this pitch control model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dthetamax": [ + cgmesProfile.DY.value, + ], + "dthetamin": [ + cgmesProfile.DY.value, + ], + "kic": [ + cgmesProfile.DY.value, + ], + "kiomega": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "kpomega": [ + cgmesProfile.DY.value, + ], + "kpx": [ + cgmesProfile.DY.value, + ], + "thetamax": [ + cgmesProfile.DY.value, + ], + "thetamin": [ + cgmesProfile.DY.value, + ], + "ttheta": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dthetamax=0.0, + dthetamin=0.0, + kic=0.0, + kiomega=0.0, + kpc=0.0, + kpomega=0.0, + kpx=0.0, + thetamax=0.0, + thetamin=0.0, + ttheta=0, + WindGenTurbineType3IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dthetamax = dthetamax + self.dthetamin = dthetamin + self.kic = kic + self.kiomega = kiomega + self.kpc = kpc + self.kpomega = kpomega + self.kpx = kpx + self.thetamax = thetamax + self.thetamin = thetamin + self.ttheta = ttheta + self.WindGenTurbineType3IEC = WindGenTurbineType3IEC + + def __str__(self): + str = "class=WindContPitchAngleIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContQIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContQIEC.py new file mode 100644 index 00000000..8638e262 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContQIEC.py @@ -0,0 +1,200 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContQIEC(IdentifiedObject): + """ + Q control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.6. + + :iqh1: Maximum reactive current injection during dip (i). It is type dependent parameter. Default: 0.0 + :iqmax: Maximum reactive current injection (i). It is type dependent parameter. Default: 0.0 + :iqmin: Minimum reactive current injection (i). It is type dependent parameter. Default: 0.0 + :iqpost: Post fault reactive current injection (). It is project dependent parameter. Default: 0.0 + :kiq: Reactive power PI controller integration gain (). It is type dependent parameter. Default: 0.0 + :kiu: Voltage PI controller integration gain (). It is type dependent parameter. Default: 0.0 + :kpq: Reactive power PI controller proportional gain (). It is type dependent parameter. Default: 0.0 + :kpu: Voltage PI controller proportional gain (). It is type dependent parameter. Default: 0.0 + :kqv: Voltage scaling factor for LVRT current (). It is project dependent parameter. Default: 0.0 + :qmax: Maximum reactive power (q). It is type dependent parameter. Default: 0.0 + :qmin: Minimum reactive power (q). It is type dependent parameter. Default: 0.0 + :rdroop: Resistive component of voltage drop impedance (). It is project dependent parameter. Default: 0.0 + :tiq: Time constant in reactive current lag (T). It is type dependent parameter. Default: 0 + :tpfilt: Power measurement filter time constant (). It is type dependent parameter. Default: 0 + :tpost: Length of time period where post fault reactive power is injected (). It is project dependent parameter. Default: 0 + :tqord: Time constant in reactive power order lag (). It is type dependent parameter. Default: 0 + :tufilt: Voltage measurement filter time constant (). It is type dependent parameter. Default: 0 + :udb1: Voltage dead band lower limit (). It is type dependent parameter. Default: 0.0 + :udb2: Voltage dead band upper limit (). It is type dependent parameter. Default: 0.0 + :umax: Maximum voltage in voltage PI controller integral term (u). It is type dependent parameter. Default: 0.0 + :umin: Minimum voltage in voltage PI controller integral term (u). It is type dependent parameter. Default: 0.0 + :uqdip: Voltage threshold for LVRT detection in q control (). It is type dependent parameter. Default: 0.0 + :uref0: User defined bias in voltage reference (), used when =. It is case dependent parameter. Default: 0.0 + :windLVRTQcontrolModesType: Types of LVRT Q control modes (). It is project dependent parameter. Default: None + :windQcontrolModesType: Types of general wind turbine Q control modes (). It is project dependent parameter. Default: None + :xdroop: Inductive component of voltage drop impedance (). It is project dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind turbine type 3 or 4 model with which this reactive control mode is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "iqh1": [ + cgmesProfile.DY.value, + ], + "iqmax": [ + cgmesProfile.DY.value, + ], + "iqmin": [ + cgmesProfile.DY.value, + ], + "iqpost": [ + cgmesProfile.DY.value, + ], + "kiq": [ + cgmesProfile.DY.value, + ], + "kiu": [ + cgmesProfile.DY.value, + ], + "kpq": [ + cgmesProfile.DY.value, + ], + "kpu": [ + cgmesProfile.DY.value, + ], + "kqv": [ + cgmesProfile.DY.value, + ], + "qmax": [ + cgmesProfile.DY.value, + ], + "qmin": [ + cgmesProfile.DY.value, + ], + "rdroop": [ + cgmesProfile.DY.value, + ], + "tiq": [ + cgmesProfile.DY.value, + ], + "tpfilt": [ + cgmesProfile.DY.value, + ], + "tpost": [ + cgmesProfile.DY.value, + ], + "tqord": [ + cgmesProfile.DY.value, + ], + "tufilt": [ + cgmesProfile.DY.value, + ], + "udb1": [ + cgmesProfile.DY.value, + ], + "udb2": [ + cgmesProfile.DY.value, + ], + "umax": [ + cgmesProfile.DY.value, + ], + "umin": [ + cgmesProfile.DY.value, + ], + "uqdip": [ + cgmesProfile.DY.value, + ], + "uref0": [ + cgmesProfile.DY.value, + ], + "windLVRTQcontrolModesType": [ + cgmesProfile.DY.value, + ], + "windQcontrolModesType": [ + cgmesProfile.DY.value, + ], + "xdroop": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + iqh1=0.0, + iqmax=0.0, + iqmin=0.0, + iqpost=0.0, + kiq=0.0, + kiu=0.0, + kpq=0.0, + kpu=0.0, + kqv=0.0, + qmax=0.0, + qmin=0.0, + rdroop=0.0, + tiq=0, + tpfilt=0, + tpost=0, + tqord=0, + tufilt=0, + udb1=0.0, + udb2=0.0, + umax=0.0, + umin=0.0, + uqdip=0.0, + uref0=0.0, + windLVRTQcontrolModesType=None, + windQcontrolModesType=None, + xdroop=0.0, + WindTurbineType3or4IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.iqh1 = iqh1 + self.iqmax = iqmax + self.iqmin = iqmin + self.iqpost = iqpost + self.kiq = kiq + self.kiu = kiu + self.kpq = kpq + self.kpu = kpu + self.kqv = kqv + self.qmax = qmax + self.qmin = qmin + self.rdroop = rdroop + self.tiq = tiq + self.tpfilt = tpfilt + self.tpost = tpost + self.tqord = tqord + self.tufilt = tufilt + self.udb1 = udb1 + self.udb2 = udb2 + self.umax = umax + self.umin = umin + self.uqdip = uqdip + self.uref0 = uref0 + self.windLVRTQcontrolModesType = windLVRTQcontrolModesType + self.windQcontrolModesType = windQcontrolModesType + self.xdroop = xdroop + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + + def __str__(self): + str = "class=WindContQIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py new file mode 100644 index 00000000..8e02b866 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindContRotorRIEC.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindContRotorRIEC(IdentifiedObject): + """ + Rotor resistance control model. Reference: IEC Standard 61400-27-1 Section 6.6.5.2. + + :kirr: Integral gain in rotor resistance PI controller (). It is type dependent parameter. Default: 0.0 + :komegafilt: Filter gain for generator speed measurement (K). It is type dependent parameter. Default: 0.0 + :kpfilt: Filter gain for power measurement (). It is type dependent parameter. Default: 0.0 + :kprr: Proportional gain in rotor resistance PI controller (). It is type dependent parameter. Default: 0.0 + :rmax: Maximum rotor resistance (). It is type dependent parameter. Default: 0.0 + :rmin: Minimum rotor resistance (). It is type dependent parameter. Default: 0.0 + :tomegafilt: Filter time constant for generator speed measurement (). It is type dependent parameter. Default: 0 + :tpfilt: Filter time constant for power measurement (). It is type dependent parameter. Default: 0 + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this rotor resistance control model. Default: "list" + :WindGenTurbineType2IEC: Wind turbine type 2 model with whitch this wind control rotor resistance model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kirr": [ + cgmesProfile.DY.value, + ], + "komegafilt": [ + cgmesProfile.DY.value, + ], + "kpfilt": [ + cgmesProfile.DY.value, + ], + "kprr": [ + cgmesProfile.DY.value, + ], + "rmax": [ + cgmesProfile.DY.value, + ], + "rmin": [ + cgmesProfile.DY.value, + ], + "tomegafilt": [ + cgmesProfile.DY.value, + ], + "tpfilt": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType2IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + kirr=0.0, + komegafilt=0.0, + kpfilt=0.0, + kprr=0.0, + rmax=0.0, + rmin=0.0, + tomegafilt=0, + tpfilt=0, + WindDynamicsLookupTable="list", + WindGenTurbineType2IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kirr = kirr + self.komegafilt = komegafilt + self.kpfilt = kpfilt + self.kprr = kprr + self.rmax = rmax + self.rmin = rmin + self.tomegafilt = tomegafilt + self.tpfilt = tpfilt + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.WindGenTurbineType2IEC = WindGenTurbineType2IEC + + def __str__(self): + str = "class=WindContRotorRIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py new file mode 100644 index 00000000..a6e1ad32 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindDynamicsLookupTable.py @@ -0,0 +1,86 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindDynamicsLookupTable(IdentifiedObject): + """ + The class models a look up table for the purpose of wind standard models. + + :WindContCurrLimIEC: The wind dynamics lookup table associated with this current control limitation model. Default: None + :WindContPType3IEC: The wind dynamics lookup table associated with this P control type 3 model. Default: None + :WindContRotorRIEC: The rotor resistance control model with which this wind dynamics lookup table is associated. Default: None + :input: Input value (x) for the lookup table function. Default: 0.0 + :lookupTableFunctionType: Type of the lookup table function. Default: None + :output: Output value (y) for the lookup table function. Default: 0.0 + :sequence: Sequence numbers of the pairs of the input (x) and the output (y) of the lookup table function. Default: 0 + :WindPlantFreqPcontrolIEC: The wind dynamics lookup table associated with this frequency and active power wind plant model. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContCurrLimIEC": [ + cgmesProfile.DY.value, + ], + "WindContPType3IEC": [ + cgmesProfile.DY.value, + ], + "WindContRotorRIEC": [ + cgmesProfile.DY.value, + ], + "input": [ + cgmesProfile.DY.value, + ], + "lookupTableFunctionType": [ + cgmesProfile.DY.value, + ], + "output": [ + cgmesProfile.DY.value, + ], + "sequence": [ + cgmesProfile.DY.value, + ], + "WindPlantFreqPcontrolIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindContCurrLimIEC=None, + WindContPType3IEC=None, + WindContRotorRIEC=None, + input=0.0, + lookupTableFunctionType=None, + output=0.0, + sequence=0, + WindPlantFreqPcontrolIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindContCurrLimIEC = WindContCurrLimIEC + self.WindContPType3IEC = WindContPType3IEC + self.WindContRotorRIEC = WindContRotorRIEC + self.input = input + self.lookupTableFunctionType = lookupTableFunctionType + self.output = output + self.sequence = sequence + self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC + + def __str__(self): + str = "class=WindDynamicsLookupTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py new file mode 100644 index 00000000..b31b62f5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType1IEC.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType1IEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC Type 1. Reference: IEC Standard 61400-27-1, section 6.5.2. + + :WindAeroConstIEC: Wind aerodynamic model associated with this wind turbine type 1 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroConstIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__(self, WindAeroConstIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindAeroConstIEC = WindAeroConstIEC + + def __str__(self): + str = "class=WindGenTurbineType1IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py new file mode 100644 index 00000000..01887dc8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType2IEC.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType2IEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC Type 2. Reference: IEC Standard 61400-27-1, section 6.5.3. + + :WindContRotorRIEC: Wind control rotor resistance model associated with wind turbine type 2 model. Default: None + :WindPitchContEmulIEC: Pitch control emulator model associated with this wind turbine type 2 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContRotorRIEC": [ + cgmesProfile.DY.value, + ], + "WindPitchContEmulIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__( + self, WindContRotorRIEC=None, WindPitchContEmulIEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.WindContRotorRIEC = WindContRotorRIEC + self.WindPitchContEmulIEC = WindPitchContEmulIEC + + def __str__(self): + str = "class=WindGenTurbineType2IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py new file mode 100644 index 00000000..d932c109 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3IEC.py @@ -0,0 +1,74 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType3or4IEC import WindTurbineType3or4IEC + + +class WindGenTurbineType3IEC(WindTurbineType3or4IEC): + """ + Generator model for wind turbines of IEC type 3A and 3B. + + :WindAeroLinearIEC: Wind aerodynamic model associated with this wind generator type 3 model. Default: None + :WindContPitchAngleIEC: Wind control pitch angle model associated with this wind turbine type 3. Default: None + :WindContPType3IEC: Wind control P type 3 model associated with this wind turbine type 3 model. Default: None + :dipmax: Maximum active current ramp rate (di). It is project dependent parameter. Default: 0.0 + :diqmax: Maximum reactive current ramp rate (di). It is project dependent parameter. Default: 0.0 + :WindMechIEC: Wind mechanical model associated with this wind turbine Type 3 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroLinearIEC": [ + cgmesProfile.DY.value, + ], + "WindContPitchAngleIEC": [ + cgmesProfile.DY.value, + ], + "WindContPType3IEC": [ + cgmesProfile.DY.value, + ], + "dipmax": [ + cgmesProfile.DY.value, + ], + "diqmax": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4IEC: \n" + + WindTurbineType3or4IEC.__doc__ + ) + + def __init__( + self, + WindAeroLinearIEC=None, + WindContPitchAngleIEC=None, + WindContPType3IEC=None, + dipmax=0.0, + diqmax=0.0, + WindMechIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindAeroLinearIEC = WindAeroLinearIEC + self.WindContPitchAngleIEC = WindContPitchAngleIEC + self.WindContPType3IEC = WindContPType3IEC + self.dipmax = dipmax + self.diqmax = diqmax + self.WindMechIEC = WindMechIEC + + def __str__(self): + str = "class=WindGenTurbineType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py new file mode 100644 index 00000000..c6682c54 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3aIEC.py @@ -0,0 +1,49 @@ +from cimpy.cgmes_v2_4_15.WindGenTurbineType3IEC import WindGenTurbineType3IEC + + +class WindGenTurbineType3aIEC(WindGenTurbineType3IEC): + """ + IEC Type 3A generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.2. + + :kpc: Current PI controller proportional gain (K). It is type dependent parameter. Default: 0.0 + :xs: Electromagnetic transient reactance (x). It is type dependent parameter. Default: 0.0 + :tic: Current PI controller integration time constant (T). It is type dependent parameter. Default: 0 + """ + + cgmesProfile = WindGenTurbineType3IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + "tic": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenTurbineType3IEC: \n" + + WindGenTurbineType3IEC.__doc__ + ) + + def __init__(self, kpc=0.0, xs=0.0, tic=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.kpc = kpc + self.xs = xs + self.tic = tic + + def __str__(self): + str = "class=WindGenTurbineType3aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py new file mode 100644 index 00000000..e761013e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenTurbineType3bIEC.py @@ -0,0 +1,59 @@ +from cimpy.cgmes_v2_4_15.WindGenTurbineType3IEC import WindGenTurbineType3IEC + + +class WindGenTurbineType3bIEC(WindGenTurbineType3IEC): + """ + IEC Type 3B generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.3. + + :fducw: Crowbar duration versus voltage variation look-up table (f()). It is case dependent parameter. Default: 0.0 + :tg: Current generation Time constant (). It is type dependent parameter. Default: 0 + :two: Time constant for crowbar washout filter (). It is case dependent parameter. Default: 0 + :mwtcwp: Crowbar control mode (). The parameter is case dependent parameter. Default: False + :xs: Electromagnetic transient reactance (x). It is type dependent parameter. Default: 0.0 + """ + + cgmesProfile = WindGenTurbineType3IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "fducw": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "two": [ + cgmesProfile.DY.value, + ], + "mwtcwp": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenTurbineType3IEC: \n" + + WindGenTurbineType3IEC.__doc__ + ) + + def __init__(self, fducw=0.0, tg=0, two=0, mwtcwp=False, xs=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.fducw = fducw + self.tg = tg + self.two = two + self.mwtcwp = mwtcwp + self.xs = xs + + def __str__(self): + str = "class=WindGenTurbineType3bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenType4IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenType4IEC.py new file mode 100644 index 00000000..8e0503bb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenType4IEC.py @@ -0,0 +1,54 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType3or4IEC import WindTurbineType3or4IEC + + +class WindGenType4IEC(WindTurbineType3or4IEC): + """ + IEC Type 4 generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.4. + + :dipmax: Maximum active current ramp rate (di). It is project dependent parameter. Default: 0.0 + :diqmin: Minimum reactive current ramp rate (d). It is case dependent parameter. Default: 0.0 + :diqmax: Maximum reactive current ramp rate (di). It is project dependent parameter. Default: 0.0 + :tg: Time constant (T). It is type dependent parameter. Default: 0 + """ + + cgmesProfile = WindTurbineType3or4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dipmax": [ + cgmesProfile.DY.value, + ], + "diqmin": [ + cgmesProfile.DY.value, + ], + "diqmax": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4IEC: \n" + + WindTurbineType3or4IEC.__doc__ + ) + + def __init__(self, dipmax=0.0, diqmin=0.0, diqmax=0.0, tg=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.dipmax = dipmax + self.diqmin = diqmin + self.diqmax = diqmax + self.tg = tg + + def __str__(self): + str = "class=WindGenType4IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGenUnitKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenUnitKind.py new file mode 100644 index 00000000..816853b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGenUnitKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class WindGenUnitKind(Base): + """ + Kind of wind generating unit. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindGenUnitKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py new file mode 100644 index 00000000..14da7070 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindGeneratingUnit.py @@ -0,0 +1,39 @@ +from cimpy.cgmes_v2_4_15.GeneratingUnit import GeneratingUnit + + +class WindGeneratingUnit(GeneratingUnit): + """ + A wind driven generating unit. May be used to represent a single turbine or an aggregation. + + :windGenUnitType: The kind of wind generating unit Default: None + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SSH.value, + ], + "windGenUnitType": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, windGenUnitType=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.windGenUnitType = windGenUnitType + + def __str__(self): + str = "class=WindGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py new file mode 100644 index 00000000..004b373e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindLVRTQcontrolModesKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class WindLVRTQcontrolModesKind(Base): + """ + LVRT Q control modes . + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindLVRTQcontrolModesKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py new file mode 100644 index 00000000..a665a46c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindLookupTableFunctionKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class WindLookupTableFunctionKind(Base): + """ + Function of the lookup table. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindLookupTableFunctionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindMechIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindMechIEC.py new file mode 100644 index 00000000..0eb58f02 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindMechIEC.py @@ -0,0 +1,80 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindMechIEC(IdentifiedObject): + """ + Two mass model. Reference: IEC Standard 61400-27-1 Section 6.6.2.1. + + :WindGenTurbineType3IEC: Wind turbine Type 3 model with which this wind mechanical model is associated. Default: None + :cdrt: Drive train damping (. It is type dependent parameter. Default: 0.0 + :hgen: Inertia constant of generator (). It is type dependent parameter. Default: 0 + :hwtr: Inertia constant of wind turbine rotor (). It is type dependent parameter. Default: 0 + :kdrt: Drive train stiffness (). It is type dependent parameter. Default: 0.0 + :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind mechanical model is associated. Default: None + :WindTurbineType1or2IEC: Wind generator type 1 or 2 model with which this wind mechanical model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + "cdrt": [ + cgmesProfile.DY.value, + ], + "hgen": [ + cgmesProfile.DY.value, + ], + "hwtr": [ + cgmesProfile.DY.value, + ], + "kdrt": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4bIEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindGenTurbineType3IEC=None, + cdrt=0.0, + hgen=0, + hwtr=0, + kdrt=0.0, + WindTurbineType4bIEC=None, + WindTurbineType1or2IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindGenTurbineType3IEC = WindGenTurbineType3IEC + self.cdrt = cdrt + self.hgen = hgen + self.hwtr = hwtr + self.kdrt = kdrt + self.WindTurbineType4bIEC = WindTurbineType4bIEC + self.WindTurbineType1or2IEC = WindTurbineType1or2IEC + + def __str__(self): + str = "class=WindMechIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py new file mode 100644 index 00000000..c0199632 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPitchContEmulIEC.py @@ -0,0 +1,104 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindPitchContEmulIEC(IdentifiedObject): + """ + Pitch control emulator model. Reference: IEC Standard 61400-27-1 Section 6.6.5.1. + + :WindGenTurbineType2IEC: Wind turbine type 2 model with which this Pitch control emulator model is associated. Default: None + :kdroop: Power error gain (). It is case dependent parameter. Default: 0.0 + :kipce: Pitch control emulator integral constant (). It is type dependent parameter. Default: 0.0 + :komegaaero: Aerodynamic power change vs. omegachange (). It is case dependent parameter. Default: 0.0 + :kppce: Pitch control emulator proportional constant (). It is type dependent parameter. Default: 0.0 + :omegaref: Rotor speed in initial steady state (omega). It is case dependent parameter. Default: 0.0 + :pimax: Maximum steady state power (). It is case dependent parameter. Default: 0.0 + :pimin: Minimum steady state power (). It is case dependent parameter. Default: 0.0 + :t1: First time constant in pitch control lag (). It is type dependent parameter. Default: 0 + :t2: Second time constant in pitch control lag (). It is type dependent parameter. Default: 0 + :tpe: Time constant in generator air gap power lag (). It is type dependent parameter. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType2IEC": [ + cgmesProfile.DY.value, + ], + "kdroop": [ + cgmesProfile.DY.value, + ], + "kipce": [ + cgmesProfile.DY.value, + ], + "komegaaero": [ + cgmesProfile.DY.value, + ], + "kppce": [ + cgmesProfile.DY.value, + ], + "omegaref": [ + cgmesProfile.DY.value, + ], + "pimax": [ + cgmesProfile.DY.value, + ], + "pimin": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindGenTurbineType2IEC=None, + kdroop=0.0, + kipce=0.0, + komegaaero=0.0, + kppce=0.0, + omegaref=0.0, + pimax=0.0, + pimin=0.0, + t1=0, + t2=0, + tpe=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindGenTurbineType2IEC = WindGenTurbineType2IEC + self.kdroop = kdroop + self.kipce = kipce + self.komegaaero = komegaaero + self.kppce = kppce + self.omegaref = omegaref + self.pimax = pimax + self.pimin = pimin + self.t1 = t1 + self.t2 = t2 + self.tpe = tpe + + def __str__(self): + str = "class=WindPitchContEmulIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantDynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantDynamics.py new file mode 100644 index 00000000..f19275c7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantDynamics.py @@ -0,0 +1,50 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindPlantDynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines Type 3 and 4 and wind plant IEC and user defined wind plants including their control models. + + :RemoteInputSignal: The wind plant using the remote signal. Default: None + :WindTurbineType3or4Dynamics: The wind turbine type 3 or 4 associated with this wind plant. Default: "list" + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + RemoteInputSignal=None, + WindTurbineType3or4Dynamics="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + + def __str__(self): + str = "class=WindPlantDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py new file mode 100644 index 00000000..825e285c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantFreqPcontrolIEC.py @@ -0,0 +1,110 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindPlantFreqPcontrolIEC(IdentifiedObject): + """ + Frequency and active power controller model. Reference: IEC Standard 61400-27-1 Annex E. + + :WindDynamicsLookupTable: The frequency and active power wind plant control model with which this wind dynamics lookup table is associated. Default: "list" + :dprefmax: Maximum ramp rate of request from the plant controller to the wind turbines (). It is project dependent parameter. Default: 0.0 + :dprefmin: Minimum (negative) ramp rate of request from the plant controller to the wind turbines (). It is project dependent parameter. Default: 0.0 + :kiwpp: Plant P controller integral gain (). It is type dependent parameter. Default: 0.0 + :kpwpp: Plant P controller proportional gain (). It is type dependent parameter. Default: 0.0 + :prefmax: Maximum request from the plant controller to the wind turbines (). It is type dependent parameter. Default: 0.0 + :prefmin: Minimum request from the plant controller to the wind turbines (). It is type dependent parameter. Default: 0.0 + :tpft: Lead time constant in reference value transfer function (). It is type dependent parameter. Default: 0 + :tpfv: Lag time constant in reference value transfer function (). It is type dependent parameter. Default: 0 + :twpffilt: Filter time constant for frequency measurement (). It is type dependent parameter. Default: 0 + :twppfilt: Filter time constant for active power measurement (). It is type dependent parameter. Default: 0 + :WindPlantIEC: Wind plant model with which this wind plant frequency and active power control is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "dprefmax": [ + cgmesProfile.DY.value, + ], + "dprefmin": [ + cgmesProfile.DY.value, + ], + "kiwpp": [ + cgmesProfile.DY.value, + ], + "kpwpp": [ + cgmesProfile.DY.value, + ], + "prefmax": [ + cgmesProfile.DY.value, + ], + "prefmin": [ + cgmesProfile.DY.value, + ], + "tpft": [ + cgmesProfile.DY.value, + ], + "tpfv": [ + cgmesProfile.DY.value, + ], + "twpffilt": [ + cgmesProfile.DY.value, + ], + "twppfilt": [ + cgmesProfile.DY.value, + ], + "WindPlantIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + dprefmax=0.0, + dprefmin=0.0, + kiwpp=0.0, + kpwpp=0.0, + prefmax=0.0, + prefmin=0.0, + tpft=0, + tpfv=0, + twpffilt=0, + twppfilt=0, + WindPlantIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.dprefmax = dprefmax + self.dprefmin = dprefmin + self.kiwpp = kiwpp + self.kpwpp = kpwpp + self.prefmax = prefmax + self.prefmin = prefmin + self.tpft = tpft + self.tpfv = tpfv + self.twpffilt = twpffilt + self.twppfilt = twppfilt + self.WindPlantIEC = WindPlantIEC + + def __str__(self): + str = "class=WindPlantFreqPcontrolIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantIEC.py new file mode 100644 index 00000000..1361363e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantIEC.py @@ -0,0 +1,50 @@ +from cimpy.cgmes_v2_4_15.WindPlantDynamics import WindPlantDynamics + + +class WindPlantIEC(WindPlantDynamics): + """ + Simplified IEC type plant level model. Reference: IEC 61400-27-1, AnnexE. + + :WindPlantFreqPcontrolIEC: Wind plant frequency and active power control model associated with this wind plant. Default: None + :WindPlantReactiveControlIEC: Wind plant reactive control model associated with this wind plant. Default: None + """ + + cgmesProfile = WindPlantDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindPlantFreqPcontrolIEC": [ + cgmesProfile.DY.value, + ], + "WindPlantReactiveControlIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindPlantDynamics: \n" + + WindPlantDynamics.__doc__ + ) + + def __init__( + self, + WindPlantFreqPcontrolIEC=None, + WindPlantReactiveControlIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC + self.WindPlantReactiveControlIEC = WindPlantReactiveControlIEC + + def __str__(self): + str = "class=WindPlantIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py new file mode 100644 index 00000000..daf62a86 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantReactiveControlIEC.py @@ -0,0 +1,122 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindPlantReactiveControlIEC(IdentifiedObject): + """ + Simplified plant voltage and reactive power control model for use with type 3 and type 4 wind turbine models. Reference: IEC Standard 61400-27-1 Annex E. + + :WindPlantIEC: Wind plant model with which this wind reactive control is associated. Default: None + :kiwpx: Plant Q controller integral gain (). It is type dependent parameter. Default: 0.0 + :kpwpx: Plant Q controller proportional gain (). It is type dependent parameter. Default: 0.0 + :kwpqu: Plant voltage control droop (). It is project dependent parameter. Default: 0.0 + :mwppf: Power factor control modes selector (). Used only if mwpu is set to false. true = 1: power factor control false = 0: reactive power control. It is project dependent parameter. Default: False + :mwpu: Reactive power control modes selector (). true = 1: voltage control false = 0: reactive power control. It is project dependent parameter. Default: False + :twppfilt: Filter time constant for active power measurement (). It is type dependent parameter. Default: 0 + :twpqfilt: Filter time constant for reactive power measurement (). It is type dependent parameter. Default: 0 + :twpufilt: Filter time constant for voltage measurement (). It is type dependent parameter. Default: 0 + :txft: Lead time constant in reference value transfer function (). It is type dependent parameter. Default: 0 + :txfv: Lag time constant in reference value transfer function (). It is type dependent parameter. Default: 0 + :uwpqdip: Voltage threshold for LVRT detection in q control (). It is type dependent parameter. Default: 0.0 + :xrefmax: Maximum ( or delta ) request from the plant controller (). It is project dependent parameter. Default: 0.0 + :xrefmin: Minimum ( or delta) request from the plant controller (). It is project dependent parameter. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindPlantIEC": [ + cgmesProfile.DY.value, + ], + "kiwpx": [ + cgmesProfile.DY.value, + ], + "kpwpx": [ + cgmesProfile.DY.value, + ], + "kwpqu": [ + cgmesProfile.DY.value, + ], + "mwppf": [ + cgmesProfile.DY.value, + ], + "mwpu": [ + cgmesProfile.DY.value, + ], + "twppfilt": [ + cgmesProfile.DY.value, + ], + "twpqfilt": [ + cgmesProfile.DY.value, + ], + "twpufilt": [ + cgmesProfile.DY.value, + ], + "txft": [ + cgmesProfile.DY.value, + ], + "txfv": [ + cgmesProfile.DY.value, + ], + "uwpqdip": [ + cgmesProfile.DY.value, + ], + "xrefmax": [ + cgmesProfile.DY.value, + ], + "xrefmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindPlantIEC=None, + kiwpx=0.0, + kpwpx=0.0, + kwpqu=0.0, + mwppf=False, + mwpu=False, + twppfilt=0, + twpqfilt=0, + twpufilt=0, + txft=0, + txfv=0, + uwpqdip=0.0, + xrefmax=0.0, + xrefmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindPlantIEC = WindPlantIEC + self.kiwpx = kiwpx + self.kpwpx = kpwpx + self.kwpqu = kwpqu + self.mwppf = mwppf + self.mwpu = mwpu + self.twppfilt = twppfilt + self.twpqfilt = twpqfilt + self.twpufilt = twpufilt + self.txft = txft + self.txfv = txfv + self.uwpqdip = uwpqdip + self.xrefmax = xrefmax + self.xrefmin = xrefmin + + def __str__(self): + str = "class=WindPlantReactiveControlIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py new file mode 100644 index 00000000..622eb338 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindPlantUserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.WindPlantDynamics import WindPlantDynamics + + +class WindPlantUserDefined(WindPlantDynamics): + """ + Wind plant function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindPlantDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindPlantDynamics: \n" + + WindPlantDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindPlantUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindProtectionIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindProtectionIEC.py new file mode 100644 index 00000000..cf84d086 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindProtectionIEC.py @@ -0,0 +1,98 @@ +from cimpy.cgmes_v2_4_15.IdentifiedObject import IdentifiedObject + + +class WindProtectionIEC(IdentifiedObject): + """ + The grid protection model includes protection against over and under voltage, and against over and under frequency. Reference: IEC Standard 614000-27-1 Section 6.6.6. + + :fover: Set of wind turbine over frequency protection levels (). It is project dependent parameter. Default: 0.0 + :funder: Set of wind turbine under frequency protection levels (). It is project dependent parameter. Default: 0.0 + :tfover: Set of corresponding wind turbine over frequency protection disconnection times (). It is project dependent parameter. Default: 0 + :tfunder: Set of corresponding wind turbine under frequency protection disconnection times (). It is project dependent parameter. Default: 0 + :tuover: Set of corresponding wind turbine over voltage protection disconnection times (). It is project dependent parameter. Default: 0 + :tuunder: Set of corresponding wind turbine under voltage protection disconnection times (). It is project dependent parameter. Default: 0 + :uover: Set of wind turbine over voltage protection levels (). It is project dependent parameter. Default: 0.0 + :uunder: Set of wind turbine under voltage protection levels (). It is project dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind generator type 3 or 4 model with which this wind turbine protection model is associated. Default: None + :WindTurbineType1or2IEC: Wind generator type 1 or 2 model with which this wind turbine protection model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "fover": [ + cgmesProfile.DY.value, + ], + "funder": [ + cgmesProfile.DY.value, + ], + "tfover": [ + cgmesProfile.DY.value, + ], + "tfunder": [ + cgmesProfile.DY.value, + ], + "tuover": [ + cgmesProfile.DY.value, + ], + "tuunder": [ + cgmesProfile.DY.value, + ], + "uover": [ + cgmesProfile.DY.value, + ], + "uunder": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + fover=0.0, + funder=0.0, + tfover=0, + tfunder=0, + tuover=0, + tuunder=0, + uover=0.0, + uunder=0.0, + WindTurbineType3or4IEC=None, + WindTurbineType1or2IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.fover = fover + self.funder = funder + self.tfover = tfover + self.tfunder = tfunder + self.tuover = tuover + self.tuunder = tuunder + self.uover = uover + self.uunder = uunder + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + self.WindTurbineType1or2IEC = WindTurbineType1or2IEC + + def __str__(self): + str = "class=WindProtectionIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py new file mode 100644 index 00000000..32d6f122 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindQcontrolModesKind.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class WindQcontrolModesKind(Base): + """ + General wind turbine Q control modes . + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindQcontrolModesKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py new file mode 100644 index 00000000..d89bec38 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2Dynamics.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindTurbineType1or2Dynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines Type 1 and 2 and their control models. + + :RemoteInputSignal: Remote input signal used by this wind generator Type 1 or Type 2 model. Default: None + :AsynchronousMachineDynamics: Asynchronous machine model with which this wind generator type 1 or 2 model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, AsynchronousMachineDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + + def __str__(self): + str = "class=WindTurbineType1or2Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py new file mode 100644 index 00000000..e5540c24 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType1or2IEC.py @@ -0,0 +1,44 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics + + +class WindTurbineType1or2IEC(WindTurbineType1or2Dynamics): + """ + Generator model for wind turbine of IEC Type 1 or Type 2 is a standard asynchronous generator model. Reference: IEC Standard 614000-27-1 Section 6.6.3.1. + + :WindMechIEC: Wind mechanical model associated with this wind generator type 1 or 2 model. Default: None + :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 1 or 2 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + "WindProtectionIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2Dynamics: \n" + + WindTurbineType1or2Dynamics.__doc__ + ) + + def __init__(self, WindMechIEC=None, WindProtectionIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindMechIEC = WindMechIEC + self.WindProtectionIEC = WindProtectionIEC + + def __str__(self): + str = "class=WindTurbineType1or2IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py new file mode 100644 index 00000000..2f36ce86 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4Dynamics.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindTurbineType3or4Dynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines Type 3 and 4 and wind plant including their control models. + + :EnergySource: Energy Source (current source) with which this wind Type 3 or 4 dynamics model is asoociated. Default: None + :RemoteInputSignal: Wind turbine Type 3 or 4 models using this remote input signal. Default: None + :WindPlantDynamics: The wind plant with which the wind turbines type 3 or 4 are associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "EnergySource": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "WindPlantDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + EnergySource=None, + RemoteInputSignal=None, + WindPlantDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.EnergySource = EnergySource + self.RemoteInputSignal = RemoteInputSignal + self.WindPlantDynamics = WindPlantDynamics + + def __str__(self): + str = "class=WindTurbineType3or4Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py new file mode 100644 index 00000000..45ceec4a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType3or4IEC.py @@ -0,0 +1,56 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics + + +class WindTurbineType3or4IEC(WindTurbineType3or4Dynamics): + """ + Parent class supporting relationships to IEC wind turbines Type 3 and 4 and wind plant including their control models. + + :WindContCurrLimIEC: Wind control current limitation model associated with this wind turbine type 3 or 4 model. Default: None + :WIndContQIEC: Wind control Q model associated with this wind turbine type 3 or 4 model. Default: None + :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 3 or 4 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContCurrLimIEC": [ + cgmesProfile.DY.value, + ], + "WIndContQIEC": [ + cgmesProfile.DY.value, + ], + "WindProtectionIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4Dynamics: \n" + + WindTurbineType3or4Dynamics.__doc__ + ) + + def __init__( + self, + WindContCurrLimIEC=None, + WIndContQIEC=None, + WindProtectionIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindContCurrLimIEC = WindContCurrLimIEC + self.WIndContQIEC = WIndContQIEC + self.WindProtectionIEC = WindProtectionIEC + + def __str__(self): + str = "class=WindTurbineType3or4IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py new file mode 100644 index 00000000..d94f8648 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4aIEC.py @@ -0,0 +1,38 @@ +from cimpy.cgmes_v2_4_15.WindGenType4IEC import WindGenType4IEC + + +class WindTurbineType4aIEC(WindGenType4IEC): + """ + Wind turbine IEC Type 4A. Reference: IEC Standard 61400-27-1, section 6.5.5.2. + + :WindContPType4aIEC: Wind control P type 4A model associated with this wind turbine type 4A model. Default: None + """ + + cgmesProfile = WindGenType4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContPType4aIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenType4IEC: \n" + WindGenType4IEC.__doc__ + ) + + def __init__(self, WindContPType4aIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindContPType4aIEC = WindContPType4aIEC + + def __str__(self): + str = "class=WindTurbineType4aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py new file mode 100644 index 00000000..48d7da87 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindTurbineType4bIEC.py @@ -0,0 +1,43 @@ +from cimpy.cgmes_v2_4_15.WindGenType4IEC import WindGenType4IEC + + +class WindTurbineType4bIEC(WindGenType4IEC): + """ + Wind turbine IEC Type 4A. Reference: IEC Standard 61400-27-1, section 6.5.5.3. + + :WindContPType4bIEC: Wind control P type 4B model associated with this wind turbine type 4B model. Default: None + :WindMechIEC: Wind mechanical model associated with this wind turbine Type 4B model. Default: None + """ + + cgmesProfile = WindGenType4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContPType4bIEC": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenType4IEC: \n" + WindGenType4IEC.__doc__ + ) + + def __init__(self, WindContPType4bIEC=None, WindMechIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindContPType4bIEC = WindContPType4bIEC + self.WindMechIEC = WindMechIEC + + def __str__(self): + str = "class=WindTurbineType4bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py new file mode 100644 index 00000000..67aeb387 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindType1or2UserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics + + +class WindType1or2UserDefined(WindTurbineType1or2Dynamics): + """ + Wind Type 1 or Type 2 function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2Dynamics: \n" + + WindTurbineType1or2Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindType1or2UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py new file mode 100644 index 00000000..ffaa74b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindType3or4UserDefined.py @@ -0,0 +1,46 @@ +from cimpy.cgmes_v2_4_15.WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics + + +class WindType3or4UserDefined(WindTurbineType3or4Dynamics): + """ + Wind Type 3 or Type 4 function block whose dynamic behaviour is described by + + :proprietary: Behaviour is based on proprietary model as opposed to detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4Dynamics: \n" + + WindTurbineType3or4Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindType3or4UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v2_4_15/WindingConnection.py b/cimpy_3/cimpy/cgmes_v2_4_15/WindingConnection.py new file mode 100644 index 00000000..01c1688b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v2_4_15/WindingConnection.py @@ -0,0 +1,31 @@ +from cimpy.cgmes_v2_4_15.Base import Base + + +class WindingConnection(Base): + """ + Winding connection type. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindingConnection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/examples/__init__.py b/cimpy_3/cimpy/cgmes_v2_4_15/__init__.py similarity index 100% rename from cimpy/examples/__init__.py rename to cimpy_3/cimpy/cgmes_v2_4_15/__init__.py diff --git a/cimpy_3/cimpy/cgmes_v3_0/ACDCConverter.py b/cimpy_3/cimpy/cgmes_v3_0/ACDCConverter.py new file mode 100644 index 00000000..5100aecf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ACDCConverter.py @@ -0,0 +1,167 @@ +from .ConductingEquipment import ConductingEquipment + + +class ACDCConverter(ConductingEquipment): + """ + A unit with valves for three phases, together with unit control equipment, essential protective and switching devices, DC storage capacitors, phase reactors and auxiliaries, if any, used for conversion. + + :p: Active power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 + :q: Reactive power at the point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution in the case a simplified power flow model is used. Default: 0.0 + :targetPpcc: Real power injection target in AC grid, at point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :targetUdc: Target value for DC voltage magnitude. The attribute shall be a positive value. Default: 0.0 + :baseS: Base apparent power of the converter pole. The attribute shall be a positive value. Default: 0.0 + :idleLoss: Active power loss in pole at no power transfer. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :maxUdc: The maximum voltage on the DC side at which the converter should operate. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :minUdc: The minimum voltage on the DC side at which the converter should operate. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :numberOfValves: Number of valves in the converter. Used in loss calculations. Default: 0 + :ratedUdc: Rated converter DC voltage, also called UdN. The attribute shall be a positive value. It is converter`s configuration data used in power flow. For instance a bipolar HVDC link with value 200 kV has a 400kV difference between the dc lines. Default: 0.0 + :resistiveLoss: It is converter`s configuration data used in power flow. Refer to poleLossP. The attribute shall be a positive value. Default: 0.0 + :switchingLoss: Switching losses, relative to the base apparent power `baseS`. Refer to poleLossP. The attribute shall be a positive value. Default: 0.0 + :valveU0: Valve threshold voltage, also called Uvalve. Forward voltage drop when the valve is conducting. Used in loss calculations, i.e. the switchLoss depend on numberOfValves * valveU0. Default: 0.0 + :maxP: Maximum active power limit. The value is overwritten by values of VsCapabilityCurve, if present. Default: 0.0 + :minP: Minimum active power limit. The value is overwritten by values of VsCapabilityCurve, if present. Default: 0.0 + :PccTerminal: Point of common coupling terminal for this converter DC side. It is typically the terminal on the power transformer (or switch) closest to the AC network. Default: None + :DCTerminals: A DC converter have DC converter terminals. A converter has two DC converter terminals. Default: "list" + :idc: Converter DC current, also called Id. It is converter`s state variable, result from power flow. Default: 0.0 + :poleLossP: The active power loss at a DC Pole = idleLoss + switchingLoss*|Idc| + resitiveLoss*Idc^2. For lossless operation Pdc=Pac. For rectifier operation with losses Pdc=Pac-lossP. For inverter operation with losses Pdc=Pac+lossP. It is converter`s state variable used in power flow. The attribute shall be a positive value. Default: 0.0 + :uc: Line-to-line converter voltage, the voltage at the AC side of the valve. It is converter`s state variable, result from power flow. The attribute shall be a positive value. Default: 0.0 + :udc: Converter voltage at the DC side, also called Ud. It is converter`s state variable, result from power flow. The attribute shall be a positive value. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "targetPpcc": [ + cgmesProfile.SSH.value, + ], + "targetUdc": [ + cgmesProfile.SSH.value, + ], + "baseS": [ + cgmesProfile.EQ.value, + ], + "idleLoss": [ + cgmesProfile.EQ.value, + ], + "maxUdc": [ + cgmesProfile.EQ.value, + ], + "minUdc": [ + cgmesProfile.EQ.value, + ], + "numberOfValves": [ + cgmesProfile.EQ.value, + ], + "ratedUdc": [ + cgmesProfile.EQ.value, + ], + "resistiveLoss": [ + cgmesProfile.EQ.value, + ], + "switchingLoss": [ + cgmesProfile.EQ.value, + ], + "valveU0": [ + cgmesProfile.EQ.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + "PccTerminal": [ + cgmesProfile.EQ.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + "idc": [ + cgmesProfile.SV.value, + ], + "poleLossP": [ + cgmesProfile.SV.value, + ], + "uc": [ + cgmesProfile.SV.value, + ], + "udc": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + p=0.0, + q=0.0, + targetPpcc=0.0, + targetUdc=0.0, + baseS=0.0, + idleLoss=0.0, + maxUdc=0.0, + minUdc=0.0, + numberOfValves=0, + ratedUdc=0.0, + resistiveLoss=0.0, + switchingLoss=0.0, + valveU0=0.0, + maxP=0.0, + minP=0.0, + PccTerminal=None, + DCTerminals="list", + idc=0.0, + poleLossP=0.0, + uc=0.0, + udc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.p = p + self.q = q + self.targetPpcc = targetPpcc + self.targetUdc = targetUdc + self.baseS = baseS + self.idleLoss = idleLoss + self.maxUdc = maxUdc + self.minUdc = minUdc + self.numberOfValves = numberOfValves + self.ratedUdc = ratedUdc + self.resistiveLoss = resistiveLoss + self.switchingLoss = switchingLoss + self.valveU0 = valveU0 + self.maxP = maxP + self.minP = minP + self.PccTerminal = PccTerminal + self.DCTerminals = DCTerminals + self.idc = idc + self.poleLossP = poleLossP + self.uc = uc + self.udc = udc + + def __str__(self): + str = "class=ACDCConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ACDCConverterDCTerminal.py b/cimpy_3/cimpy/cgmes_v3_0/ACDCConverterDCTerminal.py new file mode 100644 index 00000000..ea54ef75 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ACDCConverterDCTerminal.py @@ -0,0 +1,45 @@ +from .DCBaseTerminal import DCBaseTerminal + + +class ACDCConverterDCTerminal(DCBaseTerminal): + """ + A DC electrical connection point at the AC/DC converter. The AC/DC converter is electrically connected also to the AC side. The AC connection is inherited from the AC conducting equipment in the same way as any other AC equipment. The AC/DC converter DC terminal is separate from generic DC terminal to restrict the connection with the AC side to AC/DC converter and so that no other DC conducting equipment can be connected to the AC side. + + :DCConductingEquipment: A DC converter terminal belong to an DC converter. Default: None + :polarity: Represents the normal network polarity condition. Depending on the converter configuration the value shall be set as follows: - For a monopole with two converter terminals use DCPolarityKind `positive` and `negative`. - For a bi-pole or symmetric monopole with three converter terminals use DCPolarityKind `positive`, `middle` and `negative`. Default: None + """ + + cgmesProfile = DCBaseTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "DCConductingEquipment": [ + cgmesProfile.EQ.value, + ], + "polarity": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCBaseTerminal: \n" + DCBaseTerminal.__doc__ + ) + + def __init__(self, DCConductingEquipment=None, polarity=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCConductingEquipment = DCConductingEquipment + self.polarity = polarity + + def __str__(self): + str = "class=ACDCConverterDCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ACDCTerminal.py b/cimpy_3/cimpy/cgmes_v3_0/ACDCTerminal.py new file mode 100644 index 00000000..6fc30760 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ACDCTerminal.py @@ -0,0 +1,75 @@ +from .IdentifiedObject import IdentifiedObject + + +class ACDCTerminal(IdentifiedObject): + """ + An electrical connection point (AC or DC) to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. + + :connected: The connected status is related to a bus-branch model and the topological node to terminal relation. True implies the terminal is connected to the related topological node and false implies it is not. In a bus-branch model, the connected status is used to tell if equipment is disconnected without having to change the connectivity described by the topological node to terminal relation. A valid case is that conducting equipment can be connected in one end and open in the other. In particular for an AC line segment, where the reactive line charging can be significant, this is a relevant case. Default: False + :Measurements: Measurements associated with this terminal defining where the measurement is placed in the network topology. It may be used, for instance, to capture the sensor position, such as a voltage transformer (PT) at a busbar or a current transformer (CT) at the bar between a breaker and an isolator. Default: "list" + :sequenceNumber: The orientation of the terminal connections for a multiple terminal conducting equipment. The sequence numbering starts with 1 and additional terminals should follow in increasing order. The first terminal is the `starting point` for a two terminal branch. Default: 0 + :OperationalLimitSet: The operational limit sets at the terminal. Default: "list" + :BusNameMarker: The bus name marker used to name the bus (topological node). Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "connected": [ + cgmesProfile.SSH.value, + ], + "Measurements": [ + cgmesProfile.OP.value, + ], + "sequenceNumber": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitSet": [ + cgmesProfile.EQ.value, + ], + "BusNameMarker": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + connected=False, + Measurements="list", + sequenceNumber=0, + OperationalLimitSet="list", + BusNameMarker=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.connected = connected + self.Measurements = Measurements + self.sequenceNumber = sequenceNumber + self.OperationalLimitSet = OperationalLimitSet + self.BusNameMarker = BusNameMarker + + def __str__(self): + str = "class=ACDCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ACLineSegment.py b/cimpy_3/cimpy/cgmes_v3_0/ACLineSegment.py new file mode 100644 index 00000000..5dcda910 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ACLineSegment.py @@ -0,0 +1,102 @@ +from .Conductor import Conductor + + +class ACLineSegment(Conductor): + """ + A wire or combination of wires, with consistent electrical characteristics, building a single electrical system, used to carry alternating current between points in the power system. For symmetrical, transposed three phase lines, it is sufficient to use attributes of the line segment, which describe impedances and admittances for the entire length of the segment. Additionally impedances can be computed by using length and associated per length impedances. The BaseVoltage at the two ends of ACLineSegments in a Line shall have the same BaseVoltage.nominalVoltage. However, boundary lines may have slightly different BaseVoltage.nominalVoltages and variation is allowed. Larger voltage difference in general requires use of an equivalent branch. + + :bch: Positive sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. This value represents the full charging over the full length of the line. Default: 0.0 + :gch: Positive sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r: Positive sequence series resistance of the entire line section. Default: 0.0 + :x: Positive sequence series reactance of the entire line section. Default: 0.0 + :Clamp: The clamps connected to the line segment. Default: "list" + :Cut: Cuts applied to the line segment. Default: "list" + :b0ch: Zero sequence shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 + :g0ch: Zero sequence shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r0: Zero sequence series resistance of the entire line section. Default: 0.0 + :shortCircuitEndTemperature: Maximum permitted temperature at the end of SC for the calculation of minimum short-circuit currents. Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :x0: Zero sequence series reactance of the entire line section. Default: 0.0 + """ + + cgmesProfile = Conductor.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "bch": [ + cgmesProfile.EQ.value, + ], + "gch": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "Clamp": [ + cgmesProfile.EQ.value, + ], + "Cut": [ + cgmesProfile.EQ.value, + ], + "b0ch": [ + cgmesProfile.SC.value, + ], + "g0ch": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "shortCircuitEndTemperature": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Conductor: \n" + Conductor.__doc__ + + def __init__( + self, + bch=0.0, + gch=0.0, + r=0.0, + x=0.0, + Clamp="list", + Cut="list", + b0ch=0.0, + g0ch=0.0, + r0=0.0, + shortCircuitEndTemperature=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bch = bch + self.gch = gch + self.r = r + self.x = x + self.Clamp = Clamp + self.Cut = Cut + self.b0ch = b0ch + self.g0ch = g0ch + self.r0 = r0 + self.shortCircuitEndTemperature = shortCircuitEndTemperature + self.x0 = x0 + + def __str__(self): + str = "class=ACLineSegment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Accumulator.py b/cimpy_3/cimpy/cgmes_v3_0/Accumulator.py new file mode 100644 index 00000000..7e7945ed --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Accumulator.py @@ -0,0 +1,41 @@ +from .Measurement import Measurement + + +class Accumulator(Measurement): + """ + Accumulator represents an accumulated (counted) Measurement, e.g. an energy value. + + :AccumulatorValues: The values connected to this measurement. Default: "list" + :LimitSets: A measurement may have zero or more limit ranges defined for it. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "AccumulatorValues": [ + cgmesProfile.OP.value, + ], + "LimitSets": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, AccumulatorValues="list", LimitSets="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.AccumulatorValues = AccumulatorValues + self.LimitSets = LimitSets + + def __str__(self): + str = "class=Accumulator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimit.py b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimit.py new file mode 100644 index 00000000..c5acbc91 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimit.py @@ -0,0 +1,41 @@ +from .Limit import Limit + + +class AccumulatorLimit(Limit): + """ + Limit values for Accumulator measurements. + + :value: The value to supervise against. The value is positive. Default: 0 + :LimitSet: The set of limits. Default: None + """ + + cgmesProfile = Limit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "value": [ + cgmesProfile.OP.value, + ], + "LimitSet": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Limit: \n" + Limit.__doc__ + + def __init__(self, value=0, LimitSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.LimitSet = LimitSet + + def __str__(self): + str = "class=AccumulatorLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimitSet.py b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimitSet.py new file mode 100644 index 00000000..5c05a6fd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorLimitSet.py @@ -0,0 +1,41 @@ +from .LimitSet import LimitSet + + +class AccumulatorLimitSet(LimitSet): + """ + An AccumulatorLimitSet specifies a set of Limits that are associated with an Accumulator measurement. + + :Measurements: The Measurements using the LimitSet. Default: "list" + :Limits: The limit values used for supervision of Measurements. Default: "list" + """ + + cgmesProfile = LimitSet.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Measurements": [ + cgmesProfile.OP.value, + ], + "Limits": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LimitSet: \n" + LimitSet.__doc__ + + def __init__(self, Measurements="list", Limits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Measurements = Measurements + self.Limits = Limits + + def __str__(self): + str = "class=AccumulatorLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AccumulatorReset.py b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorReset.py new file mode 100644 index 00000000..b66ef184 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorReset.py @@ -0,0 +1,36 @@ +from .Control import Control + + +class AccumulatorReset(Control): + """ + This command resets the counter value to zero. + + :AccumulatorValue: The accumulator value that is reset by the command. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "AccumulatorValue": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__(self, AccumulatorValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.AccumulatorValue = AccumulatorValue + + def __str__(self): + str = "class=AccumulatorReset\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AccumulatorValue.py b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorValue.py new file mode 100644 index 00000000..b542df53 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AccumulatorValue.py @@ -0,0 +1,44 @@ +from .MeasurementValue import MeasurementValue + + +class AccumulatorValue(MeasurementValue): + """ + AccumulatorValue represents an accumulated (counted) MeasurementValue. + + :Accumulator: Measurement to which this value is connected. Default: None + :AccumulatorReset: The command that resets the accumulator value. Default: None + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Accumulator": [ + cgmesProfile.OP.value, + ], + "AccumulatorReset": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, Accumulator=None, AccumulatorReset=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Accumulator = Accumulator + self.AccumulatorReset = AccumulatorReset + + def __str__(self): + str = "class=AccumulatorValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ActivePower.py b/cimpy_3/cimpy/cgmes_v3_0/ActivePower.py new file mode 100644 index 00000000..083b5834 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ActivePower.py @@ -0,0 +1,64 @@ +from .Base import Base + + +class ActivePower(Base): + """ + Product of RMS value of the voltage and the RMS value of the in-phase component of the current. + + :value: Default: 0.0 + :multiplier: Default: None + :unit: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + multiplier=None, + unit=None, + ): + + self.value = value + self.multiplier = multiplier + self.unit = unit + + def __str__(self): + str = "class=ActivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ActivePowerLimit.py b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerLimit.py new file mode 100644 index 00000000..9f79b08b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerLimit.py @@ -0,0 +1,45 @@ +from .OperationalLimit import OperationalLimit + + +class ActivePowerLimit(OperationalLimit): + """ + Limit on active power flow. + + :value: Value of active power limit. The attribute shall be a positive value or zero. Default: 0.0 + :normalValue: The normal value of active power limit. The attribute shall be a positive value or zero. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.SSH.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, normalValue=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.normalValue = normalValue + + def __str__(self): + str = "class=ActivePowerLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerCurrentFlow.py b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerCurrentFlow.py new file mode 100644 index 00000000..8ad7fa5c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerCurrentFlow.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class ActivePowerPerCurrentFlow(Base): + """ + Active power variation with current flow. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=ActivePowerPerCurrentFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerFrequency.py b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerFrequency.py new file mode 100644 index 00000000..a42d968c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ActivePowerPerFrequency.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class ActivePowerPerFrequency(Base): + """ + Active power variation with frequency. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=ActivePowerPerFrequency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Analog.py b/cimpy_3/cimpy/cgmes_v3_0/Analog.py new file mode 100644 index 00000000..6208d09e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Analog.py @@ -0,0 +1,53 @@ +from .Measurement import Measurement + + +class Analog(Measurement): + """ + Analog represents an analog Measurement. + + :positiveFlowIn: If true then this measurement is an active power, reactive power or current with the convention that a positive value measured at the Terminal means power is flowing into the related PowerSystemResource. Default: False + :AnalogValues: The values connected to this measurement. Default: "list" + :LimitSets: A measurement may have zero or more limit ranges defined for it. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "positiveFlowIn": [ + cgmesProfile.OP.value, + ], + "AnalogValues": [ + cgmesProfile.OP.value, + ], + "LimitSets": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__( + self, + positiveFlowIn=False, + AnalogValues="list", + LimitSets="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.positiveFlowIn = positiveFlowIn + self.AnalogValues = AnalogValues + self.LimitSets = LimitSets + + def __str__(self): + str = "class=Analog\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AnalogControl.py b/cimpy_3/cimpy/cgmes_v3_0/AnalogControl.py new file mode 100644 index 00000000..3e975a23 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AnalogControl.py @@ -0,0 +1,46 @@ +from .Control import Control + + +class AnalogControl(Control): + """ + An analog control used for supervisory control. + + :maxValue: Normal value range maximum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 + :minValue: Normal value range minimum for any of the Control.value. Used for scaling, e.g. in bar graphs. Default: 0.0 + :AnalogValue: The MeasurementValue that is controlled. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "maxValue": [ + cgmesProfile.OP.value, + ], + "minValue": [ + cgmesProfile.OP.value, + ], + "AnalogValue": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__(self, maxValue=0.0, minValue=0.0, AnalogValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.maxValue = maxValue + self.minValue = minValue + self.AnalogValue = AnalogValue + + def __str__(self): + str = "class=AnalogControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AnalogLimit.py b/cimpy_3/cimpy/cgmes_v3_0/AnalogLimit.py new file mode 100644 index 00000000..3b3f8257 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AnalogLimit.py @@ -0,0 +1,41 @@ +from .Limit import Limit + + +class AnalogLimit(Limit): + """ + Limit values for Analog measurements. + + :value: The value to supervise against. Default: 0.0 + :LimitSet: The set of limits. Default: None + """ + + cgmesProfile = Limit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "value": [ + cgmesProfile.OP.value, + ], + "LimitSet": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Limit: \n" + Limit.__doc__ + + def __init__(self, value=0.0, LimitSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.LimitSet = LimitSet + + def __str__(self): + str = "class=AnalogLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AnalogLimitSet.py b/cimpy_3/cimpy/cgmes_v3_0/AnalogLimitSet.py new file mode 100644 index 00000000..6dfecef1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AnalogLimitSet.py @@ -0,0 +1,41 @@ +from .LimitSet import LimitSet + + +class AnalogLimitSet(LimitSet): + """ + An AnalogLimitSet specifies a set of Limits that are associated with an Analog measurement. + + :Measurements: The Measurements using the LimitSet. Default: "list" + :Limits: The limit values used for supervision of Measurements. Default: "list" + """ + + cgmesProfile = LimitSet.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Measurements": [ + cgmesProfile.OP.value, + ], + "Limits": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LimitSet: \n" + LimitSet.__doc__ + + def __init__(self, Measurements="list", Limits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Measurements = Measurements + self.Limits = Limits + + def __str__(self): + str = "class=AnalogLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AnalogValue.py b/cimpy_3/cimpy/cgmes_v3_0/AnalogValue.py new file mode 100644 index 00000000..1652f8ca --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AnalogValue.py @@ -0,0 +1,44 @@ +from .MeasurementValue import MeasurementValue + + +class AnalogValue(MeasurementValue): + """ + AnalogValue represents an analog MeasurementValue. + + :Analog: Measurement to which this value is connected. Default: None + :AnalogControl: The Control variable associated with the MeasurementValue. Default: None + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Analog": [ + cgmesProfile.OP.value, + ], + "AnalogControl": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, Analog=None, AnalogControl=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Analog = Analog + self.AnalogControl = AnalogControl + + def __str__(self): + str = "class=AnalogValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AngleDegrees.py b/cimpy_3/cimpy/cgmes_v3_0/AngleDegrees.py new file mode 100644 index 00000000..099e1def --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AngleDegrees.py @@ -0,0 +1,68 @@ +from .Base import Base + + +class AngleDegrees(Base): + """ + Measurement of angle in degrees. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=AngleDegrees\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AngleRadians.py b/cimpy_3/cimpy/cgmes_v3_0/AngleRadians.py new file mode 100644 index 00000000..f51fd648 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AngleRadians.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class AngleRadians(Base): + """ + Phase angle in radians. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + "value": [ + cgmesProfile.SSH.value, + ], + "unit": [ + cgmesProfile.SSH.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=AngleRadians\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ApparentPower.py b/cimpy_3/cimpy/cgmes_v3_0/ApparentPower.py new file mode 100644 index 00000000..8a7c29a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ApparentPower.py @@ -0,0 +1,56 @@ +from .Base import Base + + +class ApparentPower(Base): + """ + Product of the RMS value of the voltage and the RMS value of the current. + + :value: Default: 0.0 + :multiplier: Default: None + :unit: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + multiplier=None, + unit=None, + ): + + self.value = value + self.multiplier = multiplier + self.unit = unit + + def __str__(self): + str = "class=ApparentPower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ApparentPowerLimit.py b/cimpy_3/cimpy/cgmes_v3_0/ApparentPowerLimit.py new file mode 100644 index 00000000..4e51b7ad --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ApparentPowerLimit.py @@ -0,0 +1,45 @@ +from .OperationalLimit import OperationalLimit + + +class ApparentPowerLimit(OperationalLimit): + """ + Apparent power limit. + + :value: The apparent power limit. The attribute shall be a positive value or zero. Default: 0.0 + :normalValue: The normal apparent power limit. The attribute shall be a positive value or zero. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.SSH.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, normalValue=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.normalValue = normalValue + + def __str__(self): + str = "class=ApparentPowerLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Area.py b/cimpy_3/cimpy/cgmes_v3_0/Area.py new file mode 100644 index 00000000..e3cf91e1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Area.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class Area(Base): + """ + Area. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "value": [ + cgmesProfile.DY.value, + ], + "unit": [ + cgmesProfile.DY.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Area\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachine.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachine.py new file mode 100644 index 00000000..d22385c8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachine.py @@ -0,0 +1,106 @@ +from .RotatingMachine import RotatingMachine + + +class AsynchronousMachine(RotatingMachine): + """ + A rotating machine whose shaft rotates asynchronously with the electrical field. Also known as an induction machine with no external connection to the rotor windings, e.g. squirrel-cage induction machine. + + :AsynchronousMachineDynamics: Asynchronous machine dynamics model used to describe dynamic behaviour of this asynchronous machine. Default: None + :asynchronousMachineType: Indicates the type of Asynchronous Machine (motor or generator). Default: None + :nominalFrequency: Nameplate data indicates if the machine is 50 Hz or 60 Hz. Default: 0.0 + :nominalSpeed: Nameplate data. Depends on the slip and number of pole pairs. Default: 0.0 + :converterFedDrive: Indicates whether the machine is a converter fed drive. Used for short circuit data exchange according to IEC 60909. Default: False + :efficiency: Efficiency of the asynchronous machine at nominal operation as a percentage. Indicator for converter drive motors. Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :iaIrRatio: Ratio of locked-rotor current to the rated current of the motor (Ia/Ir). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :polePairNumber: Number of pole pairs of stator. Used for short circuit data exchange according to IEC 60909. Default: 0 + :ratedMechanicalPower: Rated mechanical power (Pr in IEC 60909-0). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :reversible: Indicates for converter drive motors if the power can be reversible. Used for short circuit data exchange according to IEC 60909. Default: False + :rxLockedRotorRatio: Locked rotor ratio (R/X). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + """ + + cgmesProfile = RotatingMachine.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "asynchronousMachineType": [ + cgmesProfile.SSH.value, + ], + "nominalFrequency": [ + cgmesProfile.EQ.value, + ], + "nominalSpeed": [ + cgmesProfile.EQ.value, + ], + "converterFedDrive": [ + cgmesProfile.SC.value, + ], + "efficiency": [ + cgmesProfile.SC.value, + ], + "iaIrRatio": [ + cgmesProfile.SC.value, + ], + "polePairNumber": [ + cgmesProfile.SC.value, + ], + "ratedMechanicalPower": [ + cgmesProfile.SC.value, + ], + "reversible": [ + cgmesProfile.SC.value, + ], + "rxLockedRotorRatio": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachine: \n" + RotatingMachine.__doc__ + ) + + def __init__( + self, + AsynchronousMachineDynamics=None, + asynchronousMachineType=None, + nominalFrequency=0.0, + nominalSpeed=0.0, + converterFedDrive=False, + efficiency=0.0, + iaIrRatio=0.0, + polePairNumber=0, + ratedMechanicalPower=0.0, + reversible=False, + rxLockedRotorRatio=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + self.asynchronousMachineType = asynchronousMachineType + self.nominalFrequency = nominalFrequency + self.nominalSpeed = nominalSpeed + self.converterFedDrive = converterFedDrive + self.efficiency = efficiency + self.iaIrRatio = iaIrRatio + self.polePairNumber = polePairNumber + self.ratedMechanicalPower = ratedMechanicalPower + self.reversible = reversible + self.rxLockedRotorRatio = rxLockedRotorRatio + + def __str__(self): + str = "class=AsynchronousMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineDynamics.py new file mode 100644 index 00000000..07e0413b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineDynamics.py @@ -0,0 +1,62 @@ +from .RotatingMachineDynamics import RotatingMachineDynamics + + +class AsynchronousMachineDynamics(RotatingMachineDynamics): + """ + Asynchronous machine whose behaviour is described by reference to a standard model expressed in either time constant reactance form or equivalent circuit form or by definition of a user-defined model. Parameter details:
  1. Asynchronous machine parameters such as Xl, Xs, etc. are actually used as inductances in the model, but are commonly referred to as reactances since, at nominal frequency, the PU values are the same. However, some references use the symbol L instead of X.
+ + :AsynchronousMachine: Asynchronous machine to which this asynchronous machine dynamics model applies. Default: None + :TurbineGovernorDynamics: Turbine-governor model associated with this asynchronous machine model. Default: None + :MechanicalLoadDynamics: Mechanical load model associated with this asynchronous machine model. Default: None + :WindTurbineType1or2Dynamics: Wind generator type 1 or type 2 model associated with this asynchronous machine model. Default: None + """ + + cgmesProfile = RotatingMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachine": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachineDynamics: \n" + + RotatingMachineDynamics.__doc__ + ) + + def __init__( + self, + AsynchronousMachine=None, + TurbineGovernorDynamics=None, + MechanicalLoadDynamics=None, + WindTurbineType1or2Dynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.AsynchronousMachine = AsynchronousMachine + self.TurbineGovernorDynamics = TurbineGovernorDynamics + self.MechanicalLoadDynamics = MechanicalLoadDynamics + self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics + + def __str__(self): + str = "class=AsynchronousMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineEquivalentCircuit.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineEquivalentCircuit.py new file mode 100644 index 00000000..5ad3dff3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineEquivalentCircuit.py @@ -0,0 +1,59 @@ +from .AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineEquivalentCircuit(AsynchronousMachineDynamics): + """ + The electrical equations of all variations of the asynchronous model are based on the AsynchronousEquivalentCircuit diagram for the direct- and quadrature- axes, with two equivalent rotor windings in each axis. Equations for conversion between equivalent circuit and time constant reactance forms: Xs = Xm + Xl X' = Xl + Xm x Xlr1 / (Xm + Xlr1) X'' = Xl + Xm x Xlr1 x Xlr2 / (Xm x Xlr1 + Xm x Xlr2 + Xlr1 x Xlr2) T'o = (Xm + Xlr1) / (omega0 x Rr1) T''o = (Xm x Xlr1 + Xm x Xlr2 + Xlr1 x Xlr2) / (omega0 x Rr2 x (Xm + Xlr1) Same equations using CIM attributes from AsynchronousMachineTimeConstantReactance class on left of "=" and AsynchronousMachineEquivalentCircuit class on right (except as noted): xs = xm + RotatingMachineDynamics.statorLeakageReactance xp = RotatingMachineDynamics.statorLeakageReactance + xm x xlr1 / (xm + xlr1) xpp = RotatingMachineDynamics.statorLeakageReactance + xm x xlr1 x xlr2 / (xm x xlr1 + xm x xlr2 + xlr1 x xlr2) tpo = (xm + xlr1) / (2 x pi x nominal frequency x rr1) tppo = (xm x xlr1 + xm x xlr2 + xlr1 x xlr2) / (2 x pi x nominal frequency x rr2 x (xm + xlr1). + + :xm: Magnetizing reactance. Default: 0.0 + :rr1: Damper 1 winding resistance. Default: 0.0 + :xlr1: Damper 1 winding leakage reactance. Default: 0.0 + :rr2: Damper 2 winding resistance. Default: 0.0 + :xlr2: Damper 2 winding leakage reactance. Default: 0.0 + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xm": [ + cgmesProfile.DY.value, + ], + "rr1": [ + cgmesProfile.DY.value, + ], + "xlr1": [ + cgmesProfile.DY.value, + ], + "rr2": [ + cgmesProfile.DY.value, + ], + "xlr2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__(self, xm=0.0, rr1=0.0, xlr1=0.0, rr2=0.0, xlr2=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.xm = xm + self.rr1 = rr1 + self.xlr1 = xlr1 + self.rr2 = rr2 + self.xlr2 = xlr2 + + def __str__(self): + str = "class=AsynchronousMachineEquivalentCircuit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineKind.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineKind.py new file mode 100644 index 00000000..cd2a2065 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class AsynchronousMachineKind(Base): + """ + Kind of Asynchronous Machine. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=AsynchronousMachineKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineTimeConstantReactance.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineTimeConstantReactance.py new file mode 100644 index 00000000..b02b494b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineTimeConstantReactance.py @@ -0,0 +1,59 @@ +from .AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineTimeConstantReactance(AsynchronousMachineDynamics): + """ + Parameter details:
  1. If X'' = X', a single cage (one equivalent rotor winding per axis) is modelled.
  2. The "p" in the attribute names is a substitution for a "prime" in the usual parameter notation, e.g. tpo refers to T'o.
The parameters used for models expressed in time constant reactance form include: - RotatingMachine.ratedS (MVAbase); - RotatingMachineDynamics.damping (D); - RotatingMachineDynamics.inertia (H); - RotatingMachineDynamics.saturationFactor (S1); - RotatingMachineDynamics.saturationFactor120 (S12); - RotatingMachineDynamics.statorLeakageReactance (Xl); - RotatingMachineDynamics.statorResistance (Rs); - .xs (Xs); - .xp (X'); - .xpp (X''); - .tpo (T'o); - .tppo (T''o). + + :xs: Synchronous reactance (Xs) (>= AsynchronousMachineTimeConstantReactance.xp). Typical value = 1,8. Default: 0.0 + :xp: Transient reactance (unsaturated) (X`) (>= AsynchronousMachineTimeConstantReactance.xpp). Typical value = 0,5. Default: 0.0 + :xpp: Subtransient reactance (unsaturated) (X``) (> RotatingMachineDynamics.statorLeakageReactance). Typical value = 0,2. Default: 0.0 + :tpo: Transient rotor time constant (T`o) (> AsynchronousMachineTimeConstantReactance.tppo). Typical value = 5. Default: 0 + :tppo: Subtransient rotor time constant (T``o) (> 0). Typical value = 0,03. Default: 0 + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + "xp": [ + cgmesProfile.DY.value, + ], + "xpp": [ + cgmesProfile.DY.value, + ], + "tpo": [ + cgmesProfile.DY.value, + ], + "tppo": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__(self, xs=0.0, xp=0.0, xpp=0.0, tpo=0, tppo=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.xs = xs + self.xp = xp + self.xpp = xpp + self.tpo = tpo + self.tppo = tppo + + def __str__(self): + str = "class=AsynchronousMachineTimeConstantReactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineUserDefined.py new file mode 100644 index 00000000..a4be15d6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AsynchronousMachineUserDefined.py @@ -0,0 +1,46 @@ +from .AsynchronousMachineDynamics import AsynchronousMachineDynamics + + +class AsynchronousMachineUserDefined(AsynchronousMachineDynamics): + """ + Asynchronous machine whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = AsynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AsynchronousMachineDynamics: \n" + + AsynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=AsynchronousMachineUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/AuxiliaryEquipment.py b/cimpy_3/cimpy/cgmes_v3_0/AuxiliaryEquipment.py new file mode 100644 index 00000000..a936c57d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/AuxiliaryEquipment.py @@ -0,0 +1,36 @@ +from .Equipment import Equipment + + +class AuxiliaryEquipment(Equipment): + """ + AuxiliaryEquipment describe equipment that is not performing any primary functions but support for the equipment performing the primary function. AuxiliaryEquipment is attached to primary equipment via an association with Terminal. + + :Terminal: The Terminal at the equipment where the AuxiliaryEquipment is attached. Default: None + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__(self, Terminal=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + + def __str__(self): + str = "class=AuxiliaryEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Base.py b/cimpy_3/cimpy/cgmes_v3_0/Base.py new file mode 100644 index 00000000..557999ee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Base.py @@ -0,0 +1,78 @@ +from enum import Enum + +short_profile_name = { + "Equipment": "EQ", + "SteadyStateHypothesis": "SSH", + "Topology": "TP", + "StateVariables": "SV", + "Dynamics": "DY", + "GeographicalLocation": "GL", + "DiagramLayout": "DL", + "Operation": "OP", + "ShortCircuit": "SC", + "EquipmentBoundary": "EQBD", +} + +long_profile_name = { + "EQ": "Equipment", + "SSH": "SteadyStateHypothesis", + "TP": "Topology", + "SV": "StateVariables", + "DY": "Dynamics", + "GL": "GeographicalLocation", + "DL": "DiagramLayout", + "OP": "Operation", + "SC": "ShortCircuit", + "EQBD": "EquipmentBoundary", +} + + +class Profile(Enum): + """Enum containing all CGMES profiles and their export priority.""" + + EQ = 0 + SSH = 1 + TP = 2 + SV = 3 + DY = 4 + GL = 5 + DL = 6 + OP = 7 + SC = 8 + EQBD = 9 + + def long_name(self): + """Testdocumentation""" + return long_profile_name[self.name] + + @classmethod + def from_long_name(cls, long_name): + return cls[short_profile_name[long_name]] + + +class Base: + """ + Base Class for CIM + """ + + cgmesProfile = Enum( + "cgmesProfile", + { + "EQ": 0, + "SSH": 1, + "TP": 2, + "SV": 3, + "DY": 4, + "GL": 5, + "DL": 6, + "OP": 7, + "SC": 8, + "EQBD": 9, + }, + ) + + def __init__(self, *args, **kw_args): + pass + + def printxml(self, dict={}): + return dict diff --git a/cimpy_3/cimpy/cgmes_v3_0/BaseVoltage.py b/cimpy_3/cimpy/cgmes_v3_0/BaseVoltage.py new file mode 100644 index 00000000..0bc60987 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BaseVoltage.py @@ -0,0 +1,72 @@ +from .IdentifiedObject import IdentifiedObject + + +class BaseVoltage(IdentifiedObject): + """ + Defines a system base voltage which is referenced. + + :TopologicalNode: The topological nodes at the base voltage. Default: "list" + :nominalVoltage: The power system resource`s base voltage. Shall be a positive value and not zero. Default: 0.0 + :ConductingEquipment: All conducting equipment with this base voltage. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: "list" + :VoltageLevel: The voltage levels having this base voltage. Default: "list" + :TransformerEnds: Transformer ends at the base voltage. This is essential for PU calculation. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + "nominalVoltage": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "ConductingEquipment": [ + cgmesProfile.EQ.value, + ], + "VoltageLevel": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "TransformerEnds": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + TopologicalNode="list", + nominalVoltage=0.0, + ConductingEquipment="list", + VoltageLevel="list", + TransformerEnds="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.TopologicalNode = TopologicalNode + self.nominalVoltage = nominalVoltage + self.ConductingEquipment = ConductingEquipment + self.VoltageLevel = VoltageLevel + self.TransformerEnds = TransformerEnds + + def __str__(self): + str = "class=BaseVoltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BasicIntervalSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/BasicIntervalSchedule.py new file mode 100644 index 00000000..a602fb42 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BasicIntervalSchedule.py @@ -0,0 +1,51 @@ +from .IdentifiedObject import IdentifiedObject + + +class BasicIntervalSchedule(IdentifiedObject): + """ + Schedule of values at points in time. + + :startTime: The time for the first time point. The value can be a time of day, not a specific date. Default: '' + :value1Unit: Value1 units of measure. Default: None + :value2Unit: Value2 units of measure. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "startTime": [ + cgmesProfile.EQ.value, + ], + "value1Unit": [ + cgmesProfile.EQ.value, + ], + "value2Unit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, startTime="", value1Unit=None, value2Unit=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.startTime = startTime + self.value1Unit = value1Unit + self.value2Unit = value2Unit + + def __str__(self): + str = "class=BasicIntervalSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BatteryStateKind.py b/cimpy_3/cimpy/cgmes_v3_0/BatteryStateKind.py new file mode 100644 index 00000000..50b47bae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BatteryStateKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class BatteryStateKind(Base): + """ + The state of the battery unit. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=BatteryStateKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BatteryUnit.py b/cimpy_3/cimpy/cgmes_v3_0/BatteryUnit.py new file mode 100644 index 00000000..2b89e206 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BatteryUnit.py @@ -0,0 +1,50 @@ +from .PowerElectronicsUnit import PowerElectronicsUnit + + +class BatteryUnit(PowerElectronicsUnit): + """ + An electrochemical energy storage device. + + :batteryState: The current state of the battery (charging, full, etc.). Default: None + :storedE: Amount of energy currently stored. The attribute shall be a positive value or zero and lower than BatteryUnit.ratedE. Default: 0.0 + :ratedE: Full energy storage capacity of the battery. The attribute shall be a positive value. Default: 0.0 + """ + + cgmesProfile = PowerElectronicsUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "batteryState": [ + cgmesProfile.SSH.value, + ], + "storedE": [ + cgmesProfile.SSH.value, + ], + "ratedE": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerElectronicsUnit: \n" + + PowerElectronicsUnit.__doc__ + ) + + def __init__(self, batteryState=None, storedE=0.0, ratedE=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.batteryState = batteryState + self.storedE = storedE + self.ratedE = ratedE + + def __str__(self): + str = "class=BatteryUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Bay.py b/cimpy_3/cimpy/cgmes_v3_0/Bay.py new file mode 100644 index 00000000..e5dcbd90 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Bay.py @@ -0,0 +1,41 @@ +from .EquipmentContainer import EquipmentContainer + + +class Bay(EquipmentContainer): + """ + A collection of power system resources (within a given substation) including conducting equipment, protection relays, measurements, and telemetry. A bay typically represents a physical grouping related to modularization of equipment. + + :VoltageLevel: The voltage level containing this bay. Default: None + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "VoltageLevel": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, VoltageLevel=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VoltageLevel = VoltageLevel + + def __str__(self): + str = "class=Bay\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Boolean.py b/cimpy_3/cimpy/cgmes_v3_0/Boolean.py new file mode 100644 index 00000000..cde14009 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Boolean.py @@ -0,0 +1,39 @@ +from .Base import Base + + +class Boolean(Base): + """ + A type with the value space "true" and "false". + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Boolean\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BoundaryPoint.py b/cimpy_3/cimpy/cgmes_v3_0/BoundaryPoint.py new file mode 100644 index 00000000..251513ae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BoundaryPoint.py @@ -0,0 +1,102 @@ +from .PowerSystemResource import PowerSystemResource + + +class BoundaryPoint(PowerSystemResource): + """ + Designates a connection point at which one or more model authority sets shall connect to. The location of the connection point as well as other properties are agreed between organisations responsible for the interconnection, hence all attributes of the class represent this agreement. It is primarily used in a boundary model authority set which can contain one or many BoundaryPoint-s among other Equipment-s and their connections. + + :fromEndIsoCode: The ISO code of the region which the `From` side of the Boundary point belongs to or it is connected to. The ISO code is a two-character country code as defined by ISO 3166 (http://www.iso.org/iso/country_codes). The length of the string is 2 characters maximum. Default: '' + :fromEndName: A human readable name with length of the string 64 characters maximum. It covers the following two cases: -if the Boundary point is placed on a tie-line, it is the name (IdentifiedObject.name) of the substation at which the `From` side of the tie-line is connected to. -if the Boundary point is placed in a substation, it is the name (IdentifiedObject.name) of the element (e.g. PowerTransformer, ACLineSegment, Switch, etc.) at which the `From` side of the Boundary point is connected to. Default: '' + :fromEndNameTso: Identifies the name of the transmission system operator, distribution system operator or other entity at which the `From` side of the interconnection is connected to. The length of the string is 64 characters maximum. Default: '' + :toEndIsoCode: The ISO code of the region which the `To` side of the Boundary point belongs to or is connected to. The ISO code is a two-character country code as defined by ISO 3166 (http://www.iso.org/iso/country_codes). The length of the string is 2 characters maximum. Default: '' + :toEndName: A human readable name with length of the string 64 characters maximum. It covers the following two cases: -if the Boundary point is placed on a tie-line, it is the name (IdentifiedObject.name) of the substation at which the `To` side of the tie-line is connected to. -if the Boundary point is placed in a substation, it is the name (IdentifiedObject.name) of the element (e.g. PowerTransformer, ACLineSegment, Switch, etc.) at which the `To` side of the Boundary point is connected to. Default: '' + :toEndNameTso: Identifies the name of the transmission system operator, distribution system operator or other entity at which the `To` side of the interconnection is connected to. The length of the string is 64 characters maximum. Default: '' + :isDirectCurrent: If true, this boundary point is a point of common coupling (PCC) of a direct current (DC) interconnection, otherwise the interconnection is AC (default). Default: False + :isExcludedFromAreaInterchange: If true, this boundary point is on the interconnection that is excluded from control area interchange calculation and consequently has no related tie flows. Otherwise, the interconnection is included in control area interchange and a TieFlow is required at all sides of the boundary point (default). Default: False + :ConnectivityNode: The connectivity node that is designated as a boundary point. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "fromEndIsoCode": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "fromEndName": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "fromEndNameTso": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "toEndIsoCode": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "toEndName": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "toEndNameTso": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "isDirectCurrent": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "isExcludedFromAreaInterchange": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "ConnectivityNode": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + fromEndIsoCode="", + fromEndName="", + fromEndNameTso="", + toEndIsoCode="", + toEndName="", + toEndNameTso="", + isDirectCurrent=False, + isExcludedFromAreaInterchange=False, + ConnectivityNode=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.fromEndIsoCode = fromEndIsoCode + self.fromEndName = fromEndName + self.fromEndNameTso = fromEndNameTso + self.toEndIsoCode = toEndIsoCode + self.toEndName = toEndName + self.toEndNameTso = toEndNameTso + self.isDirectCurrent = isDirectCurrent + self.isExcludedFromAreaInterchange = isExcludedFromAreaInterchange + self.ConnectivityNode = ConnectivityNode + + def __str__(self): + str = "class=BoundaryPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Breaker.py b/cimpy_3/cimpy/cgmes_v3_0/Breaker.py new file mode 100644 index 00000000..3df1366c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Breaker.py @@ -0,0 +1,35 @@ +from .ProtectedSwitch import ProtectedSwitch + + +class Breaker(ProtectedSwitch): + """ + A mechanical switching device capable of making, carrying, and breaking currents under normal circuit conditions and also making, carrying for a specified time, and breaking currents under specified abnormal circuit conditions e.g. those of short circuit. + + """ + + cgmesProfile = ProtectedSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ProtectedSwitch: \n" + ProtectedSwitch.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Breaker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BusNameMarker.py b/cimpy_3/cimpy/cgmes_v3_0/BusNameMarker.py new file mode 100644 index 00000000..0b67d190 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BusNameMarker.py @@ -0,0 +1,51 @@ +from .IdentifiedObject import IdentifiedObject + + +class BusNameMarker(IdentifiedObject): + """ + Used to apply user standard names to TopologicalNodes. Associated with one or more terminals that are normally connected with the bus name. The associated terminals are normally connected by non-retained switches. For a ring bus station configuration, all BusbarSection terminals in the ring are typically associated. For a breaker and a half scheme, both BusbarSections would normally be associated. For a ring bus, all BusbarSections would normally be associated. For a "straight" busbar configuration, normally only the main terminal at the BusbarSection would be associated. + + :Terminal: The terminals associated with this bus name marker. Default: "list" + :priority: Priority of bus name marker for use as topology bus name. Use 0 for do not care. Use 1 for highest priority. Use 2 as priority is less than 1 and so on. Default: 0 + :ReportingGroup: The reporting group to which this bus name marker belongs. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "priority": [ + cgmesProfile.EQ.value, + ], + "ReportingGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, Terminal="list", priority=0, ReportingGroup=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.priority = priority + self.ReportingGroup = ReportingGroup + + def __str__(self): + str = "class=BusNameMarker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/BusbarSection.py b/cimpy_3/cimpy/cgmes_v3_0/BusbarSection.py new file mode 100644 index 00000000..a029f466 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/BusbarSection.py @@ -0,0 +1,37 @@ +from .Connector import Connector + + +class BusbarSection(Connector): + """ + A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation. Voltage measurements are typically obtained from voltage transformers that are connected to busbar sections. A bus bar section may have many physical terminals but for analysis is modelled with exactly one logical terminal. + + :ipMax: Maximum allowable peak short-circuit current of busbar (Ipmax in IEC 60909-0). Mechanical limit of the busbar in the substation itself. Used for short circuit data exchange according to IEC 60909. Default: 0.0 + """ + + cgmesProfile = Connector.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "ipMax": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Connector: \n" + Connector.__doc__ + + def __init__(self, ipMax=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ipMax = ipMax + + def __str__(self): + str = "class=BusbarSection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CAESPlant.py b/cimpy_3/cimpy/cgmes_v3_0/CAESPlant.py new file mode 100644 index 00000000..b957aff8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CAESPlant.py @@ -0,0 +1,39 @@ +from .PowerSystemResource import PowerSystemResource + + +class CAESPlant(PowerSystemResource): + """ + Compressed air energy storage plant. + + :ThermalGeneratingUnit: A thermal generating unit may be a member of a compressed air energy storage plant. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ThermalGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, ThermalGeneratingUnit=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ThermalGeneratingUnit = ThermalGeneratingUnit + + def __str__(self): + str = "class=CAESPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CSCDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/CSCDynamics.py new file mode 100644 index 00000000..15b8a97d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CSCDynamics.py @@ -0,0 +1,38 @@ +from .HVDCDynamics import HVDCDynamics + + +class CSCDynamics(HVDCDynamics): + """ + CSC function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :CSConverter: Current source converter to which current source converter dynamics model applies. Default: None + """ + + cgmesProfile = HVDCDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "CSConverter": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class HVDCDynamics: \n" + HVDCDynamics.__doc__ + ) + + def __init__(self, CSConverter=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.CSConverter = CSConverter + + def __str__(self): + str = "class=CSCDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CSCUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/CSCUserDefined.py new file mode 100644 index 00000000..b58ade0f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CSCUserDefined.py @@ -0,0 +1,43 @@ +from .CSCDynamics import CSCDynamics + + +class CSCUserDefined(CSCDynamics): + """ + Current source converter (CSC) function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = CSCDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class CSCDynamics: \n" + CSCDynamics.__doc__ + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=CSCUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Capacitance.py b/cimpy_3/cimpy/cgmes_v3_0/Capacitance.py new file mode 100644 index 00000000..d395eed4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Capacitance.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class Capacitance(Base): + """ + Capacitive part of reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Capacitance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/CapacitancePerLength.py b/cimpy_3/cimpy/cgmes_v3_0/CapacitancePerLength.py similarity index 92% rename from cimpy/cgmes_v2_4_15/CapacitancePerLength.py rename to cimpy_3/cimpy/cgmes_v3_0/CapacitancePerLength.py index 127daa89..a9d1d2fc 100644 --- a/cimpy/cgmes_v2_4_15/CapacitancePerLength.py +++ b/cimpy_3/cimpy/cgmes_v3_0/CapacitancePerLength.py @@ -1,8 +1,8 @@ -from .Base import Base - +"""from .Base import Base +#not required as per cim standard class CapacitancePerLength(Base): - ''' +""" """ Capacitance per unit of length. :value: Default: 0.0 @@ -10,7 +10,7 @@ class CapacitancePerLength(Base): :multiplier: Default: None :denominatorUnit: Default: None :denominatorMultiplier: Default: None - ''' +""" """ cgmesProfile = Base.cgmesProfile @@ -24,19 +24,20 @@ class CapacitancePerLength(Base): serializationProfile = {} - + def __init__(self, value = 0.0, unit = None, multiplier = None, denominatorUnit = None, denominatorMultiplier = None, ): - + self.value = value self.unit = unit self.multiplier = multiplier self.denominatorUnit = denominatorUnit self.denominatorMultiplier = denominatorMultiplier - + def __str__(self): str = 'class=CapacitancePerLength\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/Clamp.py b/cimpy_3/cimpy/cgmes_v3_0/Clamp.py new file mode 100644 index 00000000..0682db8f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Clamp.py @@ -0,0 +1,44 @@ +from .ConductingEquipment import ConductingEquipment + + +class Clamp(ConductingEquipment): + """ + A Clamp is a galvanic connection at a line segment where other equipment is connected. A Clamp does not cut the line segment. A Clamp is ConductingEquipment and has one Terminal with an associated ConnectivityNode. Any other ConductingEquipment can be connected to the Clamp ConnectivityNode. + + :ACLineSegment: The line segment to which the clamp is connected. Default: None + :lengthFromTerminal1: The length to the place where the clamp is located starting from side one of the line segment, i.e. the line segment terminal with sequence number equal to 1. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ACLineSegment": [ + cgmesProfile.EQ.value, + ], + "lengthFromTerminal1": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, ACLineSegment=None, lengthFromTerminal1=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ACLineSegment = ACLineSegment + self.lengthFromTerminal1 = lengthFromTerminal1 + + def __str__(self): + str = "class=Clamp\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CogenerationPlant.py b/cimpy_3/cimpy/cgmes_v3_0/CogenerationPlant.py new file mode 100644 index 00000000..3015fb7d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CogenerationPlant.py @@ -0,0 +1,39 @@ +from .PowerSystemResource import PowerSystemResource + + +class CogenerationPlant(PowerSystemResource): + """ + A set of thermal generating units for the production of electrical energy and process steam (usually from the output of the steam turbines). The steam sendout is typically used for industrial purposes or for municipal heating and cooling. + + :ThermalGeneratingUnits: A thermal generating unit may be a member of a cogeneration plant. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ThermalGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, ThermalGeneratingUnits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ThermalGeneratingUnits = ThermalGeneratingUnits + + def __str__(self): + str = "class=CogenerationPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CombinedCyclePlant.py b/cimpy_3/cimpy/cgmes_v3_0/CombinedCyclePlant.py new file mode 100644 index 00000000..dea287b4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CombinedCyclePlant.py @@ -0,0 +1,39 @@ +from .PowerSystemResource import PowerSystemResource + + +class CombinedCyclePlant(PowerSystemResource): + """ + A set of combustion turbines and steam turbines where the exhaust heat from the combustion turbines is recovered to make steam for the steam turbines, resulting in greater overall plant efficiency. + + :ThermalGeneratingUnits: A thermal generating unit may be a member of a combined cycle plant. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ThermalGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, ThermalGeneratingUnits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ThermalGeneratingUnits = ThermalGeneratingUnits + + def __str__(self): + str = "class=CombinedCyclePlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Command.py b/cimpy_3/cimpy/cgmes_v3_0/Command.py new file mode 100644 index 00000000..f01dfc41 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Command.py @@ -0,0 +1,59 @@ +from .Control import Control + + +class Command(Control): + """ + A Command is a discrete control used for supervisory control. + + :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0 + :value: The value representing the actuator output. Default: 0 + :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None + :DiscreteValue: The MeasurementValue that is controlled. Default: None + """ + + cgmesProfile = Control.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "normalValue": [ + cgmesProfile.OP.value, + ], + "value": [ + cgmesProfile.OP.value, + ], + "ValueAliasSet": [ + cgmesProfile.OP.value, + ], + "DiscreteValue": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Control: \n" + Control.__doc__ + + def __init__( + self, + normalValue=0, + value=0, + ValueAliasSet=None, + DiscreteValue=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.normalValue = normalValue + self.value = value + self.ValueAliasSet = ValueAliasSet + self.DiscreteValue = DiscreteValue + + def __str__(self): + str = "class=Command\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Conductance.py b/cimpy_3/cimpy/cgmes_v3_0/Conductance.py new file mode 100644 index 00000000..16e2c773 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Conductance.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Conductance(Base): + """ + Factor by which voltage must be multiplied to give corresponding power lost from a circuit. Real part of admittance. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Conductance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConductingEquipment.py b/cimpy_3/cimpy/cgmes_v3_0/ConductingEquipment.py new file mode 100644 index 00000000..b83ffff9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConductingEquipment.py @@ -0,0 +1,55 @@ +from .Equipment import Equipment + + +class ConductingEquipment(Equipment): + """ + The parts of the AC power system that are designed to carry current or that are conductively connected through terminals. + + :Terminals: Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: "list" + :BaseVoltage: Base voltage of this conducting equipment. Use only when there is no voltage level container used and only one base voltage applies. For example, not used for transformers. Default: None + :SvStatus: The status state variable associated with this conducting equipment. Default: None + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "Terminals": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + ], + "SvStatus": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__( + self, Terminals="list", BaseVoltage=None, SvStatus=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.Terminals = Terminals + self.BaseVoltage = BaseVoltage + self.SvStatus = SvStatus + + def __str__(self): + str = "class=ConductingEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Conductor.py b/cimpy_3/cimpy/cgmes_v3_0/Conductor.py new file mode 100644 index 00000000..e8b4e511 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Conductor.py @@ -0,0 +1,40 @@ +from .ConductingEquipment import ConductingEquipment + + +class Conductor(ConductingEquipment): + """ + Combination of conducting material with consistent electrical characteristics, building a single electrical system, used to carry current between points in the power system. + + :length: Segment length for calculating line section capabilities. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "length": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, length=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.length = length + + def __str__(self): + str = "class=Conductor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConformLoad.py b/cimpy_3/cimpy/cgmes_v3_0/ConformLoad.py new file mode 100644 index 00000000..f6a6551a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConformLoad.py @@ -0,0 +1,39 @@ +from .EnergyConsumer import EnergyConsumer + + +class ConformLoad(EnergyConsumer): + """ + ConformLoad represent loads that follow a daily load change pattern where the pattern can be used to scale the load with a system load. + + :LoadGroup: Group of this ConformLoad. Default: None + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "LoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, LoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadGroup = LoadGroup + + def __str__(self): + str = "class=ConformLoad\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConformLoadGroup.py b/cimpy_3/cimpy/cgmes_v3_0/ConformLoadGroup.py new file mode 100644 index 00000000..e7ed2c22 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConformLoadGroup.py @@ -0,0 +1,43 @@ +from .LoadGroup import LoadGroup + + +class ConformLoadGroup(LoadGroup): + """ + A group of loads conforming to an allocation pattern. + + :ConformLoadSchedules: The ConformLoadSchedules in the ConformLoadGroup. Default: "list" + :EnergyConsumers: Conform loads assigned to this ConformLoadGroup. Default: "list" + """ + + cgmesProfile = LoadGroup.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ConformLoadSchedules": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumers": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LoadGroup: \n" + LoadGroup.__doc__ + + def __init__( + self, ConformLoadSchedules="list", EnergyConsumers="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.ConformLoadSchedules = ConformLoadSchedules + self.EnergyConsumers = EnergyConsumers + + def __str__(self): + str = "class=ConformLoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConformLoadSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/ConformLoadSchedule.py new file mode 100644 index 00000000..cbf9fbfc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConformLoadSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class ConformLoadSchedule(SeasonDayTypeSchedule): + """ + A curve of load versus time (X-axis) showing the active power values (Y1-axis) and reactive power (Y2-axis) for each unit of the period covered. This curve represents a typical pattern of load over the time period for a given day type and season. + + :ConformLoadGroup: The ConformLoadGroup where the ConformLoadSchedule belongs. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ConformLoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, ConformLoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ConformLoadGroup = ConformLoadGroup + + def __str__(self): + str = "class=ConformLoadSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNode.py b/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNode.py new file mode 100644 index 00000000..b13afcae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNode.py @@ -0,0 +1,67 @@ +from .IdentifiedObject import IdentifiedObject + + +class ConnectivityNode(IdentifiedObject): + """ + Connectivity nodes are points where terminals of AC conducting equipment are connected together with zero impedance. + + :TopologicalNode: The topological node to which this connectivity node is assigned. May depend on the current state of switches in the network. Default: None + :BoundaryPoint: The boundary point associated with the connectivity node. Default: None + :Terminals: Terminals interconnected with zero impedance at a this connectivity node. Default: "list" + :ConnectivityNodeContainer: Container of this connectivity node. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + "BoundaryPoint": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Terminals": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "ConnectivityNodeContainer": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + TopologicalNode=None, + BoundaryPoint=None, + Terminals="list", + ConnectivityNodeContainer=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.TopologicalNode = TopologicalNode + self.BoundaryPoint = BoundaryPoint + self.Terminals = Terminals + self.ConnectivityNodeContainer = ConnectivityNodeContainer + + def __str__(self): + str = "class=ConnectivityNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNodeContainer.py b/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNodeContainer.py new file mode 100644 index 00000000..25a35a7a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ConnectivityNodeContainer.py @@ -0,0 +1,49 @@ +from .PowerSystemResource import PowerSystemResource + + +class ConnectivityNodeContainer(PowerSystemResource): + """ + A base class for all objects that may contain connectivity nodes or topological nodes. + + :TopologicalNode: The topological nodes which belong to this connectivity node container. Default: "list" + :ConnectivityNodes: Connectivity nodes which belong to this connectivity node container. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + "ConnectivityNodes": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, TopologicalNode="list", ConnectivityNodes="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.TopologicalNode = TopologicalNode + self.ConnectivityNodes = ConnectivityNodes + + def __str__(self): + str = "class=ConnectivityNodeContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Connector.py b/cimpy_3/cimpy/cgmes_v3_0/Connector.py new file mode 100644 index 00000000..9c37dfc0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Connector.py @@ -0,0 +1,37 @@ +from .ConductingEquipment import ConductingEquipment + + +class Connector(ConductingEquipment): + """ + A conductor, or group of conductors, with negligible impedance, that serve to connect other conducting equipment within a single substation and are modelled with a single logical terminal. + + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Connector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Control.py b/cimpy_3/cimpy/cgmes_v3_0/Control.py new file mode 100644 index 00000000..8805694f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Control.py @@ -0,0 +1,71 @@ +from .IOPoint import IOPoint + + +class Control(IOPoint): + """ + Control is used for supervisory/device control. It represents control outputs that are used to change the state in a process, e.g. close or open breaker, a set point value or a raise lower command. + + :controlType: Specifies the type of Control. For example, this specifies if the Control represents BreakerOpen, BreakerClose, GeneratorVoltageSetPoint, GeneratorRaise, GeneratorLower, etc. Default: '' + :operationInProgress: Indicates that a client is currently sending control commands that has not completed. Default: False + :timeStamp: The last time a control output was sent. Default: '' + :unitMultiplier: The unit multiplier of the controlled quantity. Default: None + :unitSymbol: The unit of measure of the controlled quantity. Default: None + :PowerSystemResource: Regulating device governed by this control output. Default: None + """ + + cgmesProfile = IOPoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "controlType": [ + cgmesProfile.OP.value, + ], + "operationInProgress": [ + cgmesProfile.OP.value, + ], + "timeStamp": [ + cgmesProfile.OP.value, + ], + "unitMultiplier": [ + cgmesProfile.OP.value, + ], + "unitSymbol": [ + cgmesProfile.OP.value, + ], + "PowerSystemResource": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class IOPoint: \n" + IOPoint.__doc__ + + def __init__( + self, + controlType="", + operationInProgress=False, + timeStamp="", + unitMultiplier=None, + unitSymbol=None, + PowerSystemResource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.controlType = controlType + self.operationInProgress = operationInProgress + self.timeStamp = timeStamp + self.unitMultiplier = unitMultiplier + self.unitSymbol = unitSymbol + self.PowerSystemResource = PowerSystemResource + + def __str__(self): + str = "class=Control\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ControlArea.py b/cimpy_3/cimpy/cgmes_v3_0/ControlArea.py new file mode 100644 index 00000000..614f37e1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ControlArea.py @@ -0,0 +1,75 @@ +from .PowerSystemResource import PowerSystemResource + + +class ControlArea(PowerSystemResource): + """ + A control area is a grouping of generating units and/or loads and a cutset of tie lines (as terminals) which may be used for a variety of purposes including automatic generation control, power flow solution area interchange control specification, and input to load forecasting. All generation and load within the area defined by the terminals on the border are considered in the area interchange control. Note that any number of overlapping control area specifications can be superimposed on the physical model. The following general principles apply to ControlArea: 1. The control area orientation for net interchange is positive for an import, negative for an export. 2. The control area net interchange is determined by summing flows in Terminals. The Terminals are identified by creating a set of TieFlow objects associated with a ControlArea object. Each TieFlow object identifies one Terminal. 3. In a single network model, a tie between two control areas must be modelled in both control area specifications, such that the two representations of the tie flow sum to zero. 4. The normal orientation of Terminal flow is positive for flow into the conducting equipment that owns the Terminal. (i.e. flow from a bus into a device is positive.) However, the orientation of each flow in the control area specification must align with the control area convention, i.e. import is positive. If the orientation of the Terminal flow referenced by a TieFlow is positive into the control area, then this is confirmed by setting TieFlow.positiveFlowIn flag TRUE. If not, the orientation must be reversed by setting the TieFlow.positiveFlowIn flag FALSE. + + :netInterchange: The specified positive net interchange into the control area, i.e. positive sign means flow into the area. Default: 0.0 + :pTolerance: Active power net interchange tolerance. The attribute shall be a positive value or zero. Default: 0.0 + :type: The primary type of control area definition used to determine if this is used for automatic generation control, for planning interchange control, or other purposes. A control area specified with primary type of automatic generation control could still be forecast and used as an interchange area in power flow analysis. Default: None + :TieFlow: The tie flows associated with the control area. Default: "list" + :ControlAreaGeneratingUnit: The generating unit specifications for the control area. Default: "list" + :EnergyArea: The energy area that is forecast from this control area specification. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "netInterchange": [ + cgmesProfile.SSH.value, + ], + "pTolerance": [ + cgmesProfile.SSH.value, + ], + "type": [ + cgmesProfile.EQ.value, + ], + "TieFlow": [ + cgmesProfile.EQ.value, + ], + "ControlAreaGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "EnergyArea": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + netInterchange=0.0, + pTolerance=0.0, + type=None, + TieFlow="list", + ControlAreaGeneratingUnit="list", + EnergyArea=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.netInterchange = netInterchange + self.pTolerance = pTolerance + self.type = type + self.TieFlow = TieFlow + self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit + self.EnergyArea = EnergyArea + + def __str__(self): + str = "class=ControlArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ControlAreaGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/ControlAreaGeneratingUnit.py new file mode 100644 index 00000000..eabd5e7c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ControlAreaGeneratingUnit.py @@ -0,0 +1,44 @@ +from .IdentifiedObject import IdentifiedObject + + +class ControlAreaGeneratingUnit(IdentifiedObject): + """ + A control area generating unit. This class is needed so that alternate control area definitions may include the same generating unit. It should be noted that only one instance within a control area should reference a specific generating unit. + + :ControlArea: The parent control area for the generating unit specifications. Default: None + :GeneratingUnit: The generating unit specified for this control area. Note that a control area should include a GeneratingUnit only once. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, ControlArea=None, GeneratingUnit=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ControlArea = ControlArea + self.GeneratingUnit = GeneratingUnit + + def __str__(self): + str = "class=ControlAreaGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ControlAreaTypeKind.py b/cimpy_3/cimpy/cgmes_v3_0/ControlAreaTypeKind.py new file mode 100644 index 00000000..77a33aa6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ControlAreaTypeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ControlAreaTypeKind(Base): + """ + The type of control area. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ControlAreaTypeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CoordinateSystem.py b/cimpy_3/cimpy/cgmes_v3_0/CoordinateSystem.py new file mode 100644 index 00000000..b9159b6b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CoordinateSystem.py @@ -0,0 +1,44 @@ +from .IdentifiedObject import IdentifiedObject + + +class CoordinateSystem(IdentifiedObject): + """ + Coordinate reference system. + + :crsUrn: A Uniform Resource Name (URN) for the coordinate reference system (crs) used to define `Location.PositionPoints`. An example would be the European Petroleum Survey Group (EPSG) code for a coordinate reference system, defined in URN under the Open Geospatial Consortium (OGC) namespace as: urn:ogc:def:crs:EPSG::XXXX, where XXXX is an EPSG code (a full list of codes can be found at the EPSG Registry web site http://www.epsg-registry.org/). To define the coordinate system as being WGS84 (latitude, longitude) using an EPSG OGC, this attribute would be urn:ogc:def:crs:EPSG::4236. A profile should limit this code to a set of allowed URNs agreed to by all sending and receiving parties. Default: '' + :Locations: All locations described with position points in this coordinate system. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "crsUrn": [ + cgmesProfile.GL.value, + ], + "Locations": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, crsUrn="", Locations="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.crsUrn = crsUrn + self.Locations = Locations + + def __str__(self): + str = "class=CoordinateSystem\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CrossCompoundTurbineGovernorDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/CrossCompoundTurbineGovernorDynamics.py new file mode 100644 index 00000000..3e275978 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CrossCompoundTurbineGovernorDynamics.py @@ -0,0 +1,54 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class CrossCompoundTurbineGovernorDynamics(DynamicsFunctionBlock): + """ + Turbine-governor cross-compound function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :HighPressureSynchronousMachineDynamics: High-pressure synchronous machine with which this cross-compound turbine governor is associated. Default: None + :LowPressureSynchronousMachineDynamics: Low-pressure synchronous machine with which this cross-compound turbine governor is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "HighPressureSynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "LowPressureSynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + HighPressureSynchronousMachineDynamics=None, + LowPressureSynchronousMachineDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.HighPressureSynchronousMachineDynamics = ( + HighPressureSynchronousMachineDynamics + ) + self.LowPressureSynchronousMachineDynamics = ( + LowPressureSynchronousMachineDynamics + ) + + def __str__(self): + str = "class=CrossCompoundTurbineGovernorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CsConverter.py b/cimpy_3/cimpy/cgmes_v3_0/CsConverter.py new file mode 100644 index 00000000..c81ab17e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CsConverter.py @@ -0,0 +1,130 @@ +from .ACDCConverter import ACDCConverter + + +class CsConverter(ACDCConverter): + """ + DC side of the current source converter (CSC). The firing angle controls the dc voltage at the converter, both for rectifier and inverter. The difference between the dc voltages of the rectifier and inverter determines the dc current. The extinction angle is used to limit the dc voltage at the inverter, if needed, and is not used in active power control. The firing angle, transformer tap position and number of connected filters are the primary means to control a current source dc line. Higher level controls are built on top, e.g. dc voltage, dc current and active power. From a steady state perspective it is sufficient to specify the wanted active power transfer (ACDCConverter.targetPpcc) and the control functions will set the dc voltage, dc current, firing angle, transformer tap position and number of connected filters to meet this. Therefore attributes targetAlpha and targetGamma are not applicable in this case. The reactive power consumed by the converter is a function of the firing angle, transformer tap position and number of connected filter, which can be approximated with half of the active power. The losses is a function of the dc voltage and dc current. The attributes minAlpha and maxAlpha define the range of firing angles for rectifier operation between which no discrete tap changer action takes place. The range is typically 10-18 degrees. The attributes minGamma and maxGamma define the range of extinction angles for inverter operation between which no discrete tap changer action takes place. The range is typically 17-20 degrees. + + :CSCDynamics: Current source converter dynamics model used to describe dynamic behaviour of this converter. Default: None + :operatingMode: Indicates whether the DC pole is operating as an inverter or as a rectifier. It is converter`s control variable used in power flow. Default: None + :pPccControl: Kind of active power control. Default: None + :targetAlpha: Target firing angle. It is converter`s control variable used in power flow. It is only applicable for rectifier if continuous tap changer control is used. Allowed values are within the range minAlpha<=targetAlpha<=maxAlpha. The attribute shall be a positive value. Default: 0.0 + :targetGamma: Target extinction angle. It is converter`s control variable used in power flow. It is only applicable for inverter if continuous tap changer control is used. Allowed values are within the range minGamma<=targetGamma<=maxGamma. The attribute shall be a positive value. Default: 0.0 + :targetIdc: DC current target value. It is converter`s control variable used in power flow. The attribute shall be a positive value. Default: 0.0 + :maxAlpha: Maximum firing angle. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :maxGamma: Maximum extinction angle. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :maxIdc: The maximum direct current (Id) on the DC side at which the converter should operate. It is converter`s configuration data use in power flow. The attribute shall be a positive value. Default: 0.0 + :minAlpha: Minimum firing angle. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :minGamma: Minimum extinction angle. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :minIdc: The minimum direct current (Id) on the DC side at which the converter should operate. It is converter`s configuration data used in power flow. The attribute shall be a positive value. Default: 0.0 + :ratedIdc: Rated converter DC current, also called IdN. The attribute shall be a positive value. It is converter`s configuration data used in power flow. Default: 0.0 + :alpha: Firing angle that determines the dc voltage at the converter dc terminal. Typical value between 10 degrees and 18 degrees for a rectifier. It is converter`s state variable, result from power flow. The attribute shall be a positive value. Default: 0.0 + :gamma: Extinction angle. It is used to limit the dc voltage at the inverter if needed. Typical value between 17 degrees and 20 degrees for an inverter. It is converter`s state variable, result from power flow. The attribute shall be a positive value. Default: 0.0 + """ + + cgmesProfile = ACDCConverter.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "CSCDynamics": [ + cgmesProfile.DY.value, + ], + "operatingMode": [ + cgmesProfile.SSH.value, + ], + "pPccControl": [ + cgmesProfile.SSH.value, + ], + "targetAlpha": [ + cgmesProfile.SSH.value, + ], + "targetGamma": [ + cgmesProfile.SSH.value, + ], + "targetIdc": [ + cgmesProfile.SSH.value, + ], + "maxAlpha": [ + cgmesProfile.EQ.value, + ], + "maxGamma": [ + cgmesProfile.EQ.value, + ], + "maxIdc": [ + cgmesProfile.EQ.value, + ], + "minAlpha": [ + cgmesProfile.EQ.value, + ], + "minGamma": [ + cgmesProfile.EQ.value, + ], + "minIdc": [ + cgmesProfile.EQ.value, + ], + "ratedIdc": [ + cgmesProfile.EQ.value, + ], + "alpha": [ + cgmesProfile.SV.value, + ], + "gamma": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCConverter: \n" + ACDCConverter.__doc__ + ) + + def __init__( + self, + CSCDynamics=None, + operatingMode=None, + pPccControl=None, + targetAlpha=0.0, + targetGamma=0.0, + targetIdc=0.0, + maxAlpha=0.0, + maxGamma=0.0, + maxIdc=0.0, + minAlpha=0.0, + minGamma=0.0, + minIdc=0.0, + ratedIdc=0.0, + alpha=0.0, + gamma=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.CSCDynamics = CSCDynamics + self.operatingMode = operatingMode + self.pPccControl = pPccControl + self.targetAlpha = targetAlpha + self.targetGamma = targetGamma + self.targetIdc = targetIdc + self.maxAlpha = maxAlpha + self.maxGamma = maxGamma + self.maxIdc = maxIdc + self.minAlpha = minAlpha + self.minGamma = minGamma + self.minIdc = minIdc + self.ratedIdc = ratedIdc + self.alpha = alpha + self.gamma = gamma + + def __str__(self): + str = "class=CsConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CsOperatingModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/CsOperatingModeKind.py new file mode 100644 index 00000000..2c7196bb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CsOperatingModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class CsOperatingModeKind(Base): + """ + Operating mode for HVDC line operating as Current Source Converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CsOperatingModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CsPpccControlKind.py b/cimpy_3/cimpy/cgmes_v3_0/CsPpccControlKind.py new file mode 100644 index 00000000..fe405631 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CsPpccControlKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class CsPpccControlKind(Base): + """ + Active power control modes for HVDC line operating as Current Source Converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CsPpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Currency.py b/cimpy_3/cimpy/cgmes_v3_0/Currency.py new file mode 100644 index 00000000..d6d00b15 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Currency.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class Currency(Base): + """ + Monetary currencies. ISO 4217 standard including 3-character currency code. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Currency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CurrentFlow.py b/cimpy_3/cimpy/cgmes_v3_0/CurrentFlow.py new file mode 100644 index 00000000..ef19c84e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CurrentFlow.py @@ -0,0 +1,60 @@ +from .Base import Base + + +class CurrentFlow(Base): + """ + Electrical current with sign convention: positive flow is out of the conducting equipment into the connectivity node. Can be both AC and DC. + + :value: Default: 0.0 + :multiplier: Default: None + :unit: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + multiplier=None, + unit=None, + ): + + self.value = value + self.multiplier = multiplier + self.unit = unit + + def __str__(self): + str = "class=CurrentFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CurrentLimit.py b/cimpy_3/cimpy/cgmes_v3_0/CurrentLimit.py new file mode 100644 index 00000000..5cfa263c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CurrentLimit.py @@ -0,0 +1,45 @@ +from .OperationalLimit import OperationalLimit + + +class CurrentLimit(OperationalLimit): + """ + Operational limit on current. + + :value: Limit on current flow. The attribute shall be a positive value or zero. Default: 0.0 + :normalValue: The normal value for limit on current flow. The attribute shall be a positive value or zero. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.SSH.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, normalValue=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.normalValue = normalValue + + def __str__(self): + str = "class=CurrentLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CurrentTransformer.py b/cimpy_3/cimpy/cgmes_v3_0/CurrentTransformer.py new file mode 100644 index 00000000..a68ac2c9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CurrentTransformer.py @@ -0,0 +1,32 @@ +from .Sensor import Sensor + + +class CurrentTransformer(Sensor): + """ + Instrument transformer used to measure electrical qualities of the circuit that is being protected and/or monitored. Typically used as current transducer for the purpose of metering or protection. A typical secondary current rating would be 5A. + + """ + + cgmesProfile = Sensor.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Sensor: \n" + Sensor.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=CurrentTransformer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Curve.py b/cimpy_3/cimpy/cgmes_v3_0/Curve.py new file mode 100644 index 00000000..3090680b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Curve.py @@ -0,0 +1,68 @@ +from .IdentifiedObject import IdentifiedObject + + +class Curve(IdentifiedObject): + """ + A multi-purpose curve or functional relationship between an independent variable (X-axis) and dependent (Y-axis) variables. + + :curveStyle: The style or shape of the curve. Default: None + :xUnit: The X-axis units of measure. Default: None + :y1Unit: The Y1-axis units of measure. Default: None + :y2Unit: The Y2-axis units of measure. Default: None + :CurveDatas: The point data values that define this curve. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "curveStyle": [ + cgmesProfile.EQ.value, + ], + "xUnit": [ + cgmesProfile.EQ.value, + ], + "y1Unit": [ + cgmesProfile.EQ.value, + ], + "y2Unit": [ + cgmesProfile.EQ.value, + ], + "CurveDatas": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + curveStyle=None, + xUnit=None, + y1Unit=None, + y2Unit=None, + CurveDatas="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.curveStyle = curveStyle + self.xUnit = xUnit + self.y1Unit = y1Unit + self.y2Unit = y2Unit + self.CurveDatas = CurveDatas + + def __str__(self): + str = "class=Curve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CurveData.py b/cimpy_3/cimpy/cgmes_v3_0/CurveData.py new file mode 100644 index 00000000..779bfc55 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CurveData.py @@ -0,0 +1,54 @@ +from .Base import Base + + +class CurveData(Base): + """ + Multi-purpose data points for defining a curve. The use of this generic class is discouraged if a more specific class can be used to specify the X and Y axis values along with their specific data types. + + :Curve: The curve of this curve data point. Default: None + :xvalue: The data value of the X-axis variable, depending on the X-axis units. Default: 0.0 + :y1value: The data value of the first Y-axis variable, depending on the Y-axis units. Default: 0.0 + :y2value: The data value of the second Y-axis variable (if present), depending on the Y-axis units. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Curve": [ + cgmesProfile.EQ.value, + ], + "xvalue": [ + cgmesProfile.EQ.value, + ], + "y1value": [ + cgmesProfile.EQ.value, + ], + "y2value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Curve=None, + xvalue=0.0, + y1value=0.0, + y2value=0.0, + ): + + self.Curve = Curve + self.xvalue = xvalue + self.y1value = y1value + self.y2value = y2value + + def __str__(self): + str = "class=CurveData\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/CurveStyle.py b/cimpy_3/cimpy/cgmes_v3_0/CurveStyle.py new file mode 100644 index 00000000..8482d7a4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/CurveStyle.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class CurveStyle(Base): + """ + Style or shape of curve. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=CurveStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Cut.py b/cimpy_3/cimpy/cgmes_v3_0/Cut.py new file mode 100644 index 00000000..8131b1de --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Cut.py @@ -0,0 +1,41 @@ +from .Switch import Switch + + +class Cut(Switch): + """ + A cut separates a line segment into two parts. The cut appears as a switch inserted between these two parts and connects them together. As the cut is normally open there is no galvanic connection between the two line segment parts. But it is possible to close the cut to get galvanic connection. The cut terminals are oriented towards the line segment terminals with the same sequence number. Hence the cut terminal with sequence number equal to 1 is oriented to the line segment's terminal with sequence number equal to 1. The cut terminals also act as connection points for jumpers and other equipment, e.g. a mobile generator. To enable this, connectivity nodes are placed at the cut terminals. Once the connectivity nodes are in place any conducting equipment can be connected at them. + + :ACLineSegment: The line segment to which the cut is applied. Default: None + :lengthFromTerminal1: The length to the place where the cut is located starting from side one of the cut line segment, i.e. the line segment Terminal with sequenceNumber equal to 1. Default: 0.0 + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ACLineSegment": [ + cgmesProfile.EQ.value, + ], + "lengthFromTerminal1": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, ACLineSegment=None, lengthFromTerminal1=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ACLineSegment = ACLineSegment + self.lengthFromTerminal1 = lengthFromTerminal1 + + def __str__(self): + str = "class=Cut\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCBaseTerminal.py b/cimpy_3/cimpy/cgmes_v3_0/DCBaseTerminal.py new file mode 100644 index 00000000..849af094 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCBaseTerminal.py @@ -0,0 +1,45 @@ +from .ACDCTerminal import ACDCTerminal + + +class DCBaseTerminal(ACDCTerminal): + """ + An electrical connection point at a piece of DC conducting equipment. DC terminals are connected at one physical DC node that may have multiple DC terminals connected. A DC node is similar to an AC connectivity node. The model requires that DC connections are distinct from AC connections. + + :DCTopologicalNode: See association end Terminal.TopologicalNode. Default: None + :DCNode: The DC connectivity node to which this DC base terminal connects with zero impedance. Default: None + """ + + cgmesProfile = ACDCTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + "DCNode": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCTerminal: \n" + ACDCTerminal.__doc__ + ) + + def __init__(self, DCTopologicalNode=None, DCNode=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCTopologicalNode = DCTopologicalNode + self.DCNode = DCNode + + def __str__(self): + str = "class=DCBaseTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCBreaker.py b/cimpy_3/cimpy/cgmes_v3_0/DCBreaker.py new file mode 100644 index 00000000..3cef18d4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCBreaker.py @@ -0,0 +1,32 @@ +from .DCSwitch import DCSwitch + + +class DCBreaker(DCSwitch): + """ + A breaker within a DC system. + + """ + + cgmesProfile = DCSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class DCSwitch: \n" + DCSwitch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCBreaker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCBusbar.py b/cimpy_3/cimpy/cgmes_v3_0/DCBusbar.py new file mode 100644 index 00000000..9d5cb6ac --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCBusbar.py @@ -0,0 +1,35 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCBusbar(DCConductingEquipment): + """ + A busbar within a DC system. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCBusbar\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCChopper.py b/cimpy_3/cimpy/cgmes_v3_0/DCChopper.py new file mode 100644 index 00000000..9181ffef --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCChopper.py @@ -0,0 +1,35 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCChopper(DCConductingEquipment): + """ + Low resistance equipment used in the internal DC circuit to balance voltages. It has typically positive and negative pole terminals and a ground. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCChopper\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCConductingEquipment.py b/cimpy_3/cimpy/cgmes_v3_0/DCConductingEquipment.py new file mode 100644 index 00000000..6ef0b1b6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCConductingEquipment.py @@ -0,0 +1,41 @@ +from .Equipment import Equipment + + +class DCConductingEquipment(Equipment): + """ + The parts of the DC power system that are designed to carry current or that are conductively connected through DC terminals. + + :ratedUdc: Rated DC device voltage. The attribute shall be a positive value. It is configuration data used in power flow. Default: 0.0 + :DCTerminals: A DC conducting equipment has DC terminals. Default: "list" + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ratedUdc": [ + cgmesProfile.EQ.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__(self, ratedUdc=0.0, DCTerminals="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ratedUdc = ratedUdc + self.DCTerminals = DCTerminals + + def __str__(self): + str = "class=DCConductingEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCConverterOperatingModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/DCConverterOperatingModeKind.py new file mode 100644 index 00000000..26e086cf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCConverterOperatingModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class DCConverterOperatingModeKind(Base): + """ + The operating mode of an HVDC bipole. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DCConverterOperatingModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCConverterUnit.py b/cimpy_3/cimpy/cgmes_v3_0/DCConverterUnit.py new file mode 100644 index 00000000..dc6b67a5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCConverterUnit.py @@ -0,0 +1,44 @@ +from .DCEquipmentContainer import DCEquipmentContainer + + +class DCConverterUnit(DCEquipmentContainer): + """ + Indivisible operative unit comprising all equipment between the point of common coupling on the AC side and the point of common coupling - DC side, essentially one or more converters, together with one or more converter transformers, converter control equipment, essential protective and switching devices and auxiliaries, if any, used for conversion. + + :operationMode: The operating mode of an HVDC bipole (bipolar, monopolar metallic return, etc). Default: None + :Substation: The containing substation of the DC converter unit. Default: None + """ + + cgmesProfile = DCEquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "operationMode": [ + cgmesProfile.EQ.value, + ], + "Substation": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCEquipmentContainer: \n" + + DCEquipmentContainer.__doc__ + ) + + def __init__(self, operationMode=None, Substation=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.operationMode = operationMode + self.Substation = Substation + + def __str__(self): + str = "class=DCConverterUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCDisconnector.py b/cimpy_3/cimpy/cgmes_v3_0/DCDisconnector.py new file mode 100644 index 00000000..5c4bf4d3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCDisconnector.py @@ -0,0 +1,32 @@ +from .DCSwitch import DCSwitch + + +class DCDisconnector(DCSwitch): + """ + A disconnector within a DC system. + + """ + + cgmesProfile = DCSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class DCSwitch: \n" + DCSwitch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCDisconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCEquipmentContainer.py b/cimpy_3/cimpy/cgmes_v3_0/DCEquipmentContainer.py new file mode 100644 index 00000000..8488bc93 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCEquipmentContainer.py @@ -0,0 +1,45 @@ +from .EquipmentContainer import EquipmentContainer + + +class DCEquipmentContainer(EquipmentContainer): + """ + A modelling construct to provide a root class for containment of DC as well as AC equipment. The class differ from the EquipmentContaner for AC in that it may also contain DCNode-s. Hence it can contain both AC and DC equipment. + + :DCTopologicalNode: The topological nodes which belong to this connectivity node container. Default: "list" + :DCNodes: The DC nodes contained in the DC equipment container. Default: "list" + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + "DCNodes": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, DCTopologicalNode="list", DCNodes="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCTopologicalNode = DCTopologicalNode + self.DCNodes = DCNodes + + def __str__(self): + str = "class=DCEquipmentContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCGround.py b/cimpy_3/cimpy/cgmes_v3_0/DCGround.py new file mode 100644 index 00000000..cbdfbd82 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCGround.py @@ -0,0 +1,44 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCGround(DCConductingEquipment): + """ + A ground within a DC system. + + :inductance: Inductance to ground. Default: 0.0 + :r: Resistance to ground. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, inductance=0.0, r=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.inductance = inductance + self.r = r + + def __str__(self): + str = "class=DCGround\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCLine.py b/cimpy_3/cimpy/cgmes_v3_0/DCLine.py new file mode 100644 index 00000000..2d965dfe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCLine.py @@ -0,0 +1,39 @@ +from .DCEquipmentContainer import DCEquipmentContainer + + +class DCLine(DCEquipmentContainer): + """ + Overhead lines and/or cables connecting two or more HVDC substations. + + :Region: The SubGeographicalRegion containing the DC line. Default: None + """ + + cgmesProfile = DCEquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCEquipmentContainer: \n" + + DCEquipmentContainer.__doc__ + ) + + def __init__(self, Region=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Region = Region + + def __str__(self): + str = "class=DCLine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCLineSegment.py b/cimpy_3/cimpy/cgmes_v3_0/DCLineSegment.py new file mode 100644 index 00000000..5e40de0f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCLineSegment.py @@ -0,0 +1,62 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCLineSegment(DCConductingEquipment): + """ + A wire or combination of wires not insulated from one another, with consistent electrical characteristics, used to carry direct current between points in the DC region of the power system. + + :capacitance: Capacitance of the DC line segment. Significant for cables only. Default: 0.0 + :inductance: Inductance of the DC line segment. Negligible compared with DCSeriesDevice used for smoothing. Default: 0.0 + :resistance: Resistance of the DC line segment. Default: 0.0 + :length: Segment length for calculating line section capabilities. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "capacitance": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + "length": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__( + self, + capacitance=0.0, + inductance=0.0, + resistance=0.0, + length=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.capacitance = capacitance + self.inductance = inductance + self.resistance = resistance + self.length = length + + def __str__(self): + str = "class=DCLineSegment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCNode.py b/cimpy_3/cimpy/cgmes_v3_0/DCNode.py new file mode 100644 index 00000000..57800dda --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCNode.py @@ -0,0 +1,57 @@ +from .IdentifiedObject import IdentifiedObject + + +class DCNode(IdentifiedObject): + """ + DC nodes are points where terminals of DC conducting equipment are connected together with zero impedance. + + :DCTopologicalNode: The DC topological node to which this DC connectivity node is assigned. May depend on the current state of switches in the network. Default: None + :DCTerminals: DC base terminals interconnected with zero impedance at a this DC connectivity node. Default: "list" + :DCEquipmentContainer: The DC container for the DC nodes. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "DCTopologicalNode": [ + cgmesProfile.TP.value, + ], + "DCTerminals": [ + cgmesProfile.EQ.value, + ], + "DCEquipmentContainer": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCTopologicalNode=None, + DCTerminals="list", + DCEquipmentContainer=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCTopologicalNode = DCTopologicalNode + self.DCTerminals = DCTerminals + self.DCEquipmentContainer = DCEquipmentContainer + + def __str__(self): + str = "class=DCNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCPolarityKind.py b/cimpy_3/cimpy/cgmes_v3_0/DCPolarityKind.py new file mode 100644 index 00000000..58b7d7e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCPolarityKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class DCPolarityKind(Base): + """ + Polarity for DC circuits. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DCPolarityKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCSeriesDevice.py b/cimpy_3/cimpy/cgmes_v3_0/DCSeriesDevice.py new file mode 100644 index 00000000..f860e4aa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCSeriesDevice.py @@ -0,0 +1,44 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCSeriesDevice(DCConductingEquipment): + """ + A series device within the DC system, typically a reactor used for filtering or smoothing. Needed for transient and short circuit studies. + + :inductance: Inductance of the device. Default: 0.0 + :resistance: Resistance of the DC device. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "inductance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, inductance=0.0, resistance=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.inductance = inductance + self.resistance = resistance + + def __str__(self): + str = "class=DCSeriesDevice\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCShunt.py b/cimpy_3/cimpy/cgmes_v3_0/DCShunt.py new file mode 100644 index 00000000..79f1a1a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCShunt.py @@ -0,0 +1,44 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCShunt(DCConductingEquipment): + """ + A shunt device within the DC system, typically used for filtering. Needed for transient and short circuit studies. + + :capacitance: Capacitance of the DC shunt. Default: 0.0 + :resistance: Resistance of the DC device. Default: 0.0 + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "capacitance": [ + cgmesProfile.EQ.value, + ], + "resistance": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, capacitance=0.0, resistance=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.capacitance = capacitance + self.resistance = resistance + + def __str__(self): + str = "class=DCShunt\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCSwitch.py b/cimpy_3/cimpy/cgmes_v3_0/DCSwitch.py new file mode 100644 index 00000000..8751e9d4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCSwitch.py @@ -0,0 +1,35 @@ +from .DCConductingEquipment import DCConductingEquipment + + +class DCSwitch(DCConductingEquipment): + """ + A switch within the DC system. + + """ + + cgmesProfile = DCConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCConductingEquipment: \n" + + DCConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DCSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCTerminal.py b/cimpy_3/cimpy/cgmes_v3_0/DCTerminal.py new file mode 100644 index 00000000..36718d9e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCTerminal.py @@ -0,0 +1,40 @@ +from .DCBaseTerminal import DCBaseTerminal + + +class DCTerminal(DCBaseTerminal): + """ + An electrical connection point to generic DC conducting equipment. + + :DCConductingEquipment: An DC terminal belong to a DC conducting equipment. Default: None + """ + + cgmesProfile = DCBaseTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "DCConductingEquipment": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DCBaseTerminal: \n" + DCBaseTerminal.__doc__ + ) + + def __init__(self, DCConductingEquipment=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCConductingEquipment = DCConductingEquipment + + def __str__(self): + str = "class=DCTerminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalIsland.py b/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalIsland.py new file mode 100644 index 00000000..c313b8ae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalIsland.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DCTopologicalIsland(IdentifiedObject): + """ + An electrically connected subset of the network. DC topological islands can change as the current network state changes, e.g. due to: - disconnect switches or breakers changing state in a SCADA/EMS. - manual creation, change or deletion of topological nodes in a planning tool. Only energised TopologicalNode-s shall be part of the topological island. + + :DCTopologicalNodes: The DC topological nodes in a DC topological island. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "DCTopologicalNodes": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, DCTopologicalNodes="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DCTopologicalNodes = DCTopologicalNodes + + def __str__(self): + str = "class=DCTopologicalIsland\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalNode.py b/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalNode.py new file mode 100644 index 00000000..3fe7f3c1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DCTopologicalNode.py @@ -0,0 +1,63 @@ +from .IdentifiedObject import IdentifiedObject + + +class DCTopologicalNode(IdentifiedObject): + """ + DC bus. + + :DCTerminals: See association end TopologicalNode.Terminal. Default: "list" + :DCEquipmentContainer: The connectivity node container to which the topological node belongs. Default: None + :DCNodes: The DC connectivity nodes combined together to form this DC topological node. May depend on the current state of switches in the network. Default: "list" + :DCTopologicalIsland: A DC topological node belongs to a DC topological island. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.SV.value, + ], + "DCTerminals": [ + cgmesProfile.TP.value, + ], + "DCEquipmentContainer": [ + cgmesProfile.TP.value, + ], + "DCNodes": [ + cgmesProfile.TP.value, + ], + "DCTopologicalIsland": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCTerminals="list", + DCEquipmentContainer=None, + DCNodes="list", + DCTopologicalIsland=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCTerminals = DCTerminals + self.DCEquipmentContainer = DCEquipmentContainer + self.DCNodes = DCNodes + self.DCTopologicalIsland = DCTopologicalIsland + + def __str__(self): + str = "class=DCTopologicalNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Date.py b/cimpy_3/cimpy/cgmes_v3_0/Date.py new file mode 100644 index 00000000..eacbdaa2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Date.py @@ -0,0 +1,40 @@ +from .Base import Base + + +class Date(Base): + """ + Date as "yyyy-mm-dd", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddZ". A local timezone relative UTC is specified as "yyyy-mm-dd(+/-)hh:mm". + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Date\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DateTime.py b/cimpy_3/cimpy/cgmes_v3_0/DateTime.py new file mode 100644 index 00000000..1407deff --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DateTime.py @@ -0,0 +1,33 @@ +from .Base import Base + + +class DateTime(Base): + """ + Date and time as "yyyy-mm-ddThh:mm:ss.sss", which conforms with ISO 8601. UTC time zone is specified as "yyyy-mm-ddThh:mm:ss.sssZ". A local timezone relative UTC is specified as "yyyy-mm-ddThh:mm:ss.sss-hh:mm". The second component (shown here as "ss.sss") could have any number of digits in its fractional part to allow any kind of precision beyond seconds. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DateTime\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DayType.py b/cimpy_3/cimpy/cgmes_v3_0/DayType.py new file mode 100644 index 00000000..a0069166 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DayType.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DayType(IdentifiedObject): + """ + Group of similar days. For example it could be used to represent weekdays, weekend, or holidays. + + :SeasonDayTypeSchedules: Schedules that use this DayType. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SeasonDayTypeSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, SeasonDayTypeSchedules="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SeasonDayTypeSchedules = SeasonDayTypeSchedules + + def __str__(self): + str = "class=DayType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Decimal.py b/cimpy_3/cimpy/cgmes_v3_0/Decimal.py new file mode 100644 index 00000000..c385bc25 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Decimal.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class Decimal(Base): + """ + Decimal is the base-10 notational system for representing real numbers. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Decimal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Diagram.py b/cimpy_3/cimpy/cgmes_v3_0/Diagram.py new file mode 100644 index 00000000..2babafd6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Diagram.py @@ -0,0 +1,80 @@ +from .IdentifiedObject import IdentifiedObject + + +class Diagram(IdentifiedObject): + """ + The diagram being exchanged. The coordinate system is a standard Cartesian coordinate system and the orientation attribute defines the orientation. The initial view related attributes can be used to specify an initial view with the x,y coordinates of the diagonal points. + + :orientation: Coordinate system orientation of the diagram. A positive orientation gives standard `right-hand` orientation, with negative orientation indicating a `left-hand` orientation. For 2D diagrams, a positive orientation will result in X values increasing from left to right and Y values increasing from bottom to top. A negative orientation gives the `left-hand` orientation (favoured by computer graphics displays) with X values increasing from left to right and Y values increasing from top to bottom. Default: None + :x1InitialView: X coordinate of the first corner of the initial view. Default: 0.0 + :x2InitialView: X coordinate of the second corner of the initial view. Default: 0.0 + :y1InitialView: Y coordinate of the first corner of the initial view. Default: 0.0 + :y2InitialView: Y coordinate of the second corner of the initial view. Default: 0.0 + :DiagramElements: A diagram is made up of multiple diagram objects. Default: "list" + :DiagramStyle: A Diagram may have a DiagramStyle. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "orientation": [ + cgmesProfile.DL.value, + ], + "x1InitialView": [ + cgmesProfile.DL.value, + ], + "x2InitialView": [ + cgmesProfile.DL.value, + ], + "y1InitialView": [ + cgmesProfile.DL.value, + ], + "y2InitialView": [ + cgmesProfile.DL.value, + ], + "DiagramElements": [ + cgmesProfile.DL.value, + ], + "DiagramStyle": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + orientation=None, + x1InitialView=0.0, + x2InitialView=0.0, + y1InitialView=0.0, + y2InitialView=0.0, + DiagramElements="list", + DiagramStyle=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.orientation = orientation + self.x1InitialView = x1InitialView + self.x2InitialView = x2InitialView + self.y1InitialView = y1InitialView + self.y2InitialView = y2InitialView + self.DiagramElements = DiagramElements + self.DiagramStyle = DiagramStyle + + def __str__(self): + str = "class=Diagram\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramLayoutVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/DiagramLayoutVersion.py index dbe01d90..ee0b6624 100644 --- a/cimpy/cgmes_v2_4_15/DiagramLayoutVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramLayoutVersion.py @@ -1,8 +1,11 @@ +''' +#updated as per TC57CIM Profile part 453, diagram layout profile from .Base import Base class DiagramLayoutVersion(Base): ''' + ''' Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -16,7 +19,7 @@ class DiagramLayoutVersion(Base): :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' ''' - + ''' cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.DL.value, ], @@ -34,10 +37,10 @@ class DiagramLayoutVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +51,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=DiagramLayoutVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +''' diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiagramObject.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramObject.py new file mode 100644 index 00000000..707cda43 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramObject.py @@ -0,0 +1,98 @@ +from .IdentifiedObject import IdentifiedObject + + +class DiagramObject(IdentifiedObject): + """ + An object that defines one or more points in a given space. This object can be associated with anything that specializes IdentifiedObject. For single line diagrams such objects typically include such items as analog values, breakers, disconnectors, power transformers, and transmission lines. + + :Diagram: A diagram object is part of a diagram. Default: None + :drawingOrder: The drawing order of this element. The higher the number, the later the element is drawn in sequence. This is used to ensure that elements that overlap are rendered in the correct order. Default: 0 + :isPolygon: Defines whether or not the diagram objects points define the boundaries of a polygon or the routing of a polyline. If this value is true then a receiving application should consider the first and last points to be connected. Default: False + :offsetX: The offset in the X direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the horizontal centre of the icon. -0.5 indicates it is offset by 50% to the left and 0.5 indicates an offset of 50% to the right. Default: 0.0 + :offsetY: The offset in the Y direction. This is used for defining the offset from centre for rendering an icon (the default is that a single point specifies the centre of the icon). The offset is in per-unit with 0 indicating there is no offset from the vertical centre of the icon. The offset direction is dependent on the orientation of the diagram, with -0.5 and 0.5 indicating an offset of +/- 50% on the vertical axis. Default: 0.0 + :rotation: Sets the angle of rotation of the diagram object. Zero degrees is pointing to the top of the diagram. Rotation is clockwise. DiagramObject.rotation=0 has the following meaning: The connection point of an element which has one terminal is pointing to the top side of the diagram. The connection point `From side` of an element which has more than one terminal is pointing to the top side of the diagram. DiagramObject.rotation=90 has the following meaning: The connection point of an element which has one terminal is pointing to the right hand side of the diagram. The connection point `From side` of an element which has more than one terminal is pointing to the right hand side of the diagram. Default: 0.0 + :IdentifiedObject: The domain object to which this diagram object is associated. Default: None + :DiagramObjectPoints: A diagram object can have 0 or more points to reflect its layout position, routing (for polylines) or boundary (for polygons). Default: "list" + :VisibilityLayers: A diagram object can be part of multiple visibility layers. Default: "list" + :DiagramObjectStyle: A diagram object has a style associated that provides a reference for the style used in the originating system. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "Diagram": [ + cgmesProfile.DL.value, + ], + "drawingOrder": [ + cgmesProfile.DL.value, + ], + "isPolygon": [ + cgmesProfile.DL.value, + ], + "offsetX": [ + cgmesProfile.DL.value, + ], + "offsetY": [ + cgmesProfile.DL.value, + ], + "rotation": [ + cgmesProfile.DL.value, + ], + "IdentifiedObject": [ + cgmesProfile.DL.value, + ], + "DiagramObjectPoints": [ + cgmesProfile.DL.value, + ], + "VisibilityLayers": [ + cgmesProfile.DL.value, + ], + "DiagramObjectStyle": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Diagram=None, + drawingOrder=0, + isPolygon=False, + offsetX=0.0, + offsetY=0.0, + rotation=0.0, + IdentifiedObject=None, + DiagramObjectPoints="list", + VisibilityLayers="list", + DiagramObjectStyle=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Diagram = Diagram + self.drawingOrder = drawingOrder + self.isPolygon = isPolygon + self.offsetX = offsetX + self.offsetY = offsetY + self.rotation = rotation + self.IdentifiedObject = IdentifiedObject + self.DiagramObjectPoints = DiagramObjectPoints + self.VisibilityLayers = VisibilityLayers + self.DiagramObjectStyle = DiagramObjectStyle + + def __str__(self): + str = "class=DiagramObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectGluePoint.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectGluePoint.py new file mode 100644 index 00000000..b6fd4470 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectGluePoint.py @@ -0,0 +1,36 @@ +from .Base import Base + + +class DiagramObjectGluePoint(Base): + """ + This is used for grouping diagram object points from different diagram objects that are considered to be glued together in a diagram even if they are not at the exact same coordinates. + + :DiagramObjectPoints: A diagram object glue point is associated with 2 or more object points that are considered to be `glued` together. Default: "list" + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "DiagramObjectPoints": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DiagramObjectPoints="list", + ): + + self.DiagramObjectPoints = DiagramObjectPoints + + def __str__(self): + str = "class=DiagramObjectGluePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectPoint.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectPoint.py new file mode 100644 index 00000000..0d363f96 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectPoint.py @@ -0,0 +1,66 @@ +from .Base import Base + + +class DiagramObjectPoint(Base): + """ + A point in a given space defined by 3 coordinates and associated to a diagram object. The coordinates may be positive or negative as the origin does not have to be in the corner of a diagram. + + :DiagramObject: The diagram object with which the points are associated. Default: None + :DiagramObjectGluePoint: The `glue` point to which this point is associated. Default: None + :sequenceNumber: The sequence position of the point, used for defining the order of points for diagram objects acting as a polyline or polygon with more than one point. The attribute shall be a positive value. Default: 0 + :xPosition: The X coordinate of this point. Default: 0.0 + :yPosition: The Y coordinate of this point. Default: 0.0 + :zPosition: The Z coordinate of this point. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "DiagramObject": [ + cgmesProfile.DL.value, + ], + "DiagramObjectGluePoint": [ + cgmesProfile.DL.value, + ], + "sequenceNumber": [ + cgmesProfile.DL.value, + ], + "xPosition": [ + cgmesProfile.DL.value, + ], + "yPosition": [ + cgmesProfile.DL.value, + ], + "zPosition": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + DiagramObject=None, + DiagramObjectGluePoint=None, + sequenceNumber=0, + xPosition=0.0, + yPosition=0.0, + zPosition=0.0, + ): + + self.DiagramObject = DiagramObject + self.DiagramObjectGluePoint = DiagramObjectGluePoint + self.sequenceNumber = sequenceNumber + self.xPosition = xPosition + self.yPosition = yPosition + self.zPosition = zPosition + + def __str__(self): + str = "class=DiagramObjectPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectStyle.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectStyle.py new file mode 100644 index 00000000..d47ab280 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramObjectStyle.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DiagramObjectStyle(IdentifiedObject): + """ + A reference to a style used by the originating system for a diagram object. A diagram object style describes information such as line thickness, shape such as circle or rectangle etc, and colour. + + :StyledObjects: A style can be assigned to multiple diagram objects. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "StyledObjects": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, StyledObjects="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StyledObjects = StyledObjects + + def __str__(self): + str = "class=DiagramObjectStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiagramStyle.py b/cimpy_3/cimpy/cgmes_v3_0/DiagramStyle.py new file mode 100644 index 00000000..fd754d34 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiagramStyle.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DiagramStyle(IdentifiedObject): + """ + The diagram style refers to a style used by the originating system for a diagram. A diagram style describes information such as schematic, geographic, etc. + + :Diagram: A DiagramStyle can be used by many Diagrams. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "Diagram": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, Diagram="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Diagram = Diagram + + def __str__(self): + str = "class=DiagramStyle\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC1A.py b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC1A.py new file mode 100644 index 00000000..1be3d5c4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC1A.py @@ -0,0 +1,148 @@ +from .DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC1A(DiscontinuousExcitationControlDynamics): + """ + IEEE type DEC1A discontinuous excitation control model that boosts generator excitation to a level higher than that demanded by the voltage regulator and stabilizer immediately following a system fault. Reference: IEEE 421.5-2005, 12.2. + + :vtlmt: Voltage reference (VTLMT). Typical value = 1,1. Default: 0.0 + :vomax: Limiter (VOMAX) (> DiscExcContIEEEDEC1A.vomin). Typical value = 0,3. Default: 0.0 + :vomin: Limiter (VOMIN) (< DiscExcContIEEEDEC1A.vomax). Typical value = 0,1. Default: 0.0 + :ketl: Terminal voltage limiter gain (KETL). Typical value = 47. Default: 0.0 + :vtc: Terminal voltage level reference (VTC). Typical value = 0,95. Default: 0.0 + :val: Regulator voltage reference (VAL). Typical value = 5,5. Default: 0.0 + :esc: Speed change reference (ESC). Typical value = 0,0015. Default: 0.0 + :kan: Discontinuous controller gain (KAN). Typical value = 400. Default: 0.0 + :tan: Discontinuous controller time constant (TAN) (>= 0). Typical value = 0,08. Default: 0 + :tw5: DEC washout time constant (TW5) (>= 0). Typical value = 5. Default: 0 + :vsmax: Limiter (VSMAX)(> DiscExcContIEEEDEC1A.vsmin). Typical value = 0,2. Default: 0.0 + :vsmin: Limiter (VSMIN) (< DiscExcContIEEEDEC1A.vsmax). Typical value = -0,066. Default: 0.0 + :td: Time constant (TD) (>= 0). Typical value = 0,03. Default: 0 + :tl1: Time constant (TL1) (>= 0). Typical value = 0,025. Default: 0 + :tl2: Time constant (TL2) (>= 0). Typical value = 1,25. Default: 0 + :vtm: Voltage limits (VTM). Typical value = 1,13. Default: 0.0 + :vtn: Voltage limits (VTN). Typical value = 1,12. Default: 0.0 + :vanmax: Limiter for Van (VANMAX). Default: 0.0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vtlmt": [ + cgmesProfile.DY.value, + ], + "vomax": [ + cgmesProfile.DY.value, + ], + "vomin": [ + cgmesProfile.DY.value, + ], + "ketl": [ + cgmesProfile.DY.value, + ], + "vtc": [ + cgmesProfile.DY.value, + ], + "val": [ + cgmesProfile.DY.value, + ], + "esc": [ + cgmesProfile.DY.value, + ], + "kan": [ + cgmesProfile.DY.value, + ], + "tan": [ + cgmesProfile.DY.value, + ], + "tw5": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "vtm": [ + cgmesProfile.DY.value, + ], + "vtn": [ + cgmesProfile.DY.value, + ], + "vanmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__( + self, + vtlmt=0.0, + vomax=0.0, + vomin=0.0, + ketl=0.0, + vtc=0.0, + val=0.0, + esc=0.0, + kan=0.0, + tan=0, + tw5=0, + vsmax=0.0, + vsmin=0.0, + td=0, + tl1=0, + tl2=0, + vtm=0.0, + vtn=0.0, + vanmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vtlmt = vtlmt + self.vomax = vomax + self.vomin = vomin + self.ketl = ketl + self.vtc = vtc + self.val = val + self.esc = esc + self.kan = kan + self.tan = tan + self.tw5 = tw5 + self.vsmax = vsmax + self.vsmin = vsmin + self.td = td + self.tl1 = tl1 + self.tl2 = tl2 + self.vtm = vtm + self.vtn = vtn + self.vanmax = vanmax + + def __str__(self): + str = "class=DiscExcContIEEEDEC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC2A.py b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC2A.py new file mode 100644 index 00000000..24bf2e09 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC2A.py @@ -0,0 +1,61 @@ +from .DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC2A(DiscontinuousExcitationControlDynamics): + """ + IEEE type DEC2A model for discontinuous excitation control. This system provides transient excitation boosting via an open-loop control as initiated by a trigger signal generated remotely. Reference: IEEE 421.5-2005 12.3. + + :vk: Discontinuous controller input reference (VK). Default: 0.0 + :td1: Discontinuous controller time constant (TD1) (>= 0). Default: 0 + :td2: Discontinuous controller washout time constant (TD2) (>= 0). Default: 0 + :vdmin: Limiter (VDMIN) (< DiscExcContIEEEDEC2A.vdmax). Default: 0.0 + :vdmax: Limiter (VDMAX) (> DiscExcContIEEEDEC2A.vdmin). Default: 0.0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vk": [ + cgmesProfile.DY.value, + ], + "td1": [ + cgmesProfile.DY.value, + ], + "td2": [ + cgmesProfile.DY.value, + ], + "vdmin": [ + cgmesProfile.DY.value, + ], + "vdmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__(self, vk=0.0, td1=0, td2=0, vdmin=0.0, vdmax=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.vk = vk + self.td1 = td1 + self.td2 = td2 + self.vdmin = vdmin + self.vdmax = vdmax + + def __str__(self): + str = "class=DiscExcContIEEEDEC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC3A.py b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC3A.py new file mode 100644 index 00000000..683e132e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscExcContIEEEDEC3A.py @@ -0,0 +1,46 @@ +from .DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscExcContIEEEDEC3A(DiscontinuousExcitationControlDynamics): + """ + IEEE type DEC3A model. In some systems, the stabilizer output is disconnected from the regulator immediately following a severe fault to prevent the stabilizer from competing with action of voltage regulator during the first swing. Reference: IEEE 421.5-2005 12.4. + + :vtmin: Terminal undervoltage comparison level (VTMIN). Default: 0.0 + :tdr: Reset time delay (TDR) (>= 0). Default: 0 + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vtmin": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__(self, vtmin=0.0, tdr=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.vtmin = vtmin + self.tdr = tdr + + def __str__(self): + str = "class=DiscExcContIEEEDEC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DisconnectingCircuitBreaker.py b/cimpy_3/cimpy/cgmes_v3_0/DisconnectingCircuitBreaker.py new file mode 100644 index 00000000..da7adf08 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DisconnectingCircuitBreaker.py @@ -0,0 +1,33 @@ +from .Breaker import Breaker + + +class DisconnectingCircuitBreaker(Breaker): + """ + A circuit breaking device including disconnecting function, eliminating the need for separate disconnectors. + + """ + + cgmesProfile = Breaker.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Breaker: \n" + Breaker.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=DisconnectingCircuitBreaker\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Disconnector.py b/cimpy_3/cimpy/cgmes_v3_0/Disconnector.py new file mode 100644 index 00000000..9c6772f6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Disconnector.py @@ -0,0 +1,33 @@ +from .Switch import Switch + + +class Disconnector(Switch): + """ + A manually operated or motor operated mechanical switching device used for changing the connections in a circuit, or for isolating a circuit or equipment from a source of power. It is required to open or close circuits when negligible current is broken or made. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Disconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlDynamics.py new file mode 100644 index 00000000..f83f99b9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlDynamics.py @@ -0,0 +1,46 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class DiscontinuousExcitationControlDynamics(DynamicsFunctionBlock): + """ + Discontinuous excitation control function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :RemoteInputSignal: Remote input signal used by this discontinuous excitation control system model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this discontinuous excitation control model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=DiscontinuousExcitationControlDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlUserDefined.py new file mode 100644 index 00000000..6431136a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscontinuousExcitationControlUserDefined.py @@ -0,0 +1,48 @@ +from .DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics, +) + + +class DiscontinuousExcitationControlUserDefined(DiscontinuousExcitationControlDynamics): + """ + Discontinuous excitation control function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = DiscontinuousExcitationControlDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiscontinuousExcitationControlDynamics: \n" + + DiscontinuousExcitationControlDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=DiscontinuousExcitationControlUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Discrete.py b/cimpy_3/cimpy/cgmes_v3_0/Discrete.py new file mode 100644 index 00000000..aaadc225 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Discrete.py @@ -0,0 +1,41 @@ +from .Measurement import Measurement + + +class Discrete(Measurement): + """ + Discrete represents a discrete Measurement, i.e. a Measurement representing discrete values, e.g. a Breaker position. + + :DiscreteValues: The values connected to this measurement. Default: "list" + :ValueAliasSet: The ValueAliasSet used for translation of a MeasurementValue.value to a name. Default: None + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "DiscreteValues": [ + cgmesProfile.OP.value, + ], + "ValueAliasSet": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, DiscreteValues="list", ValueAliasSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DiscreteValues = DiscreteValues + self.ValueAliasSet = ValueAliasSet + + def __str__(self): + str = "class=Discrete\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DiscreteValue.py b/cimpy_3/cimpy/cgmes_v3_0/DiscreteValue.py new file mode 100644 index 00000000..535050b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DiscreteValue.py @@ -0,0 +1,44 @@ +from .MeasurementValue import MeasurementValue + + +class DiscreteValue(MeasurementValue): + """ + DiscreteValue represents a discrete MeasurementValue. + + :Command: The Control variable associated with the MeasurementValue. Default: None + :Discrete: Measurement to which this value is connected. Default: None + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Command": [ + cgmesProfile.OP.value, + ], + "Discrete": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, Command=None, Discrete=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Command = Command + self.Discrete = Discrete + + def __str__(self): + str = "class=DiscreteValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DroopSignalFeedbackKind.py b/cimpy_3/cimpy/cgmes_v3_0/DroopSignalFeedbackKind.py new file mode 100644 index 00000000..20f96d55 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DroopSignalFeedbackKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class DroopSignalFeedbackKind(Base): + """ + Governor droop signal feedback source. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=DroopSignalFeedbackKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/DynamicsFunctionBlock.py b/cimpy_3/cimpy/cgmes_v3_0/DynamicsFunctionBlock.py new file mode 100644 index 00000000..b96c03fe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/DynamicsFunctionBlock.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class DynamicsFunctionBlock(IdentifiedObject): + """ + Abstract parent class for all Dynamics function blocks. + + :enabled: Function block used indicator. true = use of function block is enabled false = use of function block is disabled. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "enabled": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, enabled=False, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.enabled = enabled + + def __str__(self): + str = "class=DynamicsFunctionBlock\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/DynamicsVersion.py b/cimpy_3/cimpy/cgmes_v3_0/DynamicsVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/DynamicsVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/DynamicsVersion.py index 73a6bec2..85da9dfe 100644 --- a/cimpy/cgmes_v2_4_15/DynamicsVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/DynamicsVersion.py @@ -1,8 +1,10 @@ +# updated as per TC57CIM Profile part , don't exists in startd file +""" from .Base import Base class DynamicsVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,8 +17,8 @@ class DynamicsVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.DY.value, ], @@ -34,10 +36,10 @@ class DynamicsVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +50,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=DynamicsVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/EarthFaultCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/EarthFaultCompensator.py new file mode 100644 index 00000000..e6ebb335 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EarthFaultCompensator.py @@ -0,0 +1,40 @@ +from .ConductingEquipment import ConductingEquipment + + +class EarthFaultCompensator(ConductingEquipment): + """ + A conducting equipment used to represent a connection to ground which is typically used to compensate earth faults. An earth fault compensator device modelled with a single terminal implies a second terminal solidly connected to ground. If two terminals are modelled, the ground is not assumed and normal connection rules apply. + + :r: Nominal resistance of device. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "r": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, r=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.r = r + + def __str__(self): + str = "class=EarthFaultCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EnergyArea.py b/cimpy_3/cimpy/cgmes_v3_0/EnergyArea.py new file mode 100644 index 00000000..c7a92c01 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EnergyArea.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class EnergyArea(IdentifiedObject): + """ + Describes an area having energy production or consumption. Specializations are intended to support the load allocation function as typically required in energy management systems or planning studies to allocate hypothesized load levels to individual load points for power flow analysis. Often the energy area can be linked to both measured and forecast load levels. + + :ControlArea: The control area specification that is used for the load forecast. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, ControlArea=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ControlArea = ControlArea + + def __str__(self): + str = "class=EnergyArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EnergyConnection.py b/cimpy_3/cimpy/cgmes_v3_0/EnergyConnection.py new file mode 100644 index 00000000..6c3a2e02 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EnergyConnection.py @@ -0,0 +1,38 @@ +from .ConductingEquipment import ConductingEquipment + + +class EnergyConnection(ConductingEquipment): + """ + A connection of energy generation or consumption on the power system model. + + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=EnergyConnection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EnergyConsumer.py b/cimpy_3/cimpy/cgmes_v3_0/EnergyConsumer.py new file mode 100644 index 00000000..e6e8553a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EnergyConsumer.py @@ -0,0 +1,88 @@ +from .EnergyConnection import EnergyConnection + + +class EnergyConsumer(EnergyConnection): + """ + Generic user of energy - a point of consumption on the power system model. EnergyConsumer.pfixed, .qfixed, .pfixedPct and .qfixedPct have meaning only if there is no LoadResponseCharacteristic associated with EnergyConsumer or if LoadResponseCharacteristic.exponentModel is set to False. + + :LoadDynamics: Load dynamics model used to describe dynamic behaviour of this energy consumer. Default: None + :p: Active power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 + :q: Reactive power of the load. Load sign convention is used, i.e. positive sign means flow out from a node. For voltage dependent loads the value is at rated voltage. Starting value for a steady state solution. Default: 0.0 + :pfixed: Active power of the load that is a fixed quantity and does not vary as load group value varies. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :pfixedPct: Fixed active power as a percentage of load group fixed active power. Used to represent the time-varying components. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :qfixed: Reactive power of the load that is a fixed quantity and does not vary as load group value varies. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :qfixedPct: Fixed reactive power as a percentage of load group fixed reactive power. Used to represent the time-varying components. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :LoadResponse: The load response characteristic of this load. If missing, this load is assumed to be constant power. Default: None + """ + + cgmesProfile = EnergyConnection.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "LoadDynamics": [ + cgmesProfile.DY.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "pfixed": [ + cgmesProfile.EQ.value, + ], + "pfixedPct": [ + cgmesProfile.EQ.value, + ], + "qfixed": [ + cgmesProfile.EQ.value, + ], + "qfixedPct": [ + cgmesProfile.EQ.value, + ], + "LoadResponse": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConnection: \n" + + EnergyConnection.__doc__ + ) + + def __init__( + self, + LoadDynamics=None, + p=0.0, + q=0.0, + pfixed=0.0, + pfixedPct=0.0, + qfixed=0.0, + qfixedPct=0.0, + LoadResponse=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.LoadDynamics = LoadDynamics + self.p = p + self.q = q + self.pfixed = pfixed + self.pfixedPct = pfixedPct + self.qfixed = qfixed + self.qfixedPct = qfixedPct + self.LoadResponse = LoadResponse + + def __str__(self): + str = "class=EnergyConsumer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EnergySchedulingType.py b/cimpy_3/cimpy/cgmes_v3_0/EnergySchedulingType.py new file mode 100644 index 00000000..1cd04208 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EnergySchedulingType.py @@ -0,0 +1,40 @@ +from .IdentifiedObject import IdentifiedObject + + +class EnergySchedulingType(IdentifiedObject): + """ + Used to define the type of generation for scheduling purposes. + + :EnergySource: Energy Source of a particular Energy Scheduling Type. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "EnergySource": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, EnergySource="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EnergySource = EnergySource + + def __str__(self): + str = "class=EnergySchedulingType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EnergySource.py b/cimpy_3/cimpy/cgmes_v3_0/EnergySource.py new file mode 100644 index 00000000..8a159c48 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EnergySource.py @@ -0,0 +1,124 @@ +from .EnergyConnection import EnergyConnection + + +class EnergySource(EnergyConnection): + """ + A generic equivalent for an energy supplier on a transmission or distribution voltage level. + + :activePower: High voltage source active injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :reactivePower: High voltage source reactive injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :voltageAngle: Phase angle of a-phase open circuit used when voltage characteristics need to be imposed at the node associated with the terminal of the energy source, such as when voltages and angles from the transmission level are used as input to the distribution network. The attribute shall be a positive value or zero. Default: 0.0 + :voltageMagnitude: Phase-to-phase open circuit voltage magnitude used when voltage characteristics need to be imposed at the node associated with the terminal of the energy source, such as when voltages and angles from the transmission level are used as input to the distribution network. The attribute shall be a positive value or zero. Default: 0.0 + :EnergySchedulingType: Energy Scheduling Type of an Energy Source. Default: None + :nominalVoltage: Phase-to-phase nominal voltage. Default: 0.0 + :pMin: This is the minimum active power that can be produced by the source. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + :pMax: This is the maximum active power that can be produced by the source. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + :r: Positive sequence Thevenin resistance. Default: 0.0 + :r0: Zero sequence Thevenin resistance. Default: 0.0 + :rn: Negative sequence Thevenin resistance. Default: 0.0 + :x: Positive sequence Thevenin reactance. Default: 0.0 + :x0: Zero sequence Thevenin reactance. Default: 0.0 + :xn: Negative sequence Thevenin reactance. Default: 0.0 + """ + + cgmesProfile = EnergyConnection.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "activePower": [ + cgmesProfile.SSH.value, + ], + "reactivePower": [ + cgmesProfile.SSH.value, + ], + "voltageAngle": [ + cgmesProfile.SSH.value, + ], + "voltageMagnitude": [ + cgmesProfile.SSH.value, + ], + "EnergySchedulingType": [ + cgmesProfile.EQ.value, + ], + "nominalVoltage": [ + cgmesProfile.EQ.value, + ], + "pMin": [ + cgmesProfile.EQ.value, + ], + "pMax": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "rn": [ + cgmesProfile.SC.value, + ], + "x": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + "xn": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConnection: \n" + + EnergyConnection.__doc__ + ) + + def __init__( + self, + activePower=0.0, + reactivePower=0.0, + voltageAngle=0.0, + voltageMagnitude=0.0, + EnergySchedulingType=None, + nominalVoltage=0.0, + pMin=0.0, + pMax=0.0, + r=0.0, + r0=0.0, + rn=0.0, + x=0.0, + x0=0.0, + xn=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.activePower = activePower + self.reactivePower = reactivePower + self.voltageAngle = voltageAngle + self.voltageMagnitude = voltageMagnitude + self.EnergySchedulingType = EnergySchedulingType + self.nominalVoltage = nominalVoltage + self.pMin = pMin + self.pMax = pMax + self.r = r + self.r0 = r0 + self.rn = rn + self.x = x + self.x0 = x0 + self.xn = xn + + def __str__(self): + str = "class=EnergySource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Equipment.py b/cimpy_3/cimpy/cgmes_v3_0/Equipment.py new file mode 100644 index 00000000..8397266a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Equipment.py @@ -0,0 +1,71 @@ +from .PowerSystemResource import PowerSystemResource + + +class Equipment(PowerSystemResource): + """ + The parts of a power system that are physical devices, electronic or mechanical. + + :inService: Specifies the availability of the equipment. True means the equipment is available for topology processing, which determines if the equipment is energized or not. False means that the equipment is treated by network applications as if it is not in the model. Default: False + :aggregate: The aggregate flag provides an alternative way of representing an aggregated (equivalent) element. It is applicable in cases when the dedicated classes for equivalent equipment do not have all of the attributes necessary to represent the required level of detail. In case the flag is set to `true` the single instance of equipment represents multiple pieces of equipment that have been modelled together as an aggregate equivalent obtained by a network reduction procedure. Examples would be power transformers or synchronous machines operating in parallel modelled as a single aggregate power transformer or aggregate synchronous machine. The attribute is not used for EquivalentBranch, EquivalentShunt and EquivalentInjection. Default: False + :normallyInService: Specifies the availability of the equipment under normal operating conditions. True means the equipment is available for topology processing, which determines if the equipment is energized or not. False means that the equipment is treated by network applications as if it is not in the model. Default: False + :EquipmentContainer: Container of this equipment. Default: None + :OperationalLimitSet: The operational limit sets associated with this equipment. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + ], + "inService": [ + cgmesProfile.SSH.value, + ], + "aggregate": [ + cgmesProfile.EQ.value, + ], + "normallyInService": [ + cgmesProfile.EQ.value, + ], + "EquipmentContainer": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + # 'OperationalLimitSet': [cgmesProfile.EQ.value, ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + inService=False, + aggregate=False, + normallyInService=False, + EquipmentContainer=None, + OperationalLimitSet="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inService = inService + self.aggregate = aggregate + self.normallyInService = normallyInService + self.EquipmentContainer = EquipmentContainer + self.OperationalLimitSet = OperationalLimitSet + + def __str__(self): + str = "class=Equipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py b/cimpy_3/cimpy/cgmes_v3_0/EquipmentBoundaryVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/EquipmentBoundaryVersion.py index 989d5ce9..9812931b 100644 --- a/cimpy/cgmes_v2_4_15/EquipmentBoundaryVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/EquipmentBoundaryVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# updated as per TC57CIM Profile part , don't exists in startd file +"""from .Base import Base class EquipmentBoundaryVersion(Base): - ''' +""" """ Profile version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -16,8 +17,8 @@ class EquipmentBoundaryVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.EQ_BD.value, ], @@ -36,10 +37,10 @@ class EquipmentBoundaryVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURIcore = '', entsoeURIoperation = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -51,10 +52,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=EquipmentBoundaryVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquipmentContainer.py b/cimpy_3/cimpy/cgmes_v3_0/EquipmentContainer.py new file mode 100644 index 00000000..8119b5e4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquipmentContainer.py @@ -0,0 +1,41 @@ +from .ConnectivityNodeContainer import ConnectivityNodeContainer + + +class EquipmentContainer(ConnectivityNodeContainer): + """ + A modelling construct to provide a root class for containing equipment. + + :Equipments: Contained equipment. Default: "list" + """ + + cgmesProfile = ConnectivityNodeContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Equipments": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConnectivityNodeContainer: \n" + + ConnectivityNodeContainer.__doc__ + ) + + def __init__(self, Equipments="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Equipments = Equipments + + def __str__(self): + str = "class=EquipmentContainer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/EquipmentVersion.py b/cimpy_3/cimpy/cgmes_v3_0/EquipmentVersion.py similarity index 97% rename from cimpy/cgmes_v2_4_15/EquipmentVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/EquipmentVersion.py index 386c2cd4..0eacde02 100644 --- a/cimpy/cgmes_v2_4_15/EquipmentVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/EquipmentVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# updated as per TC57CIM Profile part , don't exists in startd file +"""from .Base import Base class EquipmentVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -19,8 +20,8 @@ class EquipmentVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.EQ.value, ], @@ -42,10 +43,10 @@ class EquipmentVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURIcore = '', baseURIoperation = '', baseURIshortCircuit = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURIcore = '', entsoeURIoperation = '', entsoeURIshortCircuit = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURIcore = baseURIcore self.baseURIoperation = baseURIoperation @@ -60,10 +61,11 @@ def __init__(self, baseUML = '', baseURIcore = '', baseURIoperation = '', baseUR self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=EquipmentVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquivalentBranch.py b/cimpy_3/cimpy/cgmes_v3_0/EquivalentBranch.py new file mode 100644 index 00000000..b94273db --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquivalentBranch.py @@ -0,0 +1,135 @@ +from .EquivalentEquipment import EquivalentEquipment + + +class EquivalentBranch(EquivalentEquipment): + """ + The class represents equivalent branches. In cases where a transformer phase shift is modelled and the EquivalentBranch is spanning the same nodes, the impedance quantities for the EquivalentBranch shall consider the needed phase shift. + + :r: Positive sequence series resistance of the reduced branch. Default: 0.0 + :r21: Resistance from terminal sequence 2 to terminal sequence 1 .Used for steady state power flow. This attribute is optional and represent unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.r is given, then EquivalentBranch.r21 is assumed equal to EquivalentBranch.r. Usage rule : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :x: Positive sequence series reactance of the reduced branch. Default: 0.0 + :x21: Reactance from terminal sequence 2 to terminal sequence 1. Used for steady state power flow. This attribute is optional and represents an unbalanced network such as off-nominal phase shifter. If only EquivalentBranch.x is given, then EquivalentBranch.x21 is assumed equal to EquivalentBranch.x. Usage rule: EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :negativeR12: Negative sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :negativeR21: Negative sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :negativeX12: Negative sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :negativeX21: Negative sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage: EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :positiveR12: Positive sequence series resistance from terminal sequence 1 to terminal sequence 2 . Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :positiveR21: Positive sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :positiveX12: Positive sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :positiveX21: Positive sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :zeroR12: Zero sequence series resistance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909. EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :zeroR21: Zero sequence series resistance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :zeroX12: Zero sequence series reactance from terminal sequence 1 to terminal sequence 2. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + :zeroX21: Zero sequence series reactance from terminal sequence 2 to terminal sequence 1. Used for short circuit data exchange according to IEC 60909. Usage : EquivalentBranch is a result of network reduction prior to the data exchange. Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "r21": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "x21": [ + cgmesProfile.EQ.value, + ], + "negativeR12": [ + cgmesProfile.SC.value, + ], + "negativeR21": [ + cgmesProfile.SC.value, + ], + "negativeX12": [ + cgmesProfile.SC.value, + ], + "negativeX21": [ + cgmesProfile.SC.value, + ], + "positiveR12": [ + cgmesProfile.SC.value, + ], + "positiveR21": [ + cgmesProfile.SC.value, + ], + "positiveX12": [ + cgmesProfile.SC.value, + ], + "positiveX21": [ + cgmesProfile.SC.value, + ], + "zeroR12": [ + cgmesProfile.SC.value, + ], + "zeroR21": [ + cgmesProfile.SC.value, + ], + "zeroX12": [ + cgmesProfile.SC.value, + ], + "zeroX21": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__( + self, + r=0.0, + r21=0.0, + x=0.0, + x21=0.0, + negativeR12=0.0, + negativeR21=0.0, + negativeX12=0.0, + negativeX21=0.0, + positiveR12=0.0, + positiveR21=0.0, + positiveX12=0.0, + positiveX21=0.0, + zeroR12=0.0, + zeroR21=0.0, + zeroX12=0.0, + zeroX21=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.r = r + self.r21 = r21 + self.x = x + self.x21 = x21 + self.negativeR12 = negativeR12 + self.negativeR21 = negativeR21 + self.negativeX12 = negativeX12 + self.negativeX21 = negativeX21 + self.positiveR12 = positiveR12 + self.positiveR21 = positiveR21 + self.positiveX12 = positiveX12 + self.positiveX21 = positiveX21 + self.zeroR12 = zeroR12 + self.zeroR21 = zeroR21 + self.zeroX12 = zeroX12 + self.zeroX21 = zeroX21 + + def __str__(self): + str = "class=EquivalentBranch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquivalentEquipment.py b/cimpy_3/cimpy/cgmes_v3_0/EquivalentEquipment.py new file mode 100644 index 00000000..d388c1f4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquivalentEquipment.py @@ -0,0 +1,41 @@ +from .ConductingEquipment import ConductingEquipment + + +class EquivalentEquipment(ConductingEquipment): + """ + The class represents equivalent objects that are the result of a network reduction. The class is the base for equivalent objects of different types. + + :EquivalentNetwork: The equivalent where the reduced model belongs. Default: None + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "EquivalentNetwork": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, EquivalentNetwork=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EquivalentNetwork = EquivalentNetwork + + def __str__(self): + str = "class=EquivalentEquipment\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquivalentInjection.py b/cimpy_3/cimpy/cgmes_v3_0/EquivalentInjection.py new file mode 100644 index 00000000..ed843325 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquivalentInjection.py @@ -0,0 +1,136 @@ +from .EquivalentEquipment import EquivalentEquipment + + +class EquivalentInjection(EquivalentEquipment): + """ + This class represents equivalent injections (generation or load). Voltage regulation is allowed only at the point of connection. + + :regulationStatus: Specifies the regulation status of the EquivalentInjection. True is regulating. False is not regulating. Default: False + :regulationTarget: The target voltage for voltage regulation. The attribute shall be a positive value. Default: 0.0 + :p: Equivalent active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :q: Equivalent reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :maxP: Maximum active power of the injection. Default: 0.0 + :maxQ: Maximum reactive power of the injection. Used for modelling of infeed for load flow exchange. Not used for short circuit modelling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 + :minP: Minimum active power of the injection. Default: 0.0 + :minQ: Minimum reactive power of the injection. Used for modelling of infeed for load flow exchange. Not used for short circuit modelling. If maxQ and minQ are not used ReactiveCapabilityCurve can be used. Default: 0.0 + :regulationCapability: Specifies whether or not the EquivalentInjection has the capability to regulate the local voltage. If true the EquivalentInjection can regulate. If false the EquivalentInjection cannot regulate. ReactiveCapabilityCurve can only be associated with EquivalentInjection if the flag is true. Default: False + :ReactiveCapabilityCurve: The reactive capability curve used by this equivalent injection. Default: None + :r: Positive sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :r0: Zero sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :r2: Negative sequence resistance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x: Positive sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x0: Zero sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + :x2: Negative sequence reactance. Used to represent Extended-Ward (IEC 60909). Usage : Extended-Ward is a result of network reduction prior to the data exchange. Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "regulationStatus": [ + cgmesProfile.SSH.value, + ], + "regulationTarget": [ + cgmesProfile.SSH.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "regulationCapability": [ + cgmesProfile.EQ.value, + ], + "ReactiveCapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "r2": [ + cgmesProfile.SC.value, + ], + "x": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + "x2": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__( + self, + regulationStatus=False, + regulationTarget=0.0, + p=0.0, + q=0.0, + maxP=0.0, + maxQ=0.0, + minP=0.0, + minQ=0.0, + regulationCapability=False, + ReactiveCapabilityCurve=None, + r=0.0, + r0=0.0, + r2=0.0, + x=0.0, + x0=0.0, + x2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.regulationStatus = regulationStatus + self.regulationTarget = regulationTarget + self.p = p + self.q = q + self.maxP = maxP + self.maxQ = maxQ + self.minP = minP + self.minQ = minQ + self.regulationCapability = regulationCapability + self.ReactiveCapabilityCurve = ReactiveCapabilityCurve + self.r = r + self.r0 = r0 + self.r2 = r2 + self.x = x + self.x0 = x0 + self.x2 = x2 + + def __str__(self): + str = "class=EquivalentInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquivalentNetwork.py b/cimpy_3/cimpy/cgmes_v3_0/EquivalentNetwork.py new file mode 100644 index 00000000..435abce1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquivalentNetwork.py @@ -0,0 +1,39 @@ +from .ConnectivityNodeContainer import ConnectivityNodeContainer + + +class EquivalentNetwork(ConnectivityNodeContainer): + """ + A class that groups electrical equivalents, including internal nodes, of a network that has been reduced. The ConnectivityNodes contained in the equivalent are intended to reflect internal nodes of the equivalent. The boundary Connectivity nodes where the equivalent connects outside itself are not contained by the equivalent. + + :EquivalentEquipments: The associated reduced equivalents. Default: "list" + """ + + cgmesProfile = ConnectivityNodeContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EquivalentEquipments": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConnectivityNodeContainer: \n" + + ConnectivityNodeContainer.__doc__ + ) + + def __init__(self, EquivalentEquipments="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EquivalentEquipments = EquivalentEquipments + + def __str__(self): + str = "class=EquivalentNetwork\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/EquivalentShunt.py b/cimpy_3/cimpy/cgmes_v3_0/EquivalentShunt.py new file mode 100644 index 00000000..6c05469d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/EquivalentShunt.py @@ -0,0 +1,44 @@ +from .EquivalentEquipment import EquivalentEquipment + + +class EquivalentShunt(EquivalentEquipment): + """ + The class represents equivalent shunts. + + :b: Positive sequence shunt susceptance. Default: 0.0 + :g: Positive sequence shunt conductance. Default: 0.0 + """ + + cgmesProfile = EquivalentEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquivalentEquipment: \n" + + EquivalentEquipment.__doc__ + ) + + def __init__(self, b=0.0, g=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.b = b + self.g = g + + def __str__(self): + str = "class=EquivalentShunt\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC1A.py new file mode 100644 index 00000000..7551a786 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC1A.py @@ -0,0 +1,170 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC1A(ExcitationSystemDynamics): + """ + Modified IEEE AC1A alternator-supplied rectifier excitation system with different rate feedback source. + + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 400. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,02. Default: 0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 14,5. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -14,5. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 0,8. Default: 0 + :kf: Excitation control system stabilizer gains (Kf) (>= 0). Typical value = 0,03. Default: 0.0 + :kf1: Coefficient to allow different usage of the model (Kf1) (>= 0). Typical value = 0. Default: 0.0 + :kf2: Coefficient to allow different usage of the model (Kf2) (>= 0). Typical value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks) (>= 0). Typical value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (> 0). Typical value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,2. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd) (>= 0). Typical value = 0,38. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 4,18. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 0,1. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 3,14. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 0,03. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (Vrmax) (> 0). Typical value = 6,03. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin) (< 0). Typical value = -5,43. Default: 0.0 + :hvlvgates: Indicates if both HV gate and LV gate are active (HVLVgates). true = gates are used false = gates are not used. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "hvlvgates": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + kf=0.0, + kf1=0.0, + kf2=0.0, + ks=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vrmax=0.0, + vrmin=0.0, + hvlvgates=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.kf = kf + self.kf1 = kf1 + self.kf2 = kf2 + self.ks = ks + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vrmax = vrmax + self.vrmin = vrmin + self.hvlvgates = hvlvgates + + def __str__(self): + str = "class=ExcAC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC2A.py new file mode 100644 index 00000000..12afad1b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC2A.py @@ -0,0 +1,206 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC2A(ExcitationSystemDynamics): + """ + Modified IEEE AC2A alternator-supplied rectifier excitation system with different field current limit. + + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 400. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,02. Default: 0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 8. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -8. Default: 0.0 + :kb: Second stage regulator gain (Kb) (> 0). Exciter field current controller gain. Typical value = 25. Default: 0.0 + :kb1: Second stage regulator gain (Kb1). It is exciter field current controller gain used as alternative to Kb to represent a variant of the ExcAC2A model. Typical value = 25. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (Vrmax) (> 0). Typical value = 105. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin) (< 0). Typical value = -95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 0,6. Default: 0 + :vfemax: Exciter field current limit reference (Vfemax) (>= 0). Typical value = 4,4. Default: 0.0 + :kh: Exciter field current feedback gain (Kh) (>= 0). Typical value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf) (>= 0). Typical value = 0,03. Default: 0.0 + :kl: Exciter field current limiter gain (Kl). Typical value = 10. Default: 0.0 + :vlr: Maximum exciter field current (Vlr) (> 0). Typical value = 4,4. Default: 0.0 + :kl1: Coefficient to allow different usage of the model (Kl1). Typical value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks) (>= 0). Typical value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (> 0). Typical value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,28. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd) (>= 0). Typical value = 0,35. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 4,4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 0,037. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 3,3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 0,012. Default: 0.0 + :hvgate: Indicates if HV gate is active (HVgate). true = gate is used false = gate is not used. Typical value = true. Default: False + :lvgate: Indicates if LV gate is active (LVgate). true = gate is used false = gate is not used. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kb": [ + cgmesProfile.DY.value, + ], + "kb1": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "vlr": [ + cgmesProfile.DY.value, + ], + "kl1": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "hvgate": [ + cgmesProfile.DY.value, + ], + "lvgate": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + kb=0.0, + kb1=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + vfemax=0.0, + kh=0.0, + kf=0.0, + kl=0.0, + vlr=0.0, + kl1=0.0, + ks=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + hvgate=False, + lvgate=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.kb = kb + self.kb1 = kb1 + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.vfemax = vfemax + self.kh = kh + self.kf = kf + self.kl = kl + self.vlr = vlr + self.kl1 = kl1 + self.ks = ks + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.hvgate = hvgate + self.lvgate = lvgate + + def __str__(self): + str = "class=ExcAC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC3A.py new file mode 100644 index 00000000..fd5ac301 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC3A.py @@ -0,0 +1,194 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC3A(ExcitationSystemDynamics): + """ + Modified IEEE AC3A alternator-supplied rectifier excitation system with different field current limit. + + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 45,62. Default: 0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,013. Default: 0.0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -0,95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1,17. Default: 0 + :vemin: Minimum exciter voltage output (Vemin) (<= 0). Typical value = 0. Default: 0.0 + :kr: Constant associated with regulator and alternator field power supply (Kr) (> 0). Typical value =3,77. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf) (>= 0). Typical value = 0,143. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (> 0). Typical value = 1. Default: 0 + :kn: Excitation control system stabilizer gain (Kn) (>= 0). Typical value =0,05. Default: 0.0 + :efdn: Value of Efd at which feedback gain changes (Efdn) (> 0). Typical value = 2,36. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,104. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd) (>= 0). Typical value = 0,499. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :klv: Gain used in the minimum field voltage limiter loop (Klv). Typical value = 0,194. Default: 0.0 + :kf1: Coefficient to allow different usage of the model (Kf1). Typical value = 1. Default: 0.0 + :kf2: Coefficient to allow different usage of the model (Kf2). Typical value = 0. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :vfemax: Exciter field current limit reference (Vfemax) (>= 0). Typical value = 16. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 6.24. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 1,143. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 4,68. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 0,1. Default: 0.0 + :vlv: Field voltage used in the minimum field voltage limiter loop (Vlv). Typical value = 0,79. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kn": [ + cgmesProfile.DY.value, + ], + "efdn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "klv": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vlv": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0, + ta=0.0, + vamax=0.0, + vamin=0.0, + te=0, + vemin=0.0, + kr=0.0, + kf=0.0, + tf=0, + kn=0.0, + efdn=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + klv=0.0, + kf1=0.0, + kf2=0.0, + ks=0.0, + vfemax=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vlv=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.vemin = vemin + self.kr = kr + self.kf = kf + self.tf = tf + self.kn = kn + self.efdn = efdn + self.kc = kc + self.kd = kd + self.ke = ke + self.klv = klv + self.kf1 = kf1 + self.kf2 = kf2 + self.ks = ks + self.vfemax = vfemax + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vlv = vlv + + def __str__(self): + str = "class=ExcAC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC4A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC4A.py new file mode 100644 index 00000000..db8f813c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC4A.py @@ -0,0 +1,92 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC4A(ExcitationSystemDynamics): + """ + Modified IEEE AC4A alternator-supplied rectifier excitation system with different minimum controller output. + + :vimax: Maximum voltage regulator input limit (Vimax) (> 0). Typical value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin) (< 0). Typical value = -10. Default: 0.0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 1. Default: 0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 10. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 200. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,015. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 5,64. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -4,53. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + + def __str__(self): + str = "class=ExcAC4A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC5A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC5A.py new file mode 100644 index 00000000..1c6d9147 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC5A.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC5A(ExcitationSystemDynamics): + """ + Modified IEEE AC5A alternator-supplied rectifier excitation system with different minimum controller output. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 400. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 7,3. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value =-7,3. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 0,8. Default: 0 + :kf: Excitation control system stabilizer gains (Kf) (>= 0). Typical value = 0,03. Default: 0.0 + :tf1: Excitation control system stabilizer time constant (Tf1) (> 0). Typical value = 1. Default: 0 + :tf2: Excitation control system stabilizer time constant (Tf2) (>= 0). Typical value = 0,8. Default: 0 + :tf3: Excitation control system stabilizer time constant (Tf3) (>= 0). Typical value = 0. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1) (> 0). Typical value = 5,6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Efd1]) (>= 0). Typical value = 0,86. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2) (> 0). Typical value = 4,2. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]) (>= 0). Typical value = 0,5. Default: 0.0 + :a: Coefficient to allow different usage of the model (a). Typical value = 1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tf3": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + tb=0, + tc=0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf1=0, + tf2=0, + tf3=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + a=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.tb = tb + self.tc = tc + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.tf3 = tf3 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.a = a + + def __str__(self): + str = "class=ExcAC5A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC6A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC6A.py new file mode 100644 index 00000000..fdae281c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC6A.py @@ -0,0 +1,176 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC6A(ExcitationSystemDynamics): + """ + Modified IEEE AC6A alternator-supplied rectifier excitation system with speed input. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 536. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (>= 0). Typical value = 0,086. Default: 0 + :tk: Voltage regulator time constant (Tk) (>= 0). Typical value = 0,18. Default: 0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 9. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 3. Default: 0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 75. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -75. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 44. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -36. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1. Default: 0 + :kh: Exciter field current limiter gain (Kh) (>= 0). Typical value = 92. Default: 0.0 + :tj: Exciter field current limiter time constant (Tj) (>= 0). Typical value = 0,02. Default: 0 + :th: Exciter field current limiter time constant (Th) (> 0). Typical value = 0,08. Default: 0 + :vfelim: Exciter field current limit reference (Vfelim) (> 0). Typical value = 19. Default: 0.0 + :vhmax: Maximum field current limiter signal reference (Vhmax) (> 0). Typical value = 75. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,173. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd) (>= 0). Typical value = 1,91. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1,6. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 7,4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 0,214. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 5,55. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 0,044. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tk": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "tj": [ + cgmesProfile.DY.value, + ], + "th": [ + cgmesProfile.DY.value, + ], + "vfelim": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tk=0, + tb=0, + tc=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + kh=0.0, + tj=0, + th=0, + vfelim=0.0, + vhmax=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tk = tk + self.tb = tb + self.tc = tc + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kh = kh + self.tj = tj + self.th = th + self.vfelim = vfelim + self.vhmax = vhmax + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcAC6A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAC8B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAC8B.py new file mode 100644 index 00000000..710c062c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAC8B.py @@ -0,0 +1,200 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAC8B(ExcitationSystemDynamics): + """ + Modified IEEE AC8B alternator-supplied rectifier excitation system with speed input and input limiter. + + :inlim: Input limiter indicator. true = input limiter Vimax and Vimin is considered false = input limiter Vimax and Vimin is not considered. Typical value = true. Default: False + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,55. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (Kd) (>= 0). Typical value = 1,1. Default: 0.0 + :kdr: Voltage regulator derivative gain (Kdr) (>= 0). Typical value = 10. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :kir: Voltage regulator integral gain (Kir) (>= 0). Typical value = 5. Default: 0.0 + :kpr: Voltage regulator proportional gain (Kpr) (> 0 if ExcAC8B.kir = 0). Typical value = 80. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :pidlim: PID limiter indicator. true = input limiter Vpidmax and Vpidmin is considered false = input limiter Vpidmax and Vpidmin is not considered. Typical value = true. Default: False + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 0,3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 3. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (>= 0). Typical value = 0. Default: 0 + :tdr: Lag time constant (Tdr) (> 0 if ExcAC8B.kdr > 0). Typical value = 0,1. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1,2. Default: 0 + :telim: Selector for the limiter on the block (1/sTe). See diagram for meaning of true and false. Typical value = false. Default: False + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 6,5. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 9. Default: 0.0 + :vemin: Minimum exciter voltage output (Vemin) (<= 0). Typical value = 0. Default: 0.0 + :vfemax: Exciter field current limit reference (Vfemax). Typical value = 6. Default: 0.0 + :vimax: Input signal maximum (Vimax) (> ExcAC8B.vimin). Typical value = 35. Default: 0.0 + :vimin: Input signal minimum (Vimin) (< ExcAC8B.vimax). Typical value = -10. Default: 0.0 + :vpidmax: PID maximum controller output (Vpidmax) (> ExcAC8B.vpidmin). Typical value = 35. Default: 0.0 + :vpidmin: PID minimum controller output (Vpidmin) (< ExcAC8B.vpidmax). Typical value = -10. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 35. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = 0. Default: 0.0 + :vtmult: Multiply by generator`s terminal voltage indicator. true =the limits Vrmax and Vrmin are multiplied by the generator`s terminal voltage to represent a thyristor power stage fed from the generator terminals false = limits are not multiplied by generator`s terminal voltage. Typical value = false. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inlim": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "pidlim": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "telim": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vpidmax": [ + cgmesProfile.DY.value, + ], + "vpidmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vtmult": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + inlim=False, + ka=0.0, + kc=0.0, + kd=0.0, + kdr=0.0, + ke=0.0, + kir=0.0, + kpr=0.0, + ks=0.0, + pidlim=False, + seve1=0.0, + seve2=0.0, + ta=0, + tdr=0, + te=0, + telim=False, + ve1=0.0, + ve2=0.0, + vemin=0.0, + vfemax=0.0, + vimax=0.0, + vimin=0.0, + vpidmax=0.0, + vpidmin=0.0, + vrmax=0.0, + vrmin=0.0, + vtmult=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inlim = inlim + self.ka = ka + self.kc = kc + self.kd = kd + self.kdr = kdr + self.ke = ke + self.kir = kir + self.kpr = kpr + self.ks = ks + self.pidlim = pidlim + self.seve1 = seve1 + self.seve2 = seve2 + self.ta = ta + self.tdr = tdr + self.te = te + self.telim = telim + self.ve1 = ve1 + self.ve2 = ve2 + self.vemin = vemin + self.vfemax = vfemax + self.vimax = vimax + self.vimin = vimin + self.vpidmax = vpidmax + self.vpidmin = vpidmin + self.vrmax = vrmax + self.vrmin = vrmin + self.vtmult = vtmult + + def __str__(self): + str = "class=ExcAC8B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcANS.py b/cimpy_3/cimpy/cgmes_v3_0/ExcANS.py new file mode 100644 index 00000000..9ce32e4a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcANS.py @@ -0,0 +1,122 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcANS(ExcitationSystemDynamics): + """ + Italian excitation system. It represents static field voltage or excitation current feedback excitation system. + + :k3: AVR gain (K3). Typical value = 1000. Default: 0.0 + :k2: Exciter gain (K2). Typical value = 20. Default: 0.0 + :kce: Ceiling factor (KCE). Typical value = 1. Default: 0.0 + :t3: Time constant (T3) (>= 0). Typical value = 1,6. Default: 0 + :t2: Time constant (T2) (>= 0). Typical value = 0,05. Default: 0 + :t1: Time constant (T1) (>= 0). Typical value = 20. Default: 0 + :blint: Governor control flag (BLINT). 0 = lead-lag regulator 1 = proportional integral regulator. Typical value = 0. Default: 0 + :kvfif: Rate feedback signal flag (KVFIF). 0 = output voltage of the exciter 1 = exciter field current. Typical value = 0. Default: 0 + :ifmn: Minimum exciter current (IFMN). Typical value = -5,2. Default: 0.0 + :ifmx: Maximum exciter current (IFMX). Typical value = 6,5. Default: 0.0 + :vrmn: Minimum AVR output (VRMN). Typical value = -5,2. Default: 0.0 + :vrmx: Maximum AVR output (VRMX). Typical value = 6,5. Default: 0.0 + :krvecc: Feedback enabling (KRVECC). 0 = open loop control 1 = closed loop control. Typical value = 1. Default: 0 + :tb: Exciter time constant (TB) (>= 0). Typical value = 0,04. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "kce": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "blint": [ + cgmesProfile.DY.value, + ], + "kvfif": [ + cgmesProfile.DY.value, + ], + "ifmn": [ + cgmesProfile.DY.value, + ], + "ifmx": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "krvecc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k3=0.0, + k2=0.0, + kce=0.0, + t3=0, + t2=0, + t1=0, + blint=0, + kvfif=0, + ifmn=0.0, + ifmx=0.0, + vrmn=0.0, + vrmx=0.0, + krvecc=0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k3 = k3 + self.k2 = k2 + self.kce = kce + self.t3 = t3 + self.t2 = t2 + self.t1 = t1 + self.blint = blint + self.kvfif = kvfif + self.ifmn = ifmn + self.ifmx = ifmx + self.vrmn = vrmn + self.vrmx = vrmx + self.krvecc = krvecc + self.tb = tb + + def __str__(self): + str = "class=ExcANS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR1.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR1.py new file mode 100644 index 00000000..10a9f2ef --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR1.py @@ -0,0 +1,110 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR1(ExcitationSystemDynamics): + """ + Italian excitation system corresponding to IEEE (1968) type 1 model. It represents an exciter dynamo and electromechanical regulator. + + :ka: AVR gain (KA). Typical value = 500. Default: 0.0 + :vrmn: Minimum AVR output (VRMN). Typical value = -6. Default: 0.0 + :vrmx: Maximum AVR output (VRMX). Typical value = 7. Default: 0.0 + :ta: AVR time constant (TA) (>= 0). Typical value = 0,2. Default: 0 + :tb: AVR time constant (TB) (>= 0). Typical value = 0. Default: 0 + :te: Exciter time constant (TE) (>= 0). Typical value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical value = 4.18. Default: 0.0 + :se1: Saturation factor at E1 (S[E1]). Typical value = 0,1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical value = 3,14. Default: 0.0 + :se2: Saturation factor at E2 (S[E2]). Typical value = 0,03. Default: 0.0 + :kf: Rate feedback gain (KF). Typical value = 0,12. Default: 0.0 + :tf: Rate feedback time constant (TF) (>= 0). Typical value = 1. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + ta=0, + tb=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kf=0.0, + tf=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.ta = ta + self.tb = tb + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kf = kf + self.tf = tf + + def __str__(self): + str = "class=ExcAVR1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR2.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR2.py new file mode 100644 index 00000000..2788ed24 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR2.py @@ -0,0 +1,116 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR2(ExcitationSystemDynamics): + """ + Italian excitation system corresponding to IEEE (1968) type 2 model. It represents an alternator and rotating diodes and electromechanic voltage regulators. + + :ka: AVR gain (KA). Typical value = 500. Default: 0.0 + :vrmn: Minimum AVR output (VRMN). Typical value = -6. Default: 0.0 + :vrmx: Maximum AVR output (VRMX). Typical value = 7. Default: 0.0 + :ta: AVR time constant (TA) (>= 0). Typical value = 0,02. Default: 0 + :tb: AVR time constant (TB) (>= 0). Typical value = 0. Default: 0 + :te: Exciter time constant (TE) (>= 0). Typical value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical value = 4,18. Default: 0.0 + :se1: Saturation factor at E1 (S[E1]). Typical value = 0.1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical value = 3,14. Default: 0.0 + :se2: Saturation factor at E2 (S[E2]). Typical value = 0,03. Default: 0.0 + :kf: Rate feedback gain (KF). Typical value = 0,12. Default: 0.0 + :tf1: Rate feedback time constant (TF1) (>= 0). Typical value = 1. Default: 0 + :tf2: Rate feedback time constant (TF2) (>= 0). Typical value = 1. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + ta=0, + tb=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kf=0.0, + tf1=0, + tf2=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.ta = ta + self.tb = tb + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + + def __str__(self): + str = "class=ExcAVR2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR3.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR3.py new file mode 100644 index 00000000..6e859726 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR3.py @@ -0,0 +1,110 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR3(ExcitationSystemDynamics): + """ + Italian excitation system. It represents an exciter dynamo and electric regulator. + + :ka: AVR gain (KA). Typical value = 100. Default: 0.0 + :vrmn: Minimum AVR output (VRMN). Typical value = -7,5. Default: 0.0 + :vrmx: Maximum AVR output (VRMX). Typical value = 7,5. Default: 0.0 + :t1: AVR time constant (T1) (>= 0). Typical value = 20. Default: 0 + :t2: AVR time constant (T2) (>= 0). Typical value = 1,6. Default: 0 + :t3: AVR time constant (T3) (>= 0). Typical value = 0,66. Default: 0 + :t4: AVR time constant (T4) (>= 0). Typical value = 0,07. Default: 0 + :te: Exciter time constant (TE) (>= 0). Typical value = 1. Default: 0 + :e1: Field voltage value 1 (E1). Typical value = 4,18. Default: 0.0 + :se1: Saturation factor at E1 (S[E1]). Typical value = 0,1. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical value = 3,14. Default: 0.0 + :se2: Saturation factor at E2 (S[E2]). Typical value = 0,03. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + + def __str__(self): + str = "class=ExcAVR3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR4.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR4.py new file mode 100644 index 00000000..4616a88b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR4.py @@ -0,0 +1,122 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR4(ExcitationSystemDynamics): + """ + Italian excitation system. It represents a static exciter and electric voltage regulator. + + :ka: AVR gain (KA). Typical value = 300. Default: 0.0 + :vrmn: Minimum AVR output (VRMN). Typical value = 0. Default: 0.0 + :vrmx: Maximum AVR output (VRMX). Typical value = 5. Default: 0.0 + :t1: AVR time constant (T1) (>= 0). Typical value = 4,8. Default: 0 + :t2: AVR time constant (T2) (>= 0). Typical value = 1,5. Default: 0 + :t3: AVR time constant (T3) (>= 0). Typical value = 0. Default: 0 + :t4: AVR time constant (T4) (>= 0). Typical value = 0. Default: 0 + :ke: Exciter gain (KE). Typical value = 1. Default: 0.0 + :vfmx: Maximum exciter output (VFMX). Typical value = 5. Default: 0.0 + :vfmn: Minimum exciter output (VFMN). Typical value = 0. Default: 0.0 + :kif: Exciter internal reactance (KIF). Typical value = 0. Default: 0.0 + :tif: Exciter current feedback time constant (TIF) (>= 0). Typical value = 0. Default: 0 + :t1if: Exciter current feedback time constant (T1IF) (>= 0). Typical value = 60. Default: 0 + :imul: AVR output voltage dependency selector (IMUL). true = selector is connected false = selector is not connected. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "vrmn": [ + cgmesProfile.DY.value, + ], + "vrmx": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vfmx": [ + cgmesProfile.DY.value, + ], + "vfmn": [ + cgmesProfile.DY.value, + ], + "kif": [ + cgmesProfile.DY.value, + ], + "tif": [ + cgmesProfile.DY.value, + ], + "t1if": [ + cgmesProfile.DY.value, + ], + "imul": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + vrmn=0.0, + vrmx=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + ke=0.0, + vfmx=0.0, + vfmn=0.0, + kif=0.0, + tif=0, + t1if=0, + imul=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.vrmn = vrmn + self.vrmx = vrmx + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.ke = ke + self.vfmx = vfmx + self.vfmn = vfmn + self.kif = kif + self.tif = tif + self.t1if = t1if + self.imul = imul + + def __str__(self): + str = "class=ExcAVR4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR5.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR5.py new file mode 100644 index 00000000..d29c11a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR5.py @@ -0,0 +1,49 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR5(ExcitationSystemDynamics): + """ + Manual excitation control with field circuit resistance. This model can be used as a very simple representation of manual voltage control. + + :ka: Gain (Ka). Default: 0.0 + :ta: Time constant (Ta) (>= 0). Default: 0 + :rex: Effective output resistance (Rex). Rex represents the effective output resistance seen by the excitation system. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "rex": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__(self, ka=0.0, ta=0, rex=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.rex = rex + + def __str__(self): + str = "class=ExcAVR5\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcAVR7.py b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR7.py new file mode 100644 index 00000000..4b497b41 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcAVR7.py @@ -0,0 +1,164 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcAVR7(ExcitationSystemDynamics): + """ + IVO excitation system. + + :k1: Gain (K1). Typical value = 1. Default: 0.0 + :a1: Lead coefficient (A1). Typical value = 0,5. Default: 0.0 + :a2: Lag coefficient (A2). Typical value = 0,5. Default: 0.0 + :t1: Lead time constant (T1) (>= 0). Typical value = 0,05. Default: 0 + :t2: Lag time constant (T2) (>= 0). Typical value = 0,1. Default: 0 + :vmax1: Lead-lag maximum limit (Vmax1) (> ExcAVR7.vmin1). Typical value = 5. Default: 0.0 + :vmin1: Lead-lag minimum limit (Vmin1) (< ExcAVR7.vmax1). Typical value = -5. Default: 0.0 + :k3: Gain (K3). Typical value = 3. Default: 0.0 + :a3: Lead coefficient (A3). Typical value = 0,5. Default: 0.0 + :a4: Lag coefficient (A4). Typical value = 0,5. Default: 0.0 + :t3: Lead time constant (T3) (>= 0). Typical value = 0,1. Default: 0 + :t4: Lag time constant (T4) (>= 0). Typical value = 0,1. Default: 0 + :vmax3: Lead-lag maximum limit (Vmax3) (> ExcAVR7.vmin3). Typical value = 5. Default: 0.0 + :vmin3: Lead-lag minimum limit (Vmin3) (< ExcAVR7.vmax3). Typical value = -5. Default: 0.0 + :k5: Gain (K5). Typical value = 1. Default: 0.0 + :a5: Lead coefficient (A5). Typical value = 0,5. Default: 0.0 + :a6: Lag coefficient (A6). Typical value = 0,5. Default: 0.0 + :t5: Lead time constant (T5) (>= 0). Typical value = 0,1. Default: 0 + :t6: Lag time constant (T6) (>= 0). Typical value = 0,1. Default: 0 + :vmax5: Lead-lag maximum limit (Vmax5) (> ExcAVR7.vmin5). Typical value = 5. Default: 0.0 + :vmin5: Lead-lag minimum limit (Vmin5) (< ExcAVR7.vmax5). Typical value = -2. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "vmax1": [ + cgmesProfile.DY.value, + ], + "vmin1": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "vmax3": [ + cgmesProfile.DY.value, + ], + "vmin3": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vmax5": [ + cgmesProfile.DY.value, + ], + "vmin5": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + vmax1=0.0, + vmin1=0.0, + k3=0.0, + a3=0.0, + a4=0.0, + t3=0, + t4=0, + vmax3=0.0, + vmin3=0.0, + k5=0.0, + a5=0.0, + a6=0.0, + t5=0, + t6=0, + vmax5=0.0, + vmin5=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.vmax1 = vmax1 + self.vmin1 = vmin1 + self.k3 = k3 + self.a3 = a3 + self.a4 = a4 + self.t3 = t3 + self.t4 = t4 + self.vmax3 = vmax3 + self.vmin3 = vmin3 + self.k5 = k5 + self.a5 = a5 + self.a6 = a6 + self.t5 = t5 + self.t6 = t6 + self.vmax5 = vmax5 + self.vmin5 = vmin5 + + def __str__(self): + str = "class=ExcAVR7\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcBBC.py b/cimpy_3/cimpy/cgmes_v3_0/ExcBBC.py new file mode 100644 index 00000000..27699607 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcBBC.py @@ -0,0 +1,104 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcBBC(ExcitationSystemDynamics): + """ + Transformer fed static excitation system (static with ABB regulator). This model represents a static excitation system in which a gated thyristor bridge fed by a transformer at the main generator terminals feeds the main generator directly. + + :t1: Controller time constant (T1) (>= 0). Typical value = 6. Default: 0 + :t2: Controller time constant (T2) (>= 0). Typical value = 1. Default: 0 + :t3: Lead/lag time constant (T3) (>= 0). If = 0, block is bypassed. Typical value = 0,05. Default: 0 + :t4: Lead/lag time constant (T4) (>= 0). If = 0, block is bypassed. Typical value = 0,01. Default: 0 + :k: Steady state gain (K) (not = 0). Typical value = 300. Default: 0.0 + :vrmin: Minimum control element output (Vrmin) (< ExcBBC.vrmax). Typical value = -5. Default: 0.0 + :vrmax: Maximum control element output (Vrmax) (> ExcBBC.vrmin). Typical value = 5. Default: 0.0 + :efdmin: Minimum open circuit exciter voltage (Efdmin) (< ExcBBC.efdmax). Typical value = -5. Default: 0.0 + :efdmax: Maximum open circuit exciter voltage (Efdmax) (> ExcBBC.efdmin). Typical value = 5. Default: 0.0 + :xe: Effective excitation transformer reactance (Xe) (>= 0). Xe models the regulation of the transformer/rectifier unit. Typical value = 0,05. Default: 0.0 + :switch: Supplementary signal routing selector (switch). true = Vs connected to 3rd summing point false = Vs connected to 1st summing point (see diagram). Typical value = false. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + "switch": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + vrmin=0.0, + vrmax=0.0, + efdmin=0.0, + efdmax=0.0, + xe=0.0, + switch=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.vrmin = vrmin + self.vrmax = vrmax + self.efdmin = efdmin + self.efdmax = efdmax + self.xe = xe + self.switch = switch + + def __str__(self): + str = "class=ExcBBC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcCZ.py b/cimpy_3/cimpy/cgmes_v3_0/ExcCZ.py new file mode 100644 index 00000000..a25ffe14 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcCZ.py @@ -0,0 +1,98 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcCZ(ExcitationSystemDynamics): + """ + Czech proportion/integral exciter. + + :kp: Regulator proportional gain (Kp). Default: 0.0 + :tc: Regulator integral time constant (Tc) (>= 0). Default: 0 + :vrmax: Voltage regulator maximum limit (Vrmax) (> ExcCZ.vrmin). Default: 0.0 + :vrmin: Voltage regulator minimum limit (Vrmin) (< ExcCZ.vrmax). Default: 0.0 + :ka: Regulator gain (Ka). Default: 0.0 + :ta: Regulator time constant (Ta) (>= 0). Default: 0 + :ke: Exciter constant related to self-excited field (Ke). Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (>= 0). Default: 0 + :efdmax: Exciter output maximum limit (Efdmax) (> ExcCZ.efdmin). Default: 0.0 + :efdmin: Exciter output minimum limit (Efdmin) (< ExcCZ.efdmax). Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kp=0.0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ka=0.0, + ta=0, + ke=0.0, + te=0, + efdmax=0.0, + efdmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kp = kp + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ka = ka + self.ta = ta + self.ke = ke + self.te = te + self.efdmax = efdmax + self.efdmin = efdmin + + def __str__(self): + str = "class=ExcCZ\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcDC1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcDC1A.py new file mode 100644 index 00000000..d56e6783 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcDC1A.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC1A(ExcitationSystemDynamics): + """ + Modified IEEE DC1A direct current commutator exciter with speed input and without underexcitation limiters (UEL) inputs. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 46. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,06. Default: 0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> ExcDC1A.vrmin). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0 and < ExcDC1A.vrmax). Typical value = -0,9. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 0,46. Default: 0 + :kf: Excitation control system stabilizer gain (Kf) (>= 0). Typical value = 0,1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (> 0). Typical value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1) (> 0). Typical value = 3,1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Eefd1]) (>= 0). Typical value = 0,33. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2) (> 0). Typical value = 2,3. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Eefd2]) (>= 0). Typical value = 0,1. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical value = true. Default: False + :efdmin: Minimum voltage exciter output limiter (Efdmin) (< ExcDC1A.edfmax). Typical value = -99. Default: 0.0 + :efdmax: Maximum voltage exciter output limiter (Efdmax) (> ExcDC1A.efdmin). Typical value = 99. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + efdmin=0.0, + efdmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.efdmin = efdmin + self.efdmax = efdmax + + def __str__(self): + str = "class=ExcDC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcDC2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcDC2A.py new file mode 100644 index 00000000..d626029f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcDC2A.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC2A(ExcitationSystemDynamics): + """ + Modified IEEE DC2A direct current commutator exciter with speed input, one more leg block in feedback loop and without underexcitation limiters (UEL) inputs. DC type 2 excitation system model with added speed multiplier, added lead-lag, and voltage-dependent limits. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 300. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,01. Default: 0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> ExcDC2A.vrmin). Typical value = 4,95. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0 and < ExcDC2A.vrmax). Typical value = -4,9. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). If Ke is entered as zero, the model calculates an effective value of Ke such that the initial condition value of Vr is zero. The zero value of Ke is not changed. If Ke is entered as non-zero, its value is used directly, without change. Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1,33. Default: 0 + :kf: Excitation control system stabilizer gain (Kf) (>= 0). Typical value = 0,1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (> 0). Typical value = 0,675. Default: 0 + :tf1: Excitation control system stabilizer time constant (Tf1) (>= 0). Typical value = 0. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1) (> 0). Typical value = 3,05. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Efd1]) (>= 0). Typical value = 0,279. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2) (> 0). Typical value = 2,29. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]) (>= 0). Typical value = 0,117. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical value = true. Default: False + :vtlim: (Vtlim). true = limiter at the block (Ka / [1 + sTa]) is dependent on Vt false = limiter at the block is not dependent on Vt. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "vtlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ks=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + tf1=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + vtlim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ks = ks + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.tf1 = tf1 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.vtlim = vtlim + + def __str__(self): + str = "class=ExcDC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A.py new file mode 100644 index 00000000..12f9ad97 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A.py @@ -0,0 +1,134 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC3A(ExcitationSystemDynamics): + """ + Modified IEEE DC3A direct current commutator exciter with speed input, and deadband. DC old type 4. + + :trh: Rheostat travel time (Trh) (> 0). Typical value = 20. Default: 0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :kr: Deadband (Kr). Typical value = 0. Default: 0.0 + :kv: Fast raise/lower contact setting (Kv) (> 0). Typical value = 0,05. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (<= 0). Typical value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1,83. Default: 0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :efd1: Exciter voltage at which exciter saturation is defined (Efd1) (> 0). Typical value = 2,6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, Efd1 (Se[Efd1]) (>= 0). Typical value = 0,1. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (Efd2) (> 0). Typical value = 3,45. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, Efd2 (Se[Efd2]) (>= 0). Typical value = 0,35. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero not applied to integrator output. Typical value = true. Default: False + :efdmax: Maximum voltage exciter output limiter (Efdmax) (> ExcDC3A.efdmin). Typical value = 99. Default: 0.0 + :efdmin: Minimum voltage exciter output limiter (Efdmin) (< ExcDC3A.efdmax). Typical value = -99. Default: 0.0 + :efdlim: (Efdlim). true = exciter output limiter is active false = exciter output limiter not active. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kv": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + trh=0, + ks=0.0, + kr=0.0, + kv=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + ke=0.0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + efdmax=0.0, + efdmin=0.0, + efdlim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.trh = trh + self.ks = ks + self.kr = kr + self.kv = kv + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.ke = ke + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + self.efdmax = efdmax + self.efdmin = efdmin + self.efdlim = efdlim + + def __str__(self): + str = "class=ExcDC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A1.py b/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A1.py new file mode 100644 index 00000000..c4d17154 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcDC3A1.py @@ -0,0 +1,122 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcDC3A1(ExcitationSystemDynamics): + """ + Modified old IEEE type 3 excitation system. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 300. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,01. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> ExcDC3A1.vrmin). Typical value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0 and < ExcDC3A1.vrmax). Typical value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 1,83. Default: 0 + :kf: Excitation control system stabilizer gain (Kf) (>= 0). Typical value = 0,1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (>= 0). Typical value = 0,675. Default: 0 + :kp: Potential circuit gain coefficient (Kp) (>= 0). Typical value = 4,37. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki) (>= 0). Typical value = 4,83. Default: 0.0 + :vbmax: Available exciter voltage limiter (Vbmax) (> 0). Typical value = 11,63. Default: 0.0 + :exclim: (exclim). true = lower limit of zero is applied to integrator output false = lower limit of zero not applied to integrator output. Typical value = true. Default: False + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :vb1max: Available exciter voltage limiter (Vb1max) (> 0). Typical value = 11,63. Default: 0.0 + :vblim: Vb limiter indicator. true = exciter Vbmax limiter is active false = Vb1max is active. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vb1max": [ + cgmesProfile.DY.value, + ], + "vblim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + vbmax=0.0, + exclim=False, + ke=0.0, + vb1max=0.0, + vblim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.vbmax = vbmax + self.exclim = exclim + self.ke = ke + self.vb1max = vb1max + self.vblim = vblim + + def __str__(self): + str = "class=ExcDC3A1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcELIN1.py b/cimpy_3/cimpy/cgmes_v3_0/ExcELIN1.py new file mode 100644 index 00000000..9ceba5de --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcELIN1.py @@ -0,0 +1,128 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcELIN1(ExcitationSystemDynamics): + """ + Static PI transformer fed excitation system ELIN (VATECH) - simplified model. This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. A power system stabilizer with power input is included in the model. + + :tfi: Current transducer time constant (Tfi) (>= 0). Typical value = 0. Default: 0 + :tnu: Controller reset time constant (Tnu) (>= 0). Typical value = 2. Default: 0 + :vpu: Voltage controller proportional gain (Vpu). Typical value = 34,5. Default: 0.0 + :vpi: Current controller gain (Vpi). Typical value = 12,45. Default: 0.0 + :vpnf: Controller follow up gain (Vpnf). Typical value = 2. Default: 0.0 + :dpnf: Controller follow up deadband (Dpnf). Typical value = 0. Default: 0.0 + :tsw: Stabilizer parameters (Tsw) (>= 0). Typical value = 3. Default: 0 + :efmin: Minimum open circuit excitation voltage (Efmin) (< ExcELIN1.efmax). Typical value = -5. Default: 0.0 + :efmax: Maximum open circuit excitation voltage (Efmax) (> ExcELIN1.efmin). Typical value = 5. Default: 0.0 + :xe: Excitation transformer effective reactance (Xe) (>= 0). Xe represents the regulation of the transformer/rectifier unit. Typical value = 0,06. Default: 0.0 + :ks1: Stabilizer gain 1 (Ks1). Typical value = 0. Default: 0.0 + :ks2: Stabilizer gain 2 (Ks2). Typical value = 0. Default: 0.0 + :ts1: Stabilizer phase lag time constant (Ts1) (>= 0). Typical value = 1. Default: 0 + :ts2: Stabilizer filter time constant (Ts2) (>= 0). Typical value = 1. Default: 0 + :smax: Stabilizer limit output (smax). Typical value = 0,1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tfi": [ + cgmesProfile.DY.value, + ], + "tnu": [ + cgmesProfile.DY.value, + ], + "vpu": [ + cgmesProfile.DY.value, + ], + "vpi": [ + cgmesProfile.DY.value, + ], + "vpnf": [ + cgmesProfile.DY.value, + ], + "dpnf": [ + cgmesProfile.DY.value, + ], + "tsw": [ + cgmesProfile.DY.value, + ], + "efmin": [ + cgmesProfile.DY.value, + ], + "efmax": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ts1": [ + cgmesProfile.DY.value, + ], + "ts2": [ + cgmesProfile.DY.value, + ], + "smax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tfi=0, + tnu=0, + vpu=0.0, + vpi=0.0, + vpnf=0.0, + dpnf=0.0, + tsw=0, + efmin=0.0, + efmax=0.0, + xe=0.0, + ks1=0.0, + ks2=0.0, + ts1=0, + ts2=0, + smax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tfi = tfi + self.tnu = tnu + self.vpu = vpu + self.vpi = vpi + self.vpnf = vpnf + self.dpnf = dpnf + self.tsw = tsw + self.efmin = efmin + self.efmax = efmax + self.xe = xe + self.ks1 = ks1 + self.ks2 = ks2 + self.ts1 = ts1 + self.ts2 = ts2 + self.smax = smax + + def __str__(self): + str = "class=ExcELIN1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcELIN2.py b/cimpy_3/cimpy/cgmes_v3_0/ExcELIN2.py new file mode 100644 index 00000000..744510eb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcELIN2.py @@ -0,0 +1,200 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcELIN2(ExcitationSystemDynamics): + """ + Detailed excitation system ELIN (VATECH). This model represents an all-static excitation system. A PI voltage controller establishes a desired field current set point for a proportional current controller. The integrator of the PI controller has a follow-up input to match its signal to the present field current. Power system stabilizer models used in conjunction with this excitation system model: PssELIN2, PssIEEE2B, Pss2B. + + :k1: Voltage regulator input gain (K1). Typical value = 0. Default: 0.0 + :k1ec: Voltage regulator input limit (K1ec). Typical value = 2. Default: 0.0 + :kd1: Voltage controller derivative gain (Kd1). Typical value = 34,5. Default: 0.0 + :tb1: Voltage controller derivative washout time constant (Tb1) (>= 0). Typical value = 12,45. Default: 0 + :pid1max: Controller follow up gain (PID1max). Typical value = 2. Default: 0.0 + :ti1: Controller follow up deadband (Ti1). Typical value = 0. Default: 0.0 + :iefmax2: Minimum open circuit excitation voltage (Iefmax2). Typical value = -5. Default: 0.0 + :k2: Gain (K2). Typical value = 5. Default: 0.0 + :ketb: Gain (Ketb). Typical value = 0,06. Default: 0.0 + :upmax: Limiter (Upmax) (> ExcELIN2.upmin). Typical value = 3. Default: 0.0 + :upmin: Limiter (Upmin) (< ExcELIN2.upmax). Typical value = 0. Default: 0.0 + :te: Time constant (Te) (>= 0). Typical value = 0. Default: 0 + :xp: Excitation transformer effective reactance (Xp). Typical value = 1. Default: 0.0 + :te2: Time Constant (Te2) (>= 0). Typical value = 1. Default: 0 + :ke2: Gain (Ke2). Typical value = 0,1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve1) (> 0). Typical value = 3. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, Ve1, back of commutating reactance (Se[Ve1]) (>= 0). Typical value = 0. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (Ve2) (> 0). Typical value = 0. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, Ve2, back of commutating reactance (Se[Ve2]) (>= 0). Typical value = 1. Default: 0.0 + :tr4: Time constant (Tr4) (>= 0). Typical value = 1. Default: 0 + :k3: Gain (K3). Typical value = 0,1. Default: 0.0 + :ti3: Time constant (Ti3) (>= 0). Typical value = 3. Default: 0 + :k4: Gain (K4). Typical value = 0. Default: 0.0 + :ti4: Time constant (Ti4) (>= 0). Typical value = 0. Default: 0 + :iefmax: Limiter (Iefmax) (> ExcELIN2.iefmin). Typical value = 1. Default: 0.0 + :iefmin: Limiter (Iefmin) (< ExcELIN2.iefmax). Typical value = 1. Default: 0.0 + :efdbas: Gain (Efdbas). Typical value = 0,1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k1ec": [ + cgmesProfile.DY.value, + ], + "kd1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "pid1max": [ + cgmesProfile.DY.value, + ], + "ti1": [ + cgmesProfile.DY.value, + ], + "iefmax2": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ketb": [ + cgmesProfile.DY.value, + ], + "upmax": [ + cgmesProfile.DY.value, + ], + "upmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "xp": [ + cgmesProfile.DY.value, + ], + "te2": [ + cgmesProfile.DY.value, + ], + "ke2": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "tr4": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "ti3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "ti4": [ + cgmesProfile.DY.value, + ], + "iefmax": [ + cgmesProfile.DY.value, + ], + "iefmin": [ + cgmesProfile.DY.value, + ], + "efdbas": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + k1ec=0.0, + kd1=0.0, + tb1=0, + pid1max=0.0, + ti1=0.0, + iefmax2=0.0, + k2=0.0, + ketb=0.0, + upmax=0.0, + upmin=0.0, + te=0, + xp=0.0, + te2=0, + ke2=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + tr4=0, + k3=0.0, + ti3=0, + k4=0.0, + ti4=0, + iefmax=0.0, + iefmin=0.0, + efdbas=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.k1ec = k1ec + self.kd1 = kd1 + self.tb1 = tb1 + self.pid1max = pid1max + self.ti1 = ti1 + self.iefmax2 = iefmax2 + self.k2 = k2 + self.ketb = ketb + self.upmax = upmax + self.upmin = upmin + self.te = te + self.xp = xp + self.te2 = te2 + self.ke2 = ke2 + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.tr4 = tr4 + self.k3 = k3 + self.ti3 = ti3 + self.k4 = k4 + self.ti4 = ti4 + self.iefmax = iefmax + self.iefmin = iefmin + self.efdbas = efdbas + + def __str__(self): + str = "class=ExcELIN2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcHU.py b/cimpy_3/cimpy/cgmes_v3_0/ExcHU.py new file mode 100644 index 00000000..7ef6039f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcHU.py @@ -0,0 +1,110 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcHU(ExcitationSystemDynamics): + """ + Hungarian excitation system, with built-in voltage transducer. + + :tr: Filter time constant (Tr) (>= 0). If a voltage compensator is used in conjunction with this excitation system model, Tr should be set to 0. Typical value = 0,01. Default: 0 + :te: Major loop PI tag integration time constant (Te) (>= 0). Typical value = 0,154. Default: 0 + :imin: Major loop PI tag output signal lower limit (Imin) (< ExcHU.imax). Typical value = 0,1. Default: 0.0 + :imax: Major loop PI tag output signal upper limit (Imax) (> ExcHU.imin). Typical value = 2,19. Default: 0.0 + :ae: Major loop PI tag gain factor (Ae). Typical value = 3. Default: 0.0 + :emin: Field voltage control signal lower limit on AVR base (Emin) (< ExcHU.emax). Typical value = -0,866. Default: 0.0 + :emax: Field voltage control signal upper limit on AVR base (Emax) (> ExcHU.emin). Typical value = 0,996. Default: 0.0 + :ki: Current base conversion constant (Ki). Typical value = 0,21428. Default: 0.0 + :ai: Minor loop PI tag gain factor (Ai). Typical value = 22. Default: 0.0 + :ti: Minor loop PI control tag integration time constant (Ti) (>= 0). Typical value = 0,01333. Default: 0 + :atr: AVR constant (Atr). Typical value = 2,19. Default: 0.0 + :ke: Voltage base conversion constant (Ke). Typical value = 4,666. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "imin": [ + cgmesProfile.DY.value, + ], + "imax": [ + cgmesProfile.DY.value, + ], + "ae": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "ai": [ + cgmesProfile.DY.value, + ], + "ti": [ + cgmesProfile.DY.value, + ], + "atr": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tr=0, + te=0, + imin=0.0, + imax=0.0, + ae=0.0, + emin=0.0, + emax=0.0, + ki=0.0, + ai=0.0, + ti=0, + atr=0.0, + ke=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tr = tr + self.te = te + self.imin = imin + self.imax = imax + self.ae = ae + self.emin = emin + self.emax = emax + self.ki = ki + self.ai = ai + self.ti = ti + self.atr = atr + self.ke = ke + + def __str__(self): + str = "class=ExcHU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC1A.py new file mode 100644 index 00000000..fb5dd0d0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC1A.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC1A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC1A model. The model represents the field-controlled alternator-rectifier excitation systems designated type AC1A. These excitation systems consist of an alternator main exciter with non-controlled rectifiers. Reference: IEEE 421.5-2005, 6.1. + + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 400. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,02. Default: 0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 14,5. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -14,5. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,8. Default: 0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0,03. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,2. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 0,38. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 4,18. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 0,1. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 3,14. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 0,03. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (VRMAX) (> 0). Typical value = 6,03. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (VRMIN) (< 0). Typical value = -5,43. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEAC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC2A.py new file mode 100644 index 00000000..874d0d75 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC2A.py @@ -0,0 +1,164 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC2A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC2A model. The model represents a high initial response field-controlled alternator-rectifier excitation system. The alternator main exciter is used with non-controlled rectifiers. The type AC2A model is similar to that of type AC1A except for the inclusion of exciter time constant compensation and exciter field current limiting elements. Reference: IEEE 421.5-2005, 6.2. + + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 400. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,02. Default: 0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 8. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -8. Default: 0.0 + :kb: Second stage regulator gain (KB) (> 0). Typical value = 25. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (VRMAX) (> 0). Typical value = 105. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (VRMIN) (< 0). Typical value = -95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,6. Default: 0 + :vfemax: Exciter field current limit reference (VFEMAX) (> 0). Typical value = 4,4. Default: 0.0 + :kh: Exciter field current feedback gain (KH) (>= 0). Typical value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0,03. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 1. Default: 0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,28. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 0,35. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE) (>= 0). Typical value = 1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 4,4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 0,037. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 3,3. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 0,012. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kb": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + kb=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + vfemax=0.0, + kh=0.0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.kb = kb + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.vfemax = vfemax + self.kh = kh + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC3A.py new file mode 100644 index 00000000..14b71587 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC3A.py @@ -0,0 +1,164 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC3A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC3A model. The model represents the field-controlled alternator-rectifier excitation systems designated type AC3A. These excitation systems include an alternator main exciter with non-controlled rectifiers. The exciter employs self-excitation, and the voltage regulator power is derived from the exciter output voltage. Therefore, this system has an additional nonlinearity, simulated by the use of a multiplier whose inputs are the voltage regulator command signal, Va, and the exciter output voltage, Efd, times KR. This model is applicable to excitation systems employing static voltage regulators. Reference: IEEE 421.5-2005, 6.3. + + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 0. Default: 0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 45,62. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,013. Default: 0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -0,95. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 1,17. Default: 0 + :vemin: Minimum exciter voltage output (VEMIN) (<= 0). Typical value = 0. Default: 0.0 + :kr: Constant associated with regulator and alternator field power supply (KR) (> 0). Typical value = 3,77. Default: 0.0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0,143. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 1. Default: 0 + :kn: Excitation control system stabilizer gain (KN) (>= 0). Typical value = 0,05. Default: 0.0 + :efdn: Value of Efd at which feedback gain changes (EFDN) (> 0). Typical value = 2,36. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,104. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 0,499. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :vfemax: Exciter field current limit reference (VFEMAX) (>= 0). Typical value = 16. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 6,24. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 1,143. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 4,68. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 0,1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kn": [ + cgmesProfile.DY.value, + ], + "efdn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tb=0, + tc=0, + ka=0.0, + ta=0, + vamax=0.0, + vamin=0.0, + te=0, + vemin=0.0, + kr=0.0, + kf=0.0, + tf=0, + kn=0.0, + efdn=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + vfemax=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tb = tb + self.tc = tc + self.ka = ka + self.ta = ta + self.vamax = vamax + self.vamin = vamin + self.te = te + self.vemin = vemin + self.kr = kr + self.kf = kf + self.tf = tf + self.kn = kn + self.efdn = efdn + self.kc = kc + self.kd = kd + self.ke = ke + self.vfemax = vfemax + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC4A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC4A.py new file mode 100644 index 00000000..70f1e486 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC4A.py @@ -0,0 +1,92 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC4A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC4A model. The model represents type AC4A alternator-supplied controlled-rectifier excitation system which is quite different from the other types of AC systems. This high initial response excitation system utilizes a full thyristor bridge in the exciter output circuit. The voltage regulator controls the firing of the thyristor bridges. The exciter alternator uses an independent voltage regulator to control its output voltage to a constant value. These effects are not modelled; however, transient loading effects on the exciter alternator are included. Reference: IEEE 421.5-2005, 6.4. + + :vimax: Maximum voltage regulator input limit (VIMAX) (> 0). Typical value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (VIMIN) (< 0). Typical value = -10. Default: 0.0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 1. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 10. Default: 0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 200. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,015. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 5,64. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -4,53. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + + def __str__(self): + str = "class=ExcIEEEAC4A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC5A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC5A.py new file mode 100644 index 00000000..f1d0798d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC5A.py @@ -0,0 +1,122 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC5A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC5A model. The model represents a simplified model for brushless excitation systems. The regulator is supplied from a source, such as a permanent magnet generator, which is not affected by system disturbances. Unlike other AC models, this model uses loaded rather than open circuit exciter saturation data in the same way as it is used for the DC models. Because the model has been widely implemented by the industry, it is sometimes used to represent other types of systems when either detailed data for them are not available or simplified models are required. Reference: IEEE 421.5-2005, 6.5. + + :ka: Voltage regulator gain (KA) (> 0). Typical value = 400. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 7,3. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -7,3. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,8. Default: 0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0,03. Default: 0.0 + :tf1: Excitation control system stabilizer time constant (TF1) (> 0). Typical value = 1. Default: 0 + :tf2: Excitation control system stabilizer time constant (TF2) (>= 0). Typical value = 1. Default: 0 + :tf3: Excitation control system stabilizer time constant (TF3) (>= 0). Typical value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (EFD1) (> 0). Typical value = 5,6. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, EFD1 (SE[EFD1]) (>= 0). Typical value = 0,86. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (EFD2) (> 0). Typical value = 4,2. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, EFD2 (SE[EFD2]) (>= 0). Typical value = 0,5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tf3": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf1=0, + tf2=0, + tf3=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.tf3 = tf3 + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + + def __str__(self): + str = "class=ExcIEEEAC5A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC6A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC6A.py new file mode 100644 index 00000000..864adaeb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC6A.py @@ -0,0 +1,170 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC6A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC6A model. The model represents field-controlled alternator-rectifier excitation systems with system-supplied electronic voltage regulators. The maximum output of the regulator, VR, is a function of terminal voltage, VT. The field current limiter included in the original model AC6A remains in the 2005 update. Reference: IEEE 421.5-2005, 6.6. + + :ka: Voltage regulator gain (KA) (> 0). Typical value = 536. Default: 0.0 + :ta: Voltage regulator time constant (TA) (>= 0). Typical value = 0,086. Default: 0 + :tk: Voltage regulator time constant (TK) (>= 0). Typical value = 0,18. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 9. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 3. Default: 0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 75. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -75. Default: 0.0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 44. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -36. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 1. Default: 0 + :kh: Exciter field current limiter gain (KH) (>= 0). Typical value = 92. Default: 0.0 + :tj: Exciter field current limiter time constant (TJ) (>= 0). Typical value = 0,02. Default: 0 + :th: Exciter field current limiter time constant (TH) (> 0). Typical value = 0,08. Default: 0 + :vfelim: Exciter field current limit reference (VFELIM) (> 0). Typical value = 19. Default: 0.0 + :vhmax: Maximum field current limiter signal reference (VHMAX) (> 0). Typical value = 75. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,173. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 1,91. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1,6. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 7,4. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 0,214. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 5,55. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 0,044. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tk": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "tj": [ + cgmesProfile.DY.value, + ], + "th": [ + cgmesProfile.DY.value, + ], + "vfelim": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + tk=0, + tb=0, + tc=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + kh=0.0, + tj=0, + th=0, + vfelim=0.0, + vhmax=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.tk = tk + self.tb = tb + self.tc = tc + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kh = kh + self.tj = tj + self.th = th + self.vfelim = vfelim + self.vhmax = vhmax + self.kc = kc + self.kd = kd + self.ke = ke + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC6A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC7B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC7B.py new file mode 100644 index 00000000..f8552ce8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC7B.py @@ -0,0 +1,194 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC7B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC7B model. The model represents excitation systems which consist of an AC alternator with either stationary or rotating rectifiers to produce the DC field requirements. It is an upgrade to earlier AC excitation systems, which replace only the controls but retain the AC alternator and diode rectifier bridge. Reference: IEEE 421.5-2005, 6.7. Note, however, that in IEEE 421.5-2005, the [1 / sTE] block is shown as [1 / (1 + sTE)], which is incorrect. + + :kpr: Voltage regulator proportional gain (KPR) (> 0 if ExcIEEEAC7B.kir = 0). Typical value = 4,24. Default: 0.0 + :kir: Voltage regulator integral gain (KIR) (>= 0). Typical value = 4,24. Default: 0.0 + :kdr: Voltage regulator derivative gain (KDR) (>= 0). Typical value = 0. Default: 0.0 + :tdr: Lag time constant (TDR) (>= 0). Typical value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 5,79. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -5,79. Default: 0.0 + :kpa: Voltage regulator proportional gain (KPA) (> 0 if ExcIEEEAC7B.kia = 0). Typical value = 65,36. Default: 0.0 + :kia: Voltage regulator integral gain (KIA) (>= 0). Typical value = 59,69. Default: 0.0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 1. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -0,95. Default: 0.0 + :kp: Potential circuit gain coefficient (KP) (> 0). Typical value = 4,96. Default: 0.0 + :kl: Exciter field voltage lower limit parameter (KL). Typical value = 10. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 1,1. Default: 0 + :vfemax: Exciter field current limit reference (VFEMAX). Typical value = 6,9. Default: 0.0 + :vemin: Minimum exciter voltage output (VEMIN) (<= 0). Typical value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,18. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 0,02. Default: 0.0 + :kf1: Excitation control system stabilizer gain (KF1) (>= 0). Typical value = 0,212. Default: 0.0 + :kf2: Excitation control system stabilizer gain (KF2) (>= 0). Typical value = 0. Default: 0.0 + :kf3: Excitation control system stabilizer gain (KF3) (>= 0). Typical value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 1. Default: 0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 6,3. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 0,44. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 3,02. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 0,075. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "kf3": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + kdr=0.0, + tdr=0, + vrmax=0.0, + vrmin=0.0, + kpa=0.0, + kia=0.0, + vamax=0.0, + vamin=0.0, + kp=0.0, + kl=0.0, + te=0, + vfemax=0.0, + vemin=0.0, + ke=0.0, + kc=0.0, + kd=0.0, + kf1=0.0, + kf2=0.0, + kf3=0.0, + tf=0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.kdr = kdr + self.tdr = tdr + self.vrmax = vrmax + self.vrmin = vrmin + self.kpa = kpa + self.kia = kia + self.vamax = vamax + self.vamin = vamin + self.kp = kp + self.kl = kl + self.te = te + self.vfemax = vfemax + self.vemin = vemin + self.ke = ke + self.kc = kc + self.kd = kd + self.kf1 = kf1 + self.kf2 = kf2 + self.kf3 = kf3 + self.tf = tf + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC8B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC8B.py new file mode 100644 index 00000000..9ef0b089 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEAC8B.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEAC8B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type AC8B model. This model represents a PID voltage regulator with either a brushless exciter or DC exciter. The AVR in this model consists of PID control, with separate constants for the proportional (KPR), integral (KIR), and derivative (KDR) gains. The representation of the brushless exciter (TE, KE, SE, KC, KD) is similar to the model type AC2A. The type AC8B model can be used to represent static voltage regulators applied to brushless excitation systems. Digitally based voltage regulators feeding DC rotating main exciters can be represented with the AC type AC8B model with the parameters KC and KD set to 0. For thyristor power stages fed from the generator terminals, the limits VRMAX and VRMIN should be a function of terminal voltage: VT x VRMAX and VT x VRMIN. Reference: IEEE 421.5-2005, 6.8. + + :kpr: Voltage regulator proportional gain (KPR) (> 0 if ExcIEEEAC8B.kir = 0). Typical value = 80. Default: 0.0 + :kir: Voltage regulator integral gain (KIR) (>= 0). Typical value = 5. Default: 0.0 + :kdr: Voltage regulator derivative gain (KDR) (>= 0). Typical value = 10. Default: 0.0 + :tdr: Lag time constant (TDR) (> 0). Typical value = 0,1. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 35. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (<= 0). Typical value = 0. Default: 0.0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 1. Default: 0.0 + :ta: Voltage regulator time constant (TA) (>= 0). Typical value = 0. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 1,2. Default: 0 + :vfemax: Exciter field current limit reference (VFEMAX). Typical value = 6. Default: 0.0 + :vemin: Minimum exciter voltage output (VEMIN) (<= 0). Typical value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,55. Default: 0.0 + :kd: Demagnetizing factor, a function of exciter alternator reactances (KD) (>= 0). Typical value = 1,1. Default: 0.0 + :ve1: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE1) (> 0). Typical value = 6,5. Default: 0.0 + :seve1: Exciter saturation function value at the corresponding exciter voltage, VE1, back of commutating reactance (SE[VE1]) (>= 0). Typical value = 0,3. Default: 0.0 + :ve2: Exciter alternator output voltages back of commutating reactance at which saturation is defined (VE2) (> 0). Typical value = 9. Default: 0.0 + :seve2: Exciter saturation function value at the corresponding exciter voltage, VE2, back of commutating reactance (SE[VE2]) (>= 0). Typical value = 3. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "kdr": [ + cgmesProfile.DY.value, + ], + "tdr": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vfemax": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ve1": [ + cgmesProfile.DY.value, + ], + "seve1": [ + cgmesProfile.DY.value, + ], + "ve2": [ + cgmesProfile.DY.value, + ], + "seve2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + kdr=0.0, + tdr=0, + vrmax=0.0, + vrmin=0.0, + ka=0.0, + ta=0, + te=0, + vfemax=0.0, + vemin=0.0, + ke=0.0, + kc=0.0, + kd=0.0, + ve1=0.0, + seve1=0.0, + ve2=0.0, + seve2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.kdr = kdr + self.tdr = tdr + self.vrmax = vrmax + self.vrmin = vrmin + self.ka = ka + self.ta = ta + self.te = te + self.vfemax = vfemax + self.vemin = vemin + self.ke = ke + self.kc = kc + self.kd = kd + self.ve1 = ve1 + self.seve1 = seve1 + self.ve2 = ve2 + self.seve2 = seve2 + + def __str__(self): + str = "class=ExcIEEEAC8B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC1A.py new file mode 100644 index 00000000..35323682 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC1A.py @@ -0,0 +1,134 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC1A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type DC1A model. This model represents field-controlled DC commutator exciters with continuously acting voltage regulators (especially the direct-acting rheostatic, rotating amplifier, and magnetic amplifier types). Because this model has been widely implemented by the industry, it is sometimes used to represent other types of systems when detailed data for them are not available or when a simplified model is required. Reference: IEEE 421.5-2005, 5.1. + + :ka: Voltage regulator gain (KA) (> 0). Typical value = 46. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,06. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 0. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> ExcIEEEDC1A.vrmin). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0 and < ExcIEEEDC1A.vrmax). Typical value = -0,9. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,46. Default: 0 + :kf: Excitation control system stabilizer gain (KF) (>= 0). Typical value = 0.1. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (EFD1) (> 0). Typical value = 3,1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, EFD1 (SE[EFD1]) (>= 0). Typical value = 0.33. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (EFD2) (> 0). Typical value = 2,3. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, EFD2 (SE[EFD2]) (>= 0). Typical value = 0,1. Default: 0.0 + :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical value = true. Default: False + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + uelin=False, + exclim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.uelin = uelin + self.exclim = exclim + + def __str__(self): + str = "class=ExcIEEEDC1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC2A.py new file mode 100644 index 00000000..863c5641 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC2A.py @@ -0,0 +1,134 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC2A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type DC2A model. This model represents field-controlled DC commutator exciters with continuously acting voltage regulators having supplies obtained from the generator or auxiliary bus. It differs from the type DC1A model only in the voltage regulator output limits, which are now proportional to terminal voltage VT. It is representative of solid-state replacements for various forms of older mechanical and rotating amplifier regulating equipment connected to DC commutator exciters. Reference: IEEE 421.5-2005, 5.2. + + :efd1: Exciter voltage at which exciter saturation is defined (EFD1) (> 0). Typical value = 3,05. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (EFD2) (> 0). Typical value = 2,29. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. Typical value = - 999 which means that there is no limit applied. Default: 0.0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 300. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :kf: Excitation control system stabilizer gain (KF) (>= 0). Typical value = 0,1. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, EFD1 (SE[EFD1]) (>= 0). Typical value = 0,279. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, EFD2 (SE[EFD2]) (>= 0). Typical value = 0,117. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,01. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 0. Default: 0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 1,33. Default: 0 + :tf: Excitation control system stabilizer time constant (TF) (> 0). Typical value = 0,675. Default: 0 + :uelin: UEL input (uelin). true = input is connected to the HV gate false = input connects to the error signal. Typical value = true. Default: False + :vrmax: Maximum voltage regulator output (VRMAX)(> ExcIEEEDC2A.vrmin). Typical value = 4,95. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0 and < ExcIEEEDC2A.vrmax). Typical value = -4,9. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + efd1=0.0, + efd2=0.0, + exclim=0.0, + ka=0.0, + ke=0.0, + kf=0.0, + seefd1=0.0, + seefd2=0.0, + ta=0, + tb=0, + tc=0, + te=0, + tf=0, + uelin=False, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efd1 = efd1 + self.efd2 = efd2 + self.exclim = exclim + self.ka = ka + self.ke = ke + self.kf = kf + self.seefd1 = seefd1 + self.seefd2 = seefd2 + self.ta = ta + self.tb = tb + self.tc = tc + self.te = te + self.tf = tf + self.uelin = uelin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEDC2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC3A.py new file mode 100644 index 00000000..9555988b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC3A.py @@ -0,0 +1,104 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC3A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type DC3A model. This model represents older systems, in particular those DC commutator exciters with non-continuously acting regulators that were commonly used before the development of the continuously acting varieties. These systems respond at basically two different rates, depending upon the magnitude of voltage error. For small errors, adjustment is made periodically with a signal to a motor-operated rheostat. Larger errors cause resistors to be quickly shorted or inserted and a strong forcing signal applied to the exciter. Continuous motion of the motor-operated rheostat occurs for these larger error signals, even though it is bypassed by contactor action. Reference: IEEE 421.5-2005, 5.3. + + :trh: Rheostat travel time (TRH) (> 0). Typical value = 20. Default: 0 + :kv: Fast raise/lower contact setting (KV) (> 0). Typical value = 0,05. Default: 0.0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (<= 0). Typical value = 0. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,5. Default: 0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 0,05. Default: 0.0 + :efd1: Exciter voltage at which exciter saturation is defined (EFD1) (> 0). Typical value = 3,375. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, EFD1 (SE[EFD1]) (>= 0). Typical value = 0,267. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (EFD2) (> 0). Typical value = 3,15. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, EFD2 (SE[EFD2]) (>= 0). Typical value = 0,068. Default: 0.0 + :exclim: (exclim). IEEE standard is ambiguous about lower limit on exciter output. true = a lower limit of zero is applied to integrator output false = a lower limit of zero is not applied to integrator output. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "kv": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "exclim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + trh=0, + kv=0.0, + vrmax=0.0, + vrmin=0.0, + te=0, + ke=0.0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + exclim=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.trh = trh + self.kv = kv + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.ke = ke + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.exclim = exclim + + def __str__(self): + str = "class=ExcIEEEDC3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC4B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC4B.py new file mode 100644 index 00000000..d147a823 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEDC4B.py @@ -0,0 +1,152 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEDC4B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type DC4B model. These excitation systems utilize a field-controlled DC commutator exciter with a continuously acting voltage regulator having supplies obtained from the generator or auxiliary bus. Reference: IEEE 421.5-2005, 5.4. + + :ka: Voltage regulator gain (KA) (> 0). Typical value = 1. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,2. Default: 0 + :kp: Regulator proportional gain (KP) (>= 0). Typical value = 20. Default: 0.0 + :ki: Regulator integral gain (KI) (>= 0). Typical value = 20. Default: 0.0 + :kd: Regulator derivative gain (KD) (>= 0). Typical value = 20. Default: 0.0 + :td: Regulator derivative filter time constant (TD) (> 0 if ExcIEEEDC4B.kd > 0). Typical value = 0,01. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> ExcIEEEDC4B.vrmin). Typical value = 2,7. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (<= 0 and < ExcIEEEDC4B.vrmax). Typical value = -0,9. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,8. Default: 0 + :kf: Excitation control system stabilizer gain (KF) (>= 0). Typical value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (>= 0). Typical value = 1. Default: 0 + :efd1: Exciter voltage at which exciter saturation is defined (EFD1) (> 0). Typical value = 1,75. Default: 0.0 + :seefd1: Exciter saturation function value at the corresponding exciter voltage, EFD1 (SE[EFD1]) (>= 0). Typical value = 0,08. Default: 0.0 + :efd2: Exciter voltage at which exciter saturation is defined (EFD2) (> 0). Typical value = 2,33. Default: 0.0 + :seefd2: Exciter saturation function value at the corresponding exciter voltage, EFD2 (SE[EFD2]) (>= 0). Typical value = 0,27. Default: 0.0 + :vemin: Minimum exciter voltage output (VEMIN) (<= 0). Typical value = 0. Default: 0.0 + :oelin: OEL input (OELin). true = LV gate false = subtract from error signal. Typical value = true. Default: False + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "seefd1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "seefd2": [ + cgmesProfile.DY.value, + ], + "vemin": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + kp=0.0, + ki=0.0, + kd=0.0, + td=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + efd1=0.0, + seefd1=0.0, + efd2=0.0, + seefd2=0.0, + vemin=0.0, + oelin=False, + uelin=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.kp = kp + self.ki = ki + self.kd = kd + self.td = td + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.efd1 = efd1 + self.seefd1 = seefd1 + self.efd2 = efd2 + self.seefd2 = seefd2 + self.vemin = vemin + self.oelin = oelin + self.uelin = uelin + + def __str__(self): + str = "class=ExcIEEEDC4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1A.py new file mode 100644 index 00000000..4414c74d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1A.py @@ -0,0 +1,152 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST1A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST1A model. This model represents systems in which excitation power is supplied through a transformer from the generator terminals (or the unit's auxiliary bus) and is regulated by a controlled rectifier. The maximum exciter voltage available from such systems is directly related to the generator terminal voltage. Reference: IEEE 421.5-2005, 7.1. + + :ilr: Exciter output current limit reference (ILR). Typical value = 0. Default: 0.0 + :ka: Voltage regulator gain (KA) (> 0). Typical value = 190. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,08. Default: 0.0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0. Default: 0.0 + :klr: Exciter output current limiter gain (KLR). Typical value = 0. Default: 0.0 + :pssin: Selector of the Power System Stabilizer (PSS) input (PSSin). true = PSS input (Vs) added to error signal false = PSS input (Vs) added to voltage regulator output. Typical value = true. Default: False + :ta: Voltage regulator time constant (TA) (>= 0). Typical value = 0. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 10. Default: 0 + :tb1: Voltage regulator time constant (TB1) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 1. Default: 0 + :tc1: Voltage regulator time constant (TC1) (>= 0). Typical value = 0. Default: 0 + :tf: Excitation control system stabilizer time constant (TF) (>= 0). Typical value = 1. Default: 0 + :uelin: Selector of the connection of the UEL input (UELin). Typical value = ignoreUELsignal. Default: None + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 14,5. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -14,5. Default: 0.0 + :vimax: Maximum voltage regulator input limit (VIMAX) (> 0). Typical value = 999. Default: 0.0 + :vimin: Minimum voltage regulator input limit (VIMIN) (< 0). Typical value = -999. Default: 0.0 + :vrmax: Maximum voltage regulator outputs (VRMAX) (> 0). Typical value = 7,8. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (VRMIN) (< 0). Typical value = -6,7. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "pssin": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + ka=0.0, + kc=0.0, + kf=0.0, + klr=0.0, + pssin=False, + ta=0, + tb=0, + tb1=0, + tc=0, + tc1=0, + tf=0, + uelin=None, + vamax=0.0, + vamin=0.0, + vimax=0.0, + vimin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.ka = ka + self.kc = kc + self.kf = kf + self.klr = klr + self.pssin = pssin + self.ta = ta + self.tb = tb + self.tb1 = tb1 + self.tc = tc + self.tc1 = tc1 + self.tf = tf + self.uelin = uelin + self.vamax = vamax + self.vamin = vamin + self.vimax = vimax + self.vimin = vimin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1AUELselectorKind.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1AUELselectorKind.py new file mode 100644 index 00000000..a6561f44 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST1AUELselectorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ExcIEEEST1AUELselectorKind(Base): + """ + Types of connections for the UEL input used in ExcIEEEST1A. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcIEEEST1AUELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST2A.py new file mode 100644 index 00000000..fa52c609 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST2A.py @@ -0,0 +1,116 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST2A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST2A model. Some static systems use both current and voltage sources (generator terminal quantities) to comprise the power source. The regulator controls the exciter output through controlled saturation of the power transformer components. These compound-source rectifier excitation systems are designated type ST2A and are represented by ExcIEEEST2A. Reference: IEEE 421.5-2005, 7.2. + + :ka: Voltage regulator gain (KA) (> 0). Typical value = 120. Default: 0.0 + :ta: Voltage regulator time constant (TA) (> 0). Typical value = 0,15. Default: 0 + :vrmax: Maximum voltage regulator outputs (VRMAX) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (VRMIN) (<= 0). Typical value = 0. Default: 0.0 + :ke: Exciter constant related to self-excited field (KE). Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (TE) (> 0). Typical value = 0,5. Default: 0 + :kf: Excitation control system stabilizer gains (KF) (>= 0). Typical value = 0,05. Default: 0.0 + :tf: Excitation control system stabilizer time constant (TF) (>= 0). Typical value = 1. Default: 0 + :kp: Potential circuit gain coefficient (KP) (>= 0). Typical value = 4,88. Default: 0.0 + :ki: Potential circuit gain coefficient (KI) (>= 0). Typical value = 8. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 1,82. Default: 0.0 + :efdmax: Maximum field voltage (EFDMax) (>= 0). Typical value = 99. Default: 0.0 + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical value = true. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + kc=0.0, + efdmax=0.0, + uelin=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.kc = kc + self.efdmax = efdmax + self.uelin = uelin + + def __str__(self): + str = "class=ExcIEEEST2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST3A.py new file mode 100644 index 00000000..48d27b82 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST3A.py @@ -0,0 +1,158 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST3A(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST3A model. Some static systems utilize a field voltage control loop to linearize the exciter control characteristic. This also makes the output independent of supply source variations until supply limitations are reached. These systems utilize a variety of controlled-rectifier designs: full thyristor complements or hybrid bridges in either series or shunt configurations. The power source can consist of only a potential source, either fed from the machine terminals or from internal windings. Some designs can have compound power sources utilizing both machine potential and current. These power sources are represented as phasor combinations of machine terminal current and voltage and are accommodated by suitable parameters in model type ST3A which is represented by ExcIEEEST3A. Reference: IEEE 421.5-2005, 7.3. + + :vimax: Maximum voltage regulator input limit (VIMAX) (> 0). Typical value = 0,2. Default: 0.0 + :vimin: Minimum voltage regulator input limit (VIMIN) (< 0). Typical value = -0,2. Default: 0.0 + :ka: Voltage regulator gain (KA) (> 0). This is parameter K in the IEEE standard. Typical value = 200. Default: 0.0 + :ta: Voltage regulator time constant (TA) (>= 0). Typical value = 0. Default: 0 + :tb: Voltage regulator time constant (TB) (>= 0). Typical value = 10. Default: 0 + :tc: Voltage regulator time constant (TC) (>= 0). Typical value = 1. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 10. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -10. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (KM) (> 0). Typical value = 7,93. Default: 0.0 + :tm: Forward time constant of inner loop field regulator (TM) (> 0). Typical value = 0,4. Default: 0 + :vmmax: Maximum inner loop output (VMMax) (> 0). Typical value = 1. Default: 0.0 + :vmmin: Minimum inner loop output (VMMin) (<= 0). Typical value = 0. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (KG) (>= 0). Typical value = 1. Default: 0.0 + :kp: Potential circuit gain coefficient (KP) (> 0). Typical value = 6,15. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (KI) (>= 0). Typical value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,2. Default: 0.0 + :xl: Reactance associated with potential source (XL) (>= 0). Typical value = 0,081. Default: 0.0 + :vbmax: Maximum excitation voltage (VBMax) (> 0). Typical value = 6,9. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (VGMax) (>= 0). Typical value = 5,8. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + ka=0.0, + ta=0, + tb=0, + tc=0, + vrmax=0.0, + vrmin=0.0, + km=0.0, + tm=0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.ka = ka + self.ta = ta + self.tb = tb + self.tc = tc + self.vrmax = vrmax + self.vrmin = vrmin + self.km = km + self.tm = tm + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + + def __str__(self): + str = "class=ExcIEEEST3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST4B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST4B.py new file mode 100644 index 00000000..234db2e8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST4B.py @@ -0,0 +1,134 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST4B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST4B model. This model is a variation of the type ST3A model, with a proportional plus integral (PI) regulator block replacing the lag-lead regulator characteristic that is in the ST3A model. Both potential and compound source rectifier excitation systems are modelled. The PI regulator blocks have non-windup limits that are represented. The voltage regulator of this model is typically implemented digitally. Reference: IEEE 421.5-2005, 7.4. + + :kpr: Voltage regulator proportional gain (KPR). Typical value = 10,75. Default: 0.0 + :kir: Voltage regulator integral gain (KIR). Typical value = 10,75. Default: 0.0 + :ta: Voltage regulator time constant (TA) (>= 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -0,87. Default: 0.0 + :kpm: Voltage regulator proportional gain output (KPM). Typical value = 1. Default: 0.0 + :kim: Voltage regulator integral gain output (KIM). Typical value = 0. Default: 0.0 + :vmmax: Maximum inner loop output (VMMax) (> ExcIEEEST4B.vmmin). Typical value = 99. Default: 0.0 + :vmmin: Minimum inner loop output (VMMin) (< ExcIEEEST4B.vmmax). Typical value = -99. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (KG) (>= 0). Typical value = 0. Default: 0.0 + :kp: Potential circuit gain coefficient (KP) (> 0). Typical value = 9,3. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (KI) (>= 0). Typical value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (KC) (>= 0). Typical value = 0,113. Default: 0.0 + :xl: Reactance associated with potential source (XL) (>= 0). Typical value = 0,124. Default: 0.0 + :vbmax: Maximum excitation voltage (VBMax) (> 0). Typical value = 11,63. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpm": [ + cgmesProfile.DY.value, + ], + "kim": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kpm=0.0, + kim=0.0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kpm = kpm + self.kim = kim + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + + def __str__(self): + str = "class=ExcIEEEST4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST5B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST5B.py new file mode 100644 index 00000000..df6582e4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST5B.py @@ -0,0 +1,140 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST5B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST5B model. The type ST5B excitation system is a variation of the type ST1A model, with alternative overexcitation and underexcitation inputs and additional limits. The block diagram in the IEEE 421.5 standard has input signal Vc and does not indicate the summation point with Vref. The implementation of the ExcIEEEST5B shall consider summation point with Vref. Reference: IEEE 421.5-2005, 7.5. + + :kr: Regulator gain (KR) (> 0). Typical value = 200. Default: 0.0 + :t1: Firing circuit time constant (T1) (>= 0). Typical value = 0,004. Default: 0 + :kc: Rectifier regulation factor (KC) (>= 0). Typical value = 0,004. Default: 0.0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -4. Default: 0.0 + :tc1: Regulator lead time constant (TC1) (>= 0). Typical value = 0,8. Default: 0 + :tb1: Regulator lag time constant (TB1) (>= 0). Typical value = 6. Default: 0 + :tc2: Regulator lead time constant (TC2) (>= 0). Typical value = 0,08. Default: 0 + :tb2: Regulator lag time constant (TB2) (>= 0). Typical value = 0,01. Default: 0 + :toc1: OEL lead time constant (TOC1) (>= 0). Typical value = 0,1. Default: 0 + :tob1: OEL lag time constant (TOB1) (>= 0). Typical value = 2. Default: 0 + :toc2: OEL lead time constant (TOC2) (>= 0). Typical value = 0,08. Default: 0 + :tob2: OEL lag time constant (TOB2) (>= 0). Typical value = 0,08. Default: 0 + :tuc1: UEL lead time constant (TUC1) (>= 0). Typical value = 2. Default: 0 + :tub1: UEL lag time constant (TUB1) (>= 0). Typical value = 10. Default: 0 + :tuc2: UEL lead time constant (TUC2) (>= 0). Typical value = 0,1. Default: 0 + :tub2: UEL lag time constant (TUB2) (>= 0). Typical value = 0,05. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kr": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tc2": [ + cgmesProfile.DY.value, + ], + "tb2": [ + cgmesProfile.DY.value, + ], + "toc1": [ + cgmesProfile.DY.value, + ], + "tob1": [ + cgmesProfile.DY.value, + ], + "toc2": [ + cgmesProfile.DY.value, + ], + "tob2": [ + cgmesProfile.DY.value, + ], + "tuc1": [ + cgmesProfile.DY.value, + ], + "tub1": [ + cgmesProfile.DY.value, + ], + "tuc2": [ + cgmesProfile.DY.value, + ], + "tub2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kr=0.0, + t1=0, + kc=0.0, + vrmax=0.0, + vrmin=0.0, + tc1=0, + tb1=0, + tc2=0, + tb2=0, + toc1=0, + tob1=0, + toc2=0, + tob2=0, + tuc1=0, + tub1=0, + tuc2=0, + tub2=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kr = kr + self.t1 = t1 + self.kc = kc + self.vrmax = vrmax + self.vrmin = vrmin + self.tc1 = tc1 + self.tb1 = tb1 + self.tc2 = tc2 + self.tb2 = tb2 + self.toc1 = toc1 + self.tob1 = tob1 + self.toc2 = toc2 + self.tob2 = tob2 + self.tuc1 = tuc1 + self.tub1 = tub1 + self.tuc2 = tuc2 + self.tub2 = tub2 + + def __str__(self): + str = "class=ExcIEEEST5B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST6B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST6B.py new file mode 100644 index 00000000..d19d78e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST6B.py @@ -0,0 +1,122 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST6B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST6B model. This model consists of a PI voltage regulator with an inner loop field voltage regulator and pre-control. The field voltage regulator implements a proportional control. The pre-control and the delay in the feedback circuit increase the dynamic response. Reference: IEEE 421.5-2005, 7.6. + + :ilr: Exciter output current limit reference (ILR) (> 0). Typical value = 4,164. Default: 0.0 + :kci: Exciter output current limit adjustment (KCI) (> 0). Typical value = 1,0577. Default: 0.0 + :kff: Pre-control gain constant of the inner loop field regulator (KFF). Typical value = 1. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (KG) (>= 0). Typical value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (KIA) (> 0). Typical value = 45,094. Default: 0.0 + :klr: Exciter output current limiter gain (KLR) (> 0). Typical value = 17,33. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (KM). Typical value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (KPA) (> 0). Typical value = 18,038. Default: 0.0 + :oelin: OEL input selector (OELin). Typical value = noOELinput. Default: None + :tg: Feedback time constant of inner loop field voltage regulator (TG) (>= 0). Typical value = 0,02. Default: 0 + :vamax: Maximum voltage regulator output (VAMAX) (> 0). Typical value = 4,81. Default: 0.0 + :vamin: Minimum voltage regulator output (VAMIN) (< 0). Typical value = -3,85. Default: 0.0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 4,81. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -3,85. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "kci": [ + cgmesProfile.DY.value, + ], + "kff": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + kci=0.0, + kff=0.0, + kg=0.0, + kia=0.0, + klr=0.0, + km=0.0, + kpa=0.0, + oelin=None, + tg=0, + vamax=0.0, + vamin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.kci = kci + self.kff = kff + self.kg = kg + self.kia = kia + self.klr = klr + self.km = km + self.kpa = kpa + self.oelin = oelin + self.tg = tg + self.vamax = vamax + self.vamin = vamin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST6B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST7B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST7B.py new file mode 100644 index 00000000..e8cd42b3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcIEEEST7B.py @@ -0,0 +1,128 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcIEEEST7B(ExcitationSystemDynamics): + """ + IEEE 421.5-2005 type ST7B model. This model is representative of static potential-source excitation systems. In this system, the AVR consists of a PI voltage regulator. A phase lead-lag filter in series allows the introduction of a derivative function, typically used with brushless excitation systems. In that case, the regulator is of the PID type. In addition, the terminal voltage channel includes a phase lead-lag filter. The AVR includes the appropriate inputs on its reference for overexcitation limiter (OEL1), underexcitation limiter (UEL), stator current limiter (SCL), and current compensator (DROOP). All these limitations, when they work at voltage reference level, keep the PSS (VS signal from PSS) in operation. However, the UEL limitation can also be transferred to the high value (HV) gate acting on the output signal. In addition, the output signal passes through a low value (LV) gate for a ceiling overexcitation limiter (OEL2). Reference: IEEE 421.5-2005, 7.7. + + :kh: High-value gate feedback gain (KH) (>= 0). Typical value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (KIA) (>= 0). Typical value = 1. Default: 0.0 + :kl: Low-value gate feedback gain (KL) (>= 0). Typical value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (KPA) (> 0). Typical value = 40. Default: 0.0 + :oelin: OEL input selector (OELin). Typical value = noOELinput. Default: None + :tb: Regulator lag time constant (TB) (>= 0). Typical value = 1. Default: 0 + :tc: Regulator lead time constant (TC) (>= 0). Typical value = 1. Default: 0 + :tf: Excitation control system stabilizer time constant (TF) (>= 0). Typical value = 1. Default: 0 + :tg: Feedback time constant of inner loop field voltage regulator (TG) (>= 0). Typical value = 1. Default: 0 + :tia: Feedback time constant (TIA) (>= 0). Typical value = 3. Default: 0 + :uelin: UEL input selector (UELin). Typical value = noUELinput. Default: None + :vmax: Maximum voltage reference signal (VMAX) (> 0 and > ExcIEEEST7B.vmin). Typical value = 1,1. Default: 0.0 + :vmin: Minimum voltage reference signal (VMIN) (> 0 and < ExcIEEEST7B.vmax). Typical value = 0,9. Default: 0.0 + :vrmax: Maximum voltage regulator output (VRMAX) (> 0). Typical value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (VRMIN) (< 0). Typical value = -4,5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tia": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kh=0.0, + kia=0.0, + kl=0.0, + kpa=0.0, + oelin=None, + tb=0, + tc=0, + tf=0, + tg=0, + tia=0, + uelin=None, + vmax=0.0, + vmin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kh = kh + self.kia = kia + self.kl = kl + self.kpa = kpa + self.oelin = oelin + self.tb = tb + self.tc = tc + self.tf = tf + self.tg = tg + self.tia = tia + self.uelin = uelin + self.vmax = vmax + self.vmin = vmin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcIEEEST7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcNI.py b/cimpy_3/cimpy/cgmes_v3_0/ExcNI.py new file mode 100644 index 00000000..a41be1c9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcNI.py @@ -0,0 +1,98 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcNI(ExcitationSystemDynamics): + """ + Bus or solid fed SCR (silicon-controlled rectifier) bridge excitation system model type NI (NVE). + + :busFedSelector: Fed by selector (BusFedSelector). true = bus fed (switch is closed) false = solid fed (switch is open). Typical value = true. Default: False + :tr: Time constant (Tr) (>= 0). Typical value = 0,02. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 210. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator ouput (Vrmax) (> ExcNI.vrmin). Typical value = 5,0. Default: 0.0 + :vrmin: Minimum voltage regulator ouput (Vrmin) (< ExcNI.vrmax). Typical value = -2,0. Default: 0.0 + :kf: Excitation control system stabilizer gain (Kf) (> 0). Typical value 0,01. Default: 0.0 + :tf2: Excitation control system stabilizer time constant (Tf2) (> 0). Typical value = 0,1. Default: 0 + :tf1: Excitation control system stabilizer time constant (Tf1) (> 0). Typical value = 1,0. Default: 0 + :r: rc / rfd (R) (>= 0). 0 means exciter has negative current capability > 0 means exciter does not have negative current capability. Typical value = 5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "busFedSelector": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + busFedSelector=False, + tr=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kf=0.0, + tf2=0, + tf1=0, + r=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.busFedSelector = busFedSelector + self.tr = tr + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kf = kf + self.tf2 = tf2 + self.tf1 = tf1 + self.r = r + + def __str__(self): + str = "class=ExcNI\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcOEX3T.py b/cimpy_3/cimpy/cgmes_v3_0/ExcOEX3T.py new file mode 100644 index 00000000..50ee1daa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcOEX3T.py @@ -0,0 +1,152 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcOEX3T(ExcitationSystemDynamics): + """ + Modified IEEE type ST1 excitation system with semi-continuous and acting terminal voltage limiter. + + :t1: Time constant (T1) (>= 0). Default: 0 + :t2: Time constant (T2) (>= 0). Default: 0 + :t3: Time constant (T3) (>= 0). Default: 0 + :t4: Time constant (T4) (>= 0). Default: 0 + :ka: Gain (KA). Default: 0.0 + :t5: Time constant (T5) (>= 0). Default: 0 + :t6: Time constant (T6) (>= 0). Default: 0 + :vrmax: Limiter (VRMAX) (> ExcOEX3T.vrmin). Default: 0.0 + :vrmin: Limiter (VRMIN) (< ExcOEX3T.vrmax). Default: 0.0 + :te: Time constant (TE) (>= 0). Default: 0 + :kf: Gain (KF). Default: 0.0 + :tf: Time constant (TF) (>= 0). Default: 0 + :kc: Gain (KC). Default: 0.0 + :kd: Gain (KD). Default: 0.0 + :ke: Gain (KE). Default: 0.0 + :e1: Saturation parameter (E1). Default: 0.0 + :see1: Saturation parameter (SE[E1]). Default: 0.0 + :e2: Saturation parameter (E2). Default: 0.0 + :see2: Saturation parameter (SE[E2]). Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "see1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "see2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + t1=0, + t2=0, + t3=0, + t4=0, + ka=0.0, + t5=0, + t6=0, + vrmax=0.0, + vrmin=0.0, + te=0, + kf=0.0, + tf=0, + kc=0.0, + kd=0.0, + ke=0.0, + e1=0.0, + see1=0.0, + e2=0.0, + see2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.ka = ka + self.t5 = t5 + self.t6 = t6 + self.vrmax = vrmax + self.vrmin = vrmin + self.te = te + self.kf = kf + self.tf = tf + self.kc = kc + self.kd = kd + self.ke = ke + self.e1 = e1 + self.see1 = see1 + self.e2 = e2 + self.see2 = see2 + + def __str__(self): + str = "class=ExcOEX3T\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcPIC.py b/cimpy_3/cimpy/cgmes_v3_0/ExcPIC.py new file mode 100644 index 00000000..fcef5864 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcPIC.py @@ -0,0 +1,176 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcPIC(ExcitationSystemDynamics): + """ + Proportional/integral regulator excitation system. This model can be used to represent excitation systems with a proportional-integral (PI) voltage regulator controller. + + :ka: PI controller gain (Ka). Typical value = 3,15. Default: 0.0 + :ta1: PI controller time constant (Ta1) (>= 0). Typical value = 1. Default: 0 + :vr1: PI maximum limit (Vr1). Typical value = 1. Default: 0.0 + :vr2: PI minimum limit (Vr2). Typical value = -0,87. Default: 0.0 + :ta2: Voltage regulator time constant (Ta2) (>= 0). Typical value = 0,01. Default: 0 + :ta3: Lead time constant (Ta3) (>= 0). Typical value = 0. Default: 0 + :ta4: Lag time constant (Ta4) (>= 0). Typical value = 0. Default: 0 + :vrmax: Voltage regulator maximum limit (Vrmax) (> ExcPIC.vrmin). Typical value = 1. Default: 0.0 + :vrmin: Voltage regulator minimum limit (Vrmin) (< ExcPIC.vrmax). Typical value = -0,87. Default: 0.0 + :kf: Rate feedback gain (Kf). Typical value = 0. Default: 0.0 + :tf1: Rate feedback time constant (Tf1) (>= 0). Typical value = 0. Default: 0 + :tf2: Rate feedback lag time constant (Tf2) (>= 0). Typical value = 0. Default: 0 + :efdmax: Exciter maximum limit (Efdmax) (> ExcPIC.efdmin). Typical value = 8. Default: 0.0 + :efdmin: Exciter minimum limit (Efdmin) (< ExcPIC.efdmax). Typical value = -0,87. Default: 0.0 + :ke: Exciter constant (Ke). Typical value = 0. Default: 0.0 + :te: Exciter time constant (Te) (>= 0). Typical value = 0. Default: 0 + :e1: Field voltage value 1 (E1). Typical value = 0. Default: 0.0 + :se1: Saturation factor at E1 (Se1). Typical value = 0. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical value = 0. Default: 0.0 + :se2: Saturation factor at E2 (Se2). Typical value = 0. Default: 0.0 + :kp: Potential source gain (Kp). Typical value = 6,5. Default: 0.0 + :ki: Current source gain (Ki). Typical value = 0. Default: 0.0 + :kc: Exciter regulation factor (Kc). Typical value = 0,08. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta1": [ + cgmesProfile.DY.value, + ], + "vr1": [ + cgmesProfile.DY.value, + ], + "vr2": [ + cgmesProfile.DY.value, + ], + "ta2": [ + cgmesProfile.DY.value, + ], + "ta3": [ + cgmesProfile.DY.value, + ], + "ta4": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta1=0, + vr1=0.0, + vr2=0.0, + ta2=0, + ta3=0, + ta4=0, + vrmax=0.0, + vrmin=0.0, + kf=0.0, + tf1=0, + tf2=0, + efdmax=0.0, + efdmin=0.0, + ke=0.0, + te=0, + e1=0.0, + se1=0.0, + e2=0.0, + se2=0.0, + kp=0.0, + ki=0.0, + kc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta1 = ta1 + self.vr1 = vr1 + self.vr2 = vr2 + self.ta2 = ta2 + self.ta3 = ta3 + self.ta4 = ta4 + self.vrmax = vrmax + self.vrmin = vrmin + self.kf = kf + self.tf1 = tf1 + self.tf2 = tf2 + self.efdmax = efdmax + self.efdmin = efdmin + self.ke = ke + self.te = te + self.e1 = e1 + self.se1 = se1 + self.e2 = e2 + self.se2 = se2 + self.kp = kp + self.ki = ki + self.kc = kc + + def __str__(self): + str = "class=ExcPIC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcREXS.py b/cimpy_3/cimpy/cgmes_v3_0/ExcREXS.py new file mode 100644 index 00000000..c65bbd3b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcREXS.py @@ -0,0 +1,254 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcREXS(ExcitationSystemDynamics): + """ + General purpose rotating excitation system. This model can be used to represent a wide range of excitation systems whose DC power source is an AC or DC generator. It encompasses IEEE type AC1, AC2, DC1, and DC2 excitation system models. + + :e1: Field voltage value 1 (E1). Typical value = 3. Default: 0.0 + :e2: Field voltage value 2 (E2). Typical value = 4. Default: 0.0 + :fbf: Rate feedback signal flag (fbf). Typical value = fieldCurrent. Default: None + :flimf: Limit type flag (Flimf). Typical value = 0. Default: 0.0 + :kc: Rectifier regulation factor (Kc). Typical value = 0,05. Default: 0.0 + :kd: Exciter regulation factor (Kd). Typical value = 2. Default: 0.0 + :ke: Exciter field proportional constant (Ke). Typical value = 1. Default: 0.0 + :kefd: Field voltage feedback gain (Kefd). Typical value = 0. Default: 0.0 + :kf: Rate feedback gain (Kf) (>= 0). Typical value = 0,05. Default: 0 + :kh: Field voltage controller feedback gain (Kh). Typical value = 0. Default: 0.0 + :kii: Field current regulator integral gain (Kii). Typical value = 0. Default: 0.0 + :kip: Field current regulator proportional gain (Kip). Typical value = 1. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :kvi: Voltage regulator integral gain (Kvi). Typical value = 0. Default: 0.0 + :kvp: Voltage regulator proportional gain (Kvp). Typical value = 2800. Default: 0.0 + :kvphz: V/Hz limiter gain (Kvphz). Typical value = 0. Default: 0.0 + :nvphz: Pickup speed of V/Hz limiter (Nvphz). Typical value = 0. Default: 0.0 + :se1: Saturation factor at E1 (Se1). Typical value = 0,0001. Default: 0.0 + :se2: Saturation factor at E2 (Se2). Typical value = 0,001. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (>= 0). If = 0, block is bypassed. Typical value = 0,01. Default: 0 + :tb1: Lag time constant (Tb1) (>= 0). If = 0, block is bypassed. Typical value = 0. Default: 0 + :tb2: Lag time constant (Tb2) (>= 0). If = 0, block is bypassed. Typical value = 0. Default: 0 + :tc1: Lead time constant (Tc1) (>= 0). Typical value = 0. Default: 0 + :tc2: Lead time constant (Tc2) (>= 0). Typical value = 0. Default: 0 + :te: Exciter field time constant (Te) (> 0). Typical value = 1,2. Default: 0 + :tf: Rate feedback time constant (Tf) (>= 0). If = 0, the feedback path is not used. Typical value = 1. Default: 0 + :tf1: Feedback lead time constant (Tf1) (>= 0). Typical value = 0. Default: 0 + :tf2: Feedback lag time constant (Tf2) (>= 0). If = 0, block is bypassed. Typical value = 0. Default: 0 + :tp: Field current bridge time constant (Tp) (>= 0). Typical value = 0. Default: 0 + :vcmax: Maximum compounding voltage (Vcmax). Typical value = 0. Default: 0.0 + :vfmax: Maximum exciter field current (Vfmax) (> ExcREXS.vfmin). Typical value = 47. Default: 0.0 + :vfmin: Minimum exciter field current (Vfmin) (< ExcREXS.vfmax). Typical value = -20. Default: 0.0 + :vimax: Voltage regulator input limit (Vimax). Typical value = 0,1. Default: 0.0 + :vrmax: Maximum controller output (Vrmax) (> ExcREXS.vrmin). Typical value = 47. Default: 0.0 + :vrmin: Minimum controller output (Vrmin) (< ExcREXS.vrmax). Typical value = -20. Default: 0.0 + :xc: Exciter compounding reactance (Xc). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "e1": [ + cgmesProfile.DY.value, + ], + "e2": [ + cgmesProfile.DY.value, + ], + "fbf": [ + cgmesProfile.DY.value, + ], + "flimf": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "kefd": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kii": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "kvi": [ + cgmesProfile.DY.value, + ], + "kvp": [ + cgmesProfile.DY.value, + ], + "kvphz": [ + cgmesProfile.DY.value, + ], + "nvphz": [ + cgmesProfile.DY.value, + ], + "se1": [ + cgmesProfile.DY.value, + ], + "se2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "tb2": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tc2": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "vcmax": [ + cgmesProfile.DY.value, + ], + "vfmax": [ + cgmesProfile.DY.value, + ], + "vfmin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + e1=0.0, + e2=0.0, + fbf=None, + flimf=0.0, + kc=0.0, + kd=0.0, + ke=0.0, + kefd=0.0, + kf=0, + kh=0.0, + kii=0.0, + kip=0.0, + ks=0.0, + kvi=0.0, + kvp=0.0, + kvphz=0.0, + nvphz=0.0, + se1=0.0, + se2=0.0, + ta=0, + tb1=0, + tb2=0, + tc1=0, + tc2=0, + te=0, + tf=0, + tf1=0, + tf2=0, + tp=0, + vcmax=0.0, + vfmax=0.0, + vfmin=0.0, + vimax=0.0, + vrmax=0.0, + vrmin=0.0, + xc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.e1 = e1 + self.e2 = e2 + self.fbf = fbf + self.flimf = flimf + self.kc = kc + self.kd = kd + self.ke = ke + self.kefd = kefd + self.kf = kf + self.kh = kh + self.kii = kii + self.kip = kip + self.ks = ks + self.kvi = kvi + self.kvp = kvp + self.kvphz = kvphz + self.nvphz = nvphz + self.se1 = se1 + self.se2 = se2 + self.ta = ta + self.tb1 = tb1 + self.tb2 = tb2 + self.tc1 = tc1 + self.tc2 = tc2 + self.te = te + self.tf = tf + self.tf1 = tf1 + self.tf2 = tf2 + self.tp = tp + self.vcmax = vcmax + self.vfmax = vfmax + self.vfmin = vfmin + self.vimax = vimax + self.vrmax = vrmax + self.vrmin = vrmin + self.xc = xc + + def __str__(self): + str = "class=ExcREXS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcREXSFeedbackSignalKind.py b/cimpy_3/cimpy/cgmes_v3_0/ExcREXSFeedbackSignalKind.py new file mode 100644 index 00000000..d49f6c92 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcREXSFeedbackSignalKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ExcREXSFeedbackSignalKind(Base): + """ + Types of rate feedback signals. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcREXSFeedbackSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcRQB.py b/cimpy_3/cimpy/cgmes_v3_0/ExcRQB.py new file mode 100644 index 00000000..68e6fc2a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcRQB.py @@ -0,0 +1,116 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcRQB(ExcitationSystemDynamics): + """ + Excitation system type RQB (four-loop regulator, r?gulateur quatre boucles, developed in France) primarily used in nuclear or thermal generating units. This excitation system shall be always used together with power system stabilizer type PssRQB. + + :ki0: Voltage reference input gain (Ki0). Typical value = 12,7. Default: 0.0 + :ki1: Voltage input gain (Ki1). Typical value = -16,8. Default: 0.0 + :te: Lead lag time constant (TE) (>= 0). Typical value = 0,22. Default: 0 + :tc: Lead lag time constant (TC) (>= 0). Typical value = 0,02. Default: 0 + :klir: OEL input gain (KLIR). Typical value = 12,13. Default: 0.0 + :ucmin: Minimum voltage reference limit (UCMIN) (< ExcRQB.ucmax). Typical value = 0,9. Default: 0.0 + :ucmax: Maximum voltage reference limit (UCMAX) (> ExcRQB.ucmin). Typical value = 1,1. Default: 0.0 + :lus: Setpoint (LUS). Typical value = 0,12. Default: 0.0 + :klus: Limiter gain (KLUS). Typical value = 50. Default: 0.0 + :mesu: Voltage input time constant (MESU) (>= 0). Typical value = 0,02. Default: 0 + :t4m: Input time constant (T4M) (>= 0). Typical value = 5. Default: 0 + :lsat: Integrator limiter (LSAT). Typical value = 5,73. Default: 0.0 + :tf: Exciter time constant (TF) (>= 0). Typical value = 0,01. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ki0": [ + cgmesProfile.DY.value, + ], + "ki1": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "klir": [ + cgmesProfile.DY.value, + ], + "ucmin": [ + cgmesProfile.DY.value, + ], + "ucmax": [ + cgmesProfile.DY.value, + ], + "lus": [ + cgmesProfile.DY.value, + ], + "klus": [ + cgmesProfile.DY.value, + ], + "mesu": [ + cgmesProfile.DY.value, + ], + "t4m": [ + cgmesProfile.DY.value, + ], + "lsat": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ki0=0.0, + ki1=0.0, + te=0, + tc=0, + klir=0.0, + ucmin=0.0, + ucmax=0.0, + lus=0.0, + klus=0.0, + mesu=0, + t4m=0, + lsat=0.0, + tf=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ki0 = ki0 + self.ki1 = ki1 + self.te = te + self.tc = tc + self.klir = klir + self.ucmin = ucmin + self.ucmax = ucmax + self.lus = lus + self.klus = klus + self.mesu = mesu + self.t4m = t4m + self.lsat = lsat + self.tf = tf + + def __str__(self): + str = "class=ExcRQB\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcSCRX.py b/cimpy_3/cimpy/cgmes_v3_0/ExcSCRX.py new file mode 100644 index 00000000..8e2e5909 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcSCRX.py @@ -0,0 +1,86 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSCRX(ExcitationSystemDynamics): + """ + Simple excitation system with generic characteristics typical of many excitation systems; intended for use where negative field current could be a problem. + + :tatb: Gain reduction ratio of lag-lead element ([Ta / Tb]). The parameter Ta is not defined explicitly. Typical value = 0.1. Default: 0.0 + :tb: Denominator time constant of lag-lead block (Tb) (>= 0). Typical value = 10. Default: 0 + :k: Gain (K) (> 0). Typical value = 200. Default: 0.0 + :te: Time constant of gain block (Te) (> 0). Typical value = 0,02. Default: 0 + :emin: Minimum field voltage output (Emin) (< ExcSCRX.emax). Typical value = 0. Default: 0.0 + :emax: Maximum field voltage output (Emax) (> ExcSCRX.emin). Typical value = 5. Default: 0.0 + :cswitch: Power source switch (Cswitch). true = fixed voltage of 1.0 PU false = generator terminal voltage. Default: False + :rcrfd: Ratio of field discharge resistance to field winding resistance ([rc / rfd]). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tatb": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "cswitch": [ + cgmesProfile.DY.value, + ], + "rcrfd": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tatb=0.0, + tb=0, + k=0.0, + te=0, + emin=0.0, + emax=0.0, + cswitch=False, + rcrfd=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tatb = tatb + self.tb = tb + self.k = k + self.te = te + self.emin = emin + self.emax = emax + self.cswitch = cswitch + self.rcrfd = rcrfd + + def __str__(self): + str = "class=ExcSCRX\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcSEXS.py b/cimpy_3/cimpy/cgmes_v3_0/ExcSEXS.py new file mode 100644 index 00000000..15c4c2bf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcSEXS.py @@ -0,0 +1,98 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSEXS(ExcitationSystemDynamics): + """ + Simplified excitation system. + + :tatb: Gain reduction ratio of lag-lead element ([Ta / Tb]). Typical value = 0,1. Default: 0.0 + :tb: Denominator time constant of lag-lead block (Tb) (>= 0). Typical value = 10. Default: 0 + :k: Gain (K) (> 0). Typical value = 100. Default: 0.0 + :te: Time constant of gain block (Te) (> 0). Typical value = 0,05. Default: 0 + :emin: Minimum field voltage output (Emin) (< ExcSEXS.emax). Typical value = -5. Default: 0.0 + :emax: Maximum field voltage output (Emax) (> ExcSEXS.emin). Typical value = 5. Default: 0.0 + :kc: PI controller gain (Kc) (> 0 if ExcSEXS.tc > 0). Typical value = 0,08. Default: 0.0 + :tc: PI controller phase lead time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :efdmin: Field voltage clipping minimum limit (Efdmin) (< ExcSEXS.efdmax). Typical value = -5. Default: 0.0 + :efdmax: Field voltage clipping maximum limit (Efdmax) (> ExcSEXS.efdmin). Typical value = 5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tatb": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + tatb=0.0, + tb=0, + k=0.0, + te=0, + emin=0.0, + emax=0.0, + kc=0.0, + tc=0, + efdmin=0.0, + efdmax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tatb = tatb + self.tb = tb + self.k = k + self.te = te + self.emin = emin + self.emax = emax + self.kc = kc + self.tc = tc + self.efdmin = efdmin + self.efdmax = efdmax + + def __str__(self): + str = "class=ExcSEXS\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcSK.py b/cimpy_3/cimpy/cgmes_v3_0/ExcSK.py new file mode 100644 index 00000000..2ee37f6f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcSK.py @@ -0,0 +1,230 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcSK(ExcitationSystemDynamics): + """ + Slovakian excitation system. UEL and secondary voltage control are included in this model. When this model is used, there cannot be a separate underexcitation limiter or VAr controller model. + + :efdmax: Field voltage clipping upper level limit (Efdmax) (> ExcSK.efdmin). Default: 0.0 + :efdmin: Field voltage clipping lower level limit (Efdmin) (< ExcSK.efdmax). Default: 0.0 + :emax: Maximum field voltage output (Emax) (> ExcSK.emin). Typical value = 20. Default: 0.0 + :emin: Minimum field voltage output (Emin) (< ExcSK.emax). Typical value = -20. Default: 0.0 + :k: Gain (K). Typical value = 1. Default: 0.0 + :k1: Parameter of underexcitation limit (K1). Typical value = 0,1364. Default: 0.0 + :k2: Parameter of underexcitation limit (K2). Typical value = -0,3861. Default: 0.0 + :kc: PI controller gain (Kc). Typical value = 70. Default: 0.0 + :kce: Rectifier regulation factor (Kce). Typical value = 0. Default: 0.0 + :kd: Exciter internal reactance (Kd). Typical value = 0. Default: 0.0 + :kgob: P controller gain (Kgob). Typical value = 10. Default: 0.0 + :kp: PI controller gain (Kp). Typical value = 1. Default: 0.0 + :kqi: PI controller gain of integral component (Kqi). Typical value = 0. Default: 0.0 + :kqob: Rate of rise of the reactive power (Kqob). Default: 0.0 + :kqp: PI controller gain (Kqp). Typical value = 0. Default: 0.0 + :nq: Deadband of reactive power (nq). Determines the range of sensitivity. Typical value = 0,001. Default: 0.0 + :qconoff: Secondary voltage control state (Qc_on_off). true = secondary voltage control is on false = secondary voltage control is off. Typical value = false. Default: False + :qz: Desired value (setpoint) of reactive power, manual setting (Qz). Default: 0.0 + :remote: Selector to apply automatic calculation in secondary controller model (remote). true = automatic calculation is activated false = manual set is active; the use of desired value of reactive power (Qz) is required. Typical value = true. Default: False + :sbase: Apparent power of the unit (Sbase) (> 0). Unit = MVA. Typical value = 259. Default: 0.0 + :tc: PI controller phase lead time constant (Tc) (>= 0). Typical value = 8. Default: 0 + :te: Time constant of gain block (Te) (>= 0). Typical value = 0,1. Default: 0 + :ti: PI controller phase lead time constant (Ti) (>= 0). Typical value = 2. Default: 0 + :tp: Time constant (Tp) (>= 0). Typical value = 0,1. Default: 0 + :tr: Voltage transducer time constant (Tr) (>= 0). Typical value = 0,01. Default: 0 + :uimax: Maximum error (UImax) (> ExcSK.uimin). Typical value = 10. Default: 0.0 + :uimin: Minimum error (UImin) (< ExcSK.uimax). Typical value = -10. Default: 0.0 + :urmax: Maximum controller output (URmax) (> ExcSK.urmin). Typical value = 10. Default: 0.0 + :urmin: Minimum controller output (URmin) (< ExcSK.urmax). Typical value = -10. Default: 0.0 + :vtmax: Maximum terminal voltage input (Vtmax) (> ExcSK.vtmin). Determines the range of voltage deadband. Typical value = 1,05. Default: 0.0 + :vtmin: Minimum terminal voltage input (Vtmin) (< ExcSK.vtmax). Determines the range of voltage deadband. Typical value = 0,95. Default: 0.0 + :yp: Maximum output (Yp). Typical value = 1. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "efdmin": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "emin": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kce": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kgob": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "kqi": [ + cgmesProfile.DY.value, + ], + "kqob": [ + cgmesProfile.DY.value, + ], + "kqp": [ + cgmesProfile.DY.value, + ], + "nq": [ + cgmesProfile.DY.value, + ], + "qconoff": [ + cgmesProfile.DY.value, + ], + "qz": [ + cgmesProfile.DY.value, + ], + "remote": [ + cgmesProfile.DY.value, + ], + "sbase": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "ti": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "uimax": [ + cgmesProfile.DY.value, + ], + "uimin": [ + cgmesProfile.DY.value, + ], + "urmax": [ + cgmesProfile.DY.value, + ], + "urmin": [ + cgmesProfile.DY.value, + ], + "vtmax": [ + cgmesProfile.DY.value, + ], + "vtmin": [ + cgmesProfile.DY.value, + ], + "yp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + efdmax=0.0, + efdmin=0.0, + emax=0.0, + emin=0.0, + k=0.0, + k1=0.0, + k2=0.0, + kc=0.0, + kce=0.0, + kd=0.0, + kgob=0.0, + kp=0.0, + kqi=0.0, + kqob=0.0, + kqp=0.0, + nq=0.0, + qconoff=False, + qz=0.0, + remote=False, + sbase=0.0, + tc=0, + te=0, + ti=0, + tp=0, + tr=0, + uimax=0.0, + uimin=0.0, + urmax=0.0, + urmin=0.0, + vtmax=0.0, + vtmin=0.0, + yp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efdmax = efdmax + self.efdmin = efdmin + self.emax = emax + self.emin = emin + self.k = k + self.k1 = k1 + self.k2 = k2 + self.kc = kc + self.kce = kce + self.kd = kd + self.kgob = kgob + self.kp = kp + self.kqi = kqi + self.kqob = kqob + self.kqp = kqp + self.nq = nq + self.qconoff = qconoff + self.qz = qz + self.remote = remote + self.sbase = sbase + self.tc = tc + self.te = te + self.ti = ti + self.tp = tp + self.tr = tr + self.uimax = uimax + self.uimin = uimin + self.urmax = urmax + self.urmin = urmin + self.vtmax = vtmax + self.vtmin = vtmin + self.yp = yp + + def __str__(self): + str = "class=ExcSK\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST1A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST1A.py new file mode 100644 index 00000000..73468405 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST1A.py @@ -0,0 +1,146 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST1A(ExcitationSystemDynamics): + """ + Modification of an old IEEE ST1A static excitation system without overexcitation limiter (OEL) and underexcitation limiter (UEL). + + :vimax: Maximum voltage regulator input limit (Vimax) (> 0). Typical value = 999. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin) (< 0). Typical value = -999. Default: 0.0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 1. Default: 0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 10. Default: 0 + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 190. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (>= 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator outputs (Vrmax) (> 0) . Typical value = 7,8. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin) (< 0). Typical value = -6,7. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,05. Default: 0.0 + :kf: Excitation control system stabilizer gains (Kf) (>= 0). Typical value = 0. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (>= 0). Typical value = 1. Default: 0 + :tc1: Voltage regulator time constant (Tc1) (>= 0). Typical value = 0. Default: 0 + :tb1: Voltage regulator time constant (Tb1) (>= 0). Typical value = 0. Default: 0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 999. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -999. Default: 0.0 + :ilr: Exciter output current limit reference (Ilr). Typical value = 0. Default: 0.0 + :klr: Exciter output current limiter gain (Klr). Typical value = 0. Default: 0.0 + :xe: Excitation xfmr effective reactance (Xe). Typical value = 0,04. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tc1": [ + cgmesProfile.DY.value, + ], + "tb1": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "xe": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + tc=0, + tb=0, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kc=0.0, + kf=0.0, + tf=0, + tc1=0, + tb1=0, + vamax=0.0, + vamin=0.0, + ilr=0.0, + klr=0.0, + xe=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.tc = tc + self.tb = tb + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kc = kc + self.kf = kf + self.tf = tf + self.tc1 = tc1 + self.tb1 = tb1 + self.vamax = vamax + self.vamin = vamin + self.ilr = ilr + self.klr = klr + self.xe = xe + + def __str__(self): + str = "class=ExcST1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST2A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST2A.py new file mode 100644 index 00000000..8a94186a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST2A.py @@ -0,0 +1,128 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST2A(ExcitationSystemDynamics): + """ + Modified IEEE ST2A static excitation system with another lead-lag block added to match the model defined by WECC. + + :ka: Voltage regulator gain (Ka) (> 0). Typical value = 120. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (> 0). Typical value = 0,15. Default: 0 + :vrmax: Maximum voltage regulator outputs (Vrmax) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator outputs (Vrmin) (< 0). Typical value = -1. Default: 0.0 + :ke: Exciter constant related to self-excited field (Ke). Typical value = 1. Default: 0.0 + :te: Exciter time constant, integration rate associated with exciter control (Te) (> 0). Typical value = 0,5. Default: 0 + :kf: Excitation control system stabilizer gains (kf) (>= 0). Typical value = 0,05. Default: 0.0 + :tf: Excitation control system stabilizer time constant (Tf) (>= 0). Typical value = 0,7. Default: 0 + :kp: Potential circuit gain coefficient (Kp) (>= 0). Typical value = 4,88. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki) (>= 0). Typical value = 8. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 1,82. Default: 0.0 + :efdmax: Maximum field voltage (Efdmax) (>= 0). Typical value = 99. Default: 0.0 + :uelin: UEL input (UELin). true = HV gate false = add to error signal. Typical value = false. Default: False + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 0. Default: 0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ka=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + ke=0.0, + te=0, + kf=0.0, + tf=0, + kp=0.0, + ki=0.0, + kc=0.0, + efdmax=0.0, + uelin=False, + tb=0, + tc=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.ke = ke + self.te = te + self.kf = kf + self.tf = tf + self.kp = kp + self.ki = ki + self.kc = kc + self.efdmax = efdmax + self.uelin = uelin + self.tb = tb + self.tc = tc + + def __str__(self): + str = "class=ExcST2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST3A.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST3A.py new file mode 100644 index 00000000..4cb370d8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST3A.py @@ -0,0 +1,158 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST3A(ExcitationSystemDynamics): + """ + Modified IEEE ST3A static excitation system with added speed multiplier. + + :vimax: Maximum voltage regulator input limit (Vimax) (> 0). Typical value = 0,2. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin) (< 0). Typical value = -0,2. Default: 0.0 + :kj: AVR gain (Kj) (> 0). Typical value = 200. Default: 0.0 + :tb: Voltage regulator time constant (Tb) (>= 0). Typical value = 6,67. Default: 0 + :tc: Voltage regulator time constant (Tc) (>= 0). Typical value = 1. Default: 0 + :efdmax: Maximum AVR output (Efdmax) (>= 0). Typical value = 6,9. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (Km) (> 0). Typical value = 7,04. Default: 0.0 + :tm: Forward time constant of inner loop field regulator (Tm) (> 0). Typical value = 1. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -1. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg) (>= 0). Typical value = 1. Default: 0.0 + :kp: Potential source gain (Kp) (> 0). Typical value = 4,37. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical value = 20. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki) (>= 0). Typical value = 4,83. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 1,1. Default: 0.0 + :xl: Reactance associated with potential source (Xl) (>= 0). Typical value = 0,09. Default: 0.0 + :vbmax: Maximum excitation voltage (Vbmax) (> 0). Typical value = 8,63. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (Vgmax) (>= 0). Typical value = 6,53. Default: 0.0 + :ks: Coefficient to allow different usage of the model-speed coefficient (Ks). Typical value = 0. Default: 0.0 + :ks1: Coefficient to allow different usage of the model-speed coefficient (Ks1). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "kj": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "efdmax": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + vimax=0.0, + vimin=0.0, + kj=0.0, + tb=0, + tc=0, + efdmax=0.0, + km=0.0, + tm=0, + vrmax=0.0, + vrmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + ks=0.0, + ks1=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vimax = vimax + self.vimin = vimin + self.kj = kj + self.tb = tb + self.tc = tc + self.efdmax = efdmax + self.km = km + self.tm = tm + self.vrmax = vrmax + self.vrmin = vrmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + self.ks = ks + self.ks1 = ks1 + + def __str__(self): + str = "class=ExcST3A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST4B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST4B.py new file mode 100644 index 00000000..c6a6ae28 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST4B.py @@ -0,0 +1,152 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST4B(ExcitationSystemDynamics): + """ + Modified IEEE ST4B static excitation system with maximum inner loop feedback gain Vgmax. + + :kpr: Voltage regulator proportional gain (Kpr). Typical value = 10,75. Default: 0.0 + :kir: Voltage regulator integral gain (Kir). Typical value = 10,75. Default: 0.0 + :ta: Voltage regulator time constant (Ta) (>= 0). Typical value = 0,02. Default: 0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 1. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -0,87. Default: 0.0 + :kpm: Voltage regulator proportional gain output (Kpm). Typical value = 1. Default: 0.0 + :kim: Voltage regulator integral gain output (Kim). Typical value = 0. Default: 0.0 + :vmmax: Maximum inner loop output (Vmmax) (> ExcST4B.vmmin). Typical value = 99. Default: 0.0 + :vmmin: Minimum inner loop output (Vmmin) (< ExcST4B.vmmax). Typical value = -99. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg) (>= 0). Typical value = 0. Default: 0.0 + :kp: Potential circuit gain coefficient (Kp) (> 0). Typical value = 9,3. Default: 0.0 + :thetap: Potential circuit phase angle (thetap). Typical value = 0. Default: 0.0 + :ki: Potential circuit gain coefficient (Ki) (>= 0). Typical value = 0. Default: 0.0 + :kc: Rectifier loading factor proportional to commutating reactance (Kc) (>= 0). Typical value = 0,113. Default: 0.0 + :xl: Reactance associated with potential source (Xl) (>= 0). Typical value = 0,124. Default: 0.0 + :vbmax: Maximum excitation voltage (Vbmax) (> 0). Typical value = 11,63. Default: 0.0 + :vgmax: Maximum inner loop feedback voltage (Vgmax) (>= 0). Typical value = 5,8. Default: 0.0 + :uel: Selector (UEL). true = UEL is part of block diagram false = UEL is not part of block diagram. Typical value = false. Default: False + :lvgate: Selector (LVGate). true = LVGate is part of the block diagram false = LVGate is not part of the block diagram. Typical value = false. Default: False + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpr": [ + cgmesProfile.DY.value, + ], + "kir": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "kpm": [ + cgmesProfile.DY.value, + ], + "kim": [ + cgmesProfile.DY.value, + ], + "vmmax": [ + cgmesProfile.DY.value, + ], + "vmmin": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "thetap": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "xl": [ + cgmesProfile.DY.value, + ], + "vbmax": [ + cgmesProfile.DY.value, + ], + "vgmax": [ + cgmesProfile.DY.value, + ], + "uel": [ + cgmesProfile.DY.value, + ], + "lvgate": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kpr=0.0, + kir=0.0, + ta=0, + vrmax=0.0, + vrmin=0.0, + kpm=0.0, + kim=0.0, + vmmax=0.0, + vmmin=0.0, + kg=0.0, + kp=0.0, + thetap=0.0, + ki=0.0, + kc=0.0, + xl=0.0, + vbmax=0.0, + vgmax=0.0, + uel=False, + lvgate=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpr = kpr + self.kir = kir + self.ta = ta + self.vrmax = vrmax + self.vrmin = vrmin + self.kpm = kpm + self.kim = kim + self.vmmax = vmmax + self.vmmin = vmmin + self.kg = kg + self.kp = kp + self.thetap = thetap + self.ki = ki + self.kc = kc + self.xl = xl + self.vbmax = vbmax + self.vgmax = vgmax + self.uel = uel + self.lvgate = lvgate + + def __str__(self): + str = "class=ExcST4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST6B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST6B.py new file mode 100644 index 00000000..d00ea58d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST6B.py @@ -0,0 +1,176 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST6B(ExcitationSystemDynamics): + """ + Modified IEEE ST6B static excitation system with PID controller and optional inner feedback loop. + + :ilr: Exciter output current limit reference (Ilr) (> 0). Typical value = 4,164. Default: 0.0 + :k1: Selector (K1). true = feedback is from Ifd false = feedback is not from Ifd. Typical value = true. Default: False + :kcl: Exciter output current limit adjustment (Kcl) (> 0). Typical value = 1,0577. Default: 0.0 + :kff: Pre-control gain constant of the inner loop field regulator (Kff). Typical value = 1. Default: 0.0 + :kg: Feedback gain constant of the inner loop field regulator (Kg) (>= 0). Typical value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (Kia) (> 0). Typical value = 45,094. Default: 0.0 + :klr: Exciter output current limit adjustment (Kcl) (> 0). Typical value = 17,33. Default: 0.0 + :km: Forward gain constant of the inner loop field regulator (Km). Typical value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (Kpa) (> 0). Typical value = 18,038. Default: 0.0 + :kvd: Voltage regulator derivative gain (Kvd). Typical value = 0. Default: 0.0 + :oelin: OEL input selector (OELin). Typical value = noOELinput (corresponds to OELin = 0 on diagram). Default: None + :tg: Feedback time constant of inner loop field voltage regulator (Tg) (>= 0). Typical value = 0,02. Default: 0 + :ts: Rectifier firing time constant (Ts) (>= 0). Typical value = 0. Default: 0 + :tvd: Voltage regulator derivative gain (Tvd) (>= 0). Typical value = 0. Default: 0 + :vamax: Maximum voltage regulator output (Vamax) (> 0). Typical value = 4,81. Default: 0.0 + :vamin: Minimum voltage regulator output (Vamin) (< 0). Typical value = -3,85. Default: 0.0 + :vilim: Selector (Vilim). true = Vimin-Vimax limiter is active false = Vimin-Vimax limiter is not active. Typical value = true. Default: False + :vimax: Maximum voltage regulator input limit (Vimax) (> ExcST6B.vimin). Typical value = 10. Default: 0.0 + :vimin: Minimum voltage regulator input limit (Vimin) (< ExcST6B.vimax). Typical value = -10. Default: 0.0 + :vmult: Selector (vmult). true = multiply regulator output by terminal voltage false = do not multiply regulator output by terminal voltage. Typical value = true. Default: False + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 4,81. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -3,85. Default: 0.0 + :xc: Excitation source reactance (Xc). Typical value = 0,05. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ilr": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "kcl": [ + cgmesProfile.DY.value, + ], + "kff": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "klr": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "kvd": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "tvd": [ + cgmesProfile.DY.value, + ], + "vamax": [ + cgmesProfile.DY.value, + ], + "vamin": [ + cgmesProfile.DY.value, + ], + "vilim": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vmult": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + ilr=0.0, + k1=False, + kcl=0.0, + kff=0.0, + kg=0.0, + kia=0.0, + klr=0.0, + km=0.0, + kpa=0.0, + kvd=0.0, + oelin=None, + tg=0, + ts=0, + tvd=0, + vamax=0.0, + vamin=0.0, + vilim=False, + vimax=0.0, + vimin=0.0, + vmult=False, + vrmax=0.0, + vrmin=0.0, + xc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ilr = ilr + self.k1 = k1 + self.kcl = kcl + self.kff = kff + self.kg = kg + self.kia = kia + self.klr = klr + self.km = km + self.kpa = kpa + self.kvd = kvd + self.oelin = oelin + self.tg = tg + self.ts = ts + self.tvd = tvd + self.vamax = vamax + self.vamin = vamin + self.vilim = vilim + self.vimax = vimax + self.vimin = vimin + self.vmult = vmult + self.vrmax = vrmax + self.vrmin = vrmin + self.xc = xc + + def __str__(self): + str = "class=ExcST6B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST6BOELselectorKind.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST6BOELselectorKind.py new file mode 100644 index 00000000..3a3bf863 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST6BOELselectorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ExcST6BOELselectorKind(Base): + """ + Types of connections for the OEL input used for static excitation systems type 6B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST6BOELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST7B.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST7B.py new file mode 100644 index 00000000..69f04bda --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST7B.py @@ -0,0 +1,134 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcST7B(ExcitationSystemDynamics): + """ + Modified IEEE ST7B static excitation system without stator current limiter (SCL) and current compensator (DROOP) inputs. + + :kh: High-value gate feedback gain (Kh) (>= 0). Typical value = 1. Default: 0.0 + :kia: Voltage regulator integral gain (Kia) (>= 0). Typical value = 1. Default: 0.0 + :kl: Low-value gate feedback gain (Kl) (>= 0). Typical value = 1. Default: 0.0 + :kpa: Voltage regulator proportional gain (Kpa) (> 0). Typical value = 40. Default: 0.0 + :oelin: OEL input selector (OELin). Typical value = noOELinput. Default: None + :tb: Regulator lag time constant (Tb) (>= 0). Typical value = 1. Default: 0 + :tc: Regulator lead time constant (Tc) (>= 0). Typical value = 1. Default: 0 + :tf: Excitation control system stabilizer time constant (Tf) (>= 0). Typical value = 1. Default: 0 + :tg: Feedback time constant of inner loop field voltage regulator (Tg) (>= 0). Typical value = 1. Default: 0 + :tia: Feedback time constant (Tia) (>= 0). Typical value = 3. Default: 0 + :ts: Rectifier firing time constant (Ts) (>= 0). Typical value = 0. Default: 0 + :uelin: UEL input selector (UELin). Typical value = noUELinput. Default: None + :vmax: Maximum voltage reference signal (Vmax) (> 0 and > ExcST7B.vmin)). Typical value = 1,1. Default: 0.0 + :vmin: Minimum voltage reference signal (Vmin) (> 0 and < ExcST7B.vmax). Typical value = 0,9. Default: 0.0 + :vrmax: Maximum voltage regulator output (Vrmax) (> 0). Typical value = 5. Default: 0.0 + :vrmin: Minimum voltage regulator output (Vrmin) (< 0). Typical value = -4,5. Default: 0.0 + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kia": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kpa": [ + cgmesProfile.DY.value, + ], + "oelin": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tia": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "uelin": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, + kh=0.0, + kia=0.0, + kl=0.0, + kpa=0.0, + oelin=None, + tb=0, + tc=0, + tf=0, + tg=0, + tia=0, + ts=0, + uelin=None, + vmax=0.0, + vmin=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kh = kh + self.kia = kia + self.kl = kl + self.kpa = kpa + self.oelin = oelin + self.tb = tb + self.tc = tc + self.tf = tf + self.tg = tg + self.tia = tia + self.ts = ts + self.uelin = uelin + self.vmax = vmax + self.vmin = vmin + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=ExcST7B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST7BOELselectorKind.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST7BOELselectorKind.py new file mode 100644 index 00000000..4d76d60f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST7BOELselectorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ExcST7BOELselectorKind(Base): + """ + Types of connections for the OEL input used for static excitation systems type 7B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST7BOELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcST7BUELselectorKind.py b/cimpy_3/cimpy/cgmes_v3_0/ExcST7BUELselectorKind.py new file mode 100644 index 00000000..e53789d6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcST7BUELselectorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ExcST7BUELselectorKind(Base): + """ + Types of connections for the UEL input used for static excitation systems type 7B. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ExcST7BUELselectorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemDynamics.py new file mode 100644 index 00000000..2faba5c8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemDynamics.py @@ -0,0 +1,88 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class ExcitationSystemDynamics(DynamicsFunctionBlock): + """ + Excitation system function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :SynchronousMachineDynamics: Synchronous machine model with which this excitation system model is associated. Default: None + :VoltageCompensatorDynamics: Voltage compensator model associated with this excitation system model. Default: None + :OverexcitationLimiterDynamics: Overexcitation limiter model associated with this excitation system model. Default: None + :PFVArControllerType2Dynamics: Power factor or VAr controller type 2 model associated with this excitation system model. Default: None + :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model associated with this excitation system model. Default: None + :PowerSystemStabilizerDynamics: Power system stabilizer model associated with this excitation system model. Default: None + :UnderexcitationLimiterDynamics: Undrexcitation limiter model associated with this excitation system model. Default: None + :PFVArControllerType1Dynamics: Power factor or VAr controller type 1 model associated with this excitation system model. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorDynamics": [ + cgmesProfile.DY.value, + ], + "OverexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType2Dynamics": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlDynamics": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerDynamics": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + VoltageCompensatorDynamics=None, + OverexcitationLimiterDynamics=None, + PFVArControllerType2Dynamics=None, + DiscontinuousExcitationControlDynamics=None, + PowerSystemStabilizerDynamics=None, + UnderexcitationLimiterDynamics=None, + PFVArControllerType1Dynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.VoltageCompensatorDynamics = VoltageCompensatorDynamics + self.OverexcitationLimiterDynamics = OverexcitationLimiterDynamics + self.PFVArControllerType2Dynamics = PFVArControllerType2Dynamics + self.DiscontinuousExcitationControlDynamics = ( + DiscontinuousExcitationControlDynamics + ) + self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics + self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + + def __str__(self): + str = "class=ExcitationSystemDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemUserDefined.py new file mode 100644 index 00000000..95ab978f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExcitationSystemUserDefined.py @@ -0,0 +1,46 @@ +from .ExcitationSystemDynamics import ExcitationSystemDynamics + + +class ExcitationSystemUserDefined(ExcitationSystemDynamics): + """ + Excitation system function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = ExcitationSystemDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ExcitationSystemDynamics: \n" + + ExcitationSystemDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=ExcitationSystemUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ExternalNetworkInjection.py b/cimpy_3/cimpy/cgmes_v3_0/ExternalNetworkInjection.py new file mode 100644 index 00000000..a9f904ab --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ExternalNetworkInjection.py @@ -0,0 +1,148 @@ +from .RegulatingCondEq import RegulatingCondEq + + +class ExternalNetworkInjection(RegulatingCondEq): + """ + This class represents the external network and it is used for IEC 60909 calculations. + + :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 + :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for steady state solutions. Default: 0.0 + :governorSCD: Power Frequency Bias. This is the change in power injection divided by the change in frequency and negated. A positive value of the power frequency bias provides additional power injection upon a drop in frequency. Default: 0.0 + :maxP: Maximum active power of the injection. Default: 0.0 + :maxQ: Maximum reactive power limit. It is used for modelling of infeed for load flow exchange and not for short circuit modelling. Default: 0.0 + :minP: Minimum active power of the injection. Default: 0.0 + :minQ: Minimum reactive power limit. It is used for modelling of infeed for load flow exchange and not for short circuit modelling. Default: 0.0 + :ikSecond: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik`). Used only if short circuit calculations are done according to superposition method. Default: False + :maxInitialSymShCCurrent: Maximum initial symmetrical short-circuit currents (Ik` max) in A (Ik` = Sk`/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :maxR0ToX0Ratio: Maximum ratio of zero sequence resistance of Network Feeder to its zero sequence reactance (R(0)/X(0) max). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :maxR1ToX1Ratio: Maximum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) max). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :maxZ0ToZ1Ratio: Maximum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) max). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :minInitialSymShCCurrent: Minimum initial symmetrical short-circuit currents (Ik` min) in A (Ik` = Sk`/(SQRT(3) Un)). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :minR0ToX0Ratio: Indicates whether initial symmetrical short-circuit current and power have been calculated according to IEC (Ik`). Used for short circuit data exchange according to IEC 6090. Default: 0.0 + :minR1ToX1Ratio: Minimum ratio of positive sequence resistance of Network Feeder to its positive sequence reactance (R(1)/X(1) min). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :minZ0ToZ1Ratio: Minimum ratio of zero sequence impedance to its positive sequence impedance (Z(0)/Z(1) min). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :voltageFactor: Voltage factor in pu, which was used to calculate short-circuit current Ik` and power Sk`. Used only if short circuit calculations are done according to superposition method. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "referencePriority": [ + cgmesProfile.SSH.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "governorSCD": [ + cgmesProfile.EQ.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "ikSecond": [ + cgmesProfile.SC.value, + ], + "maxInitialSymShCCurrent": [ + cgmesProfile.SC.value, + ], + "maxR0ToX0Ratio": [ + cgmesProfile.SC.value, + ], + "maxR1ToX1Ratio": [ + cgmesProfile.SC.value, + ], + "maxZ0ToZ1Ratio": [ + cgmesProfile.SC.value, + ], + "minInitialSymShCCurrent": [ + cgmesProfile.SC.value, + ], + "minR0ToX0Ratio": [ + cgmesProfile.SC.value, + ], + "minR1ToX1Ratio": [ + cgmesProfile.SC.value, + ], + "minZ0ToZ1Ratio": [ + cgmesProfile.SC.value, + ], + "voltageFactor": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + referencePriority=0, + p=0.0, + q=0.0, + governorSCD=0.0, + maxP=0.0, + maxQ=0.0, + minP=0.0, + minQ=0.0, + ikSecond=False, + maxInitialSymShCCurrent=0.0, + maxR0ToX0Ratio=0.0, + maxR1ToX1Ratio=0.0, + maxZ0ToZ1Ratio=0.0, + minInitialSymShCCurrent=0.0, + minR0ToX0Ratio=0.0, + minR1ToX1Ratio=0.0, + minZ0ToZ1Ratio=0.0, + voltageFactor=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.referencePriority = referencePriority + self.p = p + self.q = q + self.governorSCD = governorSCD + self.maxP = maxP + self.maxQ = maxQ + self.minP = minP + self.minQ = minQ + self.ikSecond = ikSecond + self.maxInitialSymShCCurrent = maxInitialSymShCCurrent + self.maxR0ToX0Ratio = maxR0ToX0Ratio + self.maxR1ToX1Ratio = maxR1ToX1Ratio + self.maxZ0ToZ1Ratio = maxZ0ToZ1Ratio + self.minInitialSymShCCurrent = minInitialSymShCCurrent + self.minR0ToX0Ratio = minR0ToX0Ratio + self.minR1ToX1Ratio = minR1ToX1Ratio + self.minZ0ToZ1Ratio = minZ0ToZ1Ratio + self.voltageFactor = voltageFactor + + def __str__(self): + str = "class=ExternalNetworkInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/FaultIndicator.py b/cimpy_3/cimpy/cgmes_v3_0/FaultIndicator.py new file mode 100644 index 00000000..43ae71ac --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/FaultIndicator.py @@ -0,0 +1,35 @@ +from .AuxiliaryEquipment import AuxiliaryEquipment + + +class FaultIndicator(AuxiliaryEquipment): + """ + A FaultIndicator is typically only an indicator (which may or may not be remotely monitored), and not a piece of equipment that actually initiates a protection event. It is used for FLISR (Fault Location, Isolation and Restoration) purposes, assisting with the dispatch of crews to "most likely" part of the network (i.e. assists with determining circuit section where the fault most likely happened). + + """ + + cgmesProfile = AuxiliaryEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AuxiliaryEquipment: \n" + + AuxiliaryEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=FaultIndicator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Float.py b/cimpy_3/cimpy/cgmes_v3_0/Float.py new file mode 100644 index 00000000..d3cfeb8c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Float.py @@ -0,0 +1,38 @@ +from .Base import Base + + +class Float(Base): + """ + A floating point number. The range is unspecified and not limited. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Float\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/FossilFuel.py b/cimpy_3/cimpy/cgmes_v3_0/FossilFuel.py new file mode 100644 index 00000000..9bc4fb84 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/FossilFuel.py @@ -0,0 +1,46 @@ +from .IdentifiedObject import IdentifiedObject + + +class FossilFuel(IdentifiedObject): + """ + The fossil fuel consumed by the non-nuclear thermal generating unit. For example, coal, oil, gas, etc. These are the specific fuels that the generating unit can consume. + + :fossilFuelType: The type of fossil fuel, such as coal, oil, or gas. Default: None + :ThermalGeneratingUnit: A thermal generating unit may have one or more fossil fuels. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "fossilFuelType": [ + cgmesProfile.EQ.value, + ], + "ThermalGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, fossilFuelType=None, ThermalGeneratingUnit=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.fossilFuelType = fossilFuelType + self.ThermalGeneratingUnit = ThermalGeneratingUnit + + def __str__(self): + str = "class=FossilFuel\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/FrancisGovernorControlKind.py b/cimpy_3/cimpy/cgmes_v3_0/FrancisGovernorControlKind.py new file mode 100644 index 00000000..24ca206e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/FrancisGovernorControlKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class FrancisGovernorControlKind(Base): + """ + Governor control flag for Francis hydro model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=FrancisGovernorControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Frequency.py b/cimpy_3/cimpy/cgmes_v3_0/Frequency.py new file mode 100644 index 00000000..610cef04 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Frequency.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Frequency(Base): + """ + Cycles per second. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Frequency\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/FuelType.py b/cimpy_3/cimpy/cgmes_v3_0/FuelType.py new file mode 100644 index 00000000..4870a023 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/FuelType.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class FuelType(Base): + """ + Type of fuel. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=FuelType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Fuse.py b/cimpy_3/cimpy/cgmes_v3_0/Fuse.py new file mode 100644 index 00000000..5d7e5a66 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Fuse.py @@ -0,0 +1,33 @@ +from .Switch import Switch + + +class Fuse(Switch): + """ + An overcurrent protective device with a circuit opening fusible part that is heated and severed by the passage of overcurrent through it. A fuse is considered a switching device because it breaks current. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Fuse\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GenICompensationForGenJ.py b/cimpy_3/cimpy/cgmes_v3_0/GenICompensationForGenJ.py new file mode 100644 index 00000000..bd681e8c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GenICompensationForGenJ.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class GenICompensationForGenJ(IdentifiedObject): + """ + Resistive and reactive components of compensation for generator associated with IEEE type 2 voltage compensator for current flow out of another generator in the interconnection. + + :SynchronousMachineDynamics: Standard synchronous machine out of which current flow is being compensated for. Default: None + :VcompIEEEType2: The standard IEEE type 2 voltage compensator of this compensation. Default: None + :rcij: Resistive component of compensation of generator associated with this IEEE type 2 voltage compensator for current flow out of another generator (Rcij). Default: 0.0 + :xcij: Reactive component of compensation of generator associated with this IEEE type 2 voltage compensator for current flow out of another generator (Xcij). Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "VcompIEEEType2": [ + cgmesProfile.DY.value, + ], + "rcij": [ + cgmesProfile.DY.value, + ], + "xcij": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + VcompIEEEType2=None, + rcij=0.0, + xcij=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.VcompIEEEType2 = VcompIEEEType2 + self.rcij = rcij + self.xcij = xcij + + def __str__(self): + str = "class=GenICompensationForGenJ\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/GeneratingUnit.py new file mode 100644 index 00000000..5c48136c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GeneratingUnit.py @@ -0,0 +1,150 @@ +from .Equipment import Equipment + + +class GeneratingUnit(Equipment): + """ + A single or set of synchronous machines for converting mechanical power into alternating-current power. For example, individual machines within a set may be defined for scheduling purposes while a single control signal is derived for the set. In this case there would be a GeneratingUnit for each member of the set and an additional GeneratingUnit corresponding to the set. + + :normalPF: Generating unit economic participation factor. The sum of the participation factors across generating units does not have to sum to one. It is used for representing distributed slack participation factor. The attribute shall be a positive value or zero. Default: 0.0 + :ControlAreaGeneratingUnit: ControlArea specifications for this generating unit. Default: "list" + :genControlSource: The source of controls for a generating unit. Defines the control status of the generating unit. Default: None + :governorSCD: Governor Speed Changer Droop. This is the change in generator power output divided by the change in frequency normalized by the nominal power of the generator and the nominal frequency and expressed in percent and negated. A positive value of speed change droop provides additional generator output upon a drop in frequency. Default: 0.0 + :longPF: Generating unit long term economic participation factor. Default: 0.0 + :maximumAllowableSpinningReserve: Maximum allowable spinning reserve. Spinning reserve will never be considered greater than this value regardless of the current operating point. Default: 0.0 + :maxOperatingP: This is the maximum operating active power limit the dispatcher can enter for this unit. Default: 0.0 + :minOperatingP: This is the minimum operating active power limit the dispatcher can enter for this unit. Default: 0.0 + :nominalP: The nominal power of the generating unit. Used to give precise meaning to percentage based attributes such as the governor speed change droop (governorSCD attribute). The attribute shall be a positive value equal to or less than RotatingMachine.ratedS. Default: 0.0 + :ratedGrossMaxP: The unit`s gross rated maximum capacity (book value). The attribute shall be a positive value. Default: 0.0 + :ratedGrossMinP: The gross rated minimum generation level which the unit can safely operate at while delivering power to the transmission grid. The attribute shall be a positive value. Default: 0.0 + :ratedNetMaxP: The net rated maximum capacity determined by subtracting the auxiliary power used to operate the internal plant machinery from the rated gross maximum capacity. The attribute shall be a positive value. Default: 0.0 + :shortPF: Generating unit short term economic participation factor. Default: 0.0 + :startupCost: The initial startup cost incurred for each start of the GeneratingUnit. Default: 0.0 + :variableCost: The variable cost component of production per unit of ActivePower. Default: 0.0 + :startupTime: Time it takes to get the unit on-line, from the time that the prime mover mechanical power is applied. Default: 0 + :totalEfficiency: The efficiency of the unit in converting the fuel into electrical energy. Default: 0.0 + :GrossToNetActivePowerCurves: A generating unit may have a gross active power to net active power curve, describing the losses and auxiliary power requirements of the unit. Default: "list" + :RotatingMachine: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: "list" + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "normalPF": [ + cgmesProfile.SSH.value, + ], + "ControlAreaGeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "genControlSource": [ + cgmesProfile.EQ.value, + ], + "governorSCD": [ + cgmesProfile.EQ.value, + ], + "longPF": [ + cgmesProfile.EQ.value, + ], + "maximumAllowableSpinningReserve": [ + cgmesProfile.EQ.value, + ], + "maxOperatingP": [ + cgmesProfile.EQ.value, + ], + "minOperatingP": [ + cgmesProfile.EQ.value, + ], + "nominalP": [ + cgmesProfile.EQ.value, + ], + "ratedGrossMaxP": [ + cgmesProfile.EQ.value, + ], + "ratedGrossMinP": [ + cgmesProfile.EQ.value, + ], + "ratedNetMaxP": [ + cgmesProfile.EQ.value, + ], + "shortPF": [ + cgmesProfile.EQ.value, + ], + "startupCost": [ + cgmesProfile.EQ.value, + ], + "variableCost": [ + cgmesProfile.EQ.value, + ], + "startupTime": [ + cgmesProfile.EQ.value, + ], + "totalEfficiency": [ + cgmesProfile.EQ.value, + ], + "GrossToNetActivePowerCurves": [ + cgmesProfile.EQ.value, + ], + "RotatingMachine": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__( + self, + normalPF=0.0, + ControlAreaGeneratingUnit="list", + genControlSource=None, + governorSCD=0.0, + longPF=0.0, + maximumAllowableSpinningReserve=0.0, + maxOperatingP=0.0, + minOperatingP=0.0, + nominalP=0.0, + ratedGrossMaxP=0.0, + ratedGrossMinP=0.0, + ratedNetMaxP=0.0, + shortPF=0.0, + startupCost=0.0, + variableCost=0.0, + startupTime=0, + totalEfficiency=0.0, + GrossToNetActivePowerCurves="list", + RotatingMachine="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.normalPF = normalPF + self.ControlAreaGeneratingUnit = ControlAreaGeneratingUnit + self.genControlSource = genControlSource + self.governorSCD = governorSCD + self.longPF = longPF + self.maximumAllowableSpinningReserve = maximumAllowableSpinningReserve + self.maxOperatingP = maxOperatingP + self.minOperatingP = minOperatingP + self.nominalP = nominalP + self.ratedGrossMaxP = ratedGrossMaxP + self.ratedGrossMinP = ratedGrossMinP + self.ratedNetMaxP = ratedNetMaxP + self.shortPF = shortPF + self.startupCost = startupCost + self.variableCost = variableCost + self.startupTime = startupTime + self.totalEfficiency = totalEfficiency + self.GrossToNetActivePowerCurves = GrossToNetActivePowerCurves + self.RotatingMachine = RotatingMachine + + def __str__(self): + str = "class=GeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GeneratorControlSource.py b/cimpy_3/cimpy/cgmes_v3_0/GeneratorControlSource.py new file mode 100644 index 00000000..e9c48ec4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GeneratorControlSource.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class GeneratorControlSource(Base): + """ + The source of controls for a generating unit. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=GeneratorControlSource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GenericNonLinearLoadModelKind.py b/cimpy_3/cimpy/cgmes_v3_0/GenericNonLinearLoadModelKind.py new file mode 100644 index 00000000..afae8efd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GenericNonLinearLoadModelKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class GenericNonLinearLoadModelKind(Base): + """ + Type of generic non-linear load model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=GenericNonLinearLoadModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py b/cimpy_3/cimpy/cgmes_v3_0/GeographicalLocationVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/GeographicalLocationVersion.py index 54512344..fec58745 100644 --- a/cimpy/cgmes_v2_4_15/GeographicalLocationVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/GeographicalLocationVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# removed as per TC57CIM Profile part from standard book +"""from .Base import Base class GeographicalLocationVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,7 +16,7 @@ class GeographicalLocationVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' +""" """ cgmesProfile = Base.cgmesProfile @@ -34,10 +35,10 @@ class GeographicalLocationVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +49,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=GeographicalLocationVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/GeographicalRegion.py b/cimpy_3/cimpy/cgmes_v3_0/GeographicalRegion.py new file mode 100644 index 00000000..7ba107e1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GeographicalRegion.py @@ -0,0 +1,41 @@ +from .IdentifiedObject import IdentifiedObject + + +class GeographicalRegion(IdentifiedObject): + """ + A geographical region of a power system network model. + + :Regions: All sub-geographical regions within this geographical region. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Regions": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, Regions="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Regions = Regions + + def __str__(self): + str = "class=GeographicalRegion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovCT1.py b/cimpy_3/cimpy/cgmes_v3_0/GovCT1.py new file mode 100644 index 00000000..67ae688f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovCT1.py @@ -0,0 +1,248 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovCT1(TurbineGovernorDynamics): + """ + General model for any prime mover with a PID governor, used primarily for combustion turbine and combined cycle units. This model can be used to represent a variety of prime movers controlled by PID governors. It is suitable, for example, for the representation of:
  • gas turbine and single shaft combined cycle turbines
  • diesel engines with modern electronic or digital governors
  • steam turbines where steam is supplied from a large boiler drum or a large header whose pressure is substantially constant over the period under study
  • simple hydro turbines in dam configurations where the water column length is short and water inertia effects are minimal.
Additional information on this model is available in the 2012 IEEE report, Dynamic Models for Turbine-Governors in Power System Studies, 3.1.2.3 pages 3-4 (GGOV1). + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical value = 0,04. Default: 0.0 + :rselect: Feedback signal for droop (Rselect). Typical value = electricalPower. Default: None + :tpelec: Electrical power transducer time constant (Tpelec) (> 0). Typical value = 1. Default: 0 + :maxerr: Maximum value for speed error signal (maxerr) (> GovCT1.minerr). Typical value = 0,05. Default: 0.0 + :minerr: Minimum value for speed error signal (minerr) (< GovCT1.maxerr). Typical value = -0,05. Default: 0.0 + :kpgov: Governor proportional gain (Kpgov). Typical value = 10. Default: 0.0 + :kigov: Governor integral gain (Kigov). Typical value = 2. Default: 0.0 + :kdgov: Governor derivative gain (Kdgov). Typical value = 0. Default: 0.0 + :tdgov: Governor derivative controller time constant (Tdgov) (>= 0). Typical value = 1. Default: 0 + :vmax: Maximum valve position limit (Vmax) (> GovCT1.vmin). Typical value = 1. Default: 0.0 + :vmin: Minimum valve position limit (Vmin) (< GovCT1.vmax). Typical value = 0,15. Default: 0.0 + :tact: Actuator time constant (Tact) (>= 0). Typical value = 0,5. Default: 0 + :kturb: Turbine gain (Kturb) (> 0). Typical value = 1,5. Default: 0.0 + :wfnl: No load fuel flow (Wfnl). Typical value = 0,2. Default: 0.0 + :tb: Turbine lag time constant (Tb) (> 0). Typical value = 0,5. Default: 0 + :tc: Turbine lead time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical value = true. Default: False + :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng) (>= 0). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical value = 0. Default: 0 + :tfload: Load-limiter time constant (Tfload) (> 0). Typical value = 3. Default: 0 + :kpload: Load limiter proportional gain for PI controller (Kpload). Typical value = 2. Default: 0.0 + :kiload: Load limiter integral gain for PI controller (Kiload). Typical value = 0,67. Default: 0.0 + :ldref: Load limiter reference value (Ldref). Typical value = 1. Default: 0.0 + :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical value = 0. Default: 0.0 + :ropen: Maximum valve opening rate (Ropen). Unit = PU / s. Typical value = 0.10. Default: 0.0 + :rclose: Minimum valve closing rate (Rclose). Unit = PU / s. Typical value = -0,1. Default: 0.0 + :kimw: Power controller (reset) gain (Kimw). The default value of 0,01 corresponds to a reset time of 100 s. A value of 0,001 corresponds to a relatively slow-acting load controller. Typical value = 0,01. Default: 0.0 + :aset: Acceleration limiter setpoint (Aset). Unit = PU / s. Typical value = 0,01. Default: 0.0 + :ka: Acceleration limiter gain (Ka). Typical value = 10. Default: 0.0 + :ta: Acceleration limiter time constant (Ta) (> 0). Typical value = 0,1. Default: 0 + :db: Speed governor deadband in PU speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical value = 0. Default: 0.0 + :tsa: Temperature detection lead time constant (Tsa) (>= 0). Typical value = 4. Default: 0 + :tsb: Temperature detection lag time constant (Tsb) (>= 0). Typical value = 5. Default: 0 + :rup: Maximum rate of load limit increase (Rup). Typical value = 99. Default: 0.0 + :rdown: Maximum rate of load limit decrease (Rdown). Typical value = -99. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "rselect": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "maxerr": [ + cgmesProfile.DY.value, + ], + "minerr": [ + cgmesProfile.DY.value, + ], + "kpgov": [ + cgmesProfile.DY.value, + ], + "kigov": [ + cgmesProfile.DY.value, + ], + "kdgov": [ + cgmesProfile.DY.value, + ], + "tdgov": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "tact": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "wfnl": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "wfspd": [ + cgmesProfile.DY.value, + ], + "teng": [ + cgmesProfile.DY.value, + ], + "tfload": [ + cgmesProfile.DY.value, + ], + "kpload": [ + cgmesProfile.DY.value, + ], + "kiload": [ + cgmesProfile.DY.value, + ], + "ldref": [ + cgmesProfile.DY.value, + ], + "dm": [ + cgmesProfile.DY.value, + ], + "ropen": [ + cgmesProfile.DY.value, + ], + "rclose": [ + cgmesProfile.DY.value, + ], + "kimw": [ + cgmesProfile.DY.value, + ], + "aset": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "tsa": [ + cgmesProfile.DY.value, + ], + "tsb": [ + cgmesProfile.DY.value, + ], + "rup": [ + cgmesProfile.DY.value, + ], + "rdown": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + rselect=None, + tpelec=0, + maxerr=0.0, + minerr=0.0, + kpgov=0.0, + kigov=0.0, + kdgov=0.0, + tdgov=0, + vmax=0.0, + vmin=0.0, + tact=0, + kturb=0.0, + wfnl=0.0, + tb=0, + tc=0, + wfspd=False, + teng=0, + tfload=0, + kpload=0.0, + kiload=0.0, + ldref=0.0, + dm=0.0, + ropen=0.0, + rclose=0.0, + kimw=0.0, + aset=0.0, + ka=0.0, + ta=0, + db=0.0, + tsa=0, + tsb=0, + rup=0.0, + rdown=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.rselect = rselect + self.tpelec = tpelec + self.maxerr = maxerr + self.minerr = minerr + self.kpgov = kpgov + self.kigov = kigov + self.kdgov = kdgov + self.tdgov = tdgov + self.vmax = vmax + self.vmin = vmin + self.tact = tact + self.kturb = kturb + self.wfnl = wfnl + self.tb = tb + self.tc = tc + self.wfspd = wfspd + self.teng = teng + self.tfload = tfload + self.kpload = kpload + self.kiload = kiload + self.ldref = ldref + self.dm = dm + self.ropen = ropen + self.rclose = rclose + self.kimw = kimw + self.aset = aset + self.ka = ka + self.ta = ta + self.db = db + self.tsa = tsa + self.tsb = tsb + self.rup = rup + self.rdown = rdown + + def __str__(self): + str = "class=GovCT1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovCT2.py b/cimpy_3/cimpy/cgmes_v3_0/GovCT2.py new file mode 100644 index 00000000..2276d7c2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovCT2.py @@ -0,0 +1,374 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovCT2(TurbineGovernorDynamics): + """ + General governor with frequency-dependent fuel flow limit. This model is a modification of the GovCT1 model in order to represent the frequency-dependent fuel flow limit of a specific gas turbine manufacturer. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical value = 0,05. Default: 0.0 + :rselect: Feedback signal for droop (Rselect). Typical value = electricalPower. Default: None + :tpelec: Electrical power transducer time constant (Tpelec) (>= 0). Typical value = 2,5. Default: 0 + :maxerr: Maximum value for speed error signal (Maxerr) (> GovCT2.minerr). Typical value = 1. Default: 0.0 + :minerr: Minimum value for speed error signal (Minerr) (< GovCT2.maxerr). Typical value = -1. Default: 0.0 + :kpgov: Governor proportional gain (Kpgov). Typical value = 4. Default: 0.0 + :kigov: Governor integral gain (Kigov). Typical value = 0,45. Default: 0.0 + :kdgov: Governor derivative gain (Kdgov). Typical value = 0. Default: 0.0 + :tdgov: Governor derivative controller time constant (Tdgov) (>= 0). Typical value = 1. Default: 0 + :vmax: Maximum valve position limit (Vmax) (> GovCT2.vmin). Typical value = 1. Default: 0.0 + :vmin: Minimum valve position limit (Vmin) (< GovCT2.vmax). Typical value = 0,175. Default: 0.0 + :tact: Actuator time constant (Tact) (>= 0). Typical value = 0,4. Default: 0 + :kturb: Turbine gain (Kturb). Typical value = 1,9168. Default: 0.0 + :wfnl: No load fuel flow (Wfnl). Typical value = 0,187. Default: 0.0 + :tb: Turbine lag time constant (Tb) (>= 0). Typical value = 0,1. Default: 0 + :tc: Turbine lead time constant (Tc) (>= 0). Typical value = 0. Default: 0 + :wfspd: Switch for fuel source characteristic to recognize that fuel flow, for a given fuel valve stroke, can be proportional to engine speed (Wfspd). true = fuel flow proportional to speed (for some gas turbines and diesel engines with positive displacement fuel injectors) false = fuel control system keeps fuel flow independent of engine speed. Typical value = false. Default: False + :teng: Transport time delay for diesel engine used in representing diesel engines where there is a small but measurable transport delay between a change in fuel flow setting and the development of torque (Teng) (>= 0). Teng should be zero in all but special cases where this transport delay is of particular concern. Typical value = 0. Default: 0 + :tfload: Load limiter time constant (Tfload) (>= 0). Typical value = 3. Default: 0 + :kpload: Load limiter proportional gain for PI controller (Kpload). Typical value = 1. Default: 0.0 + :kiload: Load limiter integral gain for PI controller (Kiload). Typical value = 1. Default: 0.0 + :ldref: Load limiter reference value (Ldref). Typical value = 1. Default: 0.0 + :dm: Speed sensitivity coefficient (Dm). Dm can represent either the variation of the engine power with the shaft speed or the variation of maximum power capability with shaft speed. If it is positive it describes the falling slope of the engine speed verses power characteristic as speed increases. A slightly falling characteristic is typical for reciprocating engines and some aero-derivative turbines. If it is negative the engine power is assumed to be unaffected by the shaft speed, but the maximum permissible fuel flow is taken to fall with falling shaft speed. This is characteristic of single-shaft industrial turbines due to exhaust temperature limits. Typical value = 0. Default: 0.0 + :ropen: Maximum valve opening rate (Ropen). Unit = PU / s. Typical value = 99. Default: 0.0 + :rclose: Minimum valve closing rate (Rclose). Unit = PU / s. Typical value = -99. Default: 0.0 + :kimw: Power controller (reset) gain (Kimw). The default value of 0,01 corresponds to a reset time of 100 seconds. A value of 0,001 corresponds to a relatively slow-acting load controller. Typical value = 0. Default: 0.0 + :aset: Acceleration limiter setpoint (Aset). Unit = PU / s. Typical value = 10. Default: 0.0 + :ka: Acceleration limiter gain (Ka). Typical value = 10. Default: 0.0 + :ta: Acceleration limiter time constant (Ta) (>= 0). Typical value = 1. Default: 0 + :db: Speed governor deadband in PU speed (db). In the majority of applications, it is recommended that this value be set to zero. Typical value = 0. Default: 0.0 + :tsa: Temperature detection lead time constant (Tsa) (>= 0). Typical value = 0. Default: 0 + :tsb: Temperature detection lag time constant (Tsb) (>= 0). Typical value = 50. Default: 0 + :rup: Maximum rate of load limit increase (Rup). Typical value = 99. Default: 0.0 + :rdown: Maximum rate of load limit decrease (Rdown). Typical value = -99. Default: 0.0 + :prate: Ramp rate for frequency-dependent power limit (Prate). Typical value = 0,017. Default: 0.0 + :flim1: Frequency threshold 1 (Flim1). Unit = Hz. Typical value = 59. Default: 0.0 + :plim1: Power limit 1 (Plim1). Typical value = 0,8325. Default: 0.0 + :flim2: Frequency threshold 2 (Flim2). Unit = Hz. Typical value = 0. Default: 0.0 + :plim2: Power limit 2 (Plim2). Typical value = 0. Default: 0.0 + :flim3: Frequency threshold 3 (Flim3). Unit = Hz. Typical value = 0. Default: 0.0 + :plim3: Power limit 3 (Plim3). Typical value = 0. Default: 0.0 + :flim4: Frequency threshold 4 (Flim4). Unit = Hz. Typical value = 0. Default: 0.0 + :plim4: Power limit 4 (Plim4). Typical value = 0. Default: 0.0 + :flim5: Frequency threshold 5 (Flim5). Unit = Hz. Typical value = 0. Default: 0.0 + :plim5: Power limit 5 (Plim5). Typical value = 0. Default: 0.0 + :flim6: Frequency threshold 6 (Flim6). Unit = Hz. Typical value = 0. Default: 0.0 + :plim6: Power limit 6 (Plim6). Typical value = 0. Default: 0.0 + :flim7: Frequency threshold 7 (Flim7). Unit = Hz. Typical value = 0. Default: 0.0 + :plim7: Power limit 7 (Plim7). Typical value = 0. Default: 0.0 + :flim8: Frequency threshold 8 (Flim8). Unit = Hz. Typical value = 0. Default: 0.0 + :plim8: Power limit 8 (Plim8). Typical value = 0. Default: 0.0 + :flim9: Frequency threshold 9 (Flim9). Unit = Hz. Typical value = 0. Default: 0.0 + :plim9: Power Limit 9 (Plim9). Typical value = 0. Default: 0.0 + :flim10: Frequency threshold 10 (Flim10). Unit = Hz. Typical value = 0. Default: 0.0 + :plim10: Power limit 10 (Plim10). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "rselect": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "maxerr": [ + cgmesProfile.DY.value, + ], + "minerr": [ + cgmesProfile.DY.value, + ], + "kpgov": [ + cgmesProfile.DY.value, + ], + "kigov": [ + cgmesProfile.DY.value, + ], + "kdgov": [ + cgmesProfile.DY.value, + ], + "tdgov": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "tact": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "wfnl": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "wfspd": [ + cgmesProfile.DY.value, + ], + "teng": [ + cgmesProfile.DY.value, + ], + "tfload": [ + cgmesProfile.DY.value, + ], + "kpload": [ + cgmesProfile.DY.value, + ], + "kiload": [ + cgmesProfile.DY.value, + ], + "ldref": [ + cgmesProfile.DY.value, + ], + "dm": [ + cgmesProfile.DY.value, + ], + "ropen": [ + cgmesProfile.DY.value, + ], + "rclose": [ + cgmesProfile.DY.value, + ], + "kimw": [ + cgmesProfile.DY.value, + ], + "aset": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "tsa": [ + cgmesProfile.DY.value, + ], + "tsb": [ + cgmesProfile.DY.value, + ], + "rup": [ + cgmesProfile.DY.value, + ], + "rdown": [ + cgmesProfile.DY.value, + ], + "prate": [ + cgmesProfile.DY.value, + ], + "flim1": [ + cgmesProfile.DY.value, + ], + "plim1": [ + cgmesProfile.DY.value, + ], + "flim2": [ + cgmesProfile.DY.value, + ], + "plim2": [ + cgmesProfile.DY.value, + ], + "flim3": [ + cgmesProfile.DY.value, + ], + "plim3": [ + cgmesProfile.DY.value, + ], + "flim4": [ + cgmesProfile.DY.value, + ], + "plim4": [ + cgmesProfile.DY.value, + ], + "flim5": [ + cgmesProfile.DY.value, + ], + "plim5": [ + cgmesProfile.DY.value, + ], + "flim6": [ + cgmesProfile.DY.value, + ], + "plim6": [ + cgmesProfile.DY.value, + ], + "flim7": [ + cgmesProfile.DY.value, + ], + "plim7": [ + cgmesProfile.DY.value, + ], + "flim8": [ + cgmesProfile.DY.value, + ], + "plim8": [ + cgmesProfile.DY.value, + ], + "flim9": [ + cgmesProfile.DY.value, + ], + "plim9": [ + cgmesProfile.DY.value, + ], + "flim10": [ + cgmesProfile.DY.value, + ], + "plim10": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + rselect=None, + tpelec=0, + maxerr=0.0, + minerr=0.0, + kpgov=0.0, + kigov=0.0, + kdgov=0.0, + tdgov=0, + vmax=0.0, + vmin=0.0, + tact=0, + kturb=0.0, + wfnl=0.0, + tb=0, + tc=0, + wfspd=False, + teng=0, + tfload=0, + kpload=0.0, + kiload=0.0, + ldref=0.0, + dm=0.0, + ropen=0.0, + rclose=0.0, + kimw=0.0, + aset=0.0, + ka=0.0, + ta=0, + db=0.0, + tsa=0, + tsb=0, + rup=0.0, + rdown=0.0, + prate=0.0, + flim1=0.0, + plim1=0.0, + flim2=0.0, + plim2=0.0, + flim3=0.0, + plim3=0.0, + flim4=0.0, + plim4=0.0, + flim5=0.0, + plim5=0.0, + flim6=0.0, + plim6=0.0, + flim7=0.0, + plim7=0.0, + flim8=0.0, + plim8=0.0, + flim9=0.0, + plim9=0.0, + flim10=0.0, + plim10=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.rselect = rselect + self.tpelec = tpelec + self.maxerr = maxerr + self.minerr = minerr + self.kpgov = kpgov + self.kigov = kigov + self.kdgov = kdgov + self.tdgov = tdgov + self.vmax = vmax + self.vmin = vmin + self.tact = tact + self.kturb = kturb + self.wfnl = wfnl + self.tb = tb + self.tc = tc + self.wfspd = wfspd + self.teng = teng + self.tfload = tfload + self.kpload = kpload + self.kiload = kiload + self.ldref = ldref + self.dm = dm + self.ropen = ropen + self.rclose = rclose + self.kimw = kimw + self.aset = aset + self.ka = ka + self.ta = ta + self.db = db + self.tsa = tsa + self.tsb = tsb + self.rup = rup + self.rdown = rdown + self.prate = prate + self.flim1 = flim1 + self.plim1 = plim1 + self.flim2 = flim2 + self.plim2 = plim2 + self.flim3 = flim3 + self.plim3 = plim3 + self.flim4 = flim4 + self.plim4 = plim4 + self.flim5 = flim5 + self.plim5 = plim5 + self.flim6 = flim6 + self.plim6 = plim6 + self.flim7 = flim7 + self.plim7 = plim7 + self.flim8 = flim8 + self.plim8 = plim8 + self.flim9 = flim9 + self.plim9 = plim9 + self.flim10 = flim10 + self.plim10 = plim10 + + def __str__(self): + str = "class=GovCT2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGAST.py b/cimpy_3/cimpy/cgmes_v3_0/GovGAST.py new file mode 100644 index 00000000..825e9ac9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGAST.py @@ -0,0 +1,98 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST(TurbineGovernorDynamics): + """ + Single shaft gas turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R) (>0). Typical value = 0,04. Default: 0.0 + :t1: Governor mechanism time constant (T1) (>= 0). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical value = 0,5. Default: 0 + :t2: Turbine power time constant (T2) (>= 0). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of a free power turbine of an aero-derivative unit, for example. Typical value = 0,5. Default: 0 + :t3: Turbine exhaust temperature time constant (T3) (>= 0). Typical value = 3. Default: 0 + :at: Ambient temperature load limit (Load Limit). Typical value = 1. Default: 0.0 + :kt: Temperature limiter gain (Kt). Typical value = 3. Default: 0.0 + :vmax: Maximum turbine power, PU of MWbase (Vmax) (> GovGAST.vmin). Typical value = 1. Default: 0.0 + :vmin: Minimum turbine power, PU of MWbase (Vmin) (< GovGAST.vmax). Typical value = 0. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical value = 0,18. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + t2=0, + t3=0, + at=0.0, + kt=0.0, + vmax=0.0, + vmin=0.0, + dturb=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.at = at + self.kt = kt + self.vmax = vmax + self.vmin = vmin + self.dturb = dturb + + def __str__(self): + str = "class=GovGAST\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGAST1.py b/cimpy_3/cimpy/cgmes_v3_0/GovGAST1.py new file mode 100644 index 00000000..38fe55ef --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGAST1.py @@ -0,0 +1,242 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST1(TurbineGovernorDynamics): + """ + Modified single shaft gas turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R) (>0). Typical value = 0,04. Default: 0.0 + :t1: Governor mechanism time constant (T1) (>= 0). T1 represents the natural valve positioning time constant of the governor for small disturbances, as seen when rate limiting is not in effect. Typical value = 0,5. Default: 0 + :t2: Turbine power time constant (T2) (>= 0). T2 represents delay due to internal energy storage of the gas turbine engine. T2 can be used to give a rough approximation to the delay associated with acceleration of the compressor spool of a multi-shaft engine, or with the compressibility of gas in the plenum of the free power turbine of an aero-derivative unit, for example. Typical value = 0,5. Default: 0 + :t3: Turbine exhaust temperature time constant (T3) (>= 0). T3 represents delay in the exhaust temperature and load limiting system. Typical value = 3. Default: 0 + :lmax: Ambient temperature load limit (Lmax). Lmax is the turbine power output corresponding to the limiting exhaust gas temperature. Typical value = 1. Default: 0.0 + :kt: Temperature limiter gain (Kt). Typical value = 3. Default: 0.0 + :vmax: Maximum turbine power, PU of MWbase (Vmax) (> GovGAST1.vmin). Typical value = 1. Default: 0.0 + :vmin: Minimum turbine power, PU of MWbase (Vmin) (< GovGAST1.vmax). Typical value = 0. Default: 0.0 + :fidle: Fuel flow at zero power output (Fidle). Typical value = 0,18. Default: 0.0 + :rmax: Maximum fuel valve opening rate (Rmax). Unit = PU / s. Typical value = 1. Default: 0.0 + :loadinc: Valve position change allowed at fast rate (Loadinc). Typical value = 0,05. Default: 0.0 + :tltr: Valve position averaging time constant (Tltr) (>= 0). Typical value = 10. Default: 0 + :ltrate: Maximum long term fuel valve opening rate (Ltrate). Typical value = 0,02. Default: 0.0 + :a: Turbine power time constant numerator scale factor (a). Typical value = 0,8. Default: 0.0 + :b: Turbine power time constant denominator scale factor (b) (>0). Typical value = 1. Default: 0.0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2,PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + :ka: Governor gain (Ka). Typical value = 0. Default: 0.0 + :t4: Governor lead time constant (T4) (>= 0). Typical value = 0. Default: 0 + :t5: Governor lag time constant (T5) (>= 0). If = 0, entire gain and lead-lag block is bypassed. Typical value = 0. Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "lmax": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "fidle": [ + cgmesProfile.DY.value, + ], + "rmax": [ + cgmesProfile.DY.value, + ], + "loadinc": [ + cgmesProfile.DY.value, + ], + "tltr": [ + cgmesProfile.DY.value, + ], + "ltrate": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + t2=0, + t3=0, + lmax=0.0, + kt=0.0, + vmax=0.0, + vmin=0.0, + fidle=0.0, + rmax=0.0, + loadinc=0.0, + tltr=0, + ltrate=0.0, + a=0.0, + b=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + ka=0.0, + t4=0, + t5=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.lmax = lmax + self.kt = kt + self.vmax = vmax + self.vmin = vmin + self.fidle = fidle + self.rmax = rmax + self.loadinc = loadinc + self.tltr = tltr + self.ltrate = ltrate + self.a = a + self.b = b + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + self.ka = ka + self.t4 = t4 + self.t5 = t5 + + def __str__(self): + str = "class=GovGAST1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGAST2.py b/cimpy_3/cimpy/cgmes_v3_0/GovGAST2.py new file mode 100644 index 00000000..76989d4e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGAST2.py @@ -0,0 +1,230 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST2(TurbineGovernorDynamics): + """ + Gas turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :w: Governor gain (1/droop) on turbine rating (W). Default: 0.0 + :x: Governor lead time constant (X) (>= 0). Default: 0 + :y: Governor lag time constant (Y) (> 0). Default: 0 + :z: Governor mode (Z). 1 = droop 0 = isochronous. Default: 0 + :etd: Turbine and exhaust delay (Etd) (>= 0). Default: 0 + :tcd: Compressor discharge time constant (Tcd) (>= 0). Default: 0 + :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 + :t: Fuel control time constant (T) (>= 0). Default: 0 + :tmax: Maximum turbine limit (Tmax) (> GovGAST2.tmin). Default: 0.0 + :tmin: Minimum turbine limit (Tmin) (< GovGAST2.tmax). Default: 0.0 + :ecr: Combustion reaction time delay (Ecr) (>= 0). Default: 0 + :k3: Ratio of fuel adjustment (K3). Default: 0.0 + :a: Valve positioner (A). Default: 0.0 + :b: Valve positioner (B). Default: 0.0 + :c: Valve positioner (C). Default: 0.0 + :tf: Fuel system time constant (Tf) (>= 0). Default: 0 + :kf: Fuel system feedback (Kf). Default: 0.0 + :k5: Gain of radiation shield (K5). Default: 0.0 + :k4: Gain of radiation shield (K4). Default: 0.0 + :t3: Radiation shield time constant (T3) (>= 0). Default: 0 + :t4: Thermocouple time constant (T4) (>= 0). Default: 0 + :tt: Temperature controller integration rate (Tt) (>= 0). Default: 0 + :t5: Temperature control time constant (T5) (>= 0). Default: 0 + :af1: Exhaust temperature parameter (Af1). Unit = PU temperature. Based on temperature in degrees C. Default: 0.0 + :bf1: (Bf1). Bf1 = E(1 - W) where E (speed sensitivity coefficient) is 0,55 to 0,65 x Tr. Unit = PU temperature. Based on temperature in degrees C. Default: 0.0 + :af2: Coefficient equal to 0,5(1-speed) (Af2). Default: 0.0 + :bf2: Turbine torque coefficient Khhv (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 + :cf2: Coefficient defining fuel flow where power output is 0% (Cf2). Synchronous but no output. Typically 0,23 x Khhv (23% fuel flow). Default: 0.0 + :tr: Rated temperature (Tr). Unit = [SYMBOL REMOVED]C depending on parameters Af1 and Bf1. Default: 0.0 + :k6: Minimum fuel flow (K6). Default: 0.0 + :tc: Temperature control (Tc). Unit = [SYMBOL REMOVED]F or [SYMBOL REMOVED]C depending on parameters Af1 and Bf1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "w": [ + cgmesProfile.DY.value, + ], + "x": [ + cgmesProfile.DY.value, + ], + "y": [ + cgmesProfile.DY.value, + ], + "z": [ + cgmesProfile.DY.value, + ], + "etd": [ + cgmesProfile.DY.value, + ], + "tcd": [ + cgmesProfile.DY.value, + ], + "trate": [ + cgmesProfile.DY.value, + ], + "t": [ + cgmesProfile.DY.value, + ], + "tmax": [ + cgmesProfile.DY.value, + ], + "tmin": [ + cgmesProfile.DY.value, + ], + "ecr": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "c": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "af1": [ + cgmesProfile.DY.value, + ], + "bf1": [ + cgmesProfile.DY.value, + ], + "af2": [ + cgmesProfile.DY.value, + ], + "bf2": [ + cgmesProfile.DY.value, + ], + "cf2": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + w=0.0, + x=0, + y=0, + z=0, + etd=0, + tcd=0, + trate=0.0, + t=0, + tmax=0.0, + tmin=0.0, + ecr=0, + k3=0.0, + a=0.0, + b=0.0, + c=0.0, + tf=0, + kf=0.0, + k5=0.0, + k4=0.0, + t3=0, + t4=0, + tt=0, + t5=0, + af1=0.0, + bf1=0.0, + af2=0.0, + bf2=0.0, + cf2=0.0, + tr=0.0, + k6=0.0, + tc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.w = w + self.x = x + self.y = y + self.z = z + self.etd = etd + self.tcd = tcd + self.trate = trate + self.t = t + self.tmax = tmax + self.tmin = tmin + self.ecr = ecr + self.k3 = k3 + self.a = a + self.b = b + self.c = c + self.tf = tf + self.kf = kf + self.k5 = k5 + self.k4 = k4 + self.t3 = t3 + self.t4 = t4 + self.tt = tt + self.t5 = t5 + self.af1 = af1 + self.bf1 = bf1 + self.af2 = af2 + self.bf2 = bf2 + self.cf2 = cf2 + self.tr = tr + self.k6 = k6 + self.tc = tc + + def __str__(self): + str = "class=GovGAST2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGAST3.py b/cimpy_3/cimpy/cgmes_v3_0/GovGAST3.py new file mode 100644 index 00000000..4e5b733c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGAST3.py @@ -0,0 +1,164 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST3(TurbineGovernorDynamics): + """ + Generic turbogas with acceleration and temperature controller. + + :bp: Droop (bp). Typical value = 0,05. Default: 0.0 + :tg: Time constant of speed governor (Tg) (>= 0). Typical value = 0,05. Default: 0 + :rcmx: Maximum fuel flow (RCMX). Typical value = 1. Default: 0.0 + :rcmn: Minimum fuel flow (RCMN). Typical value = -0,1. Default: 0.0 + :ky: Coefficient of transfer function of fuel valve positioner (Ky). Typical value = 1. Default: 0.0 + :ty: Time constant of fuel valve positioner (Ty) (>= 0). Typical value = 0,2. Default: 0 + :tac: Fuel control time constant (Tac) (>= 0). Typical value = 0,1. Default: 0 + :kac: Fuel system feedback (KAC). Typical value = 0. Default: 0.0 + :tc: Compressor discharge volume time constant (Tc) (>= 0). Typical value = 0,2. Default: 0 + :bca: Acceleration limit set-point (Bca). Unit = 1/s. Typical value = 0,01. Default: 0.0 + :kca: Acceleration control integral gain (Kca). Unit = 1/s. Typical value = 100. Default: 0.0 + :dtc: Exhaust temperature variation due to fuel flow increasing from 0 to 1 PU (deltaTc). Typical value = 390. Default: 0.0 + :ka: Minimum fuel flow (Ka). Typical value = 0,23. Default: 0.0 + :tsi: Time constant of radiation shield (Tsi) (>= 0). Typical value = 15. Default: 0 + :ksi: Gain of radiation shield (Ksi). Typical value = 0,8. Default: 0.0 + :ttc: Time constant of thermocouple (Ttc) (>= 0). Typical value = 2,5. Default: 0 + :tfen: Turbine rated exhaust temperature correspondent to Pm=1 PU (Tfen). Typical value = 540. Default: 0.0 + :td: Temperature controller derivative gain (Td) (>= 0). Typical value = 3,3. Default: 0 + :tt: Temperature controller integration rate (Tt). Typical value = 250. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MXef). Typical value = 0,05. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MNef). Typical value = -0,05. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "rcmx": [ + cgmesProfile.DY.value, + ], + "rcmn": [ + cgmesProfile.DY.value, + ], + "ky": [ + cgmesProfile.DY.value, + ], + "ty": [ + cgmesProfile.DY.value, + ], + "tac": [ + cgmesProfile.DY.value, + ], + "kac": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "bca": [ + cgmesProfile.DY.value, + ], + "kca": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "tsi": [ + cgmesProfile.DY.value, + ], + "ksi": [ + cgmesProfile.DY.value, + ], + "ttc": [ + cgmesProfile.DY.value, + ], + "tfen": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + bp=0.0, + tg=0, + rcmx=0.0, + rcmn=0.0, + ky=0.0, + ty=0, + tac=0, + kac=0.0, + tc=0, + bca=0.0, + kca=0.0, + dtc=0.0, + ka=0.0, + tsi=0, + ksi=0.0, + ttc=0, + tfen=0.0, + td=0, + tt=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bp = bp + self.tg = tg + self.rcmx = rcmx + self.rcmn = rcmn + self.ky = ky + self.ty = ty + self.tac = tac + self.kac = kac + self.tc = tc + self.bca = bca + self.kca = kca + self.dtc = dtc + self.ka = ka + self.tsi = tsi + self.ksi = ksi + self.ttc = ttc + self.tfen = tfen + self.td = td + self.tt = tt + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovGAST3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGAST4.py b/cimpy_3/cimpy/cgmes_v3_0/GovGAST4.py new file mode 100644 index 00000000..6380a342 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGAST4.py @@ -0,0 +1,104 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGAST4(TurbineGovernorDynamics): + """ + Generic turbogas. + + :bp: Droop (bp). Typical value = 0,05. Default: 0.0 + :ty: Time constant of fuel valve positioner (Ty) (>= 0). Typical value = 0,1. Default: 0 + :ta: Maximum gate opening velocity (TA) (>= 0). Typical value = 3. Default: 0 + :tc: Maximum gate closing velocity (TC) (>= 0). Typical value = 0,5. Default: 0 + :tcm: Fuel control time constant (Tcm) (>= 0). Typical value = 0,1. Default: 0 + :ktm: Compressor gain (Ktm). Typical value = 0. Default: 0.0 + :tm: Compressor discharge volume time constant (Tm) (>= 0). Typical value = 0,2. Default: 0 + :rymx: Maximum valve opening (RYMX). Typical value = 1,1. Default: 0.0 + :rymn: Minimum valve opening (RYMN). Typical value = 0. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MXef). Typical value = 0,05. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MNef). Typical value = -0,05. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "ty": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "tcm": [ + cgmesProfile.DY.value, + ], + "ktm": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "rymx": [ + cgmesProfile.DY.value, + ], + "rymn": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + bp=0.0, + ty=0, + ta=0, + tc=0, + tcm=0, + ktm=0.0, + tm=0, + rymx=0.0, + rymn=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bp = bp + self.ty = ty + self.ta = ta + self.tc = tc + self.tcm = tcm + self.ktm = ktm + self.tm = tm + self.rymx = rymx + self.rymn = rymn + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovGAST4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovGASTWD.py b/cimpy_3/cimpy/cgmes_v3_0/GovGASTWD.py new file mode 100644 index 00000000..edf62cd2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovGASTWD.py @@ -0,0 +1,236 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovGASTWD(TurbineGovernorDynamics): + """ + Woodwardâ„¢ gas turbine governor. [Footnote: Woodward gas turbines are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :kdroop: (Kdroop) (>= 0). Default: 0.0 + :kp: PID proportional gain (Kp). Default: 0.0 + :ki: Isochronous Governor Gain (Ki). Default: 0.0 + :kd: Drop governor gain (Kd). Default: 0.0 + :etd: Turbine and exhaust delay (Etd) (>= 0). Default: 0 + :tcd: Compressor discharge time constant (Tcd) (>= 0). Default: 0 + :trate: Turbine rating (Trate). Unit = MW. Default: 0.0 + :t: Fuel control time constant (T) (>= 0). Default: 0 + :tmax: Maximum Turbine limit (Tmax) (> GovGASTWD.tmin). Default: 0.0 + :tmin: Minimum turbine limit (Tmin) (< GovGASTWD.tmax). Default: 0.0 + :ecr: Combustion reaction time delay (Ecr) (>= 0). Default: 0 + :k3: Ratio of fuel adjustment (K3). Default: 0.0 + :a: Valve positioner (A). Default: 0.0 + :b: Valve positioner (B). Default: 0.0 + :c: Valve positioner (C). Default: 0.0 + :tf: Fuel system time constant (Tf) (>= 0). Default: 0 + :kf: Fuel system feedback (Kf). Default: 0.0 + :k5: Gain of radiation shield (K5). Default: 0.0 + :k4: Gain of radiation shield (K4). Default: 0.0 + :t3: Radiation shield time constant (T3) (>= 0). Default: 0 + :t4: Thermocouple time constant (T4) (>= 0). Default: 0 + :tt: Temperature controller integration rate (Tt) (>= 0). Default: 0 + :t5: Temperature control time constant (T5) (>= 0). Default: 0 + :af1: Exhaust temperature parameter (Af1). Default: 0.0 + :bf1: (Bf1). Bf1 = E(1-w) where E (speed sensitivity coefficient) is 0,55 to 0,65 x Tr. Default: 0.0 + :af2: Coefficient equal to 0,5(1-speed) (Af2). Default: 0.0 + :bf2: Turbine torque coefficient Khhv (depends on heating value of fuel stream in combustion chamber) (Bf2). Default: 0.0 + :cf2: Coefficient defining fuel flow where power output is 0 % (Cf2). Synchronous but no output. Typically 0,23 x Khhv (23 % fuel flow). Default: 0.0 + :tr: Rated temperature (Tr). Default: 0.0 + :k6: Minimum fuel flow (K6). Default: 0.0 + :tc: Temperature control (Tc). Default: 0.0 + :td: Power transducer time constant (Td) (>= 0). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "kdroop": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "etd": [ + cgmesProfile.DY.value, + ], + "tcd": [ + cgmesProfile.DY.value, + ], + "trate": [ + cgmesProfile.DY.value, + ], + "t": [ + cgmesProfile.DY.value, + ], + "tmax": [ + cgmesProfile.DY.value, + ], + "tmin": [ + cgmesProfile.DY.value, + ], + "ecr": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "c": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "af1": [ + cgmesProfile.DY.value, + ], + "bf1": [ + cgmesProfile.DY.value, + ], + "af2": [ + cgmesProfile.DY.value, + ], + "bf2": [ + cgmesProfile.DY.value, + ], + "cf2": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + kdroop=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + etd=0, + tcd=0, + trate=0.0, + t=0, + tmax=0.0, + tmin=0.0, + ecr=0, + k3=0.0, + a=0.0, + b=0.0, + c=0.0, + tf=0, + kf=0.0, + k5=0.0, + k4=0.0, + t3=0, + t4=0, + tt=0, + t5=0, + af1=0.0, + bf1=0.0, + af2=0.0, + bf2=0.0, + cf2=0.0, + tr=0.0, + k6=0.0, + tc=0.0, + td=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.kdroop = kdroop + self.kp = kp + self.ki = ki + self.kd = kd + self.etd = etd + self.tcd = tcd + self.trate = trate + self.t = t + self.tmax = tmax + self.tmin = tmin + self.ecr = ecr + self.k3 = k3 + self.a = a + self.b = b + self.c = c + self.tf = tf + self.kf = kf + self.k5 = k5 + self.k4 = k4 + self.t3 = t3 + self.t4 = t4 + self.tt = tt + self.t5 = t5 + self.af1 = af1 + self.bf1 = bf1 + self.af2 = af2 + self.bf2 = bf2 + self.cf2 = cf2 + self.tr = tr + self.k6 = k6 + self.tc = tc + self.td = td + + def __str__(self): + str = "class=GovGASTWD\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydro1.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydro1.py new file mode 100644 index 00000000..28825760 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydro1.py @@ -0,0 +1,122 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro1(TurbineGovernorDynamics): + """ + Basic hydro turbine governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :rperm: Permanent droop (R) (> 0). Typical value = 0,04. Default: 0.0 + :rtemp: Temporary droop (r) (> GovHydro1.rperm). Typical value = 0,3. Default: 0.0 + :tr: Washout time constant (Tr) (> 0). Typical value = 5. Default: 0 + :tf: Filter time constant (Tf) (> 0). Typical value = 0,05. Default: 0 + :tg: Gate servo time constant (Tg) (> 0). Typical value = 0,5. Default: 0 + :velm: Maximum gate velocity (Vlem) (> 0). Typical value = 0,2. Default: 0.0 + :gmax: Maximum gate opening (Gmax) (> 0 and > GovHydro.gmin). Typical value = 1. Default: 0.0 + :gmin: Minimum gate opening (Gmin) (>= 0 and < GovHydro1.gmax). Typical value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (> 0). Typical value = 1. Default: 0 + :at: Turbine gain (At) (> 0). Typical value = 1,2. Default: 0.0 + :dturb: Turbine damping factor (Dturb) (>= 0). Typical value = 0,5. Default: 0.0 + :qnl: No-load flow at nominal head (qnl) (>= 0). Typical value = 0,08. Default: 0.0 + :hdam: Turbine nominal head (hdam). Typical value = 1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "velm": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "hdam": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tf=0, + tg=0, + velm=0.0, + gmax=0.0, + gmin=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + hdam=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tf = tf + self.tg = tg + self.velm = velm + self.gmax = gmax + self.gmin = gmin + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.hdam = hdam + + def __str__(self): + str = "class=GovHydro1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydro2.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydro2.py new file mode 100644 index 00000000..c5750d6f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydro2.py @@ -0,0 +1,212 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro2(TurbineGovernorDynamics): + """ + IEEE hydro turbine governor with straightforward penstock configuration and hydraulic-dashpot governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg) (> 0). Typical value = 0,5. Default: 0 + :tp: Pilot servo valve time constant (Tp) (>= 0). Typical value = 0,03. Default: 0 + :uo: Maximum gate opening velocity (Uo). Unit = PU / s. Typical value = 0,1. Default: 0.0 + :uc: Maximum gate closing velocity (Uc) (< 0). Unit = PU / s. Typical value = -0,1. Default: 0.0 + :pmax: Maximum gate opening (Pmax) (> GovHydro2.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening (Pmin) (< GovHydro2.pmax). Typical value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm). Typical value = 0,05. Default: 0.0 + :rtemp: Temporary droop (Rtemp). Typical value = 0,5. Default: 0.0 + :tr: Dashpot time constant (Tr) (>= 0). Typical value = 12. Default: 0 + :tw: Water inertia time constant (Tw) (>= 0). Typical value = 2. Default: 0 + :kturb: Turbine gain (Kturb). Typical value = 1. Default: 0.0 + :aturb: Turbine numerator multiplier (Aturb). Typical value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (> 0). Typical value = 0,5. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional deadband (db2). Unit = MW. Typical value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tw=0, + kturb=0.0, + aturb=0.0, + bturb=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.kturb = kturb + self.aturb = aturb + self.bturb = bturb + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydro2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydro3.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydro3.py new file mode 100644 index 00000000..70ba4440 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydro3.py @@ -0,0 +1,254 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro3(TurbineGovernorDynamics): + """ + Modified IEEE hydro governor-turbine. This model differs from that defined in the IEEE modelling guideline paper in that the limits on gate position and velocity do not permit "wind up" of the upstream signals. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax) (> GovHydro3.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin) (< GovHydro3.pmax). Typical value = 0. Default: 0.0 + :governorControl: Governor control flag (Cflag). true = PID control is active false = double derivative control is active. Typical value = true. Default: False + :rgate: Steady-state droop, PU, for governor output feedback (Rgate). Typical value = 0. Default: 0.0 + :relec: Steady-state droop, PU, for electrical power feedback (Relec). Typical value = 0,05. Default: 0.0 + :td: Input filter time constant (Td) (>= 0). Typical value = 0,05. Default: 0 + :tf: Washout time constant (Tf) (>= 0). Typical value = 0,1. Default: 0 + :tp: Gate servo time constant (Tp) (>= 0). Typical value = 0,05. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU / s. Typical value = 0,2. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU / s. Typical value = -0,2. Default: 0.0 + :k1: Derivative gain (K1). Typical value = 0,01. Default: 0.0 + :k2: Double derivative gain, if Cflag = -1 (K2). Typical value = 2,5. Default: 0.0 + :ki: Integral gain (Ki). Typical value = 0,5. Default: 0.0 + :kg: Gate servo gain (Kg). Typical value = 2. Default: 0.0 + :tt: Power feedback time constant (Tt) (>= 0). Typical value = 0,2. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (>= 0). If = 0, block is bypassed. Typical value = 1. Default: 0 + :at: Turbine gain (At) (>0). Typical value = 1,2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical value = 0,2. Default: 0.0 + :qnl: No-load turbine flow at nominal head (Qnl). Typical value = 0,08. Default: 0.0 + :h0: Turbine nominal head (H0). Typical value = 1. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "governorControl": [ + cgmesProfile.DY.value, + ], + "rgate": [ + cgmesProfile.DY.value, + ], + "relec": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "h0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + governorControl=False, + rgate=0.0, + relec=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + k1=0.0, + k2=0.0, + ki=0.0, + kg=0.0, + tt=0, + db1=0.0, + eps=0.0, + db2=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + h0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.governorControl = governorControl + self.rgate = rgate + self.relec = relec + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.k1 = k1 + self.k2 = k2 + self.ki = ki + self.kg = kg + self.tt = tt + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.h0 = h0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydro3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydro4.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydro4.py new file mode 100644 index 00000000..b967aecd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydro4.py @@ -0,0 +1,272 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydro4(TurbineGovernorDynamics): + """ + Hydro turbine and governor. Represents plants with straight-forward penstock configurations and hydraulic governors of the traditional 'dashpot' type. This model can be used to represent simple, Francis/Pelton or Kaplan turbines. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg) (> 0). Typical value = 0,5. Default: 0 + :tp: Pilot servo time constant (Tp) (>= 0). Typical value = 0,1. Default: 0 + :uo: Max gate opening velocity (Uo). Typical value = 0,2. Default: 0.0 + :uc: Max gate closing velocity (Uc). Typical value = 0,2. Default: 0.0 + :gmax: Maximum gate opening, PU of MWbase (Gmax) (> GovHydro4.gmin). Typical value = 1. Default: 0.0 + :gmin: Minimum gate opening, PU of MWbase (Gmin) (< GovHydro4.gmax). Typical value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm) (>= 0). Typical value = 0,05. Default: 0 + :rtemp: Temporary droop (Rtemp) (>= 0). Typical value = 0,3. Default: 0 + :tr: Dashpot time constant (Tr) (>= 0). Typical value = 5. Default: 0 + :tw: Water inertia time constant (Tw) (> 0). Typical value = 1. Default: 0 + :at: Turbine gain (At). Typical value = 1,2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Typical value for simple = 0,5, Francis/Pelton = 1,1, Kaplan = 1,1. Default: 0.0 + :hdam: Head available at dam (hdam). Typical value = 1. Default: 0.0 + :qnl: No-load flow at nominal head (Qnl). Typical value for simple = 0,08, Francis/Pelton = 0, Kaplan = 0. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :gv0: Nonlinear gain point 0, PU gv (Gv0) (= 0 for simple). Typical for Francis/Pelton = 0,1, Kaplan = 0,1. Default: 0.0 + :pgv0: Nonlinear gain point 0, PU power (Pgv0) (= 0 for simple). Typical value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1) (= 0 for simple, > GovHydro4.gv0 for Francis/Pelton and Kaplan). Typical value for Francis/Pelton = 0,4, Kaplan = 0,4. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1) (= 0 for simple). Typical value for Francis/Pelton = 0,42, Kaplan = 0,35. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2) (= 0 for simple, > GovHydro4.gv1 for Francis/Pelton and Kaplan). Typical value for Francis/Pelton = 0,5, Kaplan = 0,5. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2) (= 0 for simple). Typical value for Francis/Pelton = 0,56, Kaplan = 0,468. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3) (= 0 for simple, > GovHydro4.gv2 for Francis/Pelton and Kaplan). Typical value for Francis/Pelton = 0,7, Kaplan = 0,7. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3) (= 0 for simple). Typical value for Francis/Pelton = 0,8, Kaplan = 0,796. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4) (= 0 for simple, > GovHydro4.gv3 for Francis/Pelton and Kaplan). Typical value for Francis/Pelton = 0,8, Kaplan = 0,8. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4) (= 0 for simple). Typical value for Francis/Pelton = 0,9, Kaplan = 0,917. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5) (= 0 for simple, < 1 and > GovHydro4.gv4 for Francis/Pelton and Kaplan). Typical value for Francis/Pelton = 0,9, Kaplan = 0,9. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5) (= 0 for simple). Typical value for Francis/Pelton = 0,97, Kaplan = 0,99. Default: 0.0 + :bgv0: Kaplan blade servo point 0 (Bgv0) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 0. Default: 0.0 + :bgv1: Kaplan blade servo point 1 (Bgv1) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 0. Default: 0.0 + :bgv2: Kaplan blade servo point 2 (Bgv2) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 0,1. Default: 0.0 + :bgv3: Kaplan blade servo point 3 (Bgv3) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 0,667. Default: 0.0 + :bgv4: Kaplan blade servo point 4 (Bgv4) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 0,9. Default: 0.0 + :bgv5: Kaplan blade servo point 5 (Bgv5) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 1. Default: 0.0 + :bmax: Maximum blade adjustment factor (Bmax) (= 0 for simple, = 0 for Francis/Pelton). Typical value for Kaplan = 1,1276. Default: 0.0 + :tblade: Blade servo time constant (Tblade) (>= 0). Typical value = 100. Default: 0 + :model: The kind of model being represented (simple, Francis/Pelton or Kaplan). Default: None + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "hdam": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv0": [ + cgmesProfile.DY.value, + ], + "pgv0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "bgv0": [ + cgmesProfile.DY.value, + ], + "bgv1": [ + cgmesProfile.DY.value, + ], + "bgv2": [ + cgmesProfile.DY.value, + ], + "bgv3": [ + cgmesProfile.DY.value, + ], + "bgv4": [ + cgmesProfile.DY.value, + ], + "bgv5": [ + cgmesProfile.DY.value, + ], + "bmax": [ + cgmesProfile.DY.value, + ], + "tblade": [ + cgmesProfile.DY.value, + ], + "model": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + gmax=0.0, + gmin=0.0, + rperm=0, + rtemp=0, + tr=0, + tw=0, + at=0.0, + dturb=0.0, + hdam=0.0, + qnl=0.0, + db1=0.0, + eps=0.0, + db2=0.0, + gv0=0.0, + pgv0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + bgv0=0.0, + bgv1=0.0, + bgv2=0.0, + bgv3=0.0, + bgv4=0.0, + bgv5=0.0, + bmax=0.0, + tblade=0, + model=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.gmax = gmax + self.gmin = gmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.at = at + self.dturb = dturb + self.hdam = hdam + self.qnl = qnl + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv0 = gv0 + self.pgv0 = pgv0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.bgv0 = bgv0 + self.bgv1 = bgv1 + self.bgv2 = bgv2 + self.bgv3 = bgv3 + self.bgv4 = bgv4 + self.bgv5 = bgv5 + self.bmax = bmax + self.tblade = tblade + self.model = model + + def __str__(self): + str = "class=GovHydro4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydro4ModelKind.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydro4ModelKind.py new file mode 100644 index 00000000..a768c540 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydro4ModelKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class GovHydro4ModelKind(Base): + """ + Possible types of GovHydro4 models. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=GovHydro4ModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroDD.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroDD.py new file mode 100644 index 00000000..de285617 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroDD.py @@ -0,0 +1,248 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroDD(TurbineGovernorDynamics): + """ + Double derivative hydro governor and turbine. + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax) (> GovHydroDD.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin) (> GovHydroDD.pmax). Typical value = 0. Default: 0.0 + :r: Steady state droop (R). Typical value = 0,05. Default: 0.0 + :td: Input filter time constant (Td) (>= 0). If = 0, block is bypassed. Typical value = 0. Default: 0 + :tf: Washout time constant (Tf) (>= 0). Typical value = 0,1. Default: 0 + :tp: Gate servo time constant (Tp) (>= 0). If = 0, block is bypassed. Typical value = 0,35. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU / s. Typical value = 0,09. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU / s. Typical value = -0,14. Default: 0.0 + :k1: Single derivative gain (K1). Typical value = 3,6. Default: 0.0 + :k2: Double derivative gain (K2). Typical value = 0,2. Default: 0.0 + :ki: Integral gain (Ki). Typical value = 1. Default: 0.0 + :kg: Gate servo gain (Kg). Typical value = 3. Default: 0.0 + :tturb: Turbine time constant (Tturb) (>= 0). See parameter detail 3. Typical value = 0,8. Default: 0 + :aturb: Turbine numerator multiplier (Aturb) (see parameter detail 3). Typical value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (see parameter detail 3). Typical value = 0,5. Default: 0.0 + :tt: Power feedback time constant (Tt) (>= 0). If = 0, block is bypassed. Typical value = 0,02. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + :gmax: Maximum gate opening (Gmax) (> GovHydroDD.gmin). Typical value = 0. Default: 0.0 + :gmin: Minimum gate opening (Gmin) (< GovHydroDD.gmax). Typical value = 0. Default: 0.0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tt is zero, Flag is set to false. If Tt is not zero, Flag is set to true. Typical value = true. Default: False + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + k1=0.0, + k2=0.0, + ki=0.0, + kg=0.0, + tturb=0, + aturb=0.0, + bturb=0.0, + tt=0, + db1=0.0, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + gmax=0.0, + gmin=0.0, + inputSignal=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.k1 = k1 + self.k2 = k2 + self.ki = ki + self.kg = kg + self.tturb = tturb + self.aturb = aturb + self.bturb = bturb + self.tt = tt + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + self.gmax = gmax + self.gmin = gmin + self.inputSignal = inputSignal + + def __str__(self): + str = "class=GovHydroDD\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroFrancis.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroFrancis.py new file mode 100644 index 00000000..fb06c1a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroFrancis.py @@ -0,0 +1,200 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroFrancis(TurbineGovernorDynamics): + """ + Detailed hydro unit - Francis model. This model can be used to represent three types of governors. A schematic of the hydraulic system of detailed hydro unit models, such as Francis and Pelton, is provided in the DetailedHydroModelHydraulicSystem diagram. + + :am: Opening section SEFF at the maximum efficiency (Am). Typical value = 0,7. Default: 0.0 + :av0: Area of the surge tank (AV0). Unit = m2. Typical value = 30. Default: 0.0 + :av1: Area of the compensation tank (AV1). Unit = m2. Typical value = 700. Default: 0.0 + :bp: Droop (Bp). Typical value = 0,05. Default: 0.0 + :db1: Intentional dead-band width (DB1). Unit = Hz. Typical value = 0. Default: 0.0 + :etamax: Maximum efficiency (EtaMax). Typical value = 1,05. Default: 0.0 + :governorControl: Governor control flag (Cflag). Typical value = mechanicHydrolicTachoAccelerator. Default: None + :h1: Head of compensation chamber water level with respect to the level of penstock (H1). Unit = km. Typical value = 0,004. Default: 0.0 + :h2: Head of surge tank water level with respect to the level of penstock (H2). Unit = km. Typical value = 0,040. Default: 0.0 + :hn: Rated hydraulic head (Hn). Unit = km. Typical value = 0,250. Default: 0.0 + :kc: Penstock loss coefficient (due to friction) (Kc). Typical value = 0,025. Default: 0.0 + :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical value = 0,025. Default: 0.0 + :kt: Washout gain (Kt). Typical value = 0,25. Default: 0.0 + :qc0: No-load turbine flow at nominal head (Qc0). Typical value = 0,1. Default: 0.0 + :qn: Rated flow (Qn). Unit = m3/s. Typical value = 250. Default: 0.0 + :ta: Derivative gain (Ta) (>= 0). Typical value = 3. Default: 0 + :td: Washout time constant (Td) (>= 0). Typical value = 6. Default: 0 + :ts: Gate servo time constant (Ts) (>= 0). Typical value = 0,5. Default: 0 + :twnc: Water inertia time constant (Twnc) (>= 0). Typical value = 1. Default: 0 + :twng: Water tunnel and surge chamber inertia time constant (Twng) (>= 0). Typical value = 3. Default: 0 + :tx: Derivative feedback gain (Tx) (>= 0). Typical value = 1. Default: 0 + :va: Maximum gate opening velocity (Va). Unit = PU / s. Typical value = 0,06. Default: 0.0 + :valvmax: Maximum gate opening (ValvMax) (> GovHydroFrancis.valvmin). Typical value = 1,1. Default: 0.0 + :valvmin: Minimum gate opening (ValvMin) (< GovHydroFrancis.valvmax). Typical value = 0. Default: 0.0 + :vc: Maximum gate closing velocity (Vc). Unit = PU / s. Typical value = -0,06. Default: 0.0 + :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical value = false. Default: False + :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = km. Typical value = 0,025. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "am": [ + cgmesProfile.DY.value, + ], + "av0": [ + cgmesProfile.DY.value, + ], + "av1": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "etamax": [ + cgmesProfile.DY.value, + ], + "governorControl": [ + cgmesProfile.DY.value, + ], + "h1": [ + cgmesProfile.DY.value, + ], + "h2": [ + cgmesProfile.DY.value, + ], + "hn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "kt": [ + cgmesProfile.DY.value, + ], + "qc0": [ + cgmesProfile.DY.value, + ], + "qn": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "twnc": [ + cgmesProfile.DY.value, + ], + "twng": [ + cgmesProfile.DY.value, + ], + "tx": [ + cgmesProfile.DY.value, + ], + "va": [ + cgmesProfile.DY.value, + ], + "valvmax": [ + cgmesProfile.DY.value, + ], + "valvmin": [ + cgmesProfile.DY.value, + ], + "vc": [ + cgmesProfile.DY.value, + ], + "waterTunnelSurgeChamberSimulation": [ + cgmesProfile.DY.value, + ], + "zsfc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + am=0.0, + av0=0.0, + av1=0.0, + bp=0.0, + db1=0.0, + etamax=0.0, + governorControl=None, + h1=0.0, + h2=0.0, + hn=0.0, + kc=0.0, + kg=0.0, + kt=0.0, + qc0=0.0, + qn=0.0, + ta=0, + td=0, + ts=0, + twnc=0, + twng=0, + tx=0, + va=0.0, + valvmax=0.0, + valvmin=0.0, + vc=0.0, + waterTunnelSurgeChamberSimulation=False, + zsfc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.am = am + self.av0 = av0 + self.av1 = av1 + self.bp = bp + self.db1 = db1 + self.etamax = etamax + self.governorControl = governorControl + self.h1 = h1 + self.h2 = h2 + self.hn = hn + self.kc = kc + self.kg = kg + self.kt = kt + self.qc0 = qc0 + self.qn = qn + self.ta = ta + self.td = td + self.ts = ts + self.twnc = twnc + self.twng = twng + self.tx = tx + self.va = va + self.valvmax = valvmax + self.valvmin = valvmin + self.vc = vc + self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation + self.zsfc = zsfc + + def __str__(self): + str = "class=GovHydroFrancis\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE0.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE0.py new file mode 100644 index 00000000..8e83c77e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE0.py @@ -0,0 +1,86 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroIEEE0(TurbineGovernorDynamics): + """ + IEEE simplified hydro governor-turbine model. Used for mechanical-hydraulic and electro-hydraulic turbine governors, with or without steam feedback. Typical values given are for mechanical-hydraulic turbine-governor. Reference: IEEE Transactions on Power Apparatus and Systems, November/December 1973, Volume PAS-92, Number 6, Dynamic Models for Steam and Hydro Turbines in Power System Studies, page 1904. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :k: Governor gain (K). Default: 0.0 + :t1: Governor lag time constant (T1) (>= 0). Typical value = 0,25. Default: 0 + :t2: Governor lead time constant (T2) (>= 0). Typical value = 0. Default: 0 + :t3: Gate actuator time constant (T3) (>= 0). Typical value = 0,1. Default: 0 + :t4: Water starting time (T4) (>= 0). Default: 0 + :pmax: Gate maximum (Pmax) (> GovHydroIEEE0.pmin). Default: 0.0 + :pmin: Gate minimum (Pmin) (< GovHydroIEEE.pmax). Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + pmax=0.0, + pmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.pmax = pmax + self.pmin = pmin + + def __str__(self): + str = "class=GovHydroIEEE0\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE2.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE2.py new file mode 100644 index 00000000..9ec30e1a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroIEEE2.py @@ -0,0 +1,194 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroIEEE2(TurbineGovernorDynamics): + """ + IEEE hydro turbine governor model represents plants with straightforward penstock configurations and hydraulic-dashpot governors. Reference: IEEE Transactions on Power Apparatus and Systems, November/December 1973, Volume PAS-92, Number 6, Dynamic Models for Steam and Hydro Turbines in Power System Studies, page 1904. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tg: Gate servo time constant (Tg) (>= 0). Typical value = 0,5. Default: 0 + :tp: Pilot servo valve time constant (Tp) (>= 0). Typical value = 0,03. Default: 0 + :uo: Maximum gate opening velocity (Uo). Unit = PU / s. Typical value = 0,1. Default: 0.0 + :uc: Maximum gate closing velocity (Uc) (<0). Typical value = -0,1. Default: 0.0 + :pmax: Maximum gate opening (Pmax) (> GovHydroIEEE2.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening (Pmin) (<GovHydroIEEE2.pmax). Typical value = 0. Default: 0.0 + :rperm: Permanent droop (Rperm). Typical value = 0,05. Default: 0.0 + :rtemp: Temporary droop (Rtemp). Typical value = 0,5. Default: 0.0 + :tr: Dashpot time constant (Tr) (>= 0). Typical value = 12. Default: 0 + :tw: Water inertia time constant (Tw) (>= 0). Typical value = 2. Default: 0 + :kturb: Turbine gain (Kturb). Typical value = 1. Default: 0.0 + :aturb: Turbine numerator multiplier (Aturb). Typical value = -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (> 0). Typical value = 0,5. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "rtemp": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "kturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tg=0, + tp=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + rperm=0.0, + rtemp=0.0, + tr=0, + tw=0, + kturb=0.0, + aturb=0.0, + bturb=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tg = tg + self.tp = tp + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.rperm = rperm + self.rtemp = rtemp + self.tr = tr + self.tw = tw + self.kturb = kturb + self.aturb = aturb + self.bturb = bturb + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroIEEE2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID.py new file mode 100644 index 00000000..0fc69f74 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID.py @@ -0,0 +1,236 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPID(TurbineGovernorDynamics): + """ + PID governor and turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax) (> GovHydroPID.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin) (< GovHydroPID.pmax). Typical value = 0. Default: 0.0 + :r: Steady state droop (R). Typical value = 0,05. Default: 0.0 + :td: Input filter time constant (Td) (>= 0). If = 0, block is bypassed. Typical value = 0. Default: 0 + :tf: Washout time constant (Tf) (>= 0). Typical value = 0,1. Default: 0 + :tp: Gate servo time constant (Tp) (>= 0). If = 0, block is bypassed. Typical value = 0,35. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU / s. Typical value = 0,09. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU / s. Typical value = -0,14. Default: 0.0 + :kd: Derivative gain (Kd). Typical value = 1,11. Default: 0.0 + :kp: Proportional gain (Kp). Typical value = 0,1. Default: 0.0 + :ki: Integral gain (Ki). Typical value = 0,36. Default: 0.0 + :kg: Gate servo gain (Kg). Typical value = 2,5. Default: 0.0 + :tturb: Turbine time constant (Tturb) (>= 0). See Parameter detail 3. Typical value = 0,8. Default: 0 + :aturb: Turbine numerator multiplier (Aturb) (see parameter detail 3). Typical value -1. Default: 0.0 + :bturb: Turbine denominator multiplier (Bturb) (see parameter detail 3). Typical value = 0,5. Default: 0.0 + :tt: Power feedback time constant (Tt) (>= 0). If = 0, block is bypassed. Typical value = 0,02. Default: 0 + :db1: Intentional dead-band width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tt is zero, Flag is set to false. If Tt is not zero, Flag is set to true. Typical value = true. Default: False + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "tturb": [ + cgmesProfile.DY.value, + ], + "aturb": [ + cgmesProfile.DY.value, + ], + "bturb": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + tf=0, + tp=0, + velop=0.0, + velcl=0.0, + kd=0.0, + kp=0.0, + ki=0.0, + kg=0.0, + tturb=0, + aturb=0.0, + bturb=0.0, + tt=0, + db1=0.0, + inputSignal=False, + eps=0.0, + db2=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.tf = tf + self.tp = tp + self.velop = velop + self.velcl = velcl + self.kd = kd + self.kp = kp + self.ki = ki + self.kg = kg + self.tturb = tturb + self.aturb = aturb + self.bturb = bturb + self.tt = tt + self.db1 = db1 + self.inputSignal = inputSignal + self.eps = eps + self.db2 = db2 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroPID\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID2.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID2.py new file mode 100644 index 00000000..8fdb82cd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPID2.py @@ -0,0 +1,170 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPID2(TurbineGovernorDynamics): + """ + Hydro turbine and governor. Represents plants with straightforward penstock configurations and "three term" electro-hydraulic governors (i.e. WoodwardTM electronic). [Footnote: Woodward electronic governors are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :mwbase: Base for power values (MWbase) (>0). Unit = MW. Default: 0.0 + :treg: Speed detector time constant (Treg) (>= 0). Typical value = 0. Default: 0 + :rperm: Permanent drop (Rperm). Typical value = 0. Default: 0.0 + :kp: Proportional gain (Kp). Typical value = 0. Default: 0.0 + :ki: Reset gain (Ki). Unit = PU/s. Typical value = 0. Default: 0.0 + :kd: Derivative gain (Kd). Typical value = 0. Default: 0.0 + :ta: Controller time constant (Ta) (>= 0). Typical value = 0. Default: 0 + :tb: Gate servo time constant (Tb) (> 0). Default: 0 + :velmax: Maximum gate opening velocity (Velmax) (< GovHydroPID2.velmin). Unit = PU / s. Typical value = 0. Default: 0.0 + :velmin: Maximum gate closing velocity (Velmin) (> GovHydroPID2.velmax). Unit = PU / s. Typical value = 0. Default: 0.0 + :gmax: Maximum gate opening (Gmax) (> GovHydroPID2.gmin). Typical value = 0. Default: 0.0 + :gmin: Minimum gate opening (Gmin) (> GovHydroPID2.gmax). Typical value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (>= 0). Typical value = 0. Default: 0 + :d: Turbine damping factor (D). Unit = delta P / delta speed. Typical value = 0. Default: 0.0 + :g0: Gate opening at speed no load (G0). Typical value = 0. Default: 0.0 + :g1: Intermediate gate opening (G1). Typical value = 0. Default: 0.0 + :p1: Power at gate opening G1 (P1). Typical value = 0. Default: 0.0 + :g2: Intermediate gate opening (G2). Typical value = 0. Default: 0.0 + :p2: Power at gate opening G2 (P2). Typical value = 0. Default: 0.0 + :p3: Power at full opened gate (P3). Typical value = 0. Default: 0.0 + :atw: Factor multiplying Tw (Atw). Typical value = 0. Default: 0.0 + :feedbackSignal: Feedback signal type flag (Flag). true = use gate position feedback signal false = use Pe. Default: False + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "treg": [ + cgmesProfile.DY.value, + ], + "rperm": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "velmax": [ + cgmesProfile.DY.value, + ], + "velmin": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "g0": [ + cgmesProfile.DY.value, + ], + "g1": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "g2": [ + cgmesProfile.DY.value, + ], + "p2": [ + cgmesProfile.DY.value, + ], + "p3": [ + cgmesProfile.DY.value, + ], + "atw": [ + cgmesProfile.DY.value, + ], + "feedbackSignal": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + treg=0, + rperm=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + ta=0, + tb=0, + velmax=0.0, + velmin=0.0, + gmax=0.0, + gmin=0.0, + tw=0, + d=0.0, + g0=0.0, + g1=0.0, + p1=0.0, + g2=0.0, + p2=0.0, + p3=0.0, + atw=0.0, + feedbackSignal=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.treg = treg + self.rperm = rperm + self.kp = kp + self.ki = ki + self.kd = kd + self.ta = ta + self.tb = tb + self.velmax = velmax + self.velmin = velmin + self.gmax = gmax + self.gmin = gmin + self.tw = tw + self.d = d + self.g0 = g0 + self.g1 = g1 + self.p1 = p1 + self.g2 = g2 + self.p2 = p2 + self.p3 = p3 + self.atw = atw + self.feedbackSignal = feedbackSignal + + def __str__(self): + str = "class=GovHydroPID2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroPelton.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPelton.py new file mode 100644 index 00000000..3d65638d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroPelton.py @@ -0,0 +1,206 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroPelton(TurbineGovernorDynamics): + """ + Detailed hydro unit - Pelton model. This model can be used to represent the dynamic related to water tunnel and surge chamber. The DetailedHydroModelHydraulicSystem diagram, located under the GovHydroFrancis class, provides a schematic of the hydraulic system of detailed hydro unit models, such as Francis and Pelton. + + :av0: Area of the surge tank (AV0). Unit = m2. Typical value = 30. Default: 0.0 + :av1: Area of the compensation tank (AV1). Unit = m2. Typical value = 700. Default: 0.0 + :bp: Droop (bp). Typical value = 0,05. Default: 0.0 + :db1: Intentional dead-band width (DB1). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Intentional dead-band width of valve opening error (DB2). Unit = Hz. Typical value = 0,01. Default: 0.0 + :h1: Head of compensation chamber water level with respect to the level of penstock (H1). Unit = km. Typical value = 0,004. Default: 0.0 + :h2: Head of surge tank water level with respect to the level of penstock (H2). Unit = km. Typical value = 0,040. Default: 0.0 + :hn: Rated hydraulic head (Hn). Unit = km. Typical value = 0,250. Default: 0.0 + :kc: Penstock loss coefficient (due to friction) (Kc). Typical value = 0,025. Default: 0.0 + :kg: Water tunnel and surge chamber loss coefficient (due to friction) (Kg). Typical value = 0,025. Default: 0.0 + :qc0: No-load turbine flow at nominal head (Qc0). Typical value = 0,05. Default: 0.0 + :qn: Rated flow (Qn). Unit = m3/s. Typical value = 250. Default: 0.0 + :simplifiedPelton: Simplified Pelton model simulation (Sflag). true = enable of simplified Pelton model simulation false = enable of complete Pelton model simulation (non-linear gain). Typical value = true. Default: False + :staticCompensating: Static compensating characteristic (Cflag). It should be true if simplifiedPelton = false. true = enable of static compensating characteristic false = inhibit of static compensating characteristic. Typical value = false. Default: False + :ta: Derivative gain (accelerometer time constant) (Ta) (>= 0). Typical value = 3. Default: 0 + :ts: Gate servo time constant (Ts) (>= 0). Typical value = 0,15. Default: 0 + :tv: Servomotor integrator time constant (Tv) (>= 0). Typical value = 0,3. Default: 0 + :twnc: Water inertia time constant (Twnc) (>= 0). Typical value = 1. Default: 0 + :twng: Water tunnel and surge chamber inertia time constant (Twng) (>= 0). Typical value = 3. Default: 0 + :tx: Electronic integrator time constant (Tx) (>= 0). Typical value = 0,5. Default: 0 + :va: Maximum gate opening velocity (Va). Unit = PU / s. Typical value = 0,06. Default: 0.0 + :valvmax: Maximum gate opening (ValvMax) (> GovHydroPelton.valvmin). Typical value = 1,1. Default: 0.0 + :valvmin: Minimum gate opening (ValvMin) (< GovHydroPelton.valvmax). Typical value = 0. Default: 0.0 + :vav: Maximum servomotor valve opening velocity (Vav). Typical value = 0,1. Default: 0.0 + :vc: Maximum gate closing velocity (Vc). Unit = PU / s. Typical value = -0,06. Default: 0.0 + :vcv: Maximum servomotor valve closing velocity (Vcv). Typical value = -0,1. Default: 0.0 + :waterTunnelSurgeChamberSimulation: Water tunnel and surge chamber simulation (Tflag). true = enable of water tunnel and surge chamber simulation false = inhibit of water tunnel and surge chamber simulation. Typical value = false. Default: False + :zsfc: Head of upper water level with respect to the level of penstock (Zsfc). Unit = km. Typical value = 0,025. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "av0": [ + cgmesProfile.DY.value, + ], + "av1": [ + cgmesProfile.DY.value, + ], + "bp": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "h1": [ + cgmesProfile.DY.value, + ], + "h2": [ + cgmesProfile.DY.value, + ], + "hn": [ + cgmesProfile.DY.value, + ], + "kc": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "qc0": [ + cgmesProfile.DY.value, + ], + "qn": [ + cgmesProfile.DY.value, + ], + "simplifiedPelton": [ + cgmesProfile.DY.value, + ], + "staticCompensating": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "ts": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "twnc": [ + cgmesProfile.DY.value, + ], + "twng": [ + cgmesProfile.DY.value, + ], + "tx": [ + cgmesProfile.DY.value, + ], + "va": [ + cgmesProfile.DY.value, + ], + "valvmax": [ + cgmesProfile.DY.value, + ], + "valvmin": [ + cgmesProfile.DY.value, + ], + "vav": [ + cgmesProfile.DY.value, + ], + "vc": [ + cgmesProfile.DY.value, + ], + "vcv": [ + cgmesProfile.DY.value, + ], + "waterTunnelSurgeChamberSimulation": [ + cgmesProfile.DY.value, + ], + "zsfc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + av0=0.0, + av1=0.0, + bp=0.0, + db1=0.0, + db2=0.0, + h1=0.0, + h2=0.0, + hn=0.0, + kc=0.0, + kg=0.0, + qc0=0.0, + qn=0.0, + simplifiedPelton=False, + staticCompensating=False, + ta=0, + ts=0, + tv=0, + twnc=0, + twng=0, + tx=0, + va=0.0, + valvmax=0.0, + valvmin=0.0, + vav=0.0, + vc=0.0, + vcv=0.0, + waterTunnelSurgeChamberSimulation=False, + zsfc=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.av0 = av0 + self.av1 = av1 + self.bp = bp + self.db1 = db1 + self.db2 = db2 + self.h1 = h1 + self.h2 = h2 + self.hn = hn + self.kc = kc + self.kg = kg + self.qc0 = qc0 + self.qn = qn + self.simplifiedPelton = simplifiedPelton + self.staticCompensating = staticCompensating + self.ta = ta + self.ts = ts + self.tv = tv + self.twnc = twnc + self.twng = twng + self.tx = tx + self.va = va + self.valvmax = valvmax + self.valvmin = valvmin + self.vav = vav + self.vc = vc + self.vcv = vcv + self.waterTunnelSurgeChamberSimulation = waterTunnelSurgeChamberSimulation + self.zsfc = zsfc + + def __str__(self): + str = "class=GovHydroPelton\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroR.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroR.py new file mode 100644 index 00000000..9e8e34f6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroR.py @@ -0,0 +1,290 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroR(TurbineGovernorDynamics): + """ + Fourth order lead-lag governor and hydro turbine. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :pmax: Maximum gate opening, PU of MWbase (Pmax) (> GovHydroR.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum gate opening, PU of MWbase (Pmin) (< GovHydroR.pmax). Typical value = 0. Default: 0.0 + :r: Steady-state droop (R). Typical value = 0,05. Default: 0.0 + :td: Input filter time constant (Td) (>= 0). Typical value = 0,05. Default: 0 + :t1: Lead time constant 1 (T1) (>= 0). Typical value = 1,5. Default: 0 + :t2: Lag time constant 1 (T2) (>= 0). Typical value = 0,1. Default: 0 + :t3: Lead time constant 2 (T3) (>= 0). Typical value = 1,5. Default: 0 + :t4: Lag time constant 2 (T4) (>= 0). Typical value = 0,1. Default: 0 + :t5: Lead time constant 3 (T5) (>= 0). Typical value = 0. Default: 0 + :t6: Lag time constant 3 (T6) (>= 0). Typical value = 0,05. Default: 0 + :t7: Lead time constant 4 (T7) (>= 0). Typical value = 0. Default: 0 + :t8: Lag time constant 4 (T8) (>= 0). Typical value = 0,05. Default: 0 + :tp: Gate servo time constant (Tp) (>= 0). Typical value = 0,05. Default: 0 + :velop: Maximum gate opening velocity (Velop). Unit = PU / s. Typical value = 0,2. Default: 0.0 + :velcl: Maximum gate closing velocity (Velcl). Unit = PU / s. Typical value = -0,2. Default: 0.0 + :ki: Integral gain (Ki). Typical value = 0,5. Default: 0.0 + :kg: Gate servo gain (Kg). Typical value = 2. Default: 0.0 + :gmax: Maximum governor output (Gmax) (> GovHydroR.gmin). Typical value = 1,05. Default: 0.0 + :gmin: Minimum governor output (Gmin) (< GovHydroR.gmax). Typical value = -0,05. Default: 0.0 + :tt: Power feedback time constant (Tt) (>= 0). Typical value = 0. Default: 0 + :inputSignal: Input signal switch (Flag). true = Pe input is used false = feedback is received from CV. Flag is normally dependent on Tt. If Tt is zero, Flag is set to false. If Tt is not zero, Flag is set to true. Typical value = true. Default: False + :db1: Intentional dead-band width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :db2: Unintentional dead-band (db2). Unit = MW. Typical value = 0. Default: 0.0 + :tw: Water inertia time constant (Tw) (> 0). Typical value = 1. Default: 0 + :at: Turbine gain (At). Typical value = 1,2. Default: 0.0 + :dturb: Turbine damping factor (Dturb). Typical value = 0,2. Default: 0.0 + :qnl: No-load turbine flow at nominal head (Qnl). Typical value = 0,08. Default: 0.0 + :h0: Turbine nominal head (H0). Typical value = 1. Default: 0.0 + :gv1: Nonlinear gain point 1, PU gv (Gv1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain point 1, PU power (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain point 2, PU gv (Gv2). Typical value = 0. Default: 0.0 + :pgv2: Nonlinear gain point 2, PU power (Pgv2). Typical value = 0. Default: 0.0 + :gv3: Nonlinear gain point 3, PU gv (Gv3). Typical value = 0. Default: 0.0 + :pgv3: Nonlinear gain point 3, PU power (Pgv3). Typical value = 0. Default: 0.0 + :gv4: Nonlinear gain point 4, PU gv (Gv4). Typical value = 0. Default: 0.0 + :pgv4: Nonlinear gain point 4, PU power (Pgv4). Typical value = 0. Default: 0.0 + :gv5: Nonlinear gain point 5, PU gv (Gv5). Typical value = 0. Default: 0.0 + :pgv5: Nonlinear gain point 5, PU power (Pgv5). Typical value = 0. Default: 0.0 + :gv6: Nonlinear gain point 6, PU gv (Gv6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain point 6, PU power (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "velop": [ + cgmesProfile.DY.value, + ], + "velcl": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "inputSignal": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "at": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "qnl": [ + cgmesProfile.DY.value, + ], + "h0": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmax=0.0, + pmin=0.0, + r=0.0, + td=0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + tp=0, + velop=0.0, + velcl=0.0, + ki=0.0, + kg=0.0, + gmax=0.0, + gmin=0.0, + tt=0, + inputSignal=False, + db1=0.0, + eps=0.0, + db2=0.0, + tw=0, + at=0.0, + dturb=0.0, + qnl=0.0, + h0=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmax = pmax + self.pmin = pmin + self.r = r + self.td = td + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.tp = tp + self.velop = velop + self.velcl = velcl + self.ki = ki + self.kg = kg + self.gmax = gmax + self.gmin = gmin + self.tt = tt + self.inputSignal = inputSignal + self.db1 = db1 + self.eps = eps + self.db2 = db2 + self.tw = tw + self.at = at + self.dturb = dturb + self.qnl = qnl + self.h0 = h0 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovHydroR\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroWEH.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroWEH.py new file mode 100644 index 00000000..78912fa2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroWEH.py @@ -0,0 +1,344 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroWEH(TurbineGovernorDynamics): + """ + WoodwardTM electric hydro governor. [Footnote: Woodward electric hydro governors are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :rpg: Permanent droop for governor output feedback (R-Perm-Gate). Default: 0.0 + :rpp: Permanent droop for electrical power feedback (R-Perm-Pe). Default: 0.0 + :tpe: Electrical power droop time constant (Tpe) (>= 0). Default: 0 + :kp: Derivative control gain (Kp). Default: 0.0 + :ki: Derivative controller Integral gain (Ki). Default: 0.0 + :kd: Derivative controller derivative gain (Kd). Default: 0.0 + :td: Derivative controller time constant (Td) (>= 0). Limits the derivative characteristic beyond a breakdown frequency to avoid amplification of high-frequency noise. Default: 0 + :tp: Pilot valve time lag time constant (Tp) (>= 0). Default: 0 + :tdv: Distributive valve time lag time constant (Tdv) (>= 0). Default: 0 + :tg: Value to allow the distribution valve controller to advance beyond the gate movement rate limit (Tg) (>= 0). Default: 0 + :gtmxop: Maximum gate opening rate (Gtmxop). Default: 0.0 + :gtmxcl: Maximum gate closing rate (Gtmxcl). Default: 0.0 + :gmax: Maximum gate position (Gmax) (> GovHydroWEH.gmin). Default: 0.0 + :gmin: Minimum gate position (Gmin) (< GovHydroWEH.gmax). Default: 0.0 + :dturb: Turbine damping factor (Dturb). Unit = delta P (PU of MWbase) / delta speed (PU). Default: 0.0 + :tw: Water inertia time constant (Tw) (> 0). Default: 0 + :db: Speed deadband (db). Default: 0.0 + :dpv: Value to allow the pilot valve controller to advance beyond the gate limits (Dpv). Default: 0.0 + :dicn: Value to allow the integral controller to advance beyond the gate limits (Dicn). Default: 0.0 + :feedbackSignal: Feedback signal selection (Sw). true = PID output (if R-Perm-Gate = droop and R-Perm-Pe = 0) false = electrical power (if R-Perm-Gate = 0 and R-Perm-Pe = droop) or false = gate position (if R-Perm-Gate = droop and R-Perm-Pe = 0). Typical value = false. Default: False + :gv1: Gate 1 (Gv1). Gate Position value for point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv2: Gate 2 (Gv2). Gate Position value for point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv3: Gate 3 (Gv3). Gate Position value for point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv4: Gate 4 (Gv4). Gate Position value for point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :gv5: Gate 5 (Gv5). Gate Position value for point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl1: Flowgate 1 (Fl1). Flow value for gate position point 1 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl2: Flowgate 2 (Fl2). Flow value for gate position point 2 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl3: Flowgate 3 (Fl3). Flow value for gate position point 3 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl4: Flowgate 4 (Fl4). Flow value for gate position point 4 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fl5: Flowgate 5 (Fl5). Flow value for gate position point 5 for lookup table representing water flow through the turbine as a function of gate position to produce steady state flow. Default: 0.0 + :fp1: Flow P1 (Fp1). Turbine flow value for point 1 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp2: Flow P2 (Fp2). Turbine flow value for point 2 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp3: Flow P3 (Fp3). Turbine flow value for point 3 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp4: Flow P4 (Fp4). Turbine flow value for point 4 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp5: Flow P5 (Fp5). Turbine flow value for point 5 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp6: Flow P6 (Fp6). Turbine flow value for point 6 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp7: Flow P7 (Fp7). Turbine flow value for point 7 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp8: Flow P8 (Fp8). Turbine flow value for point 8 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp9: Flow P9 (Fp9). Turbine flow value for point 9 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :fp10: Flow P10 (Fp10). Turbine flow value for point 10 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss1: Pmss flow P1 (Pmss1). Mechanical power output for turbine flow point 1 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss2: Pmss flow P2 (Pmss2). Mechanical power output for turbine flow point 2 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss3: Pmss flow P3 (Pmss3). Mechanical power output for turbine flow point 3 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss4: Pmss flow P4 (Pmss4). Mechanical power output for turbine flow point 4 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss5: Pmss flow P5 (Pmss5). Mechanical power output for turbine flow point 5 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss6: Pmss flow P6 (Pmss6). Mechanical power output for turbine flow point 6 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss7: Pmss flow P7 (Pmss7). Mechanical power output for turbine flow point 7 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss8: Pmss flow P8 (Pmss8). Mechanical power output for turbine flow point 8 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss9: Pmss flow P9 (Pmss9). Mechanical power output for turbine flow point 9 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + :pmss10: Pmss flow P10 (Pmss10). Mechanical power output for turbine flow point 10 for lookup table representing PU mechanical power on machine MVA rating as a function of turbine flow. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "rpg": [ + cgmesProfile.DY.value, + ], + "rpp": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tdv": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "gtmxop": [ + cgmesProfile.DY.value, + ], + "gtmxcl": [ + cgmesProfile.DY.value, + ], + "gmax": [ + cgmesProfile.DY.value, + ], + "gmin": [ + cgmesProfile.DY.value, + ], + "dturb": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "dpv": [ + cgmesProfile.DY.value, + ], + "dicn": [ + cgmesProfile.DY.value, + ], + "feedbackSignal": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "fl1": [ + cgmesProfile.DY.value, + ], + "fl2": [ + cgmesProfile.DY.value, + ], + "fl3": [ + cgmesProfile.DY.value, + ], + "fl4": [ + cgmesProfile.DY.value, + ], + "fl5": [ + cgmesProfile.DY.value, + ], + "fp1": [ + cgmesProfile.DY.value, + ], + "fp2": [ + cgmesProfile.DY.value, + ], + "fp3": [ + cgmesProfile.DY.value, + ], + "fp4": [ + cgmesProfile.DY.value, + ], + "fp5": [ + cgmesProfile.DY.value, + ], + "fp6": [ + cgmesProfile.DY.value, + ], + "fp7": [ + cgmesProfile.DY.value, + ], + "fp8": [ + cgmesProfile.DY.value, + ], + "fp9": [ + cgmesProfile.DY.value, + ], + "fp10": [ + cgmesProfile.DY.value, + ], + "pmss1": [ + cgmesProfile.DY.value, + ], + "pmss2": [ + cgmesProfile.DY.value, + ], + "pmss3": [ + cgmesProfile.DY.value, + ], + "pmss4": [ + cgmesProfile.DY.value, + ], + "pmss5": [ + cgmesProfile.DY.value, + ], + "pmss6": [ + cgmesProfile.DY.value, + ], + "pmss7": [ + cgmesProfile.DY.value, + ], + "pmss8": [ + cgmesProfile.DY.value, + ], + "pmss9": [ + cgmesProfile.DY.value, + ], + "pmss10": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + rpg=0.0, + rpp=0.0, + tpe=0, + kp=0.0, + ki=0.0, + kd=0.0, + td=0, + tp=0, + tdv=0, + tg=0, + gtmxop=0.0, + gtmxcl=0.0, + gmax=0.0, + gmin=0.0, + dturb=0.0, + tw=0, + db=0.0, + dpv=0.0, + dicn=0.0, + feedbackSignal=False, + gv1=0.0, + gv2=0.0, + gv3=0.0, + gv4=0.0, + gv5=0.0, + fl1=0.0, + fl2=0.0, + fl3=0.0, + fl4=0.0, + fl5=0.0, + fp1=0.0, + fp2=0.0, + fp3=0.0, + fp4=0.0, + fp5=0.0, + fp6=0.0, + fp7=0.0, + fp8=0.0, + fp9=0.0, + fp10=0.0, + pmss1=0.0, + pmss2=0.0, + pmss3=0.0, + pmss4=0.0, + pmss5=0.0, + pmss6=0.0, + pmss7=0.0, + pmss8=0.0, + pmss9=0.0, + pmss10=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.rpg = rpg + self.rpp = rpp + self.tpe = tpe + self.kp = kp + self.ki = ki + self.kd = kd + self.td = td + self.tp = tp + self.tdv = tdv + self.tg = tg + self.gtmxop = gtmxop + self.gtmxcl = gtmxcl + self.gmax = gmax + self.gmin = gmin + self.dturb = dturb + self.tw = tw + self.db = db + self.dpv = dpv + self.dicn = dicn + self.feedbackSignal = feedbackSignal + self.gv1 = gv1 + self.gv2 = gv2 + self.gv3 = gv3 + self.gv4 = gv4 + self.gv5 = gv5 + self.fl1 = fl1 + self.fl2 = fl2 + self.fl3 = fl3 + self.fl4 = fl4 + self.fl5 = fl5 + self.fp1 = fp1 + self.fp2 = fp2 + self.fp3 = fp3 + self.fp4 = fp4 + self.fp5 = fp5 + self.fp6 = fp6 + self.fp7 = fp7 + self.fp8 = fp8 + self.fp9 = fp9 + self.fp10 = fp10 + self.pmss1 = pmss1 + self.pmss2 = pmss2 + self.pmss3 = pmss3 + self.pmss4 = pmss4 + self.pmss5 = pmss5 + self.pmss6 = pmss6 + self.pmss7 = pmss7 + self.pmss8 = pmss8 + self.pmss9 = pmss9 + self.pmss10 = pmss10 + + def __str__(self): + str = "class=GovHydroWEH\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovHydroWPID.py b/cimpy_3/cimpy/cgmes_v3_0/GovHydroWPID.py new file mode 100644 index 00000000..794ed23d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovHydroWPID.py @@ -0,0 +1,170 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovHydroWPID(TurbineGovernorDynamics): + """ + WoodwardTM PID hydro governor. [Footnote: Woodward PID hydro governors are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :treg: Speed detector time constant (Treg) (>= 0). Default: 0 + :reg: Permanent drop (Reg). Default: 0.0 + :kp: Proportional gain (Kp). Typical value = 0,1. Default: 0.0 + :ki: Reset gain (Ki). Typical value = 0,36. Default: 0.0 + :kd: Derivative gain (Kd). Typical value = 1,11. Default: 0.0 + :ta: Controller time constant (Ta) (>= 0). Typical value = 0. Default: 0 + :tb: Gate servo time constant (Tb) (>= 0). Typical value = 0. Default: 0 + :velmax: Maximum gate opening velocity (Velmax) (> GovHydroWPID.velmin). Unit = PU / s. Typical value = 0. Default: 0.0 + :velmin: Maximum gate closing velocity (Velmin) (< GovHydroWPID.velmax). Unit = PU / s. Typical value = 0. Default: 0.0 + :gatmax: Gate opening limit maximum (Gatmax) (> GovHydroWPID.gatmin). Default: 0.0 + :gatmin: Gate opening limit minimum (Gatmin) (< GovHydroWPID.gatmax). Default: 0.0 + :tw: Water inertia time constant (Tw) (>= 0). Typical value = 0. Default: 0 + :pmax: Maximum power output (Pmax) (> GovHydroWPID.pmin). Default: 0.0 + :pmin: Minimum power output (Pmin) (< GovHydroWPID.pmax). Default: 0.0 + :d: Turbine damping factor (D). Unit = delta P / delta speed. Default: 0.0 + :gv3: Gate position 3 (Gv3) (= 1,0). Default: 0.0 + :gv1: Gate position 1 (Gv1). Default: 0.0 + :pgv1: Output at Gv1 PU of MWbase (Pgv1). Default: 0.0 + :gv2: Gate position 2 (Gv2). Default: 0.0 + :pgv2: Output at Gv2 PU of MWbase (Pgv2). Default: 0.0 + :pgv3: Output at Gv3 PU of MWbase (Pgv3). Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "treg": [ + cgmesProfile.DY.value, + ], + "reg": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "velmax": [ + cgmesProfile.DY.value, + ], + "velmin": [ + cgmesProfile.DY.value, + ], + "gatmax": [ + cgmesProfile.DY.value, + ], + "gatmin": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + treg=0, + reg=0.0, + kp=0.0, + ki=0.0, + kd=0.0, + ta=0, + tb=0, + velmax=0.0, + velmin=0.0, + gatmax=0.0, + gatmin=0.0, + tw=0, + pmax=0.0, + pmin=0.0, + d=0.0, + gv3=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + pgv3=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.treg = treg + self.reg = reg + self.kp = kp + self.ki = ki + self.kd = kd + self.ta = ta + self.tb = tb + self.velmax = velmax + self.velmin = velmin + self.gatmax = gatmax + self.gatmin = gatmin + self.tw = tw + self.pmax = pmax + self.pmin = pmin + self.d = d + self.gv3 = gv3 + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.pgv3 = pgv3 + + def __str__(self): + str = "class=GovHydroWPID\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteam0.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteam0.py new file mode 100644 index 00000000..5f19e0aa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteam0.py @@ -0,0 +1,86 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam0(TurbineGovernorDynamics): + """ + A simplified steam turbine governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :r: Permanent droop (R). Typical value = 0,05. Default: 0.0 + :t1: Steam bowl time constant (T1) (> 0). Typical value = 0,5. Default: 0 + :vmax: Maximum valve position, PU of mwcap (Vmax) (> GovSteam0.vmin). Typical value = 1. Default: 0.0 + :vmin: Minimum valve position, PU of mwcap (Vmin) (< GovSteam0.vmax). Typical value = 0. Default: 0.0 + :t2: Numerator time constant of T2/T3 block (T2) (>= 0). Typical value = 3. Default: 0 + :t3: Reheater time constant (T3) (> 0). Typical value = 10. Default: 0 + :dt: Turbine damping coefficient (Dt). Unit = delta P / delta speed. Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "dt": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + r=0.0, + t1=0, + vmax=0.0, + vmin=0.0, + t2=0, + t3=0, + dt=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.r = r + self.t1 = t1 + self.vmax = vmax + self.vmin = vmin + self.t2 = t2 + self.t3 = t3 + self.dt = dt + + def __str__(self): + str = "class=GovSteam0\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteam1.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteam1.py new file mode 100644 index 00000000..7b49da30 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteam1.py @@ -0,0 +1,272 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam1(TurbineGovernorDynamics): + """ + Steam turbine governor, based on the GovSteamIEEE1 (with optional deadband and nonlinear valve gain added). + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :k: Governor gain (reciprocal of droop) (K) (> 0). Typical value = 25. Default: 0.0 + :t1: Governor lag time constant (T1) (>= 0). Typical value = 0. Default: 0 + :t2: Governor lead time constant (T2) (>= 0). Typical value = 0. Default: 0 + :t3: Valve positioner time constant (T3) (> 0). Typical value = 0,1. Default: 0 + :uo: Maximum valve opening velocity (Uo) (> 0). Unit = PU / s. Typical value = 1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc) (< 0). Unit = PU / s. Typical value = -10. Default: 0.0 + :pmax: Maximum valve opening (Pmax) (> GovSteam1.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum valve opening (Pmin) (>= 0 and < GovSteam1.pmax). Typical value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4) (>= 0). Typical value = 0,3. Default: 0 + :k1: Fraction of HP shaft power after first boiler pass (K1). Typical value = 0,2. Default: 0.0 + :k2: Fraction of LP shaft power after first boiler pass (K2). Typical value = 0. Default: 0.0 + :t5: Time constant of second boiler pass (T5) (>= 0). Typical value = 5. Default: 0 + :k3: Fraction of HP shaft power after second boiler pass (K3). Typical value = 0,3. Default: 0.0 + :k4: Fraction of LP shaft power after second boiler pass (K4). Typical value = 0. Default: 0.0 + :t6: Time constant of third boiler pass (T6) (>= 0). Typical value = 0,5. Default: 0 + :k5: Fraction of HP shaft power after third boiler pass (K5). Typical value = 0,5. Default: 0.0 + :k6: Fraction of LP shaft power after third boiler pass (K6). Typical value = 0. Default: 0.0 + :t7: Time constant of fourth boiler pass (T7) (>= 0). Typical value = 0. Default: 0 + :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical value = 0. Default: 0.0 + :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical value = 0. Default: 0.0 + :db1: Intentional deadband width (db1). Unit = Hz. Typical value = 0. Default: 0.0 + :eps: Intentional db hysteresis (eps). Unit = Hz. Typical value = 0. Default: 0.0 + :sdb1: Intentional deadband indicator. true = intentional deadband is applied false = intentional deadband is not applied. Typical value = true. Default: False + :sdb2: Unintentional deadband location. true = intentional deadband is applied before point `A` false = intentional deadband is applied after point `A`. Typical value = true. Default: False + :db2: Unintentional deadband (db2). Unit = MW. Typical value = 0. Default: 0.0 + :valve: Nonlinear valve characteristic. true = nonlinear valve characteristic is used false = nonlinear valve characteristic is not used. Typical value = true. Default: False + :gv1: Nonlinear gain valve position point 1 (GV1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain power value point 1 (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain valve position point 2 (GV2). Typical value = 0,4. Default: 0.0 + :pgv2: Nonlinear gain power value point 2 (Pgv2). Typical value = 0,75. Default: 0.0 + :gv3: Nonlinear gain valve position point 3 (GV3). Typical value = 0,5. Default: 0.0 + :pgv3: Nonlinear gain power value point 3 (Pgv3). Typical value = 0,91. Default: 0.0 + :gv4: Nonlinear gain valve position point 4 (GV4). Typical value = 0,6. Default: 0.0 + :pgv4: Nonlinear gain power value point 4 (Pgv4). Typical value = 0,98. Default: 0.0 + :gv5: Nonlinear gain valve position point 5 (GV5). Typical value = 1. Default: 0.0 + :pgv5: Nonlinear gain power value point 5 (Pgv5). Typical value = 1. Default: 0.0 + :gv6: Nonlinear gain valve position point 6 (GV6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain power value point 6 (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "k7": [ + cgmesProfile.DY.value, + ], + "k8": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "eps": [ + cgmesProfile.DY.value, + ], + "sdb1": [ + cgmesProfile.DY.value, + ], + "sdb2": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "valve": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + k2=0.0, + t5=0, + k3=0.0, + k4=0.0, + t6=0, + k5=0.0, + k6=0.0, + t7=0, + k7=0.0, + k8=0.0, + db1=0.0, + eps=0.0, + sdb1=False, + sdb2=False, + db2=0.0, + valve=False, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.k2 = k2 + self.t5 = t5 + self.k3 = k3 + self.k4 = k4 + self.t6 = t6 + self.k5 = k5 + self.k6 = k6 + self.t7 = t7 + self.k7 = k7 + self.k8 = k8 + self.db1 = db1 + self.eps = eps + self.sdb1 = sdb1 + self.sdb2 = sdb2 + self.db2 = db2 + self.valve = valve + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovSteam1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteam2.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteam2.py new file mode 100644 index 00000000..152f93cd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteam2.py @@ -0,0 +1,86 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteam2(TurbineGovernorDynamics): + """ + Simplified governor. + + :k: Governor gain (reciprocal of droop) (K). Typical value = 20. Default: 0.0 + :dbf: Frequency deadband (DBF). Typical value = 0. Default: 0.0 + :t1: Governor lag time constant (T1) (> 0). Typical value = 0,45. Default: 0 + :t2: Governor lead time constant (T2) (>= 0). Typical value = 0. Default: 0 + :pmax: Maximum fuel flow (PMAX) (> GovSteam2.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum fuel flow (PMIN) (< GovSteam2.pmax). Typical value = 0. Default: 0.0 + :mxef: Fuel flow maximum positive error value (MXEF). Typical value = 1. Default: 0.0 + :mnef: Fuel flow maximum negative error value (MNEF). Typical value = -1. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dbf": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + k=0.0, + dbf=0.0, + t1=0, + t2=0, + pmax=0.0, + pmin=0.0, + mxef=0.0, + mnef=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k = k + self.dbf = dbf + self.t1 = t1 + self.t2 = t2 + self.pmax = pmax + self.pmin = pmin + self.mxef = mxef + self.mnef = mnef + + def __str__(self): + str = "class=GovSteam2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamBB.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamBB.py new file mode 100644 index 00000000..48932457 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamBB.py @@ -0,0 +1,140 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamBB(TurbineGovernorDynamics): + """ + European governor model. + + :fcut: Frequency deadband (fcut) (>= 0). Typical value = 0,002. Default: 0.0 + :ks: Gain (Ks). Typical value = 21,0. Default: 0.0 + :kls: Gain (Kls) (> 0). Typical value = 0,1. Default: 0.0 + :kg: Gain (Kg). Typical value = 1,0. Default: 0.0 + :t1: Time constant (T1). Typical value = 0,05. Default: 0 + :kp: Gain (Kp). Typical value = 1,0. Default: 0.0 + :tn: Time constant (Tn) (> 0). Typical value = 1,0. Default: 0 + :kd: Gain (Kd). Typical value = 1,0. Default: 0.0 + :td: Time constant (Td) (> 0). Typical value = 1,0. Default: 0 + :pmax: High power limit (Pmax) (> GovSteamBB.pmin). Typical value = 1,0. Default: 0.0 + :pmin: Low power limit (Pmin) (< GovSteamBB.pmax). Typical value = 0. Default: 0.0 + :t4: Time constant (T4). Typical value = 0,15. Default: 0 + :k2: Gain (K2). Typical value = 0,75. Default: 0.0 + :t5: Time constant (T5). Typical value = 12,0. Default: 0 + :k3: Gain (K3). Typical value = 0,5. Default: 0.0 + :t6: Time constant (T6). Typical value = 0,75. Default: 0 + :peflag: Electric power input selection (Peflag). true = electric power input false = feedback signal. Typical value = false. Default: False + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "fcut": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "kls": [ + cgmesProfile.DY.value, + ], + "kg": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "tn": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "peflag": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + fcut=0.0, + ks=0.0, + kls=0.0, + kg=0.0, + t1=0, + kp=0.0, + tn=0, + kd=0.0, + td=0, + pmax=0.0, + pmin=0.0, + t4=0, + k2=0.0, + t5=0, + k3=0.0, + t6=0, + peflag=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.fcut = fcut + self.ks = ks + self.kls = kls + self.kg = kg + self.t1 = t1 + self.kp = kp + self.tn = tn + self.kd = kd + self.td = td + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k2 = k2 + self.t5 = t5 + self.k3 = k3 + self.t6 = t6 + self.peflag = peflag + + def __str__(self): + str = "class=GovSteamBB\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamCC.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamCC.py new file mode 100644 index 00000000..6a592584 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamCC.py @@ -0,0 +1,140 @@ +from .CrossCompoundTurbineGovernorDynamics import CrossCompoundTurbineGovernorDynamics + + +class GovSteamCC(CrossCompoundTurbineGovernorDynamics): + """ + Cross compound turbine governor. Unlike tandem compound units, cross compound units are not on the same shaft. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :pmaxhp: Maximum HP value position (Pmaxhp). Typical value = 1. Default: 0.0 + :rhp: HP governor droop (Rhp) (> 0). Typical value = 0,05. Default: 0.0 + :t1hp: HP governor time constant (T1hp) (>= 0). Typical value = 0,1. Default: 0 + :t3hp: HP turbine time constant (T3hp) (>= 0). Typical value = 0,1. Default: 0 + :t4hp: HP turbine time constant (T4hp) (>= 0). Typical value = 0,1. Default: 0 + :t5hp: HP reheater time constant (T5hp) (>= 0). Typical value = 10. Default: 0 + :fhp: Fraction of HP power ahead of reheater (Fhp). Typical value = 0,3. Default: 0.0 + :dhp: HP damping factor (Dhp). Typical value = 0. Default: 0.0 + :pmaxlp: Maximum LP value position (Pmaxlp). Typical value = 1. Default: 0.0 + :rlp: LP governor droop (Rlp) (> 0). Typical value = 0,05. Default: 0.0 + :t1lp: LP governor time constant (T1lp) (>= 0). Typical value = 0,1. Default: 0 + :t3lp: LP turbine time constant (T3lp) (>= 0). Typical value = 0,1. Default: 0 + :t4lp: LP turbine time constant (T4lp) (>= 0). Typical value = 0,1. Default: 0 + :t5lp: LP reheater time constant (T5lp) (>= 0). Typical value = 10. Default: 0 + :flp: Fraction of LP power ahead of reheater (Flp). Typical value = 0,7. Default: 0.0 + :dlp: LP damping factor (Dlp). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = CrossCompoundTurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "pmaxhp": [ + cgmesProfile.DY.value, + ], + "rhp": [ + cgmesProfile.DY.value, + ], + "t1hp": [ + cgmesProfile.DY.value, + ], + "t3hp": [ + cgmesProfile.DY.value, + ], + "t4hp": [ + cgmesProfile.DY.value, + ], + "t5hp": [ + cgmesProfile.DY.value, + ], + "fhp": [ + cgmesProfile.DY.value, + ], + "dhp": [ + cgmesProfile.DY.value, + ], + "pmaxlp": [ + cgmesProfile.DY.value, + ], + "rlp": [ + cgmesProfile.DY.value, + ], + "t1lp": [ + cgmesProfile.DY.value, + ], + "t3lp": [ + cgmesProfile.DY.value, + ], + "t4lp": [ + cgmesProfile.DY.value, + ], + "t5lp": [ + cgmesProfile.DY.value, + ], + "flp": [ + cgmesProfile.DY.value, + ], + "dlp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class CrossCompoundTurbineGovernorDynamics: \n" + + CrossCompoundTurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + pmaxhp=0.0, + rhp=0.0, + t1hp=0, + t3hp=0, + t4hp=0, + t5hp=0, + fhp=0.0, + dhp=0.0, + pmaxlp=0.0, + rlp=0.0, + t1lp=0, + t3lp=0, + t4lp=0, + t5lp=0, + flp=0.0, + dlp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.pmaxhp = pmaxhp + self.rhp = rhp + self.t1hp = t1hp + self.t3hp = t3hp + self.t4hp = t4hp + self.t5hp = t5hp + self.fhp = fhp + self.dhp = dhp + self.pmaxlp = pmaxlp + self.rlp = rlp + self.t1lp = t1lp + self.t3lp = t3lp + self.t4lp = t4lp + self.t5lp = t5lp + self.flp = flp + self.dlp = dlp + + def __str__(self): + str = "class=GovSteamCC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamEU.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamEU.py new file mode 100644 index 00000000..ee245f03 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamEU.py @@ -0,0 +1,248 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamEU(TurbineGovernorDynamics): + """ + Simplified boiler and steam turbine with PID governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :tp: Power transducer time constant (Tp) (>= 0). Typical value = 0,07. Default: 0 + :ke: Gain of the power controller (Ke). Typical value = 0,65. Default: 0.0 + :tip: Integral time constant of the power controller (Tip) (>= 0). Typical value = 2. Default: 0 + :tdp: Derivative time constant of the power controller (Tdp) (>= 0). Typical value = 0. Default: 0 + :tfp: Time constant of the power controller (Tfp) (>= 0). Typical value = 0. Default: 0 + :tf: Frequency transducer time constant (Tf) (>= 0). Typical value = 0. Default: 0 + :kfcor: Gain of the frequency corrector (Kfcor). Typical value = 20. Default: 0.0 + :db1: Deadband of the frequency corrector (db1). Typical value = 0. Default: 0.0 + :wfmax: Upper limit for frequency correction (Wfmax) (> GovSteamEU.wfmin). Typical value = 0,05. Default: 0.0 + :wfmin: Lower limit for frequency correction (Wfmin) (< GovSteamEU.wfmax). Typical value = -0,05. Default: 0.0 + :pmax: Maximal active power of the turbine (Pmax). Typical value = 1. Default: 0.0 + :ten: Electro hydraulic transducer (Ten) (>= 0). Typical value = 0,1. Default: 0 + :tw: Speed transducer time constant (Tw) (>= 0). Typical value = 0,02. Default: 0 + :komegacor: Gain of the speed governor (Kwcor). Typical value = 20. Default: 0.0 + :db2: Deadband of the speed governor (db2). Typical value = 0,0004. Default: 0.0 + :wwmax: Upper limit for the speed governor (Wwmax) (> GovSteamEU.wwmin). Typical value = 0,1. Default: 0.0 + :wwmin: Lower limit for the speed governor frequency correction (Wwmin) (< GovSteamEU.wwmax). Typical value = -1. Default: 0.0 + :wmax1: Emergency speed control lower limit (wmax1). Typical value = 1,025. Default: 0.0 + :wmax2: Emergency speed control upper limit (wmax2). Typical value = 1,05. Default: 0.0 + :tvhp: Control valves servo time constant (Tvhp) (>= 0). Typical value = 0,1. Default: 0 + :cho: Control valves rate opening limit (Cho). Unit = PU / s. Typical value = 0,17. Default: 0.0 + :chc: Control valves rate closing limit (Chc). Unit = PU / s. Typical value = -3,3. Default: 0.0 + :hhpmax: Maximum control valve position (Hhpmax). Typical value = 1. Default: 0.0 + :tvip: Intercept valves servo time constant (Tvip) (>= 0). Typical value = 0,15. Default: 0 + :cio: Intercept valves rate opening limit (Cio). Typical value = 0,123. Default: 0.0 + :cic: Intercept valves rate closing limit (Cic). Typical value = -2,2. Default: 0.0 + :simx: Intercept valves transfer limit (Simx). Typical value = 0,425. Default: 0.0 + :thp: High pressure (HP) time constant of the turbine (Thp) (>= 0). Typical value = 0,31. Default: 0 + :trh: Reheater time constant of the turbine (Trh) (>= 0). Typical value = 8. Default: 0 + :tlp: Low pressure (LP) time constant of the turbine (Tlp) (>= 0). Typical value = 0,45. Default: 0 + :prhmax: Maximum low pressure limit (Prhmax). Typical value = 1,4. Default: 0.0 + :khp: Fraction of total turbine output generated by HP part (Khp). Typical value = 0,277. Default: 0.0 + :klp: Fraction of total turbine output generated by HP part (Klp). Typical value = 0,723. Default: 0.0 + :tb: Boiler time constant (Tb) (>= 0). Typical value = 100. Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "ke": [ + cgmesProfile.DY.value, + ], + "tip": [ + cgmesProfile.DY.value, + ], + "tdp": [ + cgmesProfile.DY.value, + ], + "tfp": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "kfcor": [ + cgmesProfile.DY.value, + ], + "db1": [ + cgmesProfile.DY.value, + ], + "wfmax": [ + cgmesProfile.DY.value, + ], + "wfmin": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "ten": [ + cgmesProfile.DY.value, + ], + "tw": [ + cgmesProfile.DY.value, + ], + "komegacor": [ + cgmesProfile.DY.value, + ], + "db2": [ + cgmesProfile.DY.value, + ], + "wwmax": [ + cgmesProfile.DY.value, + ], + "wwmin": [ + cgmesProfile.DY.value, + ], + "wmax1": [ + cgmesProfile.DY.value, + ], + "wmax2": [ + cgmesProfile.DY.value, + ], + "tvhp": [ + cgmesProfile.DY.value, + ], + "cho": [ + cgmesProfile.DY.value, + ], + "chc": [ + cgmesProfile.DY.value, + ], + "hhpmax": [ + cgmesProfile.DY.value, + ], + "tvip": [ + cgmesProfile.DY.value, + ], + "cio": [ + cgmesProfile.DY.value, + ], + "cic": [ + cgmesProfile.DY.value, + ], + "simx": [ + cgmesProfile.DY.value, + ], + "thp": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "tlp": [ + cgmesProfile.DY.value, + ], + "prhmax": [ + cgmesProfile.DY.value, + ], + "khp": [ + cgmesProfile.DY.value, + ], + "klp": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + tp=0, + ke=0.0, + tip=0, + tdp=0, + tfp=0, + tf=0, + kfcor=0.0, + db1=0.0, + wfmax=0.0, + wfmin=0.0, + pmax=0.0, + ten=0, + tw=0, + komegacor=0.0, + db2=0.0, + wwmax=0.0, + wwmin=0.0, + wmax1=0.0, + wmax2=0.0, + tvhp=0, + cho=0.0, + chc=0.0, + hhpmax=0.0, + tvip=0, + cio=0.0, + cic=0.0, + simx=0.0, + thp=0, + trh=0, + tlp=0, + prhmax=0.0, + khp=0.0, + klp=0.0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.tp = tp + self.ke = ke + self.tip = tip + self.tdp = tdp + self.tfp = tfp + self.tf = tf + self.kfcor = kfcor + self.db1 = db1 + self.wfmax = wfmax + self.wfmin = wfmin + self.pmax = pmax + self.ten = ten + self.tw = tw + self.komegacor = komegacor + self.db2 = db2 + self.wwmax = wwmax + self.wwmin = wwmin + self.wmax1 = wmax1 + self.wmax2 = wmax2 + self.tvhp = tvhp + self.cho = cho + self.chc = chc + self.hhpmax = hhpmax + self.tvip = tvip + self.cio = cio + self.cic = cic + self.simx = simx + self.thp = thp + self.trh = trh + self.tlp = tlp + self.prhmax = prhmax + self.khp = khp + self.klp = klp + self.tb = tb + + def __str__(self): + str = "class=GovSteamEU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV2.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV2.py new file mode 100644 index 00000000..cae27c38 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV2.py @@ -0,0 +1,110 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV2(TurbineGovernorDynamics): + """ + Steam turbine governor with reheat time constants and modelling of the effects of fast valve closing to reduce mechanical power. + + :mwbase: Alternate base used instead of machine base in equipment model if necessary (MWbase) (> 0). Unit = MW. Default: 0.0 + :t1: Governor time constant (T1) (>= 0). Default: 0 + :vmax: (Vmax) (> GovSteamFV2.vmin). Default: 0.0 + :vmin: (Vmin) (< GovSteamFV2.vmax). Default: 0.0 + :k: Fraction of the turbine power developed by turbine sections not involved in fast valving (K). Default: 0.0 + :t3: Reheater time constant (T3) (>= 0). Default: 0 + :dt: (Dt). Default: 0.0 + :tt: Time constant with which power falls off after intercept valve closure (Tt) (>= 0). Default: 0 + :r: (R). Default: 0.0 + :ta: Time after initial time for valve to close (Ta) (>= 0). Default: 0 + :tb: Time after initial time for valve to begin opening (Tb) (>= 0). Default: 0 + :tc: Time after initial time for valve to become fully open (Tc) (>= 0). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "vmax": [ + cgmesProfile.DY.value, + ], + "vmin": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "dt": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + t1=0, + vmax=0.0, + vmin=0.0, + k=0.0, + t3=0, + dt=0.0, + tt=0, + r=0.0, + ta=0, + tb=0, + tc=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.t1 = t1 + self.vmax = vmax + self.vmin = vmin + self.k = k + self.t3 = t3 + self.dt = dt + self.tt = tt + self.r = r + self.ta = ta + self.tb = tb + self.tc = tc + + def __str__(self): + str = "class=GovSteamFV2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV3.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV3.py new file mode 100644 index 00000000..2a44de59 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV3.py @@ -0,0 +1,224 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV3(TurbineGovernorDynamics): + """ + Simplified GovSteamIEEE1 steam turbine governor with Prmax limit and fast valving. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :k: Governor gain, (reciprocal of droop) (K). Typical value = 20. Default: 0.0 + :t1: Governor lead time constant (T1) (>= 0). Typical value = 0. Default: 0 + :t2: Governor lag time constant (T2) (>= 0). Typical value = 0. Default: 0 + :t3: Valve positioner time constant (T3) (> 0). Typical value = 0. Default: 0 + :uo: Maximum valve opening velocity (Uo). Unit = PU / s. Typical value = 0,1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc). Unit = PU / s. Typical value = -1. Default: 0.0 + :pmax: Maximum valve opening, PU of MWbase (Pmax) (> GovSteamFV3.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum valve opening, PU of MWbase (Pmin) (< GovSteamFV3.pmax). Typical value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4) (>= 0). Typical value = 0,2. Default: 0 + :k1: Fraction of turbine power developed after first boiler pass (K1). Typical value = 0,2. Default: 0.0 + :t5: Time constant of second boiler pass (i.e. reheater) (T5) (> 0 if fast valving is used, otherwise >= 0). Typical value = 0,5. Default: 0 + :k2: Fraction of turbine power developed after second boiler pass (K2). Typical value = 0,2. Default: 0.0 + :t6: Time constant of crossover or third boiler pass (T6) (>= 0). Typical value = 10. Default: 0 + :k3: Fraction of hp turbine power developed after crossover or third boiler pass (K3). Typical value = 0,6. Default: 0.0 + :ta: Time to close intercept valve (IV) (Ta) (>= 0). Typical value = 0,97. Default: 0 + :tb: Time until IV starts to reopen (Tb) (>= 0). Typical value = 0,98. Default: 0 + :tc: Time until IV is fully open (Tc) (>= 0). Typical value = 0,99. Default: 0 + :prmax: Max. pressure in reheater (Prmax). Typical value = 1. Default: 0.0 + :gv1: Nonlinear gain valve position point 1 (GV1). Typical value = 0. Default: 0.0 + :pgv1: Nonlinear gain power value point 1 (Pgv1). Typical value = 0. Default: 0.0 + :gv2: Nonlinear gain valve position point 2 (GV2). Typical value = 0,4. Default: 0.0 + :pgv2: Nonlinear gain power value point 2 (Pgv2). Typical value = 0,75. Default: 0.0 + :gv3: Nonlinear gain valve position point 3 (GV3). Typical value = 0,5. Default: 0.0 + :pgv3: Nonlinear gain power value point 3 (Pgv3). Typical value = 0,91. Default: 0.0 + :gv4: Nonlinear gain valve position point 4 (GV4). Typical value = 0,6. Default: 0.0 + :pgv4: Nonlinear gain power value point 4 (Pgv4). Typical value = 0,98. Default: 0.0 + :gv5: Nonlinear gain valve position point 5 (GV5). Typical value = 1. Default: 0.0 + :pgv5: Nonlinear gain power value point 5 (Pgv5). Typical value = 1. Default: 0.0 + :gv6: Nonlinear gain valve position point 6 (GV6). Typical value = 0. Default: 0.0 + :pgv6: Nonlinear gain power value point 6 (Pgv6). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "prmax": [ + cgmesProfile.DY.value, + ], + "gv1": [ + cgmesProfile.DY.value, + ], + "pgv1": [ + cgmesProfile.DY.value, + ], + "gv2": [ + cgmesProfile.DY.value, + ], + "pgv2": [ + cgmesProfile.DY.value, + ], + "gv3": [ + cgmesProfile.DY.value, + ], + "pgv3": [ + cgmesProfile.DY.value, + ], + "gv4": [ + cgmesProfile.DY.value, + ], + "pgv4": [ + cgmesProfile.DY.value, + ], + "gv5": [ + cgmesProfile.DY.value, + ], + "pgv5": [ + cgmesProfile.DY.value, + ], + "gv6": [ + cgmesProfile.DY.value, + ], + "pgv6": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + t5=0, + k2=0.0, + t6=0, + k3=0.0, + ta=0, + tb=0, + tc=0, + prmax=0.0, + gv1=0.0, + pgv1=0.0, + gv2=0.0, + pgv2=0.0, + gv3=0.0, + pgv3=0.0, + gv4=0.0, + pgv4=0.0, + gv5=0.0, + pgv5=0.0, + gv6=0.0, + pgv6=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.t5 = t5 + self.k2 = k2 + self.t6 = t6 + self.k3 = k3 + self.ta = ta + self.tb = tb + self.tc = tc + self.prmax = prmax + self.gv1 = gv1 + self.pgv1 = pgv1 + self.gv2 = gv2 + self.pgv2 = pgv2 + self.gv3 = gv3 + self.pgv3 = pgv3 + self.gv4 = gv4 + self.pgv4 = pgv4 + self.gv5 = gv5 + self.pgv5 = pgv5 + self.gv6 = gv6 + self.pgv6 = pgv6 + + def __str__(self): + str = "class=GovSteamFV3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV4.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV4.py new file mode 100644 index 00000000..58a29db3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamFV4.py @@ -0,0 +1,344 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamFV4(TurbineGovernorDynamics): + """ + Detailed electro-hydraulic governor for steam unit. + + :kf1: Frequency bias (reciprocal of droop) (Kf1). Typical value = 20. Default: 0.0 + :kf3: Frequency control (reciprocal of droop) (Kf3). Typical value = 20. Default: 0.0 + :lps: Maximum positive power error (Lps). Typical value = 0,03. Default: 0.0 + :lpi: Maximum negative power error (Lpi). Typical value = -0,15. Default: 0.0 + :mxef: Upper limit for frequency correction (MXEF). Typical value = 0,05. Default: 0.0 + :mnef: Lower limit for frequency correction (MNEF). Typical value = -0,05. Default: 0.0 + :crmx: Maximum value of regulator set-point (Crmx). Typical value = 1,2. Default: 0.0 + :crmn: Minimum value of regulator set-point (Crmn). Typical value = 0. Default: 0.0 + :kpt: Proportional gain of electro-hydraulic regulator (Kpt). Typical value = 0,3. Default: 0.0 + :kit: Integral gain of electro-hydraulic regulator (Kit). Typical value = 0,04. Default: 0.0 + :rvgmx: Maximum value of integral regulator (Rvgmx). Typical value = 1,2. Default: 0.0 + :rvgmn: Minimum value of integral regulator (Rvgmn). Typical value = 0. Default: 0.0 + :svmx: Maximum regulator gate opening velocity (Svmx). Typical value = 0,0333. Default: 0.0 + :svmn: Maximum regulator gate closing velocity (Svmn). Typical value = -0,0333. Default: 0.0 + :srmx: Maximum valve opening (Srmx). Typical value = 1,1. Default: 0.0 + :srmn: Minimum valve opening (Srmn). Typical value = 0. Default: 0.0 + :kpp: Proportional gain of pressure feedback regulator (Kpp). Typical value = 1. Default: 0.0 + :kip: Integral gain of pressure feedback regulator (Kip). Typical value = 0,5. Default: 0.0 + :rsmimx: Maximum value of integral regulator (Rsmimx). Typical value = 1,1. Default: 0.0 + :rsmimn: Minimum value of integral regulator (Rsmimn). Typical value = 0. Default: 0.0 + :kmp1: First gain coefficient of intercept valves characteristic (Kmp1). Typical value = 0,5. Default: 0.0 + :kmp2: Second gain coefficient of intercept valves characteristic (Kmp2). Typical value = 3,5. Default: 0.0 + :srsmp: Intercept valves characteristic discontinuity point (Srsmp). Typical value = 0,43. Default: 0.0 + :ta: Control valves rate opening time (Ta) (>= 0). Typical value = 0,8. Default: 0 + :tc: Control valves rate closing time (Tc) (>= 0). Typical value = 0,5. Default: 0 + :ty: Control valves servo time constant (Ty) (>= 0). Typical value = 0,1. Default: 0 + :yhpmx: Maximum control valve position (Yhpmx). Typical value = 1,1. Default: 0.0 + :yhpmn: Minimum control valve position (Yhpmn). Typical value = 0. Default: 0.0 + :tam: Intercept valves rate opening time (Tam) (>= 0). Typical value = 0,8. Default: 0 + :tcm: Intercept valves rate closing time (Tcm) (>= 0). Typical value = 0,5. Default: 0 + :ympmx: Maximum intercept valve position (Ympmx). Typical value = 1,1. Default: 0.0 + :ympmn: Minimum intercept valve position (Ympmn). Typical value = 0. Default: 0.0 + :y: Coefficient of linearized equations of turbine (Stodola formulation) (Y). Typical value = 0,13. Default: 0.0 + :thp: High pressure (HP) time constant of the turbine (Thp) (>= 0). Typical value = 0,15. Default: 0 + :trh: Reheater time constant of the turbine (Trh) (>= 0). Typical value = 10. Default: 0 + :tmp: Low pressure (LP) time constant of the turbine (Tmp) (>= 0). Typical value = 0,4. Default: 0 + :khp: Fraction of total turbine output generated by HP part (Khp). Typical value = 0,35. Default: 0.0 + :pr1: First value of pressure set point static characteristic (Pr1). Typical value = 0,2. Default: 0.0 + :pr2: Second value of pressure set point static characteristic, corresponding to Ps0 = 1,0 PU (Pr2). Typical value = 0,75. Default: 0.0 + :psmn: Minimum value of pressure set point static characteristic (Psmn). Typical value = 1. Default: 0.0 + :kpc: Proportional gain of pressure regulator (Kpc). Typical value = 0,5. Default: 0.0 + :kic: Integral gain of pressure regulator (Kic). Typical value = 0,0033. Default: 0.0 + :kdc: Derivative gain of pressure regulator (Kdc). Typical value = 1. Default: 0.0 + :tdc: Derivative time constant of pressure regulator (Tdc) (>= 0). Typical value = 90. Default: 0 + :cpsmx: Maximum value of pressure regulator output (Cpsmx). Typical value = 1. Default: 0.0 + :cpsmn: Minimum value of pressure regulator output (Cpsmn). Typical value = -1. Default: 0.0 + :krc: Maximum variation of fuel flow (Krc). Typical value = 0,05. Default: 0.0 + :tf1: Time constant of fuel regulation (Tf1) (>= 0). Typical value = 10. Default: 0 + :tf2: Time constant of steam chest (Tf2) (>= 0). Typical value = 10. Default: 0 + :tv: Boiler time constant (Tv) (>= 0). Typical value = 60. Default: 0 + :ksh: Pressure loss due to flow friction in the boiler tubes (Ksh). Typical value = 0,08. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf1": [ + cgmesProfile.DY.value, + ], + "kf3": [ + cgmesProfile.DY.value, + ], + "lps": [ + cgmesProfile.DY.value, + ], + "lpi": [ + cgmesProfile.DY.value, + ], + "mxef": [ + cgmesProfile.DY.value, + ], + "mnef": [ + cgmesProfile.DY.value, + ], + "crmx": [ + cgmesProfile.DY.value, + ], + "crmn": [ + cgmesProfile.DY.value, + ], + "kpt": [ + cgmesProfile.DY.value, + ], + "kit": [ + cgmesProfile.DY.value, + ], + "rvgmx": [ + cgmesProfile.DY.value, + ], + "rvgmn": [ + cgmesProfile.DY.value, + ], + "svmx": [ + cgmesProfile.DY.value, + ], + "svmn": [ + cgmesProfile.DY.value, + ], + "srmx": [ + cgmesProfile.DY.value, + ], + "srmn": [ + cgmesProfile.DY.value, + ], + "kpp": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "rsmimx": [ + cgmesProfile.DY.value, + ], + "rsmimn": [ + cgmesProfile.DY.value, + ], + "kmp1": [ + cgmesProfile.DY.value, + ], + "kmp2": [ + cgmesProfile.DY.value, + ], + "srsmp": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "ty": [ + cgmesProfile.DY.value, + ], + "yhpmx": [ + cgmesProfile.DY.value, + ], + "yhpmn": [ + cgmesProfile.DY.value, + ], + "tam": [ + cgmesProfile.DY.value, + ], + "tcm": [ + cgmesProfile.DY.value, + ], + "ympmx": [ + cgmesProfile.DY.value, + ], + "ympmn": [ + cgmesProfile.DY.value, + ], + "y": [ + cgmesProfile.DY.value, + ], + "thp": [ + cgmesProfile.DY.value, + ], + "trh": [ + cgmesProfile.DY.value, + ], + "tmp": [ + cgmesProfile.DY.value, + ], + "khp": [ + cgmesProfile.DY.value, + ], + "pr1": [ + cgmesProfile.DY.value, + ], + "pr2": [ + cgmesProfile.DY.value, + ], + "psmn": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "kic": [ + cgmesProfile.DY.value, + ], + "kdc": [ + cgmesProfile.DY.value, + ], + "tdc": [ + cgmesProfile.DY.value, + ], + "cpsmx": [ + cgmesProfile.DY.value, + ], + "cpsmn": [ + cgmesProfile.DY.value, + ], + "krc": [ + cgmesProfile.DY.value, + ], + "tf1": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "ksh": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + kf1=0.0, + kf3=0.0, + lps=0.0, + lpi=0.0, + mxef=0.0, + mnef=0.0, + crmx=0.0, + crmn=0.0, + kpt=0.0, + kit=0.0, + rvgmx=0.0, + rvgmn=0.0, + svmx=0.0, + svmn=0.0, + srmx=0.0, + srmn=0.0, + kpp=0.0, + kip=0.0, + rsmimx=0.0, + rsmimn=0.0, + kmp1=0.0, + kmp2=0.0, + srsmp=0.0, + ta=0, + tc=0, + ty=0, + yhpmx=0.0, + yhpmn=0.0, + tam=0, + tcm=0, + ympmx=0.0, + ympmn=0.0, + y=0.0, + thp=0, + trh=0, + tmp=0, + khp=0.0, + pr1=0.0, + pr2=0.0, + psmn=0.0, + kpc=0.0, + kic=0.0, + kdc=0.0, + tdc=0, + cpsmx=0.0, + cpsmn=0.0, + krc=0.0, + tf1=0, + tf2=0, + tv=0, + ksh=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kf1 = kf1 + self.kf3 = kf3 + self.lps = lps + self.lpi = lpi + self.mxef = mxef + self.mnef = mnef + self.crmx = crmx + self.crmn = crmn + self.kpt = kpt + self.kit = kit + self.rvgmx = rvgmx + self.rvgmn = rvgmn + self.svmx = svmx + self.svmn = svmn + self.srmx = srmx + self.srmn = srmn + self.kpp = kpp + self.kip = kip + self.rsmimx = rsmimx + self.rsmimn = rsmimn + self.kmp1 = kmp1 + self.kmp2 = kmp2 + self.srsmp = srsmp + self.ta = ta + self.tc = tc + self.ty = ty + self.yhpmx = yhpmx + self.yhpmn = yhpmn + self.tam = tam + self.tcm = tcm + self.ympmx = ympmx + self.ympmn = ympmn + self.y = y + self.thp = thp + self.trh = trh + self.tmp = tmp + self.khp = khp + self.pr1 = pr1 + self.pr2 = pr2 + self.psmn = psmn + self.kpc = kpc + self.kic = kic + self.kdc = kdc + self.tdc = tdc + self.cpsmx = cpsmx + self.cpsmn = cpsmn + self.krc = krc + self.tf1 = tf1 + self.tf2 = tf2 + self.tv = tv + self.ksh = ksh + + def __str__(self): + str = "class=GovSteamFV4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamIEEE1.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamIEEE1.py new file mode 100644 index 00000000..9c1aaa81 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamIEEE1.py @@ -0,0 +1,164 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamIEEE1(TurbineGovernorDynamics): + """ + IEEE steam turbine governor model. Reference: IEEE Transactions on Power Apparatus and Systems, November/December 1973, Volume PAS-92, Number 6, Dynamic Models for Steam and Hydro Turbines in Power System Studies, page 1904. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :k: Governor gain (reciprocal of droop) (K) (> 0). Typical value = 25. Default: 0.0 + :t1: Governor lag time constant (T1) (>= 0). Typical value = 0. Default: 0 + :t2: Governor lead time constant (T2) (>= 0). Typical value = 0. Default: 0 + :t3: Valve positioner time constant (T3) (> 0). Typical value = 0,1. Default: 0 + :uo: Maximum valve opening velocity (Uo) (> 0). Unit = PU / s. Typical value = 1. Default: 0.0 + :uc: Maximum valve closing velocity (Uc) (< 0). Unit = PU / s. Typical value = -10. Default: 0.0 + :pmax: Maximum valve opening (Pmax) (> GovSteamIEEE1.pmin). Typical value = 1. Default: 0.0 + :pmin: Minimum valve opening (Pmin) (>= 0 and < GovSteamIEEE1.pmax). Typical value = 0. Default: 0.0 + :t4: Inlet piping/steam bowl time constant (T4) (>= 0). Typical value = 0,3. Default: 0 + :k1: Fraction of HP shaft power after first boiler pass (K1). Typical value = 0,2. Default: 0.0 + :k2: Fraction of LP shaft power after first boiler pass (K2). Typical value = 0. Default: 0.0 + :t5: Time constant of second boiler pass (T5) (>= 0). Typical value = 5. Default: 0 + :k3: Fraction of HP shaft power after second boiler pass (K3). Typical value = 0,3. Default: 0.0 + :k4: Fraction of LP shaft power after second boiler pass (K4). Typical value = 0. Default: 0.0 + :t6: Time constant of third boiler pass (T6) (>= 0). Typical value = 0,5. Default: 0 + :k5: Fraction of HP shaft power after third boiler pass (K5). Typical value = 0,5. Default: 0.0 + :k6: Fraction of LP shaft power after third boiler pass (K6). Typical value = 0. Default: 0.0 + :t7: Time constant of fourth boiler pass (T7) (>= 0). Typical value = 0. Default: 0 + :k7: Fraction of HP shaft power after fourth boiler pass (K7). Typical value = 0. Default: 0.0 + :k8: Fraction of LP shaft power after fourth boiler pass (K8). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "uo": [ + cgmesProfile.DY.value, + ], + "uc": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "k6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "k7": [ + cgmesProfile.DY.value, + ], + "k8": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + k=0.0, + t1=0, + t2=0, + t3=0, + uo=0.0, + uc=0.0, + pmax=0.0, + pmin=0.0, + t4=0, + k1=0.0, + k2=0.0, + t5=0, + k3=0.0, + k4=0.0, + t6=0, + k5=0.0, + k6=0.0, + t7=0, + k7=0.0, + k8=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.k = k + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.uo = uo + self.uc = uc + self.pmax = pmax + self.pmin = pmin + self.t4 = t4 + self.k1 = k1 + self.k2 = k2 + self.t5 = t5 + self.k3 = k3 + self.k4 = k4 + self.t6 = t6 + self.k5 = k5 + self.k6 = k6 + self.t7 = t7 + self.k7 = k7 + self.k8 = k8 + + def __str__(self): + str = "class=GovSteamIEEE1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GovSteamSGO.py b/cimpy_3/cimpy/cgmes_v3_0/GovSteamSGO.py new file mode 100644 index 00000000..e77cf548 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GovSteamSGO.py @@ -0,0 +1,110 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class GovSteamSGO(TurbineGovernorDynamics): + """ + Simplified steam turbine governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :t1: Controller lag (T1) (>= 0). Default: 0 + :t2: Controller lead compensation (T2) (>= 0). Default: 0 + :t3: Governor lag (T3) (> 0). Default: 0 + :t4: Delay due to steam inlet volumes associated with steam chest and inlet piping (T4) (>= 0). Default: 0 + :t5: Reheater delay including hot and cold leads (T5) (>= 0). Default: 0 + :t6: Delay due to IP-LP turbine, crossover pipes and LP end hoods (T6) (>= 0). Default: 0 + :k1: One / PU regulation (K1). Default: 0.0 + :k2: Fraction (K2). Default: 0.0 + :k3: Fraction (K3). Default: 0.0 + :pmax: Upper power limit (Pmax) (> GovSteamSGO.pmin). Default: 0.0 + :pmin: Lower power limit (Pmin) (>= 0 and < GovSteamSGO.pmax). Default: 0 + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "pmax": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + k1=0.0, + k2=0.0, + k3=0.0, + pmax=0.0, + pmin=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.pmax = pmax + self.pmin = pmin + + def __str__(self): + str = "class=GovSteamSGO\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GrossToNetActivePowerCurve.py b/cimpy_3/cimpy/cgmes_v3_0/GrossToNetActivePowerCurve.py new file mode 100644 index 00000000..1cd8d7a9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GrossToNetActivePowerCurve.py @@ -0,0 +1,36 @@ +from .Curve import Curve + + +class GrossToNetActivePowerCurve(Curve): + """ + Relationship between the generating unit's gross active power output on the X-axis (measured at the terminals of the machine(s)) and the generating unit's net active power output on the Y-axis (based on utility-defined measurements at the power station). Station service loads, when modelled, should be treated as non-conforming bus loads. There may be more than one curve, depending on the auxiliary equipment that is in service. + + :GeneratingUnit: A generating unit may have a gross active power to net active power curve, describing the losses and auxiliary power requirements of the unit. Default: None + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__(self, GeneratingUnit=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.GeneratingUnit = GeneratingUnit + + def __str__(self): + str = "class=GrossToNetActivePowerCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Ground.py b/cimpy_3/cimpy/cgmes_v3_0/Ground.py new file mode 100644 index 00000000..399662eb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Ground.py @@ -0,0 +1,35 @@ +from .ConductingEquipment import ConductingEquipment + + +class Ground(ConductingEquipment): + """ + A point where the system is grounded used for connecting conducting equipment to ground. The power system model can have any number of grounds. + + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Ground\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GroundDisconnector.py b/cimpy_3/cimpy/cgmes_v3_0/GroundDisconnector.py new file mode 100644 index 00000000..93e07bbd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GroundDisconnector.py @@ -0,0 +1,33 @@ +from .Switch import Switch + + +class GroundDisconnector(Switch): + """ + A manually operated or motor operated mechanical switching device used for isolating a circuit or equipment from ground. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=GroundDisconnector\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/GroundingImpedance.py b/cimpy_3/cimpy/cgmes_v3_0/GroundingImpedance.py new file mode 100644 index 00000000..f862f48f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/GroundingImpedance.py @@ -0,0 +1,40 @@ +from .EarthFaultCompensator import EarthFaultCompensator + + +class GroundingImpedance(EarthFaultCompensator): + """ + A fixed impedance device used for grounding. + + :x: Reactance of device. Default: 0.0 + """ + + cgmesProfile = EarthFaultCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "x": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EarthFaultCompensator: \n" + + EarthFaultCompensator.__doc__ + ) + + def __init__(self, x=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.x = x + + def __str__(self): + str = "class=GroundingImpedance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HVDCDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/HVDCDynamics.py new file mode 100644 index 00000000..b8a930da --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HVDCDynamics.py @@ -0,0 +1,35 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class HVDCDynamics(DynamicsFunctionBlock): + """ + HVDC whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=HVDCDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroEnergyConversionKind.py b/cimpy_3/cimpy/cgmes_v3_0/HydroEnergyConversionKind.py new file mode 100644 index 00000000..507a2685 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroEnergyConversionKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class HydroEnergyConversionKind(Base): + """ + Specifies the capability of the hydro generating unit to convert energy as a generator or pump. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=HydroEnergyConversionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/HydroGeneratingUnit.py new file mode 100644 index 00000000..7c53ea13 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroGeneratingUnit.py @@ -0,0 +1,62 @@ +from .GeneratingUnit import GeneratingUnit + + +class HydroGeneratingUnit(GeneratingUnit): + """ + A generating unit whose prime mover is a hydraulic turbine (e.g., Francis, Pelton, Kaplan). + + :energyConversionCapability: Energy conversion capability for generating. Default: None + :dropHeight: The height water drops from the reservoir mid-point to the turbine. Default: 0.0 + :turbineType: Type of turbine. Default: None + :HydroPowerPlant: The hydro generating unit belongs to a hydro power plant. Default: None + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "energyConversionCapability": [ + cgmesProfile.EQ.value, + ], + "dropHeight": [ + cgmesProfile.EQ.value, + ], + "turbineType": [ + cgmesProfile.EQ.value, + ], + "HydroPowerPlant": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__( + self, + energyConversionCapability=None, + dropHeight=0.0, + turbineType=None, + HydroPowerPlant=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.energyConversionCapability = energyConversionCapability + self.dropHeight = dropHeight + self.turbineType = turbineType + self.HydroPowerPlant = HydroPowerPlant + + def __str__(self): + str = "class=HydroGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroPlantStorageKind.py b/cimpy_3/cimpy/cgmes_v3_0/HydroPlantStorageKind.py new file mode 100644 index 00000000..6a1fbd35 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroPlantStorageKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class HydroPlantStorageKind(Base): + """ + The type of hydro power plant. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=HydroPlantStorageKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroPowerPlant.py b/cimpy_3/cimpy/cgmes_v3_0/HydroPowerPlant.py new file mode 100644 index 00000000..6363470e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroPowerPlant.py @@ -0,0 +1,56 @@ +from .PowerSystemResource import PowerSystemResource + + +class HydroPowerPlant(PowerSystemResource): + """ + A hydro power station which can generate or pump. When generating, the generator turbines receive water from an upper reservoir. When pumping, the pumps receive their water from a lower reservoir. + + :HydroGeneratingUnits: The hydro generating unit belongs to a hydro power plant. Default: "list" + :hydroPlantStorageType: The type of hydro power plant water storage. Default: None + :HydroPumps: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "HydroGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + "hydroPlantStorageType": [ + cgmesProfile.EQ.value, + ], + "HydroPumps": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + HydroGeneratingUnits="list", + hydroPlantStorageType=None, + HydroPumps="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.HydroGeneratingUnits = HydroGeneratingUnits + self.hydroPlantStorageType = hydroPlantStorageType + self.HydroPumps = HydroPumps + + def __str__(self): + str = "class=HydroPowerPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroPump.py b/cimpy_3/cimpy/cgmes_v3_0/HydroPump.py new file mode 100644 index 00000000..123f9cf5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroPump.py @@ -0,0 +1,41 @@ +from .Equipment import Equipment + + +class HydroPump(Equipment): + """ + A synchronous motor-driven pump, typically associated with a pumped storage plant. + + :HydroPowerPlant: The hydro pump may be a member of a pumped storage plant or a pump for distributing water. Default: None + :RotatingMachine: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "HydroPowerPlant": [ + cgmesProfile.EQ.value, + ], + "RotatingMachine": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__(self, HydroPowerPlant=None, RotatingMachine=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.HydroPowerPlant = HydroPowerPlant + self.RotatingMachine = RotatingMachine + + def __str__(self): + str = "class=HydroPump\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/HydroTurbineKind.py b/cimpy_3/cimpy/cgmes_v3_0/HydroTurbineKind.py new file mode 100644 index 00000000..3be0fd28 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/HydroTurbineKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class HydroTurbineKind(Base): + """ + Type of turbine. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=HydroTurbineKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/IOPoint.py b/cimpy_3/cimpy/cgmes_v3_0/IOPoint.py new file mode 100644 index 00000000..5b57508e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/IOPoint.py @@ -0,0 +1,35 @@ +from .IdentifiedObject import IdentifiedObject + + +class IOPoint(IdentifiedObject): + """ + The class describe a measurement or control value. The purpose is to enable having attributes and associations common for measurement and control. + + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=IOPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/IdentifiedObject.py b/cimpy_3/cimpy/cgmes_v3_0/IdentifiedObject.py new file mode 100644 index 00000000..16814ab7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/IdentifiedObject.py @@ -0,0 +1,100 @@ +from .Base import Base + + +class IdentifiedObject(Base): + """ + This is a root class to provide common identification for all classes needing identification and naming attributes. + + :mRID: Master resource identifier issued by a model authority. The mRID is unique within an exchange context. Global uniqueness is easily achieved by using a UUID, as specified in RFC 4122, for the mRID. The use of UUID is strongly recommended. For CIMXML data files in RDF syntax conforming to IEC 61970-552, the mRID is mapped to rdf:ID or rdf:about attributes that identify CIM object elements. Default: '' + :name: The name is any free human readable and possibly non unique text naming the object. Default: '' + :description: The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy. Default: '' + :DiagramObjects: The diagram objects that are associated with the domain object. Default: "list" + :energyIdentCodeEic: The attribute is used for an exchange of the EIC code (Energy identification Code). The length of the string is 16 characters as defined by the EIC code. For details on EIC scheme please refer to ENTSO-E web site. Default: '' + :shortName: The attribute is used for an exchange of a human readable short name with length of the string 12 characters maximum. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "mRID": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "name": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.DL.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SV.value, + ], + "description": [ + cgmesProfile.DY.value, + cgmesProfile.DL.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "DiagramObjects": [ + cgmesProfile.DL.value, + ], + "energyIdentCodeEic": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "shortName": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + mRID="", + name="", + description="", + DiagramObjects="list", + energyIdentCodeEic="", + shortName="", + ): + + self.mRID = mRID + self.name = name + self.description = description + self.DiagramObjects = DiagramObjects + self.energyIdentCodeEic = energyIdentCodeEic + self.shortName = shortName + + def __str__(self): + str = "class=IdentifiedObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/IfdBaseKind.py b/cimpy_3/cimpy/cgmes_v3_0/IfdBaseKind.py new file mode 100644 index 00000000..2b9689d9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/IfdBaseKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class IfdBaseKind(Base): + """ + Excitation base system mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=IfdBaseKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Inductance.py b/cimpy_3/cimpy/cgmes_v3_0/Inductance.py new file mode 100644 index 00000000..4a0e8961 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Inductance.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class Inductance(Base): + """ + Inductive part of reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Inductance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/InductancePerLength.py b/cimpy_3/cimpy/cgmes_v3_0/InductancePerLength.py similarity index 92% rename from cimpy/cgmes_v2_4_15/InductancePerLength.py rename to cimpy_3/cimpy/cgmes_v3_0/InductancePerLength.py index df68e717..80095ec4 100644 --- a/cimpy/cgmes_v2_4_15/InductancePerLength.py +++ b/cimpy_3/cimpy/cgmes_v3_0/InductancePerLength.py @@ -1,8 +1,8 @@ -from .Base import Base - +"""from .Base import Base +#not required as per cim standard class InductancePerLength(Base): - ''' +""" """ Inductance per unit of length. :value: Default: 0.0 @@ -10,7 +10,7 @@ class InductancePerLength(Base): :multiplier: Default: None :denominatorUnit: Default: None :denominatorMultiplier: Default: None - ''' + """ """ cgmesProfile = Base.cgmesProfile @@ -24,19 +24,20 @@ class InductancePerLength(Base): serializationProfile = {} - + def __init__(self, value = 0.0, unit = None, multiplier = None, denominatorUnit = None, denominatorMultiplier = None, ): - + self.value = value self.unit = unit self.multiplier = multiplier self.denominatorUnit = denominatorUnit self.denominatorMultiplier = denominatorMultiplier - + def __str__(self): str = 'class=InductancePerLength\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/InputSignalKind.py b/cimpy_3/cimpy/cgmes_v3_0/InputSignalKind.py new file mode 100644 index 00000000..044603d2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/InputSignalKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class InputSignalKind(Base): + """ + Types of input signals. In dynamics modelling, commonly represented by the j parameter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=InputSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Integer.py b/cimpy_3/cimpy/cgmes_v3_0/Integer.py new file mode 100644 index 00000000..9605eefc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Integer.py @@ -0,0 +1,37 @@ +from .Base import Base + + +class Integer(Base): + """ + An integer number. The range is unspecified and not limited. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Integer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Jumper.py b/cimpy_3/cimpy/cgmes_v3_0/Jumper.py new file mode 100644 index 00000000..633c6826 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Jumper.py @@ -0,0 +1,33 @@ +from .Switch import Switch + + +class Jumper(Switch): + """ + A short section of conductor with negligible impedance which can be manually removed and replaced if the circuit is de-energized. Note that zero-impedance branches can potentially be modelled by other equipment types. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Jumper\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Junction.py b/cimpy_3/cimpy/cgmes_v3_0/Junction.py new file mode 100644 index 00000000..be16652d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Junction.py @@ -0,0 +1,33 @@ +from .Connector import Connector + + +class Junction(Connector): + """ + A point where one or more conducting equipments are connected with zero resistance. + + """ + + cgmesProfile = Connector.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Connector: \n" + Connector.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Junction\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Length.py b/cimpy_3/cimpy/cgmes_v3_0/Length.py new file mode 100644 index 00000000..13c775f4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Length.py @@ -0,0 +1,56 @@ +from .Base import Base + + +class Length(Base): + """ + Unit of length. It shall be a positive value or zero. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Length\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Limit.py b/cimpy_3/cimpy/cgmes_v3_0/Limit.py new file mode 100644 index 00000000..9a0e41d3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Limit.py @@ -0,0 +1,35 @@ +from .IdentifiedObject import IdentifiedObject + + +class Limit(IdentifiedObject): + """ + Specifies one limit value for a Measurement. A Measurement typically has several limits that are kept together by the LimitSet class. The actual meaning and use of a Limit instance (i.e., if it is an alarm or warning limit or if it is a high or low limit) is not captured in the Limit class. However the name of a Limit instance may indicate both meaning and use. + + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Limit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LimitKind.py b/cimpy_3/cimpy/cgmes_v3_0/LimitKind.py new file mode 100644 index 00000000..47d98ae3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LimitKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class LimitKind(Base): + """ + Limit kinds. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=LimitKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LimitSet.py b/cimpy_3/cimpy/cgmes_v3_0/LimitSet.py new file mode 100644 index 00000000..2f884b6c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LimitSet.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class LimitSet(IdentifiedObject): + """ + Specifies a set of Limits that are associated with a Measurement. A Measurement may have several LimitSets corresponding to seasonal or other changing conditions. The condition is captured in the name and description attributes. The same LimitSet may be used for several Measurements. In particular percentage limits are used this way. + + :isPercentageLimits: Tells if the limit values are in percentage of normalValue or the specified Unit for Measurements and Controls. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "isPercentageLimits": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, isPercentageLimits=False, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.isPercentageLimits = isPercentageLimits + + def __str__(self): + str = "class=LimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/LimitTypeKind.py b/cimpy_3/cimpy/cgmes_v3_0/LimitTypeKind.py similarity index 79% rename from cimpy/cgmes_v2_4_15/LimitTypeKind.py rename to cimpy_3/cimpy/cgmes_v3_0/LimitTypeKind.py index de332e69..8dac8e5a 100644 --- a/cimpy/cgmes_v2_4_15/LimitTypeKind.py +++ b/cimpy_3/cimpy/cgmes_v3_0/LimitTypeKind.py @@ -1,12 +1,13 @@ -from .Base import Base +# removed as per TC57CIM Profile part from standard book +"""from .Base import Base class LimitTypeKind(Base): - ''' + """ """ The enumeration defines the kinds of the limit types. - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.EQ.value, ], @@ -14,15 +15,16 @@ class LimitTypeKind(Base): serializationProfile = {} - + def __init__(self, ): - + pass - + def __str__(self): str = 'class=LimitTypeKind\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/Line.py b/cimpy_3/cimpy/cgmes_v3_0/Line.py new file mode 100644 index 00000000..c184110b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Line.py @@ -0,0 +1,41 @@ +from .EquipmentContainer import EquipmentContainer + + +class Line(EquipmentContainer): + """ + Contains equipment beyond a substation belonging to a power transmission line. + + :Region: The sub-geographical region of the line. Default: None + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Region": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__(self, Region=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Region = Region + + def __str__(self): + str = "class=Line\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LinearShuntCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/LinearShuntCompensator.py new file mode 100644 index 00000000..4fc9da10 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LinearShuntCompensator.py @@ -0,0 +1,64 @@ +from .ShuntCompensator import ShuntCompensator + + +class LinearShuntCompensator(ShuntCompensator): + """ + A linear shunt compensator has banks or sections with equal admittance values. + + :bPerSection: Positive sequence shunt (charging) susceptance per section. Default: 0.0 + :gPerSection: Positive sequence shunt (charging) conductance per section. Default: 0.0 + :b0PerSection: Zero sequence shunt (charging) susceptance per section. Default: 0.0 + :g0PerSection: Zero sequence shunt (charging) conductance per section. Default: 0.0 + """ + + cgmesProfile = ShuntCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "bPerSection": [ + cgmesProfile.EQ.value, + ], + "gPerSection": [ + cgmesProfile.EQ.value, + ], + "b0PerSection": [ + cgmesProfile.SC.value, + ], + "g0PerSection": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ShuntCompensator: \n" + + ShuntCompensator.__doc__ + ) + + def __init__( + self, + bPerSection=0.0, + gPerSection=0.0, + b0PerSection=0.0, + g0PerSection=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bPerSection = bPerSection + self.gPerSection = gPerSection + self.b0PerSection = b0PerSection + self.g0PerSection = g0PerSection + + def __str__(self): + str = "class=LinearShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadAggregate.py b/cimpy_3/cimpy/cgmes_v3_0/LoadAggregate.py new file mode 100644 index 00000000..bb8ef53f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadAggregate.py @@ -0,0 +1,43 @@ +from .LoadDynamics import LoadDynamics + + +class LoadAggregate(LoadDynamics): + """ + Aggregate loads are used to represent all or part of the real and reactive load from one or more loads in the static (power flow) data. This load is usually the aggregation of many individual load devices and the load model is an approximate representation of the aggregate response of the load devices to system disturbances. Standard aggregate load model comprised of static and/or dynamic components. A static load model represents the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. A dynamic load model can be used to represent the aggregate response of the motor components of the load. + + :LoadMotor: Aggregate motor (dynamic) load associated with this aggregate load. Default: None + :LoadStatic: Aggregate static load associated with this aggregate load. Default: None + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadMotor": [ + cgmesProfile.DY.value, + ], + "LoadStatic": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__(self, LoadMotor=None, LoadStatic=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadMotor = LoadMotor + self.LoadStatic = LoadStatic + + def __str__(self): + str = "class=LoadAggregate\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadArea.py b/cimpy_3/cimpy/cgmes_v3_0/LoadArea.py new file mode 100644 index 00000000..c1892ecc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadArea.py @@ -0,0 +1,36 @@ +from .EnergyArea import EnergyArea + + +class LoadArea(EnergyArea): + """ + The class is the root or first level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + :SubLoadAreas: The SubLoadAreas in the LoadArea. Default: "list" + """ + + cgmesProfile = EnergyArea.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SubLoadAreas": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class EnergyArea: \n" + EnergyArea.__doc__ + + def __init__(self, SubLoadAreas="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SubLoadAreas = SubLoadAreas + + def __str__(self): + str = "class=LoadArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadBreakSwitch.py b/cimpy_3/cimpy/cgmes_v3_0/LoadBreakSwitch.py new file mode 100644 index 00000000..ee5b4fee --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadBreakSwitch.py @@ -0,0 +1,35 @@ +from .ProtectedSwitch import ProtectedSwitch + + +class LoadBreakSwitch(ProtectedSwitch): + """ + A mechanical switching device capable of making, carrying, and breaking currents under normal operating conditions. + + """ + + cgmesProfile = ProtectedSwitch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ProtectedSwitch: \n" + ProtectedSwitch.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=LoadBreakSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadComposite.py b/cimpy_3/cimpy/cgmes_v3_0/LoadComposite.py new file mode 100644 index 00000000..c6467f0c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadComposite.py @@ -0,0 +1,103 @@ +from .LoadDynamics import LoadDynamics + + +class LoadComposite(LoadDynamics): + """ + Combined static load and induction motor load effects. The dynamics of the motor are simplified by linearizing the induction machine equations. + + :epvs: Active load-voltage dependence index (static) (Epvs). Typical value = 0,7. Default: 0.0 + :epfs: Active load-frequency dependence index (static) (Epfs). Typical value = 1,5. Default: 0.0 + :eqvs: Reactive load-voltage dependence index (static) (Eqvs). Typical value = 2. Default: 0.0 + :eqfs: Reactive load-frequency dependence index (static) (Eqfs). Typical value = 0. Default: 0.0 + :epvd: Active load-voltage dependence index (dynamic) (Epvd). Typical value = 0,7. Default: 0.0 + :epfd: Active load-frequency dependence index (dynamic) (Epfd). Typical value = 1,5. Default: 0.0 + :eqvd: Reactive load-voltage dependence index (dynamic) (Eqvd). Typical value = 2. Default: 0.0 + :eqfd: Reactive load-frequency dependence index (dynamic) (Eqfd). Typical value = 0. Default: 0.0 + :lfac: Loading factor (Lfac). The ratio of initial P to motor MVA base. Typical value = 0,8. Default: 0.0 + :h: Inertia constant (H) (>= 0). Typical value = 2,5. Default: 0 + :pfrac: Fraction of constant-power load to be represented by this motor model (PFRAC) (>= 0,0 and <= 1,0). Typical value = 0,5. Default: 0.0 + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "epvs": [ + cgmesProfile.DY.value, + ], + "epfs": [ + cgmesProfile.DY.value, + ], + "eqvs": [ + cgmesProfile.DY.value, + ], + "eqfs": [ + cgmesProfile.DY.value, + ], + "epvd": [ + cgmesProfile.DY.value, + ], + "epfd": [ + cgmesProfile.DY.value, + ], + "eqvd": [ + cgmesProfile.DY.value, + ], + "eqfd": [ + cgmesProfile.DY.value, + ], + "lfac": [ + cgmesProfile.DY.value, + ], + "h": [ + cgmesProfile.DY.value, + ], + "pfrac": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, + epvs=0.0, + epfs=0.0, + eqvs=0.0, + eqfs=0.0, + epvd=0.0, + epfd=0.0, + eqvd=0.0, + eqfd=0.0, + lfac=0.0, + h=0, + pfrac=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.epvs = epvs + self.epfs = epfs + self.eqvs = eqvs + self.eqfs = eqfs + self.epvd = epvd + self.epfd = epfd + self.eqvd = eqvd + self.eqfd = eqfd + self.lfac = lfac + self.h = h + self.pfrac = pfrac + + def __str__(self): + str = "class=LoadComposite\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/LoadDynamics.py new file mode 100644 index 00000000..5a680a7c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadDynamics.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class LoadDynamics(IdentifiedObject): + """ + Load whose behaviour is described by reference to a standard model or by definition of a user-defined model. A standard feature of dynamic load behaviour modelling is the ability to associate the same behaviour to multiple energy consumers by means of a single load definition. The load model is always applied to individual bus loads (energy consumers). + + :EnergyConsumer: Energy consumer to which this dynamics load model applies. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "EnergyConsumer": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, EnergyConsumer="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.EnergyConsumer = EnergyConsumer + + def __str__(self): + str = "class=LoadDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadGenericNonLinear.py b/cimpy_3/cimpy/cgmes_v3_0/LoadGenericNonLinear.py new file mode 100644 index 00000000..83e8b000 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadGenericNonLinear.py @@ -0,0 +1,79 @@ +from .LoadDynamics import LoadDynamics + + +class LoadGenericNonLinear(LoadDynamics): + """ + Generic non-linear dynamic (GNLD) load. This model can be used in mid-term and long-term voltage stability simulations (i.e., to study voltage collapse), as it can replace a more detailed representation of aggregate load, including induction motors, thermostatically controlled and static loads. + + :genericNonLinearLoadModelType: Type of generic non-linear load model. Default: None + :tp: Time constant of lag function of active power (TP) (> 0). Default: 0 + :tq: Time constant of lag function of reactive power (TQ) (> 0). Default: 0 + :ls: Steady state voltage index for active power (LS). Default: 0.0 + :lt: Transient voltage index for active power (LT). Default: 0.0 + :bs: Steady state voltage index for reactive power (BS). Default: 0.0 + :bt: Transient voltage index for reactive power (BT). Default: 0.0 + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "genericNonLinearLoadModelType": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "tq": [ + cgmesProfile.DY.value, + ], + "ls": [ + cgmesProfile.DY.value, + ], + "lt": [ + cgmesProfile.DY.value, + ], + "bs": [ + cgmesProfile.DY.value, + ], + "bt": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, + genericNonLinearLoadModelType=None, + tp=0, + tq=0, + ls=0.0, + lt=0.0, + bs=0.0, + bt=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.genericNonLinearLoadModelType = genericNonLinearLoadModelType + self.tp = tp + self.tq = tq + self.ls = ls + self.lt = lt + self.bs = bs + self.bt = bt + + def __str__(self): + str = "class=LoadGenericNonLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadGroup.py b/cimpy_3/cimpy/cgmes_v3_0/LoadGroup.py new file mode 100644 index 00000000..cf624a49 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadGroup.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class LoadGroup(IdentifiedObject): + """ + The class is the third level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + :SubLoadArea: The SubLoadArea where the Loadgroup belongs. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SubLoadArea": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, SubLoadArea=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SubLoadArea = SubLoadArea + + def __str__(self): + str = "class=LoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadMotor.py b/cimpy_3/cimpy/cgmes_v3_0/LoadMotor.py new file mode 100644 index 00000000..e3324644 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadMotor.py @@ -0,0 +1,122 @@ +from .IdentifiedObject import IdentifiedObject + + +class LoadMotor(IdentifiedObject): + """ + Aggregate induction motor load. This model is used to represent a fraction of an ordinary load as "induction motor load". It allows a load that is treated as an ordinary constant power in power flow analysis to be represented by an induction motor in dynamic simulation. This model is intended for representation of aggregations of many motors dispersed through a load represented at a high voltage bus but where there is no information on the characteristics of individual motors. Either a "one-cage" or "two-cage" model of the induction machine can be modelled. Magnetic saturation is not modelled. This model treats a fraction of the constant power part of a load as a motor. During initialisation, the initial power drawn by the motor is set equal to Pfrac times the constant P part of the static load. The remainder of the load is left as a static load. The reactive power demand of the motor is calculated during initialisation as a function of voltage at the load bus. This reactive power demand can be less than or greater than the constant Q component of the load. If the motor's reactive demand is greater than the constant Q component of the load, the model inserts a shunt capacitor at the terminal of the motor to bring its reactive demand down to equal the constant Q reactive load. If an induction motor load model and a static load model are both present for a load, the motor Pfrac is assumed to be subtracted from the power flow constant P load before the static load model is applied. The remainder of the load, if any, is then represented by the static load model. + + :LoadAggregate: Aggregate load to which this aggregate motor (dynamic) load belongs. Default: None + :pfrac: Fraction of constant-power load to be represented by this motor model (Pfrac) (>= 0,0 and <= 1,0). Typical value = 0,3. Default: 0.0 + :lfac: Loading factor (Lfac). The ratio of initial P to motor MVA base. Typical value = 0,8. Default: 0.0 + :ls: Synchronous reactance (Ls). Typical value = 3,2. Default: 0.0 + :lp: Transient reactance (Lp). Typical value = 0,15. Default: 0.0 + :lpp: Subtransient reactance (Lpp). Typical value = 0,15. Default: 0.0 + :ra: Stator resistance (Ra). Typical value = 0. Default: 0.0 + :tpo: Transient rotor time constant (Tpo) (>= 0). Typical value = 1. Default: 0 + :tppo: Subtransient rotor time constant (Tppo) (>= 0). Typical value = 0,02. Default: 0 + :h: Inertia constant (H) (>= 0). Typical value = 0,4. Default: 0 + :d: Damping factor (D). Unit = delta P/delta speed. Typical value = 2. Default: 0.0 + :vt: Voltage threshold for tripping (Vt). Typical value = 0,7. Default: 0.0 + :tv: Voltage trip pickup time (Tv) (>= 0). Typical value = 0,1. Default: 0 + :tbkr: Circuit breaker operating time (Tbkr) (>= 0). Typical value = 0,08. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadAggregate": [ + cgmesProfile.DY.value, + ], + "pfrac": [ + cgmesProfile.DY.value, + ], + "lfac": [ + cgmesProfile.DY.value, + ], + "ls": [ + cgmesProfile.DY.value, + ], + "lp": [ + cgmesProfile.DY.value, + ], + "lpp": [ + cgmesProfile.DY.value, + ], + "ra": [ + cgmesProfile.DY.value, + ], + "tpo": [ + cgmesProfile.DY.value, + ], + "tppo": [ + cgmesProfile.DY.value, + ], + "h": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "vt": [ + cgmesProfile.DY.value, + ], + "tv": [ + cgmesProfile.DY.value, + ], + "tbkr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + LoadAggregate=None, + pfrac=0.0, + lfac=0.0, + ls=0.0, + lp=0.0, + lpp=0.0, + ra=0.0, + tpo=0, + tppo=0, + h=0, + d=0.0, + vt=0.0, + tv=0, + tbkr=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.LoadAggregate = LoadAggregate + self.pfrac = pfrac + self.lfac = lfac + self.ls = ls + self.lp = lp + self.lpp = lpp + self.ra = ra + self.tpo = tpo + self.tppo = tppo + self.h = h + self.d = d + self.vt = vt + self.tv = tv + self.tbkr = tbkr + + def __str__(self): + str = "class=LoadMotor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadResponseCharacteristic.py b/cimpy_3/cimpy/cgmes_v3_0/LoadResponseCharacteristic.py new file mode 100644 index 00000000..bb5b9572 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadResponseCharacteristic.py @@ -0,0 +1,110 @@ +from .IdentifiedObject import IdentifiedObject + + +class LoadResponseCharacteristic(IdentifiedObject): + """ + Models the characteristic response of the load demand due to changes in system conditions such as voltage and frequency. It is not related to demand response. If LoadResponseCharacteristic.exponentModel is True, the exponential voltage or frequency dependent models are specified and used as to calculate active and reactive power components of the load model. The equations to calculate active and reactive power components of the load model are internal to the power flow calculation, hence they use different quantities depending on the use case of the data exchange. The equations for exponential voltage dependent load model injected power are: pInjection= Pnominal* (Voltage/cim:BaseVoltage.nominalVoltage) ** cim:LoadResponseCharacteristic.pVoltageExponent qInjection= Qnominal* (Voltage/cim:BaseVoltage.nominalVoltage) ** cim:LoadResponseCharacteristic.qVoltageExponent Where: 1) * means "multiply" and ** is "raised to power of"; 2) Pnominal and Qnominal represent the active power and reactive power at nominal voltage as any load described by the voltage exponential model shall be given at nominal voltage. This means that EnergyConsumer.p and EnergyConsumer.q are at nominal voltage. 3) After power flow is solved: -pInjection and qInjection correspond to SvPowerflow.p and SvPowerflow.q respectively. - Voltage corresponds to SvVoltage.v at the TopologicalNode where the load is connected. + + :EnergyConsumer: The set of loads that have the response characteristics. Default: "list" + :exponentModel: Indicates the exponential voltage dependency model is to be used. If false, the coefficient model is to be used. The exponential voltage dependency model consist of the attributes: - pVoltageExponent - qVoltageExponent - pFrequencyExponent - qFrequencyExponent. The coefficient model consist of the attributes: - pConstantImpedance - pConstantCurrent - pConstantPower - qConstantImpedance - qConstantCurrent - qConstantPower. The sum of pConstantImpedance, pConstantCurrent and pConstantPower shall equal 1. The sum of qConstantImpedance, qConstantCurrent and qConstantPower shall equal 1. Default: False + :pConstantCurrent: Portion of active power load modelled as constant current. Default: 0.0 + :pConstantImpedance: Portion of active power load modelled as constant impedance. Default: 0.0 + :pConstantPower: Portion of active power load modelled as constant power. Default: 0.0 + :pFrequencyExponent: Exponent of per unit frequency effecting active power. Default: 0.0 + :pVoltageExponent: Exponent of per unit voltage effecting real power. Default: 0.0 + :qConstantCurrent: Portion of reactive power load modelled as constant current. Default: 0.0 + :qConstantImpedance: Portion of reactive power load modelled as constant impedance. Default: 0.0 + :qConstantPower: Portion of reactive power load modelled as constant power. Default: 0.0 + :qFrequencyExponent: Exponent of per unit frequency effecting reactive power. Default: 0.0 + :qVoltageExponent: Exponent of per unit voltage effecting reactive power. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumer": [ + cgmesProfile.EQ.value, + ], + "exponentModel": [ + cgmesProfile.EQ.value, + ], + "pConstantCurrent": [ + cgmesProfile.EQ.value, + ], + "pConstantImpedance": [ + cgmesProfile.EQ.value, + ], + "pConstantPower": [ + cgmesProfile.EQ.value, + ], + "pFrequencyExponent": [ + cgmesProfile.EQ.value, + ], + "pVoltageExponent": [ + cgmesProfile.EQ.value, + ], + "qConstantCurrent": [ + cgmesProfile.EQ.value, + ], + "qConstantImpedance": [ + cgmesProfile.EQ.value, + ], + "qConstantPower": [ + cgmesProfile.EQ.value, + ], + "qFrequencyExponent": [ + cgmesProfile.EQ.value, + ], + "qVoltageExponent": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + EnergyConsumer="list", + exponentModel=False, + pConstantCurrent=0.0, + pConstantImpedance=0.0, + pConstantPower=0.0, + pFrequencyExponent=0.0, + pVoltageExponent=0.0, + qConstantCurrent=0.0, + qConstantImpedance=0.0, + qConstantPower=0.0, + qFrequencyExponent=0.0, + qVoltageExponent=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.EnergyConsumer = EnergyConsumer + self.exponentModel = exponentModel + self.pConstantCurrent = pConstantCurrent + self.pConstantImpedance = pConstantImpedance + self.pConstantPower = pConstantPower + self.pFrequencyExponent = pFrequencyExponent + self.pVoltageExponent = pVoltageExponent + self.qConstantCurrent = qConstantCurrent + self.qConstantImpedance = qConstantImpedance + self.qConstantPower = qConstantPower + self.qFrequencyExponent = qFrequencyExponent + self.qVoltageExponent = qVoltageExponent + + def __str__(self): + str = "class=LoadResponseCharacteristic\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadStatic.py b/cimpy_3/cimpy/cgmes_v3_0/LoadStatic.py new file mode 100644 index 00000000..16e9d391 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadStatic.py @@ -0,0 +1,146 @@ +from .IdentifiedObject import IdentifiedObject + + +class LoadStatic(IdentifiedObject): + """ + General static load. This model represents the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. + + :LoadAggregate: Aggregate load to which this aggregate static load belongs. Default: None + :staticLoadModelType: Type of static load model. Typical value = constantZ. Default: None + :kp1: First term voltage coefficient for active power (Kp1). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp2: Second term voltage coefficient for active power (Kp2). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp3: Third term voltage coefficient for active power (Kp3). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kp4: Frequency coefficient for active power (Kp4) (not = 0 if .staticLoadModelType = zIP2). Used only when .staticLoadModelType = zIP2. Default: 0.0 + :ep1: First term voltage exponent for active power (Ep1). Used only when .staticLoadModelType = exponential. Default: 0.0 + :ep2: Second term voltage exponent for active power (Ep2). Used only when .staticLoadModelType = exponential. Default: 0.0 + :ep3: Third term voltage exponent for active power (Ep3). Used only when .staticLoadModelType = exponential. Default: 0.0 + :kpf: Frequency deviation coefficient for active power (Kpf). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq1: First term voltage coefficient for reactive power (Kq1). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq2: Second term voltage coefficient for reactive power (Kq2). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq3: Third term voltage coefficient for reactive power (Kq3). Not used when .staticLoadModelType = constantZ. Default: 0.0 + :kq4: Frequency coefficient for reactive power (Kq4) (not = 0 when .staticLoadModelType = zIP2). Used only when .staticLoadModelType - zIP2. Default: 0.0 + :eq1: First term voltage exponent for reactive power (Eq1). Used only when .staticLoadModelType = exponential. Default: 0.0 + :eq2: Second term voltage exponent for reactive power (Eq2). Used only when .staticLoadModelType = exponential. Default: 0.0 + :eq3: Third term voltage exponent for reactive power (Eq3). Used only when .staticLoadModelType = exponential. Default: 0.0 + :kqf: Frequency deviation coefficient for reactive power (Kqf). Not used when .staticLoadModelType = constantZ. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "LoadAggregate": [ + cgmesProfile.DY.value, + ], + "staticLoadModelType": [ + cgmesProfile.DY.value, + ], + "kp1": [ + cgmesProfile.DY.value, + ], + "kp2": [ + cgmesProfile.DY.value, + ], + "kp3": [ + cgmesProfile.DY.value, + ], + "kp4": [ + cgmesProfile.DY.value, + ], + "ep1": [ + cgmesProfile.DY.value, + ], + "ep2": [ + cgmesProfile.DY.value, + ], + "ep3": [ + cgmesProfile.DY.value, + ], + "kpf": [ + cgmesProfile.DY.value, + ], + "kq1": [ + cgmesProfile.DY.value, + ], + "kq2": [ + cgmesProfile.DY.value, + ], + "kq3": [ + cgmesProfile.DY.value, + ], + "kq4": [ + cgmesProfile.DY.value, + ], + "eq1": [ + cgmesProfile.DY.value, + ], + "eq2": [ + cgmesProfile.DY.value, + ], + "eq3": [ + cgmesProfile.DY.value, + ], + "kqf": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + LoadAggregate=None, + staticLoadModelType=None, + kp1=0.0, + kp2=0.0, + kp3=0.0, + kp4=0.0, + ep1=0.0, + ep2=0.0, + ep3=0.0, + kpf=0.0, + kq1=0.0, + kq2=0.0, + kq3=0.0, + kq4=0.0, + eq1=0.0, + eq2=0.0, + eq3=0.0, + kqf=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.LoadAggregate = LoadAggregate + self.staticLoadModelType = staticLoadModelType + self.kp1 = kp1 + self.kp2 = kp2 + self.kp3 = kp3 + self.kp4 = kp4 + self.ep1 = ep1 + self.ep2 = ep2 + self.ep3 = ep3 + self.kpf = kpf + self.kq1 = kq1 + self.kq2 = kq2 + self.kq3 = kq3 + self.kq4 = kq4 + self.eq1 = eq1 + self.eq2 = eq2 + self.eq3 = eq3 + self.kqf = kqf + + def __str__(self): + str = "class=LoadStatic\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/LoadUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/LoadUserDefined.py new file mode 100644 index 00000000..e3a45c00 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/LoadUserDefined.py @@ -0,0 +1,45 @@ +from .LoadDynamics import LoadDynamics + + +class LoadUserDefined(LoadDynamics): + """ + Load whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = LoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class LoadDynamics: \n" + LoadDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=LoadUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Location.py b/cimpy_3/cimpy/cgmes_v3_0/Location.py new file mode 100644 index 00000000..e09d6be8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Location.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class Location(IdentifiedObject): + """ + The place, scene, or point of something where someone or something has been, is, and/or will be at a given moment in time. It can be defined with one or more position points (coordinates) in a given coordinate system. + + :CoordinateSystem: Coordinate system used to describe position points of this location. Default: None + :mainAddress: Main address of the location. Default: 0.0 + :PowerSystemResources: All power system resources at this location. Default: None + :PositionPoints: Sequence of position points describing this location, expressed in coordinate system `Location.CoordinateSystem`. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "CoordinateSystem": [ + cgmesProfile.GL.value, + ], + "mainAddress": [ + cgmesProfile.GL.value, + ], + "PowerSystemResources": [ + cgmesProfile.GL.value, + ], + "PositionPoints": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + CoordinateSystem=None, + mainAddress=0.0, + PowerSystemResources=None, + PositionPoints="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.CoordinateSystem = CoordinateSystem + self.mainAddress = mainAddress + self.PowerSystemResources = PowerSystemResources + self.PositionPoints = PositionPoints + + def __str__(self): + str = "class=Location\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Measurement.py b/cimpy_3/cimpy/cgmes_v3_0/Measurement.py new file mode 100644 index 00000000..5b6cb418 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Measurement.py @@ -0,0 +1,74 @@ +from .IdentifiedObject import IdentifiedObject + + +class Measurement(IdentifiedObject): + """ + A Measurement represents any measured, calculated or non-measured non-calculated quantity. Any piece of equipment may contain Measurements, e.g. a substation may have temperature measurements and door open indications, a transformer may have oil temperature and tank pressure measurements, a bay may contain a number of power flow measurements and a Breaker may contain a switch status measurement. The PSR - Measurement association is intended to capture this use of Measurement and is included in the naming hierarchy based on EquipmentContainer. The naming hierarchy typically has Measurements as leaves, e.g. Substation-VoltageLevel-Bay-Switch-Measurement. Some Measurements represent quantities related to a particular sensor location in the network, e.g. a voltage transformer (VT) or potential transformer (PT) at a busbar or a current transformer (CT) at the bar between a breaker and an isolator. The sensing position is not captured in the PSR - Measurement association. Instead it is captured by the Measurement - Terminal association that is used to define the sensing location in the network topology. The location is defined by the connection of the Terminal to ConductingEquipment. If both a Terminal and PSR are associated, and the PSR is of type ConductingEquipment, the associated Terminal should belong to that ConductingEquipment instance. When the sensor location is needed both Measurement-PSR and Measurement-Terminal are used. The Measurement-Terminal association is never used alone. + + :Terminal: One or more measurements may be associated with a terminal in the network. Default: None + :measurementType: Specifies the type of measurement. For example, this specifies if the measurement represents an indoor temperature, outdoor temperature, bus voltage, line flow, etc. When the measurementType is set to `Specialization`, the type of Measurement is defined in more detail by the specialized class which inherits from Measurement. Default: '' + :phases: Indicates to which phases the measurement applies and avoids the need to use `measurementType` to also encode phase information (which would explode the types). The phase information in Measurement, along with `measurementType` and `phases` uniquely defines a Measurement for a device, based on normal network phase. Their meaning will not change when the computed energizing phasing is changed due to jumpers or other reasons. If the attribute is missing three phases (ABC) shall be assumed. Default: None + :unitMultiplier: The unit multiplier of the measured quantity. Default: None + :unitSymbol: The unit of measure of the measured quantity. Default: None + :PowerSystemResource: The power system resource that contains the measurement. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Terminal": [ + cgmesProfile.OP.value, + ], + "measurementType": [ + cgmesProfile.OP.value, + ], + "phases": [ + cgmesProfile.OP.value, + ], + "unitMultiplier": [ + cgmesProfile.OP.value, + ], + "unitSymbol": [ + cgmesProfile.OP.value, + ], + "PowerSystemResource": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Terminal=None, + measurementType="", + phases=None, + unitMultiplier=None, + unitSymbol=None, + PowerSystemResource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.measurementType = measurementType + self.phases = phases + self.unitMultiplier = unitMultiplier + self.unitSymbol = unitSymbol + self.PowerSystemResource = PowerSystemResource + + def __str__(self): + str = "class=Measurement\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MeasurementValue.py b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValue.py new file mode 100644 index 00000000..d9f49c69 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValue.py @@ -0,0 +1,59 @@ +from .IOPoint import IOPoint + + +class MeasurementValue(IOPoint): + """ + The current state for a measurement. A state value is an instance of a measurement from a specific source. Measurements can be associated with many state values, each representing a different source for the measurement. + + :timeStamp: The time when the value was last updated. Default: '' + :sensorAccuracy: The limit, expressed as a percentage of the sensor maximum, that errors will not exceed when the sensor is used under reference conditions. Default: 0.0 + :MeasurementValueQuality: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None + :MeasurementValueSource: A reference to the type of source that updates the MeasurementValue, e.g. SCADA, CCLink, manual, etc. User conventions for the names of sources are contained in the introduction to IEC 61970-301. Default: None + """ + + cgmesProfile = IOPoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "timeStamp": [ + cgmesProfile.OP.value, + ], + "sensorAccuracy": [ + cgmesProfile.OP.value, + ], + "MeasurementValueQuality": [ + cgmesProfile.OP.value, + ], + "MeasurementValueSource": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class IOPoint: \n" + IOPoint.__doc__ + + def __init__( + self, + timeStamp="", + sensorAccuracy=0.0, + MeasurementValueQuality=None, + MeasurementValueSource=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.timeStamp = timeStamp + self.sensorAccuracy = sensorAccuracy + self.MeasurementValueQuality = MeasurementValueQuality + self.MeasurementValueSource = MeasurementValueSource + + def __str__(self): + str = "class=MeasurementValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueQuality.py b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueQuality.py new file mode 100644 index 00000000..e728da0e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueQuality.py @@ -0,0 +1,38 @@ +from .Quality61850 import Quality61850 + + +class MeasurementValueQuality(Quality61850): + """ + Measurement quality flags. Bits 0-10 are defined for substation automation in IEC 61850-7-3. Bits 11-15 are reserved for future expansion by that document. Bits 16-31 are reserved for EMS applications. + + :MeasurementValue: A MeasurementValue has a MeasurementValueQuality associated with it. Default: None + """ + + cgmesProfile = Quality61850.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "MeasurementValue": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class Quality61850: \n" + Quality61850.__doc__ + ) + + def __init__(self, MeasurementValue=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.MeasurementValue = MeasurementValue + + def __str__(self): + str = "class=MeasurementValueQuality\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueSource.py b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueSource.py new file mode 100644 index 00000000..cc2c9757 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MeasurementValueSource.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class MeasurementValueSource(IdentifiedObject): + """ + MeasurementValueSource describes the alternative sources updating a MeasurementValue. User conventions for how to use the MeasurementValueSource attributes are defined in IEC 61970-301. + + :MeasurementValues: The MeasurementValues updated by the source. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "MeasurementValues": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, MeasurementValues="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.MeasurementValues = MeasurementValues + + def __str__(self): + str = "class=MeasurementValueSource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MechLoad1.py b/cimpy_3/cimpy/cgmes_v3_0/MechLoad1.py new file mode 100644 index 00000000..16416918 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MechLoad1.py @@ -0,0 +1,54 @@ +from .MechanicalLoadDynamics import MechanicalLoadDynamics + + +class MechLoad1(MechanicalLoadDynamics): + """ + Mechanical load model type 1. + + :a: Speed squared coefficient (a). Default: 0.0 + :b: Speed coefficient (b). Default: 0.0 + :d: Speed to the exponent coefficient (d). Default: 0.0 + :e: Exponent (e). Default: 0.0 + """ + + cgmesProfile = MechanicalLoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "b": [ + cgmesProfile.DY.value, + ], + "d": [ + cgmesProfile.DY.value, + ], + "e": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MechanicalLoadDynamics: \n" + + MechanicalLoadDynamics.__doc__ + ) + + def __init__(self, a=0.0, b=0.0, d=0.0, e=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.a = a + self.b = b + self.d = d + self.e = e + + def __str__(self): + str = "class=MechLoad1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadDynamics.py new file mode 100644 index 00000000..9eca5524 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadDynamics.py @@ -0,0 +1,50 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class MechanicalLoadDynamics(DynamicsFunctionBlock): + """ + Mechanical load function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :SynchronousMachineDynamics: Synchronous machine model with which this mechanical load model is associated. MechanicalLoadDynamics shall have either an association to SynchronousMachineDynamics or AsynchronousMachineDyanmics. Default: None + :AsynchronousMachineDynamics: Asynchronous machine model with which this mechanical load model is associated. MechanicalLoadDynamics shall have either an association to SynchronousMachineDynamics or to AsynchronousMachineDynamics. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + AsynchronousMachineDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + + def __str__(self): + str = "class=MechanicalLoadDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadUserDefined.py new file mode 100644 index 00000000..b0cede7a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MechanicalLoadUserDefined.py @@ -0,0 +1,46 @@ +from .MechanicalLoadDynamics import MechanicalLoadDynamics + + +class MechanicalLoadUserDefined(MechanicalLoadDynamics): + """ + Mechanical load function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = MechanicalLoadDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MechanicalLoadDynamics: \n" + + MechanicalLoadDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=MechanicalLoadUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Money.py b/cimpy_3/cimpy/cgmes_v3_0/Money.py new file mode 100644 index 00000000..75ee3b2b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Money.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class Money(Base): + """ + Amount of money. + + :unit: Default: None + :multiplier: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + unit=None, + multiplier=None, + value=0.0, + ): + + self.unit = unit + self.multiplier = multiplier + self.value = value + + def __str__(self): + str = "class=Money\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MonthDay.py b/cimpy_3/cimpy/cgmes_v3_0/MonthDay.py new file mode 100644 index 00000000..b13a0119 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MonthDay.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class MonthDay(Base): + """ + MonthDay format as "--mm-dd", which conforms with XSD data type gMonthDay. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=MonthDay\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/MutualCoupling.py b/cimpy_3/cimpy/cgmes_v3_0/MutualCoupling.py new file mode 100644 index 00000000..c01caa3a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/MutualCoupling.py @@ -0,0 +1,98 @@ +from .IdentifiedObject import IdentifiedObject + + +class MutualCoupling(IdentifiedObject): + """ + This class represents the zero sequence line mutual coupling. + + :b0ch: Zero sequence mutual coupling shunt (charging) susceptance, uniformly distributed, of the entire line section. Default: 0.0 + :distance11: Distance to the start of the coupled region from the first line`s terminal having sequence number equal to 1. Default: 0.0 + :distance12: Distance to the end of the coupled region from the first line`s terminal with sequence number equal to 1. Default: 0.0 + :distance21: Distance to the start of coupled region from the second line`s terminal with sequence number equal to 1. Default: 0.0 + :distance22: Distance to the end of coupled region from the second line`s terminal with sequence number equal to 1. Default: 0.0 + :g0ch: Zero sequence mutual coupling shunt (charging) conductance, uniformly distributed, of the entire line section. Default: 0.0 + :r0: Zero sequence branch-to-branch mutual impedance coupling, resistance. Default: 0.0 + :x0: Zero sequence branch-to-branch mutual impedance coupling, reactance. Default: 0.0 + :Second_Terminal: The starting terminal for the calculation of distances along the second branch of the mutual coupling. Default: None + :First_Terminal: The starting terminal for the calculation of distances along the first branch of the mutual coupling. Normally MutualCoupling would only be used for terminals of AC line segments. The first and second terminals of a mutual coupling should point to different AC line segments. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SC.value, + ], + "b0ch": [ + cgmesProfile.SC.value, + ], + "distance11": [ + cgmesProfile.SC.value, + ], + "distance12": [ + cgmesProfile.SC.value, + ], + "distance21": [ + cgmesProfile.SC.value, + ], + "distance22": [ + cgmesProfile.SC.value, + ], + "g0ch": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + "Second_Terminal": [ + cgmesProfile.SC.value, + ], + "First_Terminal": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + b0ch=0.0, + distance11=0.0, + distance12=0.0, + distance21=0.0, + distance22=0.0, + g0ch=0.0, + r0=0.0, + x0=0.0, + Second_Terminal=None, + First_Terminal=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.b0ch = b0ch + self.distance11 = distance11 + self.distance12 = distance12 + self.distance21 = distance21 + self.distance22 = distance22 + self.g0ch = g0ch + self.r0 = r0 + self.x0 = x0 + self.Second_Terminal = Second_Terminal + self.First_Terminal = First_Terminal + + def __str__(self): + str = "class=MutualCoupling\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NonConformLoad.py b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoad.py new file mode 100644 index 00000000..c8126e95 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoad.py @@ -0,0 +1,39 @@ +from .EnergyConsumer import EnergyConsumer + + +class NonConformLoad(EnergyConsumer): + """ + NonConformLoad represents loads that do not follow a daily load change pattern and whose changes are not correlated with the daily load change pattern. + + :LoadGroup: Group of this ConformLoad. Default: None + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "LoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, LoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadGroup = LoadGroup + + def __str__(self): + str = "class=NonConformLoad\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadGroup.py b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadGroup.py new file mode 100644 index 00000000..07671982 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadGroup.py @@ -0,0 +1,43 @@ +from .LoadGroup import LoadGroup + + +class NonConformLoadGroup(LoadGroup): + """ + Loads that do not follow a daily and seasonal load variation pattern. + + :EnergyConsumers: Conform loads assigned to this ConformLoadGroup. Default: "list" + :NonConformLoadSchedules: The NonConformLoadSchedules in the NonConformLoadGroup. Default: "list" + """ + + cgmesProfile = LoadGroup.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EnergyConsumers": [ + cgmesProfile.EQ.value, + ], + "NonConformLoadSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class LoadGroup: \n" + LoadGroup.__doc__ + + def __init__( + self, EnergyConsumers="list", NonConformLoadSchedules="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.EnergyConsumers = EnergyConsumers + self.NonConformLoadSchedules = NonConformLoadSchedules + + def __str__(self): + str = "class=NonConformLoadGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadSchedule.py new file mode 100644 index 00000000..52ebda9b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NonConformLoadSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class NonConformLoadSchedule(SeasonDayTypeSchedule): + """ + An active power (Y1-axis) and reactive power (Y2-axis) schedule (curves) versus time (X-axis) for non-conforming loads, e.g., large industrial load or power station service (where modelled). + + :NonConformLoadGroup: The NonConformLoadGroup where the NonConformLoadSchedule belongs. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "NonConformLoadGroup": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, NonConformLoadGroup=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.NonConformLoadGroup = NonConformLoadGroup + + def __str__(self): + str = "class=NonConformLoadSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensator.py new file mode 100644 index 00000000..1405b459 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensator.py @@ -0,0 +1,40 @@ +from .ShuntCompensator import ShuntCompensator + + +class NonlinearShuntCompensator(ShuntCompensator): + """ + A non linear shunt compensator has bank or section admittance values that differ. The attributes g, b, g0 and b0 of the associated NonlinearShuntCompensatorPoint describe the total conductance and admittance of a NonlinearShuntCompensatorPoint at a section number specified by NonlinearShuntCompensatorPoint.sectionNumber. + + :NonlinearShuntCompensatorPoints: All points of the non-linear shunt compensator. Default: "list" + """ + + cgmesProfile = ShuntCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "NonlinearShuntCompensatorPoints": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ShuntCompensator: \n" + + ShuntCompensator.__doc__ + ) + + def __init__(self, NonlinearShuntCompensatorPoints="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.NonlinearShuntCompensatorPoints = NonlinearShuntCompensatorPoints + + def __str__(self): + str = "class=NonlinearShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensatorPoint.py b/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensatorPoint.py new file mode 100644 index 00000000..06ec569b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NonlinearShuntCompensatorPoint.py @@ -0,0 +1,67 @@ +from .Base import Base + + +class NonlinearShuntCompensatorPoint(Base): + """ + A non linear shunt compensator bank or section admittance value. The number of NonlinearShuntCompenstorPoint instances associated with a NonlinearShuntCompensator shall be equal to ShuntCompensator.maximumSections. ShuntCompensator.sections shall only be set to one of the NonlinearShuntCompenstorPoint.sectionNumber. There is no interpolation between NonlinearShuntCompenstorPoint-s. + + :NonlinearShuntCompensator: Non-linear shunt compensator owning this point. Default: None + :b: Positive sequence shunt (charging) susceptance per section. Default: 0.0 + :g: Positive sequence shunt (charging) conductance per section. Default: 0.0 + :sectionNumber: The number of the section. Default: 0 + :b0: Zero sequence shunt (charging) susceptance per section. Default: 0.0 + :g0: Zero sequence shunt (charging) conductance per section. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "NonlinearShuntCompensator": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "sectionNumber": [ + cgmesProfile.EQ.value, + ], + "b0": [ + cgmesProfile.SC.value, + ], + "g0": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + NonlinearShuntCompensator=None, + b=0.0, + g=0.0, + sectionNumber=0, + b0=0.0, + g0=0.0, + ): + + self.NonlinearShuntCompensator = NonlinearShuntCompensator + self.b = b + self.g = g + self.sectionNumber = sectionNumber + self.b0 = b0 + self.g0 = g0 + + def __str__(self): + str = "class=NonlinearShuntCompensatorPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/NuclearGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/NuclearGeneratingUnit.py new file mode 100644 index 00000000..d8750f3a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/NuclearGeneratingUnit.py @@ -0,0 +1,35 @@ +from .GeneratingUnit import GeneratingUnit + + +class NuclearGeneratingUnit(GeneratingUnit): + """ + A nuclear generating unit. + + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=NuclearGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OperationalLimit.py b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimit.py new file mode 100644 index 00000000..ad16b329 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimit.py @@ -0,0 +1,47 @@ +from .IdentifiedObject import IdentifiedObject + + +class OperationalLimit(IdentifiedObject): + """ + A value and normal value associated with a specific kind of limit. The sub class value and normalValue attributes vary inversely to the associated OperationalLimitType.acceptableDuration (acceptableDuration for short). If a particular piece of equipment has multiple operational limits of the same kind (apparent power, current, etc.), the limit with the greatest acceptableDuration shall have the smallest limit value and the limit with the smallest acceptableDuration shall have the largest limit value. Note: A large current can only be allowed to flow through a piece of equipment for a short duration without causing damage, but a lesser current can be allowed to flow for a longer duration. + + :OperationalLimitSet: The limit set to which the limit values belong. Default: None + :OperationalLimitType: The limit type associated with this limit. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "OperationalLimitSet": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitType": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, OperationalLimitSet=None, OperationalLimitType=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.OperationalLimitSet = OperationalLimitSet + self.OperationalLimitType = OperationalLimitType + + def __str__(self): + str = "class=OperationalLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitDirectionKind.py b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitDirectionKind.py new file mode 100644 index 00000000..d57e55f2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitDirectionKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class OperationalLimitDirectionKind(Base): + """ + The direction attribute describes the side of a limit that is a violation. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=OperationalLimitDirectionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitSet.py b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitSet.py new file mode 100644 index 00000000..fa2825a8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitSet.py @@ -0,0 +1,56 @@ +from .IdentifiedObject import IdentifiedObject + + +class OperationalLimitSet(IdentifiedObject): + """ + A set of limits associated with equipment. Sets of limits might apply to a specific temperature, or season for example. A set of limits may contain different severities of limit levels that would apply to the same equipment. The set may contain limits of different types such as apparent power and current limits or high and low voltage limits that are logically applied together as a set. + + :Terminal: The terminal where the operational limit set apply. Default: None + :Equipment: The equipment to which the limit set applies. Default: None + :OperationalLimitValue: Values of equipment limits. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "Equipment": [ + cgmesProfile.EQ.value, + ], + "OperationalLimitValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Terminal=None, + Equipment=None, + OperationalLimitValue="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.Equipment = Equipment + self.OperationalLimitValue = OperationalLimitValue + + def __str__(self): + str = "class=OperationalLimitSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitType.py b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitType.py new file mode 100644 index 00000000..fd31943b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OperationalLimitType.py @@ -0,0 +1,68 @@ +from .IdentifiedObject import IdentifiedObject + + +class OperationalLimitType(IdentifiedObject): + """ + The operational meaning of a category of limits. + + :OperationalLimit: The operational limits associated with this type of limit. Default: "list" + :acceptableDuration: The nominal acceptable duration of the limit. Limits are commonly expressed in terms of the time limit for which the limit is normally acceptable. The actual acceptable duration of a specific limit may depend on other local factors such as temperature or wind speed. The attribute has meaning only if the flag isInfiniteDuration is set to false, hence it shall not be exchanged when isInfiniteDuration is set to true. Default: 0 + :direction: The direction of the limit. Default: None + :isInfiniteDuration: Defines if the operational limit type has infinite duration. If true, the limit has infinite duration. If false, the limit has definite duration which is defined by the attribute acceptableDuration. Default: False + :kind: Types of limits defined in the ENTSO-E Operational Handbook Policy 3. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "OperationalLimit": [ + cgmesProfile.EQ.value, + ], + "acceptableDuration": [ + cgmesProfile.EQ.value, + ], + "direction": [ + cgmesProfile.EQ.value, + ], + "isInfiniteDuration": [ + cgmesProfile.EQ.value, + ], + "kind": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + OperationalLimit="list", + acceptableDuration=0, + direction=None, + isInfiniteDuration=False, + kind=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.OperationalLimit = OperationalLimit + self.acceptableDuration = acceptableDuration + self.direction = direction + self.isInfiniteDuration = isInfiniteDuration + self.kind = kind + + def __str__(self): + str = "class=OperationalLimitType\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OrientationKind.py b/cimpy_3/cimpy/cgmes_v3_0/OrientationKind.py new file mode 100644 index 00000000..bc0d87bb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OrientationKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class OrientationKind(Base): + """ + The orientation of the coordinate system with respect to top, left, and the coordinate number system. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=OrientationKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcLim2.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcLim2.py new file mode 100644 index 00000000..1d513837 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcLim2.py @@ -0,0 +1,54 @@ +from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics + + +class OverexcLim2(OverexcitationLimiterDynamics): + """ + Different from LimIEEEOEL, LimOEL2 has a fixed pickup threshold and reduces the excitation set-point by means of a non-windup integral regulator. Irated is the rated machine excitation current (calculated from nameplate conditions: Vnom, Pnom, CosPhinom). + + :koi: Gain Over excitation limiter (KOI). Typical value = 0,1. Default: 0.0 + :voimax: Maximum error signal (VOIMAX) (> OverexcLim2.voimin). Typical value = 0. Default: 0.0 + :voimin: Minimum error signal (VOIMIN) (< OverexcLim2.voimax). Typical value = -9999. Default: 0.0 + :ifdlim: Limit value of rated field current (IFDLIM). Typical value = 1,05. Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "koi": [ + cgmesProfile.DY.value, + ], + "voimax": [ + cgmesProfile.DY.value, + ], + "voimin": [ + cgmesProfile.DY.value, + ], + "ifdlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__(self, koi=0.0, voimax=0.0, voimin=0.0, ifdlim=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.koi = koi + self.voimax = voimax + self.voimin = voimin + self.ifdlim = ifdlim + + def __str__(self): + str = "class=OverexcLim2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcLimIEEE.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimIEEE.py new file mode 100644 index 00000000..d78dc64f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimIEEE.py @@ -0,0 +1,74 @@ +from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics + + +class OverexcLimIEEE(OverexcitationLimiterDynamics): + """ + The over excitation limiter model is intended to represent the significant features of OELs necessary for some large-scale system studies. It is the result of a pragmatic approach to obtain a model that can be widely applied with attainable data from generator owners. An attempt to include all variations in the functionality of OELs and duplicate how they interact with the rest of the excitation systems would likely result in a level of application insufficient for the studies for which they are intended. Reference: IEEE OEL 421.5-2005, 9. + + :itfpu: OEL timed field current limiter pickup level (ITFPU). Typical value = 1,05. Default: 0.0 + :ifdmax: OEL instantaneous field current limit (IFDMAX). Typical value = 1,5. Default: 0.0 + :ifdlim: OEL timed field current limit (IFDLIM). Typical value = 1,05. Default: 0.0 + :hyst: OEL pickup/drop-out hysteresis (HYST). Typical value = 0,03. Default: 0.0 + :kcd: OEL cooldown gain (KCD). Typical value = 1. Default: 0.0 + :kramp: OEL ramped limit rate (KRAMP). Unit = PU / s. Typical value = 10. Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "itfpu": [ + cgmesProfile.DY.value, + ], + "ifdmax": [ + cgmesProfile.DY.value, + ], + "ifdlim": [ + cgmesProfile.DY.value, + ], + "hyst": [ + cgmesProfile.DY.value, + ], + "kcd": [ + cgmesProfile.DY.value, + ], + "kramp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + itfpu=0.0, + ifdmax=0.0, + ifdlim=0.0, + hyst=0.0, + kcd=0.0, + kramp=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.itfpu = itfpu + self.ifdmax = ifdmax + self.ifdlim = ifdlim + self.hyst = hyst + self.kcd = kcd + self.kramp = kramp + + def __str__(self): + str = "class=OverexcLimIEEE\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX1.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX1.py new file mode 100644 index 00000000..366f7a4f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX1.py @@ -0,0 +1,98 @@ +from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics + + +class OverexcLimX1(OverexcitationLimiterDynamics): + """ + Field voltage over excitation limiter. + + :efdrated: Rated field voltage (EFDRATED). Typical value = 1,05. Default: 0.0 + :efd1: Low voltage point on the inverse time characteristic (EFD1). Typical value = 1,1. Default: 0.0 + :t1: Time to trip the exciter at the low voltage point on the inverse time characteristic (TIME1) (>= 0). Typical value = 120. Default: 0 + :efd2: Mid voltage point on the inverse time characteristic (EFD2). Typical value = 1,2. Default: 0.0 + :t2: Time to trip the exciter at the mid voltage point on the inverse time characteristic (TIME2) (>= 0). Typical value = 40. Default: 0 + :efd3: High voltage point on the inverse time characteristic (EFD3). Typical value = 1,5. Default: 0.0 + :t3: Time to trip the exciter at the high voltage point on the inverse time characteristic (TIME3) (>= 0). Typical value = 15. Default: 0 + :efddes: Desired field voltage (EFDDES). Typical value = 0,9. Default: 0.0 + :kmx: Gain (KMX). Typical value = 0,01. Default: 0.0 + :vlow: Low voltage limit (VLOW) (> 0). Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "efdrated": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "efd3": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "efddes": [ + cgmesProfile.DY.value, + ], + "kmx": [ + cgmesProfile.DY.value, + ], + "vlow": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + efdrated=0.0, + efd1=0.0, + t1=0, + efd2=0.0, + t2=0, + efd3=0.0, + t3=0, + efddes=0.0, + kmx=0.0, + vlow=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.efdrated = efdrated + self.efd1 = efd1 + self.t1 = t1 + self.efd2 = efd2 + self.t2 = t2 + self.efd3 = efd3 + self.t3 = t3 + self.efddes = efddes + self.kmx = kmx + self.vlow = vlow + + def __str__(self): + str = "class=OverexcLimX1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX2.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX2.py new file mode 100644 index 00000000..1687f4ae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcLimX2.py @@ -0,0 +1,104 @@ +from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics + + +class OverexcLimX2(OverexcitationLimiterDynamics): + """ + Field voltage or current overexcitation limiter designed to protect the generator field of an AC machine with automatic excitation control from overheating due to prolonged overexcitation. + + :m: (m). true = IFD limiting false = EFD limiting. Default: False + :efdrated: Rated field voltage if m = false or rated field current if m = true (EFDRATED). Typical value = 1,05. Default: 0.0 + :efd1: Low voltage or current point on the inverse time characteristic (EFD1). Typical value = 1,1. Default: 0.0 + :t1: Time to trip the exciter at the low voltage or current point on the inverse time characteristic (TIME1) (>= 0). Typical value = 120. Default: 0 + :efd2: Mid voltage or current point on the inverse time characteristic (EFD2). Typical value = 1,2. Default: 0.0 + :t2: Time to trip the exciter at the mid voltage or current point on the inverse time characteristic (TIME2) (>= 0). Typical value = 40. Default: 0 + :efd3: High voltage or current point on the inverse time characteristic (EFD3). Typical value = 1,5. Default: 0.0 + :t3: Time to trip the exciter at the high voltage or current point on the inverse time characteristic (TIME3) (>= 0). Typical value = 15. Default: 0 + :efddes: Desired field voltage if m = false or desired field current if m = true (EFDDES). Typical value = 1. Default: 0.0 + :kmx: Gain (KMX). Typical value = 0,002. Default: 0.0 + :vlow: Low voltage limit (VLOW) (> 0). Default: 0.0 + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "efdrated": [ + cgmesProfile.DY.value, + ], + "efd1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "efd2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "efd3": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "efddes": [ + cgmesProfile.DY.value, + ], + "kmx": [ + cgmesProfile.DY.value, + ], + "vlow": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + m=False, + efdrated=0.0, + efd1=0.0, + t1=0, + efd2=0.0, + t2=0, + efd3=0.0, + t3=0, + efddes=0.0, + kmx=0.0, + vlow=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.efdrated = efdrated + self.efd1 = efd1 + self.t1 = t1 + self.efd2 = efd2 + self.t2 = t2 + self.efd3 = efd3 + self.t3 = t3 + self.efddes = efddes + self.kmx = kmx + self.vlow = vlow + + def __str__(self): + str = "class=OverexcLimX2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterDynamics.py new file mode 100644 index 00000000..07fdfbcb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterDynamics.py @@ -0,0 +1,39 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class OverexcitationLimiterDynamics(DynamicsFunctionBlock): + """ + Overexcitation limiter function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :ExcitationSystemDynamics: Excitation system model with which this overexcitation limiter model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, ExcitationSystemDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=OverexcitationLimiterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterUserDefined.py new file mode 100644 index 00000000..2b3bae79 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/OverexcitationLimiterUserDefined.py @@ -0,0 +1,46 @@ +from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics + + +class OverexcitationLimiterUserDefined(OverexcitationLimiterDynamics): + """ + Overexcitation limiter system function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = OverexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OverexcitationLimiterDynamics: \n" + + OverexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=OverexcitationLimiterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1Dynamics.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1Dynamics.py new file mode 100644 index 00000000..d3a19023 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1Dynamics.py @@ -0,0 +1,56 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PFVArControllerType1Dynamics(DynamicsFunctionBlock): + """ + Power factor or VAr controller type 1 function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :RemoteInputSignal: Remote input signal used by this power factor or VAr controller type 1 model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this power actor or VAr controller type 1 model is associated. Default: None + :VoltageAdjusterDynamics: Voltage adjuster model associated with this power factor or VAr controller type 1 model. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + "VoltageAdjusterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + RemoteInputSignal=None, + ExcitationSystemDynamics=None, + VoltageAdjusterDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + self.VoltageAdjusterDynamics = VoltageAdjusterDynamics + + def __str__(self): + str = "class=PFVArControllerType1Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1UserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1UserDefined.py new file mode 100644 index 00000000..3741bc63 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType1UserDefined.py @@ -0,0 +1,46 @@ +from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics + + +class PFVArControllerType1UserDefined(PFVArControllerType1Dynamics): + """ + Power factor or VAr controller type 1 function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PFVArControllerType1UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2Dynamics.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2Dynamics.py new file mode 100644 index 00000000..85bfba2a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2Dynamics.py @@ -0,0 +1,39 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PFVArControllerType2Dynamics(DynamicsFunctionBlock): + """ + Power factor or VAr controller type 2 function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :ExcitationSystemDynamics: Excitation system model with which this power factor or VAr controller type 2 is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, ExcitationSystemDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=PFVArControllerType2Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2UserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2UserDefined.py new file mode 100644 index 00000000..dbffc216 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArControllerType2UserDefined.py @@ -0,0 +1,46 @@ +from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics + + +class PFVArControllerType2UserDefined(PFVArControllerType2Dynamics): + """ + Power factor or VAr controller type 2 function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PFVArControllerType2UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEPFController.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEPFController.py new file mode 100644 index 00000000..422fdc98 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEPFController.py @@ -0,0 +1,86 @@ +from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics + + +class PFVArType1IEEEPFController(PFVArControllerType1Dynamics): + """ + IEEE PF controller type 1 which operates by moving the voltage reference directly. Reference: IEEE 421.5-2005, 11.2. + + :ovex: Overexcitation Flag (OVEX) true = overexcited false = underexcited. Default: False + :tpfc: PF controller time delay (TPFC) (>= 0). Typical value = 5. Default: 0 + :vitmin: Minimum machine terminal current needed to enable pf/var controller (VITMIN). Default: 0.0 + :vpf: Synchronous machine power factor (VPF). Default: 0.0 + :vpfcbw: PF controller deadband (VPFC_BW). Typical value = 0,05. Default: 0.0 + :vpfref: PF controller reference (VPFREF). Default: 0.0 + :vvtmax: Maximum machine terminal voltage needed for pf/var controller to be enabled (VVTMAX) (> PFVArType1IEEEPFController.vvtmin). Default: 0.0 + :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (VVTMIN) (< PFVArType1IEEEPFController.vvtmax). Default: 0.0 + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ovex": [ + cgmesProfile.DY.value, + ], + "tpfc": [ + cgmesProfile.DY.value, + ], + "vitmin": [ + cgmesProfile.DY.value, + ], + "vpf": [ + cgmesProfile.DY.value, + ], + "vpfcbw": [ + cgmesProfile.DY.value, + ], + "vpfref": [ + cgmesProfile.DY.value, + ], + "vvtmax": [ + cgmesProfile.DY.value, + ], + "vvtmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, + ovex=False, + tpfc=0, + vitmin=0.0, + vpf=0.0, + vpfcbw=0.0, + vpfref=0.0, + vvtmax=0.0, + vvtmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ovex = ovex + self.tpfc = tpfc + self.vitmin = vitmin + self.vpf = vpf + self.vpfcbw = vpfcbw + self.vpfref = vpfref + self.vvtmax = vvtmax + self.vvtmin = vvtmin + + def __str__(self): + str = "class=PFVArType1IEEEPFController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEVArController.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEVArController.py new file mode 100644 index 00000000..31995a7f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArType1IEEEVArController.py @@ -0,0 +1,74 @@ +from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics + + +class PFVArType1IEEEVArController(PFVArControllerType1Dynamics): + """ + IEEE VAR controller type 1 which operates by moving the voltage reference directly. Reference: IEEE 421.5-2005, 11.3. + + :tvarc: Var controller time delay (TVARC) (>= 0). Typical value = 5. Default: 0 + :vvar: Synchronous machine power factor (VVAR). Default: 0.0 + :vvarcbw: Var controller deadband (VVARC_BW). Typical value = 0,02. Default: 0.0 + :vvarref: Var controller reference (VVARREF). Default: 0.0 + :vvtmax: Maximum machine terminal voltage needed for pf/VAr controller to be enabled (VVTMAX) (> PVFArType1IEEEVArController.vvtmin). Default: 0.0 + :vvtmin: Minimum machine terminal voltage needed to enable pf/var controller (VVTMIN) (< PVFArType1IEEEVArController.vvtmax). Default: 0.0 + """ + + cgmesProfile = PFVArControllerType1Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tvarc": [ + cgmesProfile.DY.value, + ], + "vvar": [ + cgmesProfile.DY.value, + ], + "vvarcbw": [ + cgmesProfile.DY.value, + ], + "vvarref": [ + cgmesProfile.DY.value, + ], + "vvtmax": [ + cgmesProfile.DY.value, + ], + "vvtmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType1Dynamics: \n" + + PFVArControllerType1Dynamics.__doc__ + ) + + def __init__( + self, + tvarc=0, + vvar=0.0, + vvarcbw=0.0, + vvarref=0.0, + vvtmax=0.0, + vvtmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tvarc = tvarc + self.vvar = vvar + self.vvarcbw = vvarcbw + self.vvarref = vvarref + self.vvtmax = vvtmax + self.vvtmin = vvtmin + + def __str__(self): + str = "class=PFVArType1IEEEVArController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArType2Common1.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2Common1.py new file mode 100644 index 00000000..1127fb1d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2Common1.py @@ -0,0 +1,59 @@ +from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics + + +class PFVArType2Common1(PFVArControllerType2Dynamics): + """ + Power factor / reactive power regulator. This model represents the power factor or reactive power controller such as the Basler SCP-250. The controller measures power factor or reactive power (PU on generator rated power) and compares it with the operator's set point. [Footnote: Basler SCP-250 is an example of a suitable product available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of this product.] + + :j: Selector (J). true = control mode for reactive power false = control mode for power factor. Default: False + :kp: Proportional gain (Kp). Default: 0.0 + :ki: Reset gain (Ki). Default: 0.0 + :max: Output limit (max). Default: 0.0 + :ref: Reference value of reactive power or power factor (Ref). The reference value is initialised by this model. This initialisation can override the value exchanged by this attribute to represent a plant operator`s change of the reference setting. Default: 0.0 + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "j": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "max": [ + cgmesProfile.DY.value, + ], + "ref": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__(self, j=False, kp=0.0, ki=0.0, max=0.0, ref=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.j = j + self.kp = kp + self.ki = ki + self.max = max + self.ref = ref + + def __str__(self): + str = "class=PFVArType2Common1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEPFController.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEPFController.py new file mode 100644 index 00000000..34ddc546 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEPFController.py @@ -0,0 +1,80 @@ +from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics + + +class PFVArType2IEEEPFController(PFVArControllerType2Dynamics): + """ + IEEE PF controller type 2 which is a summing point type controller making up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller. The voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE 421.5-2005, 11.4. + + :pfref: Power factor reference (PFREF). Default: 0.0 + :vref: Voltage regulator reference (VREF). Default: 0.0 + :vclmt: Maximum output of the pf controller (VCLMT). Typical value = 0,1. Default: 0.0 + :kp: Proportional gain of the pf controller (KP). Typical value = 1. Default: 0.0 + :ki: Integral gain of the pf controller (KI). Typical value = 1. Default: 0.0 + :vs: Generator sensing voltage (VS). Default: 0.0 + :exlon: Overexcitation or under excitation flag (EXLON) true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "pfref": [ + cgmesProfile.DY.value, + ], + "vref": [ + cgmesProfile.DY.value, + ], + "vclmt": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vs": [ + cgmesProfile.DY.value, + ], + "exlon": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, + pfref=0.0, + vref=0.0, + vclmt=0.0, + kp=0.0, + ki=0.0, + vs=0.0, + exlon=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.pfref = pfref + self.vref = vref + self.vclmt = vclmt + self.kp = kp + self.ki = ki + self.vs = vs + self.exlon = exlon + + def __str__(self): + str = "class=PFVArType2IEEEPFController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEVArController.py b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEVArController.py new file mode 100644 index 00000000..9aaae6a1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PFVArType2IEEEVArController.py @@ -0,0 +1,80 @@ +from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics + + +class PFVArType2IEEEVArController(PFVArControllerType2Dynamics): + """ + IEEE VAR controller type 2 which is a summing point type controller. It makes up the outside loop of a two-loop system. This controller is implemented as a slow PI type controller, and the voltage regulator forms the inner loop and is implemented as a fast controller. Reference: IEEE 421.5-2005, 11.5. + + :qref: Reactive power reference (QREF). Default: 0.0 + :vref: Voltage regulator reference (VREF). Default: 0.0 + :vclmt: Maximum output of the pf controller (VCLMT). Default: 0.0 + :kp: Proportional gain of the pf controller (KP). Default: 0.0 + :ki: Integral gain of the pf controller (KI). Default: 0.0 + :vs: Generator sensing voltage (VS). Default: 0.0 + :exlon: Overexcitation or under excitation flag (EXLON) true = 1 (not in the overexcitation or underexcitation state, integral action is active) false = 0 (in the overexcitation or underexcitation state, so integral action is disabled to allow the limiter to play its role). Default: False + """ + + cgmesProfile = PFVArControllerType2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "qref": [ + cgmesProfile.DY.value, + ], + "vref": [ + cgmesProfile.DY.value, + ], + "vclmt": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "vs": [ + cgmesProfile.DY.value, + ], + "exlon": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PFVArControllerType2Dynamics: \n" + + PFVArControllerType2Dynamics.__doc__ + ) + + def __init__( + self, + qref=0.0, + vref=0.0, + vclmt=0.0, + kp=0.0, + ki=0.0, + vs=0.0, + exlon=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.qref = qref + self.vref = vref + self.vclmt = vclmt + self.kp = kp + self.ki = ki + self.vs = vs + self.exlon = exlon + + def __str__(self): + str = "class=PFVArType2IEEEVArController\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PU.py b/cimpy_3/cimpy/cgmes_v3_0/PU.py new file mode 100644 index 00000000..4b3072f2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PU.py @@ -0,0 +1,56 @@ +from .Base import Base + + +class PU(Base): + """ + Per Unit - a positive or negative value referred to a defined base. Values typically range from -10 to +10. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=PU\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PerCent.py b/cimpy_3/cimpy/cgmes_v3_0/PerCent.py new file mode 100644 index 00000000..971c4fb8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PerCent.py @@ -0,0 +1,60 @@ +from .Base import Base + + +class PerCent(Base): + """ + Percentage on a defined base. For example, specify as 100 to indicate at the defined base. + + :value: Normally 0 to 100 on a defined base. Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=PerCent\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py b/cimpy_3/cimpy/cgmes_v3_0/PerLengthDCLineParameter.py similarity index 91% rename from cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py rename to cimpy_3/cimpy/cgmes_v3_0/PerLengthDCLineParameter.py index 38e0ddda..ca1c5116 100644 --- a/cimpy/cgmes_v2_4_15/PerLengthDCLineParameter.py +++ b/cimpy_3/cimpy/cgmes_v3_0/PerLengthDCLineParameter.py @@ -1,15 +1,16 @@ -from .Base import Base +# removed as per TC57CIM Profile part from standard book +"""from .Base import Base class PerLengthDCLineParameter(Base): - ''' - +""" +""" :DCLineSegments: All line segments described by this set of per-length parameters. Default: "list" :capacitance: Capacitance per unit of length of the DC line segment; significant for cables only. Default: 0.0 :inductance: Inductance per unit of length of the DC line segment. Default: 0.0 :resistance: Resistance per length of the DC line segment. Default: 0.0 - ''' + """ """ cgmesProfile = Base.cgmesProfile @@ -22,18 +23,19 @@ class PerLengthDCLineParameter(Base): serializationProfile = {} - + def __init__(self, DCLineSegments = "list", capacitance = 0.0, inductance = 0.0, resistance = 0.0, ): - + self.DCLineSegments = DCLineSegments self.capacitance = capacitance self.inductance = inductance self.resistance = resistance - + def __str__(self): str = 'class=PerLengthDCLineParameter\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/PetersenCoil.py b/cimpy_3/cimpy/cgmes_v3_0/PetersenCoil.py new file mode 100644 index 00000000..2d873465 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PetersenCoil.py @@ -0,0 +1,81 @@ +from .EarthFaultCompensator import EarthFaultCompensator + + +class PetersenCoil(EarthFaultCompensator): + """ + A variable impedance device normally used to offset line charging during single line faults in an ungrounded section of network. + + :mode: The mode of operation of the Petersen coil. Default: None + :nominalU: The nominal voltage for which the coil is designed. Default: 0.0 + :offsetCurrent: The offset current that the Petersen coil controller is operating from the resonant point. This is normally a fixed amount for which the controller is configured and could be positive or negative. Typically 0 to 60 A depending on voltage and resonance conditions. Default: 0.0 + :positionCurrent: The control current used to control the Petersen coil also known as the position current. Typically in the range of 20 mA to 200 mA. Default: 0.0 + :xGroundMax: The maximum reactance. Default: 0.0 + :xGroundMin: The minimum reactance. Default: 0.0 + :xGroundNominal: The nominal reactance. This is the operating point (normally over compensation) that is defined based on the resonance point in the healthy network condition. The impedance is calculated based on nominal voltage divided by position current. Default: 0.0 + """ + + cgmesProfile = EarthFaultCompensator.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "mode": [ + cgmesProfile.SC.value, + ], + "nominalU": [ + cgmesProfile.SC.value, + ], + "offsetCurrent": [ + cgmesProfile.SC.value, + ], + "positionCurrent": [ + cgmesProfile.SC.value, + ], + "xGroundMax": [ + cgmesProfile.SC.value, + ], + "xGroundMin": [ + cgmesProfile.SC.value, + ], + "xGroundNominal": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EarthFaultCompensator: \n" + + EarthFaultCompensator.__doc__ + ) + + def __init__( + self, + mode=None, + nominalU=0.0, + offsetCurrent=0.0, + positionCurrent=0.0, + xGroundMax=0.0, + xGroundMin=0.0, + xGroundNominal=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mode = mode + self.nominalU = nominalU + self.offsetCurrent = offsetCurrent + self.positionCurrent = positionCurrent + self.xGroundMax = xGroundMax + self.xGroundMin = xGroundMin + self.xGroundNominal = xGroundNominal + + def __str__(self): + str = "class=PetersenCoil\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PetersenCoilModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/PetersenCoilModeKind.py new file mode 100644 index 00000000..4e716e3f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PetersenCoilModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class PetersenCoilModeKind(Base): + """ + The mode of operation for a Petersen coil. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=PetersenCoilModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseCode.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseCode.py new file mode 100644 index 00000000..51f07de8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseCode.py @@ -0,0 +1,32 @@ +from .Base import Base + + +class PhaseCode(Base): + """ + An unordered enumeration of phase identifiers. Allows designation of phases for both transmission and distribution equipment, circuits and loads. The enumeration, by itself, does not describe how the phases are connected together or connected to ground. Ground is not explicitly denoted as a phase. Residential and small commercial loads are often served from single-phase, or split-phase, secondary circuits. For the example of s12N, phases 1 and 2 refer to hot wires that are 180 degrees out of phase, while N refers to the neutral wire. Through single-phase transformer connections, these secondary circuits may be served from one or two of the primary phases A, B, and C. For three-phase loads, use the A, B, C phase codes instead of s12N. The integer values are from IEC 61968-9 to support revenue metering applications. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=PhaseCode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChanger.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChanger.py new file mode 100644 index 00000000..41e91a8b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChanger.py @@ -0,0 +1,37 @@ +from .TapChanger import TapChanger + + +class PhaseTapChanger(TapChanger): + """ + A transformer phase shifting tap model that controls the phase angle difference across the power transformer and potentially the active power flow through the power transformer. This phase tap model may also impact the voltage magnitude. + + :TransformerEnd: Transformer end to which this phase tap changer belongs. Default: None + """ + + cgmesProfile = TapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class TapChanger: \n" + TapChanger.__doc__ + + def __init__(self, TransformerEnd=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TransformerEnd = TransformerEnd + + def __str__(self): + str = "class=PhaseTapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerAsymmetrical.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerAsymmetrical.py new file mode 100644 index 00000000..4802ab76 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerAsymmetrical.py @@ -0,0 +1,40 @@ +from .PhaseTapChangerNonLinear import PhaseTapChangerNonLinear + + +class PhaseTapChangerAsymmetrical(PhaseTapChangerNonLinear): + """ + Describes the tap model for an asymmetrical phase shifting transformer in which the difference voltage vector adds to the in-phase winding. The out-of-phase winding is the transformer end where the tap changer is located. The angle between the in-phase and out-of-phase windings is named the winding connection angle. The phase shift depends on both the difference voltage magnitude and the winding connection angle. + + :windingConnectionAngle: The phase angle between the in-phase winding and the out-of -phase winding used for creating phase shift. The out-of-phase winding produces what is known as the difference voltage. Setting this angle to 90 degrees is not the same as a symmetrical transformer. The attribute can only be multiples of 30 degrees. The allowed range is -150 degrees to 150 degrees excluding 0. Default: 0.0 + """ + + cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "windingConnectionAngle": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChangerNonLinear: \n" + + PhaseTapChangerNonLinear.__doc__ + ) + + def __init__(self, windingConnectionAngle=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.windingConnectionAngle = windingConnectionAngle + + def __str__(self): + str = "class=PhaseTapChangerAsymmetrical\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerLinear.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerLinear.py new file mode 100644 index 00000000..b9c63bd3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerLinear.py @@ -0,0 +1,51 @@ +from .PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerLinear(PhaseTapChanger): + """ + Describes a tap changer with a linear relation between the tap step and the phase angle difference across the transformer. This is a mathematical model that is an approximation of a real phase tap changer. The phase angle is computed as stepPhaseShiftIncrement times the tap position. The voltage magnitude of both sides is the same. + + :stepPhaseShiftIncrement: Phase shift per step position. A positive value indicates a positive angle variation from the Terminal at the PowerTransformerEnd, where the TapChanger is located, into the transformer. The actual phase shift increment might be more accurately computed from the symmetrical or asymmetrical models or a tap step table lookup if those are available. Default: 0.0 + :xMax: The reactance depends on the tap position according to a `u` shaped curve. The maximum reactance (xMax) appears at the low and high tap positions. Depending on the `u` curve the attribute can be either higher or lower than PowerTransformerEnd.x. Default: 0.0 + :xMin: The reactance depends on the tap position according to a `u` shaped curve. The minimum reactance (xMin) appears at the mid tap position. PowerTransformerEnd.x shall be consistent with PhaseTapChangerLinear.xMin and PhaseTapChangerNonLinear.xMin. In case of inconsistency, PowerTransformerEnd.x shall be used. Default: 0.0 + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "stepPhaseShiftIncrement": [ + cgmesProfile.EQ.value, + ], + "xMax": [ + cgmesProfile.EQ.value, + ], + "xMin": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__( + self, stepPhaseShiftIncrement=0.0, xMax=0.0, xMin=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.stepPhaseShiftIncrement = stepPhaseShiftIncrement + self.xMax = xMax + self.xMin = xMin + + def __str__(self): + str = "class=PhaseTapChangerLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerNonLinear.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerNonLinear.py new file mode 100644 index 00000000..35a5cc8c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerNonLinear.py @@ -0,0 +1,49 @@ +from .PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerNonLinear(PhaseTapChanger): + """ + The non-linear phase tap changer describes the non-linear behaviour of a phase tap changer. This is a base class for the symmetrical and asymmetrical phase tap changer models. The details of these models can be found in IEC 61970-301. + + :voltageStepIncrement: The voltage step increment on the out of phase winding (the PowerTransformerEnd where the TapChanger is located) specified in percent of rated voltage of the PowerTransformerEnd. A positive value means a positive voltage variation from the Terminal at the PowerTransformerEnd, where the TapChanger is located, into the transformer. When the increment is negative, the voltage decreases when the tap step increases. Default: 0.0 + :xMax: The reactance depends on the tap position according to a `u` shaped curve. The maximum reactance (xMax) appears at the low and high tap positions. Depending on the `u` curve the attribute can be either higher or lower than PowerTransformerEnd.x. Default: 0.0 + :xMin: The reactance depend on the tap position according to a `u` shaped curve. The minimum reactance (xMin) appear at the mid tap position. PowerTransformerEnd.x shall be consistent with PhaseTapChangerLinear.xMin and PhaseTapChangerNonLinear.xMin. In case of inconsistency, PowerTransformerEnd.x shall be used. Default: 0.0 + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "voltageStepIncrement": [ + cgmesProfile.EQ.value, + ], + "xMax": [ + cgmesProfile.EQ.value, + ], + "xMin": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__(self, voltageStepIncrement=0.0, xMax=0.0, xMin=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.voltageStepIncrement = voltageStepIncrement + self.xMax = xMax + self.xMin = xMin + + def __str__(self): + str = "class=PhaseTapChangerNonLinear\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerSymmetrical.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerSymmetrical.py new file mode 100644 index 00000000..fe9349d7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerSymmetrical.py @@ -0,0 +1,36 @@ +from .PhaseTapChangerNonLinear import PhaseTapChangerNonLinear + + +class PhaseTapChangerSymmetrical(PhaseTapChangerNonLinear): + """ + Describes a symmetrical phase shifting transformer tap model in which the voltage magnitude of both sides is the same. The difference voltage magnitude is the base in an equal-sided triangle where the sides corresponds to the primary and secondary voltages. The phase angle difference corresponds to the top angle and can be expressed as twice the arctangent of half the total difference voltage. + + """ + + cgmesProfile = PhaseTapChangerNonLinear.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChangerNonLinear: \n" + + PhaseTapChangerNonLinear.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PhaseTapChangerSymmetrical\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTable.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTable.py new file mode 100644 index 00000000..b94f06e6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTable.py @@ -0,0 +1,50 @@ +from .IdentifiedObject import IdentifiedObject + + +class PhaseTapChangerTable(IdentifiedObject): + """ + Describes a tabular curve for how the phase angle difference and impedance varies with the tap step. + + :PhaseTapChangerTablePoint: The points of this table. Default: "list" + :PhaseTapChangerTabular: The phase tap changers to which this phase tap table applies. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTablePoint": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTabular": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + PhaseTapChangerTablePoint="list", + PhaseTapChangerTabular="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTablePoint = PhaseTapChangerTablePoint + self.PhaseTapChangerTabular = PhaseTapChangerTabular + + def __str__(self): + str = "class=PhaseTapChangerTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTablePoint.py new file mode 100644 index 00000000..08d4d9b4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTablePoint.py @@ -0,0 +1,44 @@ +from .TapChangerTablePoint import TapChangerTablePoint + + +class PhaseTapChangerTablePoint(TapChangerTablePoint): + """ + Describes each tap step in the phase tap changer tabular curve. + + :PhaseTapChangerTable: The table of this point. Default: None + :angle: The angle difference in degrees. A positive value indicates a positive angle variation from the Terminal at the PowerTransformerEnd, where the TapChanger is located, into the transformer. Default: 0.0 + """ + + cgmesProfile = TapChangerTablePoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTable": [ + cgmesProfile.EQ.value, + ], + "angle": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TapChangerTablePoint: \n" + + TapChangerTablePoint.__doc__ + ) + + def __init__(self, PhaseTapChangerTable=None, angle=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTable = PhaseTapChangerTable + self.angle = angle + + def __str__(self): + str = "class=PhaseTapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTabular.py b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTabular.py new file mode 100644 index 00000000..1aa1c637 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhaseTapChangerTabular.py @@ -0,0 +1,39 @@ +from .PhaseTapChanger import PhaseTapChanger + + +class PhaseTapChangerTabular(PhaseTapChanger): + """ + Describes a tap changer with a table defining the relation between the tap step and the phase angle difference across the transformer. + + :PhaseTapChangerTable: The phase tap changer table for this phase tap changer. Default: None + """ + + cgmesProfile = PhaseTapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "PhaseTapChangerTable": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PhaseTapChanger: \n" + PhaseTapChanger.__doc__ + ) + + def __init__(self, PhaseTapChangerTable=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PhaseTapChangerTable = PhaseTapChangerTable + + def __str__(self): + str = "class=PhaseTapChangerTabular\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PhotoVoltaicUnit.py b/cimpy_3/cimpy/cgmes_v3_0/PhotoVoltaicUnit.py new file mode 100644 index 00000000..c37534a5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PhotoVoltaicUnit.py @@ -0,0 +1,35 @@ +from .PowerElectronicsUnit import PowerElectronicsUnit + + +class PhotoVoltaicUnit(PowerElectronicsUnit): + """ + A photovoltaic device or an aggregation of such devices. + + """ + + cgmesProfile = PowerElectronicsUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerElectronicsUnit: \n" + + PowerElectronicsUnit.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PhotoVoltaicUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PositionPoint.py b/cimpy_3/cimpy/cgmes_v3_0/PositionPoint.py new file mode 100644 index 00000000..516fb0f6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PositionPoint.py @@ -0,0 +1,60 @@ +from .Base import Base + + +class PositionPoint(Base): + """ + Set of spatial coordinates that determine a point, defined in the coordinate system specified in 'Location.CoordinateSystem'. Use a single position point instance to describe a point-oriented location. Use a sequence of position points to describe a line-oriented object (physical location of non-point oriented objects like cables or lines), or area of an object (like a substation or a geographical zone - in this case, have first and last position point with the same values). + + :Location: Location described by this position point. Default: None + :sequenceNumber: Zero-relative sequence number of this point within a series of points. Default: 0 + :xPosition: X axis position. Default: '' + :yPosition: Y axis position. Default: '' + :zPosition: (if applicable) Z axis position. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "Location": [ + cgmesProfile.GL.value, + ], + "sequenceNumber": [ + cgmesProfile.GL.value, + ], + "xPosition": [ + cgmesProfile.GL.value, + ], + "yPosition": [ + cgmesProfile.GL.value, + ], + "zPosition": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + Location=None, + sequenceNumber=0, + xPosition="", + yPosition="", + zPosition="", + ): + + self.Location = Location + self.sequenceNumber = sequenceNumber + self.xPosition = xPosition + self.yPosition = yPosition + self.zPosition = zPosition + + def __str__(self): + str = "class=PositionPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PostLineSensor.py b/cimpy_3/cimpy/cgmes_v3_0/PostLineSensor.py new file mode 100644 index 00000000..b0e4138d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PostLineSensor.py @@ -0,0 +1,32 @@ +from .Sensor import Sensor + + +class PostLineSensor(Sensor): + """ + A sensor used mainly in overhead distribution networks as the source of both current and voltage measurements. + + """ + + cgmesProfile = Sensor.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Sensor: \n" + Sensor.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PostLineSensor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PotentialTransformer.py b/cimpy_3/cimpy/cgmes_v3_0/PotentialTransformer.py new file mode 100644 index 00000000..51652011 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PotentialTransformer.py @@ -0,0 +1,32 @@ +from .Sensor import Sensor + + +class PotentialTransformer(Sensor): + """ + Instrument transformer (also known as Voltage Transformer) used to measure electrical qualities of the circuit that is being protected and/or monitored. Typically used as voltage transducer for the purpose of metering, protection, or sometimes auxiliary substation supply. A typical secondary voltage rating would be 120V. + + """ + + cgmesProfile = Sensor.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Sensor: \n" + Sensor.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PotentialTransformer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsConnection.py b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsConnection.py new file mode 100644 index 00000000..65e8b45c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsConnection.py @@ -0,0 +1,88 @@ +from .RegulatingCondEq import RegulatingCondEq + + +class PowerElectronicsConnection(RegulatingCondEq): + """ + A connection to the AC network for energy production or consumption that uses power electronics rather than rotating machines. + + :WindTurbineType3or4Dynamics: The wind turbine type 3 or type 4 dynamics model associated with this power electronics connection. Default: None + :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :maxQ: Maximum reactive power limit. This is the maximum (nameplate) limit for the unit. Default: 0.0 + :minQ: Minimum reactive power limit for the unit. This is the minimum (nameplate) limit for the unit. Default: 0.0 + :ratedS: Nameplate apparent power rating for the unit. The attribute shall have a positive value. Default: 0.0 + :ratedU: Rated voltage (nameplate data, Ur in IEC 60909-0). It is primarily used for short circuit data exchange according to IEC 60909. The attribute shall be a positive value. Default: 0.0 + :PowerElectronicsUnit: An AC network connection may have several power electronics units connecting through it. Default: None + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "ratedS": [ + cgmesProfile.EQ.value, + ], + "ratedU": [ + cgmesProfile.EQ.value, + ], + "PowerElectronicsUnit": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + WindTurbineType3or4Dynamics=None, + p=0.0, + q=0.0, + maxQ=0.0, + minQ=0.0, + ratedS=0.0, + ratedU=0.0, + PowerElectronicsUnit=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + self.p = p + self.q = q + self.maxQ = maxQ + self.minQ = minQ + self.ratedS = ratedS + self.ratedU = ratedU + self.PowerElectronicsUnit = PowerElectronicsUnit + + def __str__(self): + str = "class=PowerElectronicsConnection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsUnit.py b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsUnit.py new file mode 100644 index 00000000..dea86a7b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsUnit.py @@ -0,0 +1,49 @@ +from .Equipment import Equipment + + +class PowerElectronicsUnit(Equipment): + """ + A generating unit or battery or aggregation that connects to the AC network using power electronics rather than rotating machines. + + :PowerElectronicsConnection: A power electronics unit has a connection to the AC network. Default: None + :maxP: Maximum active power limit. This is the maximum (nameplate) limit for the unit. Default: 0.0 + :minP: Minimum active power limit. This is the minimum (nameplate) limit for the unit. Default: 0.0 + """ + + cgmesProfile = Equipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "PowerElectronicsConnection": [ + cgmesProfile.EQ.value, + ], + "maxP": [ + cgmesProfile.EQ.value, + ], + "minP": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Equipment: \n" + Equipment.__doc__ + + def __init__( + self, PowerElectronicsConnection=None, maxP=0.0, minP=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.PowerElectronicsConnection = PowerElectronicsConnection + self.maxP = maxP + self.minP = minP + + def __str__(self): + str = "class=PowerElectronicsUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsWindUnit.py b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsWindUnit.py new file mode 100644 index 00000000..2ac29ae4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerElectronicsWindUnit.py @@ -0,0 +1,35 @@ +from .PowerElectronicsUnit import PowerElectronicsUnit + + +class PowerElectronicsWindUnit(PowerElectronicsUnit): + """ + A wind generating unit that connects to the AC network with power electronics rather than rotating machines or an aggregation of such units. + + """ + + cgmesProfile = PowerElectronicsUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerElectronicsUnit: \n" + + PowerElectronicsUnit.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=PowerElectronicsWindUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerSystemResource.py b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemResource.py new file mode 100644 index 00000000..b8b5e514 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemResource.py @@ -0,0 +1,57 @@ +from .IdentifiedObject import IdentifiedObject + + +class PowerSystemResource(IdentifiedObject): + """ + A power system resource (PSR) can be an item of equipment such as a switch, an equipment container containing many individual items of equipment such as a substation, or an organisational entity such as sub-control area. Power system resources can have measurements associated. + + :Location: Location of this power system resource. Default: None + :Controls: The controller outputs used to actually govern a regulating device, e.g. the magnetization of a synchronous machine or capacitor bank breaker actuator. Default: "list" + :Measurements: The measurements associated with this power system resource. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + ], + "Location": [ + cgmesProfile.GL.value, + ], + "Controls": [ + cgmesProfile.OP.value, + ], + "Measurements": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, Location=None, Controls="list", Measurements="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.Location = Location + self.Controls = Controls + self.Measurements = Measurements + + def __str__(self): + str = "class=PowerSystemResource\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerDynamics.py new file mode 100644 index 00000000..2fadc249 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerDynamics.py @@ -0,0 +1,46 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class PowerSystemStabilizerDynamics(DynamicsFunctionBlock): + """ + Power system stabilizer function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :RemoteInputSignal: Remote input signal used by this power system stabilizer model. Default: "list" + :ExcitationSystemDynamics: Excitation system model with which this power system stabilizer model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal="list", ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=PowerSystemStabilizerDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerUserDefined.py new file mode 100644 index 00000000..1fe2019f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerSystemStabilizerUserDefined.py @@ -0,0 +1,46 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PowerSystemStabilizerUserDefined(PowerSystemStabilizerDynamics): + """ + Power system stabilizer function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=PowerSystemStabilizerUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerTransformer.py b/cimpy_3/cimpy/cgmes_v3_0/PowerTransformer.py new file mode 100644 index 00000000..f9bd689c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerTransformer.py @@ -0,0 +1,85 @@ +from .ConductingEquipment import ConductingEquipment + + +class PowerTransformer(ConductingEquipment): + """ + An electrical device consisting of two or more coupled windings, with or without a magnetic core, for introducing mutual coupling between electric circuits. Transformers can be used to control voltage and phase shift (active power flow). A power transformer may be composed of separate transformer tanks that need not be identical. A power transformer can be modelled with or without tanks and is intended for use in both balanced and unbalanced representations. A power transformer typically has two terminals, but may have one (grounding), three or more terminals. The inherited association ConductingEquipment.BaseVoltage should not be used. The association from TransformerEnd to BaseVoltage should be used instead. + + :PowerTransformerEnd: The ends of this power transformer. Default: "list" + :beforeShCircuitHighestOperatingCurrent: The highest operating current (Ib in IEC 60909-0) before short circuit (depends on network configuration and relevant reliability philosophy). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. Default: 0.0 + :beforeShCircuitHighestOperatingVoltage: The highest operating voltage (Ub in IEC 60909-0) before short circuit. It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is worst case voltage on the low side winding (3.7.1 of IEC 60909:2001). Used to define operating conditions. Default: 0.0 + :beforeShortCircuitAnglePf: The angle of power factor before short circuit (phib in IEC 60909-0). It is used for calculation of the impedance correction factor KT defined in IEC 60909-0. This is the worst case power factor. Used to define operating conditions. Default: 0.0 + :highSideMinOperatingU: The minimum operating voltage (uQmin in IEC 60909-0) at the high voltage side (Q side) of the unit transformer of the power station unit. A value well established from long-term operating experience of the system. It is used for calculation of the impedance correction factor KG defined in IEC 60909-0. Default: 0.0 + :isPartOfGeneratorUnit: Indicates whether the machine is part of a power station unit. Used for short circuit data exchange according to IEC 60909. It has an impact on how the correction factors are calculated for transformers, since the transformer is not necessarily part of a synchronous machine and generating unit. It is not always possible to derive this information from the model. This is why the attribute is necessary. Default: False + :operationalValuesConsidered: It is used to define if the data (other attributes related to short circuit data exchange) defines long term operational conditions or not. Used for short circuit data exchange according to IEC 60909. Default: False + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "PowerTransformerEnd": [ + cgmesProfile.EQ.value, + ], + "beforeShCircuitHighestOperatingCurrent": [ + cgmesProfile.SC.value, + ], + "beforeShCircuitHighestOperatingVoltage": [ + cgmesProfile.SC.value, + ], + "beforeShortCircuitAnglePf": [ + cgmesProfile.SC.value, + ], + "highSideMinOperatingU": [ + cgmesProfile.SC.value, + ], + "isPartOfGeneratorUnit": [ + cgmesProfile.SC.value, + ], + "operationalValuesConsidered": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + PowerTransformerEnd="list", + beforeShCircuitHighestOperatingCurrent=0.0, + beforeShCircuitHighestOperatingVoltage=0.0, + beforeShortCircuitAnglePf=0.0, + highSideMinOperatingU=0.0, + isPartOfGeneratorUnit=False, + operationalValuesConsidered=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PowerTransformerEnd = PowerTransformerEnd + self.beforeShCircuitHighestOperatingCurrent = ( + beforeShCircuitHighestOperatingCurrent + ) + self.beforeShCircuitHighestOperatingVoltage = ( + beforeShCircuitHighestOperatingVoltage + ) + self.beforeShortCircuitAnglePf = beforeShortCircuitAnglePf + self.highSideMinOperatingU = highSideMinOperatingU + self.isPartOfGeneratorUnit = isPartOfGeneratorUnit + self.operationalValuesConsidered = operationalValuesConsidered + + def __str__(self): + str = "class=PowerTransformer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PowerTransformerEnd.py b/cimpy_3/cimpy/cgmes_v3_0/PowerTransformerEnd.py new file mode 100644 index 00000000..1aec6a1b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PowerTransformerEnd.py @@ -0,0 +1,116 @@ +from .TransformerEnd import TransformerEnd + + +class PowerTransformerEnd(TransformerEnd): + """ + A PowerTransformerEnd is associated with each Terminal of a PowerTransformer. The impedance values r, r0, x, and x0 of a PowerTransformerEnd represents a star equivalent as follows. 1) for a two Terminal PowerTransformer the high voltage (TransformerEnd.endNumber=1) PowerTransformerEnd has non zero values on r, r0, x, and x0 while the low voltage (TransformerEnd.endNumber=2) PowerTransformerEnd has zero values for r, r0, x, and x0. Parameters are always provided, even if the PowerTransformerEnds have the same rated voltage. In this case, the parameters are provided at the PowerTransformerEnd which has TransformerEnd.endNumber equal to 1. 2) for a three Terminal PowerTransformer the three PowerTransformerEnds represent a star equivalent with each leg in the star represented by r, r0, x, and x0 values. 3) For a three Terminal transformer each PowerTransformerEnd shall have g, g0, b and b0 values corresponding to the no load losses distributed on the three PowerTransformerEnds. The total no load loss shunt impedances may also be placed at one of the PowerTransformerEnds, preferably the end numbered 1, having the shunt values on end 1. This is the preferred way. 4) for a PowerTransformer with more than three Terminals the PowerTransformerEnd impedance values cannot be used. Instead use the TransformerMeshImpedance or split the transformer into multiple PowerTransformers. Each PowerTransformerEnd must be contained by a PowerTransformer. Because a PowerTransformerEnd (or any other object) can not be contained by more than one parent, a PowerTransformerEnd can not have an association to an EquipmentContainer (Substation, VoltageLevel, etc). + + :PowerTransformer: The power transformer of this power transformer end. Default: None + :b: Magnetizing branch susceptance (B mag). The value can be positive or negative. Default: 0.0 + :connectionKind: Kind of connection. Default: None + :ratedS: Normal apparent power rating. The attribute shall be a positive value. For a two-winding transformer the values for the high and low voltage sides shall be identical. Default: 0.0 + :g: Magnetizing branch conductance. Default: 0.0 + :ratedU: Rated voltage: phase-phase for three-phase windings, and either phase-phase or phase-neutral for single-phase windings. A high voltage side, as given by TransformerEnd.endNumber, shall have a ratedU that is greater than or equal to ratedU for the lower voltage sides. The attribute shall be a positive value. Default: 0.0 + :r: Resistance (star-model) of the transformer end. The attribute shall be equal to or greater than zero for non-equivalent transformers. Default: 0.0 + :x: Positive sequence series reactance (star-model) of the transformer end. Default: 0.0 + :b0: Zero sequence magnetizing branch susceptance. Default: 0.0 + :phaseAngleClock: Terminal voltage phase angle displacement where 360 degrees are represented with clock hours. The valid values are 0 to 11. For example, for the secondary side end of a transformer with vector group code of `Dyn11`, specify the connection kind as wye with neutral and specify the phase angle of the clock as 11. The clock value of the transformer end number specified as 1, is assumed to be zero. Note the transformer end number is not assumed to be the same as the terminal sequence number. Default: 0 + :g0: Zero sequence magnetizing branch conductance (star-model). Default: 0.0 + :r0: Zero sequence series resistance (star-model) of the transformer end. Default: 0.0 + :x0: Zero sequence series reactance of the transformer end. Default: 0.0 + """ + + cgmesProfile = TransformerEnd.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "PowerTransformer": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "connectionKind": [ + cgmesProfile.EQ.value, + ], + "ratedS": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "ratedU": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "b0": [ + cgmesProfile.SC.value, + ], + "phaseAngleClock": [ + cgmesProfile.SC.value, + ], + "g0": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TransformerEnd: \n" + TransformerEnd.__doc__ + ) + + def __init__( + self, + PowerTransformer=None, + b=0.0, + connectionKind=None, + ratedS=0.0, + g=0.0, + ratedU=0.0, + r=0.0, + x=0.0, + b0=0.0, + phaseAngleClock=0, + g0=0.0, + r0=0.0, + x0=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PowerTransformer = PowerTransformer + self.b = b + self.connectionKind = connectionKind + self.ratedS = ratedS + self.g = g + self.ratedU = ratedU + self.r = r + self.x = x + self.b0 = b0 + self.phaseAngleClock = phaseAngleClock + self.g0 = g0 + self.r0 = r0 + self.x0 = x0 + + def __str__(self): + str = "class=PowerTransformerEnd\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ProprietaryParameterDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/ProprietaryParameterDynamics.py new file mode 100644 index 00000000..4612bd99 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ProprietaryParameterDynamics.py @@ -0,0 +1,182 @@ +from .Base import Base + + +class ProprietaryParameterDynamics(Base): + """ + Supports definition of one or more parameters of several different datatypes for use by proprietary user-defined models. This class does not inherit from IdentifiedObject since it is not intended that a single instance of it be referenced by more than one proprietary user-defined model instance. + + :CSCUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :SVCUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :VSCUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :WindPlantUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :WindType1or2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :WindType3or4UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :SynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :AsynchronousMachineUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :TurbineGovernorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :TurbineLoadControllerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :MechanicalLoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :ExcitationSystemUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :OverexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :UnderexcitationLimiterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PowerSystemStabilizerUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :DiscontinuousExcitationControlUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PFVArControllerType1UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :VoltageAdjusterUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :PFVArControllerType2UserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :VoltageCompensatorUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :LoadUserDefined: Proprietary user-defined model with which this parameter is associated. Default: None + :parameterNumber: Sequence number of the parameter among the set of parameters associated with the related proprietary user-defined model. Default: 0 + :booleanParameterValue: Boolean parameter value. If this attribute is populated, integerParameterValue and floatParameterValue will not be. Default: False + :integerParameterValue: Integer parameter value. If this attribute is populated, booleanParameterValue and floatParameterValue will not be. Default: 0 + :floatParameterValue: Floating point parameter value. If this attribute is populated, booleanParameterValue and integerParameterValue will not be. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "CSCUserDefined": [ + cgmesProfile.DY.value, + ], + "SVCUserDefined": [ + cgmesProfile.DY.value, + ], + "VSCUserDefined": [ + cgmesProfile.DY.value, + ], + "WindPlantUserDefined": [ + cgmesProfile.DY.value, + ], + "WindType1or2UserDefined": [ + cgmesProfile.DY.value, + ], + "WindType3or4UserDefined": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineUserDefined": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineUserDefined": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorUserDefined": [ + cgmesProfile.DY.value, + ], + "TurbineLoadControllerUserDefined": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadUserDefined": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemUserDefined": [ + cgmesProfile.DY.value, + ], + "OverexcitationLimiterUserDefined": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterUserDefined": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerUserDefined": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlUserDefined": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1UserDefined": [ + cgmesProfile.DY.value, + ], + "VoltageAdjusterUserDefined": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType2UserDefined": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorUserDefined": [ + cgmesProfile.DY.value, + ], + "LoadUserDefined": [ + cgmesProfile.DY.value, + ], + "parameterNumber": [ + cgmesProfile.DY.value, + ], + "booleanParameterValue": [ + cgmesProfile.DY.value, + ], + "integerParameterValue": [ + cgmesProfile.DY.value, + ], + "floatParameterValue": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + CSCUserDefined=None, + SVCUserDefined=None, + VSCUserDefined=None, + WindPlantUserDefined=None, + WindType1or2UserDefined=None, + WindType3or4UserDefined=None, + SynchronousMachineUserDefined=None, + AsynchronousMachineUserDefined=None, + TurbineGovernorUserDefined=None, + TurbineLoadControllerUserDefined=None, + MechanicalLoadUserDefined=None, + ExcitationSystemUserDefined=None, + OverexcitationLimiterUserDefined=None, + UnderexcitationLimiterUserDefined=None, + PowerSystemStabilizerUserDefined=None, + DiscontinuousExcitationControlUserDefined=None, + PFVArControllerType1UserDefined=None, + VoltageAdjusterUserDefined=None, + PFVArControllerType2UserDefined=None, + VoltageCompensatorUserDefined=None, + LoadUserDefined=None, + parameterNumber=0, + booleanParameterValue=False, + integerParameterValue=0, + floatParameterValue=0.0, + ): + + self.CSCUserDefined = CSCUserDefined + self.SVCUserDefined = SVCUserDefined + self.VSCUserDefined = VSCUserDefined + self.WindPlantUserDefined = WindPlantUserDefined + self.WindType1or2UserDefined = WindType1or2UserDefined + self.WindType3or4UserDefined = WindType3or4UserDefined + self.SynchronousMachineUserDefined = SynchronousMachineUserDefined + self.AsynchronousMachineUserDefined = AsynchronousMachineUserDefined + self.TurbineGovernorUserDefined = TurbineGovernorUserDefined + self.TurbineLoadControllerUserDefined = TurbineLoadControllerUserDefined + self.MechanicalLoadUserDefined = MechanicalLoadUserDefined + self.ExcitationSystemUserDefined = ExcitationSystemUserDefined + self.OverexcitationLimiterUserDefined = OverexcitationLimiterUserDefined + self.UnderexcitationLimiterUserDefined = UnderexcitationLimiterUserDefined + self.PowerSystemStabilizerUserDefined = PowerSystemStabilizerUserDefined + self.DiscontinuousExcitationControlUserDefined = ( + DiscontinuousExcitationControlUserDefined + ) + self.PFVArControllerType1UserDefined = PFVArControllerType1UserDefined + self.VoltageAdjusterUserDefined = VoltageAdjusterUserDefined + self.PFVArControllerType2UserDefined = PFVArControllerType2UserDefined + self.VoltageCompensatorUserDefined = VoltageCompensatorUserDefined + self.LoadUserDefined = LoadUserDefined + self.parameterNumber = parameterNumber + self.booleanParameterValue = booleanParameterValue + self.integerParameterValue = integerParameterValue + self.floatParameterValue = floatParameterValue + + def __str__(self): + str = "class=ProprietaryParameterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ProtectedSwitch.py b/cimpy_3/cimpy/cgmes_v3_0/ProtectedSwitch.py new file mode 100644 index 00000000..4136ab9f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ProtectedSwitch.py @@ -0,0 +1,33 @@ +from .Switch import Switch + + +class ProtectedSwitch(Switch): + """ + A ProtectedSwitch is a switching device that can be operated by ProtectionEquipment. + + """ + + cgmesProfile = Switch.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Switch: \n" + Switch.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=ProtectedSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Pss1.py b/cimpy_3/cimpy/cgmes_v3_0/Pss1.py new file mode 100644 index 00000000..86841cf1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Pss1.py @@ -0,0 +1,128 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class Pss1(PowerSystemStabilizerDynamics): + """ + Italian PSS with three inputs (speed, frequency, power). + + :komega: Shaft speed power input gain (Komega). Typical value = 0. Default: 0.0 + :kf: Frequency power input gain (KF). Typical value = 5. Default: 0.0 + :kpe: Electric power input gain (KPE). Typical value = 0,3. Default: 0.0 + :pmin: Minimum power PSS enabling (Pmin). Typical value = 0,25. Default: 0.0 + :ks: PSS gain (Ks). Typical value = 1. Default: 0.0 + :vsmn: Stabilizer output maximum limit (VSMN). Typical value = -0,06. Default: 0.0 + :vsmx: Stabilizer output minimum limit (VSMX). Typical value = 0,06. Default: 0.0 + :tpe: Electric power filter time constant (TPE) (>= 0). Typical value = 0,05. Default: 0 + :t5: Washout (T5) (>= 0). Typical value = 3,5. Default: 0 + :t6: Filter time constant (T6) (>= 0). Typical value = 0. Default: 0 + :t7: Lead/lag time constant (T7) (>= 0). If = 0, both blocks are bypassed. Typical value = 0. Default: 0 + :t8: Lead/lag time constant (T8) (>= 0). Typical value = 0. Default: 0 + :t9: Lead/lag time constant (T9) (>= 0). If = 0, both blocks are bypassed. Typical value = 0. Default: 0 + :t10: Lead/lag time constant (T10) (>= 0). Typical value = 0. Default: 0 + :vadat: Signal selector (VADAT). true = closed (generator power is greater than Pmin) false = open (Pe is smaller than Pmin). Typical value = true. Default: False + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "komega": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "kpe": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vsmn": [ + cgmesProfile.DY.value, + ], + "vsmx": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "vadat": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + komega=0.0, + kf=0.0, + kpe=0.0, + pmin=0.0, + ks=0.0, + vsmn=0.0, + vsmx=0.0, + tpe=0, + t5=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + vadat=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.komega = komega + self.kf = kf + self.kpe = kpe + self.pmin = pmin + self.ks = ks + self.vsmn = vsmn + self.vsmx = vsmx + self.tpe = tpe + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.vadat = vadat + + def __str__(self): + str = "class=Pss1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Pss1A.py b/cimpy_3/cimpy/cgmes_v3_0/Pss1A.py new file mode 100644 index 00000000..ad7d8b4e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Pss1A.py @@ -0,0 +1,170 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class Pss1A(PowerSystemStabilizerDynamics): + """ + Single input power system stabilizer. It is a modified version in order to allow representation of various vendors' implementations on PSS type 1A. + + :inputSignalType: Type of input signal (rotorAngularFrequencyDeviation, busFrequencyDeviation, generatorElectricalPower, generatorAcceleratingPower, busVoltage, or busVoltageDerivative). Default: None + :a1: Notch filter parameter (A1). Default: 0.0 + :a2: Notch filter parameter (A2). Default: 0.0 + :t1: Lead/lag time constant (T1) (>= 0). Default: 0 + :t2: Lead/lag time constant (T2) (>= 0). Default: 0 + :t3: Lead/lag time constant (T3) (>= 0). Default: 0 + :t4: Lead/lag time constant (T4) (>= 0). Default: 0 + :t5: Washout time constant (T5) (>= 0). Default: 0 + :t6: Transducer time constant (T6) (>= 0). Default: 0 + :ks: Stabilizer gain (Ks). Default: 0.0 + :vrmax: Maximum stabilizer output (Vrmax) (> Pss1A.vrmin). Default: 0.0 + :vrmin: Minimum stabilizer output (Vrmin) (< Pss1A.vrmax). Default: 0.0 + :vcu: Stabilizer input cutoff threshold (Vcu). Default: 0.0 + :vcl: Stabilizer input cutoff threshold (Vcl). Default: 0.0 + :a3: Notch filter parameter (A3). Default: 0.0 + :a4: Notch filter parameter (A4). Default: 0.0 + :a5: Notch filter parameter (A5). Default: 0.0 + :a6: Notch filter parameter (A6). Default: 0.0 + :a7: Notch filter parameter (A7). Default: 0.0 + :a8: Notch filter parameter (A8). Default: 0.0 + :kd: Selector (Kd). true = e-sTdelay used false = e-sTdelay not used. Default: False + :tdelay: Time constant (Tdelay) (>= 0). Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignalType": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "a7": [ + cgmesProfile.DY.value, + ], + "a8": [ + cgmesProfile.DY.value, + ], + "kd": [ + cgmesProfile.DY.value, + ], + "tdelay": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignalType=None, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + ks=0.0, + vrmax=0.0, + vrmin=0.0, + vcu=0.0, + vcl=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + a6=0.0, + a7=0.0, + a8=0.0, + kd=False, + tdelay=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignalType = inputSignalType + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.ks = ks + self.vrmax = vrmax + self.vrmin = vrmin + self.vcu = vcu + self.vcl = vcl + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.a6 = a6 + self.a7 = a7 + self.a8 = a8 + self.kd = kd + self.tdelay = tdelay + + def __str__(self): + str = "class=Pss1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Pss2B.py b/cimpy_3/cimpy/cgmes_v3_0/Pss2B.py new file mode 100644 index 00000000..c53eb873 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Pss2B.py @@ -0,0 +1,212 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class Pss2B(PowerSystemStabilizerDynamics): + """ + Modified IEEE PSS2B. Extra lead/lag (or rate) block added at end (up to 4 lead/lags total). + + :vsi1max: Input signal #1 maximum limit (Vsi1max) (> Pss2B.vsi1min). Typical value = 2. Default: 0.0 + :vsi1min: Input signal #1 minimum limit (Vsi1min) (< Pss2B.vsi1max). Typical value = -2. Default: 0.0 + :tw1: First washout on signal #1 (Tw1) (>= 0). Typical value = 2. Default: 0 + :tw2: Second washout on signal #1 (Tw2) (>= 0). Typical value = 2. Default: 0 + :vsi2max: Input signal #2 maximum limit (Vsi2max) (> Pss2B.vsi2min). Typical value = 2. Default: 0.0 + :vsi2min: Input signal #2 minimum limit (Vsi2min) (< Pss2B.vsi2max). Typical value = -2. Default: 0.0 + :tw3: First washout on signal #2 (Tw3) (>= 0). Typical value = 2. Default: 0 + :tw4: Second washout on signal #2 (Tw4) (>= 0). Typical value = 0. Default: 0 + :t1: Lead/lag time constant (T1) (>= 0). Typical value = 0,12. Default: 0 + :t2: Lead/lag time constant (T2) (>= 0). Typical value = 0,02. Default: 0 + :t3: Lead/lag time constant (T3) (>= 0). Typical value = 0,3. Default: 0 + :t4: Lead/lag time constant (T4) (>= 0). Typical value = 0,02. Default: 0 + :t6: Time constant on signal #1 (T6) (>= 0). Typical value = 0. Default: 0 + :t7: Time constant on signal #2 (T7) (>= 0). Typical value = 2. Default: 0 + :t8: Lead of ramp tracking filter (T8) (>= 0). Typical value = 0,2. Default: 0 + :t9: Lag of ramp tracking filter (T9) (>= 0). Typical value = 0,1. Default: 0 + :t10: Lead/lag time constant (T10) (>= 0). Typical value = 0. Default: 0 + :t11: Lead/lag time constant (T11) (>= 0). Typical value = 0. Default: 0 + :ks1: Stabilizer gain (Ks1). Typical value = 12. Default: 0.0 + :ks2: Gain on signal #2 (Ks2). Typical value = 0,2. Default: 0.0 + :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical value = 1. Default: 0.0 + :ks4: Gain on signal #2 input after ramp-tracking filter (Ks4). Typical value = 1. Default: 0.0 + :n: Order of ramp tracking filter (n). Typical value = 1. Default: 0 + :m: Denominator order of ramp tracking filter (m). Typical value = 5. Default: 0 + :vstmax: Stabilizer output maximum limit (Vstmax) (> Pss2B.vstmin). Typical value = 0,1. Default: 0.0 + :vstmin: Stabilizer output minimum limit (Vstmin) (< Pss2B.vstmax). Typical value = -0,1. Default: 0.0 + :a: Numerator constant (a). Typical value = 1. Default: 0.0 + :ta: Lead constant (Ta) (>= 0). Typical value = 0. Default: 0 + :tb: Lag time constant (Tb) (>= 0). Typical value = 0. Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vsi1max": [ + cgmesProfile.DY.value, + ], + "vsi1min": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "vsi2max": [ + cgmesProfile.DY.value, + ], + "vsi2min": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "tw4": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t11": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ks3": [ + cgmesProfile.DY.value, + ], + "ks4": [ + cgmesProfile.DY.value, + ], + "n": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + "a": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + vsi1max=0.0, + vsi1min=0.0, + tw1=0, + tw2=0, + vsi2max=0.0, + vsi2min=0.0, + tw3=0, + tw4=0, + t1=0, + t2=0, + t3=0, + t4=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + t11=0, + ks1=0.0, + ks2=0.0, + ks3=0.0, + ks4=0.0, + n=0, + m=0, + vstmax=0.0, + vstmin=0.0, + a=0.0, + ta=0, + tb=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vsi1max = vsi1max + self.vsi1min = vsi1min + self.tw1 = tw1 + self.tw2 = tw2 + self.vsi2max = vsi2max + self.vsi2min = vsi2min + self.tw3 = tw3 + self.tw4 = tw4 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.ks1 = ks1 + self.ks2 = ks2 + self.ks3 = ks3 + self.ks4 = ks4 + self.n = n + self.m = m + self.vstmax = vstmax + self.vstmin = vstmin + self.a = a + self.ta = ta + self.tb = tb + + def __str__(self): + str = "class=Pss2B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Pss2ST.py b/cimpy_3/cimpy/cgmes_v3_0/Pss2ST.py new file mode 100644 index 00000000..3b05c344 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Pss2ST.py @@ -0,0 +1,146 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class Pss2ST(PowerSystemStabilizerDynamics): + """ + PTI microprocessor-based stabilizer type 1. + + :inputSignal1Type: Type of input signal #1 (rotorAngularFrequencyDeviation, busFrequencyDeviation, generatorElectricalPower, generatorAcceleratingPower, busVoltage, or busVoltageDerivative - shall be different than Pss2ST.inputSignal2Type). Typical value = rotorAngularFrequencyDeviation. Default: None + :inputSignal2Type: Type of input signal #2 (rotorAngularFrequencyDeviation, busFrequencyDeviation, generatorElectricalPower, generatorAcceleratingPower, busVoltage, or busVoltageDerivative - shall be different than Pss2ST.inputSignal1Type). Typical value = busVoltageDerivative. Default: None + :k1: Gain (K1). Default: 0.0 + :k2: Gain (K2). Default: 0.0 + :t1: Time constant (T1) (>= 0). Default: 0 + :t2: Time constant (T2) (>= 0). Default: 0 + :t3: Time constant (T3) (>= 0). Default: 0 + :t4: Time constant (T4) (>= 0). Default: 0 + :t5: Time constant (T5) (>= 0). Default: 0 + :t6: Time constant (T6) (>= 0). Default: 0 + :t7: Time constant (T7) (>= 0). Default: 0 + :t8: Time constant (T8) (>= 0). Default: 0 + :t9: Time constant (T9) (>= 0). Default: 0 + :t10: Time constant (T10) (>= 0). Default: 0 + :lsmax: Limiter (LSMAX) (> Pss2ST.lsmin). Default: 0.0 + :lsmin: Limiter (LSMIN) (< Pss2ST.lsmax). Default: 0.0 + :vcu: Cutoff limiter (VCU). Default: 0.0 + :vcl: Cutoff limiter (VCL). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "lsmax": [ + cgmesProfile.DY.value, + ], + "lsmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + k1=0.0, + k2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + lsmax=0.0, + lsmin=0.0, + vcu=0.0, + vcl=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.k1 = k1 + self.k2 = k2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.lsmax = lsmax + self.lsmin = lsmin + self.vcu = vcu + self.vcl = vcl + + def __str__(self): + str = "class=Pss2ST\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Pss5.py b/cimpy_3/cimpy/cgmes_v3_0/Pss5.py new file mode 100644 index 00000000..b037f710 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Pss5.py @@ -0,0 +1,140 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class Pss5(PowerSystemStabilizerDynamics): + """ + Detailed Italian PSS. + + :kpe: Electric power input gain (KPE). Typical value = 0,3. Default: 0.0 + :kf: Frequency/shaft speed input gain (KF). Typical value = 5. Default: 0.0 + :isfreq: Selector for frequency/shaft speed input (isFreq). true = speed (same meaning as InputSignaKind.rotorSpeed) false = frequency (same meaning as InputSignalKind.busFrequency). Typical value = true (same meaning as InputSignalKind.rotorSpeed). Default: False + :kpss: PSS gain (KPSS). Typical value = 1. Default: 0.0 + :ctw2: Selector for second washout enabling (CTW2). true = second washout filter is bypassed false = second washout filter in use. Typical value = true. Default: False + :tw1: First washout (TW1) (>= 0). Typical value = 3,5. Default: 0 + :tw2: Second washout (TW2) (>= 0). Typical value = 0. Default: 0 + :tl1: Lead/lag time constant (TL1) (>= 0). Typical value = 0. Default: 0 + :tl2: Lead/lag time constant (TL2) (>= 0). If = 0, both blocks are bypassed. Typical value = 0. Default: 0 + :tl3: Lead/lag time constant (TL3) (>= 0). Typical value = 0. Default: 0 + :tl4: Lead/lag time constant (TL4) (>= 0). If = 0, both blocks are bypassed. Typical value = 0. Default: 0 + :vsmn: Stabilizer output maximum limit (VSMN). Typical value = -0,1. Default: 0.0 + :vsmx: Stabilizer output minimum limit (VSMX). Typical value = 0,1. Default: 0.0 + :tpe: Electric power filter time constant (TPE) (>= 0). Typical value = 0,05. Default: 0 + :pmin: Minimum power PSS enabling (Pmin). Typical value = 0,25. Default: 0.0 + :deadband: Stabilizer output deadband (DEADBAND). Typical value = 0. Default: 0.0 + :vadat: Signal selector (VadAtt). true = closed (generator power is greater than Pmin) false = open (Pe is smaller than Pmin). Typical value = true. Default: False + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpe": [ + cgmesProfile.DY.value, + ], + "kf": [ + cgmesProfile.DY.value, + ], + "isfreq": [ + cgmesProfile.DY.value, + ], + "kpss": [ + cgmesProfile.DY.value, + ], + "ctw2": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "tl3": [ + cgmesProfile.DY.value, + ], + "tl4": [ + cgmesProfile.DY.value, + ], + "vsmn": [ + cgmesProfile.DY.value, + ], + "vsmx": [ + cgmesProfile.DY.value, + ], + "tpe": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "deadband": [ + cgmesProfile.DY.value, + ], + "vadat": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + kpe=0.0, + kf=0.0, + isfreq=False, + kpss=0.0, + ctw2=False, + tw1=0, + tw2=0, + tl1=0, + tl2=0, + tl3=0, + tl4=0, + vsmn=0.0, + vsmx=0.0, + tpe=0, + pmin=0.0, + deadband=0.0, + vadat=False, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kpe = kpe + self.kf = kf + self.isfreq = isfreq + self.kpss = kpss + self.ctw2 = ctw2 + self.tw1 = tw1 + self.tw2 = tw2 + self.tl1 = tl1 + self.tl2 = tl2 + self.tl3 = tl3 + self.tl4 = tl4 + self.vsmn = vsmn + self.vsmx = vsmx + self.tpe = tpe + self.pmin = pmin + self.deadband = deadband + self.vadat = vadat + + def __str__(self): + str = "class=Pss5\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssELIN2.py b/cimpy_3/cimpy/cgmes_v3_0/PssELIN2.py new file mode 100644 index 00000000..52c094bf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssELIN2.py @@ -0,0 +1,104 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssELIN2(PowerSystemStabilizerDynamics): + """ + Power system stabilizer typically associated with ExcELIN2 (though PssIEEE2B or Pss2B can also be used). + + :ts1: Time constant (Ts1) (>= 0). Typical value = 0. Default: 0 + :ts2: Time constant (Ts2) (>= 0). Typical value = 1. Default: 0 + :ts3: Time constant (Ts3) (>= 0). Typical value = 1. Default: 0 + :ts4: Time constant (Ts4) (>= 0). Typical value = 0,1. Default: 0 + :ts5: Time constant (Ts5) (>= 0). Typical value = 0. Default: 0 + :ts6: Time constant (Ts6) (>= 0). Typical value = 1. Default: 0 + :ks1: Gain (Ks1). Typical value = 1. Default: 0.0 + :ks2: Gain (Ks2). Typical value = 0,1. Default: 0.0 + :ppss: Coefficient (p_PSS) (>= 0 and <= 4). Typical value = 0,1. Default: 0.0 + :apss: Coefficient (a_PSS). Typical value = 0,1. Default: 0.0 + :psslim: PSS limiter (psslim). Typical value = 0,1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ts1": [ + cgmesProfile.DY.value, + ], + "ts2": [ + cgmesProfile.DY.value, + ], + "ts3": [ + cgmesProfile.DY.value, + ], + "ts4": [ + cgmesProfile.DY.value, + ], + "ts5": [ + cgmesProfile.DY.value, + ], + "ts6": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ppss": [ + cgmesProfile.DY.value, + ], + "apss": [ + cgmesProfile.DY.value, + ], + "psslim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + ts1=0, + ts2=0, + ts3=0, + ts4=0, + ts5=0, + ts6=0, + ks1=0.0, + ks2=0.0, + ppss=0.0, + apss=0.0, + psslim=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ts1 = ts1 + self.ts2 = ts2 + self.ts3 = ts3 + self.ts4 = ts4 + self.ts5 = ts5 + self.ts6 = ts6 + self.ks1 = ks1 + self.ks2 = ks2 + self.ppss = ppss + self.apss = apss + self.psslim = psslim + + def __str__(self): + str = "class=PssELIN2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssIEEE1A.py b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE1A.py new file mode 100644 index 00000000..638c3b44 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE1A.py @@ -0,0 +1,110 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssIEEE1A(PowerSystemStabilizerDynamics): + """ + IEEE 421.5-2005 type PSS1A power system stabilizer model. PSS1A is the generalized form of a PSS with a single input signal. Reference: IEEE 1A 421.5-2005, 8.1. + + :inputSignalType: Type of input signal (rotorAngularFrequencyDeviation, generatorElectricalPower, or busFrequencyDeviation). Typical value = rotorAngularFrequencyDeviation. Default: None + :a1: PSS signal conditioning frequency filter constant (A1). Typical value = 0,061. Default: 0.0 + :a2: PSS signal conditioning frequency filter constant (A2). Typical value = 0,0017. Default: 0.0 + :t1: Lead/lag time constant (T1) (>= 0). Typical value = 0,3. Default: 0 + :t2: Lead/lag time constant (T2) (>= 0). Typical value = 0,03. Default: 0 + :t3: Lead/lag time constant (T3) (>= 0). Typical value = 0,3. Default: 0 + :t4: Lead/lag time constant (T4) (>= 0). Typical value = 0,03. Default: 0 + :t5: Washout time constant (T5) (>= 0). Typical value = 10. Default: 0 + :t6: Transducer time constant (T6) (>= 0). Typical value = 0,01. Default: 0 + :ks: Stabilizer gain (Ks). Typical value = 5. Default: 0.0 + :vrmax: Maximum stabilizer output (Vrmax) (> PssIEEE1A.vrmin). Typical value = 0,05. Default: 0.0 + :vrmin: Minimum stabilizer output (Vrmin) (< PssIEEE1A.vrmax). Typical value = -0,05. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignalType": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "vrmax": [ + cgmesProfile.DY.value, + ], + "vrmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignalType=None, + a1=0.0, + a2=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + ks=0.0, + vrmax=0.0, + vrmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignalType = inputSignalType + self.a1 = a1 + self.a2 = a2 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.ks = ks + self.vrmax = vrmax + self.vrmin = vrmin + + def __str__(self): + str = "class=PssIEEE1A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssIEEE2B.py b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE2B.py new file mode 100644 index 00000000..099d4dc2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE2B.py @@ -0,0 +1,200 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssIEEE2B(PowerSystemStabilizerDynamics): + """ + IEEE 421.5-2005 type PSS2B power system stabilizer model. This stabilizer model is designed to represent a variety of dual-input stabilizers, which normally use combinations of power and speed or frequency to derive the stabilizing signal. Reference: IEEE 2B 421.5-2005, 8.2. + + :inputSignal1Type: Type of input signal #1 (rotorAngularFrequencyDeviation, busFrequencyDeviation). Typical value = rotorAngularFrequencyDeviation. Default: None + :inputSignal2Type: Type of input signal #2 (generatorElectricalPower). Typical value = generatorElectricalPower. Default: None + :vsi1max: Input signal #1 maximum limit (Vsi1max) (> PssIEEE2B.vsi1min). Typical value = 2. Default: 0.0 + :vsi1min: Input signal #1 minimum limit (Vsi1min) (< PssIEEE2B.vsi1max). Typical value = -2. Default: 0.0 + :tw1: First washout on signal #1 (Tw1) (>= 0). Typical value = 2. Default: 0 + :tw2: Second washout on signal #1 (Tw2) (>= 0). Typical value = 2. Default: 0 + :vsi2max: Input signal #2 maximum limit (Vsi2max) (> PssIEEE2B.vsi2min). Typical value = 2. Default: 0.0 + :vsi2min: Input signal #2 minimum limit (Vsi2min) (< PssIEEE2B.vsi2max). Typical value = -2. Default: 0.0 + :tw3: First washout on signal #2 (Tw3) (>= 0). Typical value = 2. Default: 0 + :tw4: Second washout on signal #2 (Tw4) (>= 0). Typical value = 0. Default: 0 + :t1: Lead/lag time constant (T1) (>= 0). Typical value = 0,12. Default: 0 + :t2: Lead/lag time constant (T2) (>= 0). Typical value = 0,02. Default: 0 + :t3: Lead/lag time constant (T3) (>= 0). Typical value = 0,3. Default: 0 + :t4: Lead/lag time constant (T4) (>= 0). Typical value = 0,02. Default: 0 + :t6: Time constant on signal #1 (T6) (>= 0). Typical value = 0. Default: 0 + :t7: Time constant on signal #2 (T7) (>= 0). Typical value = 2. Default: 0 + :t8: Lead of ramp tracking filter (T8) (>= 0). Typical value = 0,2. Default: 0 + :t9: Lag of ramp tracking filter (T9) (>= 0). Typical value = 0,1. Default: 0 + :t10: Lead/lag time constant (T10) (>= 0). Typical value = 0. Default: 0 + :t11: Lead/lag time constant (T11) (>= 0). Typical value = 0. Default: 0 + :ks1: Stabilizer gain (Ks1). Typical value = 12. Default: 0.0 + :ks2: Gain on signal #2 (Ks2). Typical value = 0,2. Default: 0.0 + :ks3: Gain on signal #2 input before ramp-tracking filter (Ks3). Typical value = 1. Default: 0.0 + :n: Order of ramp tracking filter (N). Typical value = 1. Default: 0 + :m: Denominator order of ramp tracking filter (M). Typical value = 5. Default: 0 + :vstmax: Stabilizer output maximum limit (Vstmax) (> PssIEEE2B.vstmin). Typical value = 0,1. Default: 0.0 + :vstmin: Stabilizer output minimum limit (Vstmin) (< PssIEEE2B.vstmax). Typical value = -0,1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "vsi1max": [ + cgmesProfile.DY.value, + ], + "vsi1min": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "vsi2max": [ + cgmesProfile.DY.value, + ], + "vsi2min": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "tw4": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t11": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "ks3": [ + cgmesProfile.DY.value, + ], + "n": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + vsi1max=0.0, + vsi1min=0.0, + tw1=0, + tw2=0, + vsi2max=0.0, + vsi2min=0.0, + tw3=0, + tw4=0, + t1=0, + t2=0, + t3=0, + t4=0, + t6=0, + t7=0, + t8=0, + t9=0, + t10=0, + t11=0, + ks1=0.0, + ks2=0.0, + ks3=0.0, + n=0, + m=0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.vsi1max = vsi1max + self.vsi1min = vsi1min + self.tw1 = tw1 + self.tw2 = tw2 + self.vsi2max = vsi2max + self.vsi2min = vsi2min + self.tw3 = tw3 + self.tw4 = tw4 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t9 = t9 + self.t10 = t10 + self.t11 = t11 + self.ks1 = ks1 + self.ks2 = ks2 + self.ks3 = ks3 + self.n = n + self.m = m + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE2B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssIEEE3B.py b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE3B.py new file mode 100644 index 00000000..fd4d05df --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE3B.py @@ -0,0 +1,140 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssIEEE3B(PowerSystemStabilizerDynamics): + """ + IEEE 421.5-2005 type PSS3B power system stabilizer model. The PSS model PSS3B has dual inputs of electrical power and rotor angular frequency deviation. The signals are used to derive an equivalent mechanical power signal. This model has 2 input signals. They have the following fixed types (expressed in terms of InputSignalKind values): the first one is of rotorAngleFrequencyDeviation type and the second one is of generatorElectricalPower type. Reference: IEEE 3B 421.5-2005, 8.3. + + :t1: Transducer time constant (T1) (>= 0). Typical value = 0,012. Default: 0 + :t2: Transducer time constant (T2) (>= 0). Typical value = 0,012. Default: 0 + :tw1: Washout time constant (Tw1) (>= 0). Typical value = 0,3. Default: 0 + :tw2: Washout time constant (Tw2) (>= 0). Typical value = 0,3. Default: 0 + :tw3: Washout time constant (Tw3) (>= 0). Typical value = 0,6. Default: 0 + :ks1: Gain on signal # 1 (Ks1). Typical value = -0,602. Default: 0.0 + :ks2: Gain on signal # 2 (Ks2). Typical value = 30,12. Default: 0.0 + :a1: Notch filter parameter (A1). Typical value = 0,359. Default: 0.0 + :a2: Notch filter parameter (A2). Typical value = 0,586. Default: 0.0 + :a3: Notch filter parameter (A3). Typical value = 0,429. Default: 0.0 + :a4: Notch filter parameter (A4). Typical value = 0,564. Default: 0.0 + :a5: Notch filter parameter (A5). Typical value = 0,001. Default: 0.0 + :a6: Notch filter parameter (A6). Typical value = 0. Default: 0.0 + :a7: Notch filter parameter (A7). Typical value = 0,031. Default: 0.0 + :a8: Notch filter parameter (A8). Typical value = 0. Default: 0.0 + :vstmax: Stabilizer output maximum limit (Vstmax) (> PssIEEE3B.vstmin). Typical value = 0,1. Default: 0.0 + :vstmin: Stabilizer output minimum limit (Vstmin) (< PssIEEE3B.vstmax). Typical value = -0,1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "tw1": [ + cgmesProfile.DY.value, + ], + "tw2": [ + cgmesProfile.DY.value, + ], + "tw3": [ + cgmesProfile.DY.value, + ], + "ks1": [ + cgmesProfile.DY.value, + ], + "ks2": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "a6": [ + cgmesProfile.DY.value, + ], + "a7": [ + cgmesProfile.DY.value, + ], + "a8": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + t1=0, + t2=0, + tw1=0, + tw2=0, + tw3=0, + ks1=0.0, + ks2=0.0, + a1=0.0, + a2=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + a6=0.0, + a7=0.0, + a8=0.0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.t1 = t1 + self.t2 = t2 + self.tw1 = tw1 + self.tw2 = tw2 + self.tw3 = tw3 + self.ks1 = ks1 + self.ks2 = ks2 + self.a1 = a1 + self.a2 = a2 + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.a6 = a6 + self.a7 = a7 + self.a8 = a8 + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE3B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssIEEE4B.py b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE4B.py new file mode 100644 index 00000000..b7121454 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssIEEE4B.py @@ -0,0 +1,440 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssIEEE4B(PowerSystemStabilizerDynamics): + """ + IEEE 421.5-2005 type PSS4B power system stabilizer. The PSS4B model represents a structure based on multiple working frequency bands. Three separate bands, respectively dedicated to the low-, intermediate- and high-frequency modes of oscillations, are used in this delta omega (speed input) PSS. There is an error in the in IEEE 421.5-2005 PSS4B model: the Pe input should read -Pe. This implies that the input Pe needs to be multiplied by -1. Reference: IEEE 4B 421.5-2005, 8.4. Parameter details: This model has 2 input signals. They have the following fixed types (expressed in terms of InputSignalKind values): the first one is of rotorAngleFrequencyDeviation type and the second one is of generatorElectricalPower type. + + :bwh1: Notch filter 1 (high-frequency band): three dB bandwidth (Bwi). Default: 0.0 + :bwh2: Notch filter 2 (high-frequency band): three dB bandwidth (Bwi). Default: 0.0 + :bwl1: Notch filter 1 (low-frequency band): three dB bandwidth (Bwi). Default: 0.0 + :bwl2: Notch filter 2 (low-frequency band): three dB bandwidth (Bwi). Default: 0.0 + :kh: High band gain (KH). Typical value = 120. Default: 0.0 + :kh1: High band differential filter gain (KH1). Typical value = 66. Default: 0.0 + :kh11: High band first lead-lag blocks coefficient (KH11). Typical value = 1. Default: 0.0 + :kh17: High band first lead-lag blocks coefficient (KH17). Typical value = 1. Default: 0.0 + :kh2: High band differential filter gain (KH2). Typical value = 66. Default: 0.0 + :ki: Intermediate band gain (KI). Typical value = 30. Default: 0.0 + :ki1: Intermediate band differential filter gain (KI1). Typical value = 66. Default: 0.0 + :ki11: Intermediate band first lead-lag blocks coefficient (KI11). Typical value = 1. Default: 0.0 + :ki17: Intermediate band first lead-lag blocks coefficient (KI17). Typical value = 1. Default: 0.0 + :ki2: Intermediate band differential filter gain (KI2). Typical value = 66. Default: 0.0 + :kl: Low band gain (KL). Typical value = 7.5. Default: 0.0 + :kl1: Low band differential filter gain (KL1). Typical value = 66. Default: 0.0 + :kl11: Low band first lead-lag blocks coefficient (KL11). Typical value = 1. Default: 0.0 + :kl17: Low band first lead-lag blocks coefficient (KL17). Typical value = 1. Default: 0.0 + :kl2: Low band differential filter gain (KL2). Typical value = 66. Default: 0.0 + :omeganh1: Notch filter 1 (high-frequency band): filter frequency (omegani). Default: 0.0 + :omeganh2: Notch filter 2 (high-frequency band): filter frequency (omegani). Default: 0.0 + :omeganl1: Notch filter 1 (low-frequency band): filter frequency (omegani). Default: 0.0 + :omeganl2: Notch filter 2 (low-frequency band): filter frequency (omegani). Default: 0.0 + :th1: High band time constant (TH1) (>= 0). Typical value = 0,01513. Default: 0 + :th10: High band time constant (TH10) (>= 0). Typical value = 0. Default: 0 + :th11: High band time constant (TH11) (>= 0). Typical value = 0. Default: 0 + :th12: High band time constant (TH12) (>= 0). Typical value = 0. Default: 0 + :th2: High band time constant (TH2) (>= 0). Typical value = 0,01816. Default: 0 + :th3: High band time constant (TH3) (>= 0). Typical value = 0. Default: 0 + :th4: High band time constant (TH4) (>= 0). Typical value = 0. Default: 0 + :th5: High band time constant (TH5) (>= 0). Typical value = 0. Default: 0 + :th6: High band time constant (TH6) (>= 0). Typical value = 0. Default: 0 + :th7: High band time constant (TH7) (>= 0). Typical value = 0,01816. Default: 0 + :th8: High band time constant (TH8) (>= 0). Typical value = 0,02179. Default: 0 + :th9: High band time constant (TH9) (>= 0). Typical value = 0. Default: 0 + :ti1: Intermediate band time constant (TI1) (>= 0). Typical value = 0,173. Default: 0 + :ti10: Intermediate band time constant (TI10) (>= 0). Typical value = 0. Default: 0 + :ti11: Intermediate band time constant (TI11) (>= 0). Typical value = 0. Default: 0 + :ti12: Intermediate band time constant (TI12) (>= 0). Typical value = 0. Default: 0 + :ti2: Intermediate band time constant (TI2) (>= 0). Typical value = 0,2075. Default: 0 + :ti3: Intermediate band time constant (TI3) (>= 0). Typical value = 0. Default: 0 + :ti4: Intermediate band time constant (TI4) (>= 0). Typical value = 0. Default: 0 + :ti5: Intermediate band time constant (TI5) (>= 0). Typical value = 0. Default: 0 + :ti6: Intermediate band time constant (TI6) (>= 0). Typical value = 0. Default: 0 + :ti7: Intermediate band time constant (TI7) (>= 0). Typical value = 0,2075. Default: 0 + :ti8: Intermediate band time constant (TI8) (>= 0). Typical value = 0,2491. Default: 0 + :ti9: Intermediate band time constant (TI9) (>= 0). Typical value = 0. Default: 0 + :tl1: Low band time constant (TL1) (>= 0). Typical value = 1,73. Default: 0 + :tl10: Low band time constant (TL10) (>= 0). Typical value = 0. Default: 0 + :tl11: Low band time constant (TL11) (>= 0). Typical value = 0. Default: 0 + :tl12: Low band time constant (TL12) (>= 0). Typical value = 0. Default: 0 + :tl2: Low band time constant (TL2) (>= 0). Typical value = 2,075. Default: 0 + :tl3: Low band time constant (TL3) (>= 0). Typical value = 0. Default: 0 + :tl4: Low band time constant (TL4) (>= 0). Typical value = 0. Default: 0 + :tl5: Low band time constant (TL5) (>= 0). Typical value = 0. Default: 0 + :tl6: Low band time constant (TL6) (>= 0). Typical value = 0. Default: 0 + :tl7: Low band time constant (TL7) (>= 0). Typical value = 2,075. Default: 0 + :tl8: Low band time constant (TL8) (>= 0). Typical value = 2,491. Default: 0 + :tl9: Low band time constant (TL9) (>= 0). Typical value = 0. Default: 0 + :vhmax: High band output maximum limit (VHmax) (> PssIEEE4B.vhmin). Typical value = 0,6. Default: 0.0 + :vhmin: High band output minimum limit (VHmin) (< PssIEEE4V.vhmax). Typical value = -0,6. Default: 0.0 + :vimax: Intermediate band output maximum limit (VImax) (> PssIEEE4B.vimin). Typical value = 0,6. Default: 0.0 + :vimin: Intermediate band output minimum limit (VImin) (< PssIEEE4B.vimax). Typical value = -0,6. Default: 0.0 + :vlmax: Low band output maximum limit (VLmax) (> PssIEEE4B.vlmin). Typical value = 0,075. Default: 0.0 + :vlmin: Low band output minimum limit (VLmin) (< PssIEEE4B.vlmax). Typical value = -0,075. Default: 0.0 + :vstmax: PSS output maximum limit (VSTmax) (> PssIEEE4B.vstmin). Typical value = 0,15. Default: 0.0 + :vstmin: PSS output minimum limit (VSTmin) (< PssIEEE4B.vstmax). Typical value = -0,15. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "bwh1": [ + cgmesProfile.DY.value, + ], + "bwh2": [ + cgmesProfile.DY.value, + ], + "bwl1": [ + cgmesProfile.DY.value, + ], + "bwl2": [ + cgmesProfile.DY.value, + ], + "kh": [ + cgmesProfile.DY.value, + ], + "kh1": [ + cgmesProfile.DY.value, + ], + "kh11": [ + cgmesProfile.DY.value, + ], + "kh17": [ + cgmesProfile.DY.value, + ], + "kh2": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "ki1": [ + cgmesProfile.DY.value, + ], + "ki11": [ + cgmesProfile.DY.value, + ], + "ki17": [ + cgmesProfile.DY.value, + ], + "ki2": [ + cgmesProfile.DY.value, + ], + "kl": [ + cgmesProfile.DY.value, + ], + "kl1": [ + cgmesProfile.DY.value, + ], + "kl11": [ + cgmesProfile.DY.value, + ], + "kl17": [ + cgmesProfile.DY.value, + ], + "kl2": [ + cgmesProfile.DY.value, + ], + "omeganh1": [ + cgmesProfile.DY.value, + ], + "omeganh2": [ + cgmesProfile.DY.value, + ], + "omeganl1": [ + cgmesProfile.DY.value, + ], + "omeganl2": [ + cgmesProfile.DY.value, + ], + "th1": [ + cgmesProfile.DY.value, + ], + "th10": [ + cgmesProfile.DY.value, + ], + "th11": [ + cgmesProfile.DY.value, + ], + "th12": [ + cgmesProfile.DY.value, + ], + "th2": [ + cgmesProfile.DY.value, + ], + "th3": [ + cgmesProfile.DY.value, + ], + "th4": [ + cgmesProfile.DY.value, + ], + "th5": [ + cgmesProfile.DY.value, + ], + "th6": [ + cgmesProfile.DY.value, + ], + "th7": [ + cgmesProfile.DY.value, + ], + "th8": [ + cgmesProfile.DY.value, + ], + "th9": [ + cgmesProfile.DY.value, + ], + "ti1": [ + cgmesProfile.DY.value, + ], + "ti10": [ + cgmesProfile.DY.value, + ], + "ti11": [ + cgmesProfile.DY.value, + ], + "ti12": [ + cgmesProfile.DY.value, + ], + "ti2": [ + cgmesProfile.DY.value, + ], + "ti3": [ + cgmesProfile.DY.value, + ], + "ti4": [ + cgmesProfile.DY.value, + ], + "ti5": [ + cgmesProfile.DY.value, + ], + "ti6": [ + cgmesProfile.DY.value, + ], + "ti7": [ + cgmesProfile.DY.value, + ], + "ti8": [ + cgmesProfile.DY.value, + ], + "ti9": [ + cgmesProfile.DY.value, + ], + "tl1": [ + cgmesProfile.DY.value, + ], + "tl10": [ + cgmesProfile.DY.value, + ], + "tl11": [ + cgmesProfile.DY.value, + ], + "tl12": [ + cgmesProfile.DY.value, + ], + "tl2": [ + cgmesProfile.DY.value, + ], + "tl3": [ + cgmesProfile.DY.value, + ], + "tl4": [ + cgmesProfile.DY.value, + ], + "tl5": [ + cgmesProfile.DY.value, + ], + "tl6": [ + cgmesProfile.DY.value, + ], + "tl7": [ + cgmesProfile.DY.value, + ], + "tl8": [ + cgmesProfile.DY.value, + ], + "tl9": [ + cgmesProfile.DY.value, + ], + "vhmax": [ + cgmesProfile.DY.value, + ], + "vhmin": [ + cgmesProfile.DY.value, + ], + "vimax": [ + cgmesProfile.DY.value, + ], + "vimin": [ + cgmesProfile.DY.value, + ], + "vlmax": [ + cgmesProfile.DY.value, + ], + "vlmin": [ + cgmesProfile.DY.value, + ], + "vstmax": [ + cgmesProfile.DY.value, + ], + "vstmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + bwh1=0.0, + bwh2=0.0, + bwl1=0.0, + bwl2=0.0, + kh=0.0, + kh1=0.0, + kh11=0.0, + kh17=0.0, + kh2=0.0, + ki=0.0, + ki1=0.0, + ki11=0.0, + ki17=0.0, + ki2=0.0, + kl=0.0, + kl1=0.0, + kl11=0.0, + kl17=0.0, + kl2=0.0, + omeganh1=0.0, + omeganh2=0.0, + omeganl1=0.0, + omeganl2=0.0, + th1=0, + th10=0, + th11=0, + th12=0, + th2=0, + th3=0, + th4=0, + th5=0, + th6=0, + th7=0, + th8=0, + th9=0, + ti1=0, + ti10=0, + ti11=0, + ti12=0, + ti2=0, + ti3=0, + ti4=0, + ti5=0, + ti6=0, + ti7=0, + ti8=0, + ti9=0, + tl1=0, + tl10=0, + tl11=0, + tl12=0, + tl2=0, + tl3=0, + tl4=0, + tl5=0, + tl6=0, + tl7=0, + tl8=0, + tl9=0, + vhmax=0.0, + vhmin=0.0, + vimax=0.0, + vimin=0.0, + vlmax=0.0, + vlmin=0.0, + vstmax=0.0, + vstmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.bwh1 = bwh1 + self.bwh2 = bwh2 + self.bwl1 = bwl1 + self.bwl2 = bwl2 + self.kh = kh + self.kh1 = kh1 + self.kh11 = kh11 + self.kh17 = kh17 + self.kh2 = kh2 + self.ki = ki + self.ki1 = ki1 + self.ki11 = ki11 + self.ki17 = ki17 + self.ki2 = ki2 + self.kl = kl + self.kl1 = kl1 + self.kl11 = kl11 + self.kl17 = kl17 + self.kl2 = kl2 + self.omeganh1 = omeganh1 + self.omeganh2 = omeganh2 + self.omeganl1 = omeganl1 + self.omeganl2 = omeganl2 + self.th1 = th1 + self.th10 = th10 + self.th11 = th11 + self.th12 = th12 + self.th2 = th2 + self.th3 = th3 + self.th4 = th4 + self.th5 = th5 + self.th6 = th6 + self.th7 = th7 + self.th8 = th8 + self.th9 = th9 + self.ti1 = ti1 + self.ti10 = ti10 + self.ti11 = ti11 + self.ti12 = ti12 + self.ti2 = ti2 + self.ti3 = ti3 + self.ti4 = ti4 + self.ti5 = ti5 + self.ti6 = ti6 + self.ti7 = ti7 + self.ti8 = ti8 + self.ti9 = ti9 + self.tl1 = tl1 + self.tl10 = tl10 + self.tl11 = tl11 + self.tl12 = tl12 + self.tl2 = tl2 + self.tl3 = tl3 + self.tl4 = tl4 + self.tl5 = tl5 + self.tl6 = tl6 + self.tl7 = tl7 + self.tl8 = tl8 + self.tl9 = tl9 + self.vhmax = vhmax + self.vhmin = vhmin + self.vimax = vimax + self.vimin = vimin + self.vlmax = vlmax + self.vlmin = vlmin + self.vstmax = vstmax + self.vstmin = vstmin + + def __str__(self): + str = "class=PssIEEE4B\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssPTIST1.py b/cimpy_3/cimpy/cgmes_v3_0/PssPTIST1.py new file mode 100644 index 00000000..bf5ba9e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssPTIST1.py @@ -0,0 +1,104 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssPTIST1(PowerSystemStabilizerDynamics): + """ + PTI microprocessor-based stabilizer type 1. + + :m: (M). M = 2 x H. Typical value = 5. Default: 0.0 + :tf: Time constant (Tf) (>= 0). Typical value = 0,2. Default: 0 + :tp: Time constant (Tp) (>= 0). Typical value = 0,2. Default: 0 + :t1: Time constant (T1) (>= 0). Typical value = 0,3. Default: 0 + :t2: Time constant (T2) (>= 0). Typical value = 1. Default: 0 + :t3: Time constant (T3) (>= 0). Typical value = 0,2. Default: 0 + :t4: Time constant (T4) (>= 0). Typical value = 0,05. Default: 0 + :k: Gain (K). Typical value = 9. Default: 0.0 + :dtf: Time step frequency calculation (deltatf) (>= 0). Typical value = 0,025. Default: 0 + :dtc: Time step related to activation of controls (deltatc) (>= 0). Typical value = 0,025. Default: 0 + :dtp: Time step active power calculation (deltatp) (>= 0). Typical value = 0,0125. Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dtf": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "dtp": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + m=0.0, + tf=0, + tp=0, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + dtf=0, + dtc=0, + dtp=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.tf = tf + self.tp = tp + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.dtf = dtf + self.dtc = dtc + self.dtp = dtp + + def __str__(self): + str = "class=PssPTIST1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssPTIST3.py b/cimpy_3/cimpy/cgmes_v3_0/PssPTIST3.py new file mode 100644 index 00000000..1408132e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssPTIST3.py @@ -0,0 +1,242 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssPTIST3(PowerSystemStabilizerDynamics): + """ + PTI microprocessor-based stabilizer type 3. + + :m: (M). M = 2 x H. Typical value = 5. Default: 0.0 + :tf: Time constant (Tf) (>= 0). Typical value = 0,2. Default: 0 + :tp: Time constant (Tp) (>= 0). Typical value = 0,2. Default: 0 + :t1: Time constant (T1) (>= 0). Typical value = 0,3. Default: 0 + :t2: Time constant (T2) (>= 0). Typical value = 1. Default: 0 + :t3: Time constant (T3) (>= 0). Typical value = 0,2. Default: 0 + :t4: Time constant (T4) (>= 0). Typical value = 0,05. Default: 0 + :k: Gain (K). Typical value = 9. Default: 0.0 + :dtf: Time step frequency calculation (deltatf) (>= 0). Typical value = 0,025 (0,03 for 50 Hz). Default: 0 + :dtc: Time step related to activation of controls (deltatc) (>= 0). Typical value = 0,025 (0,03 for 50 Hz). Default: 0 + :dtp: Time step active power calculation (deltatp) (>= 0). Typical value = 0,0125 (0,015 for 50 Hz). Default: 0 + :t5: Time constant (T5) (>= 0). Default: 0 + :t6: Time constant (T6) (>= 0). Default: 0 + :a0: Filter coefficient (A0). Default: 0.0 + :a1: Limiter (Al). Default: 0.0 + :a2: Filter coefficient (A2). Default: 0.0 + :b0: Filter coefficient (B0). Default: 0.0 + :b1: Filter coefficient (B1). Default: 0.0 + :b2: Filter coefficient (B2). Default: 0.0 + :a3: Filter coefficient (A3). Default: 0.0 + :a4: Filter coefficient (A4). Default: 0.0 + :a5: Filter coefficient (A5). Default: 0.0 + :b3: Filter coefficient (B3). Default: 0.0 + :b4: Filter coefficient (B4). Default: 0.0 + :b5: Filter coefficient (B5). Default: 0.0 + :athres: Threshold value above which output averaging will be bypassed (Athres). Typical value = 0,005. Default: 0.0 + :dl: Limiter (Dl). Default: 0.0 + :al: Limiter (Al). Default: 0.0 + :lthres: Threshold value (Lthres). Default: 0.0 + :pmin: (Pmin). Default: 0.0 + :isw: Digital/analogue output switch (Isw). true = produce analogue output false = convert to digital output, using tap selection table. Default: False + :nav: Number of control outputs to average (NAV) (1 <= NAV <= 16). Typical value = 4. Default: 0.0 + :ncl: Number of counts at limit to active limit function (NCL) (> 0). Default: 0.0 + :ncr: Number of counts until reset after limit function is triggered (NCR). Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "m": [ + cgmesProfile.DY.value, + ], + "tf": [ + cgmesProfile.DY.value, + ], + "tp": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "dtf": [ + cgmesProfile.DY.value, + ], + "dtc": [ + cgmesProfile.DY.value, + ], + "dtp": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "a0": [ + cgmesProfile.DY.value, + ], + "a1": [ + cgmesProfile.DY.value, + ], + "a2": [ + cgmesProfile.DY.value, + ], + "b0": [ + cgmesProfile.DY.value, + ], + "b1": [ + cgmesProfile.DY.value, + ], + "b2": [ + cgmesProfile.DY.value, + ], + "a3": [ + cgmesProfile.DY.value, + ], + "a4": [ + cgmesProfile.DY.value, + ], + "a5": [ + cgmesProfile.DY.value, + ], + "b3": [ + cgmesProfile.DY.value, + ], + "b4": [ + cgmesProfile.DY.value, + ], + "b5": [ + cgmesProfile.DY.value, + ], + "athres": [ + cgmesProfile.DY.value, + ], + "dl": [ + cgmesProfile.DY.value, + ], + "al": [ + cgmesProfile.DY.value, + ], + "lthres": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "isw": [ + cgmesProfile.DY.value, + ], + "nav": [ + cgmesProfile.DY.value, + ], + "ncl": [ + cgmesProfile.DY.value, + ], + "ncr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + m=0.0, + tf=0, + tp=0, + t1=0, + t2=0, + t3=0, + t4=0, + k=0.0, + dtf=0, + dtc=0, + dtp=0, + t5=0, + t6=0, + a0=0.0, + a1=0.0, + a2=0.0, + b0=0.0, + b1=0.0, + b2=0.0, + a3=0.0, + a4=0.0, + a5=0.0, + b3=0.0, + b4=0.0, + b5=0.0, + athres=0.0, + dl=0.0, + al=0.0, + lthres=0.0, + pmin=0.0, + isw=False, + nav=0.0, + ncl=0.0, + ncr=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.m = m + self.tf = tf + self.tp = tp + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.k = k + self.dtf = dtf + self.dtc = dtc + self.dtp = dtp + self.t5 = t5 + self.t6 = t6 + self.a0 = a0 + self.a1 = a1 + self.a2 = a2 + self.b0 = b0 + self.b1 = b1 + self.b2 = b2 + self.a3 = a3 + self.a4 = a4 + self.a5 = a5 + self.b3 = b3 + self.b4 = b4 + self.b5 = b5 + self.athres = athres + self.dl = dl + self.al = al + self.lthres = lthres + self.pmin = pmin + self.isw = isw + self.nav = nav + self.ncl = ncl + self.ncr = ncr + + def __str__(self): + str = "class=PssPTIST3\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssRQB.py b/cimpy_3/cimpy/cgmes_v3_0/PssRQB.py new file mode 100644 index 00000000..d5a64d4d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssRQB.py @@ -0,0 +1,98 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssRQB(PowerSystemStabilizerDynamics): + """ + Power system stabilizer type RQB. This power system stabilizer is intended to be used together with excitation system type ExcRQB, which is primarily used in nuclear or thermal generating units. + + :ki2: Speed input gain (Ki2). Typical value = 3,43. Default: 0.0 + :ki3: Electrical power input gain (Ki3). Typical value = -11,45. Default: 0.0 + :ki4: Mechanical power input gain (Ki4). Typical value = 11,86. Default: 0.0 + :t4m: Input time constant (T4M) (>= 0). Typical value = 5. Default: 0 + :tomd: Speed delay (TOMD) (>= 0). Typical value = 0,02. Default: 0 + :tomsl: Speed time constant (TOMSL) (>= 0). Typical value = 0,04. Default: 0 + :t4mom: Speed time constant (T4MOM) (>= 0). Typical value = 1,27. Default: 0 + :sibv: Speed deadband (SIBV). Typical value = 0,006. Default: 0.0 + :kdpm: Lead lag gain (KDPM). Typical value = 0,185. Default: 0.0 + :t4f: Lead lag time constant (T4F) (>= 0). Typical value = 0,045. Default: 0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ki2": [ + cgmesProfile.DY.value, + ], + "ki3": [ + cgmesProfile.DY.value, + ], + "ki4": [ + cgmesProfile.DY.value, + ], + "t4m": [ + cgmesProfile.DY.value, + ], + "tomd": [ + cgmesProfile.DY.value, + ], + "tomsl": [ + cgmesProfile.DY.value, + ], + "t4mom": [ + cgmesProfile.DY.value, + ], + "sibv": [ + cgmesProfile.DY.value, + ], + "kdpm": [ + cgmesProfile.DY.value, + ], + "t4f": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + ki2=0.0, + ki3=0.0, + ki4=0.0, + t4m=0, + tomd=0, + tomsl=0, + t4mom=0, + sibv=0.0, + kdpm=0.0, + t4f=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ki2 = ki2 + self.ki3 = ki3 + self.ki4 = ki4 + self.t4m = t4m + self.tomd = tomd + self.tomsl = tomsl + self.t4mom = t4mom + self.sibv = sibv + self.kdpm = kdpm + self.t4f = t4f + + def __str__(self): + str = "class=PssRQB\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssSB4.py b/cimpy_3/cimpy/cgmes_v3_0/PssSB4.py new file mode 100644 index 00000000..a37e9d66 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssSB4.py @@ -0,0 +1,104 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssSB4(PowerSystemStabilizerDynamics): + """ + Power sensitive stabilizer model. + + :tt: Time constant (Tt) (>= 0). Typical value = 0,18. Default: 0 + :kx: Gain (Kx). Typical value = 2,7. Default: 0.0 + :tx2: Time constant (Tx2) (>= 0). Typical value = 5,0. Default: 0 + :ta: Time constant (Ta) (>= 0). Typical value = 0,37. Default: 0 + :tx1: Reset time constant (Tx1) (>= 0). Typical value = 0,035. Default: 0 + :tb: Time constant (Tb) (>= 0). Typical value = 0,37. Default: 0 + :tc: Time constant (Tc) (>= 0). Typical value = 0,035. Default: 0 + :td: Time constant (Td) (>= 0). Typical value = 0,0. Default: 0 + :te: Time constant (Te) (>= 0). Typical value = 0,0169. Default: 0 + :vsmax: Limiter (Vsmax) (> PssSB4.vsmin). Typical value = 0,062. Default: 0.0 + :vsmin: Limiter (Vsmin) (< PssSB4.vsmax). Typical value = -0,062. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tt": [ + cgmesProfile.DY.value, + ], + "kx": [ + cgmesProfile.DY.value, + ], + "tx2": [ + cgmesProfile.DY.value, + ], + "ta": [ + cgmesProfile.DY.value, + ], + "tx1": [ + cgmesProfile.DY.value, + ], + "tb": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "te": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + tt=0, + kx=0.0, + tx2=0, + ta=0, + tx1=0, + tb=0, + tc=0, + td=0, + te=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tt = tt + self.kx = kx + self.tx2 = tx2 + self.ta = ta + self.tx1 = tx1 + self.tb = tb + self.tc = tc + self.td = td + self.te = te + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSB4\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssSH.py b/cimpy_3/cimpy/cgmes_v3_0/PssSH.py new file mode 100644 index 00000000..21961767 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssSH.py @@ -0,0 +1,116 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssSH(PowerSystemStabilizerDynamics): + """ + SiemensTM "H infinity" power system stabilizer with generator electrical power input. [Footnote: Siemens "H infinity" power system stabilizers are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :k: Main gain (K). Typical value = 1. Default: 0.0 + :k0: Gain 0 (K0). Typical value = 0,012. Default: 0.0 + :k1: Gain 1 (K1). Typical value = 0,488. Default: 0.0 + :k2: Gain 2 (K2). Typical value = 0,064. Default: 0.0 + :k3: Gain 3 (K3). Typical value = 0,224. Default: 0.0 + :k4: Gain 4 (K4). Typical value = 0,1. Default: 0.0 + :td: Input time constant (Td) (>= 0). Typical value = 10. Default: 0 + :t1: Time constant 1 (T1) (> 0). Typical value = 0,076. Default: 0 + :t2: Time constant 2 (T2) (> 0). Typical value = 0,086. Default: 0 + :t3: Time constant 3 (T3) (> 0). Typical value = 1,068. Default: 0 + :t4: Time constant 4 (T4) (> 0). Typical value = 1,913. Default: 0 + :vsmax: Output maximum limit (Vsmax) (> PssSH.vsmin). Typical value = 0,1. Default: 0.0 + :vsmin: Output minimum limit (Vsmin) (< PssSH.vsmax). Typical value = -0,1. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + "k0": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "td": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + k=0.0, + k0=0.0, + k1=0.0, + k2=0.0, + k3=0.0, + k4=0.0, + td=0, + t1=0, + t2=0, + t3=0, + t4=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k = k + self.k0 = k0 + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.k4 = k4 + self.td = td + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSH\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssSK.py b/cimpy_3/cimpy/cgmes_v3_0/PssSK.py new file mode 100644 index 00000000..e4c9e984 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssSK.py @@ -0,0 +1,104 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssSK(PowerSystemStabilizerDynamics): + """ + Slovakian PSS with three inputs. + + :k1: Gain P (K1). Typical value = -0,3. Default: 0.0 + :k2: Gain fE (K2). Typical value = -0,15. Default: 0.0 + :k3: Gain If (K3). Typical value = 10. Default: 0.0 + :t1: Denominator time constant (T1) (> 0,005). Typical value = 0,3. Default: 0 + :t2: Filter time constant (T2) (> 0,005). Typical value = 0,35. Default: 0 + :t3: Denominator time constant (T3) (> 0,005). Typical value = 0,22. Default: 0 + :t4: Filter time constant (T4) (> 0,005). Typical value = 0,02. Default: 0 + :t5: Denominator time constant (T5) (> 0,005). Typical value = 0,02. Default: 0 + :t6: Filter time constant (T6) (> 0,005). Typical value = 0,02. Default: 0 + :vsmax: Stabilizer output maximum limit (VSMAX) (> PssSK.vsmin). Typical value = 0,4. Default: 0.0 + :vsmin: Stabilizer output minimum limit (VSMIN) (< PssSK.vsmax). Typical value = -0.4. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + k1=0.0, + k2=0.0, + k3=0.0, + t1=0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + vsmax=0.0, + vsmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k1 = k1 + self.k2 = k2 + self.k3 = k3 + self.t1 = t1 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.vsmax = vsmax + self.vsmin = vsmin + + def __str__(self): + str = "class=PssSK\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssSTAB2A.py b/cimpy_3/cimpy/cgmes_v3_0/PssSTAB2A.py new file mode 100644 index 00000000..b75aaca2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssSTAB2A.py @@ -0,0 +1,86 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssSTAB2A(PowerSystemStabilizerDynamics): + """ + Power system stabilizer part of an ABB excitation system. [Footnote: ABB excitation systems are an example of suitable products available commercially. This information is given for the convenience of users of this document and does not constitute an endorsement by IEC of these products.] + + :k2: Gain (K2). Typical value = 1,0. Default: 0.0 + :k3: Gain (K3). Typical value = 0,25. Default: 0.0 + :k4: Gain (K4). Typical value = 0,075. Default: 0.0 + :k5: Gain (K5). Typical value = 2,5. Default: 0.0 + :t2: Time constant (T2). Typical value = 4,0. Default: 0 + :t3: Time constant (T3). Typical value = 2,0. Default: 0 + :t5: Time constant (T5). Typical value = 4,5. Default: 0 + :hlim: Stabilizer output limiter (HLIM). Typical value = 0,5. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "k3": [ + cgmesProfile.DY.value, + ], + "k4": [ + cgmesProfile.DY.value, + ], + "k5": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "hlim": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + k2=0.0, + k3=0.0, + k4=0.0, + k5=0.0, + t2=0, + t3=0, + t5=0, + hlim=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.k2 = k2 + self.k3 = k3 + self.k4 = k4 + self.k5 = k5 + self.t2 = t2 + self.t3 = t3 + self.t5 = t5 + self.hlim = hlim + + def __str__(self): + str = "class=PssSTAB2A\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/PssWECC.py b/cimpy_3/cimpy/cgmes_v3_0/PssWECC.py new file mode 100644 index 00000000..371bf18c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/PssWECC.py @@ -0,0 +1,146 @@ +from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics + + +class PssWECC(PowerSystemStabilizerDynamics): + """ + Dual input power system stabilizer, based on IEEE type 2, with modified output limiter defined by WECC (Western Electricity Coordinating Council, USA). + + :inputSignal1Type: Type of input signal #1 (rotorAngularFrequencyDeviation, busFrequencyDeviation, generatorElectricalPower, generatorAcceleratingPower, busVoltage, or busVoltageDerivative - shall be different than PssWECC.inputSignal2Type). Typical value = rotorAngularFrequencyDeviation. Default: None + :inputSignal2Type: Type of input signal #2 (rotorAngularFrequencyDeviation, busFrequencyDeviation, generatorElectricalPower, generatorAcceleratingPower, busVoltage, busVoltageDerivative - shall be different than PssWECC.inputSignal1Type). Typical value = busVoltageDerivative. Default: None + :k1: Input signal 1 gain (K1). Typical value = 1,13. Default: 0.0 + :t1: Input signal 1 transducer time constant (T1) (>= 0). Typical value = 0,037. Default: 0 + :k2: Input signal 2 gain (K2). Typical value = 0,0. Default: 0.0 + :t2: Input signal 2 transducer time constant (T2) (>= 0). Typical value = 0,0. Default: 0 + :t3: Stabilizer washout time constant (T3) (>= 0). Typical value = 9,5. Default: 0 + :t4: Stabilizer washout time lag constant (T4) (>= 0). Typical value = 9,5. Default: 0 + :t5: Lead time constant (T5) (>= 0). Typical value = 1,7. Default: 0 + :t6: Lag time constant (T6) (>= 0). Typical value = 1,5. Default: 0 + :t7: Lead time constant (T7) (>= 0). Typical value = 1,7. Default: 0 + :t8: Lag time constant (T8) (>= 0). Typical value = 1,5. Default: 0 + :t10: Lag time constant (T10) (>= 0). Typical value = 0. Default: 0 + :t9: Lead time constant (T9) (>= 0). Typical value = 0. Default: 0 + :vsmax: Maximum output signal (Vsmax) (> PssWECC.vsmin). Typical value = 0,05. Default: 0.0 + :vsmin: Minimum output signal (Vsmin) (< PssWECC.vsmax). Typical value = -0,05. Default: 0.0 + :vcu: Maximum value for voltage compensator output (VCU). Typical value = 0. Default: 0.0 + :vcl: Minimum value for voltage compensator output (VCL). Typical value = 0. Default: 0.0 + """ + + cgmesProfile = PowerSystemStabilizerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "inputSignal1Type": [ + cgmesProfile.DY.value, + ], + "inputSignal2Type": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + "t2": [ + cgmesProfile.DY.value, + ], + "t3": [ + cgmesProfile.DY.value, + ], + "t4": [ + cgmesProfile.DY.value, + ], + "t5": [ + cgmesProfile.DY.value, + ], + "t6": [ + cgmesProfile.DY.value, + ], + "t7": [ + cgmesProfile.DY.value, + ], + "t8": [ + cgmesProfile.DY.value, + ], + "t10": [ + cgmesProfile.DY.value, + ], + "t9": [ + cgmesProfile.DY.value, + ], + "vsmax": [ + cgmesProfile.DY.value, + ], + "vsmin": [ + cgmesProfile.DY.value, + ], + "vcu": [ + cgmesProfile.DY.value, + ], + "vcl": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemStabilizerDynamics: \n" + + PowerSystemStabilizerDynamics.__doc__ + ) + + def __init__( + self, + inputSignal1Type=None, + inputSignal2Type=None, + k1=0.0, + t1=0, + k2=0.0, + t2=0, + t3=0, + t4=0, + t5=0, + t6=0, + t7=0, + t8=0, + t10=0, + t9=0, + vsmax=0.0, + vsmin=0.0, + vcu=0.0, + vcl=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.inputSignal1Type = inputSignal1Type + self.inputSignal2Type = inputSignal2Type + self.k1 = k1 + self.t1 = t1 + self.k2 = k2 + self.t2 = t2 + self.t3 = t3 + self.t4 = t4 + self.t5 = t5 + self.t6 = t6 + self.t7 = t7 + self.t8 = t8 + self.t10 = t10 + self.t9 = t9 + self.vsmax = vsmax + self.vsmin = vsmin + self.vcu = vcu + self.vcl = vcl + + def __str__(self): + str = "class=PssWECC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Quality61850.py b/cimpy_3/cimpy/cgmes_v3_0/Quality61850.py new file mode 100644 index 00000000..c1ee1ec3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Quality61850.py @@ -0,0 +1,102 @@ +from .Base import Base + + +class Quality61850(Base): + """ + Quality flags in this class are as defined in IEC 61850, except for estimatorReplaced, which has been included in this class for convenience. + + :badReference: Measurement value may be incorrect due to a reference being out of calibration. Default: False + :estimatorReplaced: Value has been replaced by State Estimator. estimatorReplaced is not an IEC61850 quality bit but has been put in this class for convenience. Default: False + :failure: This identifier indicates that a supervision function has detected an internal or external failure, e.g. communication failure. Default: False + :oldData: Measurement value is old and possibly invalid, as it has not been successfully updated during a specified time interval. Default: False + :operatorBlocked: Measurement value is blocked and hence unavailable for transmission. Default: False + :oscillatory: To prevent some overload of the communication it is sensible to detect and suppress oscillating (fast changing) binary inputs. If a signal changes in a defined time twice in the same direction (from 0 to 1 or from 1 to 0) then oscillation is detected and the detail quality identifier `oscillatory` is set. If it is detected a configured numbers of transient changes could be passed by. In this time the validity status `questionable` is set. If after this defined numbers of changes the signal is still in the oscillating state the value shall be set either to the opposite state of the previous stable value or to a defined default value. In this case the validity status `questionable` is reset and `invalid` is set as long as the signal is oscillating. If it is configured such that no transient changes should be passed by then the validity status `invalid` is set immediately in addition to the detail quality identifier `oscillatory` (used for status information only). Default: False + :outOfRange: Measurement value is beyond a predefined range of value. Default: False + :overFlow: Measurement value is beyond the capability of being represented properly. For example, a counter value overflows from maximum count back to a value of zero. Default: False + :source: Source gives information related to the origin of a value. The value may be acquired from the process, defaulted or substituted. Default: None + :suspect: A correlation function has detected that the value is not consistent with other values. Typically set by a network State Estimator. Default: False + :test: Measurement value is transmitted for test purposes. Default: False + :validity: Validity of the measurement value. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "badReference": [ + cgmesProfile.OP.value, + ], + "estimatorReplaced": [ + cgmesProfile.OP.value, + ], + "failure": [ + cgmesProfile.OP.value, + ], + "oldData": [ + cgmesProfile.OP.value, + ], + "operatorBlocked": [ + cgmesProfile.OP.value, + ], + "oscillatory": [ + cgmesProfile.OP.value, + ], + "outOfRange": [ + cgmesProfile.OP.value, + ], + "overFlow": [ + cgmesProfile.OP.value, + ], + "source": [ + cgmesProfile.OP.value, + ], + "suspect": [ + cgmesProfile.OP.value, + ], + "test": [ + cgmesProfile.OP.value, + ], + "validity": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + badReference=False, + estimatorReplaced=False, + failure=False, + oldData=False, + operatorBlocked=False, + oscillatory=False, + outOfRange=False, + overFlow=False, + source=None, + suspect=False, + test=False, + validity=None, + ): + + self.badReference = badReference + self.estimatorReplaced = estimatorReplaced + self.failure = failure + self.oldData = oldData + self.operatorBlocked = operatorBlocked + self.oscillatory = oscillatory + self.outOfRange = outOfRange + self.overFlow = overFlow + self.source = source + self.suspect = suspect + self.test = test + self.validity = validity + + def __str__(self): + str = "class=Quality61850\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RaiseLowerCommand.py b/cimpy_3/cimpy/cgmes_v3_0/RaiseLowerCommand.py new file mode 100644 index 00000000..0d1f216b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RaiseLowerCommand.py @@ -0,0 +1,38 @@ +from .AnalogControl import AnalogControl + + +class RaiseLowerCommand(AnalogControl): + """ + An analog control that increases or decreases a set point value with pulses. Unless otherwise specified, one pulse moves the set point by one. + + :ValueAliasSet: The ValueAliasSet used for translation of a Control value to a name. Default: None + """ + + cgmesProfile = AnalogControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "ValueAliasSet": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AnalogControl: \n" + AnalogControl.__doc__ + ) + + def __init__(self, ValueAliasSet=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ValueAliasSet = ValueAliasSet + + def __str__(self): + str = "class=RaiseLowerCommand\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RatioTapChanger.py b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChanger.py new file mode 100644 index 00000000..bd70bba1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChanger.py @@ -0,0 +1,54 @@ +from .TapChanger import TapChanger + + +class RatioTapChanger(TapChanger): + """ + A tap changer that changes the voltage ratio impacting the voltage magnitude but not the phase angle across the transformer. Angle sign convention (general): Positive value indicates a positive phase shift from the winding where the tap is located to the other winding (for a two-winding transformer). + + :stepVoltageIncrement: Tap step increment, in per cent of rated voltage of the power transformer end, per step position. When the increment is negative, the voltage decreases when the tap step increases. Default: 0.0 + :RatioTapChangerTable: The tap ratio table for this ratio tap changer. Default: None + :TransformerEnd: Transformer end to which this ratio tap changer belongs. Default: None + """ + + cgmesProfile = TapChanger.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "stepVoltageIncrement": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTable": [ + cgmesProfile.EQ.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class TapChanger: \n" + TapChanger.__doc__ + + def __init__( + self, + stepVoltageIncrement=0.0, + RatioTapChangerTable=None, + TransformerEnd=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.stepVoltageIncrement = stepVoltageIncrement + self.RatioTapChangerTable = RatioTapChangerTable + self.TransformerEnd = TransformerEnd + + def __str__(self): + str = "class=RatioTapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTable.py b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTable.py new file mode 100644 index 00000000..900f5194 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTable.py @@ -0,0 +1,46 @@ +from .IdentifiedObject import IdentifiedObject + + +class RatioTapChangerTable(IdentifiedObject): + """ + Describes a curve for how the voltage magnitude and impedance varies with the tap step. + + :RatioTapChanger: The ratio tap changer of this tap ratio table. Default: "list" + :RatioTapChangerTablePoint: Points of this table. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RatioTapChanger": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTablePoint": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, RatioTapChanger="list", RatioTapChangerTablePoint="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RatioTapChanger = RatioTapChanger + self.RatioTapChangerTablePoint = RatioTapChangerTablePoint + + def __str__(self): + str = "class=RatioTapChangerTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTablePoint.py new file mode 100644 index 00000000..d301138e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RatioTapChangerTablePoint.py @@ -0,0 +1,39 @@ +from .TapChangerTablePoint import TapChangerTablePoint + + +class RatioTapChangerTablePoint(TapChangerTablePoint): + """ + Describes each tap step in the ratio tap changer tabular curve. + + :RatioTapChangerTable: Table of this point. Default: None + """ + + cgmesProfile = TapChangerTablePoint.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RatioTapChangerTable": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TapChangerTablePoint: \n" + + TapChangerTablePoint.__doc__ + ) + + def __init__(self, RatioTapChangerTable=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.RatioTapChangerTable = RatioTapChangerTable + + def __str__(self): + str = "class=RatioTapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Reactance.py b/cimpy_3/cimpy/cgmes_v3_0/Reactance.py new file mode 100644 index 00000000..f53e0b95 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Reactance.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Reactance(Base): + """ + Reactance (imaginary part of impedance), at rated frequency. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Reactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ReactiveCapabilityCurve.py b/cimpy_3/cimpy/cgmes_v3_0/ReactiveCapabilityCurve.py new file mode 100644 index 00000000..d47926cb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ReactiveCapabilityCurve.py @@ -0,0 +1,47 @@ +from .Curve import Curve + + +class ReactiveCapabilityCurve(Curve): + """ + Reactive power rating envelope versus the synchronous machine's active power, in both the generating and motoring modes. For each active power value there is a corresponding high and low reactive power limit value. Typically there will be a separate curve for each coolant condition, such as hydrogen pressure. The Y1 axis values represent reactive minimum and the Y2 axis values represent reactive maximum. + + :EquivalentInjection: The equivalent injection using this reactive capability curve. Default: "list" + :InitiallyUsedBySynchronousMachines: Synchronous machines using this curve as default. Default: "list" + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "EquivalentInjection": [ + cgmesProfile.EQ.value, + ], + "InitiallyUsedBySynchronousMachines": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__( + self, + EquivalentInjection="list", + InitiallyUsedBySynchronousMachines="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.EquivalentInjection = EquivalentInjection + self.InitiallyUsedBySynchronousMachines = InitiallyUsedBySynchronousMachines + + def __str__(self): + str = "class=ReactiveCapabilityCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ReactivePower.py b/cimpy_3/cimpy/cgmes_v3_0/ReactivePower.py new file mode 100644 index 00000000..7df10f23 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ReactivePower.py @@ -0,0 +1,56 @@ +from .Base import Base + + +class ReactivePower(Base): + """ + Product of RMS value of the voltage and the RMS value of the quadrature component of the current. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=ReactivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RealEnergy.py b/cimpy_3/cimpy/cgmes_v3_0/RealEnergy.py new file mode 100644 index 00000000..11599f13 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RealEnergy.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class RealEnergy(Base): + """ + Real electrical energy. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=RealEnergy\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegularIntervalSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/RegularIntervalSchedule.py new file mode 100644 index 00000000..bfeed28d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegularIntervalSchedule.py @@ -0,0 +1,49 @@ +from .BasicIntervalSchedule import BasicIntervalSchedule + + +class RegularIntervalSchedule(BasicIntervalSchedule): + """ + The schedule has time points where the time between them is constant. + + :TimePoints: The regular interval time point data values that define this schedule. Default: "list" + :timeStep: The time between each pair of subsequent regular time points in sequence order. Default: 0 + :endTime: The time for the last time point. The value can be a time of day, not a specific date. Default: '' + """ + + cgmesProfile = BasicIntervalSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "TimePoints": [ + cgmesProfile.EQ.value, + ], + "timeStep": [ + cgmesProfile.EQ.value, + ], + "endTime": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class BasicIntervalSchedule: \n" + + BasicIntervalSchedule.__doc__ + ) + + def __init__(self, TimePoints="list", timeStep=0, endTime="", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TimePoints = TimePoints + self.timeStep = timeStep + self.endTime = endTime + + def __str__(self): + str = "class=RegularIntervalSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegularTimePoint.py b/cimpy_3/cimpy/cgmes_v3_0/RegularTimePoint.py new file mode 100644 index 00000000..6bb2d839 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegularTimePoint.py @@ -0,0 +1,54 @@ +from .Base import Base + + +class RegularTimePoint(Base): + """ + Time point for a schedule where the time between the consecutive points is constant. + + :sequenceNumber: The position of the regular time point in the sequence. Note that time points don`t have to be sequential, i.e. time points may be omitted. The actual time for a RegularTimePoint is computed by multiplying the associated regular interval schedule`s time step with the regular time point sequence number and adding the associated schedules start time. To specify values for the start time, use sequence number 0. The sequence number cannot be negative. Default: 0 + :value1: The first value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 + :value2: The second value at the time. The meaning of the value is defined by the derived type of the associated schedule. Default: 0.0 + :IntervalSchedule: Regular interval schedule containing this time point. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "sequenceNumber": [ + cgmesProfile.EQ.value, + ], + "value1": [ + cgmesProfile.EQ.value, + ], + "value2": [ + cgmesProfile.EQ.value, + ], + "IntervalSchedule": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + sequenceNumber=0, + value1=0.0, + value2=0.0, + IntervalSchedule=None, + ): + + self.sequenceNumber = sequenceNumber + self.value1 = value1 + self.value2 = value2 + self.IntervalSchedule = IntervalSchedule + + def __str__(self): + str = "class=RegularTimePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegulatingCondEq.py b/cimpy_3/cimpy/cgmes_v3_0/RegulatingCondEq.py new file mode 100644 index 00000000..5dc13bc8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegulatingCondEq.py @@ -0,0 +1,47 @@ +from .EnergyConnection import EnergyConnection + + +class RegulatingCondEq(EnergyConnection): + """ + A type of conducting equipment that can regulate a quantity (i.e. voltage or flow) at a specific point in the network. + + :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False + :RegulatingControl: The regulating control scheme in which this equipment participates. Default: None + """ + + cgmesProfile = EnergyConnection.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "controlEnabled": [ + cgmesProfile.SSH.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConnection: \n" + + EnergyConnection.__doc__ + ) + + def __init__(self, controlEnabled=False, RegulatingControl=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.controlEnabled = controlEnabled + self.RegulatingControl = RegulatingControl + + def __str__(self): + str = "class=RegulatingCondEq\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegulatingControl.py b/cimpy_3/cimpy/cgmes_v3_0/RegulatingControl.py new file mode 100644 index 00000000..73f7ec57 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegulatingControl.py @@ -0,0 +1,105 @@ +from .PowerSystemResource import PowerSystemResource + + +class RegulatingControl(PowerSystemResource): + """ + Specifies a set of equipment that works together to control a power system quantity such as voltage or flow. Remote bus voltage control is possible by specifying the controlled terminal located at some place remote from the controlling equipment. The specified terminal shall be associated with the connectivity node of the controlled point. The most specific subtype of RegulatingControl shall be used in case such equipment participate in the control, e.g. TapChangerControl for tap changers. For flow control, load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. The attribute minAllowedTargetValue and maxAllowedTargetValue are required in the following cases: - For a power generating module operated in power factor control mode to specify maximum and minimum power factor values; - Whenever it is necessary to have an off center target voltage for the tap changer regulator. For instance, due to long cables to off shore wind farms and the need to have a simpler setup at the off shore transformer platform, the voltage is controlled from the land at the connection point for the off shore wind farm. Since there usually is a voltage rise along the cable, there is typical and overvoltage of up 3-4 kV compared to the on shore station. Thus in normal operation the tap changer on the on shore station is operated with a target set point, which is in the lower parts of the dead band. The attributes minAllowedTargetValue and maxAllowedTargetValue are not related to the attribute targetDeadband and thus they are not treated as an alternative of the targetDeadband. They are needed due to limitations in the local substation controller. The attribute targetDeadband is used to prevent the power flow from move the tap position in circles (hunting) that is to be used regardless of the attributes minAllowedTargetValue and maxAllowedTargetValue. + + :discrete: The regulation is performed in a discrete mode. This applies to equipment with discrete controls, e.g. tap changers and shunt compensators. Default: False + :enabled: The flag tells if regulation is enabled. Default: False + :targetDeadband: This is a deadband used with discrete control to avoid excessive update of controls like tap changers and shunt compensator banks while regulating. The units of those appropriate for the mode. The attribute shall be a positive value or zero. If RegulatingControl.discrete is set to `false`, the RegulatingControl.targetDeadband is to be ignored. Note that for instance, if the targetValue is 100 kV and the targetDeadband is 2 kV the range is from 99 to 101 kV. Default: 0.0 + :targetValue: The target value specified for case input. This value can be used for the target value without the use of schedules. The value has the units appropriate to the mode attribute. Default: 0.0 + :targetValueUnitMultiplier: Specify the multiplier for used for the targetValue. Default: None + :maxAllowedTargetValue: Maximum allowed target value (RegulatingControl.targetValue). Default: 0.0 + :minAllowedTargetValue: Minimum allowed target value (RegulatingControl.targetValue). Default: 0.0 + :RegulationSchedule: Schedule for this regulating control. Default: "list" + :RegulatingCondEq: The equipment that participates in this regulating control scheme. Default: "list" + :mode: The regulating control mode presently available. This specification allows for determining the kind of regulation without need for obtaining the units from a schedule. Default: None + :Terminal: The terminal associated with this regulating control. The terminal is associated instead of a node, since the terminal could connect into either a topological node or a connectivity node. Sometimes it is useful to model regulation at a terminal of a bus bar object. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "discrete": [ + cgmesProfile.SSH.value, + ], + "enabled": [ + cgmesProfile.SSH.value, + ], + "targetDeadband": [ + cgmesProfile.SSH.value, + ], + "targetValue": [ + cgmesProfile.SSH.value, + ], + "targetValueUnitMultiplier": [ + cgmesProfile.SSH.value, + ], + "maxAllowedTargetValue": [ + cgmesProfile.SSH.value, + ], + "minAllowedTargetValue": [ + cgmesProfile.SSH.value, + ], + "RegulationSchedule": [ + cgmesProfile.EQ.value, + ], + "RegulatingCondEq": [ + cgmesProfile.EQ.value, + ], + "mode": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + discrete=False, + enabled=False, + targetDeadband=0.0, + targetValue=0.0, + targetValueUnitMultiplier=None, + maxAllowedTargetValue=0.0, + minAllowedTargetValue=0.0, + RegulationSchedule="list", + RegulatingCondEq="list", + mode=None, + Terminal=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.discrete = discrete + self.enabled = enabled + self.targetDeadband = targetDeadband + self.targetValue = targetValue + self.targetValueUnitMultiplier = targetValueUnitMultiplier + self.maxAllowedTargetValue = maxAllowedTargetValue + self.minAllowedTargetValue = minAllowedTargetValue + self.RegulationSchedule = RegulationSchedule + self.RegulatingCondEq = RegulatingCondEq + self.mode = mode + self.Terminal = Terminal + + def __str__(self): + str = "class=RegulatingControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegulatingControlModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/RegulatingControlModeKind.py new file mode 100644 index 00000000..89379815 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegulatingControlModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class RegulatingControlModeKind(Base): + """ + The kind of regulation model. For example regulating voltage, reactive power, active power, etc. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RegulatingControlModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RegulationSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/RegulationSchedule.py new file mode 100644 index 00000000..8bb0ec8e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RegulationSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class RegulationSchedule(SeasonDayTypeSchedule): + """ + A pre-established pattern over time for a controlled variable, e.g., busbar voltage. + + :RegulatingControl: Regulating controls that have this schedule. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, RegulatingControl=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.RegulatingControl = RegulatingControl + + def __str__(self): + str = "class=RegulationSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RemoteInputSignal.py b/cimpy_3/cimpy/cgmes_v3_0/RemoteInputSignal.py new file mode 100644 index 00000000..82f65204 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RemoteInputSignal.py @@ -0,0 +1,100 @@ +from .IdentifiedObject import IdentifiedObject + + +class RemoteInputSignal(IdentifiedObject): + """ + Supports connection to a terminal associated with a remote bus from which an input signal of a specific type is coming. + + :Terminal: Remote terminal with which this input signal is associated. Default: None + :remoteSignalType: Type of input signal. Default: None + :DiscontinuousExcitationControlDynamics: Discontinuous excitation control model using this remote input signal. Default: None + :WindTurbineType1or2Dynamics: Wind generator type 1 or type 2 model using this remote input signal. Default: None + :PowerSystemStabilizerDynamics: Power system stabilizer model using this remote input signal. Default: None + :UnderexcitationLimiterDynamics: Underexcitation limiter model using this remote input signal. Default: None + :PFVArControllerType1Dynamics: Power factor or VAr controller type 1 model using this remote input signal. Default: None + :VoltageCompensatorDynamics: Voltage compensator model using this remote input signal. Default: None + :WindPlantDynamics: The wind plant using the remote signal. Default: None + :WindTurbineType3or4Dynamics: Wind turbine type 3 or type 4 models using this remote input signal. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "Terminal": [ + cgmesProfile.DY.value, + ], + "remoteSignalType": [ + cgmesProfile.DY.value, + ], + "DiscontinuousExcitationControlDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2Dynamics": [ + cgmesProfile.DY.value, + ], + "PowerSystemStabilizerDynamics": [ + cgmesProfile.DY.value, + ], + "UnderexcitationLimiterDynamics": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + "VoltageCompensatorDynamics": [ + cgmesProfile.DY.value, + ], + "WindPlantDynamics": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Terminal=None, + remoteSignalType=None, + DiscontinuousExcitationControlDynamics=None, + WindTurbineType1or2Dynamics=None, + PowerSystemStabilizerDynamics=None, + UnderexcitationLimiterDynamics=None, + PFVArControllerType1Dynamics=None, + VoltageCompensatorDynamics=None, + WindPlantDynamics=None, + WindTurbineType3or4Dynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Terminal = Terminal + self.remoteSignalType = remoteSignalType + self.DiscontinuousExcitationControlDynamics = ( + DiscontinuousExcitationControlDynamics + ) + self.WindTurbineType1or2Dynamics = WindTurbineType1or2Dynamics + self.PowerSystemStabilizerDynamics = PowerSystemStabilizerDynamics + self.UnderexcitationLimiterDynamics = UnderexcitationLimiterDynamics + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + self.VoltageCompensatorDynamics = VoltageCompensatorDynamics + self.WindPlantDynamics = WindPlantDynamics + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + + def __str__(self): + str = "class=RemoteInputSignal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RemoteSignalKind.py b/cimpy_3/cimpy/cgmes_v3_0/RemoteSignalKind.py new file mode 100644 index 00000000..1b817e10 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RemoteSignalKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class RemoteSignalKind(Base): + """ + Type of input signal coming from remote bus. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RemoteSignalKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ReportingGroup.py b/cimpy_3/cimpy/cgmes_v3_0/ReportingGroup.py new file mode 100644 index 00000000..0b3f1b7a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ReportingGroup.py @@ -0,0 +1,45 @@ +from .IdentifiedObject import IdentifiedObject + + +class ReportingGroup(IdentifiedObject): + """ + A reporting group is used for various ad-hoc groupings used for reporting. + + :TopologicalNode: The topological nodes that belong to the reporting group. Default: "list" + :BusNameMarker: The bus name markers that belong to this reporting group. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.EQ.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + "BusNameMarker": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, TopologicalNode="list", BusNameMarker="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TopologicalNode = TopologicalNode + self.BusNameMarker = BusNameMarker + + def __str__(self): + str = "class=ReportingGroup\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Resistance.py b/cimpy_3/cimpy/cgmes_v3_0/Resistance.py new file mode 100644 index 00000000..ffb86ccf --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Resistance.py @@ -0,0 +1,56 @@ +from .Base import Base + + +class Resistance(Base): + """ + Resistance (real part of impedance). + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Resistance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/ResistancePerLength.py b/cimpy_3/cimpy/cgmes_v3_0/ResistancePerLength.py similarity index 92% rename from cimpy/cgmes_v2_4_15/ResistancePerLength.py rename to cimpy_3/cimpy/cgmes_v3_0/ResistancePerLength.py index 867e41dc..7ea6ff5e 100644 --- a/cimpy/cgmes_v2_4_15/ResistancePerLength.py +++ b/cimpy_3/cimpy/cgmes_v3_0/ResistancePerLength.py @@ -1,8 +1,9 @@ -from .Base import Base +"""from .Base import Base +#not required as per cim standard class ResistancePerLength(Base): - ''' + """ """ Resistance (real part of impedance) per unit of length. :value: Default: 0.0 @@ -10,7 +11,7 @@ class ResistancePerLength(Base): :multiplier: Default: None :denominatorUnit: Default: None :denominatorMultiplier: Default: None - ''' + """ """ cgmesProfile = Base.cgmesProfile @@ -24,19 +25,20 @@ class ResistancePerLength(Base): serializationProfile = {} - + def __init__(self, value = 0.0, unit = None, multiplier = None, denominatorUnit = None, denominatorMultiplier = None, ): - + self.value = value self.unit = unit self.multiplier = multiplier self.denominatorUnit = denominatorUnit self.denominatorMultiplier = denominatorMultiplier - + def __str__(self): str = 'class=ResistancePerLength\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/RotatingMachine.py b/cimpy_3/cimpy/cgmes_v3_0/RotatingMachine.py new file mode 100644 index 00000000..e6d30328 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RotatingMachine.py @@ -0,0 +1,83 @@ +from .RegulatingCondEq import RegulatingCondEq + + +class RotatingMachine(RegulatingCondEq): + """ + A rotating machine which may be used as a generator or motor. + + :p: Active power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :GeneratingUnit: A synchronous machine may operate as a generator and as such becomes a member of a generating unit. Default: None + :HydroPump: The synchronous machine drives the turbine which moves the water from a low elevation to a higher elevation. The direction of machine rotation for pumping may or may not be the same as for generating. Default: None + :ratedPowerFactor: Power factor (nameplate data). It is primarily used for short circuit data exchange according to IEC 60909. The attribute cannot be a negative value. Default: 0.0 + :ratedS: Nameplate apparent power rating for the unit. The attribute shall have a positive value. Default: 0.0 + :ratedU: Rated voltage (nameplate data, Ur in IEC 60909-0). It is primarily used for short circuit data exchange according to IEC 60909. The attribute shall be a positive value. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "p": [ + cgmesProfile.SSH.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "GeneratingUnit": [ + cgmesProfile.EQ.value, + ], + "HydroPump": [ + cgmesProfile.EQ.value, + ], + "ratedPowerFactor": [ + cgmesProfile.EQ.value, + ], + "ratedS": [ + cgmesProfile.EQ.value, + ], + "ratedU": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + p=0.0, + q=0.0, + GeneratingUnit=None, + HydroPump=None, + ratedPowerFactor=0.0, + ratedS=0.0, + ratedU=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.p = p + self.q = q + self.GeneratingUnit = GeneratingUnit + self.HydroPump = HydroPump + self.ratedPowerFactor = ratedPowerFactor + self.ratedS = ratedS + self.ratedU = ratedU + + def __str__(self): + str = "class=RotatingMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RotatingMachineDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/RotatingMachineDynamics.py new file mode 100644 index 00000000..b9f23238 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RotatingMachineDynamics.py @@ -0,0 +1,74 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class RotatingMachineDynamics(DynamicsFunctionBlock): + """ + Abstract parent class for all synchronous and asynchronous machine standard models. + + :damping: Damping torque coefficient (D) (>= 0). A proportionality constant that, when multiplied by the angular velocity of the rotor poles with respect to the magnetic field (frequency), results in the damping torque. This value is often zero when the sources of damping torques (generator damper windings, load damping effects, etc.) are modelled in detail. Typical value = 0. Default: 0.0 + :inertia: Inertia constant of generator or motor and mechanical load (H) (> 0). This is the specification for the stored energy in the rotating mass when operating at rated speed. For a generator, this includes the generator plus all other elements (turbine, exciter) on the same shaft and has units of MW x s. For a motor, it includes the motor plus its mechanical load. Conventional units are PU on the generator MVA base, usually expressed as MW x s / MVA or just s. This value is used in the accelerating power reference frame for operator training simulator solutions. Typical value = 3. Default: 0 + :saturationFactor: Saturation factor at rated terminal voltage (S1) (>= 0). Not used by simplified model. Defined by defined by S(E1) in the SynchronousMachineSaturationParameters diagram. Typical value = 0,02. Default: 0.0 + :saturationFactor120: Saturation factor at 120% of rated terminal voltage (S12) (>= RotatingMachineDynamics.saturationFactor). Not used by the simplified model, defined by S(E2) in the SynchronousMachineSaturationParameters diagram. Typical value = 0,12. Default: 0.0 + :statorLeakageReactance: Stator leakage reactance (Xl) (>= 0). Typical value = 0,15. Default: 0.0 + :statorResistance: Stator (armature) resistance (Rs) (>= 0). Typical value = 0,005. Default: 0.0 + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "damping": [ + cgmesProfile.DY.value, + ], + "inertia": [ + cgmesProfile.DY.value, + ], + "saturationFactor": [ + cgmesProfile.DY.value, + ], + "saturationFactor120": [ + cgmesProfile.DY.value, + ], + "statorLeakageReactance": [ + cgmesProfile.DY.value, + ], + "statorResistance": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + damping=0.0, + inertia=0, + saturationFactor=0.0, + saturationFactor120=0.0, + statorLeakageReactance=0.0, + statorResistance=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.damping = damping + self.inertia = inertia + self.saturationFactor = saturationFactor + self.saturationFactor120 = saturationFactor120 + self.statorLeakageReactance = statorLeakageReactance + self.statorResistance = statorResistance + + def __str__(self): + str = "class=RotatingMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RotationSpeed.py b/cimpy_3/cimpy/cgmes_v3_0/RotationSpeed.py new file mode 100644 index 00000000..5f572b46 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RotationSpeed.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class RotationSpeed(Base): + """ + Number of revolutions per second. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=RotationSpeed\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/RotorKind.py b/cimpy_3/cimpy/cgmes_v3_0/RotorKind.py new file mode 100644 index 00000000..59b2d4bd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/RotorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class RotorKind(Base): + """ + Type of rotor on physical machine. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=RotorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SVCControlMode.py b/cimpy_3/cimpy/cgmes_v3_0/SVCControlMode.py new file mode 100644 index 00000000..0af117b0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SVCControlMode.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class SVCControlMode(Base): + """ + Static VAr Compensator control mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SVCControlMode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SVCUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/SVCUserDefined.py new file mode 100644 index 00000000..ffc82a81 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SVCUserDefined.py @@ -0,0 +1,46 @@ +from .StaticVarCompensatorDynamics import StaticVarCompensatorDynamics + + +class SVCUserDefined(StaticVarCompensatorDynamics): + """ + Static var compensator (SVC) function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = StaticVarCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class StaticVarCompensatorDynamics: \n" + + StaticVarCompensatorDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=SVCUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Season.py b/cimpy_3/cimpy/cgmes_v3_0/Season.py new file mode 100644 index 00000000..b34b0a7d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Season.py @@ -0,0 +1,56 @@ +from .IdentifiedObject import IdentifiedObject + + +class Season(IdentifiedObject): + """ + A specified time period of the year. + + :endDate: Date season ends. Default: 0.0 + :startDate: Date season starts. Default: 0.0 + :SeasonDayTypeSchedules: Schedules that use this Season. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "endDate": [ + cgmesProfile.EQ.value, + ], + "startDate": [ + cgmesProfile.EQ.value, + ], + "SeasonDayTypeSchedules": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + endDate=0.0, + startDate=0.0, + SeasonDayTypeSchedules="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.endDate = endDate + self.startDate = startDate + self.SeasonDayTypeSchedules = SeasonDayTypeSchedules + + def __str__(self): + str = "class=Season\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SeasonDayTypeSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/SeasonDayTypeSchedule.py new file mode 100644 index 00000000..179f6f59 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SeasonDayTypeSchedule.py @@ -0,0 +1,44 @@ +from .RegularIntervalSchedule import RegularIntervalSchedule + + +class SeasonDayTypeSchedule(RegularIntervalSchedule): + """ + A time schedule covering a 24 hour period, with curve data for a specific type of season and day. + + :DayType: DayType for the Schedule. Default: None + :Season: Season for the Schedule. Default: None + """ + + cgmesProfile = RegularIntervalSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "DayType": [ + cgmesProfile.EQ.value, + ], + "Season": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegularIntervalSchedule: \n" + + RegularIntervalSchedule.__doc__ + ) + + def __init__(self, DayType=None, Season=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.DayType = DayType + self.Season = Season + + def __str__(self): + str = "class=SeasonDayTypeSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Seconds.py b/cimpy_3/cimpy/cgmes_v3_0/Seconds.py new file mode 100644 index 00000000..f9087125 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Seconds.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Seconds(Base): + """ + Time, in seconds. + + :value: Time, in seconds Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Seconds\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Sensor.py b/cimpy_3/cimpy/cgmes_v3_0/Sensor.py new file mode 100644 index 00000000..b1a860c3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Sensor.py @@ -0,0 +1,35 @@ +from .AuxiliaryEquipment import AuxiliaryEquipment + + +class Sensor(AuxiliaryEquipment): + """ + This class describe devices that transform a measured quantity into signals that can be presented at displays, used in control or be recorded. + + """ + + cgmesProfile = AuxiliaryEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AuxiliaryEquipment: \n" + + AuxiliaryEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=Sensor\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SeriesCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/SeriesCompensator.py new file mode 100644 index 00000000..6c21b32d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SeriesCompensator.py @@ -0,0 +1,81 @@ +from .ConductingEquipment import ConductingEquipment + + +class SeriesCompensator(ConductingEquipment): + """ + A Series Compensator is a series capacitor or reactor or an AC transmission line without charging susceptance. It is a two terminal device. + + :r: Positive sequence resistance. Default: 0.0 + :x: Positive sequence reactance. Default: 0.0 + :r0: Zero sequence resistance. Default: 0.0 + :x0: Zero sequence reactance. Default: 0.0 + :varistorPresent: Describe if a metal oxide varistor (mov) for over voltage protection is configured in parallel with the series compensator. It is used for short circuit calculations. Default: False + :varistorRatedCurrent: The maximum current the varistor is designed to handle at specified duration. It is used for short circuit calculations and exchanged only if SeriesCompensator.varistorPresent is true. The attribute shall be a positive value. Default: 0.0 + :varistorVoltageThreshold: The dc voltage at which the varistor starts conducting. It is used for short circuit calculations and exchanged only if SeriesCompensator.varistorPresent is true. Default: 0.0 + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + "varistorPresent": [ + cgmesProfile.SC.value, + ], + "varistorRatedCurrent": [ + cgmesProfile.SC.value, + ], + "varistorVoltageThreshold": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + r=0.0, + x=0.0, + r0=0.0, + x0=0.0, + varistorPresent=False, + varistorRatedCurrent=0.0, + varistorVoltageThreshold=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.r = r + self.x = x + self.r0 = r0 + self.x0 = x0 + self.varistorPresent = varistorPresent + self.varistorRatedCurrent = varistorRatedCurrent + self.varistorVoltageThreshold = varistorVoltageThreshold + + def __str__(self): + str = "class=SeriesCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ServiceLocation.py b/cimpy_3/cimpy/cgmes_v3_0/ServiceLocation.py new file mode 100644 index 00000000..05a4668b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ServiceLocation.py @@ -0,0 +1,34 @@ +from .WorkLocation import WorkLocation + + +class ServiceLocation(WorkLocation): + """ + A real estate location, commonly referred to as premises. + + """ + + cgmesProfile = WorkLocation.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WorkLocation: \n" + WorkLocation.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=ServiceLocation\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SetPoint.py b/cimpy_3/cimpy/cgmes_v3_0/SetPoint.py new file mode 100644 index 00000000..41a4deab --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SetPoint.py @@ -0,0 +1,43 @@ +from .AnalogControl import AnalogControl + + +class SetPoint(AnalogControl): + """ + An analog control that issues a set point value. + + :normalValue: Normal value for Control.value e.g. used for percentage scaling. Default: 0.0 + :value: The value representing the actuator output. Default: 0.0 + """ + + cgmesProfile = AnalogControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "normalValue": [ + cgmesProfile.OP.value, + ], + "value": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AnalogControl: \n" + AnalogControl.__doc__ + ) + + def __init__(self, normalValue=0.0, value=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.normalValue = normalValue + self.value = value + + def __str__(self): + str = "class=SetPoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ShortCircuitRotorKind.py b/cimpy_3/cimpy/cgmes_v3_0/ShortCircuitRotorKind.py new file mode 100644 index 00000000..52f531e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ShortCircuitRotorKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class ShortCircuitRotorKind(Base): + """ + Type of rotor, used by short circuit applications. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=ShortCircuitRotorKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ShuntCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/ShuntCompensator.py new file mode 100644 index 00000000..f42646c2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ShuntCompensator.py @@ -0,0 +1,89 @@ +from .RegulatingCondEq import RegulatingCondEq + + +class ShuntCompensator(RegulatingCondEq): + """ + A shunt capacitor or reactor or switchable bank of shunt capacitors or reactors. A section of a shunt compensator is an individual capacitor or reactor. A negative value for bPerSection indicates that the compensator is a reactor. ShuntCompensator is a single terminal device. Ground is implied. + + :sections: Shunt compensator sections in use. Starting value for steady state solution. The attribute shall be a positive value or zero. Non integer values are allowed to support continuous variables. The reasons for continuous value are to support study cases where no discrete shunt compensators has yet been designed, a solutions where a narrow voltage band force the sections to oscillate or accommodate for a continuous solution as input. For LinearShuntConpensator the value shall be between zero and ShuntCompensator.maximumSections. At value zero the shunt compensator conductance and admittance is zero. Linear interpolation of conductance and admittance between the previous and next integer section is applied in case of non-integer values. For NonlinearShuntCompensator-s shall only be set to one of the NonlinearShuntCompenstorPoint.sectionNumber. There is no interpolation between NonlinearShuntCompenstorPoint-s. Default: 0.0 + :aVRDelay: An automatic voltage regulation delay (AVRDelay) which is the time delay from a change in voltage to when the capacitor is allowed to change state. This filters out temporary changes in voltage. Default: 0 + :grounded: Used for Yn and Zn connections. True if the neutral is solidly grounded. Default: False + :maximumSections: The maximum number of sections that may be switched in. Default: 0 + :nomU: The voltage at which the nominal reactive power may be calculated. This should normally be within 10% of the voltage at which the capacitor is connected to the network. Default: 0.0 + :normalSections: The normal number of sections switched in. The value shall be between zero and ShuntCompensator.maximumSections. Default: 0 + :voltageSensitivity: Voltage sensitivity required for the device to regulate the bus voltage, in voltage/reactive power. Default: 0.0 + :SvShuntCompensatorSections: The state for the number of shunt compensator sections in service. Default: None + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "sections": [ + cgmesProfile.SSH.value, + ], + "aVRDelay": [ + cgmesProfile.EQ.value, + ], + "grounded": [ + cgmesProfile.EQ.value, + ], + "maximumSections": [ + cgmesProfile.EQ.value, + ], + "nomU": [ + cgmesProfile.EQ.value, + ], + "normalSections": [ + cgmesProfile.EQ.value, + ], + "voltageSensitivity": [ + cgmesProfile.EQ.value, + ], + "SvShuntCompensatorSections": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + sections=0.0, + aVRDelay=0, + grounded=False, + maximumSections=0, + nomU=0.0, + normalSections=0, + voltageSensitivity=0.0, + SvShuntCompensatorSections=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.sections = sections + self.aVRDelay = aVRDelay + self.grounded = grounded + self.maximumSections = maximumSections + self.nomU = nomU + self.normalSections = normalSections + self.voltageSensitivity = voltageSensitivity + self.SvShuntCompensatorSections = SvShuntCompensatorSections + + def __str__(self): + str = "class=ShuntCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/Simple_Float.py b/cimpy_3/cimpy/cgmes_v3_0/Simple_Float.py similarity index 90% rename from cimpy/cgmes_v2_4_15/Simple_Float.py rename to cimpy_3/cimpy/cgmes_v3_0/Simple_Float.py index 3a583b86..64ce9b13 100644 --- a/cimpy/cgmes_v2_4_15/Simple_Float.py +++ b/cimpy_3/cimpy/cgmes_v3_0/Simple_Float.py @@ -1,12 +1,13 @@ -from .Base import Base +# remved as per standard book +"""from .Base import Base class Simple_Float(Base): - ''' +""" """ A floating point number. The range is unspecified and not limited. :value: Default: 0.0 - ''' +""" """ cgmesProfile = Base.cgmesProfile @@ -16,15 +17,16 @@ class Simple_Float(Base): serializationProfile = {} - + def __init__(self, value = 0.0, ): - + self.value = value - + def __str__(self): str = 'class=Simple_Float\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/SolarGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/SolarGeneratingUnit.py new file mode 100644 index 00000000..15c8bcda --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SolarGeneratingUnit.py @@ -0,0 +1,39 @@ +from .GeneratingUnit import GeneratingUnit + + +class SolarGeneratingUnit(GeneratingUnit): + """ + A solar thermal generating unit, connected to the grid by means of a rotating machine. This class does not represent photovoltaic (PV) generation. + + :SolarPowerPlant: A solar power plant may have solar generating units. Default: None + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "SolarPowerPlant": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, SolarPowerPlant=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SolarPowerPlant = SolarPowerPlant + + def __str__(self): + str = "class=SolarGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SolarPowerPlant.py b/cimpy_3/cimpy/cgmes_v3_0/SolarPowerPlant.py new file mode 100644 index 00000000..cfcef4fe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SolarPowerPlant.py @@ -0,0 +1,39 @@ +from .PowerSystemResource import PowerSystemResource + + +class SolarPowerPlant(PowerSystemResource): + """ + Solar power plant. + + :SolarGeneratingUnits: A solar generating unit or units may be a member of a solar power plant. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "SolarGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, SolarGeneratingUnits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.SolarGeneratingUnits = SolarGeneratingUnits + + def __str__(self): + str = "class=SolarPowerPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Source.py b/cimpy_3/cimpy/cgmes_v3_0/Source.py new file mode 100644 index 00000000..5ea796c5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Source.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class Source(Base): + """ + Source gives information related to the origin of a value. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Source\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/StateVariablesVersion.py b/cimpy_3/cimpy/cgmes_v3_0/StateVariablesVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/StateVariablesVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/StateVariablesVersion.py index bc6ec911..c0aa85a8 100644 --- a/cimpy/cgmes_v2_4_15/StateVariablesVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/StateVariablesVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# remved as per standard book +"""from .Base import Base class StateVariablesVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,8 +16,8 @@ class StateVariablesVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.SV.value, ], @@ -34,10 +35,10 @@ class StateVariablesVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +49,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=StateVariablesVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/StaticLoadModelKind.py b/cimpy_3/cimpy/cgmes_v3_0/StaticLoadModelKind.py new file mode 100644 index 00000000..f6882a1e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StaticLoadModelKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class StaticLoadModelKind(Base): + """ + Type of static load model. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=StaticLoadModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensator.py b/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensator.py new file mode 100644 index 00000000..31302b43 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensator.py @@ -0,0 +1,82 @@ +from .RegulatingCondEq import RegulatingCondEq + + +class StaticVarCompensator(RegulatingCondEq): + """ + A facility for providing variable and controllable shunt reactive power. The SVC typically consists of a stepdown transformer, filter, thyristor-controlled reactor, and thyristor-switched capacitor arms. The SVC may operate in fixed MVar output mode or in voltage control mode. When in voltage control mode, the output of the SVC will be proportional to the deviation of voltage at the controlled bus from the voltage setpoint. The SVC characteristic slope defines the proportion. If the voltage at the controlled bus is equal to the voltage setpoint, the SVC MVar output is zero. + + :StaticVarCompensatorDynamics: Static Var Compensator dynamics model used to describe dynamic behaviour of this Static Var Compensator. Default: None + :q: Reactive power injection. Load sign convention is used, i.e. positive sign means flow out from a node. Starting value for a steady state solution. Default: 0.0 + :capacitiveRating: Capacitive reactance at maximum capacitive reactive power. Shall always be positive. Default: 0.0 + :inductiveRating: Inductive reactance at maximum inductive reactive power. Shall always be negative. Default: 0.0 + :slope: The characteristics slope of an SVC defines how the reactive power output changes in proportion to the difference between the regulated bus voltage and the voltage setpoint. The attribute shall be a positive value or zero. Default: 0.0 + :sVCControlMode: SVC control mode. Default: None + :voltageSetPoint: The reactive power output of the SVC is proportional to the difference between the voltage at the regulated bus and the voltage setpoint. When the regulated bus voltage is equal to the voltage setpoint, the reactive power output is zero. Default: 0.0 + """ + + cgmesProfile = RegulatingCondEq.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "StaticVarCompensatorDynamics": [ + cgmesProfile.DY.value, + ], + "q": [ + cgmesProfile.SSH.value, + ], + "capacitiveRating": [ + cgmesProfile.EQ.value, + ], + "inductiveRating": [ + cgmesProfile.EQ.value, + ], + "slope": [ + cgmesProfile.EQ.value, + ], + "sVCControlMode": [ + cgmesProfile.EQ.value, + ], + "voltageSetPoint": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingCondEq: \n" + + RegulatingCondEq.__doc__ + ) + + def __init__( + self, + StaticVarCompensatorDynamics=None, + q=0.0, + capacitiveRating=0.0, + inductiveRating=0.0, + slope=0.0, + sVCControlMode=None, + voltageSetPoint=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.StaticVarCompensatorDynamics = StaticVarCompensatorDynamics + self.q = q + self.capacitiveRating = capacitiveRating + self.inductiveRating = inductiveRating + self.slope = slope + self.sVCControlMode = sVCControlMode + self.voltageSetPoint = voltageSetPoint + + def __str__(self): + str = "class=StaticVarCompensator\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensatorDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensatorDynamics.py new file mode 100644 index 00000000..82809244 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StaticVarCompensatorDynamics.py @@ -0,0 +1,39 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class StaticVarCompensatorDynamics(DynamicsFunctionBlock): + """ + Static var compensator whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :StaticVarCompensator: Static Var Compensator to which Static Var Compensator dynamics model applies. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "StaticVarCompensator": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, StaticVarCompensator=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StaticVarCompensator = StaticVarCompensator + + def __str__(self): + str = "class=StaticVarCompensatorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/StationSupply.py b/cimpy_3/cimpy/cgmes_v3_0/StationSupply.py new file mode 100644 index 00000000..d55d7b8f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StationSupply.py @@ -0,0 +1,35 @@ +from .EnergyConsumer import EnergyConsumer + + +class StationSupply(EnergyConsumer): + """ + Station supply with load derived from the station output. + + """ + + cgmesProfile = EnergyConsumer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EnergyConsumer: \n" + EnergyConsumer.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=StationSupply\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Status.py b/cimpy_3/cimpy/cgmes_v3_0/Status.py new file mode 100644 index 00000000..cc7ba2e4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Status.py @@ -0,0 +1,54 @@ +from .Base import Base + + +class Status(Base): + """ + Current status information relevant to an entity. + + :value: Status value at `dateTime`; prior status changes may have been kept in instances of activity records associated with the object to which this status applies. Default: '' + :dateTime: Date and time for which status `value` applies. Default: '' + :remark: Pertinent information regarding the current `value`, as free form text. Default: '' + :reason: Reason code or explanation for why an object went to the current status `value`. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "value": [ + cgmesProfile.GL.value, + ], + "dateTime": [ + cgmesProfile.GL.value, + ], + "remark": [ + cgmesProfile.GL.value, + ], + "reason": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value="", + dateTime="", + remark="", + reason="", + ): + + self.value = value + self.dateTime = dateTime + self.remark = remark + self.reason = reason + + def __str__(self): + str = "class=Status\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py b/cimpy_3/cimpy/cgmes_v3_0/SteadyStateHypothesisVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/SteadyStateHypothesisVersion.py index 0692fd51..8e8302d5 100644 --- a/cimpy/cgmes_v2_4_15/SteadyStateHypothesisVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/SteadyStateHypothesisVersion.py @@ -1,8 +1,9 @@ -from .Base import Base - +# removed as missing in document +"""from .Base import Base +#TBC class SteadyStateHypothesisVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,7 +16,7 @@ class SteadyStateHypothesisVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' +""" """ cgmesProfile = Base.cgmesProfile @@ -34,10 +35,10 @@ class SteadyStateHypothesisVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +49,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=SteadyStateHypothesisVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/StreetAddress.py b/cimpy_3/cimpy/cgmes_v3_0/StreetAddress.py new file mode 100644 index 00000000..86f220f5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StreetAddress.py @@ -0,0 +1,66 @@ +from .Base import Base + + +class StreetAddress(Base): + """ + General purpose street and postal address information. + + :streetDetail: Street detail. Default: 0.0 + :townDetail: Town detail. Default: 0.0 + :status: Status of this address. Default: 0.0 + :postalCode: Postal code for the address. Default: '' + :poBox: Post office box. Default: '' + :language: The language in which the address is specified, using ISO 639-1 two digit language code. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "streetDetail": [ + cgmesProfile.GL.value, + ], + "townDetail": [ + cgmesProfile.GL.value, + ], + "status": [ + cgmesProfile.GL.value, + ], + "postalCode": [ + cgmesProfile.GL.value, + ], + "poBox": [ + cgmesProfile.GL.value, + ], + "language": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + streetDetail=0.0, + townDetail=0.0, + status=0.0, + postalCode="", + poBox="", + language="", + ): + + self.streetDetail = streetDetail + self.townDetail = townDetail + self.status = status + self.postalCode = postalCode + self.poBox = poBox + self.language = language + + def __str__(self): + str = "class=StreetAddress\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/StreetDetail.py b/cimpy_3/cimpy/cgmes_v3_0/StreetDetail.py new file mode 100644 index 00000000..761ecb81 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StreetDetail.py @@ -0,0 +1,108 @@ +from .Base import Base + + +class StreetDetail(Base): + """ + Street details, in the context of address. + + :number: Designator of the specific location on the street. Default: '' + :name: Name of the street. Default: '' + :suffix: Suffix to the street name. For example: North, South, East, West. Default: '' + :prefix: Prefix to the street name. For example: North, South, East, West. Default: '' + :type: Type of street. Examples include: street, circle, boulevard, avenue, road, drive, etc. Default: '' + :code: (if applicable) Utilities often make use of external reference systems, such as those of the town-planner`s department or surveyor general`s mapping system, that allocate global reference codes to streets. Default: '' + :buildingName: (if applicable) In certain cases the physical location of the place of interest does not have a direct point of entry from the street, but may be located inside a larger structure such as a building, complex, office block, apartment, etc. Default: '' + :suiteNumber: Number of the apartment or suite. Default: '' + :addressGeneral: First line of a free form address or some additional address information (for example a mail stop). Default: '' + :addressGeneral2: (if applicable) Second line of a free form address. Default: '' + :addressGeneral3: (if applicable) Third line of a free form address. Default: '' + :withinTownLimits: True if this street is within the legal geographical boundaries of the specified town (default). Default: False + :floorIdentification: The identification by name or number, expressed as text, of the floor in the building as part of this address. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "number": [ + cgmesProfile.GL.value, + ], + "name": [ + cgmesProfile.GL.value, + ], + "suffix": [ + cgmesProfile.GL.value, + ], + "prefix": [ + cgmesProfile.GL.value, + ], + "type": [ + cgmesProfile.GL.value, + ], + "code": [ + cgmesProfile.GL.value, + ], + "buildingName": [ + cgmesProfile.GL.value, + ], + "suiteNumber": [ + cgmesProfile.GL.value, + ], + "addressGeneral": [ + cgmesProfile.GL.value, + ], + "addressGeneral2": [ + cgmesProfile.GL.value, + ], + "addressGeneral3": [ + cgmesProfile.GL.value, + ], + "withinTownLimits": [ + cgmesProfile.GL.value, + ], + "floorIdentification": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + number="", + name="", + suffix="", + prefix="", + type="", + code="", + buildingName="", + suiteNumber="", + addressGeneral="", + addressGeneral2="", + addressGeneral3="", + withinTownLimits=False, + floorIdentification="", + ): + + self.number = number + self.name = name + self.suffix = suffix + self.prefix = prefix + self.type = type + self.code = code + self.buildingName = buildingName + self.suiteNumber = suiteNumber + self.addressGeneral = addressGeneral + self.addressGeneral2 = addressGeneral2 + self.addressGeneral3 = addressGeneral3 + self.withinTownLimits = withinTownLimits + self.floorIdentification = floorIdentification + + def __str__(self): + str = "class=StreetDetail\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/String.py b/cimpy_3/cimpy/cgmes_v3_0/String.py similarity index 83% rename from cimpy/cgmes_v2_4_15/String.py rename to cimpy_3/cimpy/cgmes_v3_0/String.py index a00af050..67444591 100644 --- a/cimpy/cgmes_v2_4_15/String.py +++ b/cimpy_3/cimpy/cgmes_v3_0/String.py @@ -1,11 +1,12 @@ -from cimpy.cgmes_v2_4_15.Base import Base +# removed as per TC57CIM Profile part from standard book +"""from cimpy.cgmes_v2_4_15.Base import Base class String(Base): - ''' + """ """ A string consisting of a sequence of characters. The character encoding is UTF-8. The string length is unspecified and unlimited. - ''' + """ """ cgmesProfile = Base.cgmesProfile @@ -14,15 +15,16 @@ class String(Base): serializationProfile = {} - + def __init__(self, ): - + pass - + def __str__(self): str = 'class=String\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/StringMeasurement.py b/cimpy_3/cimpy/cgmes_v3_0/StringMeasurement.py new file mode 100644 index 00000000..112f45d0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StringMeasurement.py @@ -0,0 +1,36 @@ +from .Measurement import Measurement + + +class StringMeasurement(Measurement): + """ + StringMeasurement represents a measurement with values of type string. + + :StringMeasurementValues: The values connected to this measurement. Default: "list" + """ + + cgmesProfile = Measurement.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "StringMeasurementValues": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Measurement: \n" + Measurement.__doc__ + + def __init__(self, StringMeasurementValues="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StringMeasurementValues = StringMeasurementValues + + def __str__(self): + str = "class=StringMeasurement\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/StringMeasurementValue.py b/cimpy_3/cimpy/cgmes_v3_0/StringMeasurementValue.py new file mode 100644 index 00000000..e2424a6d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/StringMeasurementValue.py @@ -0,0 +1,39 @@ +from .MeasurementValue import MeasurementValue + + +class StringMeasurementValue(MeasurementValue): + """ + StringMeasurementValue represents a measurement value of type string. + + :StringMeasurement: Measurement to which this value is connected. Default: None + """ + + cgmesProfile = MeasurementValue.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "StringMeasurement": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class MeasurementValue: \n" + + MeasurementValue.__doc__ + ) + + def __init__(self, StringMeasurement=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.StringMeasurement = StringMeasurement + + def __str__(self): + str = "class=StringMeasurementValue\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SubGeographicalRegion.py b/cimpy_3/cimpy/cgmes_v3_0/SubGeographicalRegion.py new file mode 100644 index 00000000..cd06f794 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SubGeographicalRegion.py @@ -0,0 +1,66 @@ +from .IdentifiedObject import IdentifiedObject + + +class SubGeographicalRegion(IdentifiedObject): + """ + A subset of a geographical region of a power system network model. + + :DCLines: The DC lines in this sub-geographical region. Default: "list" + :Region: The geographical region which this sub-geographical region is within. Default: None + :Lines: The lines within the sub-geographical region. Default: "list" + :Substations: The substations in this sub-geographical region. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "DCLines": [ + cgmesProfile.EQ.value, + ], + "Region": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Lines": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Substations": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + DCLines="list", + Region=None, + Lines="list", + Substations="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCLines = DCLines + self.Region = Region + self.Lines = Lines + self.Substations = Substations + + def __str__(self): + str = "class=SubGeographicalRegion\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SubLoadArea.py b/cimpy_3/cimpy/cgmes_v3_0/SubLoadArea.py new file mode 100644 index 00000000..d4edb677 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SubLoadArea.py @@ -0,0 +1,41 @@ +from .EnergyArea import EnergyArea + + +class SubLoadArea(EnergyArea): + """ + The class is the second level in a hierarchical structure for grouping of loads for the purpose of load flow load scaling. + + :LoadArea: The LoadArea where the SubLoadArea belongs. Default: None + :LoadGroups: The Loadgroups in the SubLoadArea. Default: "list" + """ + + cgmesProfile = EnergyArea.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "LoadArea": [ + cgmesProfile.EQ.value, + ], + "LoadGroups": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class EnergyArea: \n" + EnergyArea.__doc__ + + def __init__(self, LoadArea=None, LoadGroups="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.LoadArea = LoadArea + self.LoadGroups = LoadGroups + + def __str__(self): + str = "class=SubLoadArea\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Substation.py b/cimpy_3/cimpy/cgmes_v3_0/Substation.py new file mode 100644 index 00000000..e3f2e5e5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Substation.py @@ -0,0 +1,54 @@ +from .EquipmentContainer import EquipmentContainer + + +class Substation(EquipmentContainer): + """ + A collection of equipment for purposes other than generation or utilization, through which electric energy in bulk is passed for the purposes of switching or modifying its characteristics. + + :DCConverterUnit: The DC converter unit belonging of the substation. Default: "list" + :Region: The SubGeographicalRegion containing the substation. Default: None + :VoltageLevels: The voltage levels within this substation. Default: "list" + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + # 'DCConverterUnit': [cgmesProfile.EQ.value, ], + "Region": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + # 'VoltageLevels': [cgmesProfile.EQ.value, cgmesProfile.EQBD.value, ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__( + self, + DCConverterUnit="list", + Region=None, + VoltageLevels="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.DCConverterUnit = DCConverterUnit + self.Region = Region + self.VoltageLevels = VoltageLevels + + def __str__(self): + str = "class=Substation\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SurgeArrester.py b/cimpy_3/cimpy/cgmes_v3_0/SurgeArrester.py new file mode 100644 index 00000000..b4a0810d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SurgeArrester.py @@ -0,0 +1,35 @@ +from .AuxiliaryEquipment import AuxiliaryEquipment + + +class SurgeArrester(AuxiliaryEquipment): + """ + Shunt device, installed on the network, usually in the proximity of electrical equipment in order to protect the said equipment against transient voltage transients caused by lightning or switching activity. + + """ + + cgmesProfile = AuxiliaryEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AuxiliaryEquipment: \n" + + AuxiliaryEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=SurgeArrester\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Susceptance.py b/cimpy_3/cimpy/cgmes_v3_0/Susceptance.py new file mode 100644 index 00000000..2c892d81 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Susceptance.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Susceptance(Base): + """ + Imaginary part of admittance. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=Susceptance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvInjection.py b/cimpy_3/cimpy/cgmes_v3_0/SvInjection.py new file mode 100644 index 00000000..5ecf00a7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvInjection.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class SvInjection(Base): + """ + The SvInjection reports the calculated bus injection minus the sum of the terminal flows. The terminal flow is positive out from the bus (load sign convention) and bus injection has positive flow into the bus. SvInjection may have the remainder after state estimation or slack after power flow calculation. + + :pInjection: The active power mismatch between calculated injection and initial injection. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 + :qInjection: The reactive power mismatch between calculated injection and initial injection. Positive sign means injection into the TopologicalNode (bus). Default: 0.0 + :TopologicalNode: The topological node associated with the flow injection state variable. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "pInjection": [ + cgmesProfile.SV.value, + ], + "qInjection": [ + cgmesProfile.SV.value, + ], + "TopologicalNode": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + pInjection=0.0, + qInjection=0.0, + TopologicalNode=None, + ): + + self.pInjection = pInjection + self.qInjection = qInjection + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=SvInjection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvPowerFlow.py b/cimpy_3/cimpy/cgmes_v3_0/SvPowerFlow.py new file mode 100644 index 00000000..d21372df --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvPowerFlow.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class SvPowerFlow(Base): + """ + State variable for power flow. Load convention is used for flow direction. This means flow out from the TopologicalNode into the equipment is positive. + + :p: The active power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + :q: The reactive power flow. Load sign convention is used, i.e. positive sign means flow out from a TopologicalNode (bus) into the conducting equipment. Default: 0.0 + :Terminal: The terminal associated with the power flow state variable. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "p": [ + cgmesProfile.SV.value, + ], + "q": [ + cgmesProfile.SV.value, + ], + "Terminal": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + p=0.0, + q=0.0, + Terminal=None, + ): + + self.p = p + self.q = q + self.Terminal = Terminal + + def __str__(self): + str = "class=SvPowerFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvShuntCompensatorSections.py b/cimpy_3/cimpy/cgmes_v3_0/SvShuntCompensatorSections.py new file mode 100644 index 00000000..a12403da --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvShuntCompensatorSections.py @@ -0,0 +1,42 @@ +from .Base import Base + + +class SvShuntCompensatorSections(Base): + """ + State variable for the number of sections in service for a shunt compensator. + + :ShuntCompensator: The shunt compensator for which the state applies. Default: None + :sections: The number of sections in service as a continuous variable. The attribute shall be a positive value or zero. To get integer value scale with ShuntCompensator.bPerSection. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "ShuntCompensator": [ + cgmesProfile.SV.value, + ], + "sections": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ShuntCompensator=None, + sections=0.0, + ): + + self.ShuntCompensator = ShuntCompensator + self.sections = sections + + def __str__(self): + str = "class=SvShuntCompensatorSections\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvStatus.py b/cimpy_3/cimpy/cgmes_v3_0/SvStatus.py new file mode 100644 index 00000000..23dac9d9 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvStatus.py @@ -0,0 +1,42 @@ +from .Base import Base + + +class SvStatus(Base): + """ + State variable for status. + + :ConductingEquipment: The conducting equipment associated with the status state variable. Default: None + :inService: The in service status as a result of topology processing. It indicates if the equipment is considered as energized by the power flow. It reflects if the equipment is connected within a solvable island. It does not necessarily reflect whether or not the island was solved by the power flow. Default: False + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "ConductingEquipment": [ + cgmesProfile.SV.value, + ], + "inService": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ConductingEquipment=None, + inService=False, + ): + + self.ConductingEquipment = ConductingEquipment + self.inService = inService + + def __str__(self): + str = "class=SvStatus\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvSwitch.py b/cimpy_3/cimpy/cgmes_v3_0/SvSwitch.py new file mode 100644 index 00000000..681aeaa4 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvSwitch.py @@ -0,0 +1,42 @@ +from .Base import Base + + +class SvSwitch(Base): + """ + State variable for switch. + + :open: The attribute tells if the computed state of the switch is considered open. Default: False + :Switch: The switch associated with the switch state. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "open": [ + cgmesProfile.SV.value, + ], + "Switch": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + open=False, + Switch=None, + ): + + self.open = open + self.Switch = Switch + + def __str__(self): + str = "class=SvSwitch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvTapStep.py b/cimpy_3/cimpy/cgmes_v3_0/SvTapStep.py new file mode 100644 index 00000000..be4c1b31 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvTapStep.py @@ -0,0 +1,42 @@ +from .Base import Base + + +class SvTapStep(Base): + """ + State variable for transformer tap step. + + :position: The floating point tap position. This is not the tap ratio, but rather the tap step position as defined by the related tap changer model and normally is constrained to be within the range of minimum and maximum tap positions. Default: 0.0 + :TapChanger: The tap changer associated with the tap step state. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "position": [ + cgmesProfile.SV.value, + ], + "TapChanger": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + position=0.0, + TapChanger=None, + ): + + self.position = position + self.TapChanger = TapChanger + + def __str__(self): + str = "class=SvTapStep\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SvVoltage.py b/cimpy_3/cimpy/cgmes_v3_0/SvVoltage.py new file mode 100644 index 00000000..734f6af8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SvVoltage.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class SvVoltage(Base): + """ + State variable for voltage. + + :angle: The voltage angle of the topological node complex voltage with respect to system reference. Default: 0.0 + :v: The voltage magnitude at the topological node. The attribute shall be a positive value. Default: 0.0 + :TopologicalNode: The topological node associated with the voltage state. Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "angle": [ + cgmesProfile.SV.value, + ], + "v": [ + cgmesProfile.SV.value, + ], + "TopologicalNode": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + angle=0.0, + v=0.0, + TopologicalNode=None, + ): + + self.angle = angle + self.v = v + self.TopologicalNode = TopologicalNode + + def __str__(self): + str = "class=SvVoltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Switch.py b/cimpy_3/cimpy/cgmes_v3_0/Switch.py new file mode 100644 index 00000000..94100931 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Switch.py @@ -0,0 +1,82 @@ +from .ConductingEquipment import ConductingEquipment + + +class Switch(ConductingEquipment): + """ + A generic device designed to close, or open, or both, one or more electric circuits. All switches are two terminal devices including grounding switches. The ACDCTerminal.connected at the two sides of the switch shall not be considered for assessing switch connectivity, i.e. only Switch.open, .normalOpen and .locked are relevant. + + :open: The attribute tells if the switch is considered open when used as input to topology processing. Default: False + :locked: If true, the switch is locked. The resulting switch state is a combination of locked and Switch.open attributes as follows:
  • locked=true and Switch.open=true. The resulting state is open and locked;
  • locked=false and Switch.open=true. The resulting state is open;
  • locked=false and Switch.open=false. The resulting state is closed.
Default: False + :normalOpen: The attribute is used in cases when no Measurement for the status value is present. If the Switch has a status measurement the Discrete.normalValue is expected to match with the Switch.normalOpen. Default: False + :ratedCurrent: The maximum continuous current carrying capacity in amps governed by the device material and construction. The attribute shall be a positive value. Default: 0.0 + :retained: Branch is retained in the topological solution. The flow through retained switches will normally be calculated in power flow. Default: False + :SwitchSchedules: A Switch can be associated with SwitchSchedules. Default: "list" + :SvSwitch: The switch state associated with the switch. Default: "list" + """ + + cgmesProfile = ConductingEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "open": [ + cgmesProfile.SSH.value, + ], + "locked": [ + cgmesProfile.SSH.value, + ], + "normalOpen": [ + cgmesProfile.EQ.value, + ], + "ratedCurrent": [ + cgmesProfile.EQ.value, + ], + "retained": [ + cgmesProfile.EQ.value, + ], + "SwitchSchedules": [ + cgmesProfile.EQ.value, + ], + "SvSwitch": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ConductingEquipment: \n" + + ConductingEquipment.__doc__ + ) + + def __init__( + self, + open=False, + locked=False, + normalOpen=False, + ratedCurrent=0.0, + retained=False, + SwitchSchedules="list", + SvSwitch="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.open = open + self.locked = locked + self.normalOpen = normalOpen + self.ratedCurrent = ratedCurrent + self.retained = retained + self.SwitchSchedules = SwitchSchedules + self.SvSwitch = SvSwitch + + def __str__(self): + str = "class=Switch\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SwitchSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/SwitchSchedule.py new file mode 100644 index 00000000..4d873659 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SwitchSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class SwitchSchedule(SeasonDayTypeSchedule): + """ + A schedule of switch positions. If RegularTimePoint.value1 is 0, the switch is open. If 1, the switch is closed. + + :Switch: A SwitchSchedule is associated with a Switch. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "Switch": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, Switch=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.Switch = Switch + + def __str__(self): + str = "class=SwitchSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachine.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachine.py new file mode 100644 index 00000000..724940e0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachine.py @@ -0,0 +1,178 @@ +from .RotatingMachine import RotatingMachine + + +class SynchronousMachine(RotatingMachine): + """ + An electromechanical device that operates with shaft rotating synchronously with the network. It is a single machine operating either as a generator or synchronous condenser or pump. + + :SynchronousMachineDynamics: Synchronous machine dynamics model used to describe dynamic behaviour of this synchronous machine. Default: None + :operatingMode: Current mode of operation. Default: None + :referencePriority: Priority of unit for use as powerflow voltage phase angle reference bus selection. 0 = don t care (default) 1 = highest priority. 2 is less than 1 and so on. Default: 0 + :InitialReactiveCapabilityCurve: The default reactive capability curve for use by a synchronous machine. Default: None + :maxQ: Maximum reactive power limit. This is the maximum (nameplate) limit for the unit. Default: 0.0 + :minQ: Minimum reactive power limit for the unit. Default: 0.0 + :qPercent: Part of the coordinated reactive control that comes from this machine. The attribute is used as a participation factor not necessarily summing up to 100% for the participating devices in the control. Default: 0.0 + :type: Modes that this synchronous machine can operate in. Default: None + :earthing: Indicates whether or not the generator is earthed. Used for short circuit data exchange according to IEC 60909. Default: False + :earthingStarPointR: Generator star point earthing resistance (Re). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :earthingStarPointX: Generator star point earthing reactance (Xe). Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :ikk: Steady-state short-circuit current (in A for the profile) of generator with compound excitation during 3-phase short circuit. - Ikk=0: Generator with no compound excitation. - Ikk<>0: Generator with compound excitation. Ikk is used to calculate the minimum steady-state short-circuit current for generators with compound excitation. (4.6.1.2 in IEC 60909-0:2001). Used only for single fed short circuit on a generator. (4.3.4.2. in IEC 60909-0:2001). Default: 0.0 + :mu: Factor to calculate the breaking current (Section 4.5.2.1 in IEC 60909-0). Used only for single fed short circuit on a generator (Section 4.3.4.2. in IEC 60909-0). Default: 0.0 + :x0: Zero sequence reactance of the synchronous machine. Default: 0.0 + :r0: Zero sequence resistance of the synchronous machine. Default: 0.0 + :x2: Negative sequence reactance. Default: 0.0 + :r2: Negative sequence resistance. Default: 0.0 + :r: Equivalent resistance (RG) of generator. RG is considered for the calculation of all currents, except for the calculation of the peak current ip. Used for short circuit data exchange according to IEC 60909. Default: 0.0 + :satDirectSubtransX: Direct-axis subtransient reactance saturated, also known as Xd`sat. Default: 0.0 + :satDirectSyncX: Direct-axes saturated synchronous reactance (xdsat); reciprocal of short-circuit ration. Used for short circuit data exchange, only for single fed short circuit on a generator. (4.3.4.2. in IEC 60909-0:2001). Default: 0.0 + :satDirectTransX: Saturated Direct-axis transient reactance. The attribute is primarily used for short circuit calculations according to ANSI. Default: 0.0 + :shortCircuitRotorType: Type of rotor, used by short circuit applications, only for single fed short circuit according to IEC 60909. Default: None + :voltageRegulationRange: Range of generator voltage regulation (PG in IEC 60909-0) used for calculation of the impedance correction factor KG defined in IEC 60909-0. This attribute is used to describe the operating voltage of the generating unit. Default: 0.0 + """ + + cgmesProfile = RotatingMachine.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "operatingMode": [ + cgmesProfile.SSH.value, + ], + "referencePriority": [ + cgmesProfile.SSH.value, + ], + "InitialReactiveCapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "maxQ": [ + cgmesProfile.EQ.value, + ], + "minQ": [ + cgmesProfile.EQ.value, + ], + "qPercent": [ + cgmesProfile.EQ.value, + ], + "type": [ + cgmesProfile.EQ.value, + ], + "earthing": [ + cgmesProfile.SC.value, + ], + "earthingStarPointR": [ + cgmesProfile.SC.value, + ], + "earthingStarPointX": [ + cgmesProfile.SC.value, + ], + "ikk": [ + cgmesProfile.SC.value, + ], + "mu": [ + cgmesProfile.SC.value, + ], + "x0": [ + cgmesProfile.SC.value, + ], + "r0": [ + cgmesProfile.SC.value, + ], + "x2": [ + cgmesProfile.SC.value, + ], + "r2": [ + cgmesProfile.SC.value, + ], + "r": [ + cgmesProfile.SC.value, + ], + "satDirectSubtransX": [ + cgmesProfile.SC.value, + ], + "satDirectSyncX": [ + cgmesProfile.SC.value, + ], + "satDirectTransX": [ + cgmesProfile.SC.value, + ], + "shortCircuitRotorType": [ + cgmesProfile.SC.value, + ], + "voltageRegulationRange": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachine: \n" + RotatingMachine.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + operatingMode=None, + referencePriority=0, + InitialReactiveCapabilityCurve=None, + maxQ=0.0, + minQ=0.0, + qPercent=0.0, + type=None, + earthing=False, + earthingStarPointR=0.0, + earthingStarPointX=0.0, + ikk=0.0, + mu=0.0, + x0=0.0, + r0=0.0, + x2=0.0, + r2=0.0, + r=0.0, + satDirectSubtransX=0.0, + satDirectSyncX=0.0, + satDirectTransX=0.0, + shortCircuitRotorType=None, + voltageRegulationRange=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.operatingMode = operatingMode + self.referencePriority = referencePriority + self.InitialReactiveCapabilityCurve = InitialReactiveCapabilityCurve + self.maxQ = maxQ + self.minQ = minQ + self.qPercent = qPercent + self.type = type + self.earthing = earthing + self.earthingStarPointR = earthingStarPointR + self.earthingStarPointX = earthingStarPointX + self.ikk = ikk + self.mu = mu + self.x0 = x0 + self.r0 = r0 + self.x2 = x2 + self.r2 = r2 + self.r = r + self.satDirectSubtransX = satDirectSubtransX + self.satDirectSyncX = satDirectSyncX + self.satDirectTransX = satDirectTransX + self.shortCircuitRotorType = shortCircuitRotorType + self.voltageRegulationRange = voltageRegulationRange + + def __str__(self): + str = "class=SynchronousMachine\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDetailed.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDetailed.py new file mode 100644 index 00000000..39a85cba --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDetailed.py @@ -0,0 +1,62 @@ +from .SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineDetailed(SynchronousMachineDynamics): + """ + All synchronous machine detailed types use a subset of the same data parameters and input/output variables. The several variations differ in the following ways: - the number of equivalent windings that are included; - the way in which saturation is incorporated into the model; - whether or not "subtransient saliency" (X''q not = X''d) is represented. It is not necessary for each simulation tool to have separate models for each of the model types. The same model can often be used for several types by alternative logic within the model. Also, differences in saturation representation might not result in significant model performance differences so model substitutions are often acceptable. + + :saturationFactorQAxis: Quadrature-axis saturation factor at rated terminal voltage (S1q) (>= 0). Typical value = 0,02. Default: 0.0 + :saturationFactor120QAxis: Quadrature-axis saturation factor at 120% of rated terminal voltage (S12q) (>= SynchonousMachineDetailed.saturationFactorQAxis). Typical value = 0,12. Default: 0.0 + :efdBaseRatio: Ratio (exciter voltage/generator voltage) of Efd bases of exciter and generator models (> 0). Typical value = 1. Default: 0.0 + :ifdBaseType: Excitation base system mode. It should be equal to the value of WLMDV given by the user. WLMDV is the PU ratio between the field voltage and the excitation current: Efd = WLMDV x Ifd. Typical value = ifag. Default: None + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "saturationFactorQAxis": [ + cgmesProfile.DY.value, + ], + "saturationFactor120QAxis": [ + cgmesProfile.DY.value, + ], + "efdBaseRatio": [ + cgmesProfile.DY.value, + ], + "ifdBaseType": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, + saturationFactorQAxis=0.0, + saturationFactor120QAxis=0.0, + efdBaseRatio=0.0, + ifdBaseType=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.saturationFactorQAxis = saturationFactorQAxis + self.saturationFactor120QAxis = saturationFactor120QAxis + self.efdBaseRatio = efdBaseRatio + self.ifdBaseType = ifdBaseType + + def __str__(self): + str = "class=SynchronousMachineDetailed\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDynamics.py new file mode 100644 index 00000000..c7b944fd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineDynamics.py @@ -0,0 +1,80 @@ +from .RotatingMachineDynamics import RotatingMachineDynamics + + +class SynchronousMachineDynamics(RotatingMachineDynamics): + """ + Synchronous machine whose behaviour is described by reference to a standard model expressed in one of the following forms: - simplified (or classical), where a group of generators or motors is not modelled in detail; - detailed, in equivalent circuit form; - detailed, in time constant reactance form; or - by definition of a user-defined model. It is a common practice to represent small generators by a negative load rather than by a dynamic generator model when performing dynamics simulations. In this case, a SynchronousMachine in the static model is not represented by anything in the dynamics model, instead it is treated as an ordinary load. Parameter details:
  1. Synchronous machine parameters such as Xl, Xd, Xp etc. are actually used as inductances in the models, but are commonly referred to as reactances since, at nominal frequency, the PU values are the same. However, some references use the symbol L instead of X.
+ + :SynchronousMachine: Synchronous machine to which synchronous machine dynamics model applies. Default: None + :CrossCompoundTurbineGovernorDyanmics: The cross-compound turbine governor with which this high-pressure synchronous machine is associated. Default: None + :CrossCompoundTurbineGovernorDynamics: The cross-compound turbine governor with which this low-pressure synchronous machine is associated. Default: None + :MechanicalLoadDynamics: Mechanical load model associated with this synchronous machine model. Default: None + :ExcitationSystemDynamics: Excitation system model associated with this synchronous machine model. Default: None + :TurbineGovernorDynamics: Turbine-governor model associated with this synchronous machine model. Multiplicity of greater than one is intended to support hydro units that have multiple turbines on one generator. Default: "list" + :GenICompensationForGenJ: Compensation of voltage compensator`s generator for current flow out of this generator. Default: "list" + """ + + cgmesProfile = RotatingMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachine": [ + cgmesProfile.DY.value, + ], + "CrossCompoundTurbineGovernorDyanmics": [ + cgmesProfile.DY.value, + ], + "CrossCompoundTurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + "MechanicalLoadDynamics": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + "GenICompensationForGenJ": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RotatingMachineDynamics: \n" + + RotatingMachineDynamics.__doc__ + ) + + def __init__( + self, + SynchronousMachine=None, + CrossCompoundTurbineGovernorDyanmics=None, + CrossCompoundTurbineGovernorDynamics=None, + MechanicalLoadDynamics=None, + ExcitationSystemDynamics=None, + TurbineGovernorDynamics="list", + GenICompensationForGenJ="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachine = SynchronousMachine + self.CrossCompoundTurbineGovernorDyanmics = CrossCompoundTurbineGovernorDyanmics + self.CrossCompoundTurbineGovernorDynamics = CrossCompoundTurbineGovernorDynamics + self.MechanicalLoadDynamics = MechanicalLoadDynamics + self.ExcitationSystemDynamics = ExcitationSystemDynamics + self.TurbineGovernorDynamics = TurbineGovernorDynamics + self.GenICompensationForGenJ = GenICompensationForGenJ + + def __str__(self): + str = "class=SynchronousMachineDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineEquivalentCircuit.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineEquivalentCircuit.py new file mode 100644 index 00000000..bacb5f6d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineEquivalentCircuit.py @@ -0,0 +1,104 @@ +from .SynchronousMachineDetailed import SynchronousMachineDetailed + + +class SynchronousMachineEquivalentCircuit(SynchronousMachineDetailed): + """ + The electrical equations for all variations of the synchronous models are based on the SynchronousEquivalentCircuit diagram for the direct- and quadrature- axes. Equations for conversion between equivalent circuit and time constant reactance forms: Xd = Xad + Xl X'd = Xl + Xad x Xfd / (Xad + Xfd) X"d = Xl + Xad x Xfd x X1d / (Xad x Xfd + Xad x X1d + Xfd x X1d) Xq = Xaq + Xl X'q = Xl + Xaq x X1q / (Xaq + X1q) X"q = Xl + Xaq x X1q x X2q / (Xaq x X1q + Xaq x X2q + X1q x X2q) T'do = (Xad + Xfd) / (omega0 x Rfd) T"do = (Xad x Xfd + Xad x X1d + Xfd x X1d) / (omega0 x R1d x (Xad + Xfd) T'qo = (Xaq + X1q) / (omega0 x R1q) T"qo = (Xaq x X1q + Xaq x X2q + X1q x X2q) / (omega0 x R2q x (Xaq + X1q) Same equations using CIM attributes from SynchronousMachineTimeConstantReactance class on left of "=" and SynchronousMachineEquivalentCircuit class on right (except as noted): xDirectSync = xad + RotatingMachineDynamics.statorLeakageReactance xDirectTrans = RotatingMachineDynamics.statorLeakageReactance + xad x xfd / (xad + xfd) xDirectSubtrans = RotatingMachineDynamics.statorLeakageReactance + xad x xfd x x1d / (xad x xfd + xad x x1d + xfd x x1d) xQuadSync = xaq + RotatingMachineDynamics.statorLeakageReactance xQuadTrans = RotatingMachineDynamics.statorLeakageReactance + xaq x x1q / (xaq+ x1q) xQuadSubtrans = RotatingMachineDynamics.statorLeakageReactance + xaq x x1q x x2q / (xaq x x1q + xaq x x2q + x1q x x2q) tpdo = (xad + xfd) / (2 x pi x nominal frequency x rfd) tppdo = (xad x xfd + xad x x1d + xfd x x1d) / (2 x pi x nominal frequency x r1d x (xad + xfd) tpqo = (xaq + x1q) / (2 x pi x nominal frequency x r1q) tppqo = (xaq x x1q + xaq x x2q + x1q x x2q) / (2 x pi x nominal frequency x r2q x (xaq + x1q) These are only valid for a simplified model where "Canay" reactance is zero. + + :xad: Direct-axis mutual reactance. Default: 0.0 + :rfd: Field winding resistance. Default: 0.0 + :xfd: Field winding leakage reactance. Default: 0.0 + :r1d: Direct-axis damper 1 winding resistance. Default: 0.0 + :x1d: Direct-axis damper 1 winding leakage reactance. Default: 0.0 + :xf1d: Differential mutual (`Canay`) reactance. Default: 0.0 + :xaq: Quadrature-axis mutual reactance. Default: 0.0 + :r1q: Quadrature-axis damper 1 winding resistance. Default: 0.0 + :x1q: Quadrature-axis damper 1 winding leakage reactance. Default: 0.0 + :r2q: Quadrature-axis damper 2 winding resistance. Default: 0.0 + :x2q: Quadrature-axis damper 2 winding leakage reactance. Default: 0.0 + """ + + cgmesProfile = SynchronousMachineDetailed.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "xad": [ + cgmesProfile.DY.value, + ], + "rfd": [ + cgmesProfile.DY.value, + ], + "xfd": [ + cgmesProfile.DY.value, + ], + "r1d": [ + cgmesProfile.DY.value, + ], + "x1d": [ + cgmesProfile.DY.value, + ], + "xf1d": [ + cgmesProfile.DY.value, + ], + "xaq": [ + cgmesProfile.DY.value, + ], + "r1q": [ + cgmesProfile.DY.value, + ], + "x1q": [ + cgmesProfile.DY.value, + ], + "r2q": [ + cgmesProfile.DY.value, + ], + "x2q": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDetailed: \n" + + SynchronousMachineDetailed.__doc__ + ) + + def __init__( + self, + xad=0.0, + rfd=0.0, + xfd=0.0, + r1d=0.0, + x1d=0.0, + xf1d=0.0, + xaq=0.0, + r1q=0.0, + x1q=0.0, + r2q=0.0, + x2q=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.xad = xad + self.rfd = rfd + self.xfd = xfd + self.r1d = r1d + self.x1d = x1d + self.xf1d = xf1d + self.xaq = xaq + self.r1q = r1q + self.x1q = x1q + self.r2q = r2q + self.x2q = x2q + + def __str__(self): + str = "class=SynchronousMachineEquivalentCircuit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineKind.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineKind.py new file mode 100644 index 00000000..288497c6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class SynchronousMachineKind(Base): + """ + Synchronous machine type. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineModelKind.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineModelKind.py new file mode 100644 index 00000000..31b1d407 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineModelKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class SynchronousMachineModelKind(Base): + """ + Type of synchronous machine model used in dynamic simulation applications. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineModelKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineOperatingMode.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineOperatingMode.py new file mode 100644 index 00000000..e634feec --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineOperatingMode.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class SynchronousMachineOperatingMode(Base): + """ + Synchronous machine operating mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=SynchronousMachineOperatingMode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineSimplified.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineSimplified.py new file mode 100644 index 00000000..2dfca3cd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineSimplified.py @@ -0,0 +1,35 @@ +from .SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineSimplified(SynchronousMachineDynamics): + """ + The simplified model represents a synchronous generator as a constant internal voltage behind an impedance (Rs + jXp) as shown in the Simplified diagram. Since internal voltage is held constant, there is no Efd input and any excitation system model will be ignored. There is also no Ifd output. This model should not be used for representing a real generator except, perhaps, small generators whose response is insignificant. The parameters used for the simplified model include: - RotatingMachineDynamics.damping (D); - RotatingMachineDynamics.inertia (H); - RotatingMachineDynamics.statorLeakageReactance (used to exchange jXp for SynchronousMachineSimplified); - RotatingMachineDynamics.statorResistance (Rs). + + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=SynchronousMachineSimplified\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineTimeConstantReactance.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineTimeConstantReactance.py new file mode 100644 index 00000000..d05f4053 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineTimeConstantReactance.py @@ -0,0 +1,122 @@ +from .SynchronousMachineDetailed import SynchronousMachineDetailed + + +class SynchronousMachineTimeConstantReactance(SynchronousMachineDetailed): + """ + Synchronous machine detailed modelling types are defined by the combination of the attributes SynchronousMachineTimeConstantReactance.modelType and SynchronousMachineTimeConstantReactance.rotorType. Parameter details:
  1. The "p" in the time-related attribute names is a substitution for a "prime" in the usual parameter notation, e.g. tpdo refers to T'do.
  2. The parameters used for models expressed in time constant reactance form include:
- RotatingMachine.ratedS (MVAbase); - RotatingMachineDynamics.damping (D); - RotatingMachineDynamics.inertia (H); - RotatingMachineDynamics.saturationFactor (S1); - RotatingMachineDynamics.saturationFactor120 (S12); - RotatingMachineDynamics.statorLeakageReactance (Xl); - RotatingMachineDynamics.statorResistance (Rs); - SynchronousMachineTimeConstantReactance.ks (Ks); - SynchronousMachineDetailed.saturationFactorQAxis (S1q); - SynchronousMachineDetailed.saturationFactor120QAxis (S12q); - SynchronousMachineDetailed.efdBaseRatio; - SynchronousMachineDetailed.ifdBaseType; - .xDirectSync (Xd); - .xDirectTrans (X'd); - .xDirectSubtrans (X''d); - .xQuadSync (Xq); - .xQuadTrans (X'q); - .xQuadSubtrans (X''q); - .tpdo (T'do); - .tppdo (T''do); - .tpqo (T'qo); - .tppqo (T''qo); - .tc. + + :rotorType: Type of rotor on physical machine. Default: None + :modelType: Type of synchronous machine model used in dynamic simulation applications. Default: None + :ks: Saturation loading correction factor (Ks) (>= 0). Used only by type J model. Typical value = 0. Default: 0.0 + :xDirectSync: Direct-axis synchronous reactance (Xd) (>= SynchronousMachineTimeConstantReactance.xDirectTrans). The quotient of a sustained value of that AC component of armature voltage that is produced by the total direct-axis flux due to direct-axis armature current and the value of the AC component of this current, the machine running at rated speed. Typical value = 1,8. Default: 0.0 + :xDirectTrans: Direct-axis transient reactance (unsaturated) (X`d) (>= SynchronousMachineTimeConstantReactance.xDirectSubtrans). Typical value = 0,5. Default: 0.0 + :xDirectSubtrans: Direct-axis subtransient reactance (unsaturated) (X``d) (> RotatingMachineDynamics.statorLeakageReactance). Typical value = 0,2. Default: 0.0 + :xQuadSync: Quadrature-axis synchronous reactance (Xq) (>= SynchronousMachineTimeConstantReactance.xQuadTrans). The ratio of the component of reactive armature voltage, due to the quadrature-axis component of armature current, to this component of current, under steady state conditions and at rated frequency. Typical value = 1,6. Default: 0.0 + :xQuadTrans: Quadrature-axis transient reactance (X`q) (>= SynchronousMachineTimeConstantReactance.xQuadSubtrans). Typical value = 0,3. Default: 0.0 + :xQuadSubtrans: Quadrature-axis subtransient reactance (X``q) (> RotatingMachineDynamics.statorLeakageReactance). Typical value = 0,2. Default: 0.0 + :tpdo: Direct-axis transient rotor time constant (T`do) (> SynchronousMachineTimeConstantReactance.tppdo). Typical value = 5. Default: 0 + :tppdo: Direct-axis subtransient rotor time constant (T``do) (> 0). Typical value = 0,03. Default: 0 + :tpqo: Quadrature-axis transient rotor time constant (T`qo) (> SynchronousMachineTimeConstantReactance.tppqo). Typical value = 0,5. Default: 0 + :tppqo: Quadrature-axis subtransient rotor time constant (T``qo) (> 0). Typical value = 0,03. Default: 0 + :tc: Damping time constant for `Canay` reactance (>= 0). Typical value = 0. Default: 0 + """ + + cgmesProfile = SynchronousMachineDetailed.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "rotorType": [ + cgmesProfile.DY.value, + ], + "modelType": [ + cgmesProfile.DY.value, + ], + "ks": [ + cgmesProfile.DY.value, + ], + "xDirectSync": [ + cgmesProfile.DY.value, + ], + "xDirectTrans": [ + cgmesProfile.DY.value, + ], + "xDirectSubtrans": [ + cgmesProfile.DY.value, + ], + "xQuadSync": [ + cgmesProfile.DY.value, + ], + "xQuadTrans": [ + cgmesProfile.DY.value, + ], + "xQuadSubtrans": [ + cgmesProfile.DY.value, + ], + "tpdo": [ + cgmesProfile.DY.value, + ], + "tppdo": [ + cgmesProfile.DY.value, + ], + "tpqo": [ + cgmesProfile.DY.value, + ], + "tppqo": [ + cgmesProfile.DY.value, + ], + "tc": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDetailed: \n" + + SynchronousMachineDetailed.__doc__ + ) + + def __init__( + self, + rotorType=None, + modelType=None, + ks=0.0, + xDirectSync=0.0, + xDirectTrans=0.0, + xDirectSubtrans=0.0, + xQuadSync=0.0, + xQuadTrans=0.0, + xQuadSubtrans=0.0, + tpdo=0, + tppdo=0, + tpqo=0, + tppqo=0, + tc=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.rotorType = rotorType + self.modelType = modelType + self.ks = ks + self.xDirectSync = xDirectSync + self.xDirectTrans = xDirectTrans + self.xDirectSubtrans = xDirectSubtrans + self.xQuadSync = xQuadSync + self.xQuadTrans = xQuadTrans + self.xQuadSubtrans = xQuadSubtrans + self.tpdo = tpdo + self.tppdo = tppdo + self.tpqo = tpqo + self.tppqo = tppqo + self.tc = tc + + def __str__(self): + str = "class=SynchronousMachineTimeConstantReactance\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineUserDefined.py new file mode 100644 index 00000000..c7e13141 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/SynchronousMachineUserDefined.py @@ -0,0 +1,46 @@ +from .SynchronousMachineDynamics import SynchronousMachineDynamics + + +class SynchronousMachineUserDefined(SynchronousMachineDynamics): + """ + Synchronous machine whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = SynchronousMachineDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SynchronousMachineDynamics: \n" + + SynchronousMachineDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=SynchronousMachineUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TapChanger.py b/cimpy_3/cimpy/cgmes_v3_0/TapChanger.py new file mode 100644 index 00000000..444e291c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TapChanger.py @@ -0,0 +1,106 @@ +from .PowerSystemResource import PowerSystemResource + + +class TapChanger(PowerSystemResource): + """ + Mechanism for changing transformer winding tap positions. + + :controlEnabled: Specifies the regulation status of the equipment. True is regulating, false is not regulating. Default: False + :step: Tap changer position. Starting step for a steady state solution. Non integer values are allowed to support continuous tap variables. The reasons for continuous value are to support study cases where no discrete tap changer has yet been designed, a solution where a narrow voltage band forces the tap step to oscillate or to accommodate for a continuous solution as input. The attribute shall be equal to or greater than lowStep and equal to or less than highStep. Default: 0.0 + :TapSchedules: A TapChanger can have TapSchedules. Default: "list" + :highStep: Highest possible tap step position, advance from neutral. The attribute shall be greater than lowStep. Default: 0 + :lowStep: Lowest possible tap step position, retard from neutral. Default: 0 + :ltcFlag: Specifies whether or not a TapChanger has load tap changing capabilities. Default: False + :neutralStep: The neutral tap step position for this winding. The attribute shall be equal to or greater than lowStep and equal or less than highStep. It is the step position where the voltage is neutralU when the other terminals of the transformer are at the ratedU. If there are other tap changers on the transformer those taps are kept constant at their neutralStep. Default: 0 + :neutralU: Voltage at which the winding operates at the neutral tap setting. It is the voltage at the terminal of the PowerTransformerEnd associated with the tap changer when all tap changers on the transformer are at their neutralStep position. Normally neutralU of the tap changer is the same as ratedU of the PowerTransformerEnd, but it can differ in special cases such as when the tapping mechanism is separate from the winding more common on lower voltage transformers. This attribute is not relevant for PhaseTapChangerAsymmetrical, PhaseTapChangerSymmetrical and PhaseTapChangerLinear. Default: 0.0 + :normalStep: The tap step position used in `normal` network operation for this winding. For a `Fixed` tap changer indicates the current physical tap setting. The attribute shall be equal to or greater than lowStep and equal to or less than highStep. Default: 0 + :TapChangerControl: The regulating control scheme in which this tap changer participates. Default: None + :SvTapStep: The tap step state associated with the tap changer. Default: None + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "controlEnabled": [ + cgmesProfile.SSH.value, + ], + "step": [ + cgmesProfile.SSH.value, + ], + "TapSchedules": [ + cgmesProfile.EQ.value, + ], + "highStep": [ + cgmesProfile.EQ.value, + ], + "lowStep": [ + cgmesProfile.EQ.value, + ], + "ltcFlag": [ + cgmesProfile.EQ.value, + ], + "neutralStep": [ + cgmesProfile.EQ.value, + ], + "neutralU": [ + cgmesProfile.EQ.value, + ], + "normalStep": [ + cgmesProfile.EQ.value, + ], + "TapChangerControl": [ + cgmesProfile.EQ.value, + ], + "SvTapStep": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__( + self, + controlEnabled=False, + step=0.0, + TapSchedules="list", + highStep=0, + lowStep=0, + ltcFlag=False, + neutralStep=0, + neutralU=0.0, + normalStep=0, + TapChangerControl=None, + SvTapStep=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.controlEnabled = controlEnabled + self.step = step + self.TapSchedules = TapSchedules + self.highStep = highStep + self.lowStep = lowStep + self.ltcFlag = ltcFlag + self.neutralStep = neutralStep + self.neutralU = neutralU + self.normalStep = normalStep + self.TapChangerControl = TapChangerControl + self.SvTapStep = SvTapStep + + def __str__(self): + str = "class=TapChanger\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TapChangerControl.py b/cimpy_3/cimpy/cgmes_v3_0/TapChangerControl.py new file mode 100644 index 00000000..c0ba1418 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TapChangerControl.py @@ -0,0 +1,40 @@ +from .RegulatingControl import RegulatingControl + + +class TapChangerControl(RegulatingControl): + """ + Describes behaviour specific to tap changers, e.g. how the voltage at the end of a line varies with the load level and compensation of the voltage drop by tap adjustment. + + :TapChanger: The tap changers that participates in this regulating tap control scheme. Default: "list" + """ + + cgmesProfile = RegulatingControl.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "TapChanger": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class RegulatingControl: \n" + + RegulatingControl.__doc__ + ) + + def __init__(self, TapChanger="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TapChanger = TapChanger + + def __str__(self): + str = "class=TapChangerControl\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TapChangerTablePoint.py b/cimpy_3/cimpy/cgmes_v3_0/TapChangerTablePoint.py new file mode 100644 index 00000000..ab34e845 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TapChangerTablePoint.py @@ -0,0 +1,66 @@ +from .Base import Base + + +class TapChangerTablePoint(Base): + """ + Describes each tap step in the tabular curve. + + :b: The magnetizing branch susceptance deviation as a percentage of nominal value. The actual susceptance is calculated as follows: calculated magnetizing susceptance = b(nominal) * (1 + b(from this class)/100). The b(nominal) is defined as the static magnetizing susceptance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :g: The magnetizing branch conductance deviation as a percentage of nominal value. The actual conductance is calculated as follows: calculated magnetizing conductance = g(nominal) * (1 + g(from this class)/100). The g(nominal) is defined as the static magnetizing conductance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :r: The resistance deviation as a percentage of nominal value. The actual reactance is calculated as follows: calculated resistance = r(nominal) * (1 + r(from this class)/100). The r(nominal) is defined as the static resistance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + :ratio: The voltage at the tap step divided by rated voltage of the transformer end having the tap changer. Hence this is a value close to one. For example, if the ratio at step 1 is 1.01, and the rated voltage of the transformer end is 110kV, then the voltage obtained by setting the tap changer to step 1 to is 111.1kV. Default: 0.0 + :step: The tap step. Default: 0 + :x: The series reactance deviation as a percentage of nominal value. The actual reactance is calculated as follows: calculated reactance = x(nominal) * (1 + x(from this class)/100). The x(nominal) is defined as the static series reactance on the associated power transformer end or ends. This model assumes the star impedance (pi model) form. Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "b": [ + cgmesProfile.EQ.value, + ], + "g": [ + cgmesProfile.EQ.value, + ], + "r": [ + cgmesProfile.EQ.value, + ], + "ratio": [ + cgmesProfile.EQ.value, + ], + "step": [ + cgmesProfile.EQ.value, + ], + "x": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + b=0.0, + g=0.0, + r=0.0, + ratio=0.0, + step=0, + x=0.0, + ): + + self.b = b + self.g = g + self.r = r + self.ratio = ratio + self.step = step + self.x = x + + def __str__(self): + str = "class=TapChangerTablePoint\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TapSchedule.py b/cimpy_3/cimpy/cgmes_v3_0/TapSchedule.py new file mode 100644 index 00000000..12fc4421 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TapSchedule.py @@ -0,0 +1,39 @@ +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule + + +class TapSchedule(SeasonDayTypeSchedule): + """ + A pre-established pattern over time for a tap step. + + :TapChanger: A TapSchedule is associated with a TapChanger. Default: None + """ + + cgmesProfile = SeasonDayTypeSchedule.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "TapChanger": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class SeasonDayTypeSchedule: \n" + + SeasonDayTypeSchedule.__doc__ + ) + + def __init__(self, TapChanger=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TapChanger = TapChanger + + def __str__(self): + str = "class=TapSchedule\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Temperature.py b/cimpy_3/cimpy/cgmes_v3_0/Temperature.py new file mode 100644 index 00000000..39228e73 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Temperature.py @@ -0,0 +1,52 @@ +from .Base import Base + + +class Temperature(Base): + """ + Value of temperature in degrees Celsius. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SC.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + cgmesProfile.SC.value, + ], + "unit": [ + cgmesProfile.DY.value, + cgmesProfile.SC.value, + ], + "value": [ + cgmesProfile.DY.value, + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=Temperature\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Terminal.py b/cimpy_3/cimpy/cgmes_v3_0/Terminal.py new file mode 100644 index 00000000..74d30463 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Terminal.py @@ -0,0 +1,125 @@ +from .ACDCTerminal import ACDCTerminal + + +class Terminal(ACDCTerminal): + """ + An AC electrical connection point to a piece of conducting equipment. Terminals are connected at physical connection points called connectivity nodes. + + :ConductingEquipment: The conducting equipment of the terminal. Conducting equipment have terminals that may be connected to other conducting equipment terminals via connectivity nodes or topological nodes. Default: None + :RemoteInputSignal: Input signal coming from this terminal. Default: "list" + :TopologicalNode: The topological node associated with the terminal. This can be used as an alternative to the connectivity node path to topological node, thus making it unnecessary to model connectivity nodes in some cases. Note that the if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: None + :ConverterDCSides: All converters` DC sides linked to this point of common coupling terminal. Default: "list" + :AuxiliaryEquipment: The auxiliary equipment connected to the terminal. Default: "list" + :ConnectivityNode: The connectivity node to which this terminal connects with zero impedance. Default: None + :RegulatingControl: The controls regulating this terminal. Default: "list" + :phases: Represents the normal network phasing condition. If the attribute is missing, three phases (ABC) shall be assumed, except for terminals of grounding classes (specializations of EarthFaultCompensator, GroundDisconnector, and Ground) which will be assumed to be N. Therefore, phase code ABCN is explicitly declared when needed, e.g. for star point grounding equipment. The phase code on terminals connecting same ConnectivityNode or same TopologicalNode as well as for equipment between two terminals shall be consistent. Default: None + :TransformerEnd: All transformer ends connected at this terminal. Default: "list" + :TieFlow: The control area tie flows to which this terminal associates. Default: "list" + :HasSecondMutualCoupling: Mutual couplings with the branch associated as the first branch. Default: "list" + :HasFirstMutualCoupling: Mutual couplings associated with the branch as the first branch. Default: "list" + :SvPowerFlow: The power flow state variable associated with the terminal. Default: None + """ + + cgmesProfile = ACDCTerminal.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.TP.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "ConductingEquipment": [ + cgmesProfile.DY.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "TopologicalNode": [ + cgmesProfile.TP.value, + ], + "ConverterDCSides": [ + cgmesProfile.EQ.value, + ], + "AuxiliaryEquipment": [ + cgmesProfile.EQ.value, + ], + "ConnectivityNode": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "RegulatingControl": [ + cgmesProfile.EQ.value, + ], + "phases": [ + cgmesProfile.EQ.value, + ], + "TransformerEnd": [ + cgmesProfile.EQ.value, + ], + "TieFlow": [ + cgmesProfile.EQ.value, + ], + "HasSecondMutualCoupling": [ + cgmesProfile.SC.value, + ], + "HasFirstMutualCoupling": [ + cgmesProfile.SC.value, + ], + "SvPowerFlow": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCTerminal: \n" + ACDCTerminal.__doc__ + ) + + def __init__( + self, + ConductingEquipment=None, + RemoteInputSignal="list", + TopologicalNode=None, + ConverterDCSides="list", + AuxiliaryEquipment="list", + ConnectivityNode=None, + RegulatingControl="list", + phases=None, + TransformerEnd="list", + TieFlow="list", + HasSecondMutualCoupling="list", + HasFirstMutualCoupling="list", + SvPowerFlow=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.ConductingEquipment = ConductingEquipment + self.RemoteInputSignal = RemoteInputSignal + self.TopologicalNode = TopologicalNode + self.ConverterDCSides = ConverterDCSides + self.AuxiliaryEquipment = AuxiliaryEquipment + self.ConnectivityNode = ConnectivityNode + self.RegulatingControl = RegulatingControl + self.phases = phases + self.TransformerEnd = TransformerEnd + self.TieFlow = TieFlow + self.HasSecondMutualCoupling = HasSecondMutualCoupling + self.HasFirstMutualCoupling = HasFirstMutualCoupling + self.SvPowerFlow = SvPowerFlow + + def __str__(self): + str = "class=Terminal\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TextDiagramObject.py b/cimpy_3/cimpy/cgmes_v3_0/TextDiagramObject.py new file mode 100644 index 00000000..3c575bf0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TextDiagramObject.py @@ -0,0 +1,38 @@ +from .DiagramObject import DiagramObject + + +class TextDiagramObject(DiagramObject): + """ + A diagram object for placing free-text or text derived from an associated domain object. + + :text: The text that is displayed by this text diagram object. Default: '' + """ + + cgmesProfile = DiagramObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "text": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DiagramObject: \n" + DiagramObject.__doc__ + ) + + def __init__(self, text="", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.text = text + + def __str__(self): + str = "class=TextDiagramObject\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ThermalGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/ThermalGeneratingUnit.py new file mode 100644 index 00000000..1df86533 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ThermalGeneratingUnit.py @@ -0,0 +1,62 @@ +from .GeneratingUnit import GeneratingUnit + + +class ThermalGeneratingUnit(GeneratingUnit): + """ + A generating unit whose prime mover could be a steam turbine, combustion turbine, or diesel engine. + + :CAESPlant: A thermal generating unit may be a member of a compressed air energy storage plant. Default: None + :CogenerationPlant: A thermal generating unit may be a member of a cogeneration plant. Default: None + :CombinedCyclePlant: A thermal generating unit may be a member of a combined cycle plant. Default: None + :FossilFuels: A thermal generating unit may have one or more fossil fuels. Default: "list" + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "CAESPlant": [ + cgmesProfile.EQ.value, + ], + "CogenerationPlant": [ + cgmesProfile.EQ.value, + ], + "CombinedCyclePlant": [ + cgmesProfile.EQ.value, + ], + "FossilFuels": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__( + self, + CAESPlant=None, + CogenerationPlant=None, + CombinedCyclePlant=None, + FossilFuels="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.CAESPlant = CAESPlant + self.CogenerationPlant = CogenerationPlant + self.CombinedCyclePlant = CombinedCyclePlant + self.FossilFuels = FossilFuels + + def __str__(self): + str = "class=ThermalGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TieFlow.py b/cimpy_3/cimpy/cgmes_v3_0/TieFlow.py new file mode 100644 index 00000000..2225b880 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TieFlow.py @@ -0,0 +1,51 @@ +from .IdentifiedObject import IdentifiedObject + + +class TieFlow(IdentifiedObject): + """ + Defines the structure (in terms of location and direction) of the net interchange constraint for a control area. This constraint may be used by either AGC or power flow. + + :ControlArea: The control area of the tie flows. Default: None + :Terminal: The terminal to which this tie flow belongs. Default: None + :positiveFlowIn: Specifies the sign of the tie flow associated with a control area. True if positive flow into the terminal (load convention) is also positive flow into the control area. See the description of ControlArea for further explanation of how TieFlow.positiveFlowIn is used. Default: False + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "ControlArea": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "positiveFlowIn": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, ControlArea=None, Terminal=None, positiveFlowIn=False, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.ControlArea = ControlArea + self.Terminal = Terminal + self.positiveFlowIn = positiveFlowIn + + def __str__(self): + str = "class=TieFlow\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TopologicalIsland.py b/cimpy_3/cimpy/cgmes_v3_0/TopologicalIsland.py new file mode 100644 index 00000000..3da9eccd --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TopologicalIsland.py @@ -0,0 +1,46 @@ +from .IdentifiedObject import IdentifiedObject + + +class TopologicalIsland(IdentifiedObject): + """ + An electrically connected subset of the network. Topological islands can change as the current network state changes, e.g. due to: - disconnect switches or breakers changing state in a SCADA/EMS. - manual creation, change or deletion of topological nodes in a planning tool. Only energised TopologicalNode-s shall be part of the topological island. + + :AngleRefTopologicalNode: The angle reference for the island. Normally there is one TopologicalNode that is selected as the angle reference for each island. Other reference schemes exist, so the association is typically optional. Default: None + :TopologicalNodes: A topological node belongs to a topological island. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SV.value, + ], + "AngleRefTopologicalNode": [ + cgmesProfile.SV.value, + ], + "TopologicalNodes": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, AngleRefTopologicalNode=None, TopologicalNodes="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.AngleRefTopologicalNode = AngleRefTopologicalNode + self.TopologicalNodes = TopologicalNodes + + def __str__(self): + str = "class=TopologicalIsland\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TopologicalNode.py b/cimpy_3/cimpy/cgmes_v3_0/TopologicalNode.py new file mode 100644 index 00000000..45353614 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TopologicalNode.py @@ -0,0 +1,93 @@ +from .IdentifiedObject import IdentifiedObject + + +class TopologicalNode(IdentifiedObject): + """ + For a detailed substation model a topological node is a set of connectivity nodes that, in the current network state, are connected together through any type of closed switches, including jumpers. Topological nodes change as the current network state changes (i.e., switches, breakers, etc. change state). For a planning model, switch statuses are not used to form topological nodes. Instead they are manually created or deleted in a model builder tool. Topological nodes maintained this way are also called "busses". + + :BaseVoltage: The base voltage of the topological node. Default: None + :ConnectivityNodes: The connectivity nodes combine together to form this topological node. May depend on the current state of switches in the network. Default: "list" + :ConnectivityNodeContainer: The connectivity node container to which the topological node belongs. Default: None + :Terminal: The terminals associated with the topological node. This can be used as an alternative to the connectivity node path to terminal, thus making it unnecessary to model connectivity nodes in some cases. Note that if connectivity nodes are in the model, this association would probably not be used as an input specification. Default: "list" + :ReportingGroup: The reporting group to which the topological node belongs. Default: None + :SvInjection: The injection flows state variables associated with the topological node. Default: None + :SvVoltage: The state voltage associated with the topological node. Default: None + :AngleRefTopologicalIsland: The island for which the node is an angle reference. Normally there is one angle reference node for each island. Default: None + :TopologicalIsland: A topological node belongs to a topological island. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.TP.value, + cgmesProfile.SV.value, + ], + "BaseVoltage": [ + cgmesProfile.TP.value, + ], + "ConnectivityNodes": [ + cgmesProfile.TP.value, + ], + "ConnectivityNodeContainer": [ + cgmesProfile.TP.value, + ], + "Terminal": [ + cgmesProfile.TP.value, + ], + "ReportingGroup": [ + cgmesProfile.TP.value, + ], + "SvInjection": [ + cgmesProfile.SV.value, + ], + "SvVoltage": [ + cgmesProfile.SV.value, + ], + "AngleRefTopologicalIsland": [ + cgmesProfile.SV.value, + ], + "TopologicalIsland": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + BaseVoltage=None, + ConnectivityNodes="list", + ConnectivityNodeContainer=None, + Terminal="list", + ReportingGroup=None, + SvInjection=None, + SvVoltage=None, + AngleRefTopologicalIsland=None, + TopologicalIsland=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BaseVoltage = BaseVoltage + self.ConnectivityNodes = ConnectivityNodes + self.ConnectivityNodeContainer = ConnectivityNodeContainer + self.Terminal = Terminal + self.ReportingGroup = ReportingGroup + self.SvInjection = SvInjection + self.SvVoltage = SvVoltage + self.AngleRefTopologicalIsland = AngleRefTopologicalIsland + self.TopologicalIsland = TopologicalIsland + + def __str__(self): + str = "class=TopologicalNode\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py b/cimpy_3/cimpy/cgmes_v3_0/TopologyBoundaryVersion.py similarity index 96% rename from cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/TopologyBoundaryVersion.py index 5e3641f5..72b0065c 100644 --- a/cimpy/cgmes_v2_4_15/TopologyBoundaryVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/TopologyBoundaryVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# removed as per TC57CIM Profile part from standard book +"""from .Base import Base class TopologyBoundaryVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,8 +16,8 @@ class TopologyBoundaryVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' - + """ +""" cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.TP_BD.value, ], @@ -34,10 +35,10 @@ class TopologyBoundaryVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +49,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=TopologyBoundaryVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy/cgmes_v2_4_15/TopologyVersion.py b/cimpy_3/cimpy/cgmes_v3_0/TopologyVersion.py similarity index 94% rename from cimpy/cgmes_v2_4_15/TopologyVersion.py rename to cimpy_3/cimpy/cgmes_v3_0/TopologyVersion.py index e14a4cb5..a8ab316d 100644 --- a/cimpy/cgmes_v2_4_15/TopologyVersion.py +++ b/cimpy_3/cimpy/cgmes_v3_0/TopologyVersion.py @@ -1,8 +1,9 @@ -from .Base import Base +# removed as per TC57CIM Profile part from standard book +"""from .Base import Base class TopologyVersion(Base): - ''' +""" """ Version details. :baseUML: Base UML provided by CIM model manager. Default: '' @@ -15,9 +16,9 @@ class TopologyVersion(Base): :namespaceRDF: RDF namespace. Default: '' :namespaceUML: CIM UML namespace. Default: '' :shortName: The short name of the profile used in profile documentation. Default: '' - ''' + """ - cgmesProfile = Base.cgmesProfile +"""cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.TP.value, ], 'baseUML': [cgmesProfile.TP.value, ], @@ -34,10 +35,10 @@ class TopologyVersion(Base): serializationProfile = {} - + def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = '', entsoeUML = '', entsoeURI = '', modelDescriptionURI = '', namespaceRDF = '', namespaceUML = '', shortName = '', ): - + self.baseUML = baseUML self.baseURI = baseURI self.date = date @@ -48,10 +49,11 @@ def __init__(self, baseUML = '', baseURI = '', date = '', differenceModelURI = ' self.namespaceRDF = namespaceRDF self.namespaceUML = namespaceUML self.shortName = shortName - + def __str__(self): str = 'class=TopologyVersion\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str +""" diff --git a/cimpy_3/cimpy/cgmes_v3_0/TownDetail.py b/cimpy_3/cimpy/cgmes_v3_0/TownDetail.py new file mode 100644 index 00000000..48c2557d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TownDetail.py @@ -0,0 +1,60 @@ +from .Base import Base + + +class TownDetail(Base): + """ + Town details, in the context of address. + + :code: Town code. Default: '' + :section: Town section. For example, it is common for there to be 36 sections per township. Default: '' + :name: Town name. Default: '' + :stateOrProvince: Name of the state or province. Default: '' + :country: Name of the country. Default: '' + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + "code": [ + cgmesProfile.GL.value, + ], + "section": [ + cgmesProfile.GL.value, + ], + "name": [ + cgmesProfile.GL.value, + ], + "stateOrProvince": [ + cgmesProfile.GL.value, + ], + "country": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + code="", + section="", + name="", + stateOrProvince="", + country="", + ): + + self.code = code + self.section = section + self.name = name + self.stateOrProvince = stateOrProvince + self.country = country + + def __str__(self): + str = "class=TownDetail\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TransformerEnd.py b/cimpy_3/cimpy/cgmes_v3_0/TransformerEnd.py new file mode 100644 index 00000000..4b33be65 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TransformerEnd.py @@ -0,0 +1,87 @@ +from .IdentifiedObject import IdentifiedObject + + +class TransformerEnd(IdentifiedObject): + """ + A conducting connection point of a power transformer. It corresponds to a physical transformer winding terminal. In earlier CIM versions, the TransformerWinding class served a similar purpose, but this class is more flexible because it associates to terminal but is not a specialization of ConductingEquipment. + + :BaseVoltage: Base voltage of the transformer end. This is essential for PU calculation. Default: None + :PhaseTapChanger: Phase tap changer associated with this transformer end. Default: None + :RatioTapChanger: Ratio tap changer associated with this transformer end. Default: None + :Terminal: Terminal of the power transformer to which this transformer end belongs. Default: None + :endNumber: Number for this transformer end, corresponding to the end`s order in the power transformer vector group or phase angle clock number. Highest voltage winding should be 1. Each end within a power transformer should have a unique subsequent end number. Note the transformer end number need not match the terminal sequence number. Default: 0 + :rground: (for Yn and Zn connections) Resistance part of neutral impedance where `grounded` is true. Default: 0.0 + :grounded: (for Yn and Zn connections) True if the neutral is solidly grounded. Default: False + :xground: (for Yn and Zn connections) Reactive part of neutral impedance where `grounded` is true. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.SC.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + ], + "PhaseTapChanger": [ + cgmesProfile.EQ.value, + ], + "RatioTapChanger": [ + cgmesProfile.EQ.value, + ], + "Terminal": [ + cgmesProfile.EQ.value, + ], + "endNumber": [ + cgmesProfile.EQ.value, + ], + "rground": [ + cgmesProfile.SC.value, + ], + "grounded": [ + cgmesProfile.SC.value, + ], + "xground": [ + cgmesProfile.SC.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + BaseVoltage=None, + PhaseTapChanger=None, + RatioTapChanger=None, + Terminal=None, + endNumber=0, + rground=0.0, + grounded=False, + xground=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BaseVoltage = BaseVoltage + self.PhaseTapChanger = PhaseTapChanger + self.RatioTapChanger = RatioTapChanger + self.Terminal = Terminal + self.endNumber = endNumber + self.rground = rground + self.grounded = grounded + self.xground = xground + + def __str__(self): + str = "class=TransformerEnd\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TurbLCFB1.py b/cimpy_3/cimpy/cgmes_v3_0/TurbLCFB1.py new file mode 100644 index 00000000..16f7c95c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TurbLCFB1.py @@ -0,0 +1,110 @@ +from .TurbineLoadControllerDynamics import TurbineLoadControllerDynamics + + +class TurbLCFB1(TurbineLoadControllerDynamics): + """ + Turbine load controller model developed by WECC. This model represents a supervisory turbine load controller that acts to maintain turbine power at a set value by continuous adjustment of the turbine governor speed-load reference. This model is intended to represent slow reset 'outer loop' controllers managing the action of the turbine governor. + + :mwbase: Base for power values (MWbase) (> 0). Unit = MW. Default: 0.0 + :speedReferenceGovernor: Type of turbine governor reference (Type). true = speed reference governor false = load reference governor. Typical value = true. Default: False + :db: Controller deadband (db). Typical value = 0. Default: 0.0 + :emax: Maximum control error (Emax) (see parameter detail 4). Typical value = 0,02. Default: 0.0 + :fb: Frequency bias gain (Fb). Typical value = 0. Default: 0.0 + :kp: Proportional gain (Kp). Typical value = 0. Default: 0.0 + :ki: Integral gain (Ki). Typical value = 0. Default: 0.0 + :fbf: Frequency bias flag (Fbf). true = enable frequency bias false = disable frequency bias. Typical value = false. Default: False + :pbf: Power controller flag (Pbf). true = enable load controller false = disable load controller. Typical value = false. Default: False + :tpelec: Power transducer time constant (Tpelec) (>= 0). Typical value = 0. Default: 0 + :irmax: Maximum turbine speed/load reference bias (Irmax) (see parameter detail 3). Typical value = 0. Default: 0.0 + :pmwset: Power controller setpoint (Pmwset) (see parameter detail 1). Unit = MW. Typical value = 0. Default: 0.0 + """ + + cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "mwbase": [ + cgmesProfile.DY.value, + ], + "speedReferenceGovernor": [ + cgmesProfile.DY.value, + ], + "db": [ + cgmesProfile.DY.value, + ], + "emax": [ + cgmesProfile.DY.value, + ], + "fb": [ + cgmesProfile.DY.value, + ], + "kp": [ + cgmesProfile.DY.value, + ], + "ki": [ + cgmesProfile.DY.value, + ], + "fbf": [ + cgmesProfile.DY.value, + ], + "pbf": [ + cgmesProfile.DY.value, + ], + "tpelec": [ + cgmesProfile.DY.value, + ], + "irmax": [ + cgmesProfile.DY.value, + ], + "pmwset": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineLoadControllerDynamics: \n" + + TurbineLoadControllerDynamics.__doc__ + ) + + def __init__( + self, + mwbase=0.0, + speedReferenceGovernor=False, + db=0.0, + emax=0.0, + fb=0.0, + kp=0.0, + ki=0.0, + fbf=False, + pbf=False, + tpelec=0, + irmax=0.0, + pmwset=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.mwbase = mwbase + self.speedReferenceGovernor = speedReferenceGovernor + self.db = db + self.emax = emax + self.fb = fb + self.kp = kp + self.ki = ki + self.fbf = fbf + self.pbf = pbf + self.tpelec = tpelec + self.irmax = irmax + self.pmwset = pmwset + + def __str__(self): + str = "class=TurbLCFB1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorDynamics.py new file mode 100644 index 00000000..3ef6f00e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorDynamics.py @@ -0,0 +1,56 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class TurbineGovernorDynamics(DynamicsFunctionBlock): + """ + Turbine-governor function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :SynchronousMachineDynamics: Synchronous machine model with which this turbine-governor model is associated. TurbineGovernorDynamics shall have either an association to SynchronousMachineDynamics or to AsynchronousMachineDynamics. Default: None + :AsynchronousMachineDynamics: Asynchronous machine model with which this turbine-governor model is associated. TurbineGovernorDynamics shall have either an association to SynchronousMachineDynamics or to AsynchronousMachineDynamics. Default: None + :TurbineLoadControllerDynamics: Turbine load controller providing input to this turbine-governor. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "SynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + "TurbineLoadControllerDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + SynchronousMachineDynamics=None, + AsynchronousMachineDynamics=None, + TurbineLoadControllerDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.SynchronousMachineDynamics = SynchronousMachineDynamics + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + self.TurbineLoadControllerDynamics = TurbineLoadControllerDynamics + + def __str__(self): + str = "class=TurbineGovernorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorUserDefined.py new file mode 100644 index 00000000..88592634 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TurbineGovernorUserDefined.py @@ -0,0 +1,46 @@ +from .TurbineGovernorDynamics import TurbineGovernorDynamics + + +class TurbineGovernorUserDefined(TurbineGovernorDynamics): + """ + Turbine-governor function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = TurbineGovernorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineGovernorDynamics: \n" + + TurbineGovernorDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=TurbineGovernorUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerDynamics.py new file mode 100644 index 00000000..836d8e06 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerDynamics.py @@ -0,0 +1,39 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class TurbineLoadControllerDynamics(DynamicsFunctionBlock): + """ + Turbine load controller function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :TurbineGovernorDynamics: Turbine-governor controlled by this turbine load controller. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "TurbineGovernorDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, TurbineGovernorDynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.TurbineGovernorDynamics = TurbineGovernorDynamics + + def __str__(self): + str = "class=TurbineLoadControllerDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerUserDefined.py new file mode 100644 index 00000000..2d4dd51a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/TurbineLoadControllerUserDefined.py @@ -0,0 +1,46 @@ +from .TurbineLoadControllerDynamics import TurbineLoadControllerDynamics + + +class TurbineLoadControllerUserDefined(TurbineLoadControllerDynamics): + """ + Turbine load controller function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = TurbineLoadControllerDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class TurbineLoadControllerDynamics: \n" + + TurbineLoadControllerDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=TurbineLoadControllerUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcLim2Simplified.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLim2Simplified.py new file mode 100644 index 00000000..f4ff2a63 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLim2Simplified.py @@ -0,0 +1,80 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcLim2Simplified(UnderexcitationLimiterDynamics): + """ + Simplified type UEL2 underexcitation limiter. This model can be derived from UnderexcLimIEEE2. The limit characteristic (look -up table) is a single straight-line, the same as UnderexcLimIEEE2 (see Figure 10.4 (p 32), IEEE 421.5-2005 Section 10.2). + + :q0: Segment Q initial point (Q0). Typical value = -0,31. Default: 0.0 + :q1: Segment Q end point (Q1). Typical value = -0,1. Default: 0.0 + :p0: Segment P initial point (P0). Typical value = 0. Default: 0.0 + :p1: Segment P end point (P1). Typical value = 1. Default: 0.0 + :kui: Gain Under excitation limiter (KUI). Typical value = 0,1. Default: 0.0 + :vuimin: Minimum error signal (VUIMIN) (< UnderexcLim2Simplified.vuimax). Typical value = 0. Default: 0.0 + :vuimax: Maximum error signal (VUIMAX) (> UnderexcLim2Simplified.vuimin). Typical value = 1. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "q0": [ + cgmesProfile.DY.value, + ], + "q1": [ + cgmesProfile.DY.value, + ], + "p0": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + q0=0.0, + q1=0.0, + p0=0.0, + p1=0.0, + kui=0.0, + vuimin=0.0, + vuimax=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.q0 = q0 + self.q1 = q1 + self.p0 = p0 + self.p1 = p1 + self.kui = kui + self.vuimin = vuimin + self.vuimax = vuimax + + def __str__(self): + str = "class=UnderexcLim2Simplified\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE1.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE1.py new file mode 100644 index 00000000..b0d485e2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE1.py @@ -0,0 +1,128 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcLimIEEE1(UnderexcitationLimiterDynamics): + """ + Type UEL1 model which has a circular limit boundary when plotted in terms of machine reactive power vs. real power output. Reference: IEEE UEL1 421.5-2005, 10.1. + + :kur: UEL radius setting (KUR). Typical value = 1,95. Default: 0.0 + :kuc: UEL centre setting (KUC). Typical value = 1,38. Default: 0.0 + :kuf: UEL excitation system stabilizer gain (KUF). Typical value = 3,3. Default: 0.0 + :vurmax: UEL maximum limit for radius phasor magnitude (VURMAX). Typical value = 5,8. Default: 0.0 + :vucmax: UEL maximum limit for operating point phasor magnitude (VUCMAX). Typical value = 5,8. Default: 0.0 + :kui: UEL integral gain (KUI). Typical value = 0. Default: 0.0 + :kul: UEL proportional gain (KUL). Typical value = 100. Default: 0.0 + :vuimax: UEL integrator output maximum limit (VUIMAX) (> UnderexcLimIEEE1.vuimin). Default: 0.0 + :vuimin: UEL integrator output minimum limit (VUIMIN) (< UnderexcLimIEEE1.vuimax). Default: 0.0 + :tu1: UEL lead time constant (TU1) (>= 0). Typical value = 0. Default: 0 + :tu2: UEL lag time constant (TU2) (>= 0). Typical value = 0,05. Default: 0 + :tu3: UEL lead time constant (TU3) (>= 0). Typical value = 0. Default: 0 + :tu4: UEL lag time constant (TU4) (>= 0). Typical value = 0. Default: 0 + :vulmax: UEL output maximum limit (VULMAX) (> UnderexcLimIEEE1.vulmin). Typical value = 18. Default: 0.0 + :vulmin: UEL output minimum limit (VULMIN) (< UnderexcLimIEEE1.vulmax). Typical value = -18. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kur": [ + cgmesProfile.DY.value, + ], + "kuc": [ + cgmesProfile.DY.value, + ], + "kuf": [ + cgmesProfile.DY.value, + ], + "vurmax": [ + cgmesProfile.DY.value, + ], + "vucmax": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "kul": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "tu1": [ + cgmesProfile.DY.value, + ], + "tu2": [ + cgmesProfile.DY.value, + ], + "tu3": [ + cgmesProfile.DY.value, + ], + "tu4": [ + cgmesProfile.DY.value, + ], + "vulmax": [ + cgmesProfile.DY.value, + ], + "vulmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + kur=0.0, + kuc=0.0, + kuf=0.0, + vurmax=0.0, + vucmax=0.0, + kui=0.0, + kul=0.0, + vuimax=0.0, + vuimin=0.0, + tu1=0, + tu2=0, + tu3=0, + tu4=0, + vulmax=0.0, + vulmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kur = kur + self.kuc = kuc + self.kuf = kuf + self.vurmax = vurmax + self.vucmax = vucmax + self.kui = kui + self.kul = kul + self.vuimax = vuimax + self.vuimin = vuimin + self.tu1 = tu1 + self.tu2 = tu2 + self.tu3 = tu3 + self.tu4 = tu4 + self.vulmax = vulmax + self.vulmin = vulmin + + def __str__(self): + str = "class=UnderexcLimIEEE1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE2.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE2.py new file mode 100644 index 00000000..fc2bd4fe --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimIEEE2.py @@ -0,0 +1,278 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcLimIEEE2(UnderexcitationLimiterDynamics): + """ + Type UEL2 underexcitation limiter which has either a straight-line or multi-segment characteristic when plotted in terms of machine reactive power output vs. real power output. Reference: IEEE UEL2 421.5-2005, 10.2 (limit characteristic lookup table shown in Figure 10.4 (p 32)). + + :tuv: Voltage filter time constant (TUV) (>= 0). Typical value = 5. Default: 0 + :tup: Real power filter time constant (TUP) (>= 0). Typical value = 5. Default: 0 + :tuq: Reactive power filter time constant (TUQ) (>= 0). Typical value = 0. Default: 0 + :kui: UEL integral gain (KUI). Typical value = 0,5. Default: 0.0 + :kul: UEL proportional gain (KUL). Typical value = 0,8. Default: 0.0 + :vuimax: UEL integrator output maximum limit (VUIMAX) (> UnderexcLimIEEE2.vuimin). Typical value = 0,25. Default: 0.0 + :vuimin: UEL integrator output minimum limit (VUIMIN) (< UnderexcLimIEEE2.vuimax). Typical value = 0. Default: 0.0 + :kuf: UEL excitation system stabilizer gain (KUF). Typical value = 0. Default: 0.0 + :kfb: Gain associated with optional integrator feedback input signal to UEL (KFB). Typical value = 0. Default: 0.0 + :tul: Time constant associated with optional integrator feedback input signal to UEL (TUL) (>= 0). Typical value = 0. Default: 0 + :tu1: UEL lead time constant (TU1) (>= 0). Typical value = 0. Default: 0 + :tu2: UEL lag time constant (TU2) (>= 0). Typical value = 0. Default: 0 + :tu3: UEL lead time constant (TU3) (>= 0). Typical value = 0. Default: 0 + :tu4: UEL lag time constant (TU4) (>= 0). Typical value = 0. Default: 0 + :vulmax: UEL output maximum limit (VULMAX) (> UnderexcLimIEEE2.vulmin). Typical value = 0,25. Default: 0.0 + :vulmin: UEL output minimum limit (VULMIN) (< UnderexcLimIEEE2.vulmax). Typical value = 0. Default: 0.0 + :p0: Real power values for endpoints (P0). Typical value = 0. Default: 0.0 + :q0: Reactive power values for endpoints (Q0). Typical value = -0,31. Default: 0.0 + :p1: Real power values for endpoints (P1). Typical value = 0,3. Default: 0.0 + :q1: Reactive power values for endpoints (Q1). Typical value = -0,31. Default: 0.0 + :p2: Real power values for endpoints (P2). Typical value = 0,6. Default: 0.0 + :q2: Reactive power values for endpoints (Q2). Typical value = -0,28. Default: 0.0 + :p3: Real power values for endpoints (P3). Typical value = 0,9. Default: 0.0 + :q3: Reactive power values for endpoints (Q3). Typical value = -0,21. Default: 0.0 + :p4: Real power values for endpoints (P4). Typical value = 1,02. Default: 0.0 + :q4: Reactive power values for endpoints (Q4). Typical value = 0. Default: 0.0 + :p5: Real power values for endpoints (P5). Default: 0.0 + :q5: Reactive power values for endpoints (Q5). Default: 0.0 + :p6: Real power values for endpoints (P6). Default: 0.0 + :q6: Reactive power values for endpoints (Q6). Default: 0.0 + :p7: Real power values for endpoints (P7). Default: 0.0 + :q7: Reactive power values for endpoints (Q7). Default: 0.0 + :p8: Real power values for endpoints (P8). Default: 0.0 + :q8: Reactive power values for endpoints (Q8). Default: 0.0 + :p9: Real power values for endpoints (P9). Default: 0.0 + :q9: Reactive power values for endpoints (Q9). Default: 0.0 + :p10: Real power values for endpoints (P10). Default: 0.0 + :q10: Reactive power values for endpoints (Q10). Default: 0.0 + :k1: UEL terminal voltage exponent applied to real power input to UEL limit look-up table (k1). Typical value = 2. Default: 0.0 + :k2: UEL terminal voltage exponent applied to reactive power output from UEL limit look-up table (k2). Typical value = 2. Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tuv": [ + cgmesProfile.DY.value, + ], + "tup": [ + cgmesProfile.DY.value, + ], + "tuq": [ + cgmesProfile.DY.value, + ], + "kui": [ + cgmesProfile.DY.value, + ], + "kul": [ + cgmesProfile.DY.value, + ], + "vuimax": [ + cgmesProfile.DY.value, + ], + "vuimin": [ + cgmesProfile.DY.value, + ], + "kuf": [ + cgmesProfile.DY.value, + ], + "kfb": [ + cgmesProfile.DY.value, + ], + "tul": [ + cgmesProfile.DY.value, + ], + "tu1": [ + cgmesProfile.DY.value, + ], + "tu2": [ + cgmesProfile.DY.value, + ], + "tu3": [ + cgmesProfile.DY.value, + ], + "tu4": [ + cgmesProfile.DY.value, + ], + "vulmax": [ + cgmesProfile.DY.value, + ], + "vulmin": [ + cgmesProfile.DY.value, + ], + "p0": [ + cgmesProfile.DY.value, + ], + "q0": [ + cgmesProfile.DY.value, + ], + "p1": [ + cgmesProfile.DY.value, + ], + "q1": [ + cgmesProfile.DY.value, + ], + "p2": [ + cgmesProfile.DY.value, + ], + "q2": [ + cgmesProfile.DY.value, + ], + "p3": [ + cgmesProfile.DY.value, + ], + "q3": [ + cgmesProfile.DY.value, + ], + "p4": [ + cgmesProfile.DY.value, + ], + "q4": [ + cgmesProfile.DY.value, + ], + "p5": [ + cgmesProfile.DY.value, + ], + "q5": [ + cgmesProfile.DY.value, + ], + "p6": [ + cgmesProfile.DY.value, + ], + "q6": [ + cgmesProfile.DY.value, + ], + "p7": [ + cgmesProfile.DY.value, + ], + "q7": [ + cgmesProfile.DY.value, + ], + "p8": [ + cgmesProfile.DY.value, + ], + "q8": [ + cgmesProfile.DY.value, + ], + "p9": [ + cgmesProfile.DY.value, + ], + "q9": [ + cgmesProfile.DY.value, + ], + "p10": [ + cgmesProfile.DY.value, + ], + "q10": [ + cgmesProfile.DY.value, + ], + "k1": [ + cgmesProfile.DY.value, + ], + "k2": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, + tuv=0, + tup=0, + tuq=0, + kui=0.0, + kul=0.0, + vuimax=0.0, + vuimin=0.0, + kuf=0.0, + kfb=0.0, + tul=0, + tu1=0, + tu2=0, + tu3=0, + tu4=0, + vulmax=0.0, + vulmin=0.0, + p0=0.0, + q0=0.0, + p1=0.0, + q1=0.0, + p2=0.0, + q2=0.0, + p3=0.0, + q3=0.0, + p4=0.0, + q4=0.0, + p5=0.0, + q5=0.0, + p6=0.0, + q6=0.0, + p7=0.0, + q7=0.0, + p8=0.0, + q8=0.0, + p9=0.0, + q9=0.0, + p10=0.0, + q10=0.0, + k1=0.0, + k2=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tuv = tuv + self.tup = tup + self.tuq = tuq + self.kui = kui + self.kul = kul + self.vuimax = vuimax + self.vuimin = vuimin + self.kuf = kuf + self.kfb = kfb + self.tul = tul + self.tu1 = tu1 + self.tu2 = tu2 + self.tu3 = tu3 + self.tu4 = tu4 + self.vulmax = vulmax + self.vulmin = vulmin + self.p0 = p0 + self.q0 = q0 + self.p1 = p1 + self.q1 = q1 + self.p2 = p2 + self.q2 = q2 + self.p3 = p3 + self.q3 = q3 + self.p4 = p4 + self.q4 = q4 + self.p5 = p5 + self.q5 = q5 + self.p6 = p6 + self.q6 = q6 + self.p7 = p7 + self.q7 = q7 + self.p8 = p8 + self.q8 = q8 + self.p9 = p9 + self.q9 = q9 + self.p10 = p10 + self.q10 = q10 + self.k1 = k1 + self.k2 = k2 + + def __str__(self): + str = "class=UnderexcLimIEEE2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX1.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX1.py new file mode 100644 index 00000000..354ce664 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX1.py @@ -0,0 +1,66 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcLimX1(UnderexcitationLimiterDynamics): + """ + Allis-Chalmers minimum excitation limiter. + + :kf2: Differential gain (KF2). Default: 0.0 + :tf2: Differential time constant (TF2) (>= 0). Default: 0 + :km: Minimum excitation limit gain (KM). Default: 0.0 + :tm: Minimum excitation limit time constant (TM) (>= 0). Default: 0 + :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 + :k: Minimum excitation limit slope (K) (> 0). Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "melmax": [ + cgmesProfile.DY.value, + ], + "k": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, kf2=0.0, tf2=0, km=0.0, tm=0, melmax=0.0, k=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.kf2 = kf2 + self.tf2 = tf2 + self.km = km + self.tm = tm + self.melmax = melmax + self.k = k + + def __str__(self): + str = "class=UnderexcLimX1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX2.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX2.py new file mode 100644 index 00000000..720098f0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcLimX2.py @@ -0,0 +1,71 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcLimX2(UnderexcitationLimiterDynamics): + """ + Westinghouse minimum excitation limiter. + + :kf2: Differential gain (KF2). Default: 0.0 + :tf2: Differential time constant (TF2) (>= 0). Default: 0 + :km: Minimum excitation limit gain (KM). Default: 0.0 + :tm: Minimum excitation limit time constant (TM) (>= 0). Default: 0 + :melmax: Minimum excitation limit value (MELMAX). Default: 0.0 + :qo: Excitation centre setting (QO). Default: 0.0 + :r: Excitation radius (R). Default: 0.0 + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kf2": [ + cgmesProfile.DY.value, + ], + "tf2": [ + cgmesProfile.DY.value, + ], + "km": [ + cgmesProfile.DY.value, + ], + "tm": [ + cgmesProfile.DY.value, + ], + "melmax": [ + cgmesProfile.DY.value, + ], + "qo": [ + cgmesProfile.DY.value, + ], + "r": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, kf2=0.0, tf2=0, km=0.0, tm=0, melmax=0.0, qo=0.0, r=0.0, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.kf2 = kf2 + self.tf2 = tf2 + self.km = km + self.tm = tm + self.melmax = melmax + self.qo = qo + self.r = r + + def __str__(self): + str = "class=UnderexcLimX2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterDynamics.py new file mode 100644 index 00000000..3edaace2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterDynamics.py @@ -0,0 +1,46 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class UnderexcitationLimiterDynamics(DynamicsFunctionBlock): + """ + Underexcitation limiter function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :RemoteInputSignal: Remote input signal used by this underexcitation limiter model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this underexcitation limiter model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=UnderexcitationLimiterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterUserDefined.py new file mode 100644 index 00000000..0b3684fb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnderexcitationLimiterUserDefined.py @@ -0,0 +1,46 @@ +from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics + + +class UnderexcitationLimiterUserDefined(UnderexcitationLimiterDynamics): + """ + Underexcitation limiter function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = UnderexcitationLimiterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class UnderexcitationLimiterDynamics: \n" + + UnderexcitationLimiterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=UnderexcitationLimiterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnitMultiplier.py b/cimpy_3/cimpy/cgmes_v3_0/UnitMultiplier.py new file mode 100644 index 00000000..bb89eaed --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnitMultiplier.py @@ -0,0 +1,38 @@ +from .Base import Base + + +class UnitMultiplier(Base): + """ + The unit multipliers defined for the CIM. When applied to unit symbols, the unit symbol is treated as a derived unit. Regardless of the contents of the unit symbol text, the unit symbol shall be treated as if it were a single-character unit symbol. Unit symbols should not contain multipliers, and it should be left to the multiplier to define the multiple for an entire data type. For example, if a unit symbol is "m2Pers" and the multiplier is "k", then the value is k(m**2/s), and the multiplier applies to the entire final value, not to any individual part of the value. This can be conceptualized by substituting a derived unit symbol for the unit type. If one imagines that the symbol "Þ" represents the derived unit "m2Pers", then applying the multiplier "k" can be conceptualized simply as "kÞ". For example, the SI unit for mass is "kg" and not "g". If the unit symbol is defined as "kg", then the multiplier is applied to "kg" as a whole and does not replace the "k" in front of the "g". In this case, the multiplier of "m" would be used with the unit symbol of "kg" to represent one gram. As a text string, this violates the instructions in IEC 80000-1. However, because the unit symbol in CIM is treated as a derived unit instead of as an SI unit, it makes more sense to conceptualize the "kg" as if it were replaced by one of the proposed replacements for the SI mass symbol. If one imagines that the "kg" were replaced by a symbol "Þ", then it is easier to conceptualize the multiplier "m" as creating the proper unit "mÞ", and not the forbidden unit "mkg". + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=UnitMultiplier\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/UnitSymbol.py b/cimpy_3/cimpy/cgmes_v3_0/UnitSymbol.py new file mode 100644 index 00000000..2cf6202b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/UnitSymbol.py @@ -0,0 +1,38 @@ +from .Base import Base + + +class UnitSymbol(Base): + """ + The derived units defined for usage in the CIM. In some cases, the derived unit is equal to an SI unit. Whenever possible, the standard derived symbol is used instead of the formula for the derived unit. For example, the unit symbol Farad is defined as "F" instead of "CPerV". In cases where a standard symbol does not exist for a derived unit, the formula for the unit is used as the unit symbol. For example, density does not have a standard symbol and so it is represented as "kgPerm3". With the exception of the "kg", which is an SI unit, the unit symbols do not contain multipliers and therefore represent the base derived unit to which a multiplier can be applied as a whole. Every unit symbol is treated as an unparseable text as if it were a single-letter symbol. The meaning of each unit symbol is defined by the accompanying descriptive text and not by the text contents of the unit symbol. To allow the widest possible range of serializations without requiring special character handling, several substitutions are made which deviate from the format described in IEC 80000-1. The division symbol "/" is replaced by the letters "Per". Exponents are written in plain text after the unit as "m3" instead of being formatted as "m" with a superscript of 3 or introducing a symbol as in "m^3". The degree symbol "[SYMBOL REMOVED]" is replaced with the letters "deg". Any clarification of the meaning for a substitution is included in the description for the unit symbol. Non-SI units are included in list of unit symbols to allow sources of data to be correctly labelled with their non-SI units (for example, a GPS sensor that is reporting numbers that represent feet instead of meters). This allows software to use the unit symbol information correctly convert and scale the raw data of those sources into SI-based units. The integer values are used for harmonization with IEC 61850. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.DL.value, + cgmesProfile.OP.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=UnitSymbol\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VAdjIEEE.py b/cimpy_3/cimpy/cgmes_v3_0/VAdjIEEE.py new file mode 100644 index 00000000..fa5f645d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VAdjIEEE.py @@ -0,0 +1,74 @@ +from .VoltageAdjusterDynamics import VoltageAdjusterDynamics + + +class VAdjIEEE(VoltageAdjusterDynamics): + """ + IEEE voltage adjuster which is used to represent the voltage adjuster in either a power factor or VAr control system. Reference: IEEE 421.5-2005, 11.1. + + :vadjf: Set high to provide a continuous raise or lower (VADJF). Default: 0.0 + :adjslew: Rate at which output of adjuster changes (ADJ_SLEW). Unit = s / PU. Typical value = 300. Default: 0.0 + :vadjmax: Maximum output of the adjuster (VADJMAX) (> VAdjIEEE.vadjmin). Typical value = 1,1. Default: 0.0 + :vadjmin: Minimum output of the adjuster (VADJMIN) (< VAdjIEEE.vadjmax). Typical value = 0,9. Default: 0.0 + :taon: Time that adjuster pulses are on (TAON) (>= 0). Typical value = 0,1. Default: 0 + :taoff: Time that adjuster pulses are off (TAOFF) (>= 0). Typical value = 0,5. Default: 0 + """ + + cgmesProfile = VoltageAdjusterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "vadjf": [ + cgmesProfile.DY.value, + ], + "adjslew": [ + cgmesProfile.DY.value, + ], + "vadjmax": [ + cgmesProfile.DY.value, + ], + "vadjmin": [ + cgmesProfile.DY.value, + ], + "taon": [ + cgmesProfile.DY.value, + ], + "taoff": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageAdjusterDynamics: \n" + + VoltageAdjusterDynamics.__doc__ + ) + + def __init__( + self, + vadjf=0.0, + adjslew=0.0, + vadjmax=0.0, + vadjmin=0.0, + taon=0, + taoff=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.vadjf = vadjf + self.adjslew = adjslew + self.vadjmax = vadjmax + self.vadjmin = vadjmin + self.taon = taon + self.taoff = taoff + + def __str__(self): + str = "class=VAdjIEEE\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType1.py b/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType1.py new file mode 100644 index 00000000..3a0c8d4f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType1.py @@ -0,0 +1,49 @@ +from .VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VCompIEEEType1(VoltageCompensatorDynamics): + """ + Terminal voltage transducer and load compensator as defined in IEEE 421.5-2005, 4. This model is common to all excitation system models described in the IEEE Standard. Parameter details:
  1. If Rc and Xc are set to zero, the load compensation is not employed and the behaviour is as a simple sensing circuit.
  1. If all parameters (Rc, Xc and Tr) are set to zero, the standard model VCompIEEEType1 is bypassed.
Reference: IEEE 421.5-2005 4. + + :rc: Resistive component of compensation of a generator (Rc) (>= 0). Default: 0.0 + :xc: Reactive component of compensation of a generator (Xc) (>= 0). Default: 0.0 + :tr: Time constant which is used for the combined voltage sensing and compensation signal (Tr) (>= 0). Default: 0 + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "rc": [ + cgmesProfile.DY.value, + ], + "xc": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__(self, rc=0.0, xc=0.0, tr=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.rc = rc + self.xc = xc + self.tr = tr + + def __str__(self): + str = "class=VCompIEEEType1\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType2.py b/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType2.py new file mode 100644 index 00000000..c4c73175 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VCompIEEEType2.py @@ -0,0 +1,44 @@ +from .VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VCompIEEEType2(VoltageCompensatorDynamics): + """ + Terminal voltage transducer and load compensator as defined in IEEE 421.5-2005, 4. This model is designed to cover the following types of compensation:
  • reactive droop;
  • transformer-drop or line-drop compensation;
  • reactive differential compensation known also as cross-current compensation.
Reference: IEEE 421.5-2005, 4. + + :tr: Time constant which is used for the combined voltage sensing and compensation signal (Tr) (>= 0). Default: 0 + :GenICompensationForGenJ: Compensation of this voltage compensator`s generator for current flow out of another generator. Default: "list" + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "GenICompensationForGenJ": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__(self, tr=0, GenICompensationForGenJ="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.tr = tr + self.GenICompensationForGenJ = GenICompensationForGenJ + + def __str__(self): + str = "class=VCompIEEEType2\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VSCDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/VSCDynamics.py new file mode 100644 index 00000000..54d53e2b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VSCDynamics.py @@ -0,0 +1,38 @@ +from .HVDCDynamics import HVDCDynamics + + +class VSCDynamics(HVDCDynamics): + """ + VSC function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :VsConverter: Voltage source converter to which voltage source converter dynamics model applies. Default: None + """ + + cgmesProfile = HVDCDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "VsConverter": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class HVDCDynamics: \n" + HVDCDynamics.__doc__ + ) + + def __init__(self, VsConverter=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VsConverter = VsConverter + + def __str__(self): + str = "class=VSCDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VSCUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/VSCUserDefined.py new file mode 100644 index 00000000..551c3d88 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VSCUserDefined.py @@ -0,0 +1,43 @@ +from .VSCDynamics import VSCDynamics + + +class VSCUserDefined(VSCDynamics): + """ + Voltage source converter (VSC) function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = VSCDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class VSCDynamics: \n" + VSCDynamics.__doc__ + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=VSCUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Validity.py b/cimpy_3/cimpy/cgmes_v3_0/Validity.py new file mode 100644 index 00000000..ec945ab3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Validity.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class Validity(Base): + """ + Validity for MeasurementValue. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=Validity\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ValueAliasSet.py b/cimpy_3/cimpy/cgmes_v3_0/ValueAliasSet.py new file mode 100644 index 00000000..6a49db86 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ValueAliasSet.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class ValueAliasSet(IdentifiedObject): + """ + Describes the translation of a set of values into a name and is intendend to facilitate custom translations. Each ValueAliasSet has a name, description etc. A specific Measurement may represent a discrete state like Open, Closed, Intermediate etc. This requires a translation from the MeasurementValue.value number to a string, e.g. 0->"Invalid", 1->"Open", 2->"Closed", 3->"Intermediate". Each ValueToAlias member in ValueAliasSet.Value describe a mapping for one particular value to a name. + + :Commands: The Commands using the set for translation. Default: "list" + :Discretes: The Measurements using the set for translation. Default: "list" + :RaiseLowerCommands: The Commands using the set for translation. Default: "list" + :Values: The ValueToAlias mappings included in the set. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "Commands": [ + cgmesProfile.OP.value, + ], + "Discretes": [ + cgmesProfile.OP.value, + ], + "RaiseLowerCommands": [ + cgmesProfile.OP.value, + ], + "Values": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + Commands="list", + Discretes="list", + RaiseLowerCommands="list", + Values="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.Commands = Commands + self.Discretes = Discretes + self.RaiseLowerCommands = RaiseLowerCommands + self.Values = Values + + def __str__(self): + str = "class=ValueAliasSet\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/ValueToAlias.py b/cimpy_3/cimpy/cgmes_v3_0/ValueToAlias.py new file mode 100644 index 00000000..17c0dc9e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/ValueToAlias.py @@ -0,0 +1,44 @@ +from .IdentifiedObject import IdentifiedObject + + +class ValueToAlias(IdentifiedObject): + """ + Describes the translation of one particular value into a name, e.g. 1 as "Open". + + :ValueAliasSet: The ValueAliasSet having the ValueToAlias mappings. Default: None + :value: The value that is mapped. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.OP.value, + ], + "ValueAliasSet": [ + cgmesProfile.OP.value, + ], + "value": [ + cgmesProfile.OP.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, ValueAliasSet=None, value=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.ValueAliasSet = ValueAliasSet + self.value = value + + def __str__(self): + str = "class=ValueToAlias\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VisibilityLayer.py b/cimpy_3/cimpy/cgmes_v3_0/VisibilityLayer.py new file mode 100644 index 00000000..4233e7c3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VisibilityLayer.py @@ -0,0 +1,44 @@ +from .IdentifiedObject import IdentifiedObject + + +class VisibilityLayer(IdentifiedObject): + """ + Layers are typically used for grouping diagram objects according to themes and scales. Themes are used to display or hide certain information (e.g., lakes, borders), while scales are used for hiding or displaying information depending on the current zoom level (hide text when it is too small to be read, or when it exceeds the screen size). This is also called de-cluttering. CIM based graphics exchange supports an m:n relationship between diagram objects and layers. The importing system shall convert an m:n case into an appropriate 1:n representation if the importing system does not support m:n. + + :VisibleObjects: A visibility layer can contain one or more diagram objects. Default: "list" + :drawingOrder: The drawing order for this layer. The higher the number, the later the layer and the objects within it are rendered. Default: 0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DL.value, + ], + "VisibleObjects": [ + cgmesProfile.DL.value, + ], + "drawingOrder": [ + cgmesProfile.DL.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, VisibleObjects="list", drawingOrder=0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VisibleObjects = VisibleObjects + self.drawingOrder = drawingOrder + + def __str__(self): + str = "class=VisibilityLayer\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/Voltage.py b/cimpy_3/cimpy/cgmes_v3_0/Voltage.py new file mode 100644 index 00000000..2ea9006d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/Voltage.py @@ -0,0 +1,64 @@ +from .Base import Base + + +class Voltage(Base): + """ + Electrical voltage, can be both AC and DC. + + :value: Default: 0.0 + :multiplier: Default: None + :unit: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "value": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "multiplier": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + "unit": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + cgmesProfile.SC.value, + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + multiplier=None, + unit=None, + ): + + self.value = value + self.multiplier = multiplier + self.unit = unit + + def __str__(self): + str = "class=Voltage\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterDynamics.py new file mode 100644 index 00000000..bc168347 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterDynamics.py @@ -0,0 +1,39 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class VoltageAdjusterDynamics(DynamicsFunctionBlock): + """ + Voltage adjuster function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :PFVArControllerType1Dynamics: Power factor or VAr controller type 1 model with which this voltage adjuster is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "PFVArControllerType1Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__(self, PFVArControllerType1Dynamics=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.PFVArControllerType1Dynamics = PFVArControllerType1Dynamics + + def __str__(self): + str = "class=VoltageAdjusterDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterUserDefined.py new file mode 100644 index 00000000..354af44c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageAdjusterUserDefined.py @@ -0,0 +1,46 @@ +from .VoltageAdjusterDynamics import VoltageAdjusterDynamics + + +class VoltageAdjusterUserDefined(VoltageAdjusterDynamics): + """ + Voltage adjuster function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = VoltageAdjusterDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageAdjusterDynamics: \n" + + VoltageAdjusterDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=VoltageAdjusterUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorDynamics.py new file mode 100644 index 00000000..a15333e3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorDynamics.py @@ -0,0 +1,46 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class VoltageCompensatorDynamics(DynamicsFunctionBlock): + """ + Voltage compensator function block whose behaviour is described by reference to a standard model or by definition of a user-defined model. + + :RemoteInputSignal: Remote input signal used by this voltage compensator model. Default: None + :ExcitationSystemDynamics: Excitation system model with which this voltage compensator is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "ExcitationSystemDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, ExcitationSystemDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.ExcitationSystemDynamics = ExcitationSystemDynamics + + def __str__(self): + str = "class=VoltageCompensatorDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorUserDefined.py new file mode 100644 index 00000000..d7ec11ad --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageCompensatorUserDefined.py @@ -0,0 +1,46 @@ +from .VoltageCompensatorDynamics import VoltageCompensatorDynamics + + +class VoltageCompensatorUserDefined(VoltageCompensatorDynamics): + """ + Voltage compensator function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = VoltageCompensatorDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class VoltageCompensatorDynamics: \n" + + VoltageCompensatorDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=VoltageCompensatorUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageLevel.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageLevel.py new file mode 100644 index 00000000..28961dc0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageLevel.py @@ -0,0 +1,74 @@ +from .EquipmentContainer import EquipmentContainer + + +class VoltageLevel(EquipmentContainer): + """ + A collection of equipment at one common system voltage forming a switchgear. The equipment typically consists of breakers, busbars, instrumentation, control, regulation and protection devices as well as assemblies of all these. + + :BaseVoltage: The base voltage used for all equipment within the voltage level. Default: None + :Bays: The bays within this voltage level. Default: "list" + :Substation: The substation of the voltage level. Default: None + :highVoltageLimit: The bus bar`s high voltage limit. The limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with lowVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present. Default: 0.0 + :lowVoltageLimit: The bus bar`s low voltage limit. The limit applies to all equipment and nodes contained in a given VoltageLevel. It is not required that it is exchanged in pair with highVoltageLimit. It is preferable to use operational VoltageLimit, which prevails, if present. Default: 0.0 + """ + + cgmesProfile = EquipmentContainer.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "BaseVoltage": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Bays": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "Substation": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "highVoltageLimit": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + "lowVoltageLimit": [ + cgmesProfile.EQ.value, + cgmesProfile.EQBD.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class EquipmentContainer: \n" + + EquipmentContainer.__doc__ + ) + + def __init__( + self, + BaseVoltage=None, + Bays="list", + Substation=None, + highVoltageLimit=0.0, + lowVoltageLimit=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.BaseVoltage = BaseVoltage + self.Bays = Bays + self.Substation = Substation + self.highVoltageLimit = highVoltageLimit + self.lowVoltageLimit = lowVoltageLimit + + def __str__(self): + str = "class=VoltageLevel\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltageLimit.py b/cimpy_3/cimpy/cgmes_v3_0/VoltageLimit.py new file mode 100644 index 00000000..173b01b2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltageLimit.py @@ -0,0 +1,45 @@ +from .OperationalLimit import OperationalLimit + + +class VoltageLimit(OperationalLimit): + """ + Operational limit applied to voltage. The use of operational VoltageLimit is preferred instead of limits defined at VoltageLevel. The operational VoltageLimits are used, if present. + + :value: Limit on voltage. High or low limit nature of the limit depends upon the properties of the operational limit type. The attribute shall be a positive value or zero. Default: 0.0 + :normalValue: The normal limit on voltage. High or low limit nature of the limit depends upon the properties of the operational limit type. The attribute shall be a positive value or zero. Default: 0.0 + """ + + cgmesProfile = OperationalLimit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.SSH.value, + ], + "normalValue": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class OperationalLimit: \n" + + OperationalLimit.__doc__ + ) + + def __init__(self, value=0.0, normalValue=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.value = value + self.normalValue = normalValue + + def __str__(self): + str = "class=VoltageLimit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VoltagePerReactivePower.py b/cimpy_3/cimpy/cgmes_v3_0/VoltagePerReactivePower.py new file mode 100644 index 00000000..8121e0bc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VoltagePerReactivePower.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class VoltagePerReactivePower(Base): + """ + Voltage variation with reactive power. + + :value: Default: 0.0 + :unit: Default: None + :multiplier: Default: None + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "value": [ + cgmesProfile.EQ.value, + ], + "unit": [ + cgmesProfile.EQ.value, + ], + "multiplier": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + value=0.0, + unit=None, + multiplier=None, + ): + + self.value = value + self.unit = unit + self.multiplier = multiplier + + def __str__(self): + str = "class=VoltagePerReactivePower\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VolumeFlowRate.py b/cimpy_3/cimpy/cgmes_v3_0/VolumeFlowRate.py new file mode 100644 index 00000000..23b42c48 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VolumeFlowRate.py @@ -0,0 +1,48 @@ +from .Base import Base + + +class VolumeFlowRate(Base): + """ + Volume per time. + + :multiplier: Default: None + :unit: Default: None + :value: Default: 0.0 + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "multiplier": [ + cgmesProfile.DY.value, + ], + "unit": [ + cgmesProfile.DY.value, + ], + "value": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + multiplier=None, + unit=None, + value=0.0, + ): + + self.multiplier = multiplier + self.unit = unit + self.value = value + + def __str__(self): + str = "class=VolumeFlowRate\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VsCapabilityCurve.py b/cimpy_3/cimpy/cgmes_v3_0/VsCapabilityCurve.py new file mode 100644 index 00000000..18d236fa --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VsCapabilityCurve.py @@ -0,0 +1,36 @@ +from .Curve import Curve + + +class VsCapabilityCurve(Curve): + """ + The P-Q capability curve for a voltage source converter, with P on X-axis and Qmin and Qmax on Y1-axis and Y2-axis. + + :VsConverterDCSides: All converters with this capability curve. Default: "list" + """ + + cgmesProfile = Curve.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "VsConverterDCSides": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Curve: \n" + Curve.__doc__ + + def __init__(self, VsConverterDCSides="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.VsConverterDCSides = VsConverterDCSides + + def __str__(self): + str = "class=VsCapabilityCurve\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VsConverter.py b/cimpy_3/cimpy/cgmes_v3_0/VsConverter.py new file mode 100644 index 00000000..7ecb3c55 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VsConverter.py @@ -0,0 +1,130 @@ +from .ACDCConverter import ACDCConverter + + +class VsConverter(ACDCConverter): + """ + DC side of the voltage source converter (VSC). + + :VSCDynamics: Voltage source converter dynamics model used to describe dynamic behaviour of this converter. Default: None + :droop: Droop constant. The pu value is obtained as D [kV/MW] x Sb / Ubdc. The attribute shall be a positive value. Default: 0.0 + :droopCompensation: Compensation constant. Used to compensate for voltage drop when controlling voltage at a distant bus. The attribute shall be a positive value. Default: 0.0 + :pPccControl: Kind of control of real power and/or DC voltage. Default: None + :qPccControl: Kind of reactive power control. Default: None + :qShare: Reactive power sharing factor among parallel converters on Uac control. The attribute shall be a positive value or zero. Default: 0.0 + :targetQpcc: Reactive power injection target in AC grid, at point of common coupling. Load sign convention is used, i.e. positive sign means flow out from a node. Default: 0.0 + :targetUpcc: Voltage target in AC grid, at point of common coupling. The attribute shall be a positive value. Default: 0.0 + :targetPowerFactorPcc: Power factor target at the AC side, at point of common coupling. The attribute shall be a positive value. Default: 0.0 + :targetPhasePcc: Phase target at AC side, at point of common coupling. The attribute shall be a positive value. Default: 0.0 + :targetPWMfactor: Magnitude of pulse-modulation factor. The attribute shall be a positive value. Default: 0.0 + :CapabilityCurve: Capability curve of this converter. Default: None + :maxModulationIndex: The maximum quotient between the AC converter voltage (Uc) and DC voltage (Ud). A factor typically less than 1. It is converter`s configuration data used in power flow. Default: 0.0 + :delta: Angle between VsConverter.uv and ACDCConverter.uc. It is converter`s state variable used in power flow. The attribute shall be a positive value or zero. Default: 0.0 + :uv: Line-to-line voltage on the valve side of the converter transformer. It is converter`s state variable, result from power flow. The attribute shall be a positive value. Default: 0.0 + """ + + cgmesProfile = ACDCConverter.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + cgmesProfile.SV.value, + ], + "VSCDynamics": [ + cgmesProfile.DY.value, + ], + "droop": [ + cgmesProfile.SSH.value, + ], + "droopCompensation": [ + cgmesProfile.SSH.value, + ], + "pPccControl": [ + cgmesProfile.SSH.value, + ], + "qPccControl": [ + cgmesProfile.SSH.value, + ], + "qShare": [ + cgmesProfile.SSH.value, + ], + "targetQpcc": [ + cgmesProfile.SSH.value, + ], + "targetUpcc": [ + cgmesProfile.SSH.value, + ], + "targetPowerFactorPcc": [ + cgmesProfile.SSH.value, + ], + "targetPhasePcc": [ + cgmesProfile.SSH.value, + ], + "targetPWMfactor": [ + cgmesProfile.SSH.value, + ], + "CapabilityCurve": [ + cgmesProfile.EQ.value, + ], + "maxModulationIndex": [ + cgmesProfile.EQ.value, + ], + "delta": [ + cgmesProfile.SV.value, + ], + "uv": [ + cgmesProfile.SV.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class ACDCConverter: \n" + ACDCConverter.__doc__ + ) + + def __init__( + self, + VSCDynamics=None, + droop=0.0, + droopCompensation=0.0, + pPccControl=None, + qPccControl=None, + qShare=0.0, + targetQpcc=0.0, + targetUpcc=0.0, + targetPowerFactorPcc=0.0, + targetPhasePcc=0.0, + targetPWMfactor=0.0, + CapabilityCurve=None, + maxModulationIndex=0.0, + delta=0.0, + uv=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.VSCDynamics = VSCDynamics + self.droop = droop + self.droopCompensation = droopCompensation + self.pPccControl = pPccControl + self.qPccControl = qPccControl + self.qShare = qShare + self.targetQpcc = targetQpcc + self.targetUpcc = targetUpcc + self.targetPowerFactorPcc = targetPowerFactorPcc + self.targetPhasePcc = targetPhasePcc + self.targetPWMfactor = targetPWMfactor + self.CapabilityCurve = CapabilityCurve + self.maxModulationIndex = maxModulationIndex + self.delta = delta + self.uv = uv + + def __str__(self): + str = "class=VsConverter\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VsPpccControlKind.py b/cimpy_3/cimpy/cgmes_v3_0/VsPpccControlKind.py new file mode 100644 index 00000000..6bfb17b7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VsPpccControlKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class VsPpccControlKind(Base): + """ + Types applicable to the control of real power and/or DC voltage by voltage source converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=VsPpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/VsQpccControlKind.py b/cimpy_3/cimpy/cgmes_v3_0/VsQpccControlKind.py new file mode 100644 index 00000000..eac5fb9f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/VsQpccControlKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class VsQpccControlKind(Base): + """ + Kind of reactive power control at point of common coupling for a voltage source converter. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=VsQpccControlKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WaveTrap.py b/cimpy_3/cimpy/cgmes_v3_0/WaveTrap.py new file mode 100644 index 00000000..ce2ed279 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WaveTrap.py @@ -0,0 +1,35 @@ +from .AuxiliaryEquipment import AuxiliaryEquipment + + +class WaveTrap(AuxiliaryEquipment): + """ + Line traps are devices that impede high frequency power line carrier signals yet present a negligible impedance at the main power frequency. + + """ + + cgmesProfile = AuxiliaryEquipment.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class AuxiliaryEquipment: \n" + + AuxiliaryEquipment.__doc__ + ) + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=WaveTrap\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindAeroConstIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindAeroConstIEC.py new file mode 100644 index 00000000..808678ae --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindAeroConstIEC.py @@ -0,0 +1,39 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindAeroConstIEC(IdentifiedObject): + """ + Constant aerodynamic torque model which assumes that the aerodynamic torque is constant. Reference: IEC 61400-27-1:2015, 5.6.1.1. + + :WindGenTurbineType1aIEC: Wind turbine type 1A model with which this wind aerodynamic model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType1aIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__(self, WindGenTurbineType1aIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindGenTurbineType1aIEC = WindGenTurbineType1aIEC + + def __str__(self): + str = "class=WindAeroConstIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindAeroOneDimIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindAeroOneDimIEC.py new file mode 100644 index 00000000..cdf9fc61 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindAeroOneDimIEC.py @@ -0,0 +1,51 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindAeroOneDimIEC(IdentifiedObject): + """ + One-dimensional aerodynamic model. Reference: IEC 61400-27-1:2015, 5.6.1.2. + + :ka: Aerodynamic gain (ka). It is a type-dependent parameter. Default: 0.0 + :thetaomega: Initial pitch angle (thetaomega0). It is a case-dependent parameter. Default: 0.0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this wind aerodynamic model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "ka": [ + cgmesProfile.DY.value, + ], + "thetaomega": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, ka=0.0, thetaomega=0.0, WindTurbineType3IEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.ka = ka + self.thetaomega = thetaomega + self.WindTurbineType3IEC = WindTurbineType3IEC + + def __str__(self): + str = "class=WindAeroOneDimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindAeroTwoDimIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindAeroTwoDimIEC.py new file mode 100644 index 00000000..ab6a8b38 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindAeroTwoDimIEC.py @@ -0,0 +1,86 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindAeroTwoDimIEC(IdentifiedObject): + """ + Two-dimensional aerodynamic model. Reference: IEC 61400-27-1:2015, 5.6.1.3. + + :dpomega: Partial derivative of aerodynamic power with respect to changes in WTR speed (dpomega). It is a type-dependent parameter. Default: 0.0 + :dptheta: Partial derivative of aerodynamic power with respect to changes in pitch angle (dptheta). It is a type-dependent parameter. Default: 0.0 + :dpv1: Partial derivative (dpv1). It is a type-dependent parameter. Default: 0.0 + :omegazero: Rotor speed if the wind turbine is not derated (omega0). It is a type-dependent parameter. Default: 0.0 + :pavail: Available aerodynamic power (pavail). It is a case-dependent parameter. Default: 0.0 + :thetazero: Pitch angle if the wind turbine is not derated (theta0). It is a case-dependent parameter. Default: 0.0 + :thetav2: Blade angle at twice rated wind speed (thetav2). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this wind aerodynamic model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpomega": [ + cgmesProfile.DY.value, + ], + "dptheta": [ + cgmesProfile.DY.value, + ], + "dpv1": [ + cgmesProfile.DY.value, + ], + "omegazero": [ + cgmesProfile.DY.value, + ], + "pavail": [ + cgmesProfile.DY.value, + ], + "thetazero": [ + cgmesProfile.DY.value, + ], + "thetav2": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpomega=0.0, + dptheta=0.0, + dpv1=0.0, + omegazero=0.0, + pavail=0.0, + thetazero=0.0, + thetav2=0.0, + WindTurbineType3IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpomega = dpomega + self.dptheta = dptheta + self.dpv1 = dpv1 + self.omegazero = omegazero + self.pavail = pavail + self.thetazero = thetazero + self.thetav2 = thetav2 + self.WindTurbineType3IEC = WindTurbineType3IEC + + def __str__(self): + str = "class=WindAeroTwoDimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContCurrLimIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContCurrLimIEC.py new file mode 100644 index 00000000..780c51cb --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContCurrLimIEC.py @@ -0,0 +1,92 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContCurrLimIEC(IdentifiedObject): + """ + Current limitation model. The current limitation model combines the physical limits and the control limits. Reference: IEC 61400-27-1:2015, 5.6.5.8. + + :imax: Maximum continuous current at the wind turbine terminals (imax). It is a type-dependent parameter. Default: 0.0 + :imaxdip: Maximum current during voltage dip at the wind turbine terminals (imaxdip). It is a project-dependent parameter. Default: 0.0 + :kpqu: Partial derivative of reactive current limit (Kpqu) versus voltage. It is a type-dependent parameter. Default: 0.0 + :mdfslim: Limitation of type 3 stator current (MDFSLim). MDFSLim = 1 for wind turbines type 4. It is a type-dependent parameter. false= total current limitation (0 in the IEC model) true=stator current limitation (1 in the IEC model). Default: False + :mqpri: Prioritisation of Q control during UVRT (Mqpri). It is a project-dependent parameter. true = reactive power priority (1 in the IEC model) false = active power priority (0 in the IEC model). Default: False + :tufiltcl: Voltage measurement filter time constant (Tufiltcl) (>= 0). It is a type-dependent parameter. Default: 0 + :upqumax: Wind turbine voltage in the operation point where zero reactive current can be delivered (upqumax). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind turbine type 3 or type 4 model with which this wind control current limitation model is associated. Default: None + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this current control limitation model. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "imax": [ + cgmesProfile.DY.value, + ], + "imaxdip": [ + cgmesProfile.DY.value, + ], + "kpqu": [ + cgmesProfile.DY.value, + ], + "mdfslim": [ + cgmesProfile.DY.value, + ], + "mqpri": [ + cgmesProfile.DY.value, + ], + "tufiltcl": [ + cgmesProfile.DY.value, + ], + "upqumax": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + imax=0.0, + imaxdip=0.0, + kpqu=0.0, + mdfslim=False, + mqpri=False, + tufiltcl=0, + upqumax=0.0, + WindTurbineType3or4IEC=None, + WindDynamicsLookupTable="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.imax = imax + self.imaxdip = imaxdip + self.kpqu = kpqu + self.mdfslim = mdfslim + self.mqpri = mqpri + self.tufiltcl = tufiltcl + self.upqumax = upqumax + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + self.WindDynamicsLookupTable = WindDynamicsLookupTable + + def __str__(self): + str = "class=WindContCurrLimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContPType3IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContPType3IEC.py new file mode 100644 index 00000000..eac80f2f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContPType3IEC.py @@ -0,0 +1,188 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContPType3IEC(IdentifiedObject): + """ + P control model type 3. Reference: IEC 61400-27-1:2015, 5.6.5.4. + + :dpmax: Maximum wind turbine power ramp rate (dpmax). It is a type-dependent parameter. Default: 0.0 + :dprefmax: Maximum ramp rate of wind turbine reference power (dprefmax). It is a project-dependent parameter. Default: 0.0 + :dprefmin: Minimum ramp rate of wind turbine reference power (dprefmin). It is a project-dependent parameter. Default: 0.0 + :dthetamax: Ramp limitation of torque, required in some grid codes (dtmax). It is a project-dependent parameter. Default: 0.0 + :dthetamaxuvrt: Limitation of torque rise rate during UVRT (dthetamaxUVRT). It is a project-dependent parameter. Default: 0.0 + :kdtd: Gain for active drive train damping (KDTD). It is a type-dependent parameter. Default: 0.0 + :kip: PI controller integration parameter (KIp). It is a type-dependent parameter. Default: 0.0 + :kpp: PI controller proportional gain (KPp). It is a type-dependent parameter. Default: 0.0 + :mpuvrt: Enable UVRT power control mode (MpUVRT). It is a project-dependent parameter. true = voltage control (1 in the IEC model) false = reactive power control (0 in the IEC model). Default: False + :omegaoffset: Offset to reference value that limits controller action during rotor speed changes (omegaoffset). It is a case-dependent parameter. Default: 0.0 + :pdtdmax: Maximum active drive train damping power (pDTDmax). It is a type-dependent parameter. Default: 0.0 + :tdvs: Time delay after deep voltage sags (TDVS) (>= 0). It is a project-dependent parameter. Default: 0 + :thetaemin: Minimum electrical generator torque (temin). It is a type-dependent parameter. Default: 0.0 + :thetauscale: Voltage scaling factor of reset-torque (tuscale). It is a project-dependent parameter. Default: 0.0 + :tomegafiltp3: Filter time constant for generator speed measurement (Tomegafiltp3) (>= 0). It is a type-dependent parameter. Default: 0 + :tpfiltp3: Filter time constant for power measurement (Tpfiltp3) (>= 0). It is a type-dependent parameter. Default: 0 + :tpord: Time constant in power order lag (Tpord). It is a type-dependent parameter. Default: 0.0 + :tufiltp3: Filter time constant for voltage measurement (Tufiltp3) (>= 0). It is a type-dependent parameter. Default: 0 + :tomegaref: Time constant in speed reference filter (Tomega,ref) (>= 0). It is a type-dependent parameter. Default: 0 + :udvs: Voltage limit for hold UVRT status after deep voltage sags (uDVS). It is a project-dependent parameter. Default: 0.0 + :updip: Voltage dip threshold for P-control (uPdip). Part of turbine control, often different (e.g 0.8) from converter thresholds. It is a project-dependent parameter. Default: 0.0 + :omegadtd: Active drive train damping frequency (omegaDTD). It can be calculated from two mass model parameters. It is a type-dependent parameter. Default: 0.0 + :zeta: Coefficient for active drive train damping (zeta). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this wind control P type 3 model is associated. Default: None + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this P control type 3 model. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmax": [ + cgmesProfile.DY.value, + ], + "dprefmax": [ + cgmesProfile.DY.value, + ], + "dprefmin": [ + cgmesProfile.DY.value, + ], + "dthetamax": [ + cgmesProfile.DY.value, + ], + "dthetamaxuvrt": [ + cgmesProfile.DY.value, + ], + "kdtd": [ + cgmesProfile.DY.value, + ], + "kip": [ + cgmesProfile.DY.value, + ], + "kpp": [ + cgmesProfile.DY.value, + ], + "mpuvrt": [ + cgmesProfile.DY.value, + ], + "omegaoffset": [ + cgmesProfile.DY.value, + ], + "pdtdmax": [ + cgmesProfile.DY.value, + ], + "tdvs": [ + cgmesProfile.DY.value, + ], + "thetaemin": [ + cgmesProfile.DY.value, + ], + "thetauscale": [ + cgmesProfile.DY.value, + ], + "tomegafiltp3": [ + cgmesProfile.DY.value, + ], + "tpfiltp3": [ + cgmesProfile.DY.value, + ], + "tpord": [ + cgmesProfile.DY.value, + ], + "tufiltp3": [ + cgmesProfile.DY.value, + ], + "tomegaref": [ + cgmesProfile.DY.value, + ], + "udvs": [ + cgmesProfile.DY.value, + ], + "updip": [ + cgmesProfile.DY.value, + ], + "omegadtd": [ + cgmesProfile.DY.value, + ], + "zeta": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpmax=0.0, + dprefmax=0.0, + dprefmin=0.0, + dthetamax=0.0, + dthetamaxuvrt=0.0, + kdtd=0.0, + kip=0.0, + kpp=0.0, + mpuvrt=False, + omegaoffset=0.0, + pdtdmax=0.0, + tdvs=0, + thetaemin=0.0, + thetauscale=0.0, + tomegafiltp3=0, + tpfiltp3=0, + tpord=0.0, + tufiltp3=0, + tomegaref=0, + udvs=0.0, + updip=0.0, + omegadtd=0.0, + zeta=0.0, + WindTurbineType3IEC=None, + WindDynamicsLookupTable="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpmax = dpmax + self.dprefmax = dprefmax + self.dprefmin = dprefmin + self.dthetamax = dthetamax + self.dthetamaxuvrt = dthetamaxuvrt + self.kdtd = kdtd + self.kip = kip + self.kpp = kpp + self.mpuvrt = mpuvrt + self.omegaoffset = omegaoffset + self.pdtdmax = pdtdmax + self.tdvs = tdvs + self.thetaemin = thetaemin + self.thetauscale = thetauscale + self.tomegafiltp3 = tomegafiltp3 + self.tpfiltp3 = tpfiltp3 + self.tpord = tpord + self.tufiltp3 = tufiltp3 + self.tomegaref = tomegaref + self.udvs = udvs + self.updip = updip + self.omegadtd = omegadtd + self.zeta = zeta + self.WindTurbineType3IEC = WindTurbineType3IEC + self.WindDynamicsLookupTable = WindDynamicsLookupTable + + def __str__(self): + str = "class=WindContPType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContPType4aIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContPType4aIEC.py new file mode 100644 index 00000000..dfd23a6c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContPType4aIEC.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContPType4aIEC(IdentifiedObject): + """ + P control model type 4A. Reference: IEC 61400-27-1:2015, 5.6.5.5. + + :dpmaxp4a: Maximum wind turbine power ramp rate (dpmaxp4A). It is a project-dependent parameter. Default: 0.0 + :tpordp4a: Time constant in power order lag (Tpordp4A) (>= 0). It is a type-dependent parameter. Default: 0 + :tufiltp4a: Voltage measurement filter time constant (Tufiltp4A) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType4aIEC: Wind turbine type 4A model with which this wind control P type 4A model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmaxp4a": [ + cgmesProfile.DY.value, + ], + "tpordp4a": [ + cgmesProfile.DY.value, + ], + "tufiltp4a": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4aIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpmaxp4a=0.0, + tpordp4a=0, + tufiltp4a=0, + WindTurbineType4aIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpmaxp4a = dpmaxp4a + self.tpordp4a = tpordp4a + self.tufiltp4a = tufiltp4a + self.WindTurbineType4aIEC = WindTurbineType4aIEC + + def __str__(self): + str = "class=WindContPType4aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContPType4bIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContPType4bIEC.py new file mode 100644 index 00000000..0670d6de --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContPType4bIEC.py @@ -0,0 +1,68 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContPType4bIEC(IdentifiedObject): + """ + P control model type 4B. Reference: IEC 61400-27-1:2015, 5.6.5.6. + + :dpmaxp4b: Maximum wind turbine power ramp rate (dpmaxp4B). It is a project-dependent parameter. Default: 0.0 + :tpaero: Time constant in aerodynamic power response (Tpaero) (>= 0). It is a type-dependent parameter. Default: 0 + :tpordp4b: Time constant in power order lag (Tpordp4B) (>= 0). It is a type-dependent parameter. Default: 0 + :tufiltp4b: Voltage measurement filter time constant (Tufiltp4B) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind control P type 4B model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dpmaxp4b": [ + cgmesProfile.DY.value, + ], + "tpaero": [ + cgmesProfile.DY.value, + ], + "tpordp4b": [ + cgmesProfile.DY.value, + ], + "tufiltp4b": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4bIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dpmaxp4b=0.0, + tpaero=0, + tpordp4b=0, + tufiltp4b=0, + WindTurbineType4bIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dpmaxp4b = dpmaxp4b + self.tpaero = tpaero + self.tpordp4b = tpordp4b + self.tufiltp4b = tufiltp4b + self.WindTurbineType4bIEC = WindTurbineType4bIEC + + def __str__(self): + str = "class=WindContPType4bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContPitchAngleIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContPitchAngleIEC.py new file mode 100644 index 00000000..bd27402f --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContPitchAngleIEC.py @@ -0,0 +1,104 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContPitchAngleIEC(IdentifiedObject): + """ + Pitch angle control model. Reference: IEC 61400-27-1:2015, 5.6.5.2. + + :dthetamax: Maximum pitch positive ramp rate (dthetamax) (> WindContPitchAngleIEC.dthetamin). It is a type-dependent parameter. Unit = degrees / s. Default: 0.0 + :dthetamin: Maximum pitch negative ramp rate (dthetamin) (< WindContPitchAngleIEC.dthetamax). It is a type-dependent parameter. Unit = degrees / s. Default: 0.0 + :kic: Power PI controller integration gain (KIc). It is a type-dependent parameter. Default: 0.0 + :kiomega: Speed PI controller integration gain (KIomega). It is a type-dependent parameter. Default: 0.0 + :kpc: Power PI controller proportional gain (KPc). It is a type-dependent parameter. Default: 0.0 + :kpomega: Speed PI controller proportional gain (KPomega). It is a type-dependent parameter. Default: 0.0 + :kpx: Pitch cross coupling gain (KPX). It is a type-dependent parameter. Default: 0.0 + :thetamax: Maximum pitch angle (thetamax) (> WindContPitchAngleIEC.thetamin). It is a type-dependent parameter. Default: 0.0 + :thetamin: Minimum pitch angle (thetamin) (< WindContPitchAngleIEC.thetamax). It is a type-dependent parameter. Default: 0.0 + :ttheta: Pitch time constant (ttheta) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this pitch control model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dthetamax": [ + cgmesProfile.DY.value, + ], + "dthetamin": [ + cgmesProfile.DY.value, + ], + "kic": [ + cgmesProfile.DY.value, + ], + "kiomega": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "kpomega": [ + cgmesProfile.DY.value, + ], + "kpx": [ + cgmesProfile.DY.value, + ], + "thetamax": [ + cgmesProfile.DY.value, + ], + "thetamin": [ + cgmesProfile.DY.value, + ], + "ttheta": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dthetamax=0.0, + dthetamin=0.0, + kic=0.0, + kiomega=0.0, + kpc=0.0, + kpomega=0.0, + kpx=0.0, + thetamax=0.0, + thetamin=0.0, + ttheta=0, + WindTurbineType3IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dthetamax = dthetamax + self.dthetamin = dthetamin + self.kic = kic + self.kiomega = kiomega + self.kpc = kpc + self.kpomega = kpomega + self.kpx = kpx + self.thetamax = thetamax + self.thetamin = thetamin + self.ttheta = ttheta + self.WindTurbineType3IEC = WindTurbineType3IEC + + def __str__(self): + str = "class=WindContPitchAngleIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContQIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContQIEC.py new file mode 100644 index 00000000..dffba1c3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContQIEC.py @@ -0,0 +1,182 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContQIEC(IdentifiedObject): + """ + Q control model. Reference: IEC 61400-27-1:2015, 5.6.5.7. + + :iqh1: Maximum reactive current injection during dip (iqh1). It is a type-dependent parameter. Default: 0.0 + :iqmax: Maximum reactive current injection (iqmax) (> WindContQIEC.iqmin). It is a type-dependent parameter. Default: 0.0 + :iqmin: Minimum reactive current injection (iqmin) (< WindContQIEC.iqmax). It is a type-dependent parameter. Default: 0.0 + :iqpost: Post fault reactive current injection (iqpost). It is a project-dependent parameter. Default: 0.0 + :kiq: Reactive power PI controller integration gain (KI,q). It is a type-dependent parameter. Default: 0.0 + :kiu: Voltage PI controller integration gain (KI,u). It is a type-dependent parameter. Default: 0.0 + :kpq: Reactive power PI controller proportional gain (KP,q). It is a type-dependent parameter. Default: 0.0 + :kpu: Voltage PI controller proportional gain (KP,u). It is a type-dependent parameter. Default: 0.0 + :kqv: Voltage scaling factor for UVRT current (Kqv). It is a project-dependent parameter. Default: 0.0 + :tpfiltq: Power measurement filter time constant (Tpfiltq) (>= 0). It is a type-dependent parameter. Default: 0 + :rdroop: Resistive component of voltage drop impedance (rdroop) (>= 0). It is a project-dependent parameter. Default: 0.0 + :tufiltq: Voltage measurement filter time constant (Tufiltq) (>= 0). It is a type-dependent parameter. Default: 0 + :tpost: Length of time period where post fault reactive power is injected (Tpost) (>= 0). It is a project-dependent parameter. Default: 0 + :tqord: Time constant in reactive power order lag (Tqord) (>= 0). It is a type-dependent parameter. Default: 0 + :udb1: Voltage deadband lower limit (udb1). It is a type-dependent parameter. Default: 0.0 + :udb2: Voltage deadband upper limit (udb2). It is a type-dependent parameter. Default: 0.0 + :umax: Maximum voltage in voltage PI controller integral term (umax) (> WindContQIEC.umin). It is a type-dependent parameter. Default: 0.0 + :umin: Minimum voltage in voltage PI controller integral term (umin) (< WindContQIEC.umax). It is a type-dependent parameter. Default: 0.0 + :uqdip: Voltage threshold for UVRT detection in Q control (uqdip). It is a type-dependent parameter. Default: 0.0 + :uref0: User-defined bias in voltage reference (uref0). It is a case-dependent parameter. Default: 0.0 + :windQcontrolModesType: Types of general wind turbine Q control modes (MqG). It is a project-dependent parameter. Default: None + :windUVRTQcontrolModesType: Types of UVRT Q control modes (MqUVRT). It is a project-dependent parameter. Default: None + :xdroop: Inductive component of voltage drop impedance (xdroop) (>= 0). It is a project-dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind turbine type 3 or type 4 model with which this reactive control model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "iqh1": [ + cgmesProfile.DY.value, + ], + "iqmax": [ + cgmesProfile.DY.value, + ], + "iqmin": [ + cgmesProfile.DY.value, + ], + "iqpost": [ + cgmesProfile.DY.value, + ], + "kiq": [ + cgmesProfile.DY.value, + ], + "kiu": [ + cgmesProfile.DY.value, + ], + "kpq": [ + cgmesProfile.DY.value, + ], + "kpu": [ + cgmesProfile.DY.value, + ], + "kqv": [ + cgmesProfile.DY.value, + ], + "tpfiltq": [ + cgmesProfile.DY.value, + ], + "rdroop": [ + cgmesProfile.DY.value, + ], + "tufiltq": [ + cgmesProfile.DY.value, + ], + "tpost": [ + cgmesProfile.DY.value, + ], + "tqord": [ + cgmesProfile.DY.value, + ], + "udb1": [ + cgmesProfile.DY.value, + ], + "udb2": [ + cgmesProfile.DY.value, + ], + "umax": [ + cgmesProfile.DY.value, + ], + "umin": [ + cgmesProfile.DY.value, + ], + "uqdip": [ + cgmesProfile.DY.value, + ], + "uref0": [ + cgmesProfile.DY.value, + ], + "windQcontrolModesType": [ + cgmesProfile.DY.value, + ], + "windUVRTQcontrolModesType": [ + cgmesProfile.DY.value, + ], + "xdroop": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + iqh1=0.0, + iqmax=0.0, + iqmin=0.0, + iqpost=0.0, + kiq=0.0, + kiu=0.0, + kpq=0.0, + kpu=0.0, + kqv=0.0, + tpfiltq=0, + rdroop=0.0, + tufiltq=0, + tpost=0, + tqord=0, + udb1=0.0, + udb2=0.0, + umax=0.0, + umin=0.0, + uqdip=0.0, + uref0=0.0, + windQcontrolModesType=None, + windUVRTQcontrolModesType=None, + xdroop=0.0, + WindTurbineType3or4IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.iqh1 = iqh1 + self.iqmax = iqmax + self.iqmin = iqmin + self.iqpost = iqpost + self.kiq = kiq + self.kiu = kiu + self.kpq = kpq + self.kpu = kpu + self.kqv = kqv + self.tpfiltq = tpfiltq + self.rdroop = rdroop + self.tufiltq = tufiltq + self.tpost = tpost + self.tqord = tqord + self.udb1 = udb1 + self.udb2 = udb2 + self.umax = umax + self.umin = umin + self.uqdip = uqdip + self.uref0 = uref0 + self.windQcontrolModesType = windQcontrolModesType + self.windUVRTQcontrolModesType = windUVRTQcontrolModesType + self.xdroop = xdroop + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + + def __str__(self): + str = "class=WindContQIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContQLimIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContQLimIEC.py new file mode 100644 index 00000000..686ea986 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContQLimIEC.py @@ -0,0 +1,51 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContQLimIEC(IdentifiedObject): + """ + Constant Q limitation model. Reference: IEC 61400-27-1:2015, 5.6.5.9. + + :qmax: Maximum reactive power (qmax) (> WindContQLimIEC.qmin). It is a type-dependent parameter. Default: 0.0 + :qmin: Minimum reactive power (qmin) (< WindContQLimIEC.qmax). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind generator type 3 or type 4 model with which this constant Q limitation model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "qmax": [ + cgmesProfile.DY.value, + ], + "qmin": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, qmax=0.0, qmin=0.0, WindTurbineType3or4IEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.qmax = qmax + self.qmin = qmin + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + + def __str__(self): + str = "class=WindContQLimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContQPQULimIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContQPQULimIEC.py new file mode 100644 index 00000000..1d7581b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContQPQULimIEC.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContQPQULimIEC(IdentifiedObject): + """ + QP and QU limitation model. Reference: IEC 61400-27-1:2015, 5.6.5.10. + + :tpfiltql: Power measurement filter time constant for Q capacity (Tpfiltql) (>= 0). It is a type-dependent parameter. Default: 0 + :tufiltql: Voltage measurement filter time constant for Q capacity (Tufiltql) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType3or4IEC: Wind generator type 3 or type 4 model with which this QP and QU limitation model is associated. Default: None + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this QP and QU limitation model. Default: "list" + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tpfiltql": [ + cgmesProfile.DY.value, + ], + "tufiltql": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + tpfiltql=0, + tufiltql=0, + WindTurbineType3or4IEC=None, + WindDynamicsLookupTable="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tpfiltql = tpfiltql + self.tufiltql = tufiltql + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + self.WindDynamicsLookupTable = WindDynamicsLookupTable + + def __str__(self): + str = "class=WindContQPQULimIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindContRotorRIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindContRotorRIEC.py new file mode 100644 index 00000000..75d0baad --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindContRotorRIEC.py @@ -0,0 +1,98 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindContRotorRIEC(IdentifiedObject): + """ + Rotor resistance control model. Reference: IEC 61400-27-1:2015, 5.6.5.3. + + :kirr: Integral gain in rotor resistance PI controller (KIrr). It is a type-dependent parameter. Default: 0.0 + :komegafilt: Filter gain for generator speed measurement (Komegafilt). It is a type-dependent parameter. Default: 0.0 + :kpfilt: Filter gain for power measurement (Kpfilt). It is a type-dependent parameter. Default: 0.0 + :kprr: Proportional gain in rotor resistance PI controller (KPrr). It is a type-dependent parameter. Default: 0.0 + :rmax: Maximum rotor resistance (rmax) (> WindContRotorRIEC.rmin). It is a type-dependent parameter. Default: 0.0 + :rmin: Minimum rotor resistance (rmin) (< WindContRotorRIEC.rmax). It is a type-dependent parameter. Default: 0.0 + :tomegafiltrr: Filter time constant for generator speed measurement (Tomegafiltrr) (>= 0). It is a type-dependent parameter. Default: 0 + :tpfiltrr: Filter time constant for power measurement (Tpfiltrr) (>= 0). It is a type-dependent parameter. Default: 0 + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this rotor resistance control model. Default: "list" + :WindGenTurbineType2IEC: Wind turbine type 2 model with whitch this wind control rotor resistance model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kirr": [ + cgmesProfile.DY.value, + ], + "komegafilt": [ + cgmesProfile.DY.value, + ], + "kpfilt": [ + cgmesProfile.DY.value, + ], + "kprr": [ + cgmesProfile.DY.value, + ], + "rmax": [ + cgmesProfile.DY.value, + ], + "rmin": [ + cgmesProfile.DY.value, + ], + "tomegafiltrr": [ + cgmesProfile.DY.value, + ], + "tpfiltrr": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType2IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + kirr=0.0, + komegafilt=0.0, + kpfilt=0.0, + kprr=0.0, + rmax=0.0, + rmin=0.0, + tomegafiltrr=0, + tpfiltrr=0, + WindDynamicsLookupTable="list", + WindGenTurbineType2IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.kirr = kirr + self.komegafilt = komegafilt + self.kpfilt = kpfilt + self.kprr = kprr + self.rmax = rmax + self.rmin = rmin + self.tomegafiltrr = tomegafiltrr + self.tpfiltrr = tpfiltrr + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.WindGenTurbineType2IEC = WindGenTurbineType2IEC + + def __str__(self): + str = "class=WindContRotorRIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindDynamicsLookupTable.py b/cimpy_3/cimpy/cgmes_v3_0/WindDynamicsLookupTable.py new file mode 100644 index 00000000..f61791f7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindDynamicsLookupTable.py @@ -0,0 +1,116 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindDynamicsLookupTable(IdentifiedObject): + """ + Look up table for the purpose of wind standard models. + + :WindContCurrLimIEC: The current control limitation model with which this wind dynamics lookup table is associated. Default: None + :WindContPType3IEC: The P control type 3 model with which this wind dynamics lookup table is associated. Default: None + :WindContQPQULimIEC: The QP and QU limitation model with which this wind dynamics lookup table is associated. Default: None + :WindContRotorRIEC: The rotor resistance control model with which this wind dynamics lookup table is associated. Default: None + :input: Input value (x) for the lookup table function. Default: 0.0 + :lookupTableFunctionType: Type of the lookup table function. Default: None + :output: Output value (y) for the lookup table function. Default: 0.0 + :sequence: Sequence numbers of the pairs of the input (x) and the output (y) of the lookup table function. Default: 0 + :WindPlantFreqPcontrolIEC: The frequency and active power wind plant control model with which this wind dynamics lookup table is associated. Default: None + :WindProtectionIEC: The grid protection model with which this wind dynamics lookup table is associated. Default: None + :WindPlantReactiveControlIEC: The voltage and reactive power wind plant control model with which this wind dynamics lookup table is associated. Default: None + :WindGenType3bIEC: The generator type 3B model with which this wind dynamics lookup table is associated. Default: None + :WindPitchContPowerIEC: The pitch control power model with which this wind dynamics lookup table is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContCurrLimIEC": [ + cgmesProfile.DY.value, + ], + "WindContPType3IEC": [ + cgmesProfile.DY.value, + ], + "WindContQPQULimIEC": [ + cgmesProfile.DY.value, + ], + "WindContRotorRIEC": [ + cgmesProfile.DY.value, + ], + "input": [ + cgmesProfile.DY.value, + ], + "lookupTableFunctionType": [ + cgmesProfile.DY.value, + ], + "output": [ + cgmesProfile.DY.value, + ], + "sequence": [ + cgmesProfile.DY.value, + ], + "WindPlantFreqPcontrolIEC": [ + cgmesProfile.DY.value, + ], + "WindProtectionIEC": [ + cgmesProfile.DY.value, + ], + "WindPlantReactiveControlIEC": [ + cgmesProfile.DY.value, + ], + "WindGenType3bIEC": [ + cgmesProfile.DY.value, + ], + "WindPitchContPowerIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindContCurrLimIEC=None, + WindContPType3IEC=None, + WindContQPQULimIEC=None, + WindContRotorRIEC=None, + input=0.0, + lookupTableFunctionType=None, + output=0.0, + sequence=0, + WindPlantFreqPcontrolIEC=None, + WindProtectionIEC=None, + WindPlantReactiveControlIEC=None, + WindGenType3bIEC=None, + WindPitchContPowerIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindContCurrLimIEC = WindContCurrLimIEC + self.WindContPType3IEC = WindContPType3IEC + self.WindContQPQULimIEC = WindContQPQULimIEC + self.WindContRotorRIEC = WindContRotorRIEC + self.input = input + self.lookupTableFunctionType = lookupTableFunctionType + self.output = output + self.sequence = sequence + self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC + self.WindProtectionIEC = WindProtectionIEC + self.WindPlantReactiveControlIEC = WindPlantReactiveControlIEC + self.WindGenType3bIEC = WindGenType3bIEC + self.WindPitchContPowerIEC = WindPitchContPowerIEC + + def __str__(self): + str = "class=WindDynamicsLookupTable\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1IEC.py new file mode 100644 index 00000000..a1d585df --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1IEC.py @@ -0,0 +1,39 @@ +from .WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType1IEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC Type 1. Reference: IEC Standard 61400-27-1, section 6.5.2. + + :WindAeroConstIEC: Wind aerodynamic model associated with this wind turbine type 1 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroConstIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__(self, WindAeroConstIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindAeroConstIEC = WindAeroConstIEC + + def __str__(self): + str = "class=WindGenTurbineType1IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1aIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1aIEC.py new file mode 100644 index 00000000..6c5b89e7 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1aIEC.py @@ -0,0 +1,39 @@ +from .WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType1aIEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC type 1A. Reference: IEC 61400-27-1:2015, 5.5.2.2. + + :WindAeroConstIEC: Wind aerodynamic model associated with this wind turbine type 1A model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroConstIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__(self, WindAeroConstIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindAeroConstIEC = WindAeroConstIEC + + def __str__(self): + str = "class=WindGenTurbineType1aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1bIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1bIEC.py new file mode 100644 index 00000000..b52bdb04 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType1bIEC.py @@ -0,0 +1,39 @@ +from .WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType1bIEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC type 1B. Reference: IEC 61400-27-1:2015, 5.5.2.3. + + :WindPitchContPowerIEC: Pitch control power model associated with this wind turbine type 1B model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindPitchContPowerIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__(self, WindPitchContPowerIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindPitchContPowerIEC = WindPitchContPowerIEC + + def __str__(self): + str = "class=WindGenTurbineType1bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType2IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType2IEC.py new file mode 100644 index 00000000..b24e4f0b --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType2IEC.py @@ -0,0 +1,46 @@ +from .WindTurbineType1or2IEC import WindTurbineType1or2IEC + + +class WindGenTurbineType2IEC(WindTurbineType1or2IEC): + """ + Wind turbine IEC type 2. Reference: IEC 61400-27-1:2015, 5.5.3. + + :WindContRotorRIEC: Wind control rotor resistance model associated with wind turbine type 2 model. Default: None + :WindPitchContPowerIEC: Pitch control power model associated with this wind turbine type 2 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContRotorRIEC": [ + cgmesProfile.DY.value, + ], + "WindPitchContPowerIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2IEC: \n" + + WindTurbineType1or2IEC.__doc__ + ) + + def __init__( + self, WindContRotorRIEC=None, WindPitchContPowerIEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.WindContRotorRIEC = WindContRotorRIEC + self.WindPitchContPowerIEC = WindPitchContPowerIEC + + def __str__(self): + str = "class=WindGenTurbineType2IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3IEC.py new file mode 100644 index 00000000..24a92221 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3IEC.py @@ -0,0 +1,74 @@ +from .WindTurbineType3or4IEC import WindTurbineType3or4IEC + + +class WindGenTurbineType3IEC(WindTurbineType3or4IEC): + """ + Generator model for wind turbines of IEC type 3A and 3B. + + :WindAeroLinearIEC: Wind aerodynamic model associated with this wind generator type 3 model. Default: None + :WindContPitchAngleIEC: Wind control pitch angle model associated with this wind turbine type 3. Default: None + :WindContPType3IEC: Wind control P type 3 model associated with this wind turbine type 3 model. Default: None + :dipmax: Maximum active current ramp rate (di). It is project dependent parameter. Default: 0.0 + :diqmax: Maximum reactive current ramp rate (di). It is project dependent parameter. Default: 0.0 + :WindMechIEC: Wind mechanical model associated with this wind turbine Type 3 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroLinearIEC": [ + cgmesProfile.DY.value, + ], + "WindContPitchAngleIEC": [ + cgmesProfile.DY.value, + ], + "WindContPType3IEC": [ + cgmesProfile.DY.value, + ], + "dipmax": [ + cgmesProfile.DY.value, + ], + "diqmax": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4IEC: \n" + + WindTurbineType3or4IEC.__doc__ + ) + + def __init__( + self, + WindAeroLinearIEC=None, + WindContPitchAngleIEC=None, + WindContPType3IEC=None, + dipmax=0.0, + diqmax=0.0, + WindMechIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindAeroLinearIEC = WindAeroLinearIEC + self.WindContPitchAngleIEC = WindContPitchAngleIEC + self.WindContPType3IEC = WindContPType3IEC + self.dipmax = dipmax + self.diqmax = diqmax + self.WindMechIEC = WindMechIEC + + def __str__(self): + str = "class=WindGenTurbineType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3bIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3bIEC.py new file mode 100644 index 00000000..219179e2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenTurbineType3bIEC.py @@ -0,0 +1,59 @@ +from .WindGenTurbineType3IEC import WindGenTurbineType3IEC + + +class WindGenTurbineType3bIEC(WindGenTurbineType3IEC): + """ + IEC Type 3B generator set model. Reference: IEC Standard 61400-27-1 Section 6.6.3.3. + + :fducw: Crowbar duration versus voltage variation look-up table (f()). It is case dependent parameter. Default: 0.0 + :tg: Current generation Time constant (). It is type dependent parameter. Default: 0 + :two: Time constant for crowbar washout filter (). It is case dependent parameter. Default: 0 + :mwtcwp: Crowbar control mode (). The parameter is case dependent parameter. Default: False + :xs: Electromagnetic transient reactance (x). It is type dependent parameter. Default: 0.0 + """ + + cgmesProfile = WindGenTurbineType3IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "fducw": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "two": [ + cgmesProfile.DY.value, + ], + "mwtcwp": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenTurbineType3IEC: \n" + + WindGenTurbineType3IEC.__doc__ + ) + + def __init__(self, fducw=0.0, tg=0, two=0, mwtcwp=False, xs=0.0, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.fducw = fducw + self.tg = tg + self.two = two + self.mwtcwp = mwtcwp + self.xs = xs + + def __str__(self): + str = "class=WindGenTurbineType3bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenType3IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3IEC.py new file mode 100644 index 00000000..83cda75c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3IEC.py @@ -0,0 +1,56 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindGenType3IEC(IdentifiedObject): + """ + Parent class supporting relationships to IEC wind turbines type 3 generator models of IEC type 3A and 3B. + + :dipmax: Maximum active current ramp rate (dipmax). It is a project-dependent parameter. Default: 0.0 + :diqmax: Maximum reactive current ramp rate (diqmax). It is a project-dependent parameter. Default: 0.0 + :xs: Electromagnetic transient reactance (xS). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this wind generator type 3 is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dipmax": [ + cgmesProfile.DY.value, + ], + "diqmax": [ + cgmesProfile.DY.value, + ], + "xs": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, dipmax=0.0, diqmax=0.0, xs=0.0, WindTurbineType3IEC=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.dipmax = dipmax + self.diqmax = diqmax + self.xs = xs + self.WindTurbineType3IEC = WindTurbineType3IEC + + def __str__(self): + str = "class=WindGenType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenType3aIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3aIEC.py new file mode 100644 index 00000000..f1757fff --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3aIEC.py @@ -0,0 +1,48 @@ +from .WindGenType3IEC import WindGenType3IEC + + +class WindGenType3aIEC(WindGenType3IEC): + """ + IEC type 3A generator set model. Reference: IEC 61400-27-1:2015, 5.6.3.2. + + :kpc: Current PI controller proportional gain (KPc). It is a type-dependent parameter. Default: 0.0 + :tic: Current PI controller integration time constant (TIc) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType4IEC: Wind turbine type 4 model with which this wind generator type 3A model is associated. Default: None + """ + + cgmesProfile = WindGenType3IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "kpc": [ + cgmesProfile.DY.value, + ], + "tic": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenType3IEC: \n" + WindGenType3IEC.__doc__ + ) + + def __init__(self, kpc=0.0, tic=0, WindTurbineType4IEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.kpc = kpc + self.tic = tic + self.WindTurbineType4IEC = WindTurbineType4IEC + + def __str__(self): + str = "class=WindGenType3aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenType3bIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3bIEC.py new file mode 100644 index 00000000..b4e9e0f2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenType3bIEC.py @@ -0,0 +1,61 @@ +from .WindGenType3IEC import WindGenType3IEC + + +class WindGenType3bIEC(WindGenType3IEC): + """ + IEC type 3B generator set model. Reference: IEC 61400-27-1:2015, 5.6.3.3. + + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this generator type 3B model. Default: "list" + :mwtcwp: Crowbar control mode (MWTcwp). It is a case-dependent parameter. true = 1 in the IEC model false = 0 in the IEC model. Default: False + :tg: Current generation time constant (Tg) (>= 0). It is a type-dependent parameter. Default: 0 + :two: Time constant for crowbar washout filter (Two) (>= 0). It is a case-dependent parameter. Default: 0 + """ + + cgmesProfile = WindGenType3IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "mwtcwp": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "two": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindGenType3IEC: \n" + WindGenType3IEC.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + mwtcwp=False, + tg=0, + two=0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.mwtcwp = mwtcwp + self.tg = tg + self.two = two + + def __str__(self): + str = "class=WindGenType3bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenType4IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenType4IEC.py new file mode 100644 index 00000000..86289801 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenType4IEC.py @@ -0,0 +1,74 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindGenType4IEC(IdentifiedObject): + """ + IEC type 4 generator set model. Reference: IEC 61400-27-1:2015, 5.6.3.4. + + :dipmax: Maximum active current ramp rate (dipmax). It is a project-dependent parameter. Default: 0.0 + :diqmin: Minimum reactive current ramp rate (diqmin). It is a project-dependent parameter. Default: 0.0 + :diqmax: Maximum reactive current ramp rate (diqmax). It is a project-dependent parameter. Default: 0.0 + :tg: Time constant (Tg) (>= 0). It is a type-dependent parameter. Default: 0 + :WindTurbineType4aIEC: Wind turbine type 4A model with which this wind generator type 4 model is associated. Default: None + :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind generator type 4 model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "dipmax": [ + cgmesProfile.DY.value, + ], + "diqmin": [ + cgmesProfile.DY.value, + ], + "diqmax": [ + cgmesProfile.DY.value, + ], + "tg": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4aIEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4bIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + dipmax=0.0, + diqmin=0.0, + diqmax=0.0, + tg=0, + WindTurbineType4aIEC=None, + WindTurbineType4bIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.dipmax = dipmax + self.diqmin = diqmin + self.diqmax = diqmax + self.tg = tg + self.WindTurbineType4aIEC = WindTurbineType4aIEC + self.WindTurbineType4bIEC = WindTurbineType4bIEC + + def __str__(self): + str = "class=WindGenType4IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGenUnitKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindGenUnitKind.py new file mode 100644 index 00000000..0c0bbe98 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGenUnitKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindGenUnitKind(Base): + """ + Kind of wind generating unit. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindGenUnitKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindGeneratingUnit.py b/cimpy_3/cimpy/cgmes_v3_0/WindGeneratingUnit.py new file mode 100644 index 00000000..55011135 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindGeneratingUnit.py @@ -0,0 +1,44 @@ +from .GeneratingUnit import GeneratingUnit + + +class WindGeneratingUnit(GeneratingUnit): + """ + A wind driven generating unit, connected to the grid by means of a rotating machine. May be used to represent a single turbine or an aggregation. + + :windGenUnitType: The kind of wind generating unit. Default: None + :WindPowerPlant: A wind power plant may have wind generating units. Default: None + """ + + cgmesProfile = GeneratingUnit.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.SSH.value, + cgmesProfile.EQ.value, + ], + "windGenUnitType": [ + cgmesProfile.EQ.value, + ], + "WindPowerPlant": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class GeneratingUnit: \n" + GeneratingUnit.__doc__ + ) + + def __init__(self, windGenUnitType=None, WindPowerPlant=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.windGenUnitType = windGenUnitType + self.WindPowerPlant = WindPowerPlant + + def __str__(self): + str = "class=WindGeneratingUnit\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindLVRTQcontrolModesKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindLVRTQcontrolModesKind.py new file mode 100644 index 00000000..66e37fad --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindLVRTQcontrolModesKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindLVRTQcontrolModesKind(Base): + """ + LVRT Q control modes . + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindLVRTQcontrolModesKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindLookupTableFunctionKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindLookupTableFunctionKind.py new file mode 100644 index 00000000..a1ee4fe6 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindLookupTableFunctionKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindLookupTableFunctionKind(Base): + """ + Function of the lookup table. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindLookupTableFunctionKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindMechIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindMechIEC.py new file mode 100644 index 00000000..df6e1464 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindMechIEC.py @@ -0,0 +1,80 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindMechIEC(IdentifiedObject): + """ + Two mass model. Reference: IEC 61400-27-1:2015, 5.6.2.1. + + :cdrt: Drive train damping (cdrt). It is a type-dependent parameter. Default: 0.0 + :hgen: Inertia constant of generator (Hgen) (>= 0). It is a type-dependent parameter. Default: 0 + :hwtr: Inertia constant of wind turbine rotor (HWTR) (>= 0). It is a type-dependent parameter. Default: 0 + :kdrt: Drive train stiffness (kdrt). It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3IEC: Wind turbine type 3 model with which this wind mechanical model is associated. Default: None + :WindTurbineType1or2IEC: Wind generator type 1 or type 2 model with which this wind mechanical model is associated. Default: None + :WindTurbineType4bIEC: Wind turbine type 4B model with which this wind mechanical model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "cdrt": [ + cgmesProfile.DY.value, + ], + "hgen": [ + cgmesProfile.DY.value, + ], + "hwtr": [ + cgmesProfile.DY.value, + ], + "kdrt": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3IEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2IEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType4bIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + cdrt=0.0, + hgen=0, + hwtr=0, + kdrt=0.0, + WindTurbineType3IEC=None, + WindTurbineType1or2IEC=None, + WindTurbineType4bIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.cdrt = cdrt + self.hgen = hgen + self.hwtr = hwtr + self.kdrt = kdrt + self.WindTurbineType3IEC = WindTurbineType3IEC + self.WindTurbineType1or2IEC = WindTurbineType1or2IEC + self.WindTurbineType4bIEC = WindTurbineType4bIEC + + def __str__(self): + str = "class=WindMechIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPitchContPowerIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindPitchContPowerIEC.py new file mode 100644 index 00000000..9dcdb07e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPitchContPowerIEC.py @@ -0,0 +1,98 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindPitchContPowerIEC(IdentifiedObject): + """ + Pitch control power model. Reference: IEC 61400-27-1:2015, 5.6.5.1. + + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this pitch control power model. Default: "list" + :WindGenTurbineType1bIEC: Wind turbine type 1B model with which this pitch control power model is associated. Default: None + :WindGenTurbineType2IEC: Wind turbine type 2 model with which this pitch control power model is associated. Default: None + :dpmax: Rate limit for increasing power (dpmax) (> WindPitchContPowerIEC.dpmin). It is a type-dependent parameter. Default: 0.0 + :dpmin: Rate limit for decreasing power (dpmin) (< WindPitchContPowerIEC.dpmax). It is a type-dependent parameter. Default: 0.0 + :pmin: Minimum power setting (pmin). It is a type-dependent parameter. Default: 0.0 + :pset: If pinit < pset then power will be ramped down to pmin. It is (pset) in the IEC 61400-27-1:2015. It is a type-dependent parameter. Default: 0.0 + :t1: Lag time constant (T1) (>= 0). It is a type-dependent parameter. Default: 0 + :tr: Voltage measurement time constant (Tr) (>= 0). It is a type-dependent parameter. Default: 0 + :uuvrt: Dip detection threshold (uUVRT). It is a type-dependent parameter. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType1bIEC": [ + cgmesProfile.DY.value, + ], + "WindGenTurbineType2IEC": [ + cgmesProfile.DY.value, + ], + "dpmax": [ + cgmesProfile.DY.value, + ], + "dpmin": [ + cgmesProfile.DY.value, + ], + "pmin": [ + cgmesProfile.DY.value, + ], + "pset": [ + cgmesProfile.DY.value, + ], + "t1": [ + cgmesProfile.DY.value, + ], + "tr": [ + cgmesProfile.DY.value, + ], + "uuvrt": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + WindGenTurbineType1bIEC=None, + WindGenTurbineType2IEC=None, + dpmax=0.0, + dpmin=0.0, + pmin=0.0, + pset=0.0, + t1=0, + tr=0, + uuvrt=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.WindGenTurbineType1bIEC = WindGenTurbineType1bIEC + self.WindGenTurbineType2IEC = WindGenTurbineType2IEC + self.dpmax = dpmax + self.dpmin = dpmin + self.pmin = pmin + self.pset = pset + self.t1 = t1 + self.tr = tr + self.uuvrt = uuvrt + + def __str__(self): + str = "class=WindPitchContPowerIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantDynamics.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantDynamics.py new file mode 100644 index 00000000..c80ef783 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantDynamics.py @@ -0,0 +1,50 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindPlantDynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines type 3 and type 4 and wind plant IEC and user-defined wind plants including their control models. + + :RemoteInputSignal: The remote signal with which this power plant is associated. Default: None + :WindTurbineType3or4Dynamics: The wind turbine type 3 or type 4 associated with this wind plant. Default: "list" + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4Dynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + RemoteInputSignal=None, + WindTurbineType3or4Dynamics="list", + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.WindTurbineType3or4Dynamics = WindTurbineType3or4Dynamics + + def __str__(self): + str = "class=WindPlantDynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantFreqPcontrolIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantFreqPcontrolIEC.py new file mode 100644 index 00000000..9e6bccef --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantFreqPcontrolIEC.py @@ -0,0 +1,140 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindPlantFreqPcontrolIEC(IdentifiedObject): + """ + Frequency and active power controller model. Reference: IEC 61400-27-1:2015, Annex D. + + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this frequency and active power wind plant model. Default: "list" + :dprefmax: Maximum ramp rate of pWTref request from the plant controller to the wind turbines (dprefmax) (> WindPlantFreqPcontrolIEC.dprefmin). It is a case-dependent parameter. Default: 0.0 + :dprefmin: Minimum (negative) ramp rate of pWTref request from the plant controller to the wind turbines (dprefmin) (< WindPlantFreqPcontrolIEC.dprefmax). It is a project-dependent parameter. Default: 0.0 + :dpwprefmax: Maximum positive ramp rate for wind plant power reference (dpWPrefmax) (> WindPlantFreqPcontrolIEC.dpwprefmin). It is a project-dependent parameter. Default: 0.0 + :dpwprefmin: Maximum negative ramp rate for wind plant power reference (dpWPrefmin) (< WindPlantFreqPcontrolIEC.dpwprefmax). It is a project-dependent parameter. Default: 0.0 + :prefmax: Maximum pWTref request from the plant controller to the wind turbines (prefmax) (> WindPlantFreqPcontrolIEC.prefmin). It is a project-dependent parameter. Default: 0.0 + :prefmin: Minimum pWTref request from the plant controller to the wind turbines (prefmin) (< WindPlantFreqPcontrolIEC.prefmax). It is a project-dependent parameter. Default: 0.0 + :kiwpp: Plant P controller integral gain (KIWPp). It is a project-dependent parameter. Default: 0.0 + :kiwppmax: Maximum PI integrator term (KIWPpmax) (> WindPlantFreqPcontrolIEC.kiwppmin). It is a project-dependent parameter. Default: 0.0 + :kiwppmin: Minimum PI integrator term (KIWPpmin) (< WindPlantFreqPcontrolIEC.kiwppmax). It is a project-dependent parameter. Default: 0.0 + :kpwpp: Plant P controller proportional gain (KPWPp). It is a project-dependent parameter. Default: 0.0 + :kwppref: Power reference gain (KWPpref). It is a project-dependent parameter. Default: 0.0 + :tpft: Lead time constant in reference value transfer function (Tpft) (>= 0). It is a project-dependent parameter. Default: 0 + :tpfv: Lag time constant in reference value transfer function (Tpfv) (>= 0). It is a project-dependent parameter. Default: 0 + :twpffiltp: Filter time constant for frequency measurement (TWPffiltp) (>= 0). It is a project-dependent parameter. Default: 0 + :twppfiltp: Filter time constant for active power measurement (TWPpfiltp) (>= 0). It is a project-dependent parameter. Default: 0 + :WindPlantIEC: Wind plant model with which this wind plant frequency and active power control is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "dprefmax": [ + cgmesProfile.DY.value, + ], + "dprefmin": [ + cgmesProfile.DY.value, + ], + "dpwprefmax": [ + cgmesProfile.DY.value, + ], + "dpwprefmin": [ + cgmesProfile.DY.value, + ], + "prefmax": [ + cgmesProfile.DY.value, + ], + "prefmin": [ + cgmesProfile.DY.value, + ], + "kiwpp": [ + cgmesProfile.DY.value, + ], + "kiwppmax": [ + cgmesProfile.DY.value, + ], + "kiwppmin": [ + cgmesProfile.DY.value, + ], + "kpwpp": [ + cgmesProfile.DY.value, + ], + "kwppref": [ + cgmesProfile.DY.value, + ], + "tpft": [ + cgmesProfile.DY.value, + ], + "tpfv": [ + cgmesProfile.DY.value, + ], + "twpffiltp": [ + cgmesProfile.DY.value, + ], + "twppfiltp": [ + cgmesProfile.DY.value, + ], + "WindPlantIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + dprefmax=0.0, + dprefmin=0.0, + dpwprefmax=0.0, + dpwprefmin=0.0, + prefmax=0.0, + prefmin=0.0, + kiwpp=0.0, + kiwppmax=0.0, + kiwppmin=0.0, + kpwpp=0.0, + kwppref=0.0, + tpft=0, + tpfv=0, + twpffiltp=0, + twppfiltp=0, + WindPlantIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.dprefmax = dprefmax + self.dprefmin = dprefmin + self.dpwprefmax = dpwprefmax + self.dpwprefmin = dpwprefmin + self.prefmax = prefmax + self.prefmin = prefmin + self.kiwpp = kiwpp + self.kiwppmax = kiwppmax + self.kiwppmin = kiwppmin + self.kpwpp = kpwpp + self.kwppref = kwppref + self.tpft = tpft + self.tpfv = tpfv + self.twpffiltp = twpffiltp + self.twppfiltp = twppfiltp + self.WindPlantIEC = WindPlantIEC + + def __str__(self): + str = "class=WindPlantFreqPcontrolIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantIEC.py new file mode 100644 index 00000000..71679b24 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantIEC.py @@ -0,0 +1,50 @@ +from .WindPlantDynamics import WindPlantDynamics + + +class WindPlantIEC(WindPlantDynamics): + """ + Simplified IEC type plant level model. Reference: IEC 61400-27-1:2015, Annex D. + + :WindPlantFreqPcontrolIEC: Wind plant frequency and active power control model associated with this wind plant. Default: None + :WindPlantReactiveControlIEC: Wind plant model with which this wind reactive control is associated. Default: None + """ + + cgmesProfile = WindPlantDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindPlantFreqPcontrolIEC": [ + cgmesProfile.DY.value, + ], + "WindPlantReactiveControlIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindPlantDynamics: \n" + + WindPlantDynamics.__doc__ + ) + + def __init__( + self, + WindPlantFreqPcontrolIEC=None, + WindPlantReactiveControlIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindPlantFreqPcontrolIEC = WindPlantFreqPcontrolIEC + self.WindPlantReactiveControlIEC = WindPlantReactiveControlIEC + + def __str__(self): + str = "class=WindPlantIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantQcontrolModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantQcontrolModeKind.py new file mode 100644 index 00000000..8e6d2927 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantQcontrolModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindPlantQcontrolModeKind(Base): + """ + Reactive power/voltage controller mode. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindPlantQcontrolModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantReactiveControlIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantReactiveControlIEC.py new file mode 100644 index 00000000..66a1d54d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantReactiveControlIEC.py @@ -0,0 +1,158 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindPlantReactiveControlIEC(IdentifiedObject): + """ + Simplified plant voltage and reactive power control model for use with type 3 and type 4 wind turbine models. Reference: IEC 61400-27-1:2015, Annex D. + + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this voltage and reactive power wind plant model. Default: "list" + :WindPlantIEC: Wind plant reactive control model associated with this wind plant. Default: None + :dxrefmax: Maximum positive ramp rate for wind turbine reactive power/voltage reference (dxrefmax) (> WindPlantReactiveControlIEC.dxrefmin). It is a project-dependent parameter. Default: 0.0 + :dxrefmin: Maximum negative ramp rate for wind turbine reactive power/voltage reference (dxrefmin) (< WindPlantReactiveControlIEC.dxrefmax). It is a project-dependent parameter. Default: 0.0 + :kiwpx: Plant Q controller integral gain (KIWPx). It is a project-dependent parameter. Default: 0.0 + :kiwpxmax: Maximum reactive power/voltage reference from integration (KIWPxmax) (> WindPlantReactiveControlIEC.kiwpxmin). It is a project-dependent parameter. Default: 0.0 + :kiwpxmin: Minimum reactive power/voltage reference from integration (KIWPxmin) (< WindPlantReactiveControlIEC.kiwpxmax). It is a project-dependent parameter. Default: 0.0 + :kpwpx: Plant Q controller proportional gain (KPWPx). It is a project-dependent parameter. Default: 0.0 + :kwpqref: Reactive power reference gain (KWPqref). It is a project-dependent parameter. Default: 0.0 + :kwpqu: Plant voltage control droop (KWPqu). It is a project-dependent parameter. Default: 0.0 + :tuqfilt: Filter time constant for voltage-dependent reactive power (Tuqfilt) (>= 0). It is a project-dependent parameter. Default: 0 + :twppfiltq: Filter time constant for active power measurement (TWPpfiltq) (>= 0). It is a project-dependent parameter. Default: 0 + :twpqfiltq: Filter time constant for reactive power measurement (TWPqfiltq) (>= 0). It is a project-dependent parameter. Default: 0 + :twpufiltq: Filter time constant for voltage measurement (TWPufiltq) (>= 0). It is a project-dependent parameter. Default: 0 + :txft: Lead time constant in reference value transfer function (Txft) (>= 0). It is a project-dependent parameter. Default: 0 + :txfv: Lag time constant in reference value transfer function (Txfv) (>= 0). It is a project-dependent parameter. Default: 0 + :uwpqdip: Voltage threshold for UVRT detection in Q control (uWPqdip). It is a project-dependent parameter. Default: 0.0 + :windPlantQcontrolModesType: Reactive power/voltage controller mode (MWPqmode). It is a case-dependent parameter. Default: None + :xrefmax: Maximum xWTref (qWTref or delta uWTref) request from the plant controller (xrefmax) (> WindPlantReactiveControlIEC.xrefmin). It is a case-dependent parameter. Default: 0.0 + :xrefmin: Minimum xWTref (qWTref or delta uWTref) request from the plant controller (xrefmin) (< WindPlantReactiveControlIEC.xrefmax). It is a project-dependent parameter. Default: 0.0 + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "WindPlantIEC": [ + cgmesProfile.DY.value, + ], + "dxrefmax": [ + cgmesProfile.DY.value, + ], + "dxrefmin": [ + cgmesProfile.DY.value, + ], + "kiwpx": [ + cgmesProfile.DY.value, + ], + "kiwpxmax": [ + cgmesProfile.DY.value, + ], + "kiwpxmin": [ + cgmesProfile.DY.value, + ], + "kpwpx": [ + cgmesProfile.DY.value, + ], + "kwpqref": [ + cgmesProfile.DY.value, + ], + "kwpqu": [ + cgmesProfile.DY.value, + ], + "tuqfilt": [ + cgmesProfile.DY.value, + ], + "twppfiltq": [ + cgmesProfile.DY.value, + ], + "twpqfiltq": [ + cgmesProfile.DY.value, + ], + "twpufiltq": [ + cgmesProfile.DY.value, + ], + "txft": [ + cgmesProfile.DY.value, + ], + "txfv": [ + cgmesProfile.DY.value, + ], + "uwpqdip": [ + cgmesProfile.DY.value, + ], + "windPlantQcontrolModesType": [ + cgmesProfile.DY.value, + ], + "xrefmax": [ + cgmesProfile.DY.value, + ], + "xrefmin": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + WindPlantIEC=None, + dxrefmax=0.0, + dxrefmin=0.0, + kiwpx=0.0, + kiwpxmax=0.0, + kiwpxmin=0.0, + kpwpx=0.0, + kwpqref=0.0, + kwpqu=0.0, + tuqfilt=0, + twppfiltq=0, + twpqfiltq=0, + twpufiltq=0, + txft=0, + txfv=0, + uwpqdip=0.0, + windPlantQcontrolModesType=None, + xrefmax=0.0, + xrefmin=0.0, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.WindPlantIEC = WindPlantIEC + self.dxrefmax = dxrefmax + self.dxrefmin = dxrefmin + self.kiwpx = kiwpx + self.kiwpxmax = kiwpxmax + self.kiwpxmin = kiwpxmin + self.kpwpx = kpwpx + self.kwpqref = kwpqref + self.kwpqu = kwpqu + self.tuqfilt = tuqfilt + self.twppfiltq = twppfiltq + self.twpqfiltq = twpqfiltq + self.twpufiltq = twpufiltq + self.txft = txft + self.txfv = txfv + self.uwpqdip = uwpqdip + self.windPlantQcontrolModesType = windPlantQcontrolModesType + self.xrefmax = xrefmax + self.xrefmin = xrefmin + + def __str__(self): + str = "class=WindPlantReactiveControlIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPlantUserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/WindPlantUserDefined.py new file mode 100644 index 00000000..6431b576 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPlantUserDefined.py @@ -0,0 +1,46 @@ +from .WindPlantDynamics import WindPlantDynamics + + +class WindPlantUserDefined(WindPlantDynamics): + """ + Wind plant function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindPlantDynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindPlantDynamics: \n" + + WindPlantDynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindPlantUserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindPowerPlant.py b/cimpy_3/cimpy/cgmes_v3_0/WindPowerPlant.py new file mode 100644 index 00000000..45b63e2e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindPowerPlant.py @@ -0,0 +1,39 @@ +from .PowerSystemResource import PowerSystemResource + + +class WindPowerPlant(PowerSystemResource): + """ + Wind power plant. + + :WindGeneratingUnits: A wind generating unit or units may be a member of a wind power plant. Default: "list" + """ + + cgmesProfile = PowerSystemResource.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + "WindGeneratingUnits": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class PowerSystemResource: \n" + + PowerSystemResource.__doc__ + ) + + def __init__(self, WindGeneratingUnits="list", *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindGeneratingUnits = WindGeneratingUnits + + def __str__(self): + str = "class=WindPowerPlant\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindProtectionIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindProtectionIEC.py new file mode 100644 index 00000000..830d503a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindProtectionIEC.py @@ -0,0 +1,98 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindProtectionIEC(IdentifiedObject): + """ + The grid protection model includes protection against over- and under-voltage, and against over- and under-frequency. Reference: IEC 61400-27-1:2015, 5.6.6. + + :WindDynamicsLookupTable: The wind dynamics lookup table associated with this grid protection model. Default: "list" + :dfimax: Maximum rate of change of frequency (dFmax). It is a type-dependent parameter. Default: 0.0 + :fover: Wind turbine over frequency protection activation threshold (fover). It is a project-dependent parameter. Default: 0.0 + :funder: Wind turbine under frequency protection activation threshold (funder). It is a project-dependent parameter. Default: 0.0 + :mzc: Zero crossing measurement mode (Mzc). It is a type-dependent parameter. true = WT protection system uses zero crossings to detect frequency (1 in the IEC model) false = WT protection system does not use zero crossings to detect frequency (0 in the IEC model). Default: False + :tfma: Time interval of moving average window (TfMA) (>= 0). It is a type-dependent parameter. Default: 0 + :uover: Wind turbine over voltage protection activation threshold (uover). It is a project-dependent parameter. Default: 0.0 + :uunder: Wind turbine under voltage protection activation threshold (uunder). It is a project-dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind generator type 3 or type 4 model with which this wind turbine protection model is associated. Default: None + :WindTurbineType1or2IEC: Wind generator type 1 or type 2 model with which this wind turbine protection model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindDynamicsLookupTable": [ + cgmesProfile.DY.value, + ], + "dfimax": [ + cgmesProfile.DY.value, + ], + "fover": [ + cgmesProfile.DY.value, + ], + "funder": [ + cgmesProfile.DY.value, + ], + "mzc": [ + cgmesProfile.DY.value, + ], + "tfma": [ + cgmesProfile.DY.value, + ], + "uover": [ + cgmesProfile.DY.value, + ], + "uunder": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + "WindTurbineType1or2IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + WindDynamicsLookupTable="list", + dfimax=0.0, + fover=0.0, + funder=0.0, + mzc=False, + tfma=0, + uover=0.0, + uunder=0.0, + WindTurbineType3or4IEC=None, + WindTurbineType1or2IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindDynamicsLookupTable = WindDynamicsLookupTable + self.dfimax = dfimax + self.fover = fover + self.funder = funder + self.mzc = mzc + self.tfma = tfma + self.uover = uover + self.uunder = uunder + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + self.WindTurbineType1or2IEC = WindTurbineType1or2IEC + + def __str__(self): + str = "class=WindProtectionIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindQcontrolModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindQcontrolModeKind.py new file mode 100644 index 00000000..5e9de6b8 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindQcontrolModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindQcontrolModeKind(Base): + """ + General wind turbine Q control modes MqG. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindQcontrolModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindRefFrameRotIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindRefFrameRotIEC.py new file mode 100644 index 00000000..396ca5a3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindRefFrameRotIEC.py @@ -0,0 +1,62 @@ +from .IdentifiedObject import IdentifiedObject + + +class WindRefFrameRotIEC(IdentifiedObject): + """ + Reference frame rotation model. Reference: IEC 61400-27-1:2015, 5.6.3.5. + + :tpll: Time constant for PLL first order filter model (TPLL) (>= 0). It is a type-dependent parameter. Default: 0 + :upll1: Voltage below which the angle of the voltage is filtered and possibly also frozen (uPLL1). It is a type-dependent parameter. Default: 0.0 + :upll2: Voltage (uPLL2) below which the angle of the voltage is frozen if uPLL2 is smaller or equal to uPLL1 . It is a type-dependent parameter. Default: 0.0 + :WindTurbineType3or4IEC: Wind turbine type 3 or type 4 model with which this reference frame rotation model is associated. Default: None + """ + + cgmesProfile = IdentifiedObject.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "tpll": [ + cgmesProfile.DY.value, + ], + "upll1": [ + cgmesProfile.DY.value, + ], + "upll2": [ + cgmesProfile.DY.value, + ], + "WindTurbineType3or4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class IdentifiedObject: \n" + + IdentifiedObject.__doc__ + ) + + def __init__( + self, + tpll=0, + upll1=0.0, + upll2=0.0, + WindTurbineType3or4IEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.tpll = tpll + self.upll1 = upll1 + self.upll2 = upll2 + self.WindTurbineType3or4IEC = WindTurbineType3or4IEC + + def __str__(self): + str = "class=WindRefFrameRotIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2Dynamics.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2Dynamics.py new file mode 100644 index 00000000..7811d905 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2Dynamics.py @@ -0,0 +1,46 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindTurbineType1or2Dynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines type 1 and type 2 and their control models. Generator model for wind turbine of type 1 or type 2 is a standard asynchronous generator model. + + :RemoteInputSignal: Remote input signal used by this wind generator type 1 or type 2 model. Default: None + :AsynchronousMachineDynamics: Asynchronous machine model with which this wind generator type 1 or type 2 model is associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "AsynchronousMachineDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, RemoteInputSignal=None, AsynchronousMachineDynamics=None, *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.RemoteInputSignal = RemoteInputSignal + self.AsynchronousMachineDynamics = AsynchronousMachineDynamics + + def __str__(self): + str = "class=WindTurbineType1or2Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2IEC.py new file mode 100644 index 00000000..c5d86e7c --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType1or2IEC.py @@ -0,0 +1,44 @@ +from .WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics + + +class WindTurbineType1or2IEC(WindTurbineType1or2Dynamics): + """ + Parent class supporting relationships to IEC wind turbines type 1 and type 2 including their control models. Generator model for wind turbine of IEC type 1 or type 2 is a standard asynchronous generator model. Reference: IEC 61400-27-1:2015, 5.5.2 and 5.5.3. + + :WindMechIEC: Wind mechanical model associated with this wind generator type 1 or type 2 model. Default: None + :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 1 or type 2 model. Default: None + """ + + cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + "WindProtectionIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2Dynamics: \n" + + WindTurbineType1or2Dynamics.__doc__ + ) + + def __init__(self, WindMechIEC=None, WindProtectionIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindMechIEC = WindMechIEC + self.WindProtectionIEC = WindProtectionIEC + + def __str__(self): + str = "class=WindTurbineType1or2IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3IEC.py new file mode 100644 index 00000000..4d884fac --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3IEC.py @@ -0,0 +1,74 @@ +from .WindTurbineType3or4IEC import WindTurbineType3or4IEC + + +class WindTurbineType3IEC(WindTurbineType3or4IEC): + """ + Parent class supporting relationships to IEC wind turbines type 3 including their control models. + + :WindAeroOneDimIEC: Wind aerodynamic model associated with this wind generator type 3 model. Default: None + :WindAeroTwoDimIEC: Wind aerodynamic model associated with this wind turbine type 3 model. Default: None + :WindContPitchAngleIEC: Wind control pitch angle model associated with this wind turbine type 3. Default: None + :WindContPType3IEC: Wind control P type 3 model associated with this wind turbine type 3 model. Default: None + :WindGenType3IEC: Wind generator type 3 model associated with this wind turbine type 3 model. Default: None + :WindMechIEC: Wind mechanical model associated with this wind turbine type 3 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindAeroOneDimIEC": [ + cgmesProfile.DY.value, + ], + "WindAeroTwoDimIEC": [ + cgmesProfile.DY.value, + ], + "WindContPitchAngleIEC": [ + cgmesProfile.DY.value, + ], + "WindContPType3IEC": [ + cgmesProfile.DY.value, + ], + "WindGenType3IEC": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4IEC: \n" + + WindTurbineType3or4IEC.__doc__ + ) + + def __init__( + self, + WindAeroOneDimIEC=None, + WindAeroTwoDimIEC=None, + WindContPitchAngleIEC=None, + WindContPType3IEC=None, + WindGenType3IEC=None, + WindMechIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindAeroOneDimIEC = WindAeroOneDimIEC + self.WindAeroTwoDimIEC = WindAeroTwoDimIEC + self.WindContPitchAngleIEC = WindContPitchAngleIEC + self.WindContPType3IEC = WindContPType3IEC + self.WindGenType3IEC = WindGenType3IEC + self.WindMechIEC = WindMechIEC + + def __str__(self): + str = "class=WindTurbineType3IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4Dynamics.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4Dynamics.py new file mode 100644 index 00000000..948f42a2 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4Dynamics.py @@ -0,0 +1,56 @@ +from .DynamicsFunctionBlock import DynamicsFunctionBlock + + +class WindTurbineType3or4Dynamics(DynamicsFunctionBlock): + """ + Parent class supporting relationships to wind turbines type 3 and type 4 and wind plant including their control models. + + :PowerElectronicsConnection: The power electronics connection associated with this wind turbine type 3 or type 4 dynamics model. Default: None + :RemoteInputSignal: Remote input signal used by these wind turbine type 3 or type 4 models. Default: None + :WindPlantDynamics: The wind plant with which the wind turbines type 3 or type 4 are associated. Default: None + """ + + cgmesProfile = DynamicsFunctionBlock.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "PowerElectronicsConnection": [ + cgmesProfile.DY.value, + ], + "RemoteInputSignal": [ + cgmesProfile.DY.value, + ], + "WindPlantDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class DynamicsFunctionBlock: \n" + + DynamicsFunctionBlock.__doc__ + ) + + def __init__( + self, + PowerElectronicsConnection=None, + RemoteInputSignal=None, + WindPlantDynamics=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.PowerElectronicsConnection = PowerElectronicsConnection + self.RemoteInputSignal = RemoteInputSignal + self.WindPlantDynamics = WindPlantDynamics + + def __str__(self): + str = "class=WindTurbineType3or4Dynamics\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4IEC.py new file mode 100644 index 00000000..ddebf0b1 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType3or4IEC.py @@ -0,0 +1,74 @@ +from .WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics + + +class WindTurbineType3or4IEC(WindTurbineType3or4Dynamics): + """ + Parent class supporting relationships to IEC wind turbines type 3 and type 4 including their control models. + + :WindContCurrLimIEC: Wind control current limitation model associated with this wind turbine type 3 or type 4 model. Default: None + :WIndContQIEC: Wind control Q model associated with this wind turbine type 3 or type 4 model. Default: None + :WindContQLimIEC: Constant Q limitation model associated with this wind generator type 3 or type 4 model. Default: None + :WindContQPQULimIEC: QP and QU limitation model associated with this wind generator type 3 or type 4 model. Default: None + :WindProtectionIEC: Wind turbune protection model associated with this wind generator type 3 or type 4 model. Default: None + :WindRefFrameRotIEC: Reference frame rotation model associated with this wind turbine type 3 or type 4 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContCurrLimIEC": [ + cgmesProfile.DY.value, + ], + "WIndContQIEC": [ + cgmesProfile.DY.value, + ], + "WindContQLimIEC": [ + cgmesProfile.DY.value, + ], + "WindContQPQULimIEC": [ + cgmesProfile.DY.value, + ], + "WindProtectionIEC": [ + cgmesProfile.DY.value, + ], + "WindRefFrameRotIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4Dynamics: \n" + + WindTurbineType3or4Dynamics.__doc__ + ) + + def __init__( + self, + WindContCurrLimIEC=None, + WIndContQIEC=None, + WindContQLimIEC=None, + WindContQPQULimIEC=None, + WindProtectionIEC=None, + WindRefFrameRotIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindContCurrLimIEC = WindContCurrLimIEC + self.WIndContQIEC = WIndContQIEC + self.WindContQLimIEC = WindContQLimIEC + self.WindContQPQULimIEC = WindContQPQULimIEC + self.WindProtectionIEC = WindProtectionIEC + self.WindRefFrameRotIEC = WindRefFrameRotIEC + + def __str__(self): + str = "class=WindTurbineType3or4IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4IEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4IEC.py new file mode 100644 index 00000000..2cd4537a --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4IEC.py @@ -0,0 +1,39 @@ +from .WindTurbineType3or4IEC import WindTurbineType3or4IEC + + +class WindTurbineType4IEC(WindTurbineType3or4IEC): + """ + Parent class supporting relationships to IEC wind turbines type 4 including their control models. + + :WindGenType3aIEC: Wind generator type 3A model associated with this wind turbine type 4 model. Default: None + """ + + cgmesProfile = WindTurbineType3or4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindGenType3aIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4IEC: \n" + + WindTurbineType3or4IEC.__doc__ + ) + + def __init__(self, WindGenType3aIEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindGenType3aIEC = WindGenType3aIEC + + def __str__(self): + str = "class=WindTurbineType4IEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4aIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4aIEC.py new file mode 100644 index 00000000..5d95bcb0 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4aIEC.py @@ -0,0 +1,44 @@ +from .WindTurbineType4IEC import WindTurbineType4IEC + + +class WindTurbineType4aIEC(WindTurbineType4IEC): + """ + Wind turbine IEC type 4A. Reference: IEC 61400-27-1:2015, 5.5.5.2. + + :WindContPType4aIEC: Wind control P type 4A model associated with this wind turbine type 4A model. Default: None + :WindGenType4IEC: Wind generator type 4 model associated with this wind turbine type 4A model. Default: None + """ + + cgmesProfile = WindTurbineType4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContPType4aIEC": [ + cgmesProfile.DY.value, + ], + "WindGenType4IEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType4IEC: \n" + + WindTurbineType4IEC.__doc__ + ) + + def __init__(self, WindContPType4aIEC=None, WindGenType4IEC=None, *args, **kw_args): + super().__init__(*args, **kw_args) + + self.WindContPType4aIEC = WindContPType4aIEC + self.WindGenType4IEC = WindGenType4IEC + + def __str__(self): + str = "class=WindTurbineType4aIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4bIEC.py b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4bIEC.py new file mode 100644 index 00000000..042ce0b5 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindTurbineType4bIEC.py @@ -0,0 +1,56 @@ +from .WindTurbineType4IEC import WindTurbineType4IEC + + +class WindTurbineType4bIEC(WindTurbineType4IEC): + """ + Wind turbine IEC type 4B. Reference: IEC 61400-27-1:2015, 5.5.5.3. + + :WindContPType4bIEC: Wind control P type 4B model associated with this wind turbine type 4B model. Default: None + :WindGenType4IEC: Wind generator type 4 model associated with this wind turbine type 4B model. Default: None + :WindMechIEC: Wind mechanical model associated with this wind turbine type 4B model. Default: None + """ + + cgmesProfile = WindTurbineType4IEC.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "WindContPType4bIEC": [ + cgmesProfile.DY.value, + ], + "WindGenType4IEC": [ + cgmesProfile.DY.value, + ], + "WindMechIEC": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType4IEC: \n" + + WindTurbineType4IEC.__doc__ + ) + + def __init__( + self, + WindContPType4bIEC=None, + WindGenType4IEC=None, + WindMechIEC=None, + *args, + **kw_args, + ): + super().__init__(*args, **kw_args) + + self.WindContPType4bIEC = WindContPType4bIEC + self.WindGenType4IEC = WindGenType4IEC + self.WindMechIEC = WindMechIEC + + def __str__(self): + str = "class=WindTurbineType4bIEC\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindType1or2UserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/WindType1or2UserDefined.py new file mode 100644 index 00000000..b258bac3 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindType1or2UserDefined.py @@ -0,0 +1,46 @@ +from .WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics + + +class WindType1or2UserDefined(WindTurbineType1or2Dynamics): + """ + Wind type 1 or type 2 function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindTurbineType1or2Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType1or2Dynamics: \n" + + WindTurbineType1or2Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindType1or2UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindType3or4UserDefined.py b/cimpy_3/cimpy/cgmes_v3_0/WindType3or4UserDefined.py new file mode 100644 index 00000000..8efcdd44 --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindType3or4UserDefined.py @@ -0,0 +1,46 @@ +from .WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics + + +class WindType3or4UserDefined(WindTurbineType3or4Dynamics): + """ + Wind type 3 or type 4 function block whose dynamic behaviour is described by a user-defined model. + + :proprietary: Behaviour is based on a proprietary model as opposed to a detailed model. true = user-defined model is proprietary with behaviour mutually understood by sending and receiving applications and parameters passed as general attributes false = user-defined model is explicitly defined in terms of control blocks and their input and output signals. Default: False + :ProprietaryParameterDynamics: Parameter of this proprietary user-defined model. Default: "list" + """ + + cgmesProfile = WindTurbineType3or4Dynamics.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + "proprietary": [ + cgmesProfile.DY.value, + ], + "ProprietaryParameterDynamics": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + __doc__ += ( + "\n Documentation of parent class WindTurbineType3or4Dynamics: \n" + + WindTurbineType3or4Dynamics.__doc__ + ) + + def __init__( + self, proprietary=False, ProprietaryParameterDynamics="list", *args, **kw_args + ): + super().__init__(*args, **kw_args) + + self.proprietary = proprietary + self.ProprietaryParameterDynamics = ProprietaryParameterDynamics + + def __str__(self): + str = "class=WindType3or4UserDefined\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindUVRTQcontrolModeKind.py b/cimpy_3/cimpy/cgmes_v3_0/WindUVRTQcontrolModeKind.py new file mode 100644 index 00000000..bcb69ffc --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindUVRTQcontrolModeKind.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindUVRTQcontrolModeKind(Base): + """ + UVRT Q control modes MqUVRT. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.DY.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindUVRTQcontrolModeKind\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WindingConnection.py b/cimpy_3/cimpy/cgmes_v3_0/WindingConnection.py new file mode 100644 index 00000000..babc104e --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WindingConnection.py @@ -0,0 +1,31 @@ +from .Base import Base + + +class WindingConnection(Base): + """ + Winding connection type. + + """ + + cgmesProfile = Base.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.EQ.value, + ], + } + + serializationProfile = {} + + def __init__( + self, + ): + + pass + + def __str__(self): + str = "class=WindingConnection\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy_3/cimpy/cgmes_v3_0/WorkLocation.py b/cimpy_3/cimpy/cgmes_v3_0/WorkLocation.py new file mode 100644 index 00000000..c921a94d --- /dev/null +++ b/cimpy_3/cimpy/cgmes_v3_0/WorkLocation.py @@ -0,0 +1,32 @@ +from .Location import Location + + +class WorkLocation(Location): + """ + Information about a particular location for various forms of work. + + """ + + cgmesProfile = Location.cgmesProfile + + possibleProfileList = { + "class": [ + cgmesProfile.GL.value, + ], + } + + serializationProfile = {} + + __doc__ += "\n Documentation of parent class Location: \n" + Location.__doc__ + + def __init__(self, *args, **kw_args): + super().__init__(*args, **kw_args) + + pass + + def __str__(self): + str = "class=WorkLocation\n" + attributes = self.__dict__ + for key in attributes.keys(): + str = str + key + "={}\n".format(attributes[key]) + return str diff --git a/cimpy/cgmes_v2_4_15/__init__.py b/cimpy_3/cimpy/cgmes_v3_0/__init__.py similarity index 66% rename from cimpy/cgmes_v2_4_15/__init__.py rename to cimpy_3/cimpy/cgmes_v3_0/__init__.py index 3df66f11..36ca4a12 100644 --- a/cimpy/cgmes_v2_4_15/__init__.py +++ b/cimpy_3/cimpy/cgmes_v3_0/__init__.py @@ -1,483 +1,670 @@ -from .DCConductingEquipment import DCConductingEquipment as DCConductingEquipment -from .MeasurementValueSource import MeasurementValueSource as MeasurementValueSource -from .DCBaseTerminal import DCBaseTerminal as DCBaseTerminal -from .ApparentPowerLimit import ApparentPowerLimit as ApparentPowerLimit -from .ExcDC3A import ExcDC3A as ExcDC3A -from .GovGAST import GovGAST as GovGAST -from .ConformLoad import ConformLoad as ConformLoad -from .RatioTapChangerTablePoint import RatioTapChangerTablePoint as RatioTapChangerTablePoint -from .Junction import Junction as Junction -from .PerCent import PerCent as PerCent +from .VsPpccControlKind import VsPpccControlKind as VsPpccControlKind +from .EnergyConsumer import EnergyConsumer as EnergyConsumer +from .WindPlantFreqPcontrolIEC import ( + WindPlantFreqPcontrolIEC as WindPlantFreqPcontrolIEC, +) +from .ConformLoadSchedule import ConformLoadSchedule as ConformLoadSchedule +from .Date import Date as Date +from .BasicIntervalSchedule import BasicIntervalSchedule as BasicIntervalSchedule +from .EnergyArea import EnergyArea as EnergyArea +from .SvInjection import SvInjection as SvInjection +from .Discrete import Discrete as Discrete +from .CsPpccControlKind import CsPpccControlKind as CsPpccControlKind +from .DCLineSegment import DCLineSegment as DCLineSegment +from .WindAeroConstIEC import WindAeroConstIEC as WindAeroConstIEC +from .WindPitchContPowerIEC import WindPitchContPowerIEC as WindPitchContPowerIEC +from .PowerSystemStabilizerUserDefined import ( + PowerSystemStabilizerUserDefined as PowerSystemStabilizerUserDefined, +) +from .ServiceLocation import ServiceLocation as ServiceLocation +from .ExcitationSystemDynamics import ( + ExcitationSystemDynamics as ExcitationSystemDynamics, +) +from .ExcST7B import ExcST7B as ExcST7B +from .SynchronousMachineKind import SynchronousMachineKind as SynchronousMachineKind +from .Integer import Integer as Integer from .VoltagePerReactivePower import VoltagePerReactivePower as VoltagePerReactivePower -from .RotationSpeed import RotationSpeed as RotationSpeed -from .GovHydroIEEE0 import GovHydroIEEE0 as GovHydroIEEE0 +from .DiscExcContIEEEDEC2A import DiscExcContIEEEDEC2A as DiscExcContIEEEDEC2A +from .ConnectivityNode import ConnectivityNode as ConnectivityNode +from .WindContCurrLimIEC import WindContCurrLimIEC as WindContCurrLimIEC +from .VoltageLevel import VoltageLevel as VoltageLevel from .ExcIEEEST6B import ExcIEEEST6B as ExcIEEEST6B -from .VoltageCompensatorUserDefined import VoltageCompensatorUserDefined as VoltageCompensatorUserDefined -from .HydroPlantStorageKind import HydroPlantStorageKind as HydroPlantStorageKind -from .Resistance import Resistance as Resistance -from .GovHydroPelton import GovHydroPelton as GovHydroPelton -from .GroundDisconnector import GroundDisconnector as GroundDisconnector -from .StaticLoadModelKind import StaticLoadModelKind as StaticLoadModelKind -from .Currency import Currency as Currency -from .DCBusbar import DCBusbar as DCBusbar -from .GovGAST1 import GovGAST1 as GovGAST1 -from .DCTerminal import DCTerminal as DCTerminal -from .ResistancePerLength import ResistancePerLength as ResistancePerLength -from .Control import Control as Control -from .Curve import Curve as Curve -from .ExcST4B import ExcST4B as ExcST4B -from .PssPTIST1 import PssPTIST1 as PssPTIST1 -from .UnitMultiplier import UnitMultiplier as UnitMultiplier -from .RegulationSchedule import RegulationSchedule as RegulationSchedule -from .Line import Line as Line -from .ExcREXSFeedbackSignalKind import ExcREXSFeedbackSignalKind as ExcREXSFeedbackSignalKind -from .GovSteamFV2 import GovSteamFV2 as GovSteamFV2 -from .ApparentPower import ApparentPower as ApparentPower -from .PositionPoint import PositionPoint as PositionPoint -from .PowerTransformer import PowerTransformer as PowerTransformer -from .HydroEnergyConversionKind import HydroEnergyConversionKind as HydroEnergyConversionKind -from .WindingConnection import WindingConnection as WindingConnection -from .PhaseTapChangerNonLinear import PhaseTapChangerNonLinear as PhaseTapChangerNonLinear -from .WindContRotorRIEC import WindContRotorRIEC as WindContRotorRIEC -from .Susceptance import Susceptance as Susceptance -from .WindTurbineType3or4Dynamics import WindTurbineType3or4Dynamics as WindTurbineType3or4Dynamics -from .EnergySchedulingType import EnergySchedulingType as EnergySchedulingType -from .Breaker import Breaker as Breaker -from .RatioTapChangerTable import RatioTapChangerTable as RatioTapChangerTable -from .RemoteSignalKind import RemoteSignalKind as RemoteSignalKind -from .MechanicalLoadDynamics import MechanicalLoadDynamics as MechanicalLoadDynamics +from .ExcAC3A import ExcAC3A as ExcAC3A +from .AuxiliaryEquipment import AuxiliaryEquipment as AuxiliaryEquipment +from .SvStatus import SvStatus as SvStatus +from .GovHydro3 import GovHydro3 as GovHydro3 +from .SvPowerFlow import SvPowerFlow as SvPowerFlow +from .ReportingGroup import ReportingGroup as ReportingGroup +from .ExcSEXS import ExcSEXS as ExcSEXS +from .ExcAC5A import ExcAC5A as ExcAC5A +from .GovHydroDD import GovHydroDD as GovHydroDD +from .SubGeographicalRegion import SubGeographicalRegion as SubGeographicalRegion +from .PssRQB import PssRQB as PssRQB +from .Source import Source as Source +from .ExcHU import ExcHU as ExcHU +from .PetersenCoilModeKind import PetersenCoilModeKind as PetersenCoilModeKind +from .Conductance import Conductance as Conductance +from .LinearShuntCompensator import LinearShuntCompensator as LinearShuntCompensator +from .UnderexcLimX1 import UnderexcLimX1 as UnderexcLimX1 +from .ExcIEEEST4B import ExcIEEEST4B as ExcIEEEST4B +from .GovGAST3 import GovGAST3 as GovGAST3 +from .DiscExcContIEEEDEC1A import DiscExcContIEEEDEC1A as DiscExcContIEEEDEC1A from .EquivalentEquipment import EquivalentEquipment as EquivalentEquipment -from .PFVArControllerType1Dynamics import PFVArControllerType1Dynamics as PFVArControllerType1Dynamics -from .PFVArControllerType2Dynamics import PFVArControllerType2Dynamics as PFVArControllerType2Dynamics -from .Terminal import Terminal as Terminal -from .Switch import Switch as Switch -from .Ground import Ground as Ground -from .CsOperatingModeKind import CsOperatingModeKind as CsOperatingModeKind -from .TurbLCFB1 import TurbLCFB1 as TurbLCFB1 +from .InputSignalKind import InputSignalKind as InputSignalKind +from .GovSteamIEEE1 import GovSteamIEEE1 as GovSteamIEEE1 +from .TopologicalNode import TopologicalNode as TopologicalNode +from .LoadUserDefined import LoadUserDefined as LoadUserDefined from .OverexcLim2 import OverexcLim2 as OverexcLim2 -from .ExcIEEEAC7B import ExcIEEEAC7B as ExcIEEEAC7B -from .ExcST7B import ExcST7B as ExcST7B -from .RegulatingControlModeKind import RegulatingControlModeKind as RegulatingControlModeKind -from .SvTapStep import SvTapStep as SvTapStep -from .LimitSet import LimitSet as LimitSet -from .ExcIEEEAC8B import ExcIEEEAC8B as ExcIEEEAC8B -from .Quality61850 import Quality61850 as Quality61850 -from .ExcAC8B import ExcAC8B as ExcAC8B -from .UnderexcitationLimiterDynamics import UnderexcitationLimiterDynamics as UnderexcitationLimiterDynamics -from .ExcCZ import ExcCZ as ExcCZ -from .SynchronousMachineSimplified import SynchronousMachineSimplified as SynchronousMachineSimplified -from .WindDynamicsLookupTable import WindDynamicsLookupTable as WindDynamicsLookupTable -from .ExcOEX3T import ExcOEX3T as ExcOEX3T -from .SVCControlMode import SVCControlMode as SVCControlMode -from .NuclearGeneratingUnit import NuclearGeneratingUnit as NuclearGeneratingUnit -from .ExcIEEEDC3A import ExcIEEEDC3A as ExcIEEEDC3A -from .ExcAVR7 import ExcAVR7 as ExcAVR7 -from .PhaseTapChangerTable import PhaseTapChangerTable as PhaseTapChangerTable -from .DCSwitch import DCSwitch as DCSwitch +from .Limit import Limit as Limit +from .HydroPowerPlant import HydroPowerPlant as HydroPowerPlant +from .WindRefFrameRotIEC import WindRefFrameRotIEC as WindRefFrameRotIEC +from .ExcST3A import ExcST3A as ExcST3A from .Accumulator import Accumulator as Accumulator -from .ExcIEEEST4B import ExcIEEEST4B as ExcIEEEST4B -from .SeriesCompensator import SeriesCompensator as SeriesCompensator -from .SynchronousMachineUserDefined import SynchronousMachineUserDefined as SynchronousMachineUserDefined +from .Base import Base as Base +from .LoadGenericNonLinear import LoadGenericNonLinear as LoadGenericNonLinear +from .PssWECC import PssWECC as PssWECC +from .MeasurementValue import MeasurementValue as MeasurementValue +from .OperationalLimitType import OperationalLimitType as OperationalLimitType +from .LoadComposite import LoadComposite as LoadComposite +from .Clamp import Clamp as Clamp +from .MeasurementValueQuality import MeasurementValueQuality as MeasurementValueQuality +from .GovHydroIEEE0 import GovHydroIEEE0 as GovHydroIEEE0 +from .ControlAreaGeneratingUnit import ( + ControlAreaGeneratingUnit as ControlAreaGeneratingUnit, +) +from .PhaseTapChangerTabular import PhaseTapChangerTabular as PhaseTapChangerTabular +from .PowerTransformerEnd import PowerTransformerEnd as PowerTransformerEnd +from .DCDisconnector import DCDisconnector as DCDisconnector +from .HydroTurbineKind import HydroTurbineKind as HydroTurbineKind +from .PssIEEE4B import PssIEEE4B as PssIEEE4B +from .SvVoltage import SvVoltage as SvVoltage +from .VoltageCompensatorUserDefined import ( + VoltageCompensatorUserDefined as VoltageCompensatorUserDefined, +) +from .ExcDC1A import ExcDC1A as ExcDC1A +from .BaseVoltage import BaseVoltage as BaseVoltage +from .ExcIEEEST3A import ExcIEEEST3A as ExcIEEEST3A +from .DCPolarityKind import DCPolarityKind as DCPolarityKind +from .DiagramObjectStyle import DiagramObjectStyle as DiagramObjectStyle +from .SolarGeneratingUnit import SolarGeneratingUnit as SolarGeneratingUnit +from .DisconnectingCircuitBreaker import ( + DisconnectingCircuitBreaker as DisconnectingCircuitBreaker, +) +from .TurbineGovernorDynamics import TurbineGovernorDynamics as TurbineGovernorDynamics +from .ExcIEEEST1A import ExcIEEEST1A as ExcIEEEST1A +from .WaveTrap import WaveTrap as WaveTrap from .Pss2B import Pss2B as Pss2B -from .WindGenUnitKind import WindGenUnitKind as WindGenUnitKind +from .DCSeriesDevice import DCSeriesDevice as DCSeriesDevice +from .Boolean import Boolean as Boolean +from .GovHydroR import GovHydroR as GovHydroR +from .UnderexcLim2Simplified import UnderexcLim2Simplified as UnderexcLim2Simplified +from .Fuse import Fuse as Fuse +from .UnderexcLimIEEE2 import UnderexcLimIEEE2 as UnderexcLimIEEE2 +from .RemoteSignalKind import RemoteSignalKind as RemoteSignalKind +from .VoltageAdjusterUserDefined import ( + VoltageAdjusterUserDefined as VoltageAdjusterUserDefined, +) +from .Area import Area as Area +from .GenICompensationForGenJ import GenICompensationForGenJ as GenICompensationForGenJ +from .Location import Location as Location +from .PotentialTransformer import PotentialTransformer as PotentialTransformer +from .ExcST6BOELselectorKind import ExcST6BOELselectorKind as ExcST6BOELselectorKind +from .SVCControlMode import SVCControlMode as SVCControlMode +from .WindQcontrolModeKind import WindQcontrolModeKind as WindQcontrolModeKind +from .PFVArType2IEEEVArController import ( + PFVArType2IEEEVArController as PFVArType2IEEEVArController, +) +from .WindGenType4IEC import WindGenType4IEC as WindGenType4IEC +from .WindMechIEC import WindMechIEC as WindMechIEC +from .WindContQLimIEC import WindContQLimIEC as WindContQLimIEC +from .AnalogControl import AnalogControl as AnalogControl +from .UnderexcitationLimiterDynamics import ( + UnderexcitationLimiterDynamics as UnderexcitationLimiterDynamics, +) +from .GovSteam2 import GovSteam2 as GovSteam2 +from .NuclearGeneratingUnit import NuclearGeneratingUnit as NuclearGeneratingUnit +from .ExcBBC import ExcBBC as ExcBBC +from .WindContPType3IEC import WindContPType3IEC as WindContPType3IEC +from .PhotoVoltaicUnit import PhotoVoltaicUnit as PhotoVoltaicUnit +from .ExcST7BOELselectorKind import ExcST7BOELselectorKind as ExcST7BOELselectorKind +from .AsynchronousMachineDynamics import ( + AsynchronousMachineDynamics as AsynchronousMachineDynamics, +) +from .ExcIEEEAC4A import ExcIEEEAC4A as ExcIEEEAC4A +from .AccumulatorLimitSet import AccumulatorLimitSet as AccumulatorLimitSet +from .GeographicalRegion import GeographicalRegion as GeographicalRegion +from .DiscontinuousExcitationControlUserDefined import ( + DiscontinuousExcitationControlUserDefined as DiscontinuousExcitationControlUserDefined, +) +from .PowerElectronicsUnit import PowerElectronicsUnit as PowerElectronicsUnit +from .Susceptance import Susceptance as Susceptance +from .RaiseLowerCommand import RaiseLowerCommand as RaiseLowerCommand +from .VoltageCompensatorDynamics import ( + VoltageCompensatorDynamics as VoltageCompensatorDynamics, +) +from .PhaseTapChangerSymmetrical import ( + PhaseTapChangerSymmetrical as PhaseTapChangerSymmetrical, +) +from .ExcST6B import ExcST6B as ExcST6B +from .ActivePowerPerFrequency import ActivePowerPerFrequency as ActivePowerPerFrequency from .ExcELIN2 import ExcELIN2 as ExcELIN2 -from .__init__ import __init__ as __init__ -from .WindTurbineType1or2IEC import WindTurbineType1or2IEC as WindTurbineType1or2IEC -from .WindTurbineType3or4IEC import WindTurbineType3or4IEC as WindTurbineType3or4IEC -from .GovSteamFV4 import GovSteamFV4 as GovSteamFV4 -from .PhaseTapChangerAsymmetrical import PhaseTapChangerAsymmetrical as PhaseTapChangerAsymmetrical -from .TapChangerTablePoint import TapChangerTablePoint as TapChangerTablePoint -from .VCompIEEEType1 import VCompIEEEType1 as VCompIEEEType1 -from .TurbineLoadControllerUserDefined import TurbineLoadControllerUserDefined as TurbineLoadControllerUserDefined -from .VAdjIEEE import VAdjIEEE as VAdjIEEE -from .PerLengthDCLineParameter import PerLengthDCLineParameter as PerLengthDCLineParameter -from .ThermalGeneratingUnit import ThermalGeneratingUnit as ThermalGeneratingUnit +from .DCConverterUnit import DCConverterUnit as DCConverterUnit +from .UnderexcLimX2 import UnderexcLimX2 as UnderexcLimX2 +from .AccumulatorValue import AccumulatorValue as AccumulatorValue +from .UnderexcLimIEEE1 import UnderexcLimIEEE1 as UnderexcLimIEEE1 +from .MonthDay import MonthDay as MonthDay +from .ControlArea import ControlArea as ControlArea +from .AngleDegrees import AngleDegrees as AngleDegrees +from .SurgeArrester import SurgeArrester as SurgeArrester +from .Float import Float as Float +from .DiscreteValue import DiscreteValue as DiscreteValue +from .SeriesCompensator import SeriesCompensator as SeriesCompensator +from .TurbineLoadControllerUserDefined import ( + TurbineLoadControllerUserDefined as TurbineLoadControllerUserDefined, +) +from .ExcIEEEST7B import ExcIEEEST7B as ExcIEEEST7B +from .AnalogLimit import AnalogLimit as AnalogLimit +from .NonlinearShuntCompensatorPoint import ( + NonlinearShuntCompensatorPoint as NonlinearShuntCompensatorPoint, +) +from .ExcIEEEST2A import ExcIEEEST2A as ExcIEEEST2A +from .DCBreaker import DCBreaker as DCBreaker +from .DateTime import DateTime as DateTime +from .ExcRQB import ExcRQB as ExcRQB +from .TurbLCFB1 import TurbLCFB1 as TurbLCFB1 +from .WindProtectionIEC import WindProtectionIEC as WindProtectionIEC +from .GovGAST4 import GovGAST4 as GovGAST4 +from .WindContPitchAngleIEC import WindContPitchAngleIEC as WindContPitchAngleIEC from .CoordinateSystem import CoordinateSystem as CoordinateSystem -from .GovHydroPID import GovHydroPID as GovHydroPID -from .Limit import Limit as Limit -from .ExcBBC import ExcBBC as ExcBBC -from .CurrentFlow import CurrentFlow as CurrentFlow from .ReactivePower import ReactivePower as ReactivePower +from .WindContPType4aIEC import WindContPType4aIEC as WindContPType4aIEC +from .GovSteam0 import GovSteam0 as GovSteam0 +from .PssIEEE3B import PssIEEE3B as PssIEEE3B +from .WindGenUnitKind import WindGenUnitKind as WindGenUnitKind +from .WorkLocation import WorkLocation as WorkLocation +from .ExcIEEEAC7B import ExcIEEEAC7B as ExcIEEEAC7B +from .SynchronousMachine import SynchronousMachine as SynchronousMachine +from .CurveStyle import CurveStyle as CurveStyle +from .ExcAVR5 import ExcAVR5 as ExcAVR5 +from .CSCUserDefined import CSCUserDefined as CSCUserDefined +from .SolarPowerPlant import SolarPowerPlant as SolarPowerPlant +from .ExcIEEEDC3A import ExcIEEEDC3A as ExcIEEEDC3A +from .ExcCZ import ExcCZ as ExcCZ +from .ExcAC2A import ExcAC2A as ExcAC2A +from .EquivalentShunt import EquivalentShunt as EquivalentShunt +from .Reactance import Reactance as Reactance +from .TieFlow import TieFlow as TieFlow from .FossilFuel import FossilFuel as FossilFuel -from .DCLineSegment import DCLineSegment as DCLineSegment -from .ShortCircuitRotorKind import ShortCircuitRotorKind as ShortCircuitRotorKind -from .WindType1or2UserDefined import WindType1or2UserDefined as WindType1or2UserDefined -from .InputSignalKind import InputSignalKind as InputSignalKind -from .DynamicsVersion import DynamicsVersion as DynamicsVersion -from .GovHydro3 import GovHydro3 as GovHydro3 -from .ReactiveCapabilityCurve import ReactiveCapabilityCurve as ReactiveCapabilityCurve -from .PFVArControllerType2UserDefined import PFVArControllerType2UserDefined as PFVArControllerType2UserDefined -from .TransformerControlMode import TransformerControlMode as TransformerControlMode -from .GovSteamIEEE1 import GovSteamIEEE1 as GovSteamIEEE1 -from .FrancisGovernorControlKind import FrancisGovernorControlKind as FrancisGovernorControlKind -from .TapSchedule import TapSchedule as TapSchedule -from .ExcIEEEDC4B import ExcIEEEDC4B as ExcIEEEDC4B -from .ExcIEEEST1A import ExcIEEEST1A as ExcIEEEST1A -from .ExcIEEEAC3A import ExcIEEEAC3A as ExcIEEEAC3A -from .SubLoadArea import SubLoadArea as SubLoadArea -from .AsynchronousMachine import AsynchronousMachine as AsynchronousMachine -from .PhaseTapChangerLinear import PhaseTapChangerLinear as PhaseTapChangerLinear -from .VoltageAdjusterDynamics import VoltageAdjusterDynamics as VoltageAdjusterDynamics -from .GeneratingUnit import GeneratingUnit as GeneratingUnit -from .DiscontinuousExcitationControlDynamics import DiscontinuousExcitationControlDynamics as DiscontinuousExcitationControlDynamics -from .ACDCConverterDCTerminal import ACDCConverterDCTerminal as ACDCConverterDCTerminal -from .AsynchronousMachineEquivalentCircuit import AsynchronousMachineEquivalentCircuit as AsynchronousMachineEquivalentCircuit -from .EquipmentBoundaryVersion import EquipmentBoundaryVersion as EquipmentBoundaryVersion -from .CsConverter import CsConverter as CsConverter -from .VoltageLimit import VoltageLimit as VoltageLimit -from .ExcST3A import ExcST3A as ExcST3A -from .GovSteamEU import GovSteamEU as GovSteamEU -from .BasicIntervalSchedule import BasicIntervalSchedule as BasicIntervalSchedule -from .WindContQIEC import WindContQIEC as WindContQIEC -from .Length import Length as Length -from .GovHydro1 import GovHydro1 as GovHydro1 -from .WindPlantReactiveControlIEC import WindPlantReactiveControlIEC as WindPlantReactiveControlIEC from .AsynchronousMachineKind import AsynchronousMachineKind as AsynchronousMachineKind -from .MechLoad1 import MechLoad1 as MechLoad1 -from .AnalogControl import AnalogControl as AnalogControl -from .RaiseLowerCommand import RaiseLowerCommand as RaiseLowerCommand -from .DynamicsFunctionBlock import DynamicsFunctionBlock as DynamicsFunctionBlock -from .WindTurbineType1or2Dynamics import WindTurbineType1or2Dynamics as WindTurbineType1or2Dynamics +from .PssIEEE2B import PssIEEE2B as PssIEEE2B +from .GovSteamFV3 import GovSteamFV3 as GovSteamFV3 +from .Resistance import Resistance as Resistance +from .SvShuntCompensatorSections import ( + SvShuntCompensatorSections as SvShuntCompensatorSections, +) +from .Inductance import Inductance as Inductance +from .Quality61850 import Quality61850 as Quality61850 +from .ExcIEEEAC5A import ExcIEEEAC5A as ExcIEEEAC5A +from .CurrentTransformer import CurrentTransformer as CurrentTransformer +from .PFVArControllerType2Dynamics import ( + PFVArControllerType2Dynamics as PFVArControllerType2Dynamics, +) +from .ExcPIC import ExcPIC as ExcPIC +from .GroundDisconnector import GroundDisconnector as GroundDisconnector +from .WindGenTurbineType1aIEC import WindGenTurbineType1aIEC as WindGenTurbineType1aIEC +from .WindAeroOneDimIEC import WindAeroOneDimIEC as WindAeroOneDimIEC +from .ActivePowerPerCurrentFlow import ( + ActivePowerPerCurrentFlow as ActivePowerPerCurrentFlow, +) +from .OverexcLimIEEE import OverexcLimIEEE as OverexcLimIEEE +from .PFVArControllerType1Dynamics import ( + PFVArControllerType1Dynamics as PFVArControllerType1Dynamics, +) +from .WindType1or2UserDefined import WindType1or2UserDefined as WindType1or2UserDefined +from .Pss5 import Pss5 as Pss5 +from .ExcST2A import ExcST2A as ExcST2A +from .EnergySchedulingType import EnergySchedulingType as EnergySchedulingType +from .PssSB4 import PssSB4 as PssSB4 +from .StaticLoadModelKind import StaticLoadModelKind as StaticLoadModelKind +from .WindGeneratingUnit import WindGeneratingUnit as WindGeneratingUnit +from .PssPTIST1 import PssPTIST1 as PssPTIST1 from .VCompIEEEType2 import VCompIEEEType2 as VCompIEEEType2 -from .OperationalLimitSet import OperationalLimitSet as OperationalLimitSet -from .PssIEEE1A import PssIEEE1A as PssIEEE1A -from .SvShuntCompensatorSections import SvShuntCompensatorSections as SvShuntCompensatorSections -from .EarthFaultCompensator import EarthFaultCompensator as EarthFaultCompensator -from .TransformerEnd import TransformerEnd as TransformerEnd -from .UnderexcLimIEEE1 import UnderexcLimIEEE1 as UnderexcLimIEEE1 -from .GovGAST2 import GovGAST2 as GovGAST2 -from .ExcSCRX import ExcSCRX as ExcSCRX -from .VolumeFlowRate import VolumeFlowRate as VolumeFlowRate -from .GovGAST4 import GovGAST4 as GovGAST4 -from .DCShunt import DCShunt as DCShunt -from .ExcAVR3 import ExcAVR3 as ExcAVR3 -from .MeasurementValue import MeasurementValue as MeasurementValue +from .SVCUserDefined import SVCUserDefined as SVCUserDefined +from .Curve import Curve as Curve +from .Equipment import Equipment as Equipment +from .ExcAVR7 import ExcAVR7 as ExcAVR7 +from .GovHydro4 import GovHydro4 as GovHydro4 from .VisibilityLayer import VisibilityLayer as VisibilityLayer -from .StateVariablesVersion import StateVariablesVersion as StateVariablesVersion -from .MonthDay import MonthDay as MonthDay -from .WindPlantUserDefined import WindPlantUserDefined as WindPlantUserDefined -from .MutualCoupling import MutualCoupling as MutualCoupling -from .GovHydroFrancis import GovHydroFrancis as GovHydroFrancis -from .PhaseTapChangerSymmetrical import PhaseTapChangerSymmetrical as PhaseTapChangerSymmetrical -from .TapChangerControl import TapChangerControl as TapChangerControl -from .PFVArType1IEEEPFController import PFVArType1IEEEPFController as PFVArType1IEEEPFController -from .Bay import Bay as Bay +from .PostLineSensor import PostLineSensor as PostLineSensor +from .GeneratingUnit import GeneratingUnit as GeneratingUnit +from .ApparentPower import ApparentPower as ApparentPower +from .AccumulatorLimit import AccumulatorLimit as AccumulatorLimit +from .PFVArControllerType2UserDefined import ( + PFVArControllerType2UserDefined as PFVArControllerType2UserDefined, +) +from .WindTurbineType1or2IEC import WindTurbineType1or2IEC as WindTurbineType1or2IEC from .GovSteam1 import GovSteam1 as GovSteam1 -from .SynchronousMachineOperatingMode import SynchronousMachineOperatingMode as SynchronousMachineOperatingMode -from .Base import Base as Base -from .NonConformLoad import NonConformLoad as NonConformLoad -from .GovCT2 import GovCT2 as GovCT2 -from .LoadGroup import LoadGroup as LoadGroup -from .DroopSignalFeedbackKind import DroopSignalFeedbackKind as DroopSignalFeedbackKind -from .WindGeneratingUnit import WindGeneratingUnit as WindGeneratingUnit -from .ActivePowerPerCurrentFlow import ActivePowerPerCurrentFlow as ActivePowerPerCurrentFlow -from .DiagramStyle import DiagramStyle as DiagramStyle -from .HydroPump import HydroPump as HydroPump -from .ExcIEEEAC2A import ExcIEEEAC2A as ExcIEEEAC2A -from .RegulatingCondEq import RegulatingCondEq as RegulatingCondEq -from .ExcAC3A import ExcAC3A as ExcAC3A -from .ExternalNetworkInjection import ExternalNetworkInjection as ExternalNetworkInjection -from .WindProtectionIEC import WindProtectionIEC as WindProtectionIEC -from .GovHydroPID2 import GovHydroPID2 as GovHydroPID2 -from .UnderexcLimX2 import UnderexcLimX2 as UnderexcLimX2 -from .SteadyStateHypothesisVersion import SteadyStateHypothesisVersion as SteadyStateHypothesisVersion -from .ExcREXS import ExcREXS as ExcREXS -from .ACLineSegment import ACLineSegment as ACLineSegment -from .Pss2ST import Pss2ST as Pss2ST -from .Connector import Connector as Connector -from .Area import Area as Area -from .DCPolarityKind import DCPolarityKind as DCPolarityKind -from .IdentifiedObject import IdentifiedObject as IdentifiedObject -from .SynchronousMachineKind import SynchronousMachineKind as SynchronousMachineKind -from .EquivalentInjection import EquivalentInjection as EquivalentInjection -from .ExcAC5A import ExcAC5A as ExcAC5A -from .DCDisconnector import DCDisconnector as DCDisconnector -from .ExcELIN1 import ExcELIN1 as ExcELIN1 -from .StringMeasurement import StringMeasurement as StringMeasurement -from .ExcDC3A1 import ExcDC3A1 as ExcDC3A1 -from .ValueAliasSet import ValueAliasSet as ValueAliasSet -from .EnergyArea import EnergyArea as EnergyArea -from .ReportingGroup import ReportingGroup as ReportingGroup -from .FuelType import FuelType as FuelType -from .Substation import Substation as Substation -from .RemoteInputSignal import RemoteInputSignal as RemoteInputSignal -from .PhaseTapChangerTabular import PhaseTapChangerTabular as PhaseTapChangerTabular -from .ExcDC2A import ExcDC2A as ExcDC2A -from .MeasurementValueQuality import MeasurementValueQuality as MeasurementValueQuality -from .OperationalLimit import OperationalLimit as OperationalLimit -from .LoadArea import LoadArea as LoadArea -from .ExcANS import ExcANS as ExcANS -from .LinearShuntCompensator import LinearShuntCompensator as LinearShuntCompensator -from .PFVArType2Common1 import PFVArType2Common1 as PFVArType2Common1 -from .ExcIEEEST2A import ExcIEEEST2A as ExcIEEEST2A -from .ExcST1A import ExcST1A as ExcST1A -from .ActivePowerLimit import ActivePowerLimit as ActivePowerLimit -from .DiagramObjectStyle import DiagramObjectStyle as DiagramObjectStyle -from .DiscontinuousExcitationControlUserDefined import DiscontinuousExcitationControlUserDefined as DiscontinuousExcitationControlUserDefined +from .Disconnector import Disconnector as Disconnector +from .GovSteamSGO import GovSteamSGO as GovSteamSGO from .RotatingMachine import RotatingMachine as RotatingMachine -from .SynchronousMachineModelKind import SynchronousMachineModelKind as SynchronousMachineModelKind -from .Boolean import Boolean as Boolean -from .ExcSEXS import ExcSEXS as ExcSEXS -from .PFVArType1IEEEVArController import PFVArType1IEEEVArController as PFVArType1IEEEVArController -from .StringMeasurementValue import StringMeasurementValue as StringMeasurementValue -from .WindPlantFreqPcontrolIEC import WindPlantFreqPcontrolIEC as WindPlantFreqPcontrolIEC -from .EquivalentShunt import EquivalentShunt as EquivalentShunt -from .InductancePerLength import InductancePerLength as InductancePerLength -from .TopologyBoundaryVersion import TopologyBoundaryVersion as TopologyBoundaryVersion -from .WindGenType4IEC import WindGenType4IEC as WindGenType4IEC -from .Reactance import Reactance as Reactance -from .VoltageAdjusterUserDefined import VoltageAdjusterUserDefined as VoltageAdjusterUserDefined -from .PowerSystemStabilizerUserDefined import PowerSystemStabilizerUserDefined as PowerSystemStabilizerUserDefined -from .WindAeroLinearIEC import WindAeroLinearIEC as WindAeroLinearIEC -from .ExcitationSystemDynamics import ExcitationSystemDynamics as ExcitationSystemDynamics -from .Command import Command as Command -from .ControlArea import ControlArea as ControlArea -from .ConnectivityNodeContainer import ConnectivityNodeContainer as ConnectivityNodeContainer -from .TapChanger import TapChanger as TapChanger -from .Conductor import Conductor as Conductor -from .PhaseTapChanger import PhaseTapChanger as PhaseTapChanger -from .ExcST6BOELselectorKind import ExcST6BOELselectorKind as ExcST6BOELselectorKind +from .PhaseCode import PhaseCode as PhaseCode from .EnergySource import EnergySource as EnergySource -from .LimitTypeKind import LimitTypeKind as LimitTypeKind -from .OverexcitationLimiterDynamics import OverexcitationLimiterDynamics as OverexcitationLimiterDynamics -from .TurbineGovernorDynamics import TurbineGovernorDynamics as TurbineGovernorDynamics -from .DiagramObjectPoint import DiagramObjectPoint as DiagramObjectPoint -from .SvInjection import SvInjection as SvInjection -from .CurveStyle import CurveStyle as CurveStyle -from .ActivePower import ActivePower as ActivePower -from .HydroGeneratingUnit import HydroGeneratingUnit as HydroGeneratingUnit +from .Length import Length as Length +from .PhaseTapChangerTable import PhaseTapChangerTable as PhaseTapChangerTable +from .Line import Line as Line from .GovHydroWEH import GovHydroWEH as GovHydroWEH -from .Decimal import Decimal as Decimal -from .GovCT1 import GovCT1 as GovCT1 -from .AccumulatorLimit import AccumulatorLimit as AccumulatorLimit -from .OverexcLimIEEE import OverexcLimIEEE as OverexcLimIEEE -from .Inductance import Inductance as Inductance -from .AsynchronousMachineDynamics import AsynchronousMachineDynamics as AsynchronousMachineDynamics -from .DateTime import DateTime as DateTime -from .DCGround import DCGround as DCGround -from .EquipmentContainer import EquipmentContainer as EquipmentContainer -from .ExcST6B import ExcST6B as ExcST6B -from .ExcIEEEAC5A import ExcIEEEAC5A as ExcIEEEAC5A -from .WindType3or4UserDefined import WindType3or4UserDefined as WindType3or4UserDefined -from .PetersenCoil import PetersenCoil as PetersenCoil -from .ControlAreaGeneratingUnit import ControlAreaGeneratingUnit as ControlAreaGeneratingUnit -from .AccumulatorLimitSet import AccumulatorLimitSet as AccumulatorLimitSet -from .SolarGeneratingUnit import SolarGeneratingUnit as SolarGeneratingUnit -from .PssIEEE3B import PssIEEE3B as PssIEEE3B -from .GovSteam2 import GovSteam2 as GovSteam2 -from .GovSteamFV3 import GovSteamFV3 as GovSteamFV3 -from .SvVoltage import SvVoltage as SvVoltage -from .SeasonDayTypeSchedule import SeasonDayTypeSchedule as SeasonDayTypeSchedule -from .UnderexcitationLimiterUserDefined import UnderexcitationLimiterUserDefined as UnderexcitationLimiterUserDefined -from .PetersenCoilModeKind import PetersenCoilModeKind as PetersenCoilModeKind -from .WindLookupTableFunctionKind import WindLookupTableFunctionKind as WindLookupTableFunctionKind -from .NonConformLoadGroup import NonConformLoadGroup as NonConformLoadGroup -from .RegulatingControl import RegulatingControl as RegulatingControl -from .WindLVRTQcontrolModesKind import WindLVRTQcontrolModesKind as WindLVRTQcontrolModesKind -from .GovSteamSGO import GovSteamSGO as GovSteamSGO -from .ActivePowerPerFrequency import ActivePowerPerFrequency as ActivePowerPerFrequency -from .DCChopper import DCChopper as DCChopper -from .CurrentLimit import CurrentLimit as CurrentLimit -from .ExcAVR4 import ExcAVR4 as ExcAVR4 -from .DCBreaker import DCBreaker as DCBreaker -from .ExcIEEEST1AUELselectorKind import ExcIEEEST1AUELselectorKind as ExcIEEEST1AUELselectorKind -from .Date import Date as Date -from .Float import Float as Float -from .DiscExcContIEEEDEC3A import DiscExcContIEEEDEC3A as DiscExcContIEEEDEC3A -from .ConductingEquipment import ConductingEquipment as ConductingEquipment -from .TurbineGovernorUserDefined import TurbineGovernorUserDefined as TurbineGovernorUserDefined +from .ExcitationSystemUserDefined import ( + ExcitationSystemUserDefined as ExcitationSystemUserDefined, +) +from .SvSwitch import SvSwitch as SvSwitch +from .StringMeasurementValue import StringMeasurementValue as StringMeasurementValue +from .Breaker import Breaker as Breaker from .OverexcLimX2 import OverexcLimX2 as OverexcLimX2 -from .NonlinearShuntCompensatorPoint import NonlinearShuntCompensatorPoint as NonlinearShuntCompensatorPoint -from .PFVArType2IEEEPFController import PFVArType2IEEEPFController as PFVArType2IEEEPFController -from .ExcIEEEAC1A import ExcIEEEAC1A as ExcIEEEAC1A -from .ExcAVR2 import ExcAVR2 as ExcAVR2 -from .Money import Money as Money -from .WindGenTurbineType3IEC import WindGenTurbineType3IEC as WindGenTurbineType3IEC -from .Equipment import Equipment as Equipment -from .ExcIEEEDC1A import ExcIEEEDC1A as ExcIEEEDC1A -from .UnderexcLimIEEE2 import UnderexcLimIEEE2 as UnderexcLimIEEE2 -from .VsPpccControlKind import VsPpccControlKind as VsPpccControlKind -from .LoadMotor import LoadMotor as LoadMotor -from .Pss1 import Pss1 as Pss1 -from .DiagramLayoutVersion import DiagramLayoutVersion as DiagramLayoutVersion -from .OverexcLimX1 import OverexcLimX1 as OverexcLimX1 -from .Capacitance import Capacitance as Capacitance -from .GeographicalRegion import GeographicalRegion as GeographicalRegion -from .ConformLoadSchedule import ConformLoadSchedule as ConformLoadSchedule -from .GovHydroWPID import GovHydroWPID as GovHydroWPID -from .PowerSystemResource import PowerSystemResource as PowerSystemResource -from .DCConverterOperatingModeKind import DCConverterOperatingModeKind as DCConverterOperatingModeKind -from .ExcIEEEST5B import ExcIEEEST5B as ExcIEEEST5B -from .Integer import Integer as Integer +from .DCBaseTerminal import DCBaseTerminal as DCBaseTerminal +from .RotationSpeed import RotationSpeed as RotationSpeed +from .ExcIEEEST1AUELselectorKind import ( + ExcIEEEST1AUELselectorKind as ExcIEEEST1AUELselectorKind, +) +from .PhaseTapChanger import PhaseTapChanger as PhaseTapChanger +from .NonlinearShuntCompensator import ( + NonlinearShuntCompensator as NonlinearShuntCompensator, +) +from .PssIEEE1A import PssIEEE1A as PssIEEE1A +from .WindPlantQcontrolModeKind import ( + WindPlantQcontrolModeKind as WindPlantQcontrolModeKind, +) from .ConformLoadGroup import ConformLoadGroup as ConformLoadGroup -from .AsynchronousMachineTimeConstantReactance import AsynchronousMachineTimeConstantReactance as AsynchronousMachineTimeConstantReactance -from .ExcAC6A import ExcAC6A as ExcAC6A -from .EnergyConsumer import EnergyConsumer as EnergyConsumer -from .AccumulatorReset import AccumulatorReset as AccumulatorReset from .ExcAC4A import ExcAC4A as ExcAC4A -from .BaseVoltage import BaseVoltage as BaseVoltage +from .RegularTimePoint import RegularTimePoint as RegularTimePoint +from .ExcNI import ExcNI as ExcNI +from .OverexcitationLimiterUserDefined import ( + OverexcitationLimiterUserDefined as OverexcitationLimiterUserDefined, +) +from .WindType3or4UserDefined import WindType3or4UserDefined as WindType3or4UserDefined +from .WindGenType3IEC import WindGenType3IEC as WindGenType3IEC +from .SwitchSchedule import SwitchSchedule as SwitchSchedule +from .SeasonDayTypeSchedule import SeasonDayTypeSchedule as SeasonDayTypeSchedule +from .VSCUserDefined import VSCUserDefined as VSCUserDefined +from .WindPlantReactiveControlIEC import ( + WindPlantReactiveControlIEC as WindPlantReactiveControlIEC, +) +from .ExcSK import ExcSK as ExcSK +from .SubLoadArea import SubLoadArea as SubLoadArea +from .PetersenCoil import PetersenCoil as PetersenCoil +from .LoadMotor import LoadMotor as LoadMotor +from .PFVArControllerType1UserDefined import ( + PFVArControllerType1UserDefined as PFVArControllerType1UserDefined, +) +from .Decimal import Decimal as Decimal +from .EquipmentContainer import EquipmentContainer as EquipmentContainer +from .TapChangerControl import TapChangerControl as TapChangerControl +from .BoundaryPoint import BoundaryPoint as BoundaryPoint +from .ACDCTerminal import ACDCTerminal as ACDCTerminal +from .DCGround import DCGround as DCGround +from .WindTurbineType4bIEC import WindTurbineType4bIEC as WindTurbineType4bIEC +from .SetPoint import SetPoint as SetPoint from .ControlAreaTypeKind import ControlAreaTypeKind as ControlAreaTypeKind -from .Source import Source as Source -from .Location import Location as Location -from .VoltageCompensatorDynamics import VoltageCompensatorDynamics as VoltageCompensatorDynamics -from .ExcDC1A import ExcDC1A as ExcDC1A -from .WindContPType3IEC import WindContPType3IEC as WindContPType3IEC -from .OverexcitationLimiterUserDefined import OverexcitationLimiterUserDefined as OverexcitationLimiterUserDefined -from .OperationalLimitDirectionKind import OperationalLimitDirectionKind as OperationalLimitDirectionKind -from .VsCapabilityCurve import VsCapabilityCurve as VsCapabilityCurve -from .ExcAVR1 import ExcAVR1 as ExcAVR1 -from .ExcST7BUELselectorKind import ExcST7BUELselectorKind as ExcST7BUELselectorKind -from .AngleDegrees import AngleDegrees as AngleDegrees -from .BusNameMarker import BusNameMarker as BusNameMarker -from .EquivalentNetwork import EquivalentNetwork as EquivalentNetwork -from .GovHydro2 import GovHydro2 as GovHydro2 -from .ExcitationSystemUserDefined import ExcitationSystemUserDefined as ExcitationSystemUserDefined +from .SynchronousMachineModelKind import ( + SynchronousMachineModelKind as SynchronousMachineModelKind, +) +from .HVDCDynamics import HVDCDynamics as HVDCDynamics +from .FrancisGovernorControlKind import ( + FrancisGovernorControlKind as FrancisGovernorControlKind, +) +from .LoadArea import LoadArea as LoadArea +from .PerCent import PerCent as PerCent +from .StaticVarCompensator import StaticVarCompensator as StaticVarCompensator +from .ExcAC6A import ExcAC6A as ExcAC6A +from .ExcIEEEDC1A import ExcIEEEDC1A as ExcIEEEDC1A +from .ExcDC3A1 import ExcDC3A1 as ExcDC3A1 from .DiagramObject import DiagramObject as DiagramObject -from .VsConverter import VsConverter as VsConverter -from .DiagramObjectGluePoint import DiagramObjectGluePoint as DiagramObjectGluePoint -from .ExcST7BOELselectorKind import ExcST7BOELselectorKind as ExcST7BOELselectorKind -from .MechanicalLoadUserDefined import MechanicalLoadUserDefined as MechanicalLoadUserDefined -from .WindAeroConstIEC import WindAeroConstIEC as WindAeroConstIEC -from .Frequency import Frequency as Frequency -from .IfdBaseKind import IfdBaseKind as IfdBaseKind -from .GeneratorControlSource import GeneratorControlSource as GeneratorControlSource -from .LoadBreakSwitch import LoadBreakSwitch as LoadBreakSwitch -from .DiscExcContIEEEDEC2A import DiscExcContIEEEDEC2A as DiscExcContIEEEDEC2A +from .BusbarSection import BusbarSection as BusbarSection +from .ExcST1A import ExcST1A as ExcST1A +from .VSCDynamics import VSCDynamics as VSCDynamics +from .DiagramObjectPoint import DiagramObjectPoint as DiagramObjectPoint +from .RemoteInputSignal import RemoteInputSignal as RemoteInputSignal +from .GovHydroPelton import GovHydroPelton as GovHydroPelton +from .GovSteamFV4 import GovSteamFV4 as GovSteamFV4 +from .TownDetail import TownDetail as TownDetail +from .GovHydroPID2 import GovHydroPID2 as GovHydroPID2 +from .EquivalentNetwork import EquivalentNetwork as EquivalentNetwork +from .Voltage import Voltage as Voltage +from .Measurement import Measurement as Measurement +from .StringMeasurement import StringMeasurement as StringMeasurement from .VsQpccControlKind import VsQpccControlKind as VsQpccControlKind -from .LoadGenericNonLinear import LoadGenericNonLinear as LoadGenericNonLinear -from .ExcHU import ExcHU as ExcHU -from .DCEquipmentContainer import DCEquipmentContainer as DCEquipmentContainer -from .DCTopologicalIsland import DCTopologicalIsland as DCTopologicalIsland +from .IOPoint import IOPoint as IOPoint +from .OrientationKind import OrientationKind as OrientationKind +from .ProprietaryParameterDynamics import ( + ProprietaryParameterDynamics as ProprietaryParameterDynamics, +) +from .DCConductingEquipment import DCConductingEquipment as DCConductingEquipment +from .CurrentLimit import CurrentLimit as CurrentLimit +from .TopologicalIsland import TopologicalIsland as TopologicalIsland +from .ExcAC8B import ExcAC8B as ExcAC8B from .Season import Season as Season -from .ExcAVR5 import ExcAVR5 as ExcAVR5 +from .GovGAST2 import GovGAST2 as GovGAST2 +from .PssPTIST3 import PssPTIST3 as PssPTIST3 +from .ExcIEEEAC2A import ExcIEEEAC2A as ExcIEEEAC2A +from .OperationalLimit import OperationalLimit as OperationalLimit +from .StaticVarCompensatorDynamics import ( + StaticVarCompensatorDynamics as StaticVarCompensatorDynamics, +) +from .MechanicalLoadDynamics import MechanicalLoadDynamics as MechanicalLoadDynamics +from .VAdjIEEE import VAdjIEEE as VAdjIEEE +from .ValueAliasSet import ValueAliasSet as ValueAliasSet +from .RegulatingControl import RegulatingControl as RegulatingControl +from .SynchronousMachineUserDefined import ( + SynchronousMachineUserDefined as SynchronousMachineUserDefined, +) +from .DCChopper import DCChopper as DCChopper +from .WindTurbineType3or4Dynamics import ( + WindTurbineType3or4Dynamics as WindTurbineType3or4Dynamics, +) +from .Junction import Junction as Junction +from .Money import Money as Money +from .RotorKind import RotorKind as RotorKind +from .PFVArType2Common1 import PFVArType2Common1 as PFVArType2Common1 +from .BatteryStateKind import BatteryStateKind as BatteryStateKind +from .AsynchronousMachine import AsynchronousMachine as AsynchronousMachine +from .CogenerationPlant import CogenerationPlant as CogenerationPlant +from .ACLineSegment import ACLineSegment as ACLineSegment +from .AnalogLimitSet import AnalogLimitSet as AnalogLimitSet from .Seconds import Seconds as Seconds -from .WindPlantIEC import WindPlantIEC as WindPlantIEC -from .UnderexcLimX1 import UnderexcLimX1 as UnderexcLimX1 -from .DiscreteValue import DiscreteValue as DiscreteValue -from .PssELIN2 import PssELIN2 as PssELIN2 -from .TopologyVersion import TopologyVersion as TopologyVersion -from .DiscExcContIEEEDEC1A import DiscExcContIEEEDEC1A as DiscExcContIEEEDEC1A +from .ExcIEEEST5B import ExcIEEEST5B as ExcIEEEST5B +from .LoadStatic import LoadStatic as LoadStatic +from .Currency import Currency as Currency +from .PhaseTapChangerLinear import PhaseTapChangerLinear as PhaseTapChangerLinear +from .WindDynamicsLookupTable import WindDynamicsLookupTable as WindDynamicsLookupTable from .UnitSymbol import UnitSymbol as UnitSymbol -from .SynchronousMachineDetailed import SynchronousMachineDetailed as SynchronousMachineDetailed -from .Voltage import Voltage as Voltage -from .GovGAST3 import GovGAST3 as GovGAST3 -from .WindGenTurbineType2IEC import WindGenTurbineType2IEC as WindGenTurbineType2IEC -from .GenICompensationForGenJ import GenICompensationForGenJ as GenICompensationForGenJ -from .ExcIEEEST7B import ExcIEEEST7B as ExcIEEEST7B -from .AnalogValue import AnalogValue as AnalogValue -from .NonlinearShuntCompensator import NonlinearShuntCompensator as NonlinearShuntCompensator -from .NonConformLoadSchedule import NonConformLoadSchedule as NonConformLoadSchedule -from .StaticVarCompensator import StaticVarCompensator as StaticVarCompensator -from .GovHydro4 import GovHydro4 as GovHydro4 -from .RatioTapChanger import RatioTapChanger as RatioTapChanger -from .ExcAC1A import ExcAC1A as ExcAC1A -from .PssIEEE2B import PssIEEE2B as PssIEEE2B -from .AngleRadians import AngleRadians as AngleRadians -from .PssSK import PssSK as PssSK -from .PFVArType2IEEEVArController import PFVArType2IEEEVArController as PFVArType2IEEEVArController -from .ACDCConverter import ACDCConverter as ACDCConverter -from .WindContPitchAngleIEC import WindContPitchAngleIEC as WindContPitchAngleIEC -from .WindGenTurbineType1IEC import WindGenTurbineType1IEC as WindGenTurbineType1IEC -from .SynchronousMachineDynamics import SynchronousMachineDynamics as SynchronousMachineDynamics -from .WindContPType4aIEC import WindContPType4aIEC as WindContPType4aIEC -from .VoltageLevel import VoltageLevel as VoltageLevel -from .OrientationKind import OrientationKind as OrientationKind -from .GroundingImpedance import GroundingImpedance as GroundingImpedance -from .DCSeriesDevice import DCSeriesDevice as DCSeriesDevice -from .PhaseCode import PhaseCode as PhaseCode -from .GovHydroDD import GovHydroDD as GovHydroDD -from .Disconnector import Disconnector as Disconnector -from .SwitchSchedule import SwitchSchedule as SwitchSchedule -from .HydroPowerPlant import HydroPowerPlant as HydroPowerPlant -from .Temperature import Temperature as Temperature -from .ConnectivityNode import ConnectivityNode as ConnectivityNode -from .ExcST2A import ExcST2A as ExcST2A -from .UnderexcLim2Simplified import UnderexcLim2Simplified as UnderexcLim2Simplified -from .Measurement import Measurement as Measurement -from .ExcIEEEAC4A import ExcIEEEAC4A as ExcIEEEAC4A -from .PU import PU as PU from .Analog import Analog as Analog -from .WindPitchContEmulIEC import WindPitchContEmulIEC as WindPitchContEmulIEC -from .OperationalLimitType import OperationalLimitType as OperationalLimitType -from .BusbarSection import BusbarSection as BusbarSection +from .ExcELIN1 import ExcELIN1 as ExcELIN1 +from .ExcST4B import ExcST4B as ExcST4B +from .GovHydro2 import GovHydro2 as GovHydro2 +from .SynchronousMachineEquivalentCircuit import ( + SynchronousMachineEquivalentCircuit as SynchronousMachineEquivalentCircuit, +) +from .ExcAVR1 import ExcAVR1 as ExcAVR1 +from .SynchronousMachineTimeConstantReactance import ( + SynchronousMachineTimeConstantReactance as SynchronousMachineTimeConstantReactance, +) +from .OperationalLimitSet import OperationalLimitSet as OperationalLimitSet +from .ExcANS import ExcANS as ExcANS +from .GovGAST import GovGAST as GovGAST +from .Jumper import Jumper as Jumper +from .DroopSignalFeedbackKind import DroopSignalFeedbackKind as DroopSignalFeedbackKind from .LoadAggregate import LoadAggregate as LoadAggregate -from .ExcPIC import ExcPIC as ExcPIC -from .WindTurbineType4bIEC import WindTurbineType4bIEC as WindTurbineType4bIEC -from .GrossToNetActivePowerCurve import GrossToNetActivePowerCurve as GrossToNetActivePowerCurve -from .TieFlow import TieFlow as TieFlow -from .AsynchronousMachineUserDefined import AsynchronousMachineUserDefined as AsynchronousMachineUserDefined -from .GovHydroR import GovHydroR as GovHydroR +from .GovHydro1 import GovHydro1 as GovHydro1 +from .ExcREXS import ExcREXS as ExcREXS +from .TapChangerTablePoint import TapChangerTablePoint as TapChangerTablePoint +from .LimitKind import LimitKind as LimitKind +from .GovSteamBB import GovSteamBB as GovSteamBB +from .ExcIEEEAC6A import ExcIEEEAC6A as ExcIEEEAC6A +from .Sensor import Sensor as Sensor +from .WindContQIEC import WindContQIEC as WindContQIEC +from .ReactiveCapabilityCurve import ReactiveCapabilityCurve as ReactiveCapabilityCurve +from .DynamicsFunctionBlock import DynamicsFunctionBlock as DynamicsFunctionBlock +from .WindPlantIEC import WindPlantIEC as WindPlantIEC +from .WindPlantUserDefined import WindPlantUserDefined as WindPlantUserDefined +from .OperationalLimitDirectionKind import ( + OperationalLimitDirectionKind as OperationalLimitDirectionKind, +) +from .Substation import Substation as Substation +from .TextDiagramObject import TextDiagramObject as TextDiagramObject +from .PFVArType1IEEEVArController import ( + PFVArType1IEEEVArController as PFVArType1IEEEVArController, +) +from .GovSteamEU import GovSteamEU as GovSteamEU +from .RatioTapChangerTablePoint import ( + RatioTapChangerTablePoint as RatioTapChangerTablePoint, +) +from .Cut import Cut as Cut +from .GovCT2 import GovCT2 as GovCT2 +from .ExcAVR4 import ExcAVR4 as ExcAVR4 +from .WindAeroTwoDimIEC import WindAeroTwoDimIEC as WindAeroTwoDimIEC +from .ConnectivityNodeContainer import ( + ConnectivityNodeContainer as ConnectivityNodeContainer, +) +from .ValueToAlias import ValueToAlias as ValueToAlias +from .FuelType import FuelType as FuelType +from .Bay import Bay as Bay +from .UnderexcitationLimiterUserDefined import ( + UnderexcitationLimiterUserDefined as UnderexcitationLimiterUserDefined, +) +from .IfdBaseKind import IfdBaseKind as IfdBaseKind +from .AsynchronousMachineEquivalentCircuit import ( + AsynchronousMachineEquivalentCircuit as AsynchronousMachineEquivalentCircuit, +) from .StationSupply import StationSupply as StationSupply +from .LoadGroup import LoadGroup as LoadGroup +from .TransformerEnd import TransformerEnd as TransformerEnd +from .RegulationSchedule import RegulationSchedule as RegulationSchedule +from .WindPowerPlant import WindPowerPlant as WindPowerPlant +from .CsConverter import CsConverter as CsConverter +from .VCompIEEEType1 import VCompIEEEType1 as VCompIEEEType1 from .WindTurbineType4aIEC import WindTurbineType4aIEC as WindTurbineType4aIEC -from .ExcAC2A import ExcAC2A as ExcAC2A -from .TextDiagramObject import TextDiagramObject as TextDiagramObject -from .RotorKind import RotorKind as RotorKind -from .LoadStatic import LoadStatic as LoadStatic -from .CurveData import CurveData as CurveData -from .RotatingMachineDynamics import RotatingMachineDynamics as RotatingMachineDynamics +from .DCEquipmentContainer import DCEquipmentContainer as DCEquipmentContainer +from .ShortCircuitRotorKind import ShortCircuitRotorKind as ShortCircuitRotorKind +from .GovSteamFV2 import GovSteamFV2 as GovSteamFV2 +from .TurbineGovernorUserDefined import ( + TurbineGovernorUserDefined as TurbineGovernorUserDefined, +) +from .LoadResponseCharacteristic import ( + LoadResponseCharacteristic as LoadResponseCharacteristic, +) +from .GovHydroWPID import GovHydroWPID as GovHydroWPID +from .DiscExcContIEEEDEC3A import DiscExcContIEEEDEC3A as DiscExcContIEEEDEC3A +from .Terminal import Terminal as Terminal +from .Control import Control as Control +from .Connector import Connector as Connector +from .Pss2ST import Pss2ST as Pss2ST +from .ProtectedSwitch import ProtectedSwitch as ProtectedSwitch +from .GovHydroPID import GovHydroPID as GovHydroPID +from .ExcAVR3 import ExcAVR3 as ExcAVR3 +from .NonConformLoad import NonConformLoad as NonConformLoad +from .CurrentFlow import CurrentFlow as CurrentFlow from .RegularIntervalSchedule import RegularIntervalSchedule as RegularIntervalSchedule -from .SvStatus import SvStatus as SvStatus -from .DCNode import DCNode as DCNode -from .WindGenTurbineType3bIEC import WindGenTurbineType3bIEC as WindGenTurbineType3bIEC -from .ShuntCompensator import ShuntCompensator as ShuntCompensator +from .EquivalentBranch import EquivalentBranch as EquivalentBranch +from .Pss1 import Pss1 as Pss1 +from .WindContPType4bIEC import WindContPType4bIEC as WindContPType4bIEC +from .CombinedCyclePlant import CombinedCyclePlant as CombinedCyclePlant +from .MechanicalLoadUserDefined import ( + MechanicalLoadUserDefined as MechanicalLoadUserDefined, +) +from .LoadBreakSwitch import LoadBreakSwitch as LoadBreakSwitch from .LoadDynamics import LoadDynamics as LoadDynamics -from .GenericNonLinearLoadModelKind import GenericNonLinearLoadModelKind as GenericNonLinearLoadModelKind -from .ExcIEEEAC6A import ExcIEEEAC6A as ExcIEEEAC6A -from .ACDCTerminal import ACDCTerminal as ACDCTerminal -from .ExcSK import ExcSK as ExcSK -from .LoadResponseCharacteristic import LoadResponseCharacteristic as LoadResponseCharacteristic -from .PhaseTapChangerTablePoint import PhaseTapChangerTablePoint as PhaseTapChangerTablePoint -from .WindGenTurbineType3aIEC import WindGenTurbineType3aIEC as WindGenTurbineType3aIEC -from .WindMechIEC import WindMechIEC as WindMechIEC -from .AnalogLimitSet import AnalogLimitSet as AnalogLimitSet -from .Simple_Float import Simple_Float as Simple_Float -from .ExcIEEEDC2A import ExcIEEEDC2A as ExcIEEEDC2A -from .DCConverterUnit import DCConverterUnit as DCConverterUnit -from .SynchronousMachineEquivalentCircuit import SynchronousMachineEquivalentCircuit as SynchronousMachineEquivalentCircuit -from .PowerSystemStabilizerDynamics import PowerSystemStabilizerDynamics as PowerSystemStabilizerDynamics -from .AnalogLimit import AnalogLimit as AnalogLimit +from .TapChanger import TapChanger as TapChanger +from .PssSTAB2A import PssSTAB2A as PssSTAB2A +from .SynchronousMachineSimplified import ( + SynchronousMachineSimplified as SynchronousMachineSimplified, +) +from .StreetDetail import StreetDetail as StreetDetail +from .WindTurbineType4IEC import WindTurbineType4IEC as WindTurbineType4IEC +from .VsCapabilityCurve import VsCapabilityCurve as VsCapabilityCurve +from .Switch import Switch as Switch +from .ExternalNetworkInjection import ( + ExternalNetworkInjection as ExternalNetworkInjection, +) +from .ConductingEquipment import ConductingEquipment as ConductingEquipment +from .PFVArType2IEEEPFController import ( + PFVArType2IEEEPFController as PFVArType2IEEEPFController, +) +from .GovSteamCC import GovSteamCC as GovSteamCC +from .AsynchronousMachineUserDefined import ( + AsynchronousMachineUserDefined as AsynchronousMachineUserDefined, +) +from .DiagramStyle import DiagramStyle as DiagramStyle +from .ACDCConverterDCTerminal import ACDCConverterDCTerminal as ACDCConverterDCTerminal +from .PositionPoint import PositionPoint as PositionPoint +from .DiagramObjectGluePoint import DiagramObjectGluePoint as DiagramObjectGluePoint +from .SvTapStep import SvTapStep as SvTapStep +from .WindGenTurbineType2IEC import WindGenTurbineType2IEC as WindGenTurbineType2IEC +from .WindGenType3bIEC import WindGenType3bIEC as WindGenType3bIEC +from .CurveData import CurveData as CurveData +from .SynchronousMachineOperatingMode import ( + SynchronousMachineOperatingMode as SynchronousMachineOperatingMode, +) +from .DiscontinuousExcitationControlDynamics import ( + DiscontinuousExcitationControlDynamics as DiscontinuousExcitationControlDynamics, +) +from .PFVArType1IEEEPFController import ( + PFVArType1IEEEPFController as PFVArType1IEEEPFController, +) +from .ExcOEX3T import ExcOEX3T as ExcOEX3T +from .PowerTransformer import PowerTransformer as PowerTransformer from .GovHydroIEEE2 import GovHydroIEEE2 as GovHydroIEEE2 -from .PssWECC import PssWECC as PssWECC -from .EquivalentBranch import EquivalentBranch as EquivalentBranch -from .SubGeographicalRegion import SubGeographicalRegion as SubGeographicalRegion -from .LoadUserDefined import LoadUserDefined as LoadUserDefined -from .PssIEEE4B import PssIEEE4B as PssIEEE4B -from .DCLine import DCLine as DCLine -from .Conductance import Conductance as Conductance -from .WindContCurrLimIEC import WindContCurrLimIEC as WindContCurrLimIEC -from .LoadComposite import LoadComposite as LoadComposite -from .SvPowerFlow import SvPowerFlow as SvPowerFlow -from .CsPpccControlKind import CsPpccControlKind as CsPpccControlKind +from .PU import PU as PU +from .WindTurbineType3IEC import WindTurbineType3IEC as WindTurbineType3IEC from .GovGASTWD import GovGASTWD as GovGASTWD -from .ProprietaryParameterDynamics import ProprietaryParameterDynamics as ProprietaryParameterDynamics -from .Discrete import Discrete as Discrete -from .ValueToAlias import ValueToAlias as ValueToAlias -from .SetPoint import SetPoint as SetPoint +from .ActivePower import ActivePower as ActivePower +from .ExcDC2A import ExcDC2A as ExcDC2A from .Diagram import Diagram as Diagram -from .GeographicalLocationVersion import GeographicalLocationVersion as GeographicalLocationVersion +from .Ground import Ground as Ground +from .NonConformLoadSchedule import NonConformLoadSchedule as NonConformLoadSchedule +from .IdentifiedObject import IdentifiedObject as IdentifiedObject +from .DCLine import DCLine as DCLine +from .CrossCompoundTurbineGovernorDynamics import ( + CrossCompoundTurbineGovernorDynamics as CrossCompoundTurbineGovernorDynamics, +) +from .GrossToNetActivePowerCurve import ( + GrossToNetActivePowerCurve as GrossToNetActivePowerCurve, +) +from .EarthFaultCompensator import EarthFaultCompensator as EarthFaultCompensator +from .TapSchedule import TapSchedule as TapSchedule +from .OverexcitationLimiterDynamics import ( + OverexcitationLimiterDynamics as OverexcitationLimiterDynamics, +) +from .GeneratorControlSource import GeneratorControlSource as GeneratorControlSource +from .WindGenTurbineType1bIEC import WindGenTurbineType1bIEC as WindGenTurbineType1bIEC +from .NonConformLoadGroup import NonConformLoadGroup as NonConformLoadGroup +from .HydroEnergyConversionKind import ( + HydroEnergyConversionKind as HydroEnergyConversionKind, +) +from .VsConverter import VsConverter as VsConverter +from .OverexcLimX1 import OverexcLimX1 as OverexcLimX1 +from .ACDCConverter import ACDCConverter as ACDCConverter +from .PowerElectronicsWindUnit import ( + PowerElectronicsWindUnit as PowerElectronicsWindUnit, +) +from .DCTopologicalIsland import DCTopologicalIsland as DCTopologicalIsland +from .ExcAC1A import ExcAC1A as ExcAC1A +from .ExcIEEEDC4B import ExcIEEEDC4B as ExcIEEEDC4B +from .WindTurbineType3or4IEC import WindTurbineType3or4IEC as WindTurbineType3or4IEC +from .WindUVRTQcontrolModeKind import ( + WindUVRTQcontrolModeKind as WindUVRTQcontrolModeKind, +) +from .PssSK import PssSK as PssSK +from .ExcIEEEAC3A import ExcIEEEAC3A as ExcIEEEAC3A +from .BusNameMarker import BusNameMarker as BusNameMarker +from .Capacitance import Capacitance as Capacitance +from .LimitSet import LimitSet as LimitSet +from .CsOperatingModeKind import CsOperatingModeKind as CsOperatingModeKind +from .Temperature import Temperature as Temperature +from .HydroPump import HydroPump as HydroPump +from .DCSwitch import DCSwitch as DCSwitch +from .AccumulatorReset import AccumulatorReset as AccumulatorReset +from .PowerSystemStabilizerDynamics import ( + PowerSystemStabilizerDynamics as PowerSystemStabilizerDynamics, +) +from .AnalogValue import AnalogValue as AnalogValue +from .GovHydroFrancis import GovHydroFrancis as GovHydroFrancis +from .ActivePowerLimit import ActivePowerLimit as ActivePowerLimit +from .Validity import Validity as Validity +from .MeasurementValueSource import MeasurementValueSource as MeasurementValueSource +from .ExcST7BUELselectorKind import ExcST7BUELselectorKind as ExcST7BUELselectorKind +from .DCBusbar import DCBusbar as DCBusbar +from .SynchronousMachineDetailed import ( + SynchronousMachineDetailed as SynchronousMachineDetailed, +) +from .WindGenType3aIEC import WindGenType3aIEC as WindGenType3aIEC +from .GroundingImpedance import GroundingImpedance as GroundingImpedance +from .ExcDC3A import ExcDC3A as ExcDC3A +from .__init__ import __init__ as __init__ +from .PhaseTapChangerNonLinear import ( + PhaseTapChangerNonLinear as PhaseTapChangerNonLinear, +) +from .MechLoad1 import MechLoad1 as MechLoad1 +from .Conductor import Conductor as Conductor +from .DayType import DayType as DayType +from .GovHydro4ModelKind import GovHydro4ModelKind as GovHydro4ModelKind +from .VoltageLimit import VoltageLimit as VoltageLimit +from .ExcSCRX import ExcSCRX as ExcSCRX +from .ShuntCompensator import ShuntCompensator as ShuntCompensator from .DCTopologicalNode import DCTopologicalNode as DCTopologicalNode +from .GovCT1 import GovCT1 as GovCT1 +from .PhaseTapChangerTablePoint import ( + PhaseTapChangerTablePoint as PhaseTapChangerTablePoint, +) +from .GenericNonLinearLoadModelKind import ( + GenericNonLinearLoadModelKind as GenericNonLinearLoadModelKind, +) +from .RatioTapChangerTable import RatioTapChangerTable as RatioTapChangerTable +from .PowerSystemResource import PowerSystemResource as PowerSystemResource +from .RealEnergy import RealEnergy as RealEnergy +from .ExcIEEEDC2A import ExcIEEEDC2A as ExcIEEEDC2A +from .DCNode import DCNode as DCNode +from .ExcIEEEAC1A import ExcIEEEAC1A as ExcIEEEAC1A +from .EquivalentInjection import EquivalentInjection as EquivalentInjection +from .StreetAddress import StreetAddress as StreetAddress +from .WindTurbineType1or2Dynamics import ( + WindTurbineType1or2Dynamics as WindTurbineType1or2Dynamics, +) +from .Pss1A import Pss1A as Pss1A from .WindPlantDynamics import WindPlantDynamics as WindPlantDynamics +from .SynchronousMachineDynamics import ( + SynchronousMachineDynamics as SynchronousMachineDynamics, +) +from .CSCDynamics import CSCDynamics as CSCDynamics +from .WindContRotorRIEC import WindContRotorRIEC as WindContRotorRIEC +from .PssELIN2 import PssELIN2 as PssELIN2 +from .ThermalGeneratingUnit import ThermalGeneratingUnit as ThermalGeneratingUnit +from .MutualCoupling import MutualCoupling as MutualCoupling +from .TurbineLoadControllerDynamics import ( + TurbineLoadControllerDynamics as TurbineLoadControllerDynamics, +) +from .ExcREXSFeedbackSignalKind import ( + ExcREXSFeedbackSignalKind as ExcREXSFeedbackSignalKind, +) +from .ApparentPowerLimit import ApparentPowerLimit as ApparentPowerLimit +from .WindLookupTableFunctionKind import ( + WindLookupTableFunctionKind as WindLookupTableFunctionKind, +) +from .ConformLoad import ConformLoad as ConformLoad +from .WindingConnection import WindingConnection as WindingConnection +from .UnitMultiplier import UnitMultiplier as UnitMultiplier +from .ExcIEEEAC8B import ExcIEEEAC8B as ExcIEEEAC8B +from .FaultIndicator import FaultIndicator as FaultIndicator +from .RegulatingControlModeKind import ( + RegulatingControlModeKind as RegulatingControlModeKind, +) +from .RotatingMachineDynamics import RotatingMachineDynamics as RotatingMachineDynamics +from .DCShunt import DCShunt as DCShunt +from .EnergyConnection import EnergyConnection as EnergyConnection +from .RegulatingCondEq import RegulatingCondEq as RegulatingCondEq +from .VoltageAdjusterDynamics import VoltageAdjusterDynamics as VoltageAdjusterDynamics +from .RatioTapChanger import RatioTapChanger as RatioTapChanger +from .CAESPlant import CAESPlant as CAESPlant +from .PowerElectronicsConnection import ( + PowerElectronicsConnection as PowerElectronicsConnection, +) +from .GovGAST1 import GovGAST1 as GovGAST1 +from .Frequency import Frequency as Frequency +from .WindContQPQULimIEC import WindContQPQULimIEC as WindContQPQULimIEC +from .HydroPlantStorageKind import HydroPlantStorageKind as HydroPlantStorageKind +from .HydroGeneratingUnit import HydroGeneratingUnit as HydroGeneratingUnit +from .ExcAVR2 import ExcAVR2 as ExcAVR2 +from .VolumeFlowRate import VolumeFlowRate as VolumeFlowRate +from .AsynchronousMachineTimeConstantReactance import ( + AsynchronousMachineTimeConstantReactance as AsynchronousMachineTimeConstantReactance, +) +from .Command import Command as Command +from .DCConverterOperatingModeKind import ( + DCConverterOperatingModeKind as DCConverterOperatingModeKind, +) from .PssSH import PssSH as PssSH -from .PssPTIST3 import PssPTIST3 as PssPTIST3 -from .Pss1A import Pss1A as Pss1A -from .TopologicalNode import TopologicalNode as TopologicalNode -from .WindContPType4bIEC import WindContPType4bIEC as WindContPType4bIEC -from .PowerTransformerEnd import PowerTransformerEnd as PowerTransformerEnd -from .DayType import DayType as DayType -from .EquipmentVersion import EquipmentVersion as EquipmentVersion -from .ProtectedSwitch import ProtectedSwitch as ProtectedSwitch -from .WindQcontrolModesKind import WindQcontrolModesKind as WindQcontrolModesKind -from .RegularTimePoint import RegularTimePoint as RegularTimePoint -from .AccumulatorValue import AccumulatorValue as AccumulatorValue -from .SynchronousMachine import SynchronousMachine as SynchronousMachine -from .Validity import Validity as Validity -from .SynchronousMachineTimeConstantReactance import SynchronousMachineTimeConstantReactance as SynchronousMachineTimeConstantReactance -from .CapacitancePerLength import CapacitancePerLength as CapacitancePerLength -from .GovSteam0 import GovSteam0 as GovSteam0 -from .TurbineLoadControllerDynamics import TurbineLoadControllerDynamics as TurbineLoadControllerDynamics -from .PFVArControllerType1UserDefined import PFVArControllerType1UserDefined as PFVArControllerType1UserDefined -from .ExcIEEEST3A import ExcIEEEST3A as ExcIEEEST3A -from .Pss5 import Pss5 as Pss5 -from .PssSB4 import PssSB4 as PssSB4 -from .GovSteamCC import GovSteamCC as GovSteamCC -from .TopologicalIsland import TopologicalIsland as TopologicalIsland +from .PhaseTapChangerAsymmetrical import ( + PhaseTapChangerAsymmetrical as PhaseTapChangerAsymmetrical, +) +from .DCTerminal import DCTerminal as DCTerminal +from .Status import Status as Status +from .AngleRadians import AngleRadians as AngleRadians +from .BatteryUnit import BatteryUnit as BatteryUnit diff --git a/cimpy/cimexamples.py b/cimpy_3/cimpy/cimexamples.py similarity index 61% rename from cimpy/cimexamples.py rename to cimpy_3/cimpy/cimexamples.py index 8c048840..b8fe1980 100644 --- a/cimpy/cimexamples.py +++ b/cimpy_3/cimpy/cimexamples.py @@ -4,26 +4,26 @@ def import_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "import_cigre_mv.py" + example = base / "examples" / "importCIGREMV.py" exec(open(example).read()) def export_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "export_cigre_mv.py" + example = base / "examples" / "exportCIGREMV.py" exec(open(example).read()) -def convert_to_bus_branch_example(): +def convertToBusBranch_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "convert_to_bus_branch.py" + example = base / "examples" / "convertToBusBranch.py" exec(open(example).read()) -def add_external_network_injection_example(): +def addExternalNetworkInjection_example(): """TODO: Add documentation""" base = Path(__file__).resolve().parent - example = base / "examples" / "add_external_network_injection.py" + example = base / "examples" / "addExternalNetworkInjection.py" exec(open(example).read()) diff --git a/cimpy_3/cimpy/cimexport.py b/cimpy_3/cimpy/cimexport.py new file mode 100644 index 00000000..139278ab --- /dev/null +++ b/cimpy_3/cimpy/cimexport.py @@ -0,0 +1,545 @@ +import os +import importlib +import chevron +from datetime import datetime +from time import time +from cimpy.cgmes_v2_4_15.Base import Profile +import logging +import sys + +logger = logging.getLogger(__name__) + + +# This function gets all attributes of an object and resolves references to other objects +def _get_class_attributes_with_references(import_result, version): + class_attributes_list = [] + # extract topology and urls + topology = import_result["topology"] + urls = import_result["meta_info"]["urls"] + for key in topology.keys(): + class_dict = dict(name=topology[key].__class__.__name__) + class_dict["mRID"] = key + # array containing all attributes, attribute references to objects + attributes_dict = _get_attributes(topology[key]) + # change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have + # mRID as an attribute. Therefore the corresponding class has to be searched in the res dictionary + class_dict["attributes"] = _get_reference_uuid( + attributes_dict, version, topology, key, urls + ) + class_attributes_list.append(class_dict) + del class_dict + + return class_attributes_list + + +# This function resolves references to objects +def _get_reference_uuid(attr_dict, version, topology, mRID, urls): + reference_list = [] + base_class_name = "cimpy." + version + ".Base" + base_module = importlib.import_module(base_class_name) + base_class = getattr(base_module, "Base") + for key in attr_dict: + if key in ["serializationProfile", "possibleProfileList"]: + reference_list.append({key: attr_dict[key]}) + continue + + attributes = {} + if isinstance(attr_dict[key], list): # many + array = [] + for elem in attr_dict[key]: + if issubclass(type(elem), base_class): + # classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key + # for this object in the res dictionary + # The % added before the mRID is used in the lambda _set_attribute_or_reference + if not hasattr(elem, "mRID"): + # search for the object in the res dictionary and return the mRID + UUID = "%" + _search_mRID(elem, topology) + if UUID == "%": + logger.warning( + "Object of type {} not found as reference for object" + " with UUID {}.".format(elem.__class__.__name__, mRID) + ) + else: + UUID = "%" + elem.mRID + + array.append(UUID) + else: + logger.warning( + "Reference object not subclass of Base class for object with" + " UUID {}.".format(mRID) + ) + if len(array) == 1: + attributes["value"] = array[0] + else: + attributes["value"] = array + elif issubclass(type(attr_dict[key]), base_class): # 0..1, 1..1 + # resource = key + ' rdf:resource=' + if not hasattr(attr_dict[key], "mRID"): + # search for object in res dict and return mRID + # The % added before the mRID is used in the lambda _set_attribute_or_reference + UUID = "%" + _search_mRID(attr_dict[key], topology) + if UUID == "%": + logger.warning( + "Object of type {} not found as reference for object with" + " UUID {}.".format(attr_dict[key].__class__.__name__, mRID) + ) + else: + UUID = "%" + attr_dict[key].mRID + attributes["value"] = UUID + elif attr_dict[key] == "" or attr_dict[key] is None: + pass + else: + # attribute in urls dict? + if key.split(".")[1] in urls.keys(): + # value in urls dict? should always be true + if attr_dict[key] in urls[key.split(".")[1]].keys(): + attributes["value"] = ( + "%URL%" + urls[key.split(".")[1]][attr_dict[key]] + ) + else: + logger.warning( + "URL reference for attribute {} and value {} not found!".format( + key.split(".")[1], attr_dict[key] + ) + ) + else: + attributes["value"] = attr_dict[key] + + attributes["attr_name"] = key + if "value" in attributes.keys(): + if isinstance(attributes["value"], list): + for reference_item in attributes["value"]: + # ignore default values + if reference_item not in ["", None, 0.0, 0]: + reference_list.append( + {"value": reference_item, "attr_name": key} + ) + # ignore default values + elif attributes["value"] not in ["", None, 0.0, 0, "list"]: + reference_list.append(attributes) + + return reference_list + + +# This function searches a class_object in the res dictionary and returns the corresponding key (the mRID). Necessary +# for classes without mRID as attribute like SvVoltage +def _search_mRID(class_object, topology): + for mRID, class_obj in topology.items(): + if class_object == class_obj: + return mRID + return "" + + +# Lambda function for chevron renderer to decide whether the current element is a reference or an attribute +def _set_attribute_or_reference(text, render): + result = render(text) + result = result.split("@") + value = result[0] + attr_name = result[1] + if "%URL%" in value: + reference = value.split("%")[2] + return ' rdf:resource="' + reference + '"/>' + elif "%" in value: + reference = value.split("%")[1] + return ' rdf:resource="#' + reference + '"/>' + else: + return ">" + value + "" + + +# Lambda function for chevron renderer to set an attribute or a reference in the model description. +def _set_attribute_or_reference_model(text, render): + result = render(text) + result = result.split("@") + value = result[0] + attr_name = result[1] + if "%" in value: + reference = value.split("%")[1] + return ' rdf:resource="' + reference + '"/>' + else: + return ">" + value + "" + + +# Restructures the namespaces dict into a list. The template engine writes each entry in the RDF header +def _create_namespaces_list(namespaces_dict): + namespaces_list = [] + + for key in namespaces_dict: + namespace = dict(key=key, url=namespaces_dict[key]) + namespaces_list.append(namespace) + + return namespaces_list + + +# This function sorts the classes and their attributes to the corresponding profiles. Either the classes/attributes are +# imported or they are set afterwards. In the first case the serializationProfile is used to determine from which +# profile this class/attribute was read. If an entry exists the class/attribute is added to this profile. In the +# possibleProfileList dictionary the possible origins of the class/attributes is stored. All profiles have a different +# priority which is stored in the enum cgmesProfile. As default the smallest entry in the dictionary is used to +# determine the profile for the class/attributes. +def _sort_classes_to_profile(class_attributes_list, activeProfileList): + export_dict = {} + export_about_dict = {} + + # iterate over classes + for klass in class_attributes_list: + same_package_list = [] + about_dict = {} + + # store serializationProfile and possibleProfileList + # serializationProfile class attribute, same for multiple instances of same class, only last origin of variable stored + serializationProfile = klass["attributes"][0]["serializationProfile"] + possibleProfileList = klass["attributes"][1]["possibleProfileList"] + + class_serializationProfile = "" + + if "class" in serializationProfile.keys(): + # class was imported + if Profile[serializationProfile["class"]] in activeProfileList: + # else: class origin profile not active for export, get active profile from possibleProfileList + if ( + Profile[serializationProfile["class"]].value + in possibleProfileList[klass["name"]]["class"] + ): + # profile active and in possibleProfileList + # else: class should not have been imported from this profile, get allowed profile + # from possibleProfileList + class_serializationProfile = serializationProfile["class"] + else: + logger.warning( + "Class {} was read from profile {} but this profile is not" + " possible for this class".format( + klass["name"], serializationProfile["class"] + ) + ) + else: + logger.info( + "Class {} was read from profile {} but this profile is not active" + " for the export. Usedefault profile from possibleProfileList." + .format(klass["name"], serializationProfile["class"]) + ) + + if class_serializationProfile == "": + # class was created + if klass["name"] in possibleProfileList.keys(): + if "class" in possibleProfileList[klass["name"]].keys(): + possibleProfileList[klass["name"]]["class"].sort() + for klass_profile in possibleProfileList[klass["name"]]["class"]: + if Profile(klass_profile).name in activeProfileList: + # active profile for class export found + class_serializationProfile = Profile(klass_profile).name + break + if class_serializationProfile == "": + # no profile in possibleProfileList active + logger.warning( + "All possible export profiles for class {} not active. Skip" + " class for export.".format(klass["name"]) + ) + continue + else: + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) + else: + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) + + # iterate over attributes + for attribute in klass["attributes"]: + if "attr_name" in attribute.keys(): + attribute_class = attribute["attr_name"].split(".")[0] + attribute_name = attribute["attr_name"].split(".")[1] + + # IdentifiedObject.mRID is not exported as an attribute + if attribute_name == "mRID": + continue + + attribute_serializationProfile = "" + + if attribute_name in serializationProfile.keys(): + # attribute was imported + if ( + Profile[serializationProfile[attribute_name]] + in activeProfileList + ): + attr_value = Profile[serializationProfile[attribute_name]].value + if ( + attr_value + in possibleProfileList[attribute_class][attribute_name] + ): + attribute_serializationProfile = serializationProfile[ + attribute_name + ] + + if attribute_serializationProfile == "": + # attribute was added + if attribute_class in possibleProfileList.keys(): + if ( + attribute_name + in possibleProfileList[attribute_class].keys() + ): + possibleProfileList[attribute_class][attribute_name].sort() + for attr_profile in possibleProfileList[attribute_class][ + attribute_name + ]: + if Profile(attr_profile) in activeProfileList: + # active profile for class export found + attribute_serializationProfile = Profile( + attr_profile + ).name + break + if attribute_serializationProfile == "": + # no profile in possibleProfileList active, skip attribute + logger.warning( + "All possible export profiles for attribute {}.{}" + " of class {} not active. Skip attribute for" + " export.".format( + attribute_class, attribute_name, klass["name"] + ) + ) + continue + else: + logger.warning( + "Attribute {}.{} of class {} has no profile to" + " export to.".format( + attribute_class, attribute_name, klass["name"] + ) + ) + else: + logger.warning( + "The class {} for attribute {} is not in the" + " possibleProfileList".format( + attribute_class, attribute_name + ) + ) + + if attribute_serializationProfile == class_serializationProfile: + # class and current attribute belong to same profile + same_package_list.append(attribute) + else: + # class and current attribute does not belong to same profile -> rdf:about in + # attribute origin profile + if attribute_serializationProfile in about_dict.keys(): + about_dict[attribute_serializationProfile].append(attribute) + else: + about_dict[attribute_serializationProfile] = [attribute] + + # add class with all attributes in the same profile to the export dict sorted by the profile + if class_serializationProfile in export_dict.keys(): + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile]["classes"].append(export_class) + del export_class + else: + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile] = {"classes": [export_class]} + + # add class with all attributes defined in another profile to the about_key sorted by the profile + for about_key in about_dict.keys(): + if about_key in export_about_dict.keys(): + export_about_class = dict( + name=klass["name"], + mRID=klass["mRID"], + attributes=about_dict[about_key], + ) + export_about_dict[about_key]["classes"].append(export_about_class) + else: + export_about_class = dict( + name=klass["name"], + mRID=klass["mRID"], + attributes=about_dict[about_key], + ) + export_about_dict[about_key] = {"classes": [export_about_class]} + + return export_dict, export_about_dict + + +def cim_export(import_result, file_name, version, activeProfileList): + """Function for serialization of cgmes classes + + This function serializes cgmes classes with the template engine chevron. The classes are separated by their profile + and one xml file for each profile is created. The package name is added after the file name. The + set_attributes_or_reference function is a lamda function for chevron to decide whether the value of an attribute is + a reference to another class object or not. + + :param import_result: a dictionary containing the topology and meta information. The topology can be extracted via \ + import_result['topology']. The topology dictionary contains all objects accessible via their mRID. The meta \ + information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary with \ + the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ + between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ + 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are accessible \ + via the name of the attribute, e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ + 'namespaces' is a dictionary containing all RDF namespaces used in the imported xml files. + :param file_name: a string with the name of the xml files which will be created + :param version: cgmes version, e.g. version = "cgmes_v2_4_15" + :param activeProfileList: a list containing the strings of all short names of the profiles used for serialization + """ + + cwd = os.getcwd() + os.chdir(os.path.dirname(__file__)) + t0 = time() + logger.info("Start export procedure.") + + profile_list = list(map(lambda a: Profile[a], activeProfileList)) + + # iterate over all profiles + for profile in profile_list: + + # File name + full_file_name = file_name + "_" + profile.long_name() + ".xml" + + full_path = os.path.join(cwd, full_file_name) + + if not os.path.exists(full_path): + output = generate_xml( + import_result, version, file_name, profile, profile_list + ) + + with open(full_path, "w") as file: + logger.info('Write file "%s"', full_path) + + file.write(output) + else: + logger.error( + "File {} already exists in path {}. Delete file or change file name to" + " serialize CGMES classes.".format(full_file_name, cwd) + ) + print( + "[ERROR:] File {} already exists in path {}. Delete file or change file" + " name to serialize CGMES classes.".format(full_file_name, cwd), + file=sys.stderr, + ) + os.chdir(cwd) + exit(-1) + + os.chdir(cwd) + logger.info("End export procedure. Elapsed time: {}".format(time() - t0)) + + +def generate_xml(cim_data, version, model_name, profile, available_profiles): + """Function for serialization of cgmes classes + + This function serializes cgmes classes with the template engine chevron and returns them as a string. + + :param cim_data: a dictionary containing the topology and meta information. It can be created via :func:`~cimimport.cimimport()` + :param version: cgmes version, e.g. version = "cgmes_v2_4_15" + :param profile: The :class:`~cgmes.Profile` for which the serialization should be generated. . Possible values are TODO: enum + :param model_name: a string with the name of the model. + :param available_profiles: a list of all :class:`~cgmes.Profile`s in `cim_data` + """ + + # returns all classes with their attributes and resolved references + class_attributes_list = _get_class_attributes_with_references(cim_data, version) + + # determine class and attribute export profiles. The export dict contains all classes and their attributes where + # the class definition and the attribute definitions are in the same profile. Every entry in about_dict generates + # a rdf:about in another profile + export_dict, about_dict = _sort_classes_to_profile( + class_attributes_list, available_profiles + ) + + namespaces_list = _create_namespaces_list(cim_data["meta_info"]["namespaces"]) + + if profile.name not in export_dict.keys() and profile.name not in about_dict.keys(): + raise RuntimeError( + "Profile " + + profile.name + + " not available for export, export_dict=" + + str(export_dict.keys()) + + " and about_dict=" + + str(about_dict.keys()) + + "." + ) + + # extract class lists from export_dict and about_dict + if profile.name in export_dict.keys(): + classes = export_dict[profile.name]["classes"] + else: + classes = False + + if profile.name in about_dict.keys(): + about = about_dict[profile.name]["classes"] + else: + about = False + + # Model header + model_description = { + "mRID": model_name, + "description": [ + { + "attr_name": "created", + "value": datetime.now().strftime("%d/%m/%Y %H:%M:%S"), + }, + { + "attr_name": "modelingAuthoritySet", + "value": "www.acs.eonerc.rwth-aachen.de", + }, + {"attr_name": "profile", "value": profile.long_name()}, + ], + } + + with open("export_template.mustache") as f: + output = chevron.render( + f, + { + "classes": classes, + "about": about, + "set_attributes_or_reference": _set_attribute_or_reference, + "set_attributes_or_reference_model": _set_attribute_or_reference_model, + "namespaces": namespaces_list, + "model": [model_description], + }, + ) + del model_description + return output + + +# This function extracts all attributes from class_object in the form of Class_Name.Attribute_Name +def _get_attributes(class_object): + inheritance_list = [class_object] + class_type = type(class_object) + parent = class_object + + # get parent classes + while "Base.Base" not in str(class_type): + parent = parent.__class__.__bases__[0]() + # insert parent class at beginning of list, classes inherit from top to bottom + inheritance_list.insert(0, parent) + class_type = type(parent) + + # dictionary containing all attributes with key: 'Class_Name.Attribute_Name' + attributes_dict = dict( + serializationProfile=class_object.serializationProfile, possibleProfileList={} + ) + + # __dict__ of a subclass returns also the attributes of the parent classes + # to avoid multiple attributes create list with all attributes already processed + attributes_list = [] + + # iterate over parent classes from top to bottom + for parent_class in inheritance_list: + # get all attributes of the current parent class + parent_attributes_dict = parent_class.__dict__ + class_name = parent_class.__class__.__name__ + + # check if new attribute or old attribute + for key in parent_attributes_dict.keys(): + if key not in attributes_list: + attributes_list.append(key) + attributes_name = class_name + "." + key + attributes_dict[attributes_name] = getattr(class_object, key) + else: + continue + + # get all possibleProfileLists from all parent classes except the Base class (no attributes) + # the serializationProfile from parent classes is not needed because entries in the serializationProfile + # are only generated for the inherited class + if class_name != "Base": + attributes_dict["possibleProfileList"][ + class_name + ] = parent_class.possibleProfileList + + return attributes_dict diff --git a/cimpy/cimexport.py b/cimpy_3/cimpy/cimexport_v3.py similarity index 56% rename from cimpy/cimexport.py rename to cimpy_3/cimpy/cimexport_v3.py index 97795962..4aaf723a 100644 --- a/cimpy/cimexport.py +++ b/cimpy_3/cimpy/cimexport_v3.py @@ -1,17 +1,16 @@ +import os +import importlib +import chevron from datetime import datetime -from pathlib import Path from time import time -import chevron -import copy -import importlib +from cimpy.cgmes_v3_0.Base import Profile import logging -import os - -from cimpy.cgmes_v2_4_15.Base import Profile -from cimpy.cgmes_v2_4_15.Base import Base - +import sys +from cimpy.cgmes_v3_0.Base import Base cgmesProfile = Base.cgmesProfile +from pathlib import Path +import copy logger = logging.getLogger(__name__) @@ -19,17 +18,19 @@ # This function gets all attributes of an object and resolves references to other objects def _get_class_attributes_with_references(import_result, version): class_attributes_list = [] - # Extract topology and urls + # extract topology and urls topology = import_result["topology"] urls = import_result["meta_info"]["urls"] for key in topology.keys(): class_dict = dict(name=topology[key].__class__.__name__) class_dict["mRID"] = key - # Array containing all attributes, attribute references to objects + # array containing all attributes, attribute references to objects attributes_dict = _get_attributes(topology[key]) - # Change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have + # change attribute references to mRID of the object, res needed because classes like SvPowerFlow does not have # mRID as an attribute. Therefore the corresponding class has to be searched in the res dictionary - class_dict["attributes"] = _get_reference_uuid(attributes_dict, version, topology, key, urls) + class_dict["attributes"] = _get_reference_uuid( + attributes_dict, version, topology, key, urls + ) class_attributes_list.append(class_dict) del class_dict @@ -48,28 +49,30 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): continue attributes = {} - if isinstance(attr_dict[key], list): # Many + if isinstance(attr_dict[key], list): # many array = [] for elem in attr_dict[key]: if issubclass(type(elem), base_class): - # Classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key + # classes like SvVoltage does not have an attribute called mRID, the mRID is only stored as a key # for this object in the res dictionary # The % added before the mRID is used in the lambda _set_attribute_or_reference if not hasattr(elem, "mRID"): - # Search for the object in the res dictionary and return the mRID - uuid = "%" + _search_mRID(elem, topology) - if uuid == "%": + # search for the object in the res dictionary and return the mRID + UUID = "%" + _search_mRID(elem, topology) + if UUID == "%": logger.warning( - "Object of type %s not found as reference for object with UUID %s.", - elem.__class__.__name__, - mRID, + "Object of type {} not found as reference for object" + " with UUID {}.".format(elem.__class__.__name__, mRID) ) else: - uuid = "%" + elem.mRID + UUID = "%" + elem.mRID - array.append(uuid) + array.append(UUID) else: - logger.warning("Reference object not subclass of Base class for object with UUID %s.", mRID) + logger.warning( + "Reference object not subclass of Base class for object with" + " UUID {}.".format(mRID) + ) if len(array) == 1: attributes["value"] = array[0] else: @@ -77,29 +80,32 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): elif issubclass(type(attr_dict[key]), base_class): # 0..1, 1..1 # resource = key + ' rdf:resource=' if not hasattr(attr_dict[key], "mRID"): - # Search for object in res dict and return mRID + # search for object in res dict and return mRID # The % added before the mRID is used in the lambda _set_attribute_or_reference - uuid = "%" + _search_mRID(attr_dict[key], topology) - if uuid == "%": + UUID = "%" + _search_mRID(attr_dict[key], topology) + if UUID == "%": logger.warning( - "Object of type %s not found as reference for object with UUID %s.", - attr_dict[key].__class__.__name__, - mRID, + "Object of type {} not found as reference for object with" + " UUID {}.".format(attr_dict[key].__class__.__name__, mRID) ) else: - uuid = "%" + attr_dict[key].mRID - attributes["value"] = uuid + UUID = "%" + attr_dict[key].mRID + attributes["value"] = UUID elif attr_dict[key] == "" or attr_dict[key] is None: pass else: - # Attribute in urls dict? + # attribute in urls dict? if key.split(".")[1] in urls.keys(): - # Value in urls dict? should always be true + # value in urls dict? should always be true if attr_dict[key] in urls[key.split(".")[1]].keys(): - attributes["value"] = "%URL%" + urls[key.split(".")[1]][attr_dict[key]] + attributes["value"] = ( + "%URL%" + urls[key.split(".")[1]][attr_dict[key]] + ) else: logger.warning( - "URL reference for attribute %s and value %s not found!", key.split(".")[1], attr_dict[key] + "URL reference for attribute {} and value {} not found!".format( + key.split(".")[1], attr_dict[key] + ) ) else: attributes["value"] = attr_dict[key] @@ -108,10 +114,12 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): if "value" in attributes.keys(): if isinstance(attributes["value"], list): for reference_item in attributes["value"]: - # Ignore default values + # ignore default values if reference_item not in ["", None, 0.0, 0]: - reference_list.append({"value": reference_item, "attr_name": key}) - # Ignore default values + reference_list.append( + {"value": reference_item, "attr_name": key} + ) + # ignore default values elif attributes["value"] not in ["", None, 0.0, 0, "list"]: reference_list.append(attributes) @@ -121,9 +129,9 @@ def _get_reference_uuid(attr_dict, version, topology, mRID, urls): # This function searches a class_object in the res dictionary and returns the corresponding key (the mRID). Necessary # for classes without mRID as attribute like SvVoltage def _search_mRID(class_object, topology): - for id, class_obj in topology.items(): + for mRID, class_obj in topology.items(): if class_object == class_obj: - return id + return mRID return "" @@ -177,65 +185,75 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): export_dict = {} export_about_dict = {} - # Iterate over classes + # iterate over classes for klass in class_attributes_list: same_package_list = [] about_dict = {} - # Store serializationProfile and possibleProfileList - # serializationProfile class attribute, same for multiple instances - # of same class, only last origin of variable stored - serialization_profile = copy.deepcopy(klass["attributes"][0]["serializationProfile"]) - possible_profile_list = copy.deepcopy(klass["attributes"][1]["possibleProfileList"]) - - class_serialization_profile = "" - - if "class" in serialization_profile.keys(): - # Class was imported - if Profile[serialization_profile["class"]] in activeProfileList: - # Else: class origin profile not active for export, get active profile from possibleProfileList - if Profile[serialization_profile["class"]].value in possible_profile_list[klass["name"]]["class"]: - # Profile active and in possibleProfileList - # Else: class should not have been imported from this profile, get allowed profile + # store serializationProfile and possibleProfileList + # serializationProfile class attribute, same for multiple instances of same class, only last origin of variable stored + serializationProfile = copy.deepcopy( + klass["attributes"][0]["serializationProfile"] + ) + possibleProfileList = copy.deepcopy( + klass["attributes"][1]["possibleProfileList"] + ) + + class_serializationProfile = "" + + if "class" in serializationProfile.keys(): + # class was imported + if Profile[serializationProfile["class"]] in activeProfileList: + # else: class origin profile not active for export, get active profile from possibleProfileList + if ( + Profile[serializationProfile["class"]].value + in possibleProfileList[klass["name"]]["class"] + ): + # profile active and in possibleProfileList + # else: class should not have been imported from this profile, get allowed profile # from possibleProfileList - class_serialization_profile = serialization_profile["class"] + class_serializationProfile = serializationProfile["class"] else: logger.warning( - "Class %s was read from profile %s but this profile is not possible for this class", - klass["name"], - serialization_profile["class"], + "Class {} was read from profile {} but this profile is not" + " possible for this class".format( + klass["name"], serializationProfile["class"] + ) ) else: logger.info( - "Class %s was read from profile %s but this profile is not active for the export. " - + "Use default profile from possibleProfileList.", - klass["name"], - serialization_profile["class"], + "Class {} was read from profile {} but this profile is not active" + " for the export. Usedefault profile from possibleProfileList." + .format(klass["name"], serializationProfile["class"]) ) - if class_serialization_profile == "": - # Class was created - if klass["name"] in possible_profile_list.keys(): - if "class" in possible_profile_list[klass["name"]].keys(): - possible_profile_list[klass["name"]]["class"].sort() - for klass_profile in possible_profile_list[klass["name"]]["class"]: + if class_serializationProfile == "": + # class was created + if klass["name"] in possibleProfileList.keys(): + if "class" in possibleProfileList[klass["name"]].keys(): + possibleProfileList[klass["name"]]["class"].sort() + for klass_profile in possibleProfileList[klass["name"]]["class"]: if Profile(klass_profile).name in activeProfileList: - # Active profile for class export found - class_serialization_profile = Profile(klass_profile).name + # active profile for class export found + class_serializationProfile = Profile(klass_profile).name break - if class_serialization_profile == "": - # No profile in possibleProfileList active + if class_serializationProfile == "": + # no profile in possibleProfileList active logger.warning( - "All possible export profiles for class %s not active. Skip class for export.", - klass["name"], + "All possible export profiles for class {} not active. Skip" + " class for export.".format(klass["name"]) ) continue else: - logger.warning("Class %s has no profile to export to.", klass["name"]) + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) else: - logger.warning("Class %s has no profile to export to.", klass["name"]) + logger.warning( + "Class {} has no profile to export to.".format(klass["name"]) + ) - # Iterate over attributes + # iterate over attributes for attribute in klass["attributes"]: if "attr_name" in attribute.keys(): attribute_class = attribute["attr_name"].split(".")[0] @@ -245,70 +263,90 @@ def _sort_classes_to_profile(class_attributes_list, activeProfileList): if attribute_name == "mRID": continue - attribute_serialization_profile = "" - - if attribute_name in serialization_profile.keys(): - # Attribute was imported - if Profile[serialization_profile[attribute_name]] in activeProfileList: - attr_value = Profile[serialization_profile[attribute_name]].value - if attr_value in possible_profile_list[attribute_class][attribute_name]: - attribute_serialization_profile = serialization_profile[attribute_name] - - if attribute_serialization_profile == "": - # Attribute was added - if attribute_class in possible_profile_list.keys(): - if attribute_name in possible_profile_list[attribute_class].keys(): - possible_profile_list[attribute_class][attribute_name].sort() - for attr_profile in possible_profile_list[attribute_class][attribute_name]: + attribute_serializationProfile = "" + + if attribute_name in serializationProfile.keys(): + # attribute was imported + if ( + Profile[serializationProfile[attribute_name]] + in activeProfileList + ): + attr_value = Profile[serializationProfile[attribute_name]].value + if ( + attr_value + in possibleProfileList[attribute_class][attribute_name] + ): + attribute_serializationProfile = serializationProfile[ + attribute_name + ] + + if attribute_serializationProfile == "": + # attribute was added + if attribute_class in possibleProfileList.keys(): + if ( + attribute_name + in possibleProfileList[attribute_class].keys() + ): + possibleProfileList[attribute_class][attribute_name].sort() + for attr_profile in possibleProfileList[attribute_class][ + attribute_name + ]: if Profile(attr_profile) in activeProfileList: - # Active profile for class export found - attribute_serialization_profile = Profile(attr_profile).name + # active profile for class export found + attribute_serializationProfile = Profile( + attr_profile + ).name break - if attribute_serialization_profile == "": - # No profile in possibleProfileList active, skip attribute + if attribute_serializationProfile == "": + # no profile in possibleProfileList active, skip attribute logger.warning( - "All possible export profiles for attribute %s.%s of class %s not active. " - + "Skip attribute for export.", - attribute_class, - attribute_name, - klass["name"], + "All possible export profiles for attribute {}.{}" + " of class {} not active. Skip attribute for" + " export.".format( + attribute_class, attribute_name, klass["name"] + ) ) continue else: logger.warning( - "Attribute %s.%s of class %s has no profile to export to.", - attribute_class, - attribute_name, - klass["name"], + "Attribute {}.{} of class {} has no profile to" + " export to.".format( + attribute_class, attribute_name, klass["name"] + ) ) else: logger.warning( - "The class %s for attribute %s is not in the possibleProfileList", - attribute_class, - attribute_name, + "The class {} for attribute {} is not in the" + " possibleProfileList".format( + attribute_class, attribute_name + ) ) - if attribute_serialization_profile == class_serialization_profile: - # Class and current attribute belong to same profile + if attribute_serializationProfile == class_serializationProfile: + # class and current attribute belong to same profile same_package_list.append(attribute) else: - # Class and current attribute does not belong to same profile -> rdf:about in + # class and current attribute does not belong to same profile -> rdf:about in # attribute origin profile - if attribute_serialization_profile in about_dict.keys(): - about_dict[attribute_serialization_profile].append(attribute) + if attribute_serializationProfile in about_dict.keys(): + about_dict[attribute_serializationProfile].append(attribute) else: - about_dict[attribute_serialization_profile] = [attribute] + about_dict[attribute_serializationProfile] = [attribute] - # Add class with all attributes in the same profile to the export dict sorted by the profile - if class_serialization_profile in export_dict.keys(): - export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) - export_dict[class_serialization_profile]["classes"].append(export_class) + # add class with all attributes in the same profile to the export dict sorted by the profile + if class_serializationProfile in export_dict.keys(): + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile]["classes"].append(export_class) del export_class else: - export_class = dict(name=klass["name"], mRID=klass["mRID"], attributes=same_package_list) - export_dict[class_serialization_profile] = {"classes": [export_class]} + export_class = dict( + name=klass["name"], mRID=klass["mRID"], attributes=same_package_list + ) + export_dict[class_serializationProfile] = {"classes": [export_class]} - # Add class with all attributes defined in another profile to the about_key sorted by the profile + # add class with all attributes defined in another profile to the about_key sorted by the profile for about_key in about_dict.keys(): if about_key in export_about_dict.keys(): export_about_class = dict( @@ -337,13 +375,12 @@ def cim_export(import_result, file_name, version, activeProfileList): a reference to another class object or not. :param import_result: a dictionary containing the topology and meta information. The topology can be extracted via \ - :func:`~cimpy.cimimport.cim_import()`. The topology dictionary contains all objects accessible via their mRID. \ - The meta information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new \ - dictionary with the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. \ - 'urls' contains a mapping between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ - 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are \ - accessible via the name of the attribute, \ - e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ + :func:`~cimpy.cimimport.cim_import()`. The topology dictionary contains all objects accessible via their mRID. The meta \ + information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary with \ + the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ + between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ + 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are accessible \ + via the name of the attribute, e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ 'namespaces' is a dictionary containing all RDF namespaces used in the imported xml files. :param file_name: a string with the name of the xml files which will be created :param version: cgmes version, e.g. version = "cgmes_v2_4_15" @@ -355,14 +392,16 @@ def cim_export(import_result, file_name, version, activeProfileList): profile_list = list(map(lambda a: Profile[a], activeProfileList)) - # Iterate over all profiles + # iterate over all profiles for profile in profile_list: # File name full_file_name = file_name + "_" + profile.long_name() + ".xml" if not os.path.exists(full_file_name): - output = generate_xml(import_result, version, file_name, profile, profile_list) + output = generate_xml( + import_result, version, file_name, profile, profile_list + ) with open(full_file_name, "w") as file: logger.info('Write file "%s"', full_file_name) @@ -370,11 +409,17 @@ def cim_export(import_result, file_name, version, activeProfileList): file.write(output) else: logger.error( - "File %s already exists. Delete file or change file name to serialize CGMES classes.", full_file_name + "File {} already exists. Delete file or change file name to serialize" + " CGMES classes.".format(full_file_name) + ) + print( + "[ERROR:] File {} already exists. Delete file or change file name to" + " serialize CGMES classes.".format(full_file_name), + file=sys.stderr, ) exit(-1) - logger.info("End export procedure. Elapsed time: %s", time() - t0) + logger.info("End export procedure. Elapsed time: {}".format(time() - t0)) def generate_xml(cim_data, version, model_name, profile, available_profiles): @@ -382,21 +427,22 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): This function serializes cgmes classes with the template engine chevron and returns them as a string. - :param cim_data: a dictionary containing the topology and meta information. It can be created via \ - :func:`~cimpy.cimimport.cim_import()` + :param cim_data: a dictionary containing the topology and meta information. It can be created via :func:`~cimpy.cimimport.cim_import()` :param version: cgmes version, e.g. ``version="cgmes_v2_4_15"`` :param profile: The :class:`~cimpy.cgmes_v2_4_15.Base.Profile` for which the serialization should be generated. :param model_name: a string with the name of the model. :param available_profiles: a list of all :class:`~cimpy.cgmes_v2_4_15.Base.Profile`s in `cim_data` """ - # Returns all classes with their attributes and resolved references + # returns all classes with their attributes and resolved references class_attributes_list = _get_class_attributes_with_references(cim_data, version) - # Determine class and attribute export profiles. The export dict contains all classes and their attributes where + # determine class and attribute export profiles. The export dict contains all classes and their attributes where # the class definition and the attribute definitions are in the same profile. Every entry in about_dict generates # a rdf:about in another profile - export_dict, about_dict = _sort_classes_to_profile(class_attributes_list, available_profiles) + export_dict, about_dict = _sort_classes_to_profile( + class_attributes_list, available_profiles + ) namespaces_list = _create_namespaces_list(cim_data["meta_info"]["namespaces"]) @@ -411,7 +457,7 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): + "." ) - # Extract class lists from export_dict and about_dict + # extract class lists from export_dict and about_dict if profile.name in export_dict.keys(): classes = export_dict[profile.name]["classes"] else: @@ -430,11 +476,16 @@ def generate_xml(cim_data, version, model_name, profile, available_profiles): "attr_name": "created", "value": datetime.now().strftime("%d/%m/%Y %H:%M:%S"), }, - {"attr_name": "modelingAuthoritySet", "value": "www.sogno.energy"}, + { + "attr_name": "modelingAuthoritySet", + "value": "www.acs.eonerc.rwth-aachen.de", + }, {"attr_name": "profile", "value": profile.long_name()}, ], } - template_path = Path(os.path.join(os.path.dirname(__file__), "export_template.mustache")).resolve() + template_path = Path( + os.path.join(os.path.dirname(__file__), "export_template.mustache") + ).resolve() with open(template_path) as f: output = chevron.render( f, @@ -457,27 +508,29 @@ def _get_attributes(class_object): class_type = type(class_object) parent = class_object - # Get parent classes + # get parent classes while "Base.Base" not in str(class_type): parent = parent.__class__.__bases__[0]() - # Insert parent class at beginning of list, classes inherit from top to bottom + # insert parent class at beginning of list, classes inherit from top to bottom inheritance_list.insert(0, parent) class_type = type(parent) - # Dictionary containing all attributes with key: 'Class_Name.Attribute_Name' - attributes_dict = dict(serializationProfile=class_object.serializationProfile, possibleProfileList={}) + # dictionary containing all attributes with key: 'Class_Name.Attribute_Name' + attributes_dict = dict( + serializationProfile=class_object.serializationProfile, possibleProfileList={} + ) # __dict__ of a subclass returns also the attributes of the parent classes # to avoid multiple attributes create list with all attributes already processed attributes_list = [] - # Iterate over parent classes from top to bottom + # iterate over parent classes from top to bottom for parent_class in inheritance_list: - # Get all attributes of the current parent class + # get all attributes of the current parent class parent_attributes_dict = parent_class.__dict__ class_name = parent_class.__class__.__name__ - # Check if new attribute or old attribute + # check if new attribute or old attribute for key in parent_attributes_dict.keys(): if key not in attributes_list: attributes_list.append(key) @@ -486,10 +539,12 @@ def _get_attributes(class_object): else: continue - # Get all possibleProfileLists from all parent classes except the Base class (no attributes) + # get all possibleProfileLists from all parent classes except the Base class (no attributes) # the serializationProfile from parent classes is not needed because entries in the serializationProfile # are only generated for the inherited class if class_name != "Base": - attributes_dict["possibleProfileList"][class_name] = parent_class.possibleProfileList + attributes_dict["possibleProfileList"][ + class_name + ] = parent_class.possibleProfileList return attributes_dict diff --git a/cimpy/cimimport.py b/cimpy_3/cimpy/cimimport.py similarity index 73% rename from cimpy/cimimport.py rename to cimpy_3/cimpy/cimimport.py index ef2aa701..aae2b312 100644 --- a/cimpy/cimimport.py +++ b/cimpy_3/cimpy/cimimport.py @@ -2,6 +2,8 @@ from time import time import importlib import logging +import os +import cimpy logger = logging.getLogger(__name__) @@ -19,14 +21,13 @@ def cim_import(xml_files, cgmes_version, start_dict=None): :param start_dict: a list of classes which indicates which classes will be read e.g. elements=["BaseVoltage", "ACLineSegment"] * If start_dict=None the complete file will be read - :return: import_result: a dictionary containing the topology and meta information.The topology can be extracted \ - via import_result['topology']. The topology dictionary contains all objects accessible via their mRID. The meta \ - information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary \ - with the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ + :return: import_result: a dictionary containing the topology and meta information. The topology can be extracted via \ + import_result['topology']. The topology dictionary contains all objects accessible via their mRID. The meta \ + information can be extracted via import_result['meta_info']. The meta_info dictionary contains a new dictionary with \ + the keys: 'author', 'namespaces' and 'urls'. The last two are also dictionaries. 'urls' contains a mapping \ between references to URLs and the extracted value of the URL, e.g. 'absoluteValue': \ - 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are \ - accessible via the name of the attribute, \ - e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ + 'http://iec.ch/TC57/2012/CIM-schema-cim16#OperationalLimitDirectionKind.absoluteValue' These mappings are accessible \ + via the name of the attribute, e.g. import_result['meta_info']['urls'}[attr_name] = {mapping like example above}. \ 'namespaces' is a dictionary containing all RDF namespaces used in the imported xml files. """ @@ -36,20 +37,25 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # Start the clock. t0 = time() - # Map used to group errors and infos + # map used to group errors and infos logger_grouped = dict(errors={}, info={}) - # Create a dict which will contain meta information and the topology - import_result = start_dict if start_dict is not None else dict(meta_info={}, topology={}) + # create a dict which will contain meta information and the topology + import_result = ( + start_dict if start_dict is not None else dict(meta_info={}, topology={}) + ) - # Create sub-dictionaries + # create sub-dictionaries import_result["meta_info"] = dict(namespaces=_get_namespaces(xml_files[0]), urls={}) namespace_rdf = _get_rdf_namespace(import_result["meta_info"]["namespaces"]) # CIM element tag base (e.g. {http://iec.ch/TC57/2012/CIM-schema-cim16#} ) base = "{" + import_result["meta_info"]["namespaces"]["cim"] + "}" - (import_result, logger_grouped,) = _instantiate_classes( + ( + import_result, + logger_grouped, + ) = _instantiate_classes( import_result, xml_files, cgmes_version_path, @@ -58,18 +64,35 @@ def cim_import(xml_files, cgmes_version, start_dict=None): logger_grouped, ) - import_result, logger_grouped = _set_attributes(import_result, xml_files, namespace_rdf, base, logger_grouped) + import_result, logger_grouped = _set_attributes( + import_result, xml_files, namespace_rdf, base, logger_grouped + ) if logger_grouped["errors"]: for error, count in logger_grouped["errors"].items(): - logger.warning("%s: %d times", error, count) + logging_message = "{} : {} times".format(error, count) + logger.warning(logging_message) if logger_grouped["info"]: for info, count in logger_grouped["info"].items(): - logger.info("%s: %d times", info, count) + logging_message = "{} : {} times".format(info, count) + logger.info(logging_message) + + # print info which classes and how many were instantiated + print(logging_message) elapsed_time = time() - t0 - logger.info("Created totally %s CIM objects in %.2f s\n\n", len(import_result["topology"]), elapsed_time) + logger.info( + "Created totally {} CIM objects in {}s\n\n".format( + len(import_result["topology"]), elapsed_time + ) + ) + # print info of how many classes in total were instantiated to terminal + print( + "Created totally {} CIM objects in {}s".format( + len(import_result["topology"]), elapsed_time + ) + ) return import_result @@ -79,15 +102,16 @@ def cim_import(xml_files, cgmes_version, start_dict=None): # are set in the _set_attributes function because some attributes might be stored in one package and the class in # another. Since after this function all classes are instantiated, there should be no problem in setting the attributes. # Also the information from which package file a class was read is stored in the serializationProfile dictionary. -def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped): +def _instantiate_classes( + import_result, xml_files, cgmes_version_path, namespace_rdf, base, logger_grouped +): - # Extract topology from import_result + # extract topology from import_result topology = import_result["topology"] - # Length of element tag base + # length of element tag base m = len(base) - - # First step: create the dict res{uuid}=instance_of_the_cim_class + # first step: create the dict res{uuid}=instance_of_the_cim_class for xml_file in xml_files: logger.info('START of parsing file "%s"', xml_file) @@ -96,7 +120,7 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace if hasattr(xml_file, "seek"): xml_file.seek(0) - # Get an iterable + # get an iterable context = etree.iterparse(xml_file, ("start", "end")) # Turn it into an iterator (required for cElementTree). @@ -112,9 +136,9 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # Process 'end' elements in the CGMES namespace. if event == "end" and elem.tag[:m] == base: - # Check if the element has the attribute "rdf:ID" --> CGMES class located + # check if the element has the attribute "rdf:ID" --> CGMES class located uuid = elem.get("{%s}ID" % namespace_rdf) - if uuid is not None: # CIM class + if uuid is not None: # cim class # Element tag without namespace (e.g. VoltageLevel). tag = elem.tag[m:] try: @@ -137,21 +161,27 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace # Instantiate the class and map it to the uuid. # res[uuid] = klass(UUID=uuid) topology[uuid] = klass() - info_msg = "CIM object {} created".format(module_name.split(".")[-1]) + info_msg = "CIM object {} created".format( + module_name.split(".")[-1] + ) try: logger_grouped["info"][info_msg] += 1 except KeyError: logger_grouped["info"][info_msg] = 1 - # Check if the class has the attribute mRID and set the mRID to the read in UUID. If the class + # check if the class has the attribute mRID and set the mRID to the read in UUID. If the class # does not has this attribute, the UUID is only stored in the res dictionary. if hasattr(topology[uuid], "mRID"): topology[uuid].mRID = uuid if package != "": - topology[uuid].serializationProfile["class"] = short_package_name[package] + topology[uuid].serializationProfile["class"] = ( + short_package_name[package] + ) else: - error_msg = "Package information not found for class {}".format(klass.__class__.__name__) + error_msg = "Package information not found for class {}".format( + klass.__class__.__name__ + ) try: logger_grouped["errors"][error_msg] += 1 except KeyError: @@ -164,12 +194,10 @@ def _instantiate_classes(import_result, xml_files, cgmes_version_path, namespace if package_key in elem.text: package = package_key break - - # The author of all imported files should be the same, avoid multiple entries + # the author of all imported files should be the same, avoid multiple entries elif "author" in import_result["meta_info"].keys(): pass - - # Extract author + # extract author elif "Model.createdBy" in elem.tag: import_result["meta_info"]["author"] = elem.text elif "Model.modelingAuthoritySet" in elem.tag: @@ -194,7 +222,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Second step pass sets attributes and references. for xml_file in xml_files: - # Get an iterable and turn it into an iterator (required for cElementTree). + # get an iterable and turn it into an iterator (required for cElementTree). context = iter(etree.iterparse(xml_file, ("start", "end"))) # Reset stream @@ -220,7 +248,9 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe try: obj = topology[uuid] except KeyError: - error_msg = "Missing {} object with uuid: {}".format(elem.tag[m:], uuid) + error_msg = "Missing {} object with uuid: {}".format( + elem.tag[m:], uuid + ) try: logger_grouped["errors"][error_msg] += 1 except KeyError: @@ -258,7 +288,9 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Convert value type using the default value. try: typ = type(getattr(obj, attr)) - if isinstance(getattr(obj, attr), bool): # if typ== + if isinstance( + getattr(obj, attr), bool + ): # if typ== # The function bool("false") returns True, # because it is called upon non-empty string! # This means that it wrongly reads "false" value as boolean True. @@ -279,10 +311,15 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Use the '#' prefix to distinguish between references and enumerations. if uuid2[0] == "#": # reference try: - val = topology[uuid2[1:]] # remove '#' prefix + val = topology[ + uuid2[1:] + ] # remove '#' prefix except KeyError: - error_msg = "Referenced {} [{}] object missing.".format( - obj.__class__.__name__, uuid2[1:] + error_msg = ( + "Referenced {} [{}] object missing." + .format( + obj.__class__.__name__, uuid2[1:] + ) ) try: logger_grouped["errors"][error_msg] += 1 @@ -295,23 +332,24 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe if default is None: # 1..1 or 0..1 # Rely on properties to set any bi-directional references. setattr(obj, attr, val) - elif default == "list": # Many + elif default == "list": # many setattr(obj, attr, [val]) - elif isinstance(default, list): # Many + elif isinstance(default, list): # many attribute = getattr(obj, attr) if val not in attribute: attribute.append(val) setattr(obj, attr, attribute) elif default == val: - # Attribute reference already resolved + # attribute reference already resolved pass else: - # Note here + # note here error_msg = ( - "Multiplicity Error for class {} [{}], attribute {}. ".format( + "Multiplicity Error for class {} [{}]," + " attribute {}. Multiplicity should be" + " 1..1 or 0..1".format( obj.__class__.__name__, uuid, attr ) - + "Multiplicity should be 1..1 or 0..1" ) try: logger_grouped["errors"][error_msg] += 1 @@ -319,13 +357,21 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe logger_grouped["errors"][error_msg] = 1 if hasattr(val, obj.__class__.__name__): - default1 = getattr(val, obj.__class__.__name__) + default1 = getattr( + val, obj.__class__.__name__ + ) if default1 is None: - setattr(val, obj.__class__.__name__, obj) - elif default1 == "list": # Many - setattr(val, obj.__class__.__name__, [obj]) - elif isinstance(default1, list): # Many - attribute2 = getattr(val, obj.__class__.__name__) + setattr( + val, obj.__class__.__name__, obj + ) + elif default1 == "list": # many + setattr( + val, obj.__class__.__name__, [obj] + ) + elif isinstance(default1, list): # many + attribute2 = getattr( + val, obj.__class__.__name__ + ) if obj not in attribute2: attribute2.append(obj) setattr( @@ -337,36 +383,53 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe pass else: error_msg = ( - "Multiplicity Error for class {} [{}], attribute {}. ".format( + "Multiplicity Error for class {}" + " [{}], attribute {}. Multiplicity" + " should be 1..1 or 0..1".format( val.__class__.__name__, uuid2[1:], obj.__class__.__name__, ) - + "Multiplicity should be 1..1 or 0..1" ) try: - logger_grouped["errors"][error_msg] += 1 + logger_grouped["errors"][ + error_msg + ] += 1 except KeyError: - logger_grouped["errors"][error_msg] = 1 + logger_grouped["errors"][ + error_msg + ] = 1 - else: # Enum + else: # enum # if http in uuid2 reference to URL, create mapping if "http" in uuid2: if attr in urls.keys(): - if uuid2.rsplit(".", 1)[1] not in urls[attr].keys(): - urls[attr][uuid2.rsplit(".", 1)[1]] = uuid2 + if ( + uuid2.rsplit(".", 1)[1] + not in urls[attr].keys() + ): + urls[attr][ + uuid2.rsplit(".", 1)[1] + ] = uuid2 else: - urls[attr] = {uuid2.rsplit(".", 1)[1]: uuid2} + urls[attr] = { + uuid2.rsplit(".", 1)[1]: uuid2 + } # url_reference_dict[uuid2.rsplit(".", 1)[1]] = uuid2 val = uuid2.rsplit(".", 1)[1] setattr(obj, attr, val) if package != "": - obj.serializationProfile[attr] = short_package_name[package] + obj.serializationProfile[attr] = short_package_name[ + package + ] else: - error_msg = "Package information not found for class {}, attribute {}".format( - obj.__class__.__name__, attr + error_msg = ( + "Package information not found for class {}," + " attribute {}".format( + obj.__class__.__name__, attr + ) ) try: logger_grouped["errors"][error_msg] += 1 @@ -386,7 +449,7 @@ def _set_attributes(import_result, xml_files, namespace_rdf, base, logger_groupe # Clear children of the root element to minimise memory usage. root.clear() - logger.info('END of parsing file "%s"', xml_file) + logger.info('END of parsing file "{}"'.format(xml_file)) return import_result, logger_grouped @@ -414,7 +477,7 @@ def _get_rdf_namespace(namespaces): namespace = namespaces["rdf"] except KeyError: ns = "http://www.w3.org/1999/02/22-rdf-syntax-ns#" - logger.warning("No rdf namespace found. Using %s", ns) + logger.warning("No rdf namespace found. Using %s" % ns) return namespace @@ -422,7 +485,7 @@ def _get_rdf_namespace(namespaces): # TODO: use cimpy.cgmes.Profile instead # used to map the profile name to their abbreviations according to the CGMES standard short_package_name = { - "DiagramLayout": "DL", + "DiagramLayout": "DI", "Dynamics": "DY", "Equipment": "EQ", "GeographicalLocation": "GL", diff --git a/cimpy/examples/sampledata/CIGRE_MV/__init__.py b/cimpy_3/cimpy/examples/__init__.py similarity index 100% rename from cimpy/examples/sampledata/CIGRE_MV/__init__.py rename to cimpy_3/cimpy/examples/__init__.py diff --git a/cimpy/examples/add_external_network_injection.py b/cimpy_3/cimpy/examples/addExternalNetworkInjection.py similarity index 69% rename from cimpy/examples/add_external_network_injection.py rename to cimpy_3/cimpy/examples/addExternalNetworkInjection.py index ff99188b..9178a73a 100644 --- a/cimpy/examples/add_external_network_injection.py +++ b/cimpy_3/cimpy/examples/addExternalNetworkInjection.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# Called as cimpy.examples.convert_to_bus_branch() or file run from quickstart directory? +# called as cimpy.examples.addExternalNetworkInjection() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: @@ -20,8 +20,10 @@ import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -import_result = cimpy.utils.add_external_network_injection(import_result, "cgmes_v2_4_15", "N1", 20.0) +import_result = cimpy.utils.add_external_network_injection( + import_result, "cgmes_v2_4_15", "N1", 20.0 +) -active_profile_list = ["DL", "EQ", "SV", "TP"] +activeProfileList = ["DI", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, "ExternalInjection", "cgmes_v2_4_15", active_profile_list) +cimpy.cim_export(import_result, "ExternalInjection", "cgmes_v2_4_15", activeProfileList) diff --git a/cimpy/examples/convert_to_bus_branch.py b/cimpy_3/cimpy/examples/convertToBusBranch.py similarity index 56% rename from cimpy/examples/convert_to_bus_branch.py rename to cimpy_3/cimpy/examples/convertToBusBranch.py index d9b9f490..0c59349f 100644 --- a/cimpy/examples/convert_to_bus_branch.py +++ b/cimpy_3/cimpy/examples/convertToBusBranch.py @@ -2,13 +2,17 @@ import cimpy from pathlib import Path -logging.basicConfig(filename="Convert_to_Bus_Branch.log", level=logging.INFO, filemode="w") +logging.basicConfig( + filename="Convert_to_Bus_Branch.log", level=logging.INFO, filemode="w" +) example = Path(__file__).resolve().parent -# Called as cimpy.examples.convertBusBranch() or file run from quickstart directory? +# called as cimpy.examples.convertBusBranch() or file run from quickstart directory? if "cimexamples.py" in str(__file__): - sample_folder = example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" + sample_folder = ( + example / "examples" / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" + ) else: sample_folder = example / "sampledata" / "Sample_Grid_Switches" / "Node-Breaker" @@ -23,6 +27,8 @@ import_result = cimpy.utils.node_breaker_to_bus_branch(import_result) -active_profile_list = ["DL", "EQ", "TP"] +activeProfileList = ["DI", "EQ", "TP"] -cimpy.cim_export(import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", active_profile_list) +cimpy.cim_export( + import_result, "Bus_Branch_Converted", "cgmes_v2_4_15", activeProfileList +) diff --git a/cimpy/examples/export_cigre_mv.py b/cimpy_3/cimpy/examples/exportCIGREMV.py similarity index 72% rename from cimpy/examples/export_cigre_mv.py rename to cimpy_3/cimpy/examples/exportCIGREMV.py index 694e88b8..c1d276cb 100644 --- a/cimpy/examples/export_cigre_mv.py +++ b/cimpy_3/cimpy/examples/exportCIGREMV.py @@ -6,7 +6,7 @@ example = Path(__file__).resolve().parent -# Called as cimpy.examples.import_example() or file run from quickstart directory? +# called as cimpy.examples.import_example() or file run from quickstart directory? if "cimexamples.py" in str(__file__): sample_folder = example / "examples" / "sampledata" / "CIGRE_MV" else: @@ -20,6 +20,8 @@ import_result = cimpy.cim_import(xml_files, "cgmes_v2_4_15") -active_profile_list = ["DL", "EQ", "SV", "TP"] +activeProfileList = ["DI", "EQ", "SV", "TP"] -cimpy.cim_export(import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", active_profile_list) +cimpy.cim_export( + import_result, "CIGREMV_reference_cgmes_v2_4_15", "cgmes_v2_4_15", activeProfileList +) diff --git a/cimpy_3/cimpy/examples/importCIGREMV.py b/cimpy_3/cimpy/examples/importCIGREMV.py new file mode 100644 index 00000000..8be9f436 --- /dev/null +++ b/cimpy_3/cimpy/examples/importCIGREMV.py @@ -0,0 +1,22 @@ +import logging +import cimpy +from pathlib import Path + +logging.basicConfig(filename="importCIGREMV.log", level=logging.INFO, filemode="w") + +example = Path(__file__).resolve().parent + +# called as cimpy.examples.import_example() or file run from quickstart directory? +if "cimexamples.py" in str(__file__): + sample_folder = example / "examples" / "sampledata" / "LV_SIMBENCH_3_0" +else: + sample_folder = example / "sampledata" / "LV_SIMBENCH_3_0" +print(sample_folder) +sample_files = sample_folder.glob("*.xml") +print(sample_files) +xml_files = [] +for file in sample_folder.glob("*.xml"): + xml_files.append(str(file.absolute())) + +import_result = cimpy.cim_import(xml_files, "cgmes_v3_0") +print("\n\n") diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DL_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DL_.xml new file mode 100644 index 00000000..d9be137b --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DL_.xml @@ -0,0 +1,20069 @@ + + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 2015-12-31T23:00:00Z + + + + 1 + 439.688 + 862.75 + + + + 1 + 437.5 + 735.875 + + + + 2 + 242.812 + 464.625 + + + + 1 + 490 + 670.25 + + + + 1 + 124.688 + 910.875 + + + + 1 + 420 + 105.875 + + + + 2 + 138.008 + -379.877 + + + + 2 + 453.542 + 945.875 + + + + 2 + 446.25 + 66.5 + + + + 2 + 438.958 + 66.5 + + + + 1 + 861.875 + 1033.38 + + + + 1 + 408.333 + 836.5 + + + + 1 + 293.125 + 232.75 + + + + 2 + 138.007 + -379.874 + + + + 1 + 740.833 + 149.625 + + + + 2 + 437.5 + 722.75 + + + + 2 + 648.958 + 630.875 + + + + 1 + 457.188 + 613.375 + + + + 2 + 203.438 + 245.875 + + + + 1 + 588.438 + 749 + + + + 2 + 138.006 + -379.879 + + + + 2 + 732.812 + 119 + + + + 1 + 1253.44 + 464.625 + + + + 2 + 175 + 280.875 + + + + 1 + 541.042 + 250.25 + + + + 1 + 111.757 + -379.877 + + + + 1 + 424.375 + 140.875 + + + + 1 + 473.958 + 823.375 + + + + 1 + 1006.25 + 556.5 + + + + 1 + 552.845 + 651.76 + + + + 1 + 522.812 + 342.125 + + + + 2 + 541.042 + 263.375 + + + + 2 + 138.007 + -379.877 + + + + 1 + 892.5 + 810.25 + + + + 2 + 424.375 + 127.75 + + + + 1 + 453.125 + 774.833 + + + + 2 + 476.875 + 49 + + + + 1 + 997.5 + 412.125 + + + + 1 + 1302.29 + 552.125 + + + + 2 + 138.013 + -379.878 + + + + 1 + 364.583 + 1112.12 + + + + 2 + 728.438 + 547.75 + + + + 2 + 1275.31 + 486.5 + + + + 1 + 1279.69 + 604.625 + + + + 2 + 441.875 + 679 + + + + 2 + 138.008 + -379.881 + + + + 2 + 638.75 + 595.875 + + + + 1 + 815.938 + 784 + + + + 2 + 459.375 + 171.5 + + + + 2 + 357.292 + 989.625 + + + + 2 + 603.75 + 565.25 + + + + 1 + 111.755 + -379.884 + + + + 1 + 896.875 + 1024.62 + + + + 2 + 332.5 + 228.375 + + + + 2 + 755.417 + 149.625 + + + + 1 + 339.062 + 1042.12 + + + + 2 + 107.188 + 858.375 + + + + 2 + 138.005 + -379.884 + + + + 2 + 400.312 + 718.375 + + + + 2 + 1302.29 + 565.25 + + + + 1 + 1302.29 + 508.375 + + + + 2 + 531.562 + 44.625 + + + + 1 + 111.737 + -379.89 + + + + 2 + 421.458 + 1068.38 + + + + 1 + 481.25 + 460.25 + + + + 2 + 321.562 + 228.375 + + + + 1 + 448.438 + 1029 + + + + 2 + 194.688 + 416.5 + + + + 1 + 111.755 + -379.882 + + + + 1 + 1173.96 + 705.25 + + + + 1 + 185.938 + 294 + + + + 1 + 409.062 + 105.875 + + + + 2 + 137.987 + -379.89 + + + + 1 + 516.25 + 132.125 + + + + 2 + 702.188 + 92.75 + + + + 2 + 511.875 + 40.25 + + + + 1 + 124.879 + -379.882 + + + + 1 + 1286.25 + 504 + + + + 1 + 107.188 + 871.5 + + + + 2 + 920.208 + 569.625 + + + + 2 + 947.188 + 425.25 + + + + 1 + 111.763 + -379.878 + + + + 1 + 832.708 + 574 + + + + 1 + 479.062 + 101.5 + + + + 2 + 1146.25 + 434 + + + + 1 + 332.5 + 241.5 + + + + 1 + 111.756 + -379.881 + + + + 2 + 422.917 + 854 + + + + 2 + 479.062 + 114.625 + + + + 1 + 920.208 + 556.5 + + + + 1 + 772.188 + 1024.62 + + + + 1 + 459.375 + 184.625 + + + + 2 + 138.005 + -379.882 + + + + 1 + 721.875 + 355.25 + + + + 2 + 590.625 + 57.75 + + + + 1 + 1146.25 + 420.875 + + + + 1 + 945 + 827.75 + + + + 1 + 400.312 + 731.5 + + + + 1 + 1050 + 372.75 + + + + 1 + 378.438 + 819 + + + + 1 + 538.125 + 416.5 + + + + 1 + 111.757 + -379.876 + + + + 1 + 1090.83 + 744.625 + + + + 1 + 487.812 + 62.125 + + + + 2 + 546.875 + 75.25 + + + + 1 + 560 + 75.25 + + + + 1 + 1231.56 + 438.375 + + + + 2 + 1090.83 + 757.75 + + + + 1 + 603.75 + 40.25 + + + + 1 + 304.062 + 521.5 + + + + 1 + 938.438 + 1002.75 + + + + 1 + 470.312 + 805.875 + + + + 1 + 111.758 + -379.877 + + + + 1 + 936.25 + 438.375 + + + + 1 + 755.417 + 136.5 + + + + 2 + 896.875 + 1011.5 + + + + 2 + 185.938 + 280.875 + + + + 2 + 335.417 + 858.375 + + + + 2 + 721.875 + 342.125 + + + + 1 + 111.757 + -379.881 + + + + 1 + 516.25 + 814.625 + + + + 2 + 1265.83 + 639.625 + + + + 2 + 527.188 + 399 + + + + 1 + 203.438 + 259 + + + + 2 + 457.628 + 774.379 + + + + 1 + 505.312 + 560.875 + + + + 1 + 111.758 + -379.881 + + + + 1 + 745.208 + 267.75 + + + + 2 + 516.25 + 40.25 + + + + 1 + 205.625 + 429.625 + + + + 1 + 385 + 539 + + + + 1 + 1004.79 + 399 + + + + 1 + 111.755 + -379.88 + + + + 1 + 796.25 + 517.125 + + + + 1 + 511.875 + 27.125 + + + + 2 + 413.438 + 127.75 + + + + 2 + 175 + 368.375 + + + + 2 + 1036.88 + 390.25 + + + + 1 + 752.5 + 294 + + + + 1 + 956.667 + 945.875 + + + + 1 + 194.688 + 429.625 + + + + 2 + 772.188 + 1011.5 + + + + 1 + 438.958 + 53.375 + + + + 1 + 389.375 + 832.125 + + + + 1 + 1093.75 + 425.25 + + + + 2 + 525 + 114.625 + + + + 2 + 138.007 + -379.881 + + + + 1 + 229.688 + 893.375 + + + + 2 + 389.375 + 819 + + + + 1 + 441.875 + 665.875 + + + + 2 + 208.542 + 910.875 + + + + 2 + 138.005 + -379.88 + + + + 1 + 1275.31 + 499.625 + + + + 2 + 481.25 + 447.125 + + + + 1 + 531.562 + 490.875 + + + + 1 + 1265.83 + 626.5 + + + + 1 + 714.583 + 119 + + + + 2 + 905.625 + 792.75 + + + + 2 + 1253.44 + 451.5 + + + + 2 + 531.562 + 477.75 + + + + 2 + 490 + 683.375 + + + + 1 + 533.75 + 775.25 + + + + 1 + 193.958 + 893.375 + + + + 2 + 205.625 + 416.5 + + + + 1 + 877.188 + 477.75 + + + + 1 + 111.757 + -379.888 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 989.625 + + + + 2 + 170.625 + 320.25 + + + + 1 + 148.75 + 810.25 + + + + 1 + 1159.38 + 744.625 + + + + 2 + 1231.56 + 425.25 + + + + 2 + 138.007 + -379.888 + + + + 1 + 321.562 + 241.5 + + + + 2 + 745.208 + 280.875 + + + + 2 + 409.792 + 687.75 + + + + 1 + 1159.38 + 420.875 + + + + 1 + 1093.75 + 394.625 + + + + 1 + 529.375 + 171.5 + + + + 1 + 111.737 + -379.887 + + + + 1 + 421.458 + 1055.25 + + + + 1 + 697.812 + 945.875 + + + + 2 + 293.125 + 219.625 + + + + 1 + 1063.12 + 390.25 + + + + 1 + 446.25 + 963.375 + + + + 2 + 505.312 + 547.75 + + + + 2 + 138.009 + -379.882 + + + + 2 + 956.667 + 959 + + + + 1 + 546.875 + 88.375 + + + + 2 + 938.438 + 989.625 + + + + 1 + 752.5 + 630.875 + + + + 2 + 262.5 + 766.5 + + + + 1 + 531.562 + 57.75 + + + + 2 + 138.006 + -379.887 + + + + 2 + 409.062 + 92.75 + + + + 1 + 648.958 + 617.75 + + + + 1 + 1036.88 + 784 + + + + 1 + 947.188 + 438.375 + + + + 2 + 223.125 + 219.625 + + + + 2 + 492.188 + 447.125 + + + + 1 + 111.766 + -379.887 + + + + 1 + 811.562 + 1033.38 + + + + 1 + 371.875 + 1081.5 + + + + 1 + 1208.96 + 683.375 + + + + 1 + 428.75 + 1081.5 + + + + 1 + 175 + 381.5 + + + + 2 + 185.938 + 368.375 + + + + 2 + 138.016 + -379.887 + + + + 1 + 516.25 + 53.375 + + + + 2 + 516.25 + 797.125 + + + + 1 + 918.75 + 854 + + + + 1 + 369.688 + 263.375 + + + + 2 + 420 + 92.75 + + + + 2 + 459.375 + 171.5 + + + + 1 + 111.754 + -379.883 + + + + 1 + 413.438 + 140.875 + + + + 2 + 328.125 + 858.375 + + + + 1 + 253.75 + 784 + + + + 1 + 470.312 + 460.25 + + + + 2 + 931.875 + 792.75 + + + + 1 + 170.625 + 333.375 + + + + 1 + 111.761 + -379.891 + + + + 2 + 304.062 + 508.375 + + + + 1 + 680.312 + 105.875 + + + + 1 + 1284.06 + 657.125 + + + + 2 + 1159.38 + 434 + + + + 2 + 470.312 + 447.125 + + + + 1 + 111.754 + -379.895 + + + + 1 + 525 + 127.75 + + + + 1 + 450.625 + 875.875 + + + + 1 + 560 + 88.375 + + + + 1 + 272.708 + 867.125 + + + + 2 + 1080.62 + 412.125 + + + + 2 + 138.004 + -379.883 + + + + 1 + 527.188 + 412.125 + + + + 2 + 560 + 75.25 + + + + 1 + 545.417 + 385.875 + + + + 1 + 428.75 + 241.5 + + + + 1 + 159.688 + 333.375 + + + + 1 + 111.753 + -379.89 + + + + 2 + 697.812 + 932.75 + + + + 2 + 680.312 + 92.75 + + + + 1 + 118.125 + 875.875 + + + + 2 + 330.312 + 1072.75 + + + + 1 + 111.757 + -379.885 + + + + 2 + 811.562 + 1020.25 + + + + 1 + 647.5 + 499.625 + + + + 1 + 780.938 + 241.5 + + + + 2 + 866.25 + 460.25 + + + + 2 + 138.004 + -379.882 + + + + 2 + 737.188 + 976.5 + + + + 2 + 371.875 + 1094.62 + + + + 1 + 549.792 + 27.125 + + + + 2 + 490 + 683.375 + + + + 2 + 138.007 + -379.882 + + + + 2 + 192.5 + 245.875 + + + + 2 + 647.5 + 486.5 + + + + 2 + 138.003 + -379.89 + + + + 1 + 748.125 + 167.125 + + + + 1 + 866.25 + 473.375 + + + + 2 + 928.958 + 425.25 + + + + 1 + 949.375 + 976.5 + + + + 1 + 1271.67 + 438.375 + + + + 2 + 138.003 + -379.887 + + + + 1 + 391.562 + 700.875 + + + + 1 + 554.167 + 543.375 + + + + 1 + 927.5 + 1002.75 + + + + 1 + 430.208 + 998.375 + + + + 2 + 138.01 + -379.89 + + + + 1 + 648.958 + 613.375 + + + + 1 + 1301.56 + 622.125 + + + + 1 + 536.667 + 140.875 + + + + 1 + 1249.79 + 412.125 + + + + 1 + 111.76 + -379.89 + + + + 1 + 770 + 197.75 + + + + 1 + 373.333 + 910.875 + + + + 1 + 1230.83 + 657.125 + + + + 2 + 545.417 + 399 + + + + 1 + 328.125 + 875.875 + + + + 2 + 138.014 + -379.889 + + + + 1 + 379.167 + 1112.12 + + + + 1 + 739.375 + 744.625 + + + + 1 + 300.417 + 206.5 + + + + 1 + 475.417 + 582.75 + + + + 1 + 488.542 + 434 + + + + 1 + 111.755 + -379.883 + + + + 1 + 990.208 + 381.5 + + + + 2 + 557.812 + 705.25 + + + + 2 + 300.417 + 219.625 + + + + 1 + 943.542 + 862.75 + + + + 2 + 829.792 + 1020.25 + + + + 1 + 111.757 + -379.873 + + + + 1 + 1098.12 + 775.25 + + + + 1 + 960.312 + 972.125 + + + + 1 + 446.25 + 158.375 + + + + 1 + 614.688 + 582.75 + + + + 2 + 138.011 + -379.891 + + + + 1 + 829.792 + 1007.12 + + + + 1 + 608.125 + 75.25 + + + + 1 + 1242.5 + 438.375 + + + + 1 + 1114.17 + 556.5 + + + + 1 + 110.833 + 805.875 + + + + 2 + 138.007 + -379.873 + + + + 2 + 488.542 + 447.125 + + + + 1 + 861.875 + 1037.75 + + + + 1 + 826.875 + 779.625 + + + + 1 + 1128.75 + 639.625 + + + + 2 + 446.25 + 171.5 + + + + 2 + 138.013 + -379.89 + + + + 2 + 430.208 + 1011.5 + + + + 1 + 1111.25 + 442.75 + + + + 1 + 450.625 + 364 + + + + 1 + 443.333 + 845.25 + + + + 2 + 533.75 + 263.375 + + + + 1 + 111.759 + -379.882 + + + + 1 + 215.833 + 206.5 + + + + 1 + 415.625 + 867.125 + + + + 1 + 858.958 + 442.75 + + + + 2 + 1109.06 + 757.75 + + + + 1 + 1172.5 + 451.5 + + + + 1 + 111.762 + -379.877 + + + + 2 + 662.812 + 875.875 + + + + 2 + 1249.79 + 425.25 + + + + 1 + 1080.62 + 425.25 + + + + 1 + 949.375 + 937.125 + + + + 2 + 450.625 + 350.875 + + + + 2 + 138.012 + -379.877 + + + + 1 + 763.438 + 298.375 + + + + 1 + 1136.04 + 609 + + + + 1 + 1293.54 + 473.375 + + + + 1 + 439.688 + 364 + + + + 1 + 118.125 + 840.875 + + + + 2 + 1054.38 + 390.25 + + + + 1 + 111.756 + -379.887 + + + + 1 + 395.208 + 670.25 + + + + 2 + 1271.67 + 451.5 + + + + 1 + 533.75 + 276.5 + + + + 2 + 391.562 + 687.75 + + + + 1 + 1150.62 + 692.125 + + + + 2 + 138.016 + -379.888 + + + + 1 + 698.542 + 75.25 + + + + 1 + 905.625 + 805.875 + + + + 1 + 141.458 + 779.625 + + + + 2 + 1136.04 + 622.125 + + + + 1 + 295.312 + 788.375 + + + + 1 + 1095.94 + 587.125 + + + + 1 + 111.764 + -379.889 + + + + 1 + 1081.5 + 539 + + + + 2 + 141.458 + 792.75 + + + + 2 + 777.292 + 224 + + + + 2 + 415.625 + 854 + + + + 1 + 656.25 + 648.375 + + + + 2 + 138.005 + -379.883 + + + + 1 + 780.938 + 197.75 + + + + 2 + 253.75 + 206.5 + + + + 2 + 1146.25 + 727.125 + + + + 1 + 154.583 + 932.75 + + + + 1 + 651.875 + 709.625 + + + + 1 + 777.292 + 210.875 + + + + 2 + 138.004 + -379.895 + + + + 2 + 376.25 + 775.25 + + + + 1 + 1133.12 + 709.625 + + + + 1 + 169.167 + 932.75 + + + + 1 + 457.917 + 337.75 + + + + 1 + 918.75 + 792.75 + + + + 1 + 490 + 696.5 + + + + 1 + 840 + 609 + + + + 1 + 212.188 + 928.375 + + + + 1 + 608.125 + 70.875 + + + + 1 + 651.875 + 674.625 + + + + 1 + 611.042 + 565.25 + + + + 1 + 1192.19 + 735.875 + + + + 1 + 1054.38 + 403.375 + + + + 2 + 439.688 + 350.875 + + + + 1 + 925.312 + 897.75 + + + + 2 + 706.562 + 547.75 + + + + 1 + 320.833 + 840.875 + + + + 1 + 516.25 + 810.25 + + + + 2 + 945 + 840.875 + + + + 1 + 446.25 + 184.625 + + + + 1 + 777.292 + 162.75 + + + + 2 + 450.625 + 862.75 + + + + 2 + 739.375 + 731.5 + + + + 1 + 426.562 + 871.5 + + + + 2 + 717.5 + 547.75 + + + + 1 + 1216.25 + 718.375 + + + + 2 + 215.833 + 219.625 + + + + 2 + 1242.5 + 425.25 + + + + 1 + 788.958 + 486.5 + + + + 1 + 192.5 + 259 + + + + 2 + 295.312 + 775.25 + + + + 1 + 511.875 + 22.75 + + + + 1 + 328.125 + 871.5 + + + + 2 + 960.312 + 919.625 + + + + 1 + 387.188 + 792.75 + + + + 2 + 927.5 + 989.625 + + + + 1 + 1273.12 + 652.75 + + + + 1 + 755.417 + 132.125 + + + + 2 + 437.5 + 679 + + + + 2 + 1173.96 + 718.375 + + + + 1 + 457.188 + 963.375 + + + + 2 + 942.083 + 959 + + + + 2 + 536.667 + 154 + + + + 1 + 631.458 + 578.375 + + + + 2 + 1273.12 + 639.625 + + + + 2 + 516.25 + 547.75 + + + + 2 + 1293.54 + 486.5 + + + + 1 + 998.958 + 525.875 + + + + 2 + 675.938 + 412.125 + + + + 1 + 185.208 + 228.375 + + + + 2 + 1114.17 + 569.625 + + + + 1 + 717.5 + 560.875 + + + + 2 + 468.125 + 600.25 + + + + 2 + 385 + 556.5 + + + + 1 + 313.542 + 757.75 + + + + 1 + 834.167 + 749 + + + + 1 + 253.75 + 193.375 + + + + 1 + 198.333 + 416.5 + + + + 2 + 245 + 766.5 + + + + 1 + 437.5 + 692.125 + + + + 1 + 341.25 + 1090.25 + + + + 2 + 1117.81 + 622.125 + + + + 1 + 627.812 + 827.75 + + + + 1 + 1159.38 + 727.125 + + + + 1 + 928.958 + 412.125 + + + + 1 + 376.25 + 788.375 + + + + 1 + 938.438 + 587.125 + + + + 1 + 673.75 + 889 + + + + 1 + 1290.62 + 622.125 + + + + 1 + 925.312 + 893.375 + + + + 1 + 177.188 + 779.625 + + + + 1 + 662.812 + 889 + + + + 1 + 330.312 + 1085.88 + + + + 1 + 360.938 + 1007.12 + + + + 1 + 317.188 + 1059.62 + + + + 1 + 599.375 + 744.625 + + + + 2 + 1098.12 + 757.75 + + + + 1 + 417.083 + 127.75 + + + + 2 + 457.917 + 350.875 + + + + 1 + 188.125 + 792.75 + + + + 1 + 523.542 + 530.25 + + + + 1 + 546.875 + 722.75 + + + + 1 + 665 + 679 + + + + 1 + 533.75 + 770.875 + + + + 2 + 430.938 + 92.75 + + + + 2 + 608.125 + 57.75 + + + + 2 + 1230.83 + 670.25 + + + + 1 + 651.875 + 84 + + + + 1 + 437.5 + 1029 + + + + 2 + 1198.75 + 420.875 + + + + 2 + 1203.12 + 420.875 + + + + 1 + 759.792 + 613.375 + + + + 1 + 659.167 + 49 + + + + 1 + 1283.33 + 591.5 + + + + 1 + 1295 + 582.75 + + + + 2 + 1045.62 + 390.25 + + + + 2 + 665 + 692.125 + + + + 2 + 406.875 + 1090.25 + + + + 2 + 636.562 + 486.5 + + + + 1 + 647.5 + 504 + + + + 2 + 1283.33 + 604.625 + + + + 1 + 368.958 + 757.75 + + + + 1 + 245 + 779.625 + + + + 1 + 457.188 + 79.625 + + + + 2 + 752.5 + 613.375 + + + + 1 + 406.875 + 1107.75 + + + + 2 + 855.312 + 460.25 + + + + 1 + 438.958 + 932.75 + + + + 1 + 290.938 + 902.125 + + + + 2 + 446.25 + 171.5 + + + + 1 + 1098.12 + 770.875 + + + + 1 + 111.763 + -379.89 + + + + 1 + 240.625 + 910.875 + + + + 1 + 373.333 + 245.875 + + + + 1 + 920.208 + 976.5 + + + + 1 + 461.562 + 880.25 + + + + 1 + 1146.25 + 740.25 + + + + 1 + 437.5 + 1024.62 + + + + 1 + 710.938 + 136.5 + + + + 2 + 264.688 + 464.625 + + + + 2 + 138.006 + -379.878 + + + + 2 + 431.667 + 127.75 + + + + 1 + 931.875 + 858.375 + + + + 1 + 1045.62 + 403.375 + + + + 1 + 385 + 543.375 + + + + 1 + 307.708 + 508.375 + + + + 2 + 138.004 + -379.895 + + + + 1 + 520.625 + 97.125 + + + + 2 + 438.958 + 945.875 + + + + 2 + 188.125 + 779.625 + + + + 1 + 721.875 + 136.5 + + + + 1 + 638.75 + 705.25 + + + + 1 + 1198.75 + 434 + + + + 2 + 403.958 + 718.375 + + + + 1 + 111.753 + -379.885 + + + + 1 + 728.438 + 749 + + + + 2 + 920.208 + 989.625 + + + + 1 + 972.708 + 766.5 + + + + 2 + 350 + 858.375 + + + + 1 + 1295 + 578.375 + + + + 2 + 457.188 + 66.5 + + + + 2 + 216.562 + 416.5 + + + + 2 + 138.003 + -379.885 + + + + 1 + 879.375 + 792.75 + + + + 1 + 431.667 + 114.625 + + + + 1 + 716.042 + 915.25 + + + + 1 + 1106.88 + 622.125 + + + + 2 + 925.312 + 880.25 + + + + 1 + 258.125 + 219.625 + + + + 1 + 526.458 + 329 + + + + 1 + 931.875 + 823.375 + + + + 1 + 469.583 + 35.875 + + + + 2 + 138.007 + -379.885 + + + + 1 + 763.438 + 630.875 + + + + 2 + 1150.62 + 622.125 + + + + 2 + 1295 + 565.25 + + + + 2 + 258.125 + 206.5 + + + + 2 + 522.812 + 263.375 + + + + 1 + 679.583 + 394.625 + + + + 2 + 469.583 + 49 + + + + 1 + 249.375 + 749 + + + + 1 + 240.625 + 906.5 + + + + 2 + 393.75 + 1094.62 + + + + 1 + 542.5 + 490.875 + + + + 2 + 916.562 + 989.625 + + + + 1 + 1249.79 + 407.75 + + + + 1 + 399.583 + 1072.75 + + + + 1 + 364.583 + 1107.75 + + + + 1 + 1067.5 + 508.375 + + + + 1 + 476 + 114.625 + + + + 1 + 516.25 + 560.875 + + + + 1 + 1067.5 + 412.125 + + + + 3 + 918.75 + 840.875 + + + + 1 + 142.917 + 875.875 + + + + 2 + 364.583 + 1094.62 + + + + 2 + 1067.5 + 521.5 + + + + 1 + 546.875 + 574 + + + + 1 + 1124.38 + 460.25 + + + + 1 + 833.438 + 1020.25 + + + + 2 + 1120 + 412.125 + + + + 1 + 1106.88 + 587.125 + + + + 2 + 118.125 + 823.375 + + + + 1 + 111.737 + -379.882 + + + + 1 + 111.754 + -379.882 + + + + 2 + 546.875 + 560.875 + + + + 1 + 246.458 + 464.625 + + + + 1 + 681.042 + 858.375 + + + + 1 + 350 + 1094.62 + + + + 4 + 850.938 + 1020.25 + + + + 2 + 638.75 + 692.125 + + + + 2 + 138.004 + -379.867 + + + + 1 + 111.754 + -379.893 + + + + 1 + 468.125 + 613.375 + + + + 1 + 803.542 + 504 + + + + 1 + 869.167 + 1020.25 + + + + 2 + 271.25 + 766.5 + + + + 1 + 251.562 + 910.875 + + + + 2 + 437.5 + 1011.5 + + + + 2 + 138.012 + -379.88 + + + + 2 + 138.004 + -379.893 + + + + 2 + 599.375 + 731.5 + + + + 1 + 719.688 + 932.75 + + + + 1 + 596.458 + 547.75 + + + + 2 + 450.625 + 1068.38 + + + + 1 + 697.812 + 429.625 + + + + 2 + 240.625 + 893.375 + + + + 1 + 111.754 + -379.867 + + + + 1 + 111.754 + -379.882 + + + + 2 + 542.5 + 477.75 + + + + 2 + 740.833 + 976.5 + + + + 1 + 554.959 + 652.704 + + + + 1 + 261.042 + 447.125 + + + + 1 + 306.25 + 858.375 + + + + 1 + 118.125 + 836.5 + + + + 1 + 111.753 + -379.878 + + + + 1 + 111.757 + -379.882 + + + + 1 + 450.625 + 735.875 + + + + 1 + 663.542 + 630.875 + + + + 1 + 412.708 + 75.25 + + + + 1 + 406.875 + 1068.38 + + + + 1 + 729.167 + 101.5 + + + + 1 + 752.5 + 626.5 + + + + 1 + 111.749 + -379.87 + + + + 2 + 138.004 + -379.882 + + + + 2 + 450.625 + 722.75 + + + + 1 + 1044.17 + 766.5 + + + + 1 + 439.688 + 1085.88 + + + + 1 + 490 + 665.875 + + + + 2 + 791.875 + 224 + + + + 2 + 728.438 + 731.5 + + + + 1 + 111.763 + -379.881 + + + + 1 + 111.753 + -379.887 + + + + 2 + 741.562 + 613.375 + + + + 1 + 544.688 + 276.5 + + + + 1 + 667.188 + 648.375 + + + + 1 + 920.208 + 552.125 + + + + 2 + 433.125 + 718.375 + + + + 1 + 1117.81 + 635.25 + + + + 1 + 111.754 + -379.895 + + + + 1 + 111.76 + -379.884 + + + + 2 + 1170.31 + 718.375 + + + + 2 + 544.688 + 263.375 + + + + 1 + 306.25 + 792.75 + + + + 1 + 441.875 + 661.5 + + + + 1 + 1036.88 + 779.625 + + + + 1 + 1028.12 + 390.25 + + + + 1 + 111.766 + -379.888 + + + + 1 + 111.752 + -379.881 + + + + 1 + 413.438 + 687.75 + + + + 2 + 673.75 + 875.875 + + + + 1 + 348.542 + 1055.25 + + + + 1 + 777.292 + 206.5 + + + + 1 + 406.875 + 1103.38 + + + + 1 + 555.625 + 648.375 + + + + 2 + 137.999 + -379.896 + + + + 1 + 111.748 + -379.865 + + + + 4 + 1146.25 + 434 + + + + 1 + 411.25 + 731.5 + + + + 1 + 606.667 + 714 + + + + 1 + 1265.83 + 622.125 + + + + 2 + 1036.88 + 766.5 + + + + 2 + 1128.75 + 569.625 + + + + 2 + 137.999 + -379.887 + + + + 2 + 138.003 + -379.86 + + + + 2 + 411.25 + 718.375 + + + + 1 + 1227.19 + 718.375 + + + + 1 + 435.312 + 945.875 + + + + 2 + 533.75 + 757.75 + + + + 3 + 492.188 + 805.875 + + + + 2 + 1019.38 + 399 + + + + 2 + 138.01 + -379.884 + + + + 2 + 137.993 + -379.891 + + + + 1 + 746.667 + 714 + + + + 1 + 503.125 + 696.5 + + + + 1 + 443.333 + 350.875 + + + + 1 + 1203.12 + 407.75 + + + + 1 + 460.833 + 600.25 + + + + 2 + 1264.38 + 425.25 + + + + 2 + 138.018 + -379.885 + + + + 2 + 137.992 + -379.886 + + + + 1 + 546.875 + 57.75 + + + + 2 + 503.125 + 683.375 + + + + 2 + 441.875 + 259 + + + + 1 + 728.438 + 744.625 + + + + 1 + 1283.33 + 587.125 + + + + 1 + 625.625 + 486.5 + + + + 1 + 111.766 + -379.886 + + + + 2 + 137.998 + -379.894 + + + + 1 + 129.062 + 840.875 + + + + 2 + 156.042 + 792.75 + + + + 1 + 398.125 + 543.375 + + + + 2 + 554.167 + 705.25 + + + + 1 + 1181.25 + 731.5 + + + + 1 + 726.25 + 149.625 + + + + 1 + 450.625 + 880.25 + + + + 1 + 526.458 + 740.25 + + + + 1 + 111.743 + -379.886 + + + + 2 + 398.125 + 556.5 + + + + 2 + 925.312 + 425.25 + + + + 1 + 1090.83 + 740.25 + + + + 1 + 306.25 + 1042.12 + + + + 2 + 138.003 + -379.878 + + + + 1 + 400.312 + 836.5 + + + + 2 + 137.999 + -379.89 + + + + 1 + 783.125 + 1024.62 + + + + 1 + 522.812 + 757.75 + + + + 1 + 918.75 + 792.75 + + + + 2 + 743.75 + 119 + + + + 2 + 137.999 + -379.87 + + + + 2 + 783.125 + 1011.5 + + + + 1 + 646.042 + 595.875 + + + + 2 + 885.938 + 1011.5 + + + + 2 + 138.002 + -379.883 + + + + 1 + 424.375 + 145.25 + + + + 2 + 1071.88 + 390.25 + + + + 2 + 138.018 + -379.879 + + + + 2 + 829.062 + 591.5 + + + + 1 + 494.375 + 101.5 + + + + 1 + 111.753 + -379.889 + + + + 1 + 185.938 + 298.375 + + + + 1 + 1271.67 + 434 + + + + 1 + 358.75 + 928.375 + + + + 2 + 138.013 + -379.881 + + + + 2 + 656.25 + 630.875 + + + + 1 + 1139.69 + 674.625 + + + + 1 + 1047.81 + 779.625 + + + + 1 + 111.754 + -379.896 + + + + 1 + 889.583 + 994 + + + + 2 + 402.5 + 928.375 + + + + 2 + 138.001 + -379.878 + + + + 1 + 1290.62 + 617.75 + + + + 1 + 873.542 + 460.25 + + + + 2 + 494.375 + 114.625 + + + + 1 + 111.745 + -379.885 + + + + 1 + 854.583 + 1002.75 + + + + 2 + 533.75 + 114.625 + + + + 2 + 1260 + 670.25 + + + + 2 + 137.987 + -379.882 + + + + 2 + 1150.62 + 674.625 + + + + 2 + 1047.81 + 766.5 + + + + 2 + 523.542 + 797.125 + + + + 2 + 137.991 + -379.888 + + + + 1 + 560 + 92.75 + + + + 2 + 774.375 + 613.375 + + + + 1 + 111.764 + -379.879 + + + + 2 + 918.75 + 792.75 + + + + 1 + 815.938 + 779.625 + + + + 1 + 544.688 + 770.875 + + + + 2 + 343.438 + 228.375 + + + + 1 + 111.741 + -379.893 + + + + 1 + 542.5 + 495.25 + + + + 1 + 1050 + 521.5 + + + + 1 + 111.766 + -379.882 + + + + 2 + 732.083 + 731.5 + + + + 1 + 1150.62 + 687.75 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 533.75 + 342.125 + + + + 2 + 137.991 + -379.893 + + + + 2 + 770 + 149.625 + + + + 1 + 111.759 + -379.865 + + + + 1 + 665 + 692.125 + + + + 2 + 1290.62 + 604.625 + + + + 1 + 111.755 + -379.884 + + + + 1 + 794.062 + 1011.5 + + + + 2 + 533.75 + 329 + + + + 2 + 1238.12 + 700.875 + + + + 2 + 398.125 + 556.5 + + + + 1 + 111.762 + -379.884 + + + + 1 + 599.375 + 749 + + + + 2 + 815.938 + 766.5 + + + + 1 + 111.738 + -379.893 + + + + 1 + 428.75 + 272.125 + + + + 1 + 625.625 + 692.125 + + + + 1 + 535.938 + 705.25 + + + + 1 + 111.766 + -379.886 + + + + 1 + 557.812 + 722.75 + + + + 1 + 980 + 797.125 + + + + 2 + 428.75 + 259 + + + + 1 + 111.737 + -379.891 + + + + 1 + 389.375 + 718.375 + + + + 2 + 815.208 + 1020.25 + + + + 2 + 138.016 + -379.886 + + + + 2 + 541.042 + 757.75 + + + + 1 + 544.688 + 280.875 + + + + 1 + 473.958 + 819 + + + + 2 + 138.001 + -379.885 + + + + 1 + 1220.62 + 425.25 + + + + 2 + 544.688 + 757.75 + + + + 2 + 444.792 + 1011.5 + + + + 1 + 512.75 + 114.625 + + + + 2 + 138.016 + -379.886 + + + + 1 + 541.042 + 184.625 + + + + 2 + 280 + 884.625 + + + + 2 + 137.993 + -379.886 + + + + 1 + 1106.88 + 399 + + + + 2 + 1087.19 + 757.75 + + + + 2 + 507.5 + 114.625 + + + + 1 + 179.375 + 910.875 + + + + 1 + 111.739 + -379.88 + + + + 1 + 481.25 + 788.375 + + + + 1 + 280 + 897.75 + + + + 2 + 137.999 + -379.881 + + + + 2 + 465.938 + 49 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 945 + 840.875 + + + + 2 + 411.25 + 819 + + + + 1 + 111.762 + -379.886 + + + + 1 + 233.333 + 875.875 + + + + 2 + 627.812 + 810.25 + + + + 1 + 111.743 + -379.891 + + + + 2 + 833.438 + 1020.25 + + + + 1 + 507.5 + 53.375 + + + + 1 + 654.792 + 486.5 + + + + 2 + 138.012 + -379.886 + + + + 2 + 157.5 + 893.375 + + + + 1 + 710.208 + 530.25 + + + + 2 + 473.958 + 805.875 + + + + 1 + 111.743 + -379.889 + + + + 2 + 775.833 + 1011.5 + + + + 2 + 507.5 + 40.25 + + + + 1 + 111.768 + -379.885 + + + + 1 + 328.125 + 989.625 + + + + 2 + 631.458 + 810.25 + + + + 1 + 850.938 + 609 + + + + 1 + 1071 + 534.625 + + + + 1 + 1136.04 + 604.625 + + + + 1 + 111.742 + -379.886 + + + + 1 + 680.312 + 110.25 + + + + 2 + 402.5 + 687.75 + + + + 1 + 284.375 + 775.25 + + + + 1 + 904.167 + 1011.5 + + + + 1 + 541.042 + 311.5 + + + + 2 + 770 + 224 + + + + 1 + 488.542 + 429.625 + + + + 2 + 138.003 + -379.889 + + + + 1 + 1181.25 + 735.875 + + + + 1 + 822.5 + 1033.38 + + + + 3 + 1146.25 + 434 + + + + 1 + 319.375 + 1072.75 + + + + 1 + 418.542 + 700.875 + + + + 1 + 656.25 + 644 + + + + 1 + 111.75 + -379.898 + + + + 1 + 1203.12 + 403.375 + + + + 2 + 138.016 + -379.882 + + + + 1 + 544.688 + 215.25 + + + + 2 + 969.062 + 784 + + + + 2 + 437.5 + 854 + + + + 1 + 328.125 + 1059.62 + + + + 1 + 546.875 + 718.375 + + + + 1 + 469.583 + 31.5 + + + + 1 + 380.625 + 945.875 + + + + 1 + 111.752 + -379.879 + + + + 1 + 508.958 + 547.75 + + + + 2 + 638.75 + 810.25 + + + + 1 + 428.75 + 862.75 + + + + 1 + 180.833 + 762.125 + + + + 1 + 931.875 + 827.75 + + + + 1 + 1231.56 + 442.75 + + + + 1 + 457.917 + 333.375 + + + + 2 + 138.002 + -379.879 + + + + 2 + 1146.25 + 727.125 + + + + 2 + 877.188 + 460.25 + + + + 1 + 163.333 + 302.75 + + + + 1 + 700 + 119 + + + + 2 + 546.875 + 705.25 + + + + 2 + 137.989 + -379.88 + + + + 1 + 253.75 + 189 + + + + 1 + 111.749 + -379.887 + + + + 1 + 638.75 + 823.375 + + + + 1 + 610.312 + 731.5 + + + + 1 + 320.833 + 1024.62 + + + + 2 + 398.125 + 775.25 + + + + 2 + 1181.25 + 718.375 + + + + 1 + 111.759 + -379.867 + + + + 1 + 928.958 + 407.75 + + + + 1 + 111.741 + -379.888 + + + + 2 + 822.5 + 1020.25 + + + + 2 + 328.125 + 775.25 + + + + 1 + 732.812 + 359.625 + + + + 1 + 1216.25 + 714 + + + + 2 + 138.017 + -379.879 + + + + 1 + 111.749 + -379.884 + + + + 1 + 956.667 + 941.5 + + + + 1 + 1194.38 + 700.875 + + + + 2 + 516.25 + 114.625 + + + + 2 + 1071 + 521.5 + + + + 2 + 138.001 + -379.881 + + + + 2 + 137.988 + -379.893 + + + + 1 + 438.958 + 49 + + + + 1 + 581.875 + 565.25 + + + + 1 + 234.062 + 232.75 + + + + 1 + 770 + 237.125 + + + + 2 + 137.986 + -379.885 + + + + 2 + 137.987 + -379.892 + + + + 2 + 625.625 + 565.25 + + + + 1 + 1093.75 + 429.625 + + + + 2 + 234.062 + 219.625 + + + + 2 + 931.875 + 840.875 + + + + 2 + 137.998 + -379.865 + + + + 2 + 363.125 + 1072.75 + + + + 1 + 111.752 + -379.884 + + + + 2 + 181.562 + 320.25 + + + + 1 + 1124.38 + 473.375 + + + + 2 + 1216.25 + 700.875 + + + + 1 + 111.736 + -379.885 + + + + 2 + 472.5 + 862.75 + + + + 1 + 111.754 + -379.88 + + + + 1 + 280 + 902.125 + + + + 1 + 529.375 + 167.125 + + + + 1 + 1305.94 + 582.75 + + + + 2 + 980 + 784 + + + + 2 + 1316.88 + 565.25 + + + + 2 + 137.999 + -379.884 + + + + 1 + 111.751 + -379.878 + + + + 1 + 538.125 + 412.125 + + + + 1 + 714.583 + 324.625 + + + + 1 + 300.417 + 202.125 + + + + 1 + 651.875 + 679 + + + + 1 + 1216.25 + 670.25 + + + + 1 + 111.762 + -379.88 + + + + 2 + 137.987 + -379.891 + + + + 1 + 402.5 + 700.875 + + + + 1 + 385 + 574 + + + + 3 + 850.938 + 1020.25 + + + + 1 + 627.812 + 823.375 + + + + 1 + 111.75 + -379.877 + + + + 1 + 111.748 + -379.869 + + + + 1 + 387.917 + 228.375 + + + + 2 + 708.75 + 932.75 + + + + 1 + 1173.96 + 700.875 + + + + 1 + 686.875 + 425.25 + + + + 2 + 138 + -379.877 + + + + 1 + 111.76 + -379.882 + + + + 1 + 658.438 + 504 + + + + 1 + 920.208 + 972.125 + + + + 2 + 538.125 + 399 + + + + 2 + 686.875 + 412.125 + + + + 1 + 730.625 + 613.375 + + + + 2 + 138.009 + -379.867 + + + + 2 + 138.013 + -379.886 + + + + 1 + 382.083 + 801.5 + + + + 1 + 431.667 + 110.25 + + + + 1 + 516.25 + 127.75 + + + + 2 + 651.875 + 692.125 + + + + 1 + 1159.38 + 718.375 + + + + 2 + 138.012 + -379.884 + + + + 2 + 138.01 + -379.882 + + + + 1 + 182.292 + 350.875 + + + + 1 + 551.76 + 650.436 + + + + 2 + 529.375 + 154 + + + + 2 + 949.375 + 959 + + + + 2 + 138.009 + -379.865 + + + + 2 + 138.002 + -379.884 + + + + 1 + 1249.06 + 687.75 + + + + 1 + 367.5 + 819 + + + + 2 + 544.688 + 202.125 + + + + 1 + 949.375 + 932.75 + + + + 1 + 111.753 + -379.86 + + + + 2 + 138 + -379.898 + + + + 2 + 1102.5 + 521.5 + + + + 1 + 646.042 + 792.75 + + + + 2 + 892.5 + 792.75 + + + + 1 + 111.748 + -379.884 + + + + 2 + 138.014 + -379.879 + + + + 2 + 459.375 + 1011.5 + + + + 1 + 745.208 + 595.875 + + + + 2 + 520.625 + 114.625 + + + + 1 + 111.768 + -379.879 + + + + 1 + 111.753 + -379.882 + + + + 1 + 975.625 + 399 + + + + 1 + 527.188 + 814.625 + + + + 1 + 124.688 + 906.5 + + + + 1 + 111.748 + -379.894 + + + + 1 + 770 + 241.5 + + + + 1 + 877.188 + 473.375 + + + + 1 + 1109.06 + 775.25 + + + + 2 + 1203.12 + 718.375 + + + + 1 + 759.062 + 976.5 + + + + 2 + 124.688 + 893.375 + + + + 1 + 111.749 + -379.896 + + + + 1 + 505.312 + 565.25 + + + + 1 + 487.812 + 66.5 + + + + 1 + 354.375 + 775.25 + + + + 1 + 430.208 + 994 + + + + 1 + 708.75 + 945.875 + + + + 2 + 137.995 + -379.885 + + + + 2 + 770 + 180.25 + + + + 1 + 717.5 + 565.25 + + + + 1 + 391.562 + 945.875 + + + + 1 + 1133.12 + 434 + + + + 1 + 505.312 + 797.125 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 111.749 + -379.89 + + + + 1 + 640.938 + 79.625 + + + + 1 + 927.5 + 587.125 + + + + 1 + 135.625 + 910.875 + + + + 2 + 669.375 + 486.5 + + + + 2 + 505.312 + 797.125 + + + + 2 + 181.562 + 245.875 + + + + 1 + 111.752 + -379.883 + + + + 1 + 446.25 + 959 + + + + 1 + 201.25 + 928.375 + + + + 1 + 167.708 + 263.375 + + + + 1 + 490 + 40.25 + + + + 1 + 1293.54 + 469 + + + + 2 + 230.417 + 219.625 + + + + 1 + 111.737 + -379.892 + + + + 1 + 520.625 + 101.5 + + + + 1 + 752.5 + 298.375 + + + + 1 + 437.5 + 696.5 + + + + 2 + 1316.88 + 525.875 + + + + 4 + 918.75 + 840.875 + + + + 2 + 544.688 + 329 + + + + 2 + 138.005 + -379.884 + + + + 2 + 640.938 + 66.5 + + + + 1 + 531.562 + 495.25 + + + + 1 + 905.625 + 775.25 + + + + 2 + 350 + 1042.12 + + + + 1 + 1146.25 + 416.5 + + + + 1 + 555.189 + 644.017 + + + + 2 + 137.998 + -379.869 + + + + 2 + 990.208 + 399 + + + + 1 + 531.562 + 62.125 + + + + 2 + 678.125 + 692.125 + + + + 1 + 167.708 + 368.375 + + + + 1 + 459.375 + 189 + + + + 2 + 759.062 + 224 + + + + 1 + 111.748 + -379.871 + + + + 2 + 927.5 + 569.625 + + + + 1 + 638.75 + 709.625 + + + + 1 + 549.792 + 460.25 + + + + 1 + 1230.83 + 652.75 + + + + 1 + 1297.19 + 486.5 + + + + 2 + 137.993 + -379.889 + + + + 1 + 588.438 + 744.625 + + + + 1 + 350 + 1007.12 + + + + 1 + 1029.58 + 749 + + + + 1 + 522.083 + 154 + + + + 2 + 479.062 + 600.25 + + + + 1 + 111.741 + -379.888 + + + + 1 + 770 + 193.375 + + + + 1 + 258.125 + 224 + + + + 1 + 321.562 + 245.875 + + + + 1 + 453.542 + 66.5 + + + + 2 + 137.998 + -379.884 + + + + 2 + 553.438 + 477.75 + + + + 1 + 927.5 + 582.75 + + + + 1 + 417.812 + 1107.75 + + + + 1 + 192.5 + 263.375 + + + + 1 + 339.792 + 210.875 + + + + 1 + 111.751 + -379.885 + + + + 1 + 557.665 + 652.251 + + + + 1 + 1273.12 + 525.875 + + + + 1 + 956.667 + 902.125 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 167.125 + + + + 2 + 503.125 + 683.375 + + + + 2 + 138.003 + -379.882 + + + + 1 + 943.542 + 425.25 + + + + 1 + 1085 + 569.625 + + + + 1 + 500.5 + 132.125 + + + + 1 + 1093.75 + 399 + + + + 1 + 446.25 + 84 + + + + 1 + 938.438 + 919.625 + + + + 1 + 111.749 + -379.881 + + + + 2 + 986.562 + 399 + + + + 2 + 371.875 + 989.625 + + + + 1 + 315 + 525.875 + + + + 1 + 154.583 + 928.375 + + + + 1 + 927.5 + 1007.12 + + + + 2 + 535.208 + 44.625 + + + + 1 + 111.763 + -379.886 + + + + 1 + 113.75 + 893.375 + + + + 2 + 190.312 + 910.875 + + + + 1 + 199.062 + 797.125 + + + + 2 + 710.938 + 119 + + + + 1 + 188.125 + 797.125 + + + + 2 + 549.062 + 399 + + + + 2 + 137.991 + -379.888 + + + + 1 + 415.625 + 1011.5 + + + + 4 + 172.812 + 915.25 + + + + 1 + 450.625 + 740.25 + + + + 1 + 710.938 + 132.125 + + + + 1 + 470.312 + 464.625 + + + + 2 + 138.004 + -379.88 + + + + 1 + 649.688 + 810.25 + + + + 2 + 223.125 + 910.875 + + + + 1 + 159.688 + 810.25 + + + + 1 + 468.125 + 617.75 + + + + 1 + 990.208 + 385.875 + + + + 2 + 137.998 + -379.871 + + + + 1 + 484.167 + 49 + + + + 1 + 1161.56 + 692.125 + + + + 1 + 1273.12 + 565.25 + + + + 1 + 342.708 + 972.125 + + + + 1 + 541.042 + 245.875 + + + + 2 + 138.004 + -379.896 + + + + 1 + 393.75 + 854 + + + + 1 + 755.417 + 959 + + + + 1 + 137.812 + 792.75 + + + + 1 + 525 + 40.25 + + + + 1 + 111.746 + -379.88 + + + + 2 + 533.75 + 40.25 + + + + 1 + 339.062 + 875.875 + + + + 2 + 125.417 + 823.375 + + + + 1 + 428.75 + 679 + + + + 1 + 111.752 + -379.875 + + + + 1 + 748.125 + 224 + + + + 1 + 691.25 + 110.25 + + + + 1 + 422.188 + 718.375 + + + + 1 + 389.375 + 836.5 + + + + 1 + 476.875 + 683.375 + + + + 1 + 840 + 604.625 + + + + 1 + 111.751 + -379.872 + + + + 1 + 554.029 + 644.296 + + + + 1 + 450.625 + 368.375 + + + + 1 + 175 + 298.375 + + + + 1 + 533.75 + 280.875 + + + + 1 + 987.292 + 784 + + + + 2 + 840 + 591.5 + + + + 1 + 111.743 + -379.88 + + + + 2 + 437.5 + 722.75 + + + + 1 + 481.25 + 464.625 + + + + 1 + 415.625 + 276.5 + + + + 1 + 159.688 + 337.75 + + + + 2 + 949.375 + 919.625 + + + + 2 + 522.812 + 202.125 + + + + 1 + 111.759 + -379.866 + + + + 1 + 317.188 + 858.375 + + + + 1 + 936.25 + 897.75 + + + + 1 + 1275.31 + 504 + + + + 1 + 1159.38 + 451.5 + + + + 2 + 446.25 + 945.875 + + + + 2 + 138.002 + -379.869 + + + + 2 + 785.312 + 504 + + + + 2 + 645.312 + 630.875 + + + + 1 + 960.312 + 976.5 + + + + 1 + 516.25 + 57.75 + + + + 1 + 490 + 700.875 + + + + 1 + 339.792 + 215.25 + + + + 1 + 551.787 + 646.264 + + + + 2 + 461.562 + 350.875 + + + + 1 + 111.748 + -379.866 + + + + 1 + 599.375 + 75.25 + + + + 1 + 391.562 + 705.25 + + + + 2 + 140 + 858.375 + + + + 1 + 892.5 + 805.875 + + + + 2 + 592.083 + 731.5 + + + + 1 + 111.768 + -379.883 + + + + 2 + 1080.62 + 412.125 + + + + 1 + 253.75 + 482.125 + + + + 1 + 446.25 + 189 + + + + 1 + 242.812 + 482.125 + + + + 2 + 154.583 + 915.25 + + + + 2 + 892.5 + 792.75 + + + + 1 + 684.688 + 875.875 + + + + 2 + 138.009 + -379.866 + + + + 1 + 508.958 + 779.625 + + + + 1 + 918.75 + 858.375 + + + + 1 + 737.188 + 994 + + + + 2 + 339.792 + 228.375 + + + + 1 + 240.625 + 206.5 + + + + 2 + 138.008 + -379.869 + + + + 1 + 539.583 + 687.75 + + + + 2 + 498.75 + 40.25 + + + + 1 + 640.938 + 84 + + + + 1 + 717.5 + 731.5 + + + + 2 + 588.438 + 731.5 + + + + 2 + 928.958 + 880.25 + + + + 2 + 138 + -379.881 + + + + 1 + 203.438 + 263.375 + + + + 2 + 701.458 + 932.75 + + + + 1 + 662.812 + 893.375 + + + + 2 + 1172.5 + 674.625 + + + + 1 + 949.375 + 972.125 + + + + 1 + 762.708 + 224 + + + + 1 + 450.625 + 705.25 + + + + 2 + 138.004 + -379.881 + + + + 1 + 694.167 + 412.125 + + + + 1 + 936.25 + 442.75 + + + + 1 + 413.438 + 145.25 + + + + 2 + 631.458 + 595.875 + + + + 2 + 942.083 + 919.625 + + + + 1 + 205.625 + 434 + + + + 2 + 455 + 679 + + + + 1 + 111.753 + -379.88 + + + + 1 + 476.875 + 66.5 + + + + 2 + 761.25 + 731.5 + + + + 1 + 603.75 + 44.625 + + + + 2 + 759.062 + 180.25 + + + + 1 + 739.375 + 749 + + + + 2 + 335.417 + 1042.12 + + + + 1 + 111.756 + -379.861 + + + + 1 + 439.688 + 368.375 + + + + 1 + 905.625 + 840.875 + + + + 2 + 777.292 + 180.25 + + + + 2 + 287.292 + 884.625 + + + + 1 + 790.417 + 994 + + + + 2 + 540.312 + 154 + + + + 1 + 111.736 + -379.884 + + + + 1 + 603.75 + 582.75 + + + + 2 + 1312.5 + 604.625 + + + + 1 + 1305.94 + 543.375 + + + + 3 + 172.812 + 915.25 + + + + 2 + 737.188 + 149.625 + + + + 1 + 536.667 + 136.5 + + + + 1 + 111.755 + -379.868 + + + + 1 + 796.25 + 521.5 + + + + 1 + 665 + 412.125 + + + + 1 + 905.625 + 810.25 + + + + 2 + 185.208 + 245.875 + + + + 1 + 1092 + 521.5 + + + + 1 + 111.761 + -379.881 + + + + 1 + 745.208 + 263.375 + + + + 1 + 428.75 + 1085.88 + + + + 1 + 960.312 + 937.125 + + + + 1 + 164.062 + 385.875 + + + + 1 + 111.763 + -379.879 + + + + 2 + 317.188 + 1042.12 + + + + 2 + 196.875 + 280.875 + + + + 2 + 958.125 + 840.875 + + + + 1 + 457.188 + 84 + + + + 1 + 858.958 + 447.125 + + + + 1 + 1117.81 + 639.625 + + + + 1 + 420 + 110.25 + + + + 1 + 669.375 + 92.75 + + + + 1 + 317.188 + 1055.25 + + + + 1 + 459.375 + 805.875 + + + + 1 + 1067.5 + 504 + + + + 1 + 665 + 674.625 + + + + 1 + 371.875 + 574 + + + + 2 + 858.958 + 460.25 + + + + 1 + 223.125 + 237.125 + + + + 1 + 542.5 + 62.125 + + + + 1 + 177.917 + 320.25 + + + + 1 + 638.75 + 613.375 + + + + 1 + 380.625 + 941.5 + + + + 1 + 947.188 + 442.75 + + + + 1 + 330.312 + 1090.25 + + + + 1 + 947.188 + 880.25 + + + + 1 + 339.062 + 989.625 + + + + 1 + 1251.25 + 639.625 + + + + 1 + 596.458 + 552.125 + + + + 1 + 1054.38 + 407.75 + + + + 2 + 503.125 + 805.875 + + + + 2 + 1099.58 + 569.625 + + + + 2 + 170.625 + 792.75 + + + + 2 + 596.458 + 565.25 + + + + 2 + 819.583 + 766.5 + + + + 1 + 295.312 + 792.75 + + + + 1 + 175 + 385.875 + + + + 2 + 408.333 + 854 + + + + 1 + 634.375 + 630.875 + + + + 1 + 1208.96 + 687.75 + + + + 1 + 282.188 + 237.125 + + + + 2 + 1208.96 + 700.875 + + + + 1 + 1302.29 + 547.75 + + + + 1 + 1133.12 + 714 + + + + 2 + 1133.12 + 727.125 + + + + 2 + 666.458 + 875.875 + + + + 1 + 525 + 132.125 + + + + 1 + 631.458 + 582.75 + + + + 1 + 526.458 + 263.375 + + + + 2 + 678.125 + 630.875 + + + + 1 + 408.333 + 840.875 + + + + 1 + 829.792 + 1002.75 + + + + 1 + 914.375 + 880.25 + + + + 1 + 285.833 + 219.625 + + + + 1 + 1095.94 + 582.75 + + + + 1 + 1128.75 + 674.625 + + + + 1 + 415.625 + 259 + + + + 2 + 1050 + 390.25 + + + + 2 + 958.125 + 880.25 + + + + 1 + 488.542 + 823.375 + + + + 2 + 391.562 + 245.875 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 518.438 + 171.5 + + + + 1 + 446.25 + 154 + + + + 2 + 380.625 + 928.375 + + + + 1 + 1047.81 + 784 + + + + 2 + 708.75 + 412.125 + + + + 1 + 526.458 + 202.125 + + + + 2 + 603.75 + 57.75 + + + + 1 + 544.688 + 775.25 + + + + 1 + 409.062 + 110.25 + + + + 1 + 1114.17 + 552.125 + + + + 1 + 777.292 + 167.125 + + + + 1 + 293.125 + 237.125 + + + + 2 + 183.75 + 915.25 + + + + 1 + 111.751 + -379.873 + + + + 2 + 916.562 + 569.625 + + + + 1 + 737.188 + 162.75 + + + + 1 + 938.438 + 1007.12 + + + + 1 + 96.25 + 823.375 + + + + 1 + 559.328 + 646.036 + + + + 1 + 1050 + 377.125 + + + + 1 + 847.292 + 591.5 + + + + 2 + 1295 + 639.625 + + + + 1 + 411.25 + 735.875 + + + + 1 + 185.208 + 232.75 + + + + 2 + 627.812 + 595.875 + + + + 1 + 385 + 1090.25 + + + + 2 + 1095.94 + 569.625 + + + + 1 + 322.292 + 490.875 + + + + 1 + 199.792 + 245.875 + + + + 1 + 126.875 + 792.75 + + + + 1 + 1111.25 + 447.125 + + + + 1 + 945 + 823.375 + + + + 2 + 1025.94 + 766.5 + + + + 1 + 927.5 + 919.625 + + + + 1 + 148.75 + 805.875 + + + + 1 + 826.875 + 784 + + + + 1 + 473.958 + 447.125 + + + + 2 + 138.001 + -379.86 + + + + 2 + 227.5 + 416.5 + + + + 2 + 971.25 + 919.625 + + + + 2 + 148.75 + 792.75 + + + + 4 + 492.188 + 805.875 + + + + 1 + 990.938 + 801.5 + + + + 2 + 137.993 + -379.88 + + + + 1 + 958.125 + 784 + + + + 2 + 710.938 + 342.125 + + + + 1 + 249.375 + 224 + + + + 2 + 745.208 + 613.375 + + + + 1 + 212.917 + 399 + + + + 1 + 111.758 + -379.869 + + + + 2 + 1001.88 + 784 + + + + 1 + 1146.25 + 744.625 + + + + 1 + 141.458 + 775.25 + + + + 1 + 457.188 + 959 + + + + 1 + 1017.19 + 560.875 + + + + 2 + 138.002 + -379.875 + + + + 1 + 772.188 + 1029 + + + + 2 + 212.188 + 219.625 + + + + 1 + 679.583 + 399 + + + + 1 + 516.25 + 565.25 + + + + 1 + 183.75 + 416.5 + + + + 1 + 111.754 + -379.881 + + + + 1 + 1295 + 543.375 + + + + 1 + 535.208 + 477.75 + + + + 1 + 834.167 + 753.375 + + + + 2 + 538.125 + 797.125 + + + + 2 + 138.018 + -379.883 + + + + 1 + 896.875 + 1029 + + + + 1 + 421.458 + 1050.88 + + + + 2 + 412.708 + 92.75 + + + + 1 + 525 + 560.875 + + + + 2 + 138.017 + -379.884 + + + + 2 + 861.875 + 591.5 + + + + 1 + 215.833 + 202.125 + + + + 1 + 170.625 + 337.75 + + + + 2 + 834.167 + 766.5 + + + + 1 + 415.625 + 871.5 + + + + 2 + 138.001 + -379.878 + + + + 1 + 522.812 + 346.5 + + + + 2 + 164.062 + 280.875 + + + + 1 + 1172.5 + 434 + + + + 1 + 807.188 + 521.5 + + + + 2 + 443.333 + 862.75 + + + + 2 + 428.75 + 1090.25 + + + + 2 + 138.006 + -379.861 + + + + 1 + 533.75 + 219.625 + + + + 2 + 266.875 + 206.5 + + + + 1 + 1157.92 + 657.125 + + + + 1 + 1198.75 + 438.375 + + + + 2 + 426.562 + 854 + + + + 1 + 997.5 + 416.5 + + + + 2 + 138.001 + -379.871 + + + + 1 + 245 + 784 + + + + 1 + 545.417 + 381.5 + + + + 1 + 332.5 + 245.875 + + + + 2 + 780.938 + 180.25 + + + + 1 + 805 + 766.5 + + + + 2 + 325.938 + 508.375 + + + + 2 + 138.001 + -379.873 + + + + 1 + 194.688 + 434 + + + + 1 + 438.958 + 928.375 + + + + 1 + 544.688 + 219.625 + + + + 2 + 729.167 + 119 + + + + 1 + 1045.62 + 407.75 + + + + 2 + 304.062 + 219.625 + + + + 2 + 138.011 + -379.881 + + + + 2 + 245 + 219.625 + + + + 1 + 371.875 + 1077.12 + + + + 1 + 380.625 + 263.375 + + + + 2 + 1185.62 + 434 + + + + 2 + 638.75 + 692.125 + + + + 1 + 111.748 + -379.867 + + + + 1 + 201.25 + 219.625 + + + + 1 + 559.94 + 647.625 + + + + 1 + 507.5 + 57.75 + + + + 2 + 713.125 + 92.75 + + + + 1 + 640.208 + 469 + + + + 1 + 494.375 + 797.125 + + + + 1 + 111.765 + -379.882 + + + + 1 + 750.312 + 731.5 + + + + 1 + 412.708 + 79.625 + + + + 1 + 428.75 + 276.5 + + + + 1 + 866.25 + 477.75 + + + + 2 + 435.312 + 127.75 + + + + 1 + 298.958 + 775.25 + + + + 1 + 745.208 + 600.25 + + + + 1 + 638.75 + 827.75 + + + + 1 + 96.25 + 858.375 + + + + 2 + 435.312 + 66.5 + + + + 1 + 1273.12 + 657.125 + + + + 1 + 398.125 + 539 + + + + 1 + 1106.88 + 582.75 + + + + 2 + 140 + 823.375 + + + + 2 + 436.042 + 1068.38 + + + + 2 + 568.75 + 560.875 + + + + 1 + 748.125 + 994 + + + + 2 + 1106.88 + 569.625 + + + + 2 + 557.812 + 560.875 + + + + 1 + 304.062 + 525.875 + + + + 1 + 708.75 + 950.25 + + + + 2 + 679.583 + 412.125 + + + + 2 + 527.188 + 547.75 + + + + 1 + 437.5 + 740.25 + + + + 1 + 1264.38 + 469 + + + + 1 + 780.938 + 193.375 + + + + 1 + 1207.5 + 438.375 + + + + 1 + 559.612 + 650.188 + + + + 1 + 1253.44 + 469 + + + + 1 + 533.75 + 346.5 + + + + 1 + 426.562 + 867.125 + + + + 1 + 161.875 + 897.75 + + + + 2 + 848.75 + 766.5 + + + + 1 + 721.875 + 359.625 + + + + 1 + 728.438 + 565.25 + + + + 1 + 443.333 + 849.625 + + + + 1 + 530.833 + 399 + + + + 1 + 140 + 915.25 + + + + 1 + 376.25 + 792.75 + + + + 1 + 783.125 + 1029 + + + + 2 + 1227.19 + 700.875 + + + + 2 + 1287.71 + 525.875 + + + + 1 + 697.812 + 950.25 + + + + 1 + 234.062 + 237.125 + + + + 1 + 488.25 + 132.125 + + + + 2 + 457.188 + 945.875 + + + + 1 + 1268.75 + 604.625 + + + + 1 + 371.875 + 556.5 + + + + 1 + 1159.38 + 416.5 + + + + 1 + 153.125 + 280.875 + + + + 1 + 614.688 + 578.375 + + + + 1 + 811.562 + 1037.75 + + + + 1 + 759.792 + 280.875 + + + + 1 + 446.25 + 696.5 + + + + 1 + 714.583 + 329 + + + + 1 + 1111.25 + 477.75 + + + + 1 + 426.562 + 1011.5 + + + + 1 + 479.062 + 97.125 + + + + 1 + 457.188 + 617.75 + + + + 2 + 714.583 + 342.125 + + + + 1 + 1124.38 + 477.75 + + + + 1 + 190.312 + 910.875 + + + + 1 + 1006.25 + 560.875 + + + + 1 + 818.125 + 591.5 + + + + 1 + 1227.19 + 714 + + + + 1 + 125.417 + 840.875 + + + + 1 + 1071 + 539 + + + + 1 + 673.75 + 893.375 + + + + 1 + 980 + 801.5 + + + + 1 + 837.812 + 766.5 + + + + 1 + 546.875 + 92.75 + + + + 1 + 494.375 + 97.125 + + + + 2 + 1190 + 420.875 + + + + 1 + 1008.44 + 416.5 + + + + 1 + 527.188 + 416.5 + + + + 1 + 182.292 + 280.875 + + + + 1 + 1242.5 + 442.75 + + + + 1 + 686.875 + 429.625 + + + + 1 + 780.938 + 237.125 + + + + 1 + 325.208 + 228.375 + + + + 1 + 535.938 + 578.375 + + + + 2 + 780.938 + 224 + + + + 1 + 539.583 + 560.875 + + + + 1 + 1305.94 + 578.375 + + + + 1 + 107.188 + 875.875 + + + + 1 + 111.751 + -379.86 + + + + 1 + 724.792 + 547.75 + + + + 2 + 1305.94 + 565.25 + + + + 1 + 111.752 + -379.869 + + + + 1 + 433.125 + 171.5 + + + + 1 + 387.188 + 788.375 + + + + 1 + 1106.88 + 394.625 + + + + 2 + 137.996 + -379.88 + + + + 1 + 427.292 + 92.75 + + + + 2 + 614.688 + 565.25 + + + + 1 + 1080.62 + 429.625 + + + + 2 + 138.001 + -379.872 + + + + 1 + 649.688 + 613.375 + + + + 2 + 387.188 + 775.25 + + + + 1 + 395.938 + 1090.25 + + + + 2 + 138.015 + -379.882 + + + + 1 + 400.312 + 735.875 + + + + 1 + 907.812 + 1029 + + + + 1 + 404.688 + 854 + + + + 1 + 729.167 + 105.875 + + + + 1 + 111.766 + -379.879 + + + + 1 + 503.125 + 700.875 + + + + 1 + 454.792 + 775.25 + + + + 1 + 448.438 + 1024.62 + + + + 2 + 138.013 + -379.884 + + + + 1 + 402.5 + 705.25 + + + + 1 + 107.188 + 823.375 + + + + 1 + 1238.12 + 687.75 + + + + 2 + 253.75 + 766.5 + + + + 1 + 111.763 + -379.884 + + + + 1 + 872.812 + 1037.75 + + + + 2 + 457.917 + 862.75 + + + + 1 + 1284.06 + 652.75 + + + + 1 + 111.768 + -379.882 + + + + 2 + 110.833 + 858.375 + + + + 2 + 918.75 + 840.875 + + + + 2 + 667.188 + 630.875 + + + + 2 + 138.018 + -379.882 + + + + 2 + 387.917 + 928.375 + + + + 1 + 201.25 + 924 + + + + 2 + 698.542 + 92.75 + + + + 2 + 424.375 + 687.75 + + + + 1 + 111.749 + -379.874 + + + + 4 + 382.812 + 1094.62 + + + + 1 + 667.188 + 644 + + + + 2 + 472.5 + 171.5 + + + + 2 + 249.375 + 206.5 + + + + 2 + 138.013 + -379.879 + + + + 2 + 395.938 + 1090.25 + + + + 1 + 535.938 + 574 + + + + 2 + 110.833 + 823.375 + + + + 1 + 420 + 679 + + + + 2 + 138.003 + -379.88 + + + + 2 + 150.938 + 915.25 + + + + 1 + 1238.12 + 683.375 + + + + 1 + 938.438 + 582.75 + + + + 1 + 875 + 1011.5 + + + + 1 + 111.76 + -379.883 + + + + 3 + 146.562 + 893.375 + + + + 2 + 938.438 + 569.625 + + + + 2 + 1238.12 + 670.25 + + + + 2 + 468.125 + 66.5 + + + + 2 + 137.998 + -379.866 + + + + 1 + 553.438 + 44.625 + + + + 2 + 448.438 + 1011.5 + + + + 2 + 1006.25 + 543.375 + + + + 1 + 577.5 + 731.5 + + + + 1 + 111.75 + -379.881 + + + + 3 + 382.812 + 1094.62 + + + + 2 + 125.417 + 858.375 + + + + 2 + 428.75 + 1068.38 + + + + 2 + 555.625 + 263.375 + + + + 1 + 111.751 + -379.878 + + + + 2 + 533.75 + 75.25 + + + + 1 + 1172.5 + 447.125 + + + + 2 + 936.25 + 425.25 + + + + 1 + 148.75 + 320.25 + + + + 2 + 138.016 + -379.879 + + + + 3 + 463.75 + 722.75 + + + + 2 + 1172.5 + 434 + + + + 1 + 822.5 + 1037.75 + + + + 1 + 420 + 171.5 + + + + 2 + 137.986 + -379.884 + + + + 1 + 159.688 + 805.875 + + + + 2 + 1278.96 + 486.5 + + + + 2 + 535.938 + 560.875 + + + + 2 + 463.75 + 679 + + + + 1 + 111.751 + -379.871 + + + + 4 + 146.562 + 893.375 + + + + 2 + 341.25 + 1072.75 + + + + 1 + 350 + 1002.75 + + + + 1 + 446.25 + 600.25 + + + + 2 + 138.005 + -379.868 + + + + 2 + 476.875 + 683.375 + + + + 1 + 125.417 + 845.25 + + + + 1 + 488.25 + 127.75 + + + + 2 + 551.25 + 154 + + + + 2 + 137.998 + -379.867 + + + + 2 + 1121.46 + 622.125 + + + + 1 + 446.25 + 692.125 + + + + 2 + 193.958 + 910.875 + + + + 2 + 192.5 + 320.25 + + + + 1 + 111.767 + -379.884 + + + + 1 + 1223.54 + 700.875 + + + + 2 + 201.25 + 910.875 + + + + 2 + 1081.5 + 521.5 + + + + 2 + 336.875 + 508.375 + + + + 2 + 138.01 + -379.883 + + + + 2 + 1227.19 + 670.25 + + + + 1 + 476.875 + 62.125 + + + + 1 + 1081.5 + 534.625 + + + + 1 + 380.625 + 687.75 + + + + 1 + 111.767 + -379.879 + + + + 2 + 759.062 + 149.625 + + + + 2 + 752.5 + 280.875 + + + + 1 + 358.75 + 245.875 + + + + 1 + 111.757 + -379.87 + + + + 1 + 150.938 + 915.25 + + + + 1 + 249.375 + 219.625 + + + + 2 + 490 + 600.25 + + + + 2 + 137.997 + -379.88 + + + + 1 + 1275.31 + 451.5 + + + + 2 + 350 + 989.625 + + + + 1 + 511.875 + 263.375 + + + + 2 + 137.999 + -379.862 + + + + 4 + 463.75 + 722.75 + + + + 2 + 488.25 + 114.625 + + + + 2 + 516.25 + 683.375 + + + + 2 + 138.007 + -379.87 + + + + 1 + 1117.81 + 569.625 + + + + 1 + 698.542 + 79.625 + + + + 2 + 918.75 + 1011.5 + + + + 2 + 796.25 + 504 + + + + 1 + 111.749 + -379.862 + + + + 1 + 1105.42 + 757.75 + + + + 1 + 507.5 + 154 + + + + 2 + 159.688 + 792.75 + + + + 1 + 223.125 + 232.75 + + + + 1 + 111.76 + -379.883 + + + + 1 + 476.875 + 683.375 + + + + 1 + 424.375 + 66.5 + + + + 1 + 348.542 + 1059.62 + + + + 1 + 546.875 + 578.375 + + + + 1 + 762.708 + 180.25 + + + + 2 + 138.01 + -379.883 + + + + 1 + 463.75 + 683.375 + + + + 2 + 348.542 + 1072.75 + + + + 1 + 603.75 + 578.375 + + + + 2 + 1133.12 + 727.125 + + + + 1 + 111.76 + -379.884 + + + + 1 + 253.75 + 779.625 + + + + 2 + 621.25 + 731.5 + + + + 2 + 446.25 + 679 + + + + 2 + 137.991 + -379.88 + + + + 1 + 1188.54 + 718.375 + + + + 2 + 402.5 + 245.875 + + + + 1 + 382.083 + 805.875 + + + + 1 + 446.25 + 79.625 + + + + 2 + 138.01 + -379.884 + + + + 2 + 1205.31 + 700.875 + + + + 1 + 398.125 + 92.75 + + + + 2 + 1284.06 + 639.625 + + + + 2 + 137.999 + -379.874 + + + + 1 + 683.958 + 92.75 + + + + 1 + 110.833 + 810.25 + + + + 2 + 441.875 + 92.75 + + + + 1 + 111.741 + -379.88 + + + + 3 + 1098.12 + 460.25 + + + + 1 + 118.125 + 871.5 + + + + 1 + 341.25 + 1085.88 + + + + 1 + 1106.88 + 412.125 + + + + 1 + 111.747 + -379.88 + + + + 1 + 293.125 + 508.375 + + + + 1 + 193.958 + 897.75 + + + + 4 + 1098.12 + 460.25 + + + + 2 + 956.667 + 919.625 + + + + 2 + 382.083 + 819 + + + + 1 + 651.875 + 875.875 + + + + 1 + 441.875 + 259 + + + + 2 + 167.708 + 280.875 + + + + 2 + 272.708 + 884.625 + + + + 2 + 695.625 + 875.875 + + + + 1 + 354.367 + 775.25 + + + + 1 + 889.583 + 998.375 + + + + 1 + 1286.25 + 499.625 + + + + 2 + 555.625 + 202.125 + + + + 2 + 328.133 + 775.25 + + + + 1 + 328.125 + 1055.25 + + + + 2 + 1128.75 + 622.125 + + + + 1 + 520.625 + 477.75 + + + + 3 + 360.938 + 1094.62 + + + + 1 + 1192.19 + 731.5 + + + + 1 + 261.042 + 451.5 + + + + 2 + 564.375 + 477.75 + + + + 4 + 360.938 + 1094.62 + + + + 2 + 161.875 + 915.25 + + + + 1 + 931.875 + 854 + + + + 1 + 455 + 770.875 + + + + 1 + 616.875 + 57.75 + + + + 1 + 697.812 + 425.25 + + + + 1 + 546.875 + 62.125 + + + + 1 + 170.625 + 245.875 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 1128.75 + 635.25 + + + + 2 + 546.875 + 75.25 + + + + 2 + 214.375 + 245.875 + + + + 2 + 441.875 + 259 + + + + 1 + 180.833 + 766.5 + + + + 1 + 732.812 + 355.25 + + + + 2 + 1085 + 521.5 + + + + 1 + 659.167 + 53.375 + + + + 2 + 746.667 + 731.5 + + + + 3 + 433.125 + 171.5 + + + + 1 + 313.542 + 762.125 + + + + 1 + 651.875 + 705.25 + + + + 1 + 1245.42 + 670.25 + + + + 1 + 763.438 + 294 + + + + 1 + 972.708 + 770.875 + + + + 2 + 644.583 + 66.5 + + + + 1 + 310.625 + 228.375 + + + + 2 + 118.125 + 858.375 + + + + 1 + 1253.44 + 425.25 + + + + 1 + 167.708 + 267.75 + + + + 1 + 511.875 + 202.125 + + + + 2 + 169.167 + 915.25 + + + + 1 + 352.188 + 1072.75 + + + + 2 + 850.938 + 591.5 + + + + 1 + 520.625 + 44.625 + + + + 2 + 313.542 + 775.25 + + + + 1 + 1013.54 + 543.375 + + + + 1 + 395.208 + 674.625 + + + + 2 + 564.375 + 44.625 + + + + 2 + 763.438 + 280.875 + + + + 2 + 1262.19 + 639.625 + + + + 2 + 972.708 + 784 + + + + 2 + 730.625 + 932.75 + + + + 1 + 1301.56 + 617.75 + + + + 2 + 1143.33 + 674.625 + + + + 2 + 854.583 + 1020.25 + + + + 1 + 169.167 + 928.375 + + + + 2 + 455 + 259 + + + + 4 + 433.125 + 171.5 + + + + 2 + 732.812 + 342.125 + + + + 1 + 161.875 + 902.125 + + + + 2 + 844.375 + 1020.25 + + + + 1 + 1098.12 + 460.25 + + + + 2 + 651.875 + 692.125 + + + + 1 + 249.375 + 753.375 + + + + 1 + 686.875 + 932.75 + + + + 1 + 417.812 + 1068.38 + + + + 2 + 395.208 + 687.75 + + + + 2 + 249.375 + 766.5 + + + + 1 + 1076.25 + 757.75 + + + + 2 + 414.167 + 1090.25 + + + + 1 + 1157.92 + 661.5 + + + + 1 + 774.375 + 504 + + + + 2 + 1060.5 + 521.5 + + + + 2 + 1157.92 + 674.625 + + + + 1 + 231.875 + 206.5 + + + + 2 + 352.188 + 1072.75 + + + + 2 + 697.812 + 412.125 + + + + 1 + 844.375 + 460.25 + + + + 1 + 1139.69 + 622.125 + + + + 2 + 1286.25 + 486.5 + + + + 2 + 354.375 + 228.375 + + + + 1 + 541.042 + 189 + + + + 2 + 1257.08 + 451.5 + + + + 1 + 272.708 + 871.5 + + + + 1 + 630 + 66.5 + + + + 2 + 662.812 + 66.5 + + + + 2 + 1192.19 + 718.375 + + + + 2 + 888.125 + 460.25 + + + + 2 + 541.042 + 202.125 + + + + 2 + 1301.56 + 604.625 + + + + 2 + 411.25 + 556.5 + + + + 2 + 889.583 + 1011.5 + + + + 2 + 180.833 + 779.625 + + + + 2 + 503.125 + 447.125 + + + + 2 + 328.125 + 1042.12 + + + + 2 + 659.167 + 66.5 + + + + 2 + 196.875 + 368.375 + + + + 2 + 400.312 + 819 + + + + 1 + 142.917 + 880.25 + + + + 1 + 927.5 + 959 + + + + 2 + 931.875 + 840.875 + + + + 2 + 195.417 + 779.625 + + + + 2 + 142.917 + 893.375 + + + + 2 + 476.875 + 722.75 + + + + 1 + 182.292 + 355.25 + + + + 1 + 934.792 + 569.625 + + + + 1 + 832.708 + 578.375 + + + + 1 + 424.375 + 722.75 + + + + 1 + 691.25 + 105.875 + + + + 2 + 129.062 + 858.375 + + + + 2 + 832.708 + 591.5 + + + + 1 + 494.375 + 547.75 + + + + 1 + 854.583 + 1007.12 + + + + 1 + 128.333 + 893.375 + + + + 1 + 1159.38 + 740.25 + + + + 2 + 660.625 + 595.875 + + + + 2 + 691.25 + 92.75 + + + + 1 + 934.792 + 989.625 + + + + 1 + 320.833 + 845.25 + + + + 2 + 568.75 + 705.25 + + + + 1 + 956.667 + 906.5 + + + + 2 + 938.438 + 959 + + + + 2 + 399.583 + 1090.25 + + + + 1 + 455 + 49 + + + + 1 + 400.312 + 832.125 + + + + 2 + 290.938 + 884.625 + + + + 1 + 616.875 + 810.25 + + + + 1 + 500.5 + 127.75 + + + + 1 + 461.562 + 875.875 + + + + 2 + 660.625 + 810.25 + + + + 1 + 1284.06 + 565.25 + + + + 1 + 850.938 + 604.625 + + + + 2 + 805 + 1011.5 + + + + 1 + 998.958 + 530.25 + + + + 2 + 1297.92 + 604.625 + + + + 2 + 182.292 + 368.375 + + + + 1 + 360.938 + 1002.75 + + + + 1 + 616.875 + 595.875 + + + + 1 + 236.25 + 766.5 + + + + 2 + 500.5 + 114.625 + + + + 2 + 373.333 + 928.375 + + + + 1 + 525 + 705.25 + + + + 1 + 729.167 + 342.125 + + + + 1 + 746.667 + 718.375 + + + + 2 + 439.688 + 1068.38 + + + + 1 + 231.875 + 464.625 + + + + 2 + 261.042 + 464.625 + + + + 1 + 451.468 + 773.465 + + + + 2 + 461.562 + 862.75 + + + + 2 + 555.625 + 329 + + + + 1 + 385 + 569.625 + + + + 1 + 369.688 + 928.375 + + + + 1 + 306.25 + 788.375 + + + + 2 + 971.25 + 959 + + + + 2 + 315 + 508.375 + + + + 2 + 741.562 + 280.875 + + + + 2 + 748.125 + 149.625 + + + + 2 + 560 + 399 + + + + 1 + 1264.38 + 464.625 + + + + 2 + 333.958 + 1072.75 + + + + 1 + 290.938 + 897.75 + + + + 1 + 800.625 + 1020.25 + + + + 1 + 1284.06 + 525.875 + + + + 1 + 761.25 + 1011.5 + + + + 1 + 1249.06 + 683.375 + + + + 2 + 1280.42 + 639.625 + + + + 1 + 511.875 + 329 + + + + 2 + 360.938 + 989.625 + + + + 2 + 396.667 + 819 + + + + 2 + 315 + 219.625 + + + + 1 + 379.167 + 1107.75 + + + + 1 + 450.627 + 771.118 + + + + 2 + 739.375 + 547.75 + + + + 2 + 379.167 + 1094.62 + + + + 2 + 383.542 + 775.25 + + + + 2 + 387.917 + 245.875 + + + + 1 + 498.75 + 114.625 + + + + 2 + 1302.29 + 525.875 + + + + 2 + 457.78 + 767.49 + + + + 2 + 649.688 + 595.875 + + + + 1 + 402.5 + 259 + + + + 1 + 368.958 + 762.125 + + + + 2 + 995.312 + 543.375 + + + + 2 + 936.25 + 880.25 + + + + 1 + 516.25 + 399 + + + + 2 + 998.958 + 543.375 + + + + 1 + 1216.25 + 420.875 + + + + 2 + 539.583 + 705.25 + + + + 2 + 538.125 + 547.75 + + + + 2 + 233.333 + 893.375 + + + + 2 + 1235.21 + 425.25 + + + + 2 + 428.75 + 259 + + + + 1 + 905.625 + 989.625 + + + + 2 + 573.125 + 75.25 + + + + 2 + 943.542 + 880.25 + + + + 2 + 1249.06 + 670.25 + + + + 1 + 463.75 + 722.75 + + + + 2 + 542.5 + 114.625 + + + + 1 + 936.25 + 893.375 + + + + 1 + 399.583 + 1077.12 + + + + 2 + 1287.71 + 565.25 + + + + 1 + 914.375 + 425.25 + + + + 1 + 748.125 + 989.625 + + + + 1 + 1302.29 + 512.75 + + + + 2 + 454.603 + 766.513 + + + + 1 + 358.75 + 556.5 + + + + 1 + 807.188 + 517.125 + + + + 1 + 439.688 + 1081.5 + + + + 1 + 269.062 + 884.625 + + + + 2 + 1120 + 757.75 + + + + 2 + 807.188 + 504 + + + + 2 + 1159.38 + 727.125 + + + + 2 + 247.917 + 893.375 + + + + 2 + 498.75 + 49 + + + + 1 + 380.625 + 259 + + + + 1 + 373.333 + 915.25 + + + + 1 + 509.688 + 114.625 + + + + 1 + 153.125 + 368.375 + + + + 1 + 428.75 + 245.875 + + + + 2 + 368.958 + 775.25 + + + + 2 + 533.75 + 75.25 + + + + 2 + 818.125 + 504 + + + + 2 + 385 + 556.5 + + + + 2 + 320.833 + 858.375 + + + + 1 + 557.82 + 644.584 + + + + 2 + 770 + 976.5 + + + + 2 + 380.625 + 245.875 + + + + 1 + 233.333 + 880.25 + + + + 2 + 592.812 + 565.25 + + + + 2 + 673.75 + 66.5 + + + + 1 + 315 + 521.5 + + + + 1 + 748.125 + 162.75 + + + + 1 + 459.375 + 447.125 + + + + 1 + 872.812 + 1033.38 + + + + 2 + 212.917 + 416.5 + + + + 2 + 958.125 + 425.25 + + + + 2 + 658.438 + 486.5 + + + + 1 + 212.917 + 403.375 + + + + 2 + 949.375 + 989.625 + + + + 1 + 554.167 + 547.75 + + + + 1 + 526.458 + 744.625 + + + + 1 + 726.25 + 976.5 + + + + 2 + 606.667 + 731.5 + + + + 2 + 526.458 + 757.75 + + + + 1 + 271.25 + 219.625 + + + + 1 + 488.542 + 819 + + + + 1 + 788.958 + 490.875 + + + + 1 + 520.625 + 75.25 + + + + 1 + 755.417 + 963.375 + + + + 2 + 320.833 + 1042.12 + + + + 2 + 275.625 + 464.625 + + + + 1 + 716.042 + 919.625 + + + + 1 + 695.625 + 547.75 + + + + 1 + 549.792 + 31.5 + + + + 2 + 275.625 + 206.5 + + + + 2 + 554.167 + 560.875 + + + + 1 + 1015 + 766.5 + + + + 1 + 640.208 + 473.375 + + + + 2 + 1058.75 + 766.5 + + + + 2 + 710.208 + 547.75 + + + + 2 + 549.792 + 44.625 + + + + 2 + 716.042 + 932.75 + + + + 2 + 418.542 + 718.375 + + + + 1 + 511.875 + 757.75 + + + + 2 + 640.208 + 486.5 + + + + 1 + 253.75 + 477.75 + + + + 2 + 791.875 + 180.25 + + + + 2 + 417.812 + 1090.25 + + + + 1 + 135.625 + 906.5 + + + + 2 + 472.5 + 350.875 + + + + 1 + 320.833 + 1029 + + + + 2 + 450.625 + 722.75 + + + + 2 + 555.625 + 757.75 + + + + 1 + 763.438 + 626.5 + + + + 2 + 646.042 + 810.25 + + + + 1 + 402.5 + 127.75 + + + + 2 + 523.542 + 547.75 + + + + 1 + 606.667 + 718.375 + + + + 1 + 1264.38 + 486.5 + + + + 1 + 523.542 + 534.625 + + + + 1 + 710.208 + 534.625 + + + + 1 + 428.75 + 350.875 + + + + 1 + 163.333 + 307.125 + + + + 1 + 748.125 + 180.25 + + + + 1 + 387.917 + 232.75 + + + + 2 + 774.375 + 280.875 + + + + 1 + 542.5 + 57.75 + + + + 2 + 301.875 + 884.625 + + + + 2 + 542.5 + 44.625 + + + + 1 + 1085 + 460.25 + + + + 1 + 907.812 + 1024.62 + + + + 1 + 322.292 + 495.25 + + + + 1 + 258.125 + 884.625 + + + + 1 + 649.688 + 609 + + + + 2 + 763.438 + 613.375 + + + + 2 + 446.25 + 127.75 + + + + 2 + 907.812 + 1011.5 + + + + 1 + 342.708 + 976.5 + + + + 1 + 166.25 + 779.625 + + + + 2 + 488.542 + 805.875 + + + + 1 + 199.062 + 792.75 + + + + 2 + 129.062 + 823.375 + + + + 2 + 306.25 + 775.25 + + + + 1 + 840 + 1020.25 + + + + 1 + 943.542 + 867.125 + + + + 2 + 199.062 + 779.625 + + + + 2 + 1286.25 + 451.5 + + + + 1 + 646.042 + 797.125 + + + + 2 + 475.417 + 600.25 + + + + 1 + 700 + 342.125 + + + + 1 + 990.938 + 797.125 + + + + 2 + 651.875 + 66.5 + + + + 2 + 743.75 + 342.125 + + + + 2 + 990.938 + 784 + + + + 1 + 417.812 + 1103.38 + + + + 1 + 905.625 + 569.625 + + + + 2 + 748.125 + 976.5 + + + + 2 + 322.292 + 508.375 + + + + 2 + 949.375 + 569.625 + + + + 1 + 129.062 + 836.5 + + + + 2 + 339.062 + 858.375 + + + + 2 + 1172.5 + 727.125 + + + + 1 + 475.417 + 587.125 + + + + 1 + 527.188 + 810.25 + + + + 1 + 581.875 + 57.75 + + + + 2 + 342.708 + 989.625 + + + + 2 + 527.188 + 797.125 + + + + 2 + 625.625 + 57.75 + + + + 1 + 651.875 + 79.625 + + + + 1 + 599.375 + 70.875 + + + + 1 + 1242.5 + 451.5 + + + + 1 + 339.062 + 871.5 + + + + 2 + 755.417 + 976.5 + + + + 2 + 525 + 114.625 + + + + 1 + 251.562 + 906.5 + + + + 2 + 253.75 + 464.625 + + + + 2 + 883.75 + 1020.25 + + + + 2 + 1161.56 + 674.625 + + + + 1 + 1008.44 + 412.125 + + + + 2 + 508.958 + 797.125 + + + + 2 + 1008.44 + 399 + + + + 2 + 681.042 + 875.875 + + + + 2 + 163.333 + 320.25 + + + + 2 + 135.625 + 893.375 + + + + 1 + 549.792 + 464.625 + + + + 2 + 790.417 + 1011.5 + + + + 1 + 418.542 + 705.25 + + + + 1 + 681.042 + 862.75 + + + + 1 + 539.583 + 692.125 + + + + 2 + 549.792 + 477.75 + + + + 1 + 450.625 + 709.625 + + + + 1 + 905.625 + 779.625 + + + + 2 + 599.375 + 57.75 + + + + 1 + 391.562 + 941.5 + + + + 2 + 1264.38 + 451.5 + + + + 2 + 391.562 + 928.375 + + + + 1 + 658.438 + 499.625 + + + + 1 + 541.042 + 315.875 + + + + 1 + 728.438 + 560.875 + + + + 2 + 481.25 + 805.875 + + + + 2 + 872.812 + 1020.25 + + + + 1 + 1029.58 + 753.375 + + + + 1 + 557.812 + 718.375 + + + + 2 + 210 + 779.625 + + + + 1 + 212.188 + 924 + + + + 2 + 960.312 + 959 + + + + 2 + 212.188 + 910.875 + + + + 2 + 262.5 + 893.375 + + + + 2 + 826.875 + 766.5 + + + + 2 + 541.042 + 329 + + + + 1 + 984.375 + 543.375 + + + + 2 + 487.812 + 49 + + + + 1 + 1305.94 + 539 + + + + 2 + 1137.5 + 460.25 + + + + 1 + 1109.06 + 770.875 + + + + 2 + 788.958 + 504 + + + + 1 + 1120 + 727.125 + + + + 1 + 960.312 + 932.75 + + + + 2 + 251.562 + 893.375 + + + + 1 + 1181.25 + 420.875 + + + + 2 + 1305.94 + 525.875 + + + + 1 + 463.75 + 114.625 + + + + 1 + 1161.56 + 687.75 + + + + 2 + 1225 + 420.875 + + + + 1 + 481.25 + 792.75 + + + + 2 + 1308.12 + 486.5 + + + + 2 + 721.875 + 119 + + + + 1 + 730.625 + 280.875 + + + + 1 + 508.958 + 784 + + + + 1 + 218.75 + 893.375 + + + + 2 + 905.625 + 792.75 + + + + 1 + 424.375 + 945.875 + + + + 1 + 790.417 + 998.375 + + + + 2 + 1028.12 + 543.375 + + + + 1 + 721.875 + 132.125 + + + + 1 + 227.5 + 766.5 + + + + 2 + 1029.58 + 766.5 + + + + 2 + 468.125 + 945.875 + + + + 2 + 1017.19 + 543.375 + + + + 1 + 111.759 + -379.89 + + + + 1 + 1017.19 + 556.5 + + + + 2 + 138.009 + -379.89 + + + + 2 + 1159.38 + 434 + + + + 1 + 111.756 + -379.878 + + + + 2 + 861.875 + 1020.25 + + + + 2 + 138.013 + -379.878 + + + + 1 + 175 + 294 + + + + 2 + 137.988 + -379.888 + + + + 1 + 518.438 + 167.125 + + + + 2 + 137.987 + -379.887 + + + + 2 + 518.438 + 154 + + + + 2 + 138.006 + -379.881 + + + + 1 + 111.739 + -379.888 + + + + 1 + 111.763 + -379.878 + + + + 1 + 242.812 + 477.75 + + + + 1 + 111.757 + -379.874 + + + + 2 + 1207.5 + 420.875 + + + + 1 + 124.884 + -379.882 + + + + 1 + 369.688 + 259 + + + + 1 + 111.756 + -379.879 + + + + 2 + 369.688 + 245.875 + + + + 2 + 138.007 + -379.876 + + + + 1 + 371.875 + 569.625 + + + + 1 + 1111.25 + 473.375 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 1207.5 + 434 + + + + 1 + 1159.38 + 447.125 + + + + 1 + 415.625 + 272.125 + + + + 2 + 415.625 + 259 + + + + 1 + 533.75 + 215.25 + + + + 2 + 533.75 + 202.125 + + + + 2 + 457.188 + 600.25 + + + + 1 + 164.062 + 381.5 + + + + 1 + 282.188 + 232.75 + + + + 2 + 371.875 + 556.5 + + + + 2 + 282.188 + 219.625 + + + + 2 + 1295 + 525.875 + + + + 2 + 522.812 + 329 + + + + 2 + 164.062 + 368.375 + + + + 1 + 1295 + 539 + + + + 2 + 997.5 + 399 + + + + 1 + 638.75 + 609 + + + + 2 + 159.688 + 320.25 + + + + ab063f40-f3ec-400f-8488-7b04a098b563 + 1-MV-urban--2-sw(1) + + + + a8b0a932-6403-494e-b8df-38f83714db37 + 1-MV-urban--2-sw + + + + + 26111a19-719c-40e1-be0a-a1ee137b2198 + Grafisches Netzelement184 + + + + + aeb9f5fd-f602-7618-0197-7679c03b43d8 + Grafisches Netzelement198 + + + + + cf07c21c-3f8e-5143-9d7c-84853878a9c3 + Grafisches Netzelement161 + + + + + 469f8a82-9bc1-f7e7-70da-9e4ea1eca653 + Grafisches Netzelement183 + + + + + 0a2a751a-4636-9957-82dd-e9a6a052900b + Grafisches Netzelement199 + + + + + 27fed0db-e39d-8669-8915-bdaecbfb8ef3 + Grafisches Netzelement142 + + + + + e06ce811-7a5d-3e53-9f17-f2146cab2f47 + Grafisches Netzelement156 + + + + + bc482d13-7e23-0d1a-c49d-0f124cddf4d3 + Grafisches Netzelement175 + + + + + 4181177c-e483-645f-5dee-03dae27f825f + Grafisches Netzelement160 + + + + + 65b490ba-6d32-6d21-75aa-a33bfa6d5782 + Grafisches Netzelement177 + + + + + a967ba93-b1a0-40d0-c29b-896f2be5983b + Grafisches Netzelement150 + + + + + 351b6e43-c62a-bf02-2ab5-14bda451c03c + Grafisches Netzelement197 + + + + + d9acf335-7127-703e-5fdd-99f3aa86d644 + Grafisches Netzelement157 + + + + + 52952418-bbc9-502e-7f59-06a66d5effdb + Grafisches Netzelement179 + + + + + f9d362ed-88d5-8053-920e-59d23b41de4b + MV3.101 Bus 98 + + + + + c7d77a7c-5946-2cac-5953-15f8efcddf8f + MV3.101 Bus 92 + + + + + 9f65800e-ad15-4a8f-0758-cc1847eb508c + MV3.101 Bus 93 + + + + + b2a18259-a376-11c8-cd0e-3060c3f8f795 + MV3.101 Bus 86 + + + + + bacffe1c-be4f-6ce5-7a87-bbb9954f7617 + MV3.101 Bus 89 + + + + + cfeb4ae1-cbec-e729-0b93-7d71c6357ee0 + MV3.101 Bus 97 + + + + + ba9992c4-9b2b-2b6e-ad2f-c01f70f66199 + MV3.101 Bus 130 + + + + + d4f15a15-935f-3c58-46a9-c5545a2df205 + MV3.101 Bus 88 + + + + + 0311b751-0361-8467-642e-8340a9855616 + MV3.101_Base_Station + + + + + 70c964ee-0327-6e9d-6608-1bc86f7991c5 + MV3.101 Bus 87 + + + + + f1f168d3-e450-a714-ecf6-eaf627b6a061 + MV3.101 Bus 90 + + + + + 6feed50d-d914-243b-7171-8efd7f940ffa + HV1_MV3.101_Substation + + + + + 49f5885f-e43f-71f1-a6a1-6b92afdcf205 + MV3.101 Bus 114 + + + + + b727361d-ac27-03a1-b497-930769d1be49 + MV3.101 Bus 91 + + + + + 79a35081-43dc-818f-73a0-335f24cfeb45 + MV3.101 Bus 96 + + + + + 35600a29-383d-667f-9043-98f03a16bb3f + MV3.101 Bus 95 + + + + + 0f480935-d450-d9fb-fc49-be6d04d4d885 + MV3.101 Bus 94 + + + + + 4d59b354-7a54-01ff-bb38-9424019ed6b0 + MV3.101 Bus 133 + + + + + c5060975-e600-f479-1eb6-8635e309ec63 + MV3.101 Bus 100 + + + + + b05d7d30-a774-e6d5-ab10-f68189d982cc + MV3.101 Bus 127 + + + + + 91c33abc-03ca-9478-2f9e-551eedb002a0 + MV3.101 Bus 109 + + + + + 0223b6b3-6808-3f2e-1770-6fa229590dbf + MV3.101 Bus 111 + + + + + 5a370c51-dc0c-2faf-7a3d-f56e4bcfcb14 + MV3.101 Bus 128 + + + + + 344a6249-3d73-c175-4aa1-3af5182de0c6 + MV3.101 Bus 131 + + + + + 86fc0b77-7028-7372-fb53-234b7623950f + MV3.101 Bus 125 + + + + + 5e46dc58-5e53-c5ef-6d25-defaab3a8ed6 + MV3.101 Bus 140 + + + + + e03339f3-14e4-a4b7-f9c1-0a3527e69748 + MV3.101 Bus 142 + + + + + 31762f72-bdfd-487d-de99-526adfed7e5e + MV3.101 Bus 24 + + + + + f999dfdd-5e69-bcac-365e-e227f2c300d9 + MV3.101 Bus 16 + + + + + f7134b06-b98a-f36d-98bf-f416b5cf14ff + MV3.101 Bus 26 + + + + + 77af9066-e089-19a0-4a52-3e853dbd5613 + MV3.101 Bus 20 + + + + + 6be65a0f-e949-b2a5-09e9-4d0011e18366 + MV3.101 Bus 32 + + + + + 66a0c803-ea5e-9c8c-635f-e7100ca1ea4f + MV3.101 Bus 33 + + + + + 5847325b-a287-25ad-39d9-44ebf8ae3f50 + MV3.101 Bus 34 + + + + + 225d1727-7cf1-1459-c53b-e253a74070dc + MV3.101 Bus 49 + + + + + f3120a72-792f-3d90-d19c-1c420bbcf157 + MV3.101 Bus 50 + + + + + 9b7b19d2-e53a-b02b-71c4-043fc5f717e5 + MV3.101 Bus 39 + + + + + a840d449-645d-0b7f-ade1-f28f178cd945 + MV3.101 Bus 38 + + + + + 1c47b817-fecf-8b08-836e-0f1862643024 + MV3.101 Bus 54 + + + + + ef748f3c-31af-721d-09b4-3ad13246531b + MV3.101 Bus 102_Graph + + + + + a9badc9a-6204-1f38-ba1d-ef571b654cde + MV3.101 Bus 47 + + + + + 4575d804-09de-2afa-678f-945492febe9b + MV3.101 Bus 120_Graph + + + + + f8d3b15b-c343-4874-73b7-f018766d75fa + MV3.101 Bus 40 + + + + + 53fc0885-f419-6582-cff8-6be4a8fb61fd + MV3.101 Bus 118_Graph + + + + + 384c63e0-d9de-acef-e0e4-d16a7b095eb9 + MV3.101 Bus 55 + + + + + 827c5f97-237c-c263-61ab-7538eac1a972 + MV3.101 Bus 100_Graph + + + + + f90dbfaa-4206-2039-aac7-e609582ece6f + MV3.101 Bus 42 + + + + + 337d9a73-e821-f053-cec9-789f376e70fd + MV3.101 Bus 134_Graph + + + + + 808b7bf0-ef4d-21bb-b025-43c9e179cd61 + MV3.101 Bus 41 + + + + + a2cd2a78-225d-3a48-2b1e-8f7aaa06c6a0 + MV3.101 Bus 139_Graph + + + + + 8f63b313-31ec-daaf-fee5-a3642b523506 + MV3.101 Bus 22 + + + + + 4b9569f0-e9bc-6ccd-51c2-ad31cd0bbb8e + MV3.101 Bus 138_Graph + + + + + e283313b-49ce-1fcf-11d1-5ae4249e811c + MV3.101 Bus 27 + + + + + 78c5f594-6a0a-d9bc-efb1-829c080e559a + MV3.101 Bus 132_Graph + + + + + abb9362b-db64-a149-44cc-246d61e666e2 + MV3.101 Bus 135_Graph + + + + + 3267853e-91d4-0dc6-f598-861b068d6b53 + MV3.101 Bus 108_Graph + + + + + c2f10add-7831-7f88-1618-78a97c115e8d + MV3.101 Bus 143 + + + + + 180 + 98b5cccd-7270-ead3-95b6-18508e668fe6 + Grafisches Netzelement260 + + + + + 8a9e890b-0c4d-5545-f6b4-29e8d2751a68 + MV3.101 Bus 143_Graph + + + + + bda9e7cb-e63e-a9b5-ece7-113bcac03afc + MV3.101 Bus 112 + + + + + 3e7d08b2-f43c-9864-3a7a-f8ce161c3958 + MV3.101 Bus 21 + + + + + 34044b80-5d25-cc1b-b7c4-5d8518a54b41 + MV3.101 Bus 106 + + + + + 7e63afa9-a84f-ebea-639b-6514f8a8d643 + MV3.101 Bus 106_Graph + + + + + 9402bdf9-4a26-2672-bea2-b77928b44074 + MV3.101 Bus 51 + + + + + f0e4b4be-f9cc-ca31-0c5a-0dda78ba1c0c + MV3.101 Bus 111_Graph + + + + + 5d7ea668-37d0-308f-073d-fc81701624ba + MV3.101 Bus 103 + + + + + 8311568f-8fd4-b7bf-fe70-c154b8dc6a77 + MV3.101 Bus 48 + + + + + 7a4b8068-09aa-86ff-6a29-b6ded6dce462 + MV3.101 Bus 125_Graph + + + + + ac815d94-1dab-a712-7baa-241b7d57e6ef + MV3.101 Bus 28 + + + + + 9b28ccfa-d91f-c655-c46b-acc2c8bbfd42 + MV3.101 Bus 126_Graph + + + + + dcb24ecd-5929-8b7d-6067-bb5b3b7fc92d + MV3.101 Bus 30 + + + + + 566baf18-ed22-2aec-bcb8-0b87f018abaa + MV3.101 Bus 122 + + + + + 0b03269a-408e-0244-a9d1-29db53c6ba59 + MV3.101 Bus 115_Graph + + + + + 1f70277a-320a-4138-3154-dc9aafda05df + MV3.101 Bus 74 + + + + + 75826f14-0dbe-eec2-a3d9-51b4f377aed0 + MV3.101 Bus 126 + + + + + 536433e5-6363-0925-a7d7-f91d00f77591 + MV3.101 Bus 60 + + + + + b473f167-fd49-8a8a-6691-f6e5ca7f63f2 + MV3.101 Bus 118 + + + + + e90303ea-f91d-8f08-de9c-453e30edcd11 + MV3.101 Bus 85 + + + + + 3cfc769f-cfa4-adf9-3838-f0bd27247bd4 + MV3.101 Bus 113 + + + + + b8cefe72-e57b-cd59-8e51-796d866ecdc9 + MV3.101 Bus 104 + + + + + f2316bb5-8bd8-81fc-6deb-e23e5aae7b33 + MV3.101 Bus 58 + + + + + bacc99d9-cf09-f50e-ba33-abb0a4fa10a9 + MV3.101 Bus 140_Graph + + + + + 491c2334-ba93-46ad-9b03-2aad63acf4f2 + MV3.101 Bus 101 + + + + + 5c013df1-4de2-6970-2d65-e1a85c3702d3 + MV3.101 Bus 70 + + + + + b1612711-b789-020a-42fc-05c5f745e38a + MV3.101 Bus 104_Graph + + + + + 1b530302-ac88-165e-1ae4-2bb0bd6018ee + MV3.101 Bus 102 + + + + + 64729074-c7a9-a5fb-a043-61fd12ad6c41 + MV3.101 Bus 84 + + + + + ddf11b20-97ed-563d-2add-1e8ece3426ac + MV3.101 Bus 120 + + + + + 451c20a9-ae8e-c3c2-c080-d872557615ab + MV3.101 Bus 79 + + + + + 296cd807-e1e6-6783-1658-3cff5d2f0ada + MV3.101 Bus 137 + + + + + eeeaae5e-dc0f-db62-a421-a37be3dda0b3 + Grafisches Netzelement195 + + + + + 99a12654-4763-27f3-612e-e33c3c0f9569 + MV3.101 Bus 59 + + + + + 75564fea-26aa-7f6b-5d00-23eb623a2532 + MV3.101 Bus 135 + + + + + 299548f3-bbe4-dca1-e8d5-4b72fbca3c0f + Grafisches Netzelement143 + + + + + f769d9a6-e839-51cd-0e30-890954c4d0d5 + MV3.101 Bus 75 + + + + + 0b13a633-94f8-ea25-c2b4-59483d7581a0 + MV3.101 Bus 116 + + + + + 495bb9bf-6de0-694a-0ff9-b0c8c05c4c99 + MV3.101 Bus 66 + + + + + e62d6f89-4f56-27b8-0234-0481f7c4d276 + Grafisches Netzelement155 + + + + + 2291343e-0918-d4f8-365d-00c29e0f282b + MV3.101 Bus 136 + + + + + ff7d16f9-e419-0112-c701-1a503d1f5ccb + MV3.101 Bus 69 + + + + + 8d830770-23d1-a013-3420-836f963433d2 + MV3.101 Bus 107 + + + + + 0bf7abbb-f90e-8c19-5ff8-1603ecee0787 + Grafisches Netzelement263 + + + + + 510bbca2-2a1b-8297-29cd-368d061096ed + MV3.101 Bus 71 + + + + + 77e7ba48-f7e6-b0eb-c10d-f96810d3f0ab + MV3.101 Bus 119 + + + + + dab413d9-6668-e809-6158-ac1906a1e40a + Grafisches Netzelement269 + + + + + 2b661050-a9d8-5718-1a21-6e6c5af8d8b8 + MV3.101 Bus 77 + + + + + 655d8fbc-1698-c4a8-c006-1163eeffee67 + Grafisches Netzelement265 + + + + + 9b14358a-1407-1eeb-4caa-b70e613cf449 + MV3.101 Bus 121 + + + + + 505131b0-4f2f-37c1-3df4-12c63283459b + MV3.101 Bus 76 + + + + + bd687e6e-c563-8ec3-4fc6-d54ca9ed141a + Grafisches Netzelement273 + + + + + 2ad597f1-218f-b986-b142-c7585d359a09 + MV3.101 Bus 129 + + + + + 9d9e41f0-a609-1e30-a740-1db9bfea2866 + MV3.101 Bus 64 + + + + + 751b2492-ef99-d46c-1f21-d0015019cf95 + MV3.101 Bus 124 + + + + + 093f39b9-f8aa-2a97-de47-81fa9a0e0d13 + Grafisches Netzelement264 + + + + + 2cab2d62-aeef-d607-c62b-6eb2b5851c43 + MV3.101 Bus 62 + + + + + 04098dbe-e836-a736-4b7e-b6c99ffb492d + Grafisches Netzelement148 + + + + + 2d7f70bd-d8a9-c76a-9022-3ef1ba2aa132 + MV3.101 Bus 99 + + + + + 7d05df38-6e9e-f04a-c497-94361b593e4b + MV3.101 Bus 67 + + + + + f21395c8-32a4-d121-9cf0-48e2ebac79ac + Grafisches Netzelement190 + + + + + 04368e4c-c433-ba17-a21a-2b263edb7b1e + MV3.101 Bus 141 + + + + + 90f0fb83-cbfa-b464-37cb-6e7716e17462 + Grafisches Netzelement628 + + + + + 6af68c48-b7a6-d33f-0ab2-18a1c9ab23f3 + MV3.101 Bus 61 + + + + + cb6a7d3a-ed48-4ae0-ed61-3c1ad884a0a6 + Grafisches Netzelement154 + + + + + 3bd7ab40-3dfa-9842-e3d7-4480ebca13f8 + MV3.101 Bus 105 + + + + + 237f6244-4cb2-33b9-c6fc-32f1c6222daf + MV3.101 Bus 82 + + + + + 6958da76-31f3-b265-dee2-614bda091243 + Grafisches Netzelement639 + + + + + 0d2336df-89c8-6674-feed-3732c7222d0a + Grafisches Netzelement233 + + + + + 16dcab2c-2b8d-061b-0515-0761437456dd + MV3.101 Bus 63 + + + + + 77965e12-7fbc-5519-3695-cc0a8d3d00df + Grafisches Netzelement647 + + + + + 39cc1e3b-bc87-2363-9f07-c348c811f85d + Grafisches Netzelement180 + + + + + a0412404-3b91-e8a6-b47c-d89ae85dcd98 + MV3.101 Bus 81 + + + + + 7d6f0371-05d2-3be1-210e-291ea1b5d30b + Grafisches Netzelement650 + + + + + c80ad40e-60d1-003b-860f-25f9b984ae9f + Grafisches Netzelement243 + + + + + 6570f659-056b-1c07-827f-7bc0438f6ee7 + MV3.101 Bus 139 + + + + + 81baeccd-fb5b-12cc-2639-ff830b87ec49 + Grafisches Netzelement686 + + + + + 6b302d3d-3465-32ce-2f72-158f131da820 + Grafisches Netzelement222 + + + + + 8b4b8452-a43c-b9b6-5bab-148186143966 + MV3.101 Bus 134 + + + + + 248a453e-beae-6bdb-2785-17a5509297d3 + Grafisches Netzelement671 + + + + + 438ed6b7-ff8e-b941-ce16-7e8d8baa83d0 + Grafisches Netzelement231 + + + + + bf987bb9-fb7d-8127-a585-b593e5fa83d8 + MV3.101 Bus 78 + + + + + 5a19bca7-2933-9d9a-04e1-7d2be5c0c72b + MV3.101 Bus 123 + + + + + 5718c4b0-ecaa-1029-829f-a0a8cde2c028 + Grafisches Netzelement631 + + + + + c7c9e614-466b-3382-d7cc-9a39f16607de + Grafisches Netzelement226 + + + + + 3b694924-8e6e-9bcc-a16c-22db51397621 + MV3.101 Bus 80 + + + + + 30b5455c-061b-a730-d4a8-d38ea43dcd55 + MV3.101 Bus 110 + + + + + 98118a77-eb2d-f86e-39e1-a3a6f8a41348 + Grafisches Netzelement669 + + + + + 141367ed-407d-1bc5-3d84-cbc557c3381e + Grafisches Netzelement256 + + + + + a5ad1214-e804-306d-b6c7-8132968a3761 + MV3.101 Bus 83 + + + + + bc0177eb-7bda-3268-1173-579764d2c9ca + MV3.101 Bus 115 + + + + + cc5ecece-8094-e08b-4273-202f273a6d81 + Grafisches Netzelement511 + + + + + a299319f-82f1-fab8-80fa-f46c88f6edc3 + Grafisches Netzelement189 + + + + + c116c016-d068-68ed-f5ff-bc744a6b1ac5 + MV3.101 Bus 65 + + + + + c8da12d5-d0f9-a477-51d0-3a95f3cf3173 + MV3.101 Bus 57 + + + + + 58111bf7-e5d6-6c46-184b-e6973849e74b + Grafisches Netzelement675 + + + + + 522ad6ab-37ac-739c-6fac-74a28b415464 + Grafisches Netzelement227 + + + + + 03e2a738-6b0b-c3f2-277e-14e773d32fb0 + MV3.101 Bus 68 + + + + + 2f9929ce-e091-0771-b1b2-4c4735dc59f5 + MV3.101 Bus 11 + + + + + 3ce3607c-7f95-0e20-871c-ff6625d750bf + Grafisches Netzelement648 + + + + + 836b1cf4-0617-4593-82bc-e4afeffe4922 + Grafisches Netzelement252 + + + + + d59f3e40-991b-a0db-7c93-4252e4d5d8ef + Grafisches Netzelement267 + + + + + fb063c03-500d-c000-5e95-042e4196bd29 + MV3.101 Bus 29 + + + + + bf8d9906-222e-9eaa-9625-da7f6e2d588e + Grafisches Netzelement223 + + + + + 180 + 63ea48dc-dc5a-b6b5-e7ea-c66c69a20506 + Grafisches Netzelement673 + + + + + a2fe6ed0-8a0c-2692-de77-7b812fd02c91 + MV3.101 Bus 96_Graph + + + + + e828ff16-afb3-0be7-62fa-edc9a2b2b257 + MV3.101 Bus 138 + + + + + ba176128-91e4-985f-6f9a-710aaba495f0 + Grafisches Netzelement228 + + + + + 4660f331-2e84-8723-faab-9dc546062516 + Grafisches Netzelement672 + + + + + 5ca782a7-04bb-3708-9f30-3005520ce145 + Grafisches Netzelement270 + + + + + 45718fd3-edf1-c310-153f-2dd18cb1f6e7 + MV3.101 Bus 56 + + + + + 3d1ff8c3-3e5f-54af-13c7-76c8e48dfd74 + Grafisches Netzelement244 + + + + + 019f99d1-9d75-e7fd-4adb-db87e684ca66 + Grafisches Netzelement536 + + + + + 0b33e47b-2712-df44-165d-986e4f9f6ff1 + MV3.101 Bus 92_Graph + + + + + 5094369e-88bb-497a-dd6b-53e08371364a + MV3.101 Bus 43 + + + + + f2ddb85b-d1a1-0558-5409-7435e9257565 + Grafisches Netzelement249 + + + + + 731d08c9-0e93-a288-7248-3ce515746bd9 + Grafisches Netzelement489 + + + + + 0294e2b7-334a-2fad-0230-3a8b5f4c723a + MV3.101 Bus 97_Graph + + + + + 17636d7a-cb42-3bfe-27fd-8b2995a07a66 + MV3.101 Bus 108 + + + + + fe0f2719-be6e-f942-9efe-216eb99254cb + Grafisches Netzelement207 + + + + + 8b300875-8d9a-7d56-92a3-7cc8b22422fe + MV3.101 Bus 72 + + + + + 180 + e0465254-ee85-5ebb-f00e-5b902734fe8e + Grafisches Netzelement658 + + + + + 49e961fe-a808-c247-e7bb-54e993961e35 + MV3.101 Bus 117 + + + + + 6ffc46b8-e7c3-55cf-2ca0-af70322a30e4 + Grafisches Netzelement255 + + + + + 3aa70dbb-a8a0-3e3d-2819-c171e8f75b78 + Grafisches Netzelement268 + + + + + becf21fd-0514-4708-bd3f-21b04c360a24 + MV3.101 Bus 132 + + + + + d8bc79be-3750-49dc-76d3-bfc1faf71bcf + Grafisches Netzelement681 + + + + + 0f92b429-b55c-2338-6aac-cff45fb4ddb3 + Grafisches Netzelement203 + + + + + 92b53559-1691-2c5e-6839-22354f7bd4bf + MV3.101 Bus 14 + + + + + c0fde7ba-31ca-9448-4df3-268da5357486 + MV3.101 Bus 98_Graph + + + + + 180 + 43037352-6373-4133-de24-c3fa7fafa111 + Grafisches Netzelement509 + + + + + 3753da32-462c-a8a2-5d3e-a85aa8b656f3 + Grafisches Netzelement224 + + + + + c49b3b13-fc09-73b1-1c7d-d5d1f9d2bbc5 + MV3.101 Bus 53 + + + + + 7680f98f-cad2-4f45-0532-bc001ec38cda + MV3.101 Bus 94_Graph + + + + + 9ab38a0f-6c3b-e8d5-2a3c-57fab67b093e + Grafisches Netzelement627 + + + + + 22c07c24-242f-9a5a-139a-c67678be640e + Grafisches Netzelement225 + + + + + ef2fc0c6-15fc-da86-fdd2-040305ccacb1 + MV3.101 Bus 17 + + + + + d2ff9788-e5b0-f907-1c3e-f0b94e6f74c3 + Grafisches Netzelement266 + + + + + b2f31f3e-6bcc-ecb6-e592-65a138f99744 + Grafisches Netzelement684 + + + + + fdcea267-8008-bd87-d021-47d400d47898 + Grafisches Netzelement214 + + + + + d750f5fb-21f8-daea-1d01-bb3c7393f8ef + MV3.101 Bus 45 + + + + + 8d26f401-d45e-8990-4246-6cb82cdf5677 + MV3.101 Bus 87_Graph + + + + + 137772b0-815d-4395-0d9d-04a0dd75a00b + Grafisches Netzelement653 + + + + + 54989a27-d522-8bf5-795b-023828434c43 + Grafisches Netzelement245 + + + + + 3754b845-aef9-c6b5-8924-293f724310f7 + MV3.101 Bus 44 + + + + + 0760f6e9-f68f-299c-1581-a1af91b933f7 + MV3.101 Bus 73 + + + + + 8553065b-fd9b-38c2-55a8-7fe3d6eabd35 + Grafisches Netzelement543 + + + + + 1c46b664-6365-6030-7725-29ef816f2fe6 + Grafisches Netzelement253 + + + + + 264b2641-a209-0117-4105-9fb8a0e85007 + MV3.101 Bus 12 + + + + + c9e897c3-507f-e8e1-f78e-930ed1a38e91 + Grafisches Netzelement271 + + + + + 424ba598-8a1b-433f-cced-84c0c20f28d4 + Grafisches Netzelement505 + + + + + b6d4eac7-8bf2-1edc-f70f-3b1c33c146c9 + Grafisches Netzelement250 + + + + + 8fcb3cdd-fd6f-9754-1f6c-e17b4c10f2b3 + MV3.101 Bus 37 + + + + + d3872e67-d97a-f22d-3ef7-537840e7012f + MV3.101 Bus 86_Graph + + + + + 180 + 8877a6f6-ae86-35a4-2242-643cd40004da + Grafisches Netzelement524 + + + + + 148aba49-3a1c-cc4c-ab74-fb060dcc933f + Grafisches Netzelement208 + + + + + 02b907bc-e000-fc97-69fa-c0b73aa9b745 + MV3.101 Bus 36 + + + + + 1d02e29a-54ab-c029-fcfa-f388e56d7165 + MV3.101 Bus 90_Graph + + + + + 001c22a1-1e2e-08ec-facd-7a0a8d0bbb08 + Grafisches Netzelement508 + + + + + 9b69aed0-1d61-34b1-8610-d8dbd1e13c70 + Grafisches Netzelement206 + + + + + 9e7d301e-d6c3-68a7-1701-ba93b55c3f98 + MV3.101 Bus 31 + + + + + 37d2481f-e5e6-6247-4238-c9bacf2700e7 + MV3.101 Bus 91_Graph + + + + + 13fb8c7c-9966-96aa-9f56-54818368359c + Grafisches Netzelement493 + + + + + 092edb43-b86a-e7b7-fcd9-87add8dbe1b1 + Grafisches Netzelement216 + + + + + 8a5f914a-6fd3-1c59-d183-5eca8ee81c7a + MV3.101 Bus 95_Graph + + + + + c40afc2e-dc34-dccf-1df8-f17dc632f3d9 + MV3.101 Bus 15 + + + + + 33f97ab0-9038-2530-d807-2002d2d0839d + Grafisches Netzelement232 + + + + + 180 + 6c3a960a-66c0-55b8-6c00-9debcc17a025 + Grafisches Netzelement545 + + + + + 735e19a0-bd66-7e9b-56fe-1453696d5efa + MV3.101 Bus 89_Graph + + + + + 91f5d4e1-655e-4a72-12b3-565682ccd63f + MV3.101 Bus 25 + + + + + 62a11df0-d1d1-eac0-9bce-9b2a108471dc + Grafisches Netzelement209 + + + + + 180 + 4e06601f-b9c9-2540-b6e3-1205f56fea17 + Grafisches Netzelement544 + + + + + 9f653e8f-71c3-e8a7-92ab-237e176898d0 + Grafisches Netzelement679 + + + + + c0330605-c70b-2de5-358c-fc42f2080f36 + MV3.101 Bus 19 + + + + + 96f77337-a19f-537d-4683-e48f9c10dbd4 + Grafisches Netzelement230 + + + + + 180 + bf27093b-f8f9-d1eb-2c24-a88df768c005 + Grafisches Netzelement487 + + + + + 1284cfe3-0202-5dbc-8355-b3ca79fc52fa + Grafisches Netzelement257 + + + + + fc5b4e58-3e60-34b6-d595-c01b1df5ce98 + MV3.101 Bus 46 + + + + + abe826cc-8fa9-77e9-cace-b1880cd65b53 + Grafisches Netzelement220 + + + + + 45954f66-dad6-21bd-6393-51fc62a3d34c + Grafisches Netzelement510 + + + + + d7d3516c-4f7f-b123-d9df-6c818101a7e6 + MV3.101 Bus 93_Graph + + + + + 4daba093-91fa-47c1-d8eb-08d65d80af90 + MV3.101 Bus 35 + + + + + 49677c65-845a-99be-42f3-892ebc7af72a + Grafisches Netzelement240 + + + + + 81e89427-7639-05ad-283c-26ac729aa779 + MV3.101 Bus 88_Graph + + + + + 74df4add-7654-2fa1-0a0f-28ee56ea3e64 + MV3.101 Bus 13 + + + + + 180 + f88d18b4-3095-72ec-6b63-23dbeceab2e1 + Grafisches Netzelement527 + + + + + afbc0ae3-3c60-7f15-90c2-e6feddd1da6a + Grafisches Netzelement215 + + + + + 36a98b3a-b140-4972-4805-cf5ddb9a916d + MV3.101 Bus 52 + + + + + 9 + a4f84b8e-b664-6206-b260-e69f766297f2 + Grafisches Netzelement343 + + + + + b5cdaf7b-9d63-aee5-8007-e745798f4b61 + Grafisches Netzelement533 + + + + + 26c39e2f-3abc-f3d0-7c50-3c0bc8084eed + Grafisches Netzelement211 + + + + + 14772357-d4cc-6755-3736-a5c79a4a299c + MV3.101 Bus 18 + + + + + 64acd934-d71d-baea-a8d0-25e30e69e55a + Grafisches Netzelement659 + + + + + 180 + 36674708-1e7b-0b16-5274-a51b7b868d0c + Grafisches Netzelement496 + + + + + de611c33-5657-3e98-f1ae-9c7b90b931a6 + Grafisches Netzelement212 + + + + + d5e37442-ce82-4a7d-020a-7615247c177a + MV3.101 Bus 23 + + + + + 28b560de-531c-53c4-ba8d-eb6c8c6f3fb4 + Grafisches Netzelement486 + + + + + 3abe65be-145a-66a6-5ff0-6e26023dbfa9 + Grafisches Netzelement666 + + + + + 2fb4c2ec-8d00-2e55-5545-b05b2eff4a74 + Grafisches Netzelement210 + + + + + 729735da-d9c2-2fa7-979f-7685aa549f4a + Grafisches Netzelement578 + + + + + f735574f-d41b-7737-3564-b55b5a38fe24 + Grafisches Netzelement506 + + + + + 2e3c3128-8bfe-9e50-a7cc-70eaa9619ea2 + Grafisches Netzelement213 + + + + + 263 + 839f1990-e9b4-55a7-073d-30f13608a8f3 + Grafisches Netzelement379 + + + + + 180 + ec662df4-7fe1-bc04-8df3-814cdea4751a + Grafisches Netzelement587 + + + + + f8e019a7-ff39-be13-1472-3cefbb5bf2be + Grafisches Netzelement540 + + + + + fa7f63b0-f22b-0263-c125-426c56622108 + Grafisches Netzelement217 + + + + + 9ad9d119-cac4-aa2b-6834-df1ad5609ac0 + Grafisches Netzelement638 + + + + + 180 + 27633569-6a0b-b912-95d0-e4ee072b0385 + Grafisches Netzelement570 + + + + + 0c1c92d3-a3c9-3690-2871-9d5ee7424ae2 + Grafisches Netzelement248 + + + + + 180 + 2b98c783-cba4-1d89-b9ee-61f85c22ba30 + Grafisches Netzelement513 + + + + + 329b9bf0-f52e-1a0b-c657-76114f3cc1b4 + Grafisches Netzelement665 + + + + + 180 + 7776b288-ea1e-307a-a218-dc3519d5143a + Grafisches Netzelement565 + + + + + 4659aad7-eadd-cc58-84de-3eca6205dcf7 + Grafisches Netzelement516 + + + + + 346181f3-4d61-96a5-b406-4b0ea52938cb + Grafisches Netzelement229 + + + + + 14 + da82d55f-4cc1-a30b-d343-0ad68e534462 + Grafisches Netzelement342 + + + + + 1e148676-677c-d432-0e01-47700b6c6f4b + Grafisches Netzelement584 + + + + + fde8f43d-1195-fb0b-abe8-2a06895285ad + Grafisches Netzelement202 + + + + + 2871d1a5-e292-2829-f27d-b7bbc50dbfe5 + Grafisches Netzelement538 + + + + + 331 + bfe118e8-b20a-c420-58b9-16eb22513a41 + Grafisches Netzelement358 + + + + + ac4ac2d6-4865-ce3b-d08a-0ea1a4788822 + Grafisches Netzelement246 + + + + + e7f390dc-b5b9-9a7d-02f4-0560a22e53bc + Grafisches Netzelement603 + + + + + 180 + abfa8ae4-0bc3-045e-a97a-cc610a5e8916 + Grafisches Netzelement548 + + + + + 253 + 16a8cb8d-3da6-dcf9-200a-a1bb8bb9031b + Grafisches Netzelement371 + + + + + 4ce42eb1-64f7-cd5d-d21a-790b1c63f832 + Grafisches Netzelement218 + + + + + 180 + 08300a7c-f434-3d5c-9e7a-053733e52ba7 + Grafisches Netzelement575 + + + + + 180 + d97fe2a2-a120-dc1e-3133-9818a0cae674 + Grafisches Netzelement525 + + + + + 342 + 4b959433-cf39-6623-cecc-ac4a12a29f26 + Grafisches Netzelement361 + + + + + e834f64f-2a5d-5674-c88f-b0a07974d2df + Grafisches Netzelement236 + + + + + 3f11ec36-66cf-6bcc-0f1b-b3c0c5aaf1ff + Grafisches Netzelement569 + + + + + 180 + b677a860-d154-6b29-63b0-eb9a004918b8 + Grafisches Netzelement554 + + + + + 262 + 4f25b390-c16f-25c6-12cd-aba383409fef + Grafisches Netzelement373 + + + + + 180 + 99b9dde5-d7fa-b74d-2594-d5b5c8c90a97 + Grafisches Netzelement242 + + + + + b0e0e097-1831-5bf9-5f58-bf6d5f879b15 + Grafisches Netzelement537 + + + + + 180 + ae5712ff-5a73-4641-aadd-fe25a835dfac + Grafisches Netzelement572 + + + + + 89b936d0-30dd-2c6c-d835-400de78f84d3 + Grafisches Netzelement241 + + + + + 180 + d24a9884-efbc-0f4a-506b-fe7134b2c0d6 + Grafisches Netzelement551 + + + + + 180 + 905de88b-89f4-21c5-eda0-56fee8f60a93 + Grafisches Netzelement547 + + + + + bafcccfa-e2cf-ccf9-41d4-3514fa2f0415 + Grafisches Netzelement247 + + + + + 1b584aa5-f2c2-efb8-a01b-53e562661f86 + Grafisches Netzelement501 + + + + + 180 + 88f0e3c8-aa56-2195-8e28-36524c2afc52 + Grafisches Netzelement567 + + + + + 62010212-2ba4-cd7f-5317-162bdcdb14b2 + Grafisches Netzelement205 + + + + + 3067ebf7-bae2-12bf-c371-2b08b364f05b + Grafisches Netzelement362 + + + + + d3ec0c62-0429-9776-4a73-82af8531fdeb + Grafisches Netzelement595 + + + + + 180 + fbe75a1a-761c-651d-d53d-6ecfda999c1b + Grafisches Netzelement528 + + + + + a1818c28-96b4-7b4c-10b2-485f8428cd55 + Grafisches Netzelement219 + + + + + 24 + 12796f7f-ef61-e67e-4e6e-cddbd1483636 + Grafisches Netzelement372 + + + + + 180 + 4d620a37-410a-fabf-225f-44c061ed2577 + Grafisches Netzelement300 + + + + + 00e3b457-a712-1695-d26c-8c3b3ecb1f2e + Grafisches Netzelement237 + + + + + 226cc18e-a81e-8b87-afab-59fac524e3df + Grafisches Netzelement612 + + + + + 180 + 703abf37-cf97-8b9a-0603-87ff19522379 + Grafisches Netzelement297 + + + + + ee6adb3e-d510-6c17-df21-f46090e619f1 + Grafisches Netzelement235 + + + + + 05406271-75d6-e612-f20b-7dc36de44876 + Grafisches Netzelement560 + + + + + e71bcd70-3341-67c0-85ab-f8fd16e37149 + Grafisches Netzelement234 + + + + + 294 + 3a8b0dc4-1a94-a0f2-9d13-243fdd64e433 + Grafisches Netzelement355 + + + + + b8f0a35d-3af6-57ed-2d55-e2e8be0ee854 + Grafisches Netzelement667 + + + + + a2c96217-d958-86f3-3fcf-d9db4b707d7a + Grafisches Netzelement490 + + + + + 180 + a9fedd39-5cde-3976-6619-8440b24342a3 + Grafisches Netzelement275 + + + + + 180 + fe42f3ed-694b-ef31-3200-3783508812dc + Grafisches Netzelement201 + + + + + cada3ac3-0111-b1ef-9888-6b4b34dd1b5f + Grafisches Netzelement614 + + + + + 180 + 88288e53-941d-afdd-80ef-b98126e183ef + Grafisches Netzelement290 + + + + + 180 + 17638fce-82e6-e854-eb4b-b71bc8b670c1 + Grafisches Netzelement598 + + + + + 44877611-7f5d-6ab2-7f59-c60e02efacf9 + Grafisches Netzelement676 + + + + + ea0928c7-d0c0-fefe-bc22-09428755d73d + Grafisches Netzelement553 + + + + + 03a46213-4b0d-fb55-cf87-a76c65b97897 + Grafisches Netzelement623 + + + + + 180 + d0a33c0a-b787-9609-541e-aea35a098b3b + Grafisches Netzelement329 + + + + + 66ff264c-055f-6c3e-28ee-b6c7821b0302 + Grafisches Netzelement200 + + + + + 180 + cb155cfc-b2bf-e066-135c-c0ea4a569e2e + Grafisches Netzelement484 + + + + + 354 + f5897cd9-8064-5529-49fa-e5a8ab071933 + Grafisches Netzelement393 + + + + + 9d40d321-6833-9962-3976-3ba7a33b486f + Grafisches Netzelement251 + + + + + 180 + e69c3ff5-dc40-1151-693d-84a4b20ebd84 + Grafisches Netzelement589 + + + + + 7f137455-0b0c-f3e9-e316-5efc37e56ade + Grafisches Netzelement624 + + + + + 90b23a2f-f49e-b2b6-9e14-857bf2c9b20e + Grafisches Netzelement221 + + + + + 180 + c06b3468-04c1-c551-430e-69f40dc1d5a0 + Grafisches Netzelement530 + + + + + 6ed2896c-4142-7617-0ad7-cc766c49b232 + HV1_MV3.101_Substation_Graph + + + + + 90b9434b-39c2-49d1-b21c-dea3fc7cd264 + Grafisches Netzelement238 + + + + + 180 + 7bbfd663-ab51-381f-9026-dd7a4e21bf40 + Grafisches Netzelement619 + + + + + 180 + c253df62-5c02-fd8b-f163-7ecc592ffec9 + Grafisches Netzelement239 + + + + + 180 + 25629811-d6e0-c226-045e-fddf1a3462aa + Grafisches Netzelement284 + + + + + 288 + 4d0568d4-85de-d044-5b7b-955b066cb5ea + Grafisches Netzelement394 + + + + + 6db3d510-64ed-15ae-d8aa-32ecbeb772f7 + Grafisches Netzelement635 + + + + + 73e9c36b-5e3a-f91a-1607-c8a4e8164477 + Grafisches Netzelement618 + + + + + 06dce961-0b75-8dcd-d242-8d5b312283a3 + MV3.101 Bus 16_Graph + + + + + 180 + ec9d1ea6-6572-0c0a-2046-7751ecf334d6 + Grafisches Netzelement294 + + + + + 4d7b2239-9bc6-186d-8151-6fb2ffc7d8b5 + Grafisches Netzelement204 + + + + + 180 + 83f488fc-1245-9302-f90f-653cb49be9a0 + Grafisches Netzelement291 + + + + + 292 + 5dd974b9-5ee1-b0a2-a4ec-3ecf787f04bb + Grafisches Netzelement337 + + + + + 82958d9e-e17a-4219-5ccc-6505954989ee + MV3.101 Bus 48_Graph + + + + + 70e80634-634d-a029-6bf4-d67fa6df27e5 + Grafisches Netzelement254 + + + + + 180 + 689d5d94-ddce-ccf8-6812-541e2331f53e + Grafisches Netzelement592 + + + + + 477d7f1d-6f3d-044a-3883-8cb2ae87305c + Grafisches Netzelement664 + + + + + 7e126f59-6dc3-15d7-11b0-7002b253ad9e + MV3.101 Bus 32_Graph + + + + + 180 + f9831fbe-d8af-1e3b-c15b-735269637e3f + Grafisches Netzelement324 + + + + + ad61be80-f000-0750-0c70-a3b90b6d13f6 + Grafisches Netzelement644 + + + + + 180 + 187dde81-328b-11b4-389c-e23c63754541 + Grafisches Netzelement517 + + + + + 180 + 3e0fb4a3-2bee-f3c0-60dc-55eb59027446 + Grafisches Netzelement621 + + + + + a773b03a-a64f-7008-b338-a2bac64e4eea + MV3.101 Bus 31_Graph + + + + + 775adb3c-8ddc-fe0d-4d71-8a06d30c3785 + Grafisches Netzelement642 + + + + + 180 + ba4f4069-0c50-ad56-31cb-dc4477fa86b8 + Grafisches Netzelement280 + + + + + 180 + 7c7639aa-d1e9-62f5-548e-1e64a19d0566 + Grafisches Netzelement499 + + + + + 34ad6b1f-33bd-7f83-8490-26fb4b1232a1 + Grafisches Netzelement652 + + + + + 294 + 55ffddbd-e14b-58cc-a9cf-0e0a98cd9273 + Grafisches Netzelement481 + + + + + 7a879c9f-50cd-64b3-e1eb-93f0f1e84600 + MV3.101 Bus 54_Graph + + + + + 180 + 19eedfdb-dff5-ff40-3440-76c5092949d4 + Grafisches Netzelement289 + + + + + a8222759-fc24-8602-2d42-42629a461f96 + Grafisches Netzelement498 + + + + + 24b50e5d-09e2-598f-2275-7e5b5c3eab76 + Grafisches Netzelement633 + + + + + 7bbdf5d0-b38f-25b4-d482-aaf43ffaef3d + MV3.101_Base_Station_Graph + + + + + cd8a216b-58d8-3cc9-681e-db59425a99a4 + MV3.101 Bus 60_Graph + + + + + 180 + d63a4a43-ef81-ac6b-49f7-ea9f2e47438a + Grafisches Netzelement307 + + + + + 180 + 791cfa4b-36d6-751b-90a1-54e74c5b531a + Grafisches Netzelement488 + + + + + ed9d630b-19ed-1d3b-bbd6-eb04f1cd855c + Grafisches Netzelement622 + + + + + f16bc53a-f0a8-cea3-a400-12429b89f1b5 + MV3.101 Bus 13_Graph + + + + + 8ee8a240-a7bd-1a33-a3be-2366aa89cb17 + Grafisches Netzelement674 + + + + + 180 + fafd9156-d5f4-1aa7-4412-675553f92d5d + Grafisches Netzelement325 + + + + + 5f1588a3-1699-ec60-4b78-96b6c5f1a8ee + Grafisches Netzelement636 + + + + + b4ab1d15-cbcb-14ba-beab-f5ef3ae04af2 + Grafisches Netzelement620 + + + + + f92690d8-06d3-8781-e449-f34789e62c9f + MV3.101 Bus 77_Graph + + + + + 180 + 6169b6be-a449-f0fd-173c-cc1237e58208 + Grafisches Netzelement491 + + + + + 180 + cd546a63-65a3-f7d2-484d-062f451f4b15 + Grafisches Netzelement332 + + + + + e043b65c-2de6-7ee5-468e-c18673654b91 + Grafisches Netzelement632 + + + + + f2d5806e-9e5a-f57f-ba8c-93d697dd5d3c + MV3.101 Bus 69_Graph + + + + + 180 + feff9f86-9eed-6010-016d-8c2e1c80c45d + Grafisches Netzelement485 + + + + + 180 + cc51b982-0405-a363-6a34-e3c365bfb226 + Grafisches Netzelement285 + + + + + e5b035da-82cc-468f-78c3-783a56b4cc94 + Grafisches Netzelement683 + + + + + 93f293f3-82d6-53b5-a0c6-a366351fe69e + MV3.101 Bus 34_Graph + + + + + 723d0172-1c0a-f376-63cf-b2c36986765b + Grafisches Netzelement591 + + + + + 180 + a6b9aa35-5ed7-6262-b475-cb13467cec55 + Grafisches Netzelement318 + + + + + a6cf30f4-8739-67c1-1045-3cb0d237ae1e + Grafisches Netzelement661 + + + + + bf200125-ff88-9e8d-a9e3-da8758103f87 + MV3.101 Bus 51_Graph + + + + + 101de6cb-6605-e85c-82a8-c3d271efbaae + Grafisches Netzelement585 + + + + + 180 + 93cffcc6-4751-8b9d-e75f-4662695578f9 + Grafisches Netzelement298 + + + + + 7e84d074-182c-425b-d3c9-e43b8b559c39 + Grafisches Netzelement643 + + + + + ce60ed79-ddfc-c93a-8549-d9433b1e58f1 + MV3.101 Bus 28_Graph + + + + + c9963761-63e6-7fe3-2dc5-91988a50fc2d + Grafisches Netzelement610 + + + + + b47f581e-9ae8-4fa8-8d2b-9bebaec70239 + Grafisches Netzelement556 + + + + + 180 + fb0fbda4-5a85-c222-9ffd-706c3c55b1d2 + Grafisches Netzelement286 + + + + + 016c2731-733f-c5a4-aeb1-55c846b04987 + MV3.101 Bus 55_Graph + + + + + 1dcf0228-3b54-8375-b6d5-06cb22bdb5cc + Grafisches Netzelement670 + + + + + 180 + 3819a6a9-2b3f-cdd2-35f8-13f07011a817 + Grafisches Netzelement531 + + + + + 4a2a9218-2c61-c0cc-9102-f8a1abb8c34f + MV3.101 Bus 21_Graph + + + + + 180 + 6ee41e77-cc19-c08b-4418-81985f65c9f0 + Grafisches Netzelement302 + + + + + f8f1b2ee-c664-6eb0-3845-12deb1ec10cc + Grafisches Netzelement687 + + + + + 180 + 8561f25c-5340-954a-ea45-a630eddd87ba + Grafisches Netzelement562 + + + + + f93f9d94-3720-e5f5-8a15-c225895a450f + MV3.101 Bus 63_Graph + + + + + 180 + 8e07462e-c830-ddaa-1ab0-1a3b9cd2208a + Grafisches Netzelement274 + + + + + 14df2b22-848a-b51b-7e3d-27a4378953e8 + Grafisches Netzelement616 + + + + + 70dde681-4ac9-d962-10e3-fbf85755cb9e + Grafisches Netzelement495 + + + + + 11d70613-a0dc-2a99-8fe6-728e8143d048 + MV3.101 Bus 62_Graph + + + + + 180 + c7716a3a-9ec0-2466-bbf3-b3551978f4c5 + Grafisches Netzelement319 + + + + + d991809a-e06c-3034-794a-a0b2ccd44221 + Grafisches Netzelement611 + + + + + 91be716a-0d82-e7f6-1aed-d15ad5e7d760 + Grafisches Netzelement655 + + + + + 347d0fb3-4fe1-2abe-347b-36d870455fe7 + Grafisches Netzelement558 + + + + + e34b5cea-f4f6-6860-6214-a71dbaae5ac2 + MV3.101 Bus 19_Graph + + + + + f295cf0e-cdf1-5418-f796-5caf61ba2d84 + Grafisches Netzelement677 + + + + + 180 + d77978ae-1d8d-8051-5627-4f6550f86b60 + Grafisches Netzelement278 + + + + + 93da9f31-86de-b867-8a3d-7d37bfccc1f3 + Grafisches Netzelement649 + + + + + 430ba48f-7725-f7fd-f053-2ff2ff2747e9 + Grafisches Netzelement494 + + + + + 9b1263a6-a4ec-d90d-0018-bc91786e49c7 + MV3.101 Bus 38_Graph + + + + + 827f0a69-c095-a99f-80c4-e18943467673 + Grafisches Netzelement609 + + + + + 1ac00c3d-336d-f2cb-0e49-0622be0fd253 + Grafisches Netzelement645 + + + + + 180 + 336f9595-1327-a171-0c6b-cb6b868cd455 + Grafisches Netzelement328 + + + + + c66e9950-740e-6d46-79f4-a807ed0cb5dc + MV3.101 Bus 70_Graph + + + + + b9d68e73-19fe-2ffb-0dfd-2676a26547e0 + Grafisches Netzelement497 + + + + + 59be3db6-cc09-cb8a-2b7b-ca9306cc19ac + Grafisches Netzelement613 + + + + + 180 + f5be370f-4741-b8e8-cae2-e3d26295d91a + Grafisches Netzelement299 + + + + + 604b11bf-763d-ebf8-7e0b-74d4fdc74b13 + MV3.101 Bus 59_Graph + + + + + 8cd82045-e076-a79e-f3f1-78edcb8ce7c4 + Grafisches Netzelement617 + + + + + 180 + 34b2ffb8-dbdf-2566-843a-3a852e56d59e + Grafisches Netzelement555 + + + + + e10b0393-1a78-3cd7-4cb4-4fbc77b99bb0 + Grafisches Netzelement654 + + + + + 180 + e92d74f8-529f-2397-ec72-4b12b6045aa3 + Grafisches Netzelement312 + + + + + 43a6bf46-0e83-1ff0-07c7-41128c2aaf5e + Grafisches Netzelement615 + + + + + 2ec72583-a764-9b33-c544-c11f4a4bd0e2 + MV3.101 Bus 79_Graph + + + + + 180 + bd30b287-d449-1db5-b3e2-aa25e6f4161f + Grafisches Netzelement514 + + + + + feb3eaa0-4ab2-4a6f-ca32-2246d64df354 + Grafisches Netzelement625 + + + + + 923d4bc8-12fb-4716-3293-a5fe2a184418 + MV3.101 Bus 137_Graph + + + + + 4ad3eb3d-ff09-0f92-0416-17573dfaf8b5 + MV3.101 Bus 68_Graph + + + + + 180 + 8aa294a9-262a-e19c-999b-68acf866c150 + Grafisches Netzelement317 + + + + + 87156411-1f84-dbd6-9d32-6d6f1bb9f852 + Grafisches Netzelement662 + + + + + 180 + 381b2e8c-6b46-f1d7-127e-1cfe7734c0a8 + Grafisches Netzelement546 + + + + + f903abe9-5646-cc0f-7e4f-0228bb629936 + MV3.101 Bus 122_Graph + + + + + e7f8ee85-72ab-95f4-6cf4-2fa238ff9357 + MV3.101 Bus 25_Graph + + + + + 1cdda964-b260-9dab-e5fc-c74a97d305af + Grafisches Netzelement651 + + + + + 180 + 88f0821f-8a88-511f-4bfa-fad1edcb834c + Grafisches Netzelement303 + + + + + f2134025-55a7-7d7d-5347-61ce4c760382 + MV3.101 Bus 110_Graph + + + + + d68af646-bd81-a0e7-9af8-367081b00f37 + MV3.101 Bus 61_Graph + + + + + a4f107f8-0eae-c2be-1522-188b32daa42e + Grafisches Netzelement630 + + + + + 180 + 82da611a-f0ee-38c9-f5ed-545e1d396de6 + Grafisches Netzelement310 + + + + + e15d0971-3adf-2158-78be-002d2f3b8036 + MV3.101 Bus 117_Graph + + + + + 33d06a10-ba26-7699-0c76-1315cd1d2dae + MV3.101 Bus 29_Graph + + + + + 30c31e3b-54ef-ef4d-e368-cec726ef28fd + Grafisches Netzelement646 + + + + + 180 + c7c2829e-b059-5c41-c050-c5244d4cc0f9 + Grafisches Netzelement561 + + + + + 625a1d40-5483-0a9d-ff04-b75c6db0e372 + MV3.101 Bus 130_Graph + + + + + dd512405-bfcc-0c86-dfe1-d0fe5b406bba + MV3.101 Bus 11_Graph + + + + + 180 + d6130e0e-9c95-921e-25b7-7aaff603858b + Grafisches Netzelement331 + + + + + d6252ecc-cd6d-bddf-9681-1dd40f1a8029 + Grafisches Netzelement637 + + + + + 75571004-565a-f1e1-7de6-19cce58b5480 + MV3.101 Bus 112_Graph + + + + + 180 + e6ec3ed4-21bb-1427-8089-2722ffef2cff + Grafisches Netzelement599 + + + + + 16e4580c-0784-98c2-0c81-668f63a63a96 + MV3.101 Bus 50_Graph + + + + + 180 + 75b29adf-6445-8c6e-b29a-04c4f2f1cef3 + Grafisches Netzelement301 + + + + + 46f6c438-1230-6b32-bbaa-90a6f8418c30 + Grafisches Netzelement678 + + + + + 95c59ab8-03a3-5f27-7a04-b7c1ac1d4b82 + MV3.101 Bus 114_Graph + + + + + 1cd538f4-4f28-3c61-5f46-9d312550a9e5 + MV3.101 Bus 23_Graph + + + + + 180 + 6ce4ec9d-a754-f5e9-991c-944ff0985a41 + Grafisches Netzelement308 + + + + + 180 + f5c776c0-d5a5-0c4d-b774-a6533221de45 + Grafisches Netzelement576 + + + + + 180 + 1820ca4a-3001-2142-ed79-703ff9153850 + Grafisches Netzelement660 + + + + + eda9ecc3-f55d-826e-1dc8-48c01dc218de + MV3.101 Bus 136_Graph + + + + + 9ce59668-463a-8f66-cb8b-2a0ec1b81a18 + MV3.101 Bus 42_Graph + + + + + 180 + 1599d5ce-9f6f-2253-6886-b2351306f983 + Grafisches Netzelement277 + + + + + 180 + abb101bb-9836-68ca-b6d8-d14a10526f1b + Grafisches Netzelement573 + + + + + d813f038-b0d4-729d-d108-94998d4b86bd + Grafisches Netzelement680 + + + + + b65197b0-a796-af02-b098-7d66f62ffb8e + MV3.101 Bus 58_Graph + + + + + 180 + 89f65626-4c40-7753-051a-a4f783134671 + Grafisches Netzelement262 + + + + + 180 + a4f31104-a113-e4ad-6659-8c06844e7241 + Grafisches Netzelement304 + + + + + a9ccc62e-d1d4-52e5-4c53-627cde1222f0 + Grafisches Netzelement640 + + + + + 180 + 87ba2fac-f166-4d0c-9e75-aa322aa95cee + Grafisches Netzelement588 + + + + + d2b74e5a-eb3b-229f-18e7-4a0023854235 + MV3.101 Bus 74_Graph + + + + + 3bcbd2c7-1713-644a-f8d8-50ea86b36cf0 + Grafisches Netzelement258 + + + + + 98ee8dfd-a538-ec44-625b-78561a79d71e + Grafisches Netzelement626 + + + + + 180 + 01b2229c-1cac-a4a1-5d9d-d3c385611d2a + Grafisches Netzelement320 + + + + + 28766426-ec78-b464-5adc-6524489dc9a1 + Grafisches Netzelement606 + + + + + 8619c22c-7a1c-ecef-88c5-d7eef7bddbf0 + MV3.101 Bus 80_Graph + + + + + 64db2fcc-218d-f226-8c63-f5dff5ebf202 + MV3.101 Bus 124_Graph + + + + + e1267b28-5b38-8079-da6a-008cec528bbc + Grafisches Netzelement641 + + + + + 9f345166-d245-fbb7-cd12-aabea26ca8b9 + Grafisches Netzelement586 + + + + + 180 + 4c988d63-54f3-f1f1-c881-b93e96bfdbf3 + Grafisches Netzelement296 + + + + + d5ab7ad3-2fb9-7c75-5b10-05432fe45d7c + MV3.101 Bus 81_Graph + + + + + 2bc52478-7c8f-1a3c-0375-f48d89846a2b + Grafisches Netzelement272 + + + + + 180 + 97f300f4-a3d5-bcb7-eb99-8cca7a99a3d7 + Grafisches Netzelement668 + + + + + 4f5c8558-668e-4591-52f2-10e142b42805 + MV3.101 Bus 43_Graph + + + + + 180 + 10730965-9e12-240c-0e5a-7a1f80ac097f + Grafisches Netzelement597 + + + + + 180 + 01484643-9876-83e6-fb35-a56d23c6f517 + Grafisches Netzelement295 + + + + + 20236ee9-e5be-15ef-d326-c430b10b60d8 + MV3.101 Bus 128_Graph + + + + + c9825376-b886-c40f-a912-fc924e2cbd32 + MV3.101 Bus 33_Graph + + + + + d58ed532-817c-2eac-d2bb-f080c19d2815 + Grafisches Netzelement685 + + + + + 180 + 72642c34-21ae-f793-ed91-9c90f394c2b0 + Grafisches Netzelement601 + + + + + 180 + 1e6f5695-b729-736b-368c-ccd1ae09caa4 + Grafisches Netzelement330 + + + + + e1cd8ee6-b564-6682-1fd3-6793b13ce7d8 + MV3.101 Bus 39_Graph + + + + + c35a27ba-b1cb-cd15-666a-df8f907ab40c + Grafisches Netzelement663 + + + + + 180 + cda8ca79-fdee-cc7a-c6db-aa8a91ce8821 + Grafisches Netzelement549 + + + + + 180 + 9c384ea0-ccfd-3006-cfc5-0103693b8117 + Grafisches Netzelement279 + + + + + 7c72c963-06a8-614c-5026-fbc4cd6c70fd + MV3.101 Bus 41_Graph + + + + + fe52d1ec-4cd5-7ee6-f711-4729b438c91f + Grafisches Netzelement682 + + + + + 180 + aabb1f92-90d1-0588-41d4-1b639b861ae9 + Grafisches Netzelement583 + + + + + 46294077-3c0a-970e-59c8-a61942afb83f + MV3.101 Bus 22_Graph + + + + + 180 + e6471ee8-544a-6a13-a1e1-462bfc0eb548 + Grafisches Netzelement313 + + + + + e2e8b3b7-7df4-39a3-fb92-96605dbea26a + MV3.101 Bus 131_Graph + + + + + 4bfb7ae1-9fe5-d684-87a5-3ac488192181 + Grafisches Netzelement629 + + + + + 94a78de7-bd88-c545-d3c2-38b5bae6d90d + MV3.101 Bus 76_Graph + + + + + 535a5ffd-9535-d758-50a6-03920fbdb2ed + Grafisches Netzelement557 + + + + + 8b885c6a-44d9-c05c-ad73-28750e950946 + MV3.101 Bus 107_Graph + + + + + 180 + 1308bc8b-917a-0254-a018-20f304e9359d + Grafisches Netzelement327 + + + + + ef1a1ae0-9cc8-2158-5003-1488d42b114f + Grafisches Netzelement634 + + + + + cc5918d0-7b63-e9d7-13d3-55d242b1e09d + Grafisches Netzelement529 + + + + + 180 + 0a322ef1-a369-f653-0a1e-19083c7d5834 + Grafisches Netzelement571 + + + + + db20bbbe-bbb2-e191-a75c-475b98b16f1e + MV3.101 Bus 99_Graph + + + + + 180 + 16c728cc-77af-bf73-89ba-c96c1bbafcb1 + Grafisches Netzelement293 + + + + + 77 + 8352312a-3652-1162-476b-9f3b8c321cd1 + Grafisches Netzelement350 + + + + + 180 + 90cd631b-f6d0-5720-2d52-adb617e60966 + Grafisches Netzelement539 + + + + + 56de7834-d5b3-f387-c0ea-e16e5ed4f913 + MV3.101 Bus 127_Graph + + + + + 180 + 1051404d-072b-c463-b7f2-5c259a2044b1 + Grafisches Netzelement305 + + + + + 26a3bd2d-a3c7-afe6-7ed8-77e594ad01f4 + Grafisches Netzelement158 + + + + + 180 + 28289985-9789-3756-a9d0-66b2eb85d9ce + Grafisches Netzelement522 + + + + + f0d4b31a-cefd-a713-0fac-6ee31dfbc782 + MV3.101 Bus 129_Graph + + + + + 180 + 799796c9-65a4-0b65-29a8-b78607b9969f + Grafisches Netzelement600 + + + + + 180 + 37cd28e8-e538-3020-314b-3a00dfbd6d7f + Grafisches Netzelement314 + + + + + fc56243e-7182-8a26-fa95-2dc529e0709a + Grafisches Netzelement502 + + + + + 8e0e51b3-7bf7-0b1d-ab1a-f62af9ebf12f + Grafisches Netzelement167 + + + + + b1fc20b3-cf04-f7a3-fa1f-6a27cd7bb0f4 + MV3.101 Bus 103_Graph + + + + + 430f248c-8d7c-41cc-783e-6fe15e12f8fc + MV3.101 Bus 45_Graph + + + + + 9867ee7b-a78b-d379-397b-7b1176d8c301 + MV3.101 Bus 73_Graph + + + + + a55c7b66-e8d5-b6e1-a017-751b7d3d1010 + Grafisches Netzelement194 + + + + + 10127de1-282b-a13f-e103-8d30286336c7 + MV3.101 Bus 56_Graph + + + + + 73bad8bd-d0ae-01b6-41f6-be212a0325fc + MV3.101 Bus 116_Graph + + + + + e06d2292-c433-50eb-7552-788b535bc1ea + Grafisches Netzelement504 + + + + + cfcef23e-4f83-ab64-4466-7318e36de39d + MV3.101 Bus 53_Graph + + + + + d646c942-d11a-5e82-997f-67fafa175412 + Grafisches Netzelement136 + + + + + e487db45-bea2-789c-0a58-ac0bc99cacbd + MV3.101 Bus 133_Graph + + + + + 180 + 3b038469-4e65-7768-9c4e-d6142845ad7e + Grafisches Netzelement492 + + + + + 3d9cd71c-1aa3-8b38-73b7-5d29f49e5647 + MV3.101 Bus 57_Graph + + + + + 9a99fc09-29bc-da5e-9f1f-dc34f91bfb7e + Grafisches Netzelement145 + + + + + 9a6bb444-6ccf-2387-937c-ce919719e00b + MV3.101 Bus 113_Graph + + + + + 7a233747-2403-e49a-2109-2c6ae560434c + MV3.101 Bus 14_Graph + + + + + ed703001-1935-e166-0aba-f33778813d74 + MV3.101 Bus 82_Graph + + + + + a1fc778e-3c73-d331-0783-6927f0a9e4bb + Grafisches Netzelement149 + + + + + 174469c8-bb6c-ffdf-4762-dc4c098aa87d + MV3.101 Bus 119_Graph + + + + + 180 + 59b7147c-3351-597f-0f25-cdd22f6ceb62 + Grafisches Netzelement306 + + + + + 271328cd-e680-ba58-6afa-8448d2281026 + MV3.101 Bus 72_Graph + + + + + f2e6478f-097a-2daa-9547-3396954e768b + Grafisches Netzelement144 + + + + + 331e4a86-caae-15dd-327a-07975a4b0ab6 + MV3.101 Bus 109_Graph + + + + + 8375cec0-3717-98a1-23e9-ec6d526950b5 + Grafisches Netzelement321 + + + + + faf420a7-8e1b-5c8c-5aff-d4b00b06f8dc + MV3.101 Bus 83_Graph + + + + + 50caf5ae-0339-d687-e66d-d50dd9c07b0a + Grafisches Netzelement191 + + + + + 2843a9fb-ceba-c2d1-fcff-b880b3f562ba + MV3.101 Bus 101_Graph + + + + + 180 + 1e57b6a0-5bc9-2f2e-cc33-cef88ccb5ffe + Grafisches Netzelement276 + + + + + 131 + 434b68b9-15fc-c684-d5a5-0d22947c5761 + Grafisches Netzelement445 + + + + + 180 + 6d46aa0d-e55b-e8da-0fb6-dd13dccee0db + Grafisches Netzelement521 + + + + + 38133b35-8a6d-783b-5059-5e1f140eb56c + Grafisches Netzelement196 + + + + + 455fcfdd-42d2-5512-28e7-5a7dcbe1a5a1 + MV3.101 Bus 123_Graph + + + + + 180 + 734f5079-20fa-df0a-172e-519fb002a417 + Grafisches Netzelement309 + + + + + d04e9d6a-cc5a-aa2c-b1ef-7ac536e405d9 + Grafisches Netzelement519 + + + + + 256 + 65133344-b0fb-9c0a-2fc3-919a3d414ae0 + Grafisches Netzelement340 + + + + + 5fde958b-a8ef-d81b-0a8f-b31779346784 + Grafisches Netzelement137 + + + + + 180 + a17fb573-7878-992e-56af-d930a9771321 + Grafisches Netzelement608 + + + + + 8f6754a3-496a-6127-af55-84dc85334b3b + MV3.101 Bus 105_Graph + + + + + 180 + cfb69834-8ab8-2c47-e7f4-561b2463113d + Grafisches Netzelement315 + + + + + 1840eee2-d1a6-431f-1fc2-473a090274dc + MV3.101 Bus 64_Graph + + + + + 144 + ec7f6c95-0472-6f45-9a15-0b25ee16ad23 + Grafisches Netzelement439 + + + + + 332 + 1a2c74d8-5db1-2596-0556-6051a717aa95 + Grafisches Netzelement346 + + + + + 180 + 593ee2a0-8734-8a85-ef0e-599d3e9b9cc7 + Grafisches Netzelement568 + + + + + 94ad604d-0dec-0c35-acd2-37dd24778803 + MV3.101 Bus 121_Graph + + + + + 180 + dc53cfc1-af12-bacd-07a9-c96cc0f2d0be + Grafisches Netzelement323 + + + + + 5cda247b-69f9-61cb-1687-138c2b354af8 + MV3.101 Bus 65_Graph + + + + + 62 + 7782c218-f0b4-8579-894c-f7b7a67a2fea + Grafisches Netzelement345 + + + + + 2862e516-b022-a0cf-a4ca-a0d18dc3f804 + MV3.101 Bus 141_Graph + + + + + 180 + b9dcc999-3d0a-ff2d-6052-7c54666cb051 + Grafisches Netzelement550 + + + + + 180 + 09b27c13-1d37-cbf6-7e8c-7e84a3a6f761 + Grafisches Netzelement292 + + + + + e7704378-4108-ec65-48ab-a2c156fb97a7 + Grafisches Netzelement507 + + + + + 333 + be073bef-0752-e428-c842-3864ff8ac303 + Grafisches Netzelement360 + + + + + d5049a89-409e-3071-f168-b41761b8f4eb + MV3.101 Bus 142_Graph + + + + + 180 + c5fb79e5-9715-1bdd-748d-40eb6c3f450a + Grafisches Netzelement563 + + + + + 210 + 979b8973-abb8-8b02-8559-0ecb973d6c2e + Grafisches Netzelement436 + + + + + 861e78d0-71f7-a891-e65a-c4a21c39e380 + Grafisches Netzelement541 + + + + + 180 + 6bea2d28-454f-07a1-035a-d2c4ba910c35 + Grafisches Netzelement316 + + + + + 318 + 111849c2-066e-40d8-1320-b705520a06a0 + Grafisches Netzelement392 + + + + + 99 + dbc92563-9f5b-8777-93d1-65bb88948cb5 + Grafisches Netzelement422 + + + + + 4b94956e-0b10-c4fc-8d84-d658af5793a9 + Grafisches Netzelement534 + + + + + 180 + 029f36ce-12a9-dff2-c410-36ca7085b7d7 + Grafisches Netzelement579 + + + + + 180 + 66e7d7f4-6b0a-e07c-023e-6f033903dec4 + Grafisches Netzelement322 + + + + + 320 + 92e17710-4857-2d69-4df7-5822d9c4c4be + Grafisches Netzelement435 + + + + + 344 + 6672667c-0413-d614-c39e-5a3884f160a8 + Grafisches Netzelement388 + + + + + 355 + de6d5a49-84a0-8cd6-19bd-6615e7a1b6a4 + Grafisches Netzelement466 + + + + + 9f126bdb-d491-1287-7631-a0c9d73998d2 + Grafisches Netzelement581 + + + + + cedb4d4c-73f4-88d1-f979-ac25dfb2cd90 + MV3.101 Bus 78_Graph + + + + + 180 + 9e1c2e97-168a-95ce-1432-68fb07237b0f + Grafisches Netzelement417 + + + + + 76 + 292e15d7-890b-3107-8e21-71bda740173d + Grafisches Netzelement336 + + + + + d05f3cbb-ae24-02ae-7ab8-2e1fe5f3a34e + Grafisches Netzelement140 + + + + + e7536900-a2d1-301e-7f32-90a97fb5ce06 + MV3.101 Bus 67_Graph + + + + + 6 + ee54ccf7-3a74-ae16-5e60-a5cbfc123942 + Grafisches Netzelement442 + + + + + fc0f70ef-21d3-004c-bc15-d81d8a7ae6ce + Grafisches Netzelement182 + + + + + f6919f5a-701a-9a40-b773-3fd8cc3db153 + MV3.101 Bus 71_Graph + + + + + 276 + 5776c00e-e1d7-2a19-636b-8f70075f8289 + Grafisches Netzelement396 + + + + + 139 + 65e6f7b2-7a5b-1a2e-9150-4857b1d576d7 + Grafisches Netzelement428 + + + + + d919618b-312a-4573-da88-59827b1c1804 + Grafisches Netzelement169 + + + + + ab5d1174-87f5-817c-5a4b-f27e79bb6b00 + MV3.101 Bus 37_Graph + + + + + 315 + 3fcc19b4-e3c3-f1ed-2d47-cd598879a01b + Grafisches Netzelement344 + + + + + 328 + ae32a008-55b3-6b6f-681f-db06119bbf9d + Grafisches Netzelement447 + + + + + 15b6b04d-5209-d407-768f-a0af17c4c7f0 + MV3.101 Bus 12_Graph + + + + + a8d945ac-54ab-14c4-1481-b3a3b7c686d6 + Grafisches Netzelement152 + + + + + f38cf2b1-5501-6bb9-e230-618ae489ef4f + Grafisches Netzelement656 + + + + + 256 + aa585588-c811-ed38-d038-6c2e26b07240 + Grafisches Netzelement359 + + + + + 1f785479-3717-cb71-e148-25bf0fcf5320 + Grafisches Netzelement433 + + + + + 76296a56-8fb3-a815-c6a2-529762ceb001 + MV3.101 Bus 46_Graph + + + + + 97f33e84-7f7e-5d37-5f9a-86889125625a + Grafisches Netzelement178 + + + + + c846eab0-69e4-db1c-955f-3cce657533b9 + Grafisches Netzelement526 + + + + + 328 + eebe2aff-bac2-14f5-a2a0-6941ddb536f4 + Grafisches Netzelement363 + + + + + bdb87190-41d5-e403-7c67-7e4d8189334e + MV3.101 Bus 84_Graph + + + + + 209 + e3f4e028-8a93-70dd-eefa-d8afc072b46b + Grafisches Netzelement399 + + + + + 180 + 86c9d862-16f7-879a-b588-b6e3c1884d4b + Grafisches Netzelement483 + + + + + 6705d267-8e38-66fc-dcb5-91e064c7cb8c + MV3.101 Bus 36_Graph + + + + + 234 + 2259cbb8-33b0-f3e6-bc47-1b49ccf2965b + Grafisches Netzelement365 + + + + + 208 + ab3bb073-fe8e-6b36-8ce7-a91bc7789d59 + Grafisches Netzelement402 + + + + + 180 + 28beb6f6-3e57-23ab-16c2-fee02fcfef5a + Grafisches Netzelement532 + + + + + 6cd99e19-7c8e-68e5-df79-4e790f1ec873 + MV3.101 Bus 52_Graph + + + + + 39 + 0a78fdf9-bfb9-f026-d53a-2d93667a4811 + Grafisches Netzelement467 + + + + + 283 + b714d575-4511-0826-878e-92291591841f + Grafisches Netzelement385 + + + + + 347 + 0bc08f88-36c8-aaf3-b2f1-5e32bc8e92d0 + Grafisches Netzelement401 + + + + + 1ec4dfe7-d15b-4d3b-78d3-8e3808280c93 + MV3.101 Bus 26_Graph + + + + + 180 + a5ad6376-5059-10d3-1c48-9ed2d8a88a55 + Grafisches Netzelement500 + + + + + 8a919003-9dac-51ea-523a-621502597e9b + Grafisches Netzelement186 + + + + + 95 + a3bd6dc1-8845-0dde-fad1-f149fbf1b23d + Grafisches Netzelement352 + + + + + 207 + fee9a2b9-0ad0-ad11-3675-53b787cb8874 + Grafisches Netzelement403 + + + + + 7638ae4a-1dc0-56a4-dd86-d6810dc5fff7 + MV3.101 Bus 18_Graph + + + + + d0b3aa58-d465-9bb0-9ebf-bd9285774055 + Grafisches Netzelement523 + + + + + 40dd88cb-2c39-9219-481f-1fbe247a1561 + Grafisches Netzelement174 + + + + + 270 + 0b56f783-698b-63b9-6932-9ac2d1599aa8 + Grafisches Netzelement348 + + + + + 337 + f7991075-102d-ea27-d518-a66bd53f61e5 + Grafisches Netzelement426 + + + + + 29efd5de-70fd-acf1-69dc-febae95f66d7 + MV3.101 Bus 24_Graph + + + + + d40829e9-9ab5-e621-f808-8ab24afd8fe6 + Grafisches Netzelement503 + + + + + 7426f249-e569-ce10-de2e-d15dce64bca2 + Grafisches Netzelement162 + + + + + d83622e9-649d-4ff4-2a42-659ef858f33f + MV3.101 Bus 49_Graph + + + + + 180 + e5eddb6a-cb01-f341-ee49-ae82244989f3 + Grafisches Netzelement380 + + + + + 7bc83ba5-8919-c133-2ad1-b4159d917f0b + Grafisches Netzelement535 + + + + + 260 + 7593bc79-f1a8-a5d5-87ef-10b92000a5ae + Grafisches Netzelement418 + + + + + 22e93d58-0b8b-938a-7899-7b742e10dce5 + Grafisches Netzelement181 + + + + + ec31c235-5633-14c9-cbbc-f8b5f9c696ff + MV3.101 Bus 44_Graph + + + + + adc208a5-f1b9-6056-49e2-ac7d94158eb1 + Grafisches Netzelement542 + + + + + 175 + 38a36a0c-5983-e1d1-e745-ad24c31e4dfe + Grafisches Netzelement382 + + + + + 5d37a826-d0da-e2c6-4f7b-47cda79a68ae + Grafisches Netzelement185 + + + + + 252 + 9cf6b114-d21f-1ab0-ad3b-51ff78bfb869 + Grafisches Netzelement424 + + + + + e5fdfeff-0c2f-55e4-6bde-e2ea89ce128c + MV3.101 Bus 27_Graph + + + + + c52a1f17-c688-16ae-2490-fa11eb4a0276 + GCO_1 + + + + + 180 + 11261b21-b8db-6799-3567-9f1c835f8fa1 + Grafisches Netzelement518 + + + + + 176 + c088b93a-8130-dac8-e9d5-5039ddab8e73 + Grafisches Netzelement368 + + + + + b02ed78e-e030-11e8-23ea-f5b04f1956f5 + Grafisches Netzelement151 + + + + + 337 + 3be9f096-9a21-45cf-9565-e83b01129536 + Grafisches Netzelement440 + + + + + fc03d103-b90d-1f27-dddf-b763bae37cde + MV3.101 Bus 47_Graph + + + + + aac2c862-fc76-8a08-2a2f-bbf638ad3c85 + GCO_1 + + + + + 180 + 361b0924-bfd1-c020-f913-1fab5eb4bd2d + Grafisches Netzelement482 + + + + + b7d0f363-51bc-3986-9e85-0f941add7a99 + Grafisches Netzelement173 + + + + + 180 + 8f597db7-8d1f-f223-cc99-1f89d4ab1d43 + Grafisches Netzelement351 + + + + + e4f8aac2-5eb3-8597-f66d-0465b5eaef80 + MV3.101 Bus 40_Graph + + + + + 256 + d8dc586b-bc23-0265-0b27-bb96c051ca69 + Grafisches Netzelement419 + + + + + b24da85d-fe2c-5b59-e4a4-ed53f45bd2ae + Grafisches Netzelement564 + + + + + ba85d0e2-b161-4147-bf32-77bebb42b435 + GCO_1 + + + + + 7fac11e9-c55f-7d51-25bd-ff7e061d5210 + Grafisches Netzelement512 + + + + + 41c43300-b21d-c0d8-a854-6e637aaa71db + Grafisches Netzelement192 + + + + + 177 + a3565092-c698-e9a2-b439-eb2296f38c61 + Grafisches Netzelement338 + + + + + 4529c09a-26a2-745d-7840-d401d7e1c3f8 + MV3.101 Bus 30_Graph + + + + + ef1e6caf-e301-0b2b-5375-d7da038d34e1 + Grafisches Netzelement593 + + + + + 7a846e63-34e7-a1a3-243f-2bd4061856ab + GCO_1 + + + + + 7afb0be5-5516-d212-c0b8-9d2b427f75e9 + Grafisches Netzelement520 + + + + + 6d009921-a4c4-ad65-01ec-0b39261b55da + Grafisches Netzelement159 + + + + + 240 + f4687cd8-a770-6ab8-d082-0a0329942970 + Grafisches Netzelement339 + + + + + 58c248c6-30b2-7f74-72a4-391aef227c93 + MV3.101 Bus 75_Graph + + + + + 180 + 81b396d0-b798-0af4-da7b-bb46002785a0 + Grafisches Netzelement580 + + + + + 9ab585a6-bb94-ab75-68ab-0d4423480299 + GCO_1 + + + + + 28d3c859-1cf7-5208-e33d-0812452d6a20 + Grafisches Netzelement657 + + + + + 05a64faf-823a-045c-b7c9-1d1c28b9d4f4 + Grafisches Netzelement166 + + + + + 173 + 422ee789-d6ff-9790-2852-0da66e1788f8 + Grafisches Netzelement369 + + + + + e60c612d-75d4-98f2-1306-cf8442eba22c + MV3.101 Bus 85_Graph + + + + + 180 + 8277651a-8dd9-19b8-0dc1-be68fb3b0812 + Grafisches Netzelement596 + + + + + 3b480b90-38f4-9fdf-0510-7217a378572e + Grafisches Netzelement165 + + + + + 1c605967-d7e9-a209-eb2b-94028a75f419 + GCO_1 + + + + + 8a15d479-27e5-babf-519a-35f8528e8990 + Grafisches Netzelement168 + + + + + 253 + 7a30bf46-afd0-f0db-788e-3760b3c7aff6 + Grafisches Netzelement443 + + + + + 332 + 3bef817f-7a8b-9fd5-5644-3ce2e6c21946 + Grafisches Netzelement366 + + + + + cab1ea01-07ca-ad83-5021-16ad03a0c00d + MV3.101 Bus 66_Graph + + + + + 180 + 0c5a0e8e-ea5c-1231-bf2f-990fa2d94904 + Grafisches Netzelement602 + + + + + c081f815-41ff-a46c-4e48-4ce5f0608cda + GCO_1 + + + + + 1c18e257-7f95-3a57-0506-d69e132e2939 + Grafisches Netzelement146 + + + + + 3174690c-eb3b-8df8-ba64-a59934b3a64a + Grafisches Netzelement170 + + + + + a2fdae49-5cb9-e92f-17c3-744b1cab4025 + MV3.101 Bus 17_Graph + + + + + 177 + bb3ec6cb-b0db-2fa2-4135-157e860b2eb0 + Grafisches Netzelement390 + + + + + 32ae9929-f57a-8892-edc3-c50d19d8f179 + GCO_1 + + + + + 180 + b7a35ab1-59fc-1bfe-d295-24afaf3efbfa + Grafisches Netzelement311 + + + + + 5f6ac04d-0f2f-cd6c-417e-91cbda5411c5 + Grafisches Netzelement171 + + + + + 21ddebf8-af17-f781-eb86-3c379c98a87b + Grafisches Netzelement187 + + + + + 04b6ba39-b81e-f7d5-dcad-21a4dbf43cde + MV3.101 Bus 15_Graph + + + + + 103 + 845849aa-119b-3c26-a60d-6dd16475e5b4 + Grafisches Netzelement367 + + + + + 1d2c3855-fd5c-1c02-e136-1aaf785ded39 + GCO_1 + + + + + 2628c19f-6c31-8008-e824-f9a4e367c296 + Grafisches Netzelement590 + + + + + e8cbccdb-e124-38da-cb83-0aae43980e1b + Grafisches Netzelement188 + + + + + 12780fbb-efe4-97db-7838-ea294eb3db4d + Grafisches Netzelement193 + + + + + 256 + 2ef843e9-6040-4e42-143c-421ffc16ff72 + Grafisches Netzelement405 + + + + + 19455237-a1a3-11d6-cf7b-2223b7f68b41 + MV3.101 Bus 35_Graph + + + + + 153 + 95cecb0f-ee04-c9fe-0cf7-b2411eb1341d + Grafisches Netzelement384 + + + + + 02478020-1fcd-d0d0-7a31-96f9469ecd45 + GCO_1 + + + + + 1e1b1da3-9ee1-1c5c-17ea-1f8166620cb3 + Grafisches Netzelement261 + + + + + 180 + 97ebc341-7f06-b267-a060-fa32e702bae8 + Grafisches Netzelement574 + + + + + 167 + 43076051-64ab-6897-cc8e-a44770f6dfde + Grafisches Netzelement389 + + + + + 256 + 50fde168-cb49-a8c1-8a26-13f0ef001d38 + Grafisches Netzelement406 + + + + + dbcab6f7-081f-78ff-3529-834bc948850b + Grafisches Netzelement138 + + + + + ab942d39-e616-b1d9-e6f3-a9137a5db715 + GCO_1 + + + + + 174 + ddb2a399-a342-6c0b-c954-bd8a083644f1 + Grafisches Netzelement387 + + + + + 503b03da-c02c-075e-885b-26c5c7199b5f + Grafisches Netzelement559 + + + + + 126 + 0f737195-16e9-a049-b584-03e2ff7de67d + Grafisches Netzelement370 + + + + + 5 + 0334f921-1bad-e866-4301-946f009d18dd + Grafisches Netzelement423 + + + + + 2db0d43d-7f7a-2f9c-d781-89b0290ec10c + Grafisches Netzelement259 + + + + + bb69c1d9-3b62-e8eb-1d4a-b2da40fd3c3e + GCO_1 + + + + + 40 + 0550ab49-71c9-27f0-c2e0-c445085dff24 + Grafisches Netzelement383 + + + + + 180 + efc0d999-5af7-6198-e934-8e22e8803f8d + Grafisches Netzelement577 + + + + + 798baa77-db17-3b9f-b181-1b9fd08f92d8 + Grafisches Netzelement172 + + + + + 260 + d74e241d-ae6c-5e5a-2a9e-bd1d183bbf5e + Grafisches Netzelement404 + + + + + b6d3bc03-259e-8aa7-41a1-94ad22a0787e + Grafisches Netzelement176 + + + + + 71514ae6-dfb0-e6f4-deff-23d5ca7972c2 + GCO_1 + + + + + 108 + bc064fe2-fcc5-54f5-8858-4b5c39a711f2 + Grafisches Netzelement349 + + + + + 439efbe9-7f8b-77d6-db1a-b679142b5a8c + Grafisches Netzelement582 + + + + + 432a391b-a857-02a0-5ee2-cab2cd79a359 + Grafisches Netzelement141 + + + + + 2499adea-6593-cacf-6b40-6784e1b179c3 + MV3.101 Bus 20_Graph + + + + + 90 + 552274a0-723c-a939-d058-4df287d58d55 + Grafisches Netzelement432 + + + + + 9db0660e-c02e-ba8d-e538-dcb10a17b4d6 + Grafisches Netzelement163 + + + + + 1d9934f7-bbc8-a1a7-e6e0-e8a727d0215d + Grafisches Netzelement605 + + + + + dcbe62fd-112c-efee-8433-49df987b1b66 + Grafisches Netzelement147 + + + + + 380c4b44-d926-c7c1-088e-1d35ee7fa934 + GCO_1 + + + + + 340 + 793e44e5-7253-bd85-f170-f3b2ac1dea9e + Grafisches Netzelement458 + + + + + 9c09a71e-d803-1e47-560a-38d5a630bf00 + GCO_1 + + + + + 229 + 2cf6d2ab-f068-1a4b-e410-c71e51074960 + Grafisches Netzelement431 + + + + + 180 + 19ece575-359d-8297-42ab-eac2ef3c98fd + Grafisches Netzelement515 + + + + + 009d19a9-b066-0c8c-1cf3-4d545ca6edad + Grafisches Netzelement604 + + + + + f9315997-d0b6-a240-3819-49672cc1eba3 + GCO_1 + + + + + 175 + e4295646-6e7f-97d9-8a47-52faafdf4243 + Grafisches Netzelement353 + + + + + 276 + 7ebbcd5a-d845-412c-d4f9-7e82ad00d286 + Grafisches Netzelement441 + + + + + c755be90-29b9-986e-bb69-fd1edf6b1d61 + GCO_1 + + + + + 207f386f-501d-b33c-a736-c612a32782d0 + Grafisches Netzelement164 + + + + + 243 + 5ee27373-bc9c-4481-2493-e448e10e203e + Grafisches Netzelement429 + + + + + ee7ec4fe-34e0-be3d-6dfc-aecce518d5c3 + GCO_1 + + + + + 180 + 95a0014e-f76f-ec31-4f57-3df381d1676b + Grafisches Netzelement566 + + + + + 159 + 8536fd8e-f2bd-6b5a-4fa8-b19f3e8cfdbc + Grafisches Netzelement395 + + + + + 167 + 8057984d-3110-f0a2-151a-1a84e494d8be + Grafisches Netzelement357 + + + + + d45d24ca-c60b-fa95-b8af-1bb7e7e32cad + GCO_1 + + + + + 0851624b-73cd-2f18-31af-fb5deff4fe5b + Grafisches Netzelement153 + + + + + 8 + 71b3b8ff-6931-39d0-a638-b6e4c026b865 + Grafisches Netzelement410 + + + + + d5e02112-a549-0c3a-342c-ade231cd5066 + GCO_1 + + + + + 180 + 527dc39d-3d19-9bd0-14f0-9ced1ae924a5 + Grafisches Netzelement607 + + + + + 162 + 8ae6646b-5d0d-2869-1ab4-c3d86ac42f93 + Grafisches Netzelement378 + + + + + 9e2d66d1-c75f-4e3a-6b66-33161637079c + GCO_1 + + + + + 253 + 9db6ed1b-5767-77ec-1925-3ffe2f455148 + Grafisches Netzelement414 + + + + + 3f5d9eff-874f-3ffa-c488-7fd525a03334 + Grafisches Netzelement139 + + + + + 4c831559-958d-1662-4fca-4cd4b26f0b6d + GCO_1 + + + + + 45 + 00e9d7ed-fc77-ebf2-87e7-0af9e9d85c98 + Grafisches Netzelement450 + + + + + d9dcc0ec-1a4a-cf22-02fe-1762703d9c8d + GCO_1 + + + + + d9c35df1-6122-5668-30e6-c9c60f4abe83 + Grafisches Netzelement552 + + + + + e2187b1d-00e3-daa9-65e0-8345922918e8 + GCO_1 + + + + + 15a279d7-91e5-a2bb-b21b-9eb3a5c2425f + GCO_1 + + + + + 148 + 7a056685-10d8-a339-44ad-5225a08f974c + Grafisches Netzelement364 + + + + + 246033ba-0eea-a7d5-177a-1277146410ae + GCO_1 + + + + + 4e041c4e-45db-1088-8136-811f82747e82 + GCO_1 + + + + + 093a08be-a86c-bc01-eba4-00bb3fa18439 + Grafisches Netzelement594 + + + + + 216 + a0e2e305-38ff-8bdd-00c4-4e20b92583ff + Grafisches Netzelement444 + + + + + 87522461-c0c2-e0b9-eeb2-1e2840ae5f0a + GCO_1 + + + + + a258c16f-1ffc-ebd7-5ccc-7a8e9a0a892d + GCO_1 + + + + + 118 + 43bb3dec-bc76-47bf-42c8-a0a75848c907 + Grafisches Netzelement356 + + + + + b7773f83-1258-8388-f0a3-0a7a6c51884e + GCO_1 + + + + + c79dd5c5-1a0e-985d-f811-b04aea2aedb1 + GCO_1 + + + + + 78 + 2212260e-4a87-5306-6317-eb71a077bb1c + Grafisches Netzelement425 + + + + + 0ebba5fd-bc4d-5800-ce2d-122d916ddc65 + GCO_1 + + + + + e3d8770d-3066-c37c-d266-386ba04a06a5 + GCO_1 + + + + + 238 + 6764c290-9056-28be-5db6-0ca75670c626 + Grafisches Netzelement409 + + + + + b3430abf-a800-2d53-463e-5568f903a9f2 + GCO_1 + + + + + 110 + 3e9ca4db-ab0b-5d19-3073-41e2f5d2aa1a + Grafisches Netzelement397 + + + + + 8863f5bd-de39-c101-f741-c974b1ed0291 + GCO_1 + + + + + c864398a-7358-b95c-4da1-827bda185ba0 + GCO_1 + + + + + 87 + 62c29592-87c0-4293-3f3c-baf9dd7208dd + Grafisches Netzelement446 + + + + + 48c8e757-ffac-0a72-c119-094df399ac7f + GCO_1 + + + + + 4a6dd3c7-1c40-416c-d60e-0b0d7268a8bc + GCO_1 + + + + + efee5082-227d-30c5-0f89-5e2ad851bc69 + GCO_1 + + + + + 261 + 5240f959-6c38-d5fc-5bf0-4cad66e8382d + Grafisches Netzelement427 + + + + + 5f300a24-8591-83af-b110-36102adb6b15 + GCO_1 + + + + + 119 + 889f189f-9e65-030d-d791-391731c31263 + Grafisches Netzelement391 + + + + + 37a49993-b728-7c4d-9d48-277137e95fd6 + GCO_1 + + + + + 8850900a-3f17-4c9a-eea7-be47afe6cfbb + GCO_1 + + + + + 337 + 70686fcd-bbb3-eef6-e4d0-8fab6e4b3aa1 + Grafisches Netzelement456 + + + + + b1cfd87b-39e1-8eb1-4577-551ce9fc739d + GCO_1 + + + + + 039d5a54-2078-fab3-6273-152565cc6908 + GCO_1 + + + + + edd7f2d0-135d-1aec-c54b-b923ff820026 + GCO_1 + + + + + 297 + 35c994b7-d637-791a-b2e5-01a24150f0af + Grafisches Netzelement421 + + + + + b60415b2-eaa2-9dff-c837-9ac1d6f36423 + GCO_1 + + + + + 186 + 60b62eeb-8375-843a-21bf-c75094bb5e6a + Grafisches Netzelement347 + + + + + 22f85d47-4593-ed7d-7c9f-13fdac0caa32 + GCO_1 + + + + + 5fa2dc96-f10c-6c78-253d-bcbdf913dfcb + GCO_1 + + + + + 28232438-5f8c-0e38-95d6-4e88ee531f3c + GCO_1 + + + + + 216 + 38d98476-cd03-286a-cc80-bc939caba0d0 + Grafisches Netzelement473 + + + + + 27d446fa-ff26-6355-47f1-4a74651b6ab6 + GCO_1 + + + + + 90 + eb1692f5-2d58-7cae-90fb-5b792cd68600 + Grafisches Netzelement335 + + + + + f650c26d-278d-68cb-ea4b-1ab507ec81aa + GCO_1 + + + + + 125 + 7e981c19-db54-5010-b5cd-060c5be082a8 + Grafisches Netzelement377 + + + + + 78063407-499f-4bcb-682a-cf09ffcb2d7f + GCO_1 + + + + + 237d2a30-981d-745d-6e63-60eb44cbe7a4 + GCO_1 + + + + + c9721d6d-7567-254d-189c-ece9bcc5394a + GCO_1 + + + + + 66 + 2ab38423-8ae4-e775-d0eb-941698c266bc + Grafisches Netzelement470 + + + + + 28ee1fb2-ee2d-39a2-2caa-c63cfe04a61d + GCO_1 + + + + + 225 + 54f05bb3-073e-0c8a-2436-989f02b85f9c + Grafisches Netzelement386 + + + + + a5e1b732-e5a8-cf32-55ec-5248e8440f95 + GCO_1 + + + + + 78584edd-d481-46fc-d0d7-55f64a2bba16 + GCO_1 + + + + + 135 + d42e389a-f112-d4df-3800-aa49fc4fab2c + Grafisches Netzelement375 + + + + + 60bc053e-7e24-2f6b-c1ce-859521120167 + GCO_1 + + + + + 4e3bdcf0-c729-3757-1257-207fc889a0dd + GCO_1 + + + + + 47ab0734-393f-d2d3-e5cc-7a1d53f20a08 + GCO_1 + + + + + 54 + 7fc9a01e-11e7-a183-20e6-60352bc0643d + Grafisches Netzelement472 + + + + + f79b2dff-a808-4350-3087-646163c2bfb4 + GCO_1 + + + + + 247 + 4e7791d0-4047-c7d4-51ce-0e6635033b76 + Grafisches Netzelement437 + + + + + f3468bfe-a05b-726b-2643-68c7f4a2aebd + GCO_1 + + + + + 105 + c09a89dc-d26e-ff9d-d23f-d0b20e410171 + Grafisches Netzelement354 + + + + + 8970037a-4f8c-9312-8eef-77ba05531a24 + GCO_1 + + + + + 3c828776-9ef0-9d00-cafb-bab8d22c002b + GCO_1 + + + + + b88b7f7f-aac7-a6f5-5768-14f13586b5bf + GCO_1 + + + + + 25 + e69c82cb-e294-1acf-3691-9ec058efdafb + Grafisches Netzelement452 + + + + + 91008c71-ce93-3dd2-15e6-61f9f30a7efa + GCO_1 + + + + + 449b91ce-d056-fa85-7025-25baaa5e239f + GCO_1 + + + + + e1ecb8ab-8c96-3ded-8358-89dc2e6a9dcc + GCO_1 + + + + + dbda7c76-c0bd-adde-016c-25d6f70f2558 + GCO_1 + + + + + a8bd8612-9e74-24a1-3aa1-8b1ccf1dd3e6 + GCO_1 + + + + + 161 + 62f9ea20-2630-82e4-9534-e8586d1e17c5 + Grafisches Netzelement374 + + + + + 8af993a6-db95-0f37-5822-38f3e5146d14 + GCO_1 + + + + + 328 + 8a419a59-4e32-f861-1c5f-ea8e688a91db + Grafisches Netzelement408 + + + + + b6330441-3cbc-7e21-2f4d-9dc52292b1b9 + GCO_1 + + + + + d92acd52-f83b-cf55-292f-c423aad5c0a0 + GCO_1 + + + + + 730ec781-b8ae-ca01-b71e-abb4f2322efa + GCO_1 + + + + + 8c711b43-c3ff-a446-9fca-810df952796c + GCO_1 + + + + + cc20dbd6-36c4-6b0d-7a19-6b399c6ef258 + GCO_1 + + + + + 229 + e3033a98-c4a9-e7b3-7ef5-312adbf10c05 + Grafisches Netzelement376 + + + + + 46b13e52-407c-d0e4-f7f4-692908809575 + GCO_1 + + + + + a21442df-1786-7304-46e4-22761f143748 + GCO_1 + + + + + e5d2ae85-66be-b038-9ecb-fe2a8c1b6143 + GCO_1 + + + + + 70e62232-7c00-ab60-0c7e-6743c1cb6cd3 + GCO_1 + + + + + 43d72f35-c360-fe31-f14e-af7b2c92f05f + GCO_1 + + + + + f71d07a6-675c-2b6b-7fbf-67167fa5c3be + GCO_1 + + + + + 29e801e0-31ef-b32f-3f9a-bca4cac03997 + GCO_1 + + + + + 9c0ba0dd-d0e6-1b7c-12f8-9f3077293d1b + GCO_1 + + + + + 6cd32d15-5548-0be0-6a57-0a6a8b78806a + GCO_1 + + + + + e7c3fa37-db03-02b4-b9c7-d64e9744740d + GCO_1 + + + + + a3f0344b-a578-1e85-24c2-7c40ed386d6d + GCO_1 + + + + + 9893dee9-e121-52b2-83f5-7838f5361782 + GCO_1 + + + + + 27 + 6371bb96-57a4-7678-b5c4-ced2126d0a77 + Grafisches Netzelement455 + + + + + c8d5bd65-c0dc-dfd9-470c-e2f2433cd35b + GCO_1 + + + + + 4afc4855-84f3-2503-b05a-295d724efaf9 + GCO_1 + + + + + b4509737-b83b-c4a3-b83d-904ccaefe27d + GCO_1 + + + + + 21402b58-a720-e67f-16e0-290fe390a149 + GCO_1 + + + + + a26994dc-23c2-7610-9549-d10bb0f372ae + GCO_1 + + + + + 123b7856-c134-fb90-88d3-a348a82f2e3f + GCO_1 + + + + + 31805bef-a47d-d455-106c-7276e2226145 + GCO_1 + + + + + 25 + 459cfc1a-26ca-4ca2-4571-ee88e65341db + Grafisches Netzelement454 + + + + + 5ffb9a68-1b29-7616-8119-7e2403874023 + GCO_1 + + + + + a62484c0-f0ac-2894-6d89-7e62ca837900 + GCO_1 + + + + + 1dad68c5-2fe9-c4aa-c5dc-247e4ba45382 + GCO_1 + + + + + 46fd3328-919a-cca6-a9e6-5e8e15dd4ac8 + GCO_1 + + + + + 27 + a7d1565e-c966-c9df-37a7-73d09bacdf82 + Grafisches Netzelement463 + + + + + 36c2dd4e-aa54-4325-4a1f-57bce6bd551a + GCO_1 + + + + + 74519a92-6321-cb1e-d3d9-5d8a7d11ae9b + GCO_1 + + + + + 177f368f-4a23-038b-317f-76f08dd0133e + GCO_1 + + + + + cfaf9c76-c1f1-3ddd-a922-1b78091faaec + GCO_1 + + + + + 8e905576-a15d-a25e-699b-f3bdbb482ca9 + GCO_1 + + + + + 130 + db0253d6-5395-7a32-5443-c8cbc26ffa43 + Grafisches Netzelement461 + + + + + 180 + 76810ee5-4880-701a-9f6d-d2b72f3af882 + Grafisches Netzelement333 + + + + + 7481f875-8a30-6494-db8e-f04c0845eea1 + GCO_1 + + + + + 01f963ee-5f5f-6539-9ef7-f235d9ee1437 + GCO_1 + + + + + 2256626d-2e6b-ae24-f881-22aa234f12fd + GCO_1 + + + + + 350d3b56-37f4-f8b3-1d70-035ed262b15d + GCO_1 + + + + + 0d49fefc-057a-9293-687f-4b1ce606ab64 + Grafisches Netzelement459 + + + + + e0cdfc89-baf6-5874-c3d3-cd1c31846124 + GCO_1 + + + + + 180 + 9394655a-79fa-4a86-4c3c-a49fdcbc907a + Grafisches Netzelement288 + + + + + 420e0dcd-c897-e093-9de4-723398e67c75 + GCO_1 + + + + + fe065f19-8c5e-aa6f-1095-c4f2e4645367 + GCO_1 + + + + + 017d8395-83c2-0735-a17b-d49390b6644c + GCO_1 + + + + + 75adfd5c-90d3-3917-e9ae-07063d86a0e5 + GCO_1 + + + + + 83 + 192de97d-e940-31e7-15c0-70761246e9c7 + Grafisches Netzelement460 + + + + + 180 + b3e3269a-bee7-f287-049a-d2e3e7c3ed03 + Grafisches Netzelement334 + + + + + 066e2aa0-5540-af7b-15ee-2fccd7553c77 + GCO_1 + + + + + 06ed5053-b27a-36f1-ff39-33259fd1a2cd + GCO_1 + + + + + d132d6b4-7786-c901-ad6c-94784fcee0ba + GCO_1 + + + + + 2bb9769b-3bc5-f51e-3eb8-858dab0b3f36 + GCO_1 + + + + + 84 + 262c3b48-79fc-65f4-0ca8-99e69845c115 + Grafisches Netzelement480 + + + + + a09ef301-6b45-f83d-a15a-54d71720bb83 + GCO_1 + + + + + bc9f99c7-050b-e674-fc83-08ef48349edd + GCO_1 + + + + + 180 + 29713c3a-ad66-71ec-98a1-71ca2767746c + Grafisches Netzelement287 + + + + + f4f19e03-cc0a-3eff-0a4b-77eceb782813 + GCO_1 + + + + + 1609fc45-ccc9-2499-090d-2cdb6dd22cdd + GCO_1 + + + + + 61 + 3674655b-5cbd-8759-d06b-555c0de49a88 + Grafisches Netzelement474 + + + + + a1bccacc-851e-fc88-784a-b71cfeaff9d9 + GCO_1 + + + + + 5acb383b-e469-1ccb-f4a2-c0839f85c5eb + GCO_1 + + + + + de515879-e112-4267-1b45-e3dd484b43b0 + GCO_1 + + + + + 180 + 45b212a2-d69c-1dcf-e314-c0dd72063430 + Grafisches Netzelement283 + + + + + b9c3d6d7-854f-285d-c41c-e55405060cc3 + GCO_1 + + + + + 804cdc6f-3f35-aceb-7ec4-637827c933f8 + GCO_1 + + + + + 9c1d3407-1562-f65f-f09d-bb35e2ef9fef + GCO_1 + + + + + 3b63ebe4-17fa-af13-893e-dcf2ecb0cb59 + GCO_1 + + + + + 280 + c35d8504-b79d-4931-7d31-888c0312b6df + Grafisches Netzelement479 + + + + + 9d00fed9-984e-45d8-fb06-6c3cbba0593b + GCO_1 + + + + + ca6d72e7-6010-cd68-22a3-75e02fbe6798 + GCO_1 + + + + + 180 + be13c5c3-576e-a6a1-aa79-073f20d7f436 + Grafisches Netzelement281 + + + + + 721aeb99-d383-ad0c-b7d1-dddd2ca5114d + GCO_1 + + + + + 7f30ce21-849d-434f-a93f-1e9ecdffa4e8 + GCO_1 + + + + + 5f285835-ee05-f3fa-bbfe-fa791eb37ed4 + GCO_1 + + + + + 4e821239-4e5e-88d9-8648-766fc5717841 + GCO_1 + + + + + 306 + 8b10cbf6-f584-5b49-e5ef-589b6de04571 + Grafisches Netzelement457 + + + + + c1a54363-949e-b714-6ecf-4864ba4a0461 + GCO_1 + + + + + f0042762-98c6-8458-387c-39489705907d + GCO_1 + + + + + db3cd148-7743-cd9b-4eed-a0abe3016338 + GCO_1 + + + + + 1790d636-c7de-5856-5a05-2ddc686deda1 + GCO_1 + + + + + fb1cd3aa-6392-f406-2b23-b1c567dfa4c2 + GCO_1 + + + + + 72472dd3-70c8-cc48-6a86-0801aa8a111c + GCO_1 + + + + + 3 + 18257ac4-8619-33c5-a290-a4ee7bc9f680 + Grafisches Netzelement449 + + + + + bc8e84cd-6053-0c46-5a83-a0331132ffe0 + GCO_1 + + + + + 207 + b2882fa1-c0d4-b06f-3ba4-dd0048fde27f + Grafisches Netzelement381 + + + + + d7cff906-e951-e7bb-69d3-7deb3b685bc1 + GCO_1 + + + + + df236470-83d2-4316-ab73-8082e11c5335 + GCO_1 + + + + + a7a55a37-79ec-ef06-502f-78e2f6f18beb + GCO_1 + + + + + 9511f07f-ceb1-a82b-fc1d-35526c723351 + GCO_1 + + + + + acf8122f-68ae-d534-2b9d-d327aa48baf4 + GCO_1 + + + + + 238 + 81a8042a-3499-d880-cfcb-17404c933395 + Grafisches Netzelement478 + + + + + f5d138d9-4f15-388e-d606-1e59446e9af7 + GCO_1 + + + + + 8d9be6c4-893f-ef1c-ae3c-f8e9fc76d1f8 + GCO_1 + + + + + 5252c7c0-025a-6794-a8a6-400253788f93 + GCO_1 + + + + + 78eca523-fa86-b7ab-7b23-04bb41355cab + GCO_1 + + + + + b299b248-1840-f258-c442-647cd7157a4a + GCO_1 + + + + + 06bd6a1f-9ec0-1a69-954f-0b4b181f3313 + GCO_1 + + + + + 4c8cd9b9-7b75-8e8e-44ed-a02f741884b1 + GCO_1 + + + + + 23 + 4b22d160-6fc6-d1ac-90f8-cfc1e792cc53 + Grafisches Netzelement412 + + + + + f9111711-5b2f-0f55-0f72-4f4e6a1c562a + GCO_1 + + + + + 04318b1d-ad46-44e2-3483-303b08c7b8e2 + GCO_1 + + + + + 24cac968-ab82-4ef2-a437-7dfc655b3fc6 + GCO_1 + + + + + 258cd841-6b08-380b-9843-a526f1bd03e8 + GCO_1 + + + + + 207 + b6427d24-77bf-f907-3db2-bcea6e55f674 + Grafisches Netzelement438 + + + + + 180 + 0cdb1c01-0132-956b-c7b1-db023dba3d04 + Grafisches Netzelement282 + + + + + 91c737bf-2176-3709-6bdd-fd6e088260fa + GCO_1 + + + + + 77 + 7983e727-cd73-6bea-a673-91868802c146 + Grafisches Netzelement465 + + + + + c47c959a-fc10-16fd-ea8b-10a4241a997f + GCO_1 + + + + + 1a9425a1-83b7-972c-157d-6b46d7539144 + GCO_1 + + + + + 83dde677-f94b-9767-2690-e7f9ed8ed6c8 + GCO_1 + + + + + 352 + 7ceca749-3ffd-b346-91fd-bbbbe9bb1d8b + Grafisches Netzelement434 + + + + + c1d7ccad-3db2-2d28-7404-06ef5d39085a + GCO_1 + + + + + 180 + ad633bbb-5f10-2acd-1a78-813f529600df + Grafisches Netzelement326 + + + + + 57 + 690580a4-54b3-121a-f311-0a4349a3e508 + Grafisches Netzelement471 + + + + + 84b45eae-a9f4-b3ec-b369-5ae790cd5716 + GCO_1 + + + + + b0c1fcde-204c-2e60-1503-2e4a1c24cc3e + GCO_1 + + + + + a135d142-d148-bf2d-367a-3a730a62bf7a + GCO_1 + + + + + 1fdec8b9-75f5-eac3-f991-dd1aff61f847 + GCO_1 + + + + + 253 + 6a43a0e8-91d5-10e4-5738-9acbb68370ba + Grafisches Netzelement453 + + + + + c875848c-cd3c-92b5-bb36-f4e7a96bbaa4 + GCO_1 + + + + + 6d346b68-356a-c85a-5622-581540901842 + GCO_1 + + + + + 143 + e33a6785-40f2-e533-deb8-a236b2fdb5e3 + Grafisches Netzelement475 + + + + + 7e28b223-b0bd-f5b4-346a-16d36fffdebf + GCO_1 + + + + + 59c40286-a3ac-887c-8dd1-7a1d5712f71e + GCO_1 + + + + + 8cb5b84a-dcec-7a43-c12b-cffb586c1438 + GCO_1 + + + + + a4fea0a7-0271-b378-edb3-4212c13bae9f + GCO_1 + + + + + e845002f-9c05-1028-a9e0-df0e81bcd2ed + GCO_1 + + + + + 124 + 3fce5d96-77b4-9eda-b073-ffa2d9200eeb + Grafisches Netzelement451 + + + + + 9dc9fca1-4d77-4c39-b7dc-35349b786791 + GCO_1 + + + + + 5f76b0d2-da58-98e7-e6fc-4a1b29a3cf58 + GCO_1 + + + + + 30 + 6cb1b4c6-55be-9a43-637d-625a92537845 + Grafisches Netzelement462 + + + + + 6eea0564-85c4-dda4-b3c0-06e099853df4 + GCO_1 + + + + + 837dd4dd-cf33-bdd3-3ff9-31920823d11e + GCO_1 + + + + + 05513653-7f6f-a154-f5b9-1dfc56aef155 + GCO_1 + + + + + 62571880-8a15-2299-cc88-48ca8be96179 + GCO_1 + + + + + c59fa4c7-a90f-71f9-f08b-5fb80bcf5d28 + GCO_1 + + + + + 197 + f420670e-a5bb-1785-456a-f2955dd8ea2a + Grafisches Netzelement415 + + + + + a3784ac3-d08d-800a-2de4-7d2b93f7577c + GCO_1 + + + + + cbd5b7df-7a10-4d79-f6c3-05882dfb962e + GCO_1 + + + + + ffe80690-a0a8-570b-59a9-8229849dac5e + GCO_1 + + + + + 35c03969-f87a-b192-8527-2e1c2a7a8237 + GCO_1 + + + + + 3 + 541b38d1-1a3f-da3e-71f6-36b4fda840c8 + Grafisches Netzelement448 + + + + + 60aa7597-aae0-1c93-54da-1b079e781015 + GCO_1 + + + + + 6343a4a3-e635-006a-377b-a3047dde37f9 + GCO_1 + + + + + 50376ebb-8e37-4ef8-c1b6-a40937cbf3d5 + GCO_1 + + + + + bda880c0-a57a-165c-ba8c-9186166fc832 + GCO_1 + + + + + dc62804c-47fb-4eea-4fc2-2316ae0e1816 + GCO_1 + + + + + 238 + 54144aeb-623f-e28d-48f4-33b76060a44a + Grafisches Netzelement420 + + + + + 233 + 898265dc-a056-4dfd-dfd3-95efc4f6caec + Grafisches Netzelement468 + + + + + a167f8ae-6246-6690-5fc8-a4bcf444f540 + GCO_1 + + + + + 5da71637-c523-ec25-c170-086b5a03ec39 + GCO_1 + + + + + f4ad0d8c-ab6e-d6b9-0c57-7ebdff9a8578 + GCO_1 + + + + + be5dcb58-216b-989b-36a4-9ceaf8a48778 + GCO_1 + + + + + fce1f53e-4631-1cca-1048-34ed172abb93 + GCO_1 + + + + + 241 + f26ddedf-9d38-9957-d221-99e0632a1d82 + Grafisches Netzelement398 + + + + + 9 + 8f7356c7-46df-2ea1-25f4-155f20c63ca9 + Grafisches Netzelement411 + + + + + 4b20e1cf-a3b2-e9ed-9725-1ef7afec1a4f + GCO_1 + + + + + f5a2a1aa-fad1-1ff3-7a7b-1debe6013522 + GCO_1 + + + + + 2d287d21-70d4-79c5-984b-eef9f8e44a53 + GCO_1 + + + + + 2ca5433e-73ce-0680-b668-abca8adf2640 + GCO_1 + + + + + ee1c9465-7c15-b8c4-8b6e-291838ab5d7f + GCO_1 + + + + + 239 + cf5180b5-feb5-682f-fb6e-5ae585ebac3e + Grafisches Netzelement400 + + + + + c9ece65e-740c-ee21-91f0-4ffd51f8a4f6 + GCO_1 + + + + + 45 + 5819d873-3fb7-0b8a-867f-a50cfceae8f2 + Grafisches Netzelement477 + + + + + 03e81cbe-9f39-293f-797f-f423f65534df + GCO_1 + + + + + 74192b65-e4f0-c2b4-5f70-5bae848be419 + GCO_1 + + + + + a10c33b6-7ed4-4076-a8dd-044831a855bb + GCO_1 + + + + + 935b2cce-ddaf-e505-3abf-56ae90c4ab37 + GCO_1 + + + + + 38d5d9ce-5bf9-3add-33ce-bafd15e0bff9 + GCO_1 + + + + + e6046db5-0d89-1c0b-39a8-191af81b5c6a + GCO_1 + + + + + 278 + def612a2-57de-a3a3-9272-cb572dc11e39 + Grafisches Netzelement341 + + + + + 7ed94c91-ee74-92f1-c106-0ba5ed9cf697 + GCO_1 + + + + + 191 + a127cb84-ee4c-06eb-b97c-417f81e93b0e + Grafisches Netzelement469 + + + + + 0d6b4c17-0583-f225-c3c2-68d109306fa1 + GCO_1 + + + + + 948ea29e-223b-f10e-4a7e-c83af18f2223 + GCO_1 + + + + + a4fef77f-b9d8-e341-6151-78a382022777 + GCO_1 + + + + + acd00178-e731-f68c-4f60-572276461700 + GCO_1 + + + + + f10af65d-54a0-b1db-7539-544164763438 + GCO_1 + + + + + 243 + b436db9f-a48d-935b-f9f3-653b993a98ed + Grafisches Netzelement413 + + + + + 4c58919b-5d91-2c3f-a6b5-bcb555f48e1b + GCO_1 + + + + + 153 + da6edf7f-8a9d-2eb0-14a5-6bd491f019f4 + Grafisches Netzelement464 + + + + + 2e3abc14-c6bc-c152-6684-1a7b13e2ada3 + GCO_1 + + + + + a3529014-76f8-6cd7-0e88-71a14ff51200 + GCO_1 + + + + + 1afcfc7b-8b6c-b396-8978-ebd3268a1cbe + GCO_1 + + + + + c9d1c81d-402f-2bee-7ec6-596dcd6d5626 + GCO_1 + + + + + 945d184e-1513-e09b-12a3-470aebb10cf6 + GCO_1 + + + + + 2470b3c1-f884-4ce5-8d3b-796e1e2871cc + GCO_1 + + + + + 241 + 2f674407-bdd2-158f-fe00-434369e57e26 + Grafisches Netzelement416 + + + + + 982041d3-8f2d-3a4f-0fa0-2a05fa835de1 + GCO_1 + + + + + 67 + 9771adf0-d124-3a6e-a877-1017def3c073 + Grafisches Netzelement476 + + + + + d5e4d092-f4c9-d060-ca98-8dfc833bd97e + GCO_1 + + + + + 5822ee13-effb-96fc-f613-87fbaedd7b59 + GCO_1 + + + + + 83f5f6e8-66e8-6c34-6ed4-57c318858650 + GCO_1 + + + + + 2c737172-967c-8ee0-dcfa-91255622142e + GCO_1 + + + + + 8939ad5c-4139-bbfb-5e3e-ea843fba8d15 + GCO_1 + + + + + e84485da-c6f6-cdb9-7d42-9128a64f6fb8 + GCO_1 + + + + + 45 + b0cc5984-49b1-7624-a49b-33e2fe1e5129 + Grafisches Netzelement430 + + + + + e10d5f1f-b759-bb88-e45b-64e5b11b1bac + GCO_1 + + + + + d39e1cdc-6e12-902f-b4b7-a6bec2f76d5f + GCO_1 + + + + + e747e502-082b-0f87-7733-dc0287e6ede2 + GCO_1 + + + + + c30bfadd-44c0-ac00-85ee-8e1ced6c53c0 + GCO_1 + + + + + a0df7bc5-98b2-ab0e-9693-a2eaa4a4ec59 + GCO_1 + + + + + 72 + d877bec6-d806-ab76-207e-48df15217ad8 + Grafisches Netzelement407 + + + + + 62d782ae-f7b6-fdb6-c0f9-50d01254e4d6 + GCO_1 + + + + + 2e27987c-c765-dd84-1161-29d8fb538678 + GCO_1 + + + + + 476b7634-7a69-eba1-c71e-22fc9ef2c608 + GCO_1 + + + + + a5ff5ed4-4960-40c5-28fd-0032cb6a0773 + GCO_1 + + + + + 84d4fedc-aef7-3c32-97c9-e2eb4637c38a + GCO_1 + + + + + 378e0b22-353d-4140-ecff-0c3ac6fb90e0 + GCO_1 + + + + + 64eea0e9-48f5-15f6-ac63-64974c03e743 + GCO_1 + + + + + 4a9d33cc-cad0-5916-c560-b994636a160f + GCO_1 + + + + + 1f6c42ca-dd3a-f43f-75f2-ff4a88874738 + GCO_1 + + + + + 78078d42-68dc-05ba-0c52-f79cae7f7830 + GCO_1 + + + + + 85e60ef2-557e-f394-43d0-1eb6aec3bca1 + GCO_1 + + + + + b3835e46-bb4d-2ba0-f135-ae338213f7c5 + GCO_1 + + + + + f44dc973-5719-e7d9-90a0-094bc46bafbc + GCO_1 + + + + + 9ea6db50-f618-9ae0-593b-90f04b27a031 + GCO_1 + + + + + f909b2e0-75d4-65b6-c13e-d417c690d6fe + GCO_1 + + + + + 0e950d11-1c49-4cd9-7697-80424d01d071 + GCO_1 + + + + + ceb381c5-dc28-6572-2e6b-2a24d0dd1e5f + GCO_1 + + + + + ddae8322-9a52-2dfe-b76b-cb21a5aacb08 + GCO_1 + + + + + cb7eef77-3969-c4c9-8493-a4cf92f5495b + GCO_1 + + + + + c4bced24-6ec2-76d4-e2b1-a6b7d2970b2e + GCO_1 + + + + + 4d0eaeef-076b-bfa8-4da7-209961ad4707 + GCO_1 + + + + + 5dc93e0c-934b-7672-30b0-eb87f565a613 + GCO_1 + + + + + 822c5187-1d5c-adc1-ac80-235ad240b57e + GCO_1 + + + + + 7076b153-4593-5fa3-592d-1f02d02e5d5b + GCO_1 + + + + + ef21af11-d0de-cc4b-771d-9e29c872a8af + GCO_1 + + + + + cf5b51fd-56a1-af60-c55a-7ad59724f24e + GCO_1 + + + + + e4a805c4-a0ac-ff27-f08b-7d278cf211ed + GCO_1 + + + + + eb58aeaf-fbc1-fe3e-bd77-72b97e7cc114 + GCO_1 + + + + + 2a59354c-7e48-344a-e81a-4c886697c96f + GCO_1 + + + + + 3879f3b0-206e-f457-3580-3dc1bf9d8ab6 + GCO_1 + + + + + 4cd45450-6190-fd51-418e-a60e7c228166 + GCO_1 + + + + + 95eb90c5-78ab-66ec-fad0-d9484f4c019c + GCO_1 + + + + + 6e3a6482-7f80-191f-0604-abe2cffe761f + GCO_1 + + + + + 3cda323a-1463-ffb0-8190-3b4efb0161a1 + GCO_1 + + + + + 8f3cea25-3dc4-dea7-779c-19e0ddb65948 + GCO_1 + + + + + 0584b00f-01f2-2cfb-c3ab-6fce1cedbc33 + GCO_1 + + + + + 24abb9b8-1e94-866f-ac63-aca9ad22721d + GCO_1 + + + + + db464ae1-70f0-925e-190c-63fe0d3ecf74 + GCO_1 + + + + + 39f9e510-24dc-d422-01e0-e08cecd8490f + GCO_1 + + + + + c4f200af-1f59-4ffd-a9be-233c77a577a5 + GCO_1 + + + + + 5df0af43-dc1c-c3c6-c798-8f485445919e + GCO_1 + + + + + 122855b6-8fb1-3048-46c0-22c5f1cc08a8 + GCO_1 + + + + + 4565cf07-44ba-1b6f-3110-eeb25d964377 + GCO_1 + + + + + 2fd642b8-ced1-2cd3-e328-55d89e4afdb5 + GCO_1 + + + + + 27eb6813-26bf-0ddb-68bb-a7d6575ee371 + GCO_1 + + + + + bca25a38-d2a6-199c-f475-64f0a506a04e + GCO_1 + + + + + 82c3e583-677d-3d92-7245-9e02b00f229c + GCO_1 + + + + + 9ac9a3d2-c150-d6fa-688e-8615c92dc0ed + GCO_1 + + + + + c1f3f59e-49d6-960d-bb78-ce43c195230f + GCO_1 + + + + + 85d0d332-3d62-947e-14a1-1f7ffa130fc9 + GCO_1 + + + + + 9bdc172e-29a5-953b-355a-77c4310ca573 + GCO_1 + + + + + f37d583c-0374-852d-5646-fdf7e71dad62 + GCO_1 + + + + + d760bbf2-528d-1d6a-94e5-a4484263a26d + GCO_1 + + + + + 0cdaff78-7835-600b-1285-61b83e97e10a + GCO_1 + + + + + 97c0db46-1901-686f-5649-3207be786347 + GCO_1 + + + + + 855001b6-3abb-718c-eca3-ddbbadd44f9f + GCO_1 + + + + + 9d0dcd40-a574-ac8d-9423-00e09a7f2a15 + GCO_1 + + + + + 0bceb7fb-1310-31da-ac51-967c1ffc23cf + GCO_1 + + + + + 8fa23a08-c31f-51f4-a96a-70012e281a48 + GCO_1 + + + + + ea78982c-3a39-72ac-e9fb-89623b8912a0 + GCO_1 + + + + + 6dcbf0ff-4341-4c16-a4d2-ae5c4b2c46ef + GCO_1 + + + + + 1e28e6c8-4431-5ded-e35d-449ab6632f5c + GCO_1 + + + + + 914d6d5b-3252-9c60-43db-8058c5b25ca0 + GCO_1 + + + + + 54e4b8f9-c14b-f755-4154-f9a21ee732cf + GCO_1 + + + + + 5d576ab2-5b17-4022-8eeb-cce60272f781 + GCO_1 + + + + + c0bca73e-b49b-1e93-1f6c-a2b29775c020 + GCO_1 + + + + + 45951fb3-2ab1-f446-c59a-b38c06311ebd + GCO_1 + + + + + edc7c74a-8276-6dae-5feb-e3098021f732 + GCO_1 + + + + + bbeedc22-d46e-8095-80dd-0f6a861f7461 + GCO_1 + + + + + 53d5c0c1-9a0d-6489-2dcf-adac751ae552 + GCO_1 + + + + + febc7555-920d-9b9d-7249-8b4fc6d6641f + GCO_1 + + + + + fc219f70-7aa2-1e19-cc77-82992f64a8c1 + GCO_1 + + + + + d6432547-0d34-e4d5-a4c4-eeb60f7102f9 + GCO_1 + + + + + 8482f61f-1093-782a-d92c-cab7fac2602d + GCO_1 + + + + + eab1f291-b9d3-0463-e4e1-51dde71f15bd + GCO_1 + + + + + aad330c6-9cd8-4c1c-ccd8-00099074f891 + GCO_1 + + + + + 0a91b267-1eed-46ac-38f3-63803295e6eb + GCO_1 + + + + + 5f72678d-b290-5853-7943-33e0878b8e43 + GCO_1 + + + + + bb89b676-0be4-8de8-14a2-b2066fa56fa3 + GCO_1 + + + + + 3181b35e-dc42-a725-61a6-28d586605d72 + GCO_1 + + + + + e778d54a-6cf2-46a8-c89c-8c9e0fb3be89 + GCO_1 + + + + + 7f07febb-fb62-97b8-4424-1c173feb8c33 + GCO_1 + + + + + a16260cd-3d23-935c-8b86-36cc8a01e1f2 + GCO_1 + + + + + 2f1a3a43-d001-bb24-ba98-d9a9bbf87b7c + GCO_1 + + + + + 4538fb34-3cf2-e1ba-0eed-8ac1e66ff9bb + GCO_1 + + + + + 17ed6bd7-b6c7-5ca9-8e92-b4af9c533bf1 + GCO_1 + + + + + 6a8aef8f-300b-6072-5b16-f078e9842af5 + GCO_1 + + + + + 9d877a23-2526-d563-474b-8e6c37c94dcd + GCO_1 + + + + + cfa81819-f8cd-b510-25df-e532c60eb425 + GCO_1 + + + + + 6f3763f2-1c50-b287-f3fe-e68d3aa815f2 + GCO_1 + + + + + 0c410f96-d764-7b09-53fb-472cf41d259e + GCO_1 + + + + + 2f43f795-7f80-45d3-5104-a085c92d00ea + GCO_1 + + + + + 72ef4143-8129-0aa0-9ef7-ad25ad55c067 + GCO_1 + + + + + e684f1a5-ade5-ff06-7faf-2f1612bf2eb2 + GCO_1 + + + + + 0f88b663-a5ef-e844-e4d0-0e1d40dc3c08 + GCO_1 + + + + + 1f0e4e71-8e26-c794-55e1-68b59a652de5 + GCO_1 + + + + + 1e49433b-f0ed-c67f-fb24-6b3af2e99876 + GCO_1 + + + + + e47f6b66-6a5b-89ae-7bf2-a5018d37caba + GCO_1 + + + + + 7b9ddf17-0b41-766b-5b36-51abfc9182f5 + GCO_1 + + + + + 5c3357ae-050c-fab5-aa34-d6ccc00105cb + GCO_1 + + + + + 853e2ba1-f421-3fde-2d1d-5448c53546ed + GCO_1 + + + + + a36c3ff6-6eeb-5e13-972e-5eeb9724e12b + GCO_1 + + + + + cfff3ec6-df7b-26ac-e15b-3fb1002dec51 + GCO_1 + + + + + eeb98d71-4adf-6073-c341-a2b8b8f586da + GCO_1 + + + + + 71e887d2-f09f-f9cb-5756-2eb8b7b6bcd6 + GCO_1 + + + + + 41de1277-682f-6d13-7752-7fc393735063 + GCO_1 + + + + + f054716c-ee2b-c94c-3198-f3b3792579fb + GCO_1 + + + + + 86cf1542-1834-7501-9058-9f874911ba81 + GCO_1 + + + + + 54520f13-f32d-5210-fb10-e7d06d14f95a + GCO_1 + + + + + d0e34ae1-6bac-2408-35ae-f8ac4ec32a11 + GCO_1 + + + + + 4f144bb4-16b3-b8cb-ba30-91e8bbf02ce1 + GCO_1 + + + + + 861b11d2-c799-69f6-6df0-fbe7d1996c30 + GCO_1 + + + + + 154b2171-4de2-cb51-d9a0-f7545b1ac20f + GCO_1 + + + + + 36431d74-f41f-c54c-d4d1-63ff705bcd2f + GCO_1 + + + + + 86358910-7bec-7304-9ebd-2a7a6d8a6dc1 + GCO_1 + + + + + 7d574e77-1fd7-5492-112f-e960da98072d + GCO_1 + + + + + 925e9949-f6c7-4849-bcbd-256c42b8ef52 + GCO_1 + + + + + 1c67c7a9-3d40-c0c3-5d68-d504867a36c1 + GCO_1 + + + + + 1df12894-d423-8d97-6343-047bce430aab + GCO_1 + + + + + 36ef43b1-da47-eab1-e489-cbaefb63a06a + GCO_1 + + + + + 1440df2f-9588-c2f7-dfda-2657e1065ad0 + GCO_1 + + + + + 4bd215d0-924a-dfaa-c656-b8dac81e3698 + GCO_1 + + + + + 0adbd1d7-49bb-77e4-7b81-03ca7d4ccfec + GCO_1 + + + + + 5b15390d-70e0-cc39-886c-351cd977f6b1 + GCO_1 + + + + + 795a0e36-2f33-a7c0-7717-a7a97b69c71c + GCO_1 + + + + + 1a8d7372-ce82-6ec9-5fdc-664621bafb1f + GCO_1 + + + + + 937b6a19-1fd5-1004-5e11-bfaa6ce900c3 + GCO_1 + + + + + ffc7b48d-641e-93e3-6a32-72c98901645f + GCO_1 + + + + + 3fe4ae52-5756-5df4-40db-2a46e2bc2b3a + GCO_1 + + + + + c094a2f6-16d6-4b9f-9fa4-3b959aadc103 + GCO_1 + + + + + 0c2b6cf7-5551-2f56-bf3b-cf01e55eba56 + GCO_1 + + + + + 7c1413cf-dbf7-a480-9726-415f5f3246c0 + GCO_1 + + + + + 2e87d2db-9780-5e70-5a28-db9a2976840b + GCO_1 + + + + + 41d9694b-d0d7-fc8a-13fb-417deefa7d79 + GCO_1 + + + + + 67afcdf4-3c23-1f7d-ddf1-d6a9e143a58b + GCO_1 + + + + + 12a190a9-35e1-aaa8-5373-42fbe2639a59 + GCO_1 + + + + + c58c7623-6859-30fe-817a-39c6ffe399cc + GCO_1 + + + + + 21b5e234-51fe-f8b1-95b8-0407ec364773 + GCO_1 + + + + + a0d776b7-ae5a-6c56-a1aa-07efd6dff3cd + GCO_1 + + + + + e3c8318f-c113-6364-8c4b-b36381e864a2 + GCO_1 + + + + + e567e7e9-4081-701d-a022-ad89687513a8 + GCO_1 + + + + + f71cf0b3-f439-3b2d-fe24-f21a316c2a43 + GCO_1 + + + + + 77ab20e6-7b5c-70a1-d1cb-644f2897eb0a + GCO_1 + + + + + aee719d6-7a4c-110b-52ae-d5f483c9fa3a + GCO_1 + + + + + 6f5fe750-b1ad-b5eb-752a-76aeff543016 + GCO_1 + + + + + a191c6f3-1eea-ba18-4260-80085bb81fc2 + GCO_1 + + + + + 3ba70fd2-bf0e-f1d1-1eec-c01a09d56564 + GCO_1 + + + + + a6b5af98-0bc4-0f26-53be-232478aa387f + GCO_1 + + + + + 405faa5d-2b1c-f24e-9458-54c25c6199b0 + GCO_1 + + + + + 866bb796-b654-531c-8a4a-9f756e8c87b1 + GCO_1 + + + + + 924b4910-6642-eaf7-5e2b-cfa90803f619 + GCO_1 + + + + + 10e8d4eb-9dc9-26f4-9754-1dc41b395452 + GCO_1 + + + + + c074303a-3502-11f8-77b9-d66f1f524013 + GCO_1 + + + + + e506e599-ab36-ee80-8676-b79b3192802c + GCO_1 + + + + + ee9d24b8-e8cc-b3b9-5e79-7629fd6f3834 + GCO_1 + + + + + 0d43ed28-b8cd-1993-ac15-3d864c705665 + GCO_1 + + + + + 791aa896-d3ec-c209-e758-a31fb400ad9e + GCO_1 + + + + + 504b2288-48df-23ea-cc40-21fd73d5ca54 + GCO_1 + + + + + 186f41e0-8403-8602-2812-f6e94268f81a + GCO_1 + + + + + 50d1ad72-59d0-e222-23df-c4bbd9178fd2 + GCO_1 + + + + + 7a85bbf3-34e9-bbf3-2734-fb908cf89370 + GCO_1 + + + + + caa95b68-cc79-8efd-78a1-ba70d039bf1f + GCO_1 + + + + + 071188f4-46c7-9101-d90f-1971c504f7f2 + GCO_1 + + + + + 25759da5-0fb0-2b15-72ee-3478cbc2900e + GCO_1 + + + + + 38541af1-9c60-a1d0-d3f3-1a083a0e50df + GCO_1 + + + + + 50050772-9aae-4e23-d49d-6bbaceb76ee0 + GCO_1 + + + + + b918d3c3-c485-c186-3cb3-72cbe6f231eb + GCO_1 + + + + + d28ff873-2e71-b9db-6654-a2892348b8d8 + GCO_1 + + + + + fd0aa7ea-2636-e32a-cdd5-c00c5cbc6527 + GCO_1 + + + + + 600d5921-fb63-d3f1-5f3d-34134ee31430 + GCO_1 + + + + + 775ffd5c-0c2e-7887-ae94-6030670472c2 + GCO_1 + + + + + 9210dbb2-a1d3-fcba-5027-dc3edd81ee8c + GCO_1 + + + + + 354adff7-8725-b2bd-362d-1b15950ff076 + GCO_1 + + + + + c625b9c4-269c-42fc-b590-07060ac65adf + GCO_1 + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml new file mode 100644 index 00000000..61cbc2d9 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml @@ -0,0 +1,508 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9580ded4-2610-cdde-c06c-92e6008fd3e5 + + + 2fe06fa7-29c3-ee86-535c-d831ff5e69d6 + + + 800237d8-085b-92fa-e814-37c5be10e172 + + + 3e8fe6cf-279f-7d5e-c0e5-677498c27f09 + + + fe7bf1da-d10f-12af-a38e-ed185ced3ae7 + + + c7d69d8c-b4b2-5e7e-cd15-b18f0f3b3a13 + + + 035a95be-d075-eebb-d1f3-faca3e836009 + + + 31fca2f6-3a3f-c726-fa92-3c0861888e91 + + + 7eba9e6c-a91f-eda0-147c-7b41b871dfe3 + + + a4d84081-d1a9-7b75-fda9-0018ef77f43d + + + 90ca9176-f7fe-ebe1-a76b-018d27071f04 + + + + + 42131467-4c38-728c-278e-296c9cd7a9d7 + + + + + fd4df1e4-2082-81e2-4b89-c9a52004a6e8 + + + + + 1e2c8fcf-a5cf-c956-ec76-9dcf5790bde4 + + + + + 4edaa0cc-0f96-d6c1-aec7-fd338cd88e5a + + + + + cbef61bc-eb90-bf24-3d93-a2755e5a79b5 + + + + + afeeb4e5-d1b5-dbbb-2942-8c6224f17127 + + + + + de3742c4-fe90-d84e-8485-6258ac7578bf + + + + + b0570d85-f676-d7af-91ca-dadf3bdec32d + + + + + 39357cda-0389-bdab-0379-384cb1cfe04a + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml new file mode 100644 index 00000000..61f08600 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml @@ -0,0 +1,1545 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0 + 2015-12-31T23:00:00Z + + + b483760a-b9d2-ddbb-d4ff-41b2d7bedca2 + Location + + + + + 362ca732-c347-2af9-4442-4306293fec9c + Location + + + + + 0a2f1508-9a82-9abb-40b4-7bcc79ab9658 + Location + + + + + a2078538-84bd-4a30-b25f-bc91f93dd1c6 + Location + + + + + b5220bc0-8a64-b8a2-20bd-a8a95f1e6b01 + Location + + + + + 138ec99f-c9ad-e5da-a521-9ab2276e924c + Location + + + + + 44910478-a89d-a460-b88b-f04da23d5837 + Location + + + + + c484c629-efde-0ef0-0333-a569f240e193 + Location + + + + + 2dfdf23f-2d47-de35-fd7e-4e9e8da7c529 + Location + + + + + f81a777b-4a7c-0bee-b109-bcb7987014bc + Location + + + + + e5b2911e-17e9-86f2-1577-aec5cfce34f9 + Location + + + + + 6937ad0a-2c4e-2b30-93a5-1d6363315f8c + Location + + + + + 2ba3e2d5-5e93-fbc6-7829-7e2f02fdf1f7 + Location + + + + + 5b496714-e60d-0f5f-bc98-44b39326abf5 + Location + + + + + 603aa808-ef90-54e0-79c8-42acf47c2b9c + Location + + + + + bcceb79a-06d3-4d74-e541-50c47b243539 + Location + + + + + a5eddd74-cd54-d3cf-459b-892c205eb3aa + Location + + + + + fd245b24-c27a-37c0-25a2-747b929f64cd + Location + + + + + 7cccc335-4ee4-a858-d29e-79364486994d + Location + + + + + fea462e6-125a-2833-b450-632258eb61e6 + Location + + + + + 35b209fc-b4f2-405b-d5d6-d2698f1705ca + Location + + + + + 7f865305-b00e-ef96-6a89-cb39b74548fc + Location + + + + + ffa2da78-132b-20a7-0014-3e2852a871a5 + Location + + + + + fa0776fa-031b-5e62-3143-6df9b7b223e6 + Location + + + + + b7431b59-e267-0f1c-b9e0-1087c8c6e51c + Location + + + + + 696c3de4-cc29-b361-a1e1-f764dd80b4f5 + Location + + + + + dcfb5390-9378-2353-5c7f-1915b393c86e + Location + + + + + 038813d0-d1b6-7db0-7407-a69f934ff70d + Location + + + + + 32ba8c96-9b1a-5b46-a849-82aec653d530 + Location + + + + + 2b5104bc-6a01-447a-0627-ab9c44c69d66 + Location + + + + + 6c36b8ad-6cc8-4032-59f5-a6ade9cf1dc9 + Location + + + + + cf747a79-acd6-2363-08a1-e7d18b8bb8ac + Location + + + + + 29ec11d4-d72d-e85b-d24e-db5987098ea9 + Location + + + + + ceb20ac9-d833-f9cf-a13d-fcf65aa91a68 + Location + + + + + 3dc54270-d435-b571-48f9-8bae0dc84535 + Location + + + + + 91f7d3e2-42b2-895c-4895-f721cd520661 + Location + + + + + 07218b68-f6d1-148f-6749-126502cbf5e9 + Location + + + + + 8fe2160c-03d3-2b3b-0e95-2f3e1d3d1e7f + Location + + + + + 2b8a580a-b963-47e3-c422-c00f045377ea + Location + + + + + 29a3942b-6910-6661-cad0-473cf2d8f2da + Location + + + + + 7ae82203-1087-5274-cd6d-34a72e1b582b + Location + + + + + 5be7069a-457c-b2da-50c5-6c4798db5457 + Location + + + + + 62ac9090-4cda-b7f2-1779-c85714489a90 + Location + + + + + 43289421-d85a-c463-7680-59c02b094f49 + Location + + + + + 9ea87fb0-2a3d-8d00-af75-67a5f8caec87 + Location + + + + + e98b38de-8428-ab11-396b-4a69060d839e + Location + + + + + 3d900742-73f1-3a77-cbb9-9a3e45ca3ecb + Location + + + + + dfd575fd-93e1-963b-de6f-a3b0b15bf655 + Location + + + + + a3b7c5bd-d507-a2a4-9ee3-53b9d07754ed + Location + + + + + eb1411f1-f5a9-cefe-0275-68d055baf6a9 + Location + + + + + 771ff1d0-7e6b-5ea3-3fe5-2b56291a792f + Location + + + + + 01cba879-efa5-f613-d565-6e9e622f1e46 + Location + + + + + 3d1e2ceb-9bef-698f-4cca-a32537403849 + Location + + + + + 3adae4f3-3c02-8e37-423a-e9758346fb5b + Location + + + + + 45bc16b3-2dc7-a118-27e7-89da6d8f2ead + Location + + + + + 0c1d205f-7607-e785-a06e-947591632a52 + Location + + + + + 82ef487c-9279-985d-f465-7f0d73de3e17 + Location + + + + + 92331800-ed68-cec0-ecd8-973ac5563fcb + Location + + + + + aa75a039-e889-0f45-c3bb-eef3a9c2385e + Location + + + + + 3eaf2c1f-171d-8c0a-d124-e39480997902 + Location + + + + + 7374faef-1d72-3146-15b1-d3604350c161 + Location + + + + + 080e77f2-25e8-7a52-e452-03419954bbe7 + Location + + + + + ac66a67f-a46d-9aa6-28a9-9067f5b186b4 + Location + + + + + 89891d29-4c84-5907-8116-86c25384cc6d + Location + + + + + 7b4bbbfe-6645-3b65-1ef0-6c7ae0931fe4 + Location + + + + + a69b467c-00ba-4505-4951-71b7180d7dab + Location + + + + + aed85988-4a10-07bf-9ea9-ea2f886acbd5 + Location + + + + + a62488c2-f94e-ef6d-e621-5be0d30b1bd3 + Location + + + + + 73cea814-5ad5-2d9c-fb2d-07392a78ca3a + Location + + + + + aa9c9ff3-a0b8-8882-b07d-515bb6a74f28 + Location + + + + + 8fb3be36-2241-b491-4098-a37fd88a16ec + Location + + + + + 5ce675d6-3db1-0bda-660d-4dec9e8b496a + Location + + + + + 054fab60-e5c1-c33a-85a8-b189c78c9369 + Location + + + + + a073f4db-2514-4803-5bd3-88328170d8e8 + Location + + + + + f1748a57-610b-b373-2dc7-28e279d71c50 + Location + + + + + e00b629e-ce4f-70c8-b020-4057d4b578a6 + Location + + + + + 9fc4b6a4-14a0-4153-da54-f29c35426356 + Location + + + + + 8c4e57ab-a7cb-f7c7-2764-e5ed2b7aa929 + Location + + + + + ed43e28c-b111-05c8-d487-fe46697afc0e + Location + + + + + c5178fa4-8652-0f7f-4cfc-d42bba1d5c79 + Location + + + + + 2915729d-898f-294b-f6b9-74fa84b26d66 + Location + + + + + 05a47cec-081e-d37a-3ed6-6b6f7740fa57 + Location + + + + + 909bd61e-3def-af8e-77e7-311fae590984 + Location + + + + + e7f7e0a5-cca2-b130-ed13-d6439f2de843 + Location + + + + + eb4c8eed-a91a-79b6-beb0-6bf583cd3286 + Location + + + + + dbe66f01-8f41-197d-8d7a-131eb330682d + Location + + + + + d23d3663-75c8-e05c-0e57-1c5e94d48427 + Location + + + + + bcbe9133-ccba-e907-532e-72284e294f7b + Location + + + + + aa3b924c-d82a-9a41-0bbd-77e54bcddfc3 + Location + + + + + 208f969a-3ce2-82a8-0951-8ecf2e14b431 + Location + + + + + 025dae75-17fe-6eec-fa46-ffeeacc53c78 + Location + + + + + 8fda584f-6499-2c0f-a8a8-3a894faf6abb + Location + + + + + 8127120f-8781-067a-5c2a-43f71bc3eafb + Location + + + + + 55a76554-f141-b546-9898-1cd025537299 + Location + + + + + 8a8b742e-a1e4-356a-78c9-4b170c395e6d + Location + + + + + 51a8ef06-b276-adff-5c33-803f52df013a + Location + + + + + 4a8e7844-4134-bfad-eed5-4a89511c9924 + Location + + + + + d9acab16-9356-fe4e-6416-7c72e83d459e + Location + + + + + a7580b49-a461-4991-6184-1b7e729abbd7 + Location + + + + + 8f08f06d-b49d-d457-7261-3ad8b26e84dd + Location + + + + + 2260678f-8856-344a-368f-c71d1e36c025 + Location + + + + + 51c960a0-d158-b7df-f44c-3d1b9edcb57b + Location + + + + + 593628b8-4ceb-1539-9cbc-bd9401691ad5 + Location + + + + + e756834f-a710-7a19-2527-632669abb984 + Location + + + + + c6d4de32-5998-41fe-2e7b-f44f7a6d2e05 + Location + + + + + f5d7484f-edd1-e4f1-b479-0a632ec0690a + Location + + + + + 0a02ba87-4b30-c552-4d1b-e8a9dec20c34 + Location + + + + + 822fd9bc-32b5-cf15-22ba-27f41c055046 + Location + + + + + 97f6a093-5f8c-435a-3e36-562f8241aaf5 + Location + + + + + 6a0e1b12-1f58-a0d3-2ad2-cb46ab0c9c87 + Location + + + + + 077d7424-f1b0-050f-c5f6-0fbd5beb4142 + Location + + + + + 236dcfdd-8da7-a191-8798-29501314eb03 + Location + + + + + 61afb8ff-e58b-ab64-3314-c09d89e6e8a5 + Location + + + + + 907a6b9f-6564-8d02-77c6-91f05a7dcb74 + Location + + + + + b3a4b2d4-e9dd-c853-6979-b1d38f11c57b + Location + + + + + 4c41d6aa-7e54-156b-73e0-5a3a7dac3e5e + Location + + + + + 4e968fe5-a33d-64ba-26d2-e407b7353402 + Location + + + + + dbc71e81-313f-a2f6-86a3-a489334973fc + Location + + + + + 47f752b1-5c7f-7144-cecf-2cd29b329337 + Location + + + + + fe0cbd36-7e9d-24bf-4f69-7b35e6acdd54 + Location + + + + + d722af41-9945-2f94-49cc-86fcb0b1cd23 + Location + + + + + e838e801-ae05-cb60-e912-71e76aa35b4a + Location + + + + + e6ee13da-1c44-ca62-6fb8-f69656d4de20 + Location + + + + + 3b811ac8-ee08-84f6-fca5-69cedc554fae + Location + + + + + 60ca97a2-28f5-9e69-c19c-4874067b3eb8 + Location + + + + + 905a2de4-e5ff-9112-556f-5be349bfbf90 + Location + + + + + 8374d116-5b8e-6281-595a-8d7d9c44e032 + Location + + + + + ee5448b7-b8a6-8efc-9658-8986fd7a0ade + Location + + + + + 5bdd9eb0-7e38-b80e-d240-307480a8c0d5 + Location + + + + + d9ccdf50-99be-93dd-b9dc-90a564e40666 + Location + + + + + aab3db61-a513-6a09-409d-00174c12cd82 + Location + + + + + 8134b1d2-2dcb-5ff6-ed11-e0b5a715441f + Location + + + + + 14c68856-1c0a-03d4-9950-3f1d4ef0626a + Location + + + + + 1113a0ec-923f-9941-aaf3-4cea5b269a82 + Location + + + + + 4bbc2b00-4a69-1929-849c-5d0f4ff1b746 + Location + + + + + 01fe9beb-1385-a55e-b951-0dbd62cd2b31 + Location + + + + + 042a39db-80e0-d5ca-2e02-f31fd1e8276c + Location + + + + + 072e9f3d-e283-22e4-2ec5-4f88ed5e1190 + Location + + + + + 89e61139-ad6c-1cf3-ab99-67b34a29d340 + Location + + + + + + 11.3762 + 53.6454 + + + + 11.3751 + 53.6543 + + + + 11.3773 + 53.6479 + + + + 11.3746 + 53.6469 + + + + 11.3692 + 53.6456 + + + + 11.3669 + 53.6389 + + + + 11.3692 + 53.6456 + + + + 11.368 + 53.6417 + + + + 11.3578 + 53.6498 + + + + 11.3632 + 53.6353 + + + + 11.3732 + 53.6454 + + + + 11.3685 + 53.6598 + + + + 11.3805 + 53.6502 + + + + 11.3794 + 53.6534 + + + + 11.357 + 53.6504 + + + + 11.3668 + 53.633 + + + + 11.3721 + 53.6371 + + + + 11.3682 + 53.6511 + + + + 11.3674 + 53.6434 + + + + 11.3683 + 53.6445 + + + + 11.3707 + 53.6425 + + + + 11.3686 + 53.6436 + + + + 11.3752 + 53.6481 + + + + 11.3686 + 53.6572 + + + + 11.3682 + 53.6457 + + + + 11.3745 + 53.6464 + + + + 11.3784 + 53.6422 + + + + 11.3638 + 53.6261 + + + + 11.3584 + 53.6531 + + + + 11.3524 + 53.6537 + + + + 11.372 + 53.6492 + + + + 11.3519 + 53.6559 + + + + 11.3783 + 53.6431 + + + + 11.3529 + 53.6567 + + + + 11.3692 + 53.6456 + + + + 11.3708 + 53.6421 + + + + 11.372 + 53.6453 + + + + 11.3715 + 53.6411 + + + + 11.3719 + 53.638 + + + + 11.3724 + 53.6341 + + + + 11.3561 + 53.6516 + + + + 11.3773 + 53.6499 + + + + 11.3692 + 53.6456 + + + + 11.3776 + 53.6415 + + + + 11.3739 + 53.6297 + + + + 11.3626 + 53.6303 + + + + 11.3739 + 53.6306 + + + + 11.3535 + 53.6521 + + + + 11.364 + 53.6448 + + + + 11.3738 + 53.6456 + + + + 11.3661 + 53.6363 + + + + 11.3649 + 53.645 + + + + 11.3819 + 53.6481 + + + + 11.3664 + 53.637 + + + + 11.3511 + 53.6477 + + + + 11.3561 + 53.6524 + + + + 11.3737 + 53.6286 + + + + 11.3683 + 53.6236 + + + + 11.3581 + 53.6545 + + + + 11.3733 + 53.6328 + + + + 11.3833 + 53.6488 + + + + 11.3767 + 53.641 + + + + 11.3701 + 53.647 + + + + 11.351 + 53.6494 + + + + 11.3634 + 53.6579 + + + + 11.3798 + 53.6455 + + + + 11.374 + 53.6538 + + + + 11.3609 + 53.6441 + + + + 11.3686 + 53.6592 + + + + 11.3755 + 53.6467 + + + + 11.3697 + 53.6457 + + + + 11.3748 + 53.6475 + + + + 11.3518 + 53.655 + + + + 11.3521 + 53.6508 + + + + 11.3724 + 53.6525 + + + + 11.3702 + 53.6321 + + + + 11.366 + 53.6416 + + + + 11.3815 + 53.6429 + + + + 11.3767 + 53.6438 + + + + 11.369 + 53.6451 + + + + 11.3683 + 53.6489 + + + + 11.3809 + 53.6455 + + + + 11.3776 + 53.6454 + + + + 11.3667 + 53.648 + + + + 11.3682 + 53.6541 + + + + 11.3714 + 53.6252 + + + + 11.3811 + 53.6501 + + + + 11.3561 + 53.6568 + + + + 11.3656 + 53.6346 + + + + 11.3638 + 53.6514 + + + + 11.3665 + 53.6453 + + + + 11.3627 + 53.6482 + + + + 11.3637 + 53.6544 + + + + 11.3833 + 53.6472 + + + + 11.3715 + 53.6397 + + + + 11.3627 + 53.6312 + + + + 11.3733 + 53.6409 + + + + 11.3544 + 53.6443 + + + + 11.3692 + 53.6456 + + + + 11.3604 + 53.6489 + + + + 11.3691 + 53.6462 + + + + 11.3636 + 53.634 + + + + 11.3641 + 53.6477 + + + + 11.3682 + 53.6531 + + + + 11.3706 + 53.6454 + + + + 11.3687 + 53.6585 + + + + 11.3627 + 53.6285 + + + + 11.3721 + 53.6464 + + + + 11.3701 + 53.6477 + + + + 11.3669 + 53.6465 + + + + 11.3708 + 53.6505 + + + + 11.3688 + 53.6469 + + + + 11.366 + 53.624 + + + + 11.3521 + 53.6461 + + + + 11.3656 + 53.6492 + + + + 11.3633 + 53.6332 + + + + 11.3699 + 53.6441 + + + + 11.3832 + 53.6464 + + + + 11.3698 + 53.6485 + + + + 11.364 + 53.6384 + + + + 11.381 + 53.6428 + + + + 11.3789 + 53.6429 + + + + 11.3784 + 53.6481 + + + + 11.3646 + 53.662 + + + + 11.3558 + 53.6439 + + + + 11.3779 + 53.6501 + + + + 11.3619 + 53.6443 + + + + 11.3777 + 53.6544 + + + + 11.3654 + 53.6406 + + + + 11.3692 + 53.6315 + + + + 11.3663 + 53.642 + + + + 11.3687 + 53.6459 + + + + 11.3577 + 53.6437 + + + + 11.3825 + 53.6434 + + + + 11.3756 + 53.6545 + + + + 11.3805 + 53.6519 + + + + 11.3752 + 53.6456 + + + + 11.3807 + 53.651 + + + + 11.3636 + 53.6603 + + + urn:ogc:def:crs:EPSG::4326 + 85076d64-282b-1436-47f5-2881bf558ac9 + WGS-84 + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml new file mode 100644 index 00000000..b8ed873e --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml @@ -0,0 +1,8289 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/SteadyStateHypothesis-EU/3.0 + 2015-12-31T23:00:00Z + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 99 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 99 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 416 + + + 416 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 416 + + + 416 + + + 358 + + + 315 + + + 416 + + + 315 + + + 535 + + + 535 + + + 358 + + + 535 + + + 535 + + + 471 + + + 471 + + + 471 + + + 416 + + + 471 + + + 358 + + + 535 + + + 416 + + + 535 + + + 535 + + + 315 + + + 416 + + + 535 + + + 416 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 535 + + + 358 + + + 471 + + + 535 + + + 471 + + + 416 + + + 471 + + + 358 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 535 + + + 416 + + + 471 + + + 416 + + + 535 + + + 471 + + + 471 + + + 358 + + + 535 + + + 471 + + + 535 + + + 358 + + + 535 + + + 471 + + + 535 + + + 471 + + + 358 + + + 358 + + + 315 + + + 535 + + + 471 + + + 471 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 471 + + + 471 + + + 535 + + + 416 + + + 471 + + + 535 + + + 416 + + + 315 + + + 315 + + + 416 + + + 315 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 535 + + + 416 + + + 535 + + + 358 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 416 + + + 315 + + + 315 + + + 315 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 535 + + + 535 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 416 + + + 471 + + + 471 + + + 471 + + + 471 + + + 416 + + + 315 + + + 358 + + + 315 + + + 358 + + + 416 + + + 358 + + + 358 + + + 471 + + + 535 + + + 535 + + + 471 + + + 416 + + + 416 + + + 416 + + + 471 + + + 471 + + + 416 + + + 471 + + + 535 + + + 471 + + + 471 + + + 471 + + + 471 + + + 471 + + + 535 + + + 358 + + + 416 + + + 358 + + + 471 + + + 416 + + + 471 + + + 535 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 330.664 + + + 535 + + + 3637.31 + + + 535 + + + 535 + + + 358 + + + 535 + + + 358 + + + 416 + + + 471 + + + 315 + + + 535 + + + 315 + + + 471 + + + 416 + + + 535 + + + 315 + + + 416 + + + 416 + + + 358 + + + 416 + + + 358 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 471 + + + 416 + + + 416 + + + 315 + + + 471 + + + 471 + + + 416 + + + 358 + + + 535 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 3637.31 + + + 416 + + + 330.664 + + + 416 + + + 471 + + + 416 + + + 416 + + + 535 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 471 + + + 471 + + + 315 + + + 416 + + + 416 + + + 416 + + + 315 + + + 416 + + + 416 + + + 358 + + + 535 + + + 535 + + + 358 + + + 416 + + + 358 + + + 358 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 416 + + + 471 + + + 416 + + + 416 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 471 + + + 416 + + + 535 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 358 + + + 358 + + + 416 + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3826 + 0.1512 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.4219 + 0.1667 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.4611 + 0.1823 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5528 + 0.2201 + true + + + 0.5528 + 0.2201 + true + + + 0.2649 + 0.1047 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.1864 + 0.0737 + true + + + 0.6206 + 0.2471 + true + + + 0.2061 + 0.0815 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + true + -1 + + + true + -1 + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -2.9 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + false + true + 112.75 + + + + true + false + false + + + true + false + true + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + true + + + true + true + 0.2 + 10 + + + + true + true + 0.2 + 10 + + + + true + false + true + + + true + false + true + + + true + 0 + 0 + 1 + true + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml new file mode 100644 index 00000000..25adbb21 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml @@ -0,0 +1,7374 @@ + + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/StateVariables-EU/3.0 + 2015-12-31T23:00:00Z + + + + -0.1722 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -1.26861 + -0.785977 + + + + 0.4611 + 0.1823 + + + + 3.34243 + 2.26549 + + + + 4.13229 + 2.37866 + + + + -3.20481 + -2.01962 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 4.11991 + 2.9469 + + + + 0 + 0 + + + + 1.68323 + 1.06831 + + + + -1.43282 + -0.827912 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.668152 + -0.43973 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 3.49047 + 2.02278 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 3.50242 + 2.06568 + + + + 2.70683 + 1.53544 + + + + 5.02707 + 3.44131 + + + + 0 + 0 + + + + 1.39924 + 1.04876 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 1.35 + 0.719431 + + + + 8.53352 + 5.27119 + + + + 0.5528 + 0.2201 + + + + -11.7292 + -7.48603 + + + + 0.5523 + 0.221 + + + + -0.54236 + -1.97174 + + + + 2.99403 + 1.63627 + + + + -4.24952 + -2.84279 + + + + -4.95431 + -2.84923 + + + + 0.863438 + 0.607626 + + + + 0 + 0 + + + + 0.17476 + 1.75472 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.78805 + -1.64889 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + -1.60097 + -1.13279 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -6.23469 + -3.64602 + + + + -0.1712 + 0 + + + + 7.75339 + 4.80529 + + + + 0 + -0.00542031 + + + + 0.901009 + 0.564977 + + + + 3.1762 + 2.13167 + + + + -6.05374 + -3.49943 + + + + 0.6206 + 0.2471 + + + + -2.53988 + -1.50045 + + + + 3.21017 + 2.01901 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + 0 + -0.00776921 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -3.49938 + -2.06615 + + + + 2.58788 + 1.63968 + + + + -0.1847 + 0 + + + + 0.3373 + 0.134 + + + + -0.4494 + -0.24144 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + 0.367652 + 0.21963 + + + + 0.7667 + 0.565985 + + + + 4.58671 + 2.62823 + + + + 0 + 0 + + + + 25.5067 + 19.7782 + + + + -0.2523 + 0 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 3.99904 + 2.42726 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -2.54016 + -1.49695 + + + + 0.449495 + 0.234241 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 2.91613 + 1.71514 + + + + 0.5523 + 0.221 + + + + 3.72334 + 3.79498 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -0.89883 + -0.492988 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -3.45343 + -2.07035 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 1.67087 + 1.13699 + + + + -0.1847 + 0 + + + + -2.25261 + -1.29009 + + + + 2.13401 + 1.31599 + + + + 0.698276 + 0.475689 + + + + 0.3373 + 0.134 + + + + -3.36163 + -1.85727 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -41.835 + -30.8956 + + + + 0.780028 + 0.501718 + + + + 0.5523 + 0.221 + + + + 2.7904 + 1.64822 + + + + 4.16911 + 2.5626 + + + + 0.5523 + 0.221 + + + + 0.817288 + 0.456181 + + + + 0.2649 + 0.1047 + + + + 0 + -0.00894734 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + -3.67461 + -2.12876 + + + + 1.51617 + 0.940017 + + + + -0.69788 + -0.478547 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 2.91433 + 1.71984 + + + + -0.1722 + 0 + + + + -2.05083 + -1.28931 + + + + -0.1847 + 0 + + + + -2.17116 + -1.27731 + + + + 0.465724 + 0.349327 + + + + 4.54322 + 2.78629 + + + + 0 + 0 + + + + 1.30047 + 0.912694 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + -3.3336 + -1.93236 + + + + -1.18482 + -0.685304 + + + + 0.982787 + 0.587219 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.4219 + 0.1667 + + + + 5.43175 + 3.11287 + + + + 0.6206 + 0.2471 + + + + 4.96845 + 2.85713 + + + + -0.1722 + 0 + + + + -0.779824 + -0.504596 + + + + 0 + -0.00734936 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -3.82339 + -2.29166 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -1.29958 + -0.914913 + + + + -8.53352 + -5.27119 + + + + -3.01363 + -3.30247 + + + + -1.7176 + -0.940431 + + + + -13.7061 + -9.53355 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.56499 + 1.18199 + + + + 1.96722 + 1.18413 + + + + 0.3826 + 0.1512 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.31361 + 0.85164 + + + + -3.3413 + -2.26567 + + + + 25.5067 + 19.7782 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + -0.0100601 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -1.63469 + -0.931424 + + + + 0 + 0 + + + + 1.26709 + 0.710424 + + + + 0 + 0 + + + + 13.7061 + 9.53355 + + + + 1.30204 + 0.91734 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 2.54045 + 1.39023 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.33428 + 1.93215 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.19394 + -2.83506 + + + + -4.53671 + -2.7836 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.998776 + -0.695789 + + + + -0.1712 + 0 + + + + -5.0247 + -3.43977 + + + + -1.66964 + -1.13834 + + + + 0 + 0 + + + + 2.33865 + 1.40179 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 2.75541 + 1.77252 + + + + 0.6206 + 0.2471 + + + + 2.17228 + 1.27945 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.3005 + -0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.49537 + -0.394721 + + + + -0.982388 + -0.590181 + + + + 2.00509 + 1.14725 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.735365 + 0.437754 + + + + -0.174431 + -1.75644 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1712 + 0 + + + + -0.9318 + -0.699985 + + + + -1.30076 + -0.92012 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.817043 + -0.458999 + + + + 0 + 0 + + + + -25.4353 + -17.0196 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 1.14789 + 0.72115 + + + + 0 + -0.0135983 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.165114 + 0.128077 + + + + 0 + 0 + + + + 6.61943 + 3.88129 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.3676 + -0.221 + + + + 0.495554 + 0.389408 + + + + 0 + 0 + + + + -4.58169 + -2.62576 + + + + -1.34873 + -0.724268 + + + + 0.834496 + 0.567395 + + + + 0.3373 + 0.134 + + + + -3.48803 + -2.02234 + + + + 0 + 0 + + + + -2.21706 + -1.42197 + + + + -0.1712 + 0 + + + + -2.669 + -1.66884 + + + + 0 + -0.00331697 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 3.3633 + 1.85728 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -5.41785 + -3.10423 + + + + -1.18477 + -0.684854 + + + + 4.08442 + 2.70879 + + + + -2.5632 + -3.05544 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.58658 + -1.64056 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.999079 + 0.694813 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.60342 + 1.12932 + + + + -1.68121 + -1.07264 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.09823 + 0.829533 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.91223 + -1.71579 + + + + 0.3373 + 0.134 + + + + 2.00606 + 1.14331 + + + + -4.16414 + -2.56126 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.28373 + -1.93614 + + + + -0.4494 + -0.240175 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.899329 + 0.477168 + + + + 3.82754 + 2.29205 + + + + 0.3373 + 0.134 + + + + -1.09711 + -0.833031 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.73522 + 0.964081 + + + + 0.66847 + 0.437425 + + + + 1.80119 + 1.0517 + + + + 2.67186 + 1.66753 + + + + -1.37171 + -2.37272 + + + + -0.898895 + -0.481341 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.9457 + -2.80962 + + + + 25.5067 + 19.7782 + + + + 0 + 0 + + + + 0.33027 + 0.260721 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + 1.63648 + 0.927454 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.85392 + -2.27338 + + + + 3.95233 + 2.81188 + + + + -0.1722 + 0 + + + + 3.35393 + 3.57312 + + + + 0.367638 + 0.218627 + + + + 1.57053 + 1.00305 + + + + 0 + 0 + + + + -0.614533 + -0.373486 + + + + -2.88283 + -1.68636 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.982509 + 0.588278 + + + + -0.4494 + -0.238153 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.165114 + 0.124421 + + + + 0.449543 + 0.234456 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.71003 + -2.48649 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + -6.61237 + -3.87524 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + 0.1864 + 0.0737 + + + + 0.898977 + 0.491601 + + + + 2.08915 + 1.14449 + + + + -1.73009 + -1.31599 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + -0.00398495 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + -1.82354 + -2.61624 + + + + 6.24477 + 3.65424 + + + + -2.70313 + -1.53637 + + + + -0.1722 + 0 + + + + 0.61465 + 0.370084 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 3.24461 + 1.89548 + + + + 0.614724 + 0.370596 + + + + 0 + -0.00566049 + + + + -16.2869 + -10.0765 + + + + -0.1847 + 0 + + + + 0.2061 + 0.0815 + + + + -3.99264 + -2.42605 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + -4.11743 + -2.94588 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -5.59685 + -3.24687 + + + + 0.6206 + 0.2471 + + + + -0.898943 + -0.481556 + + + + 0.543006 + 1.96942 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -1.88345 + -1.0713 + + + + -2.08709 + -1.1476 + + + + 2.84161 + 1.80018 + + + + 0 + 0 + + + + -0.766224 + -0.569427 + + + + -0.1712 + 0 + + + + 2.05196 + 1.28797 + + + + 0.449433 + 0.239486 + + + + 0.449443 + 0.237999 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.3676 + -0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.55397 + 0.899723 + + + + 0 + 0 + + + + -3.18259 + -3.43719 + + + + -1.73371 + -0.966158 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 6.06959 + 3.51202 + + + + 0.5523 + 0.221 + + + + -2.00408 + -1.14845 + + + + 3.40589 + 2.45273 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -2.29911 + -1.44999 + + + + -4.08055 + -2.70774 + + + + -0.2523 + 0 + + + + -0.1722 + 0 + + + + 16.3283 + 11.1174 + + + + 3.18594 + 3.43811 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 1.82634 + 2.61406 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.06522 + 0.606912 + + + + -0.817039 + -0.465854 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.532946 + 0.346011 + + + + 2.21898 + 1.41956 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.98985 + -1.63733 + + + + -0.1722 + 0 + + + + -2.75298 + -1.77368 + + + + 1.88598 + 1.15728 + + + + 0.89937 + 0.477573 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.300572 + 0.216385 + + + + 2.8842 + 1.68526 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -1.135 + -0.787495 + + + + -0.863154 + -0.610408 + + + + 3.85729 + 2.27365 + + + + 0 + -0.00410906 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -2.00337 + -1.14682 + + + + -0.465672 + -0.350385 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.45579 + 2.07066 + + + + -1.56964 + -1.00451 + + + + 2.1956 + 2.83444 + + + + -0.614573 + -0.374222 + + + + 0.817222 + 0.464304 + + + + 0.6206 + 0.2471 + + + + -1.55306 + -0.9022 + + + + 1.88501 + 1.06909 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + 3.28833 + 1.93635 + + + + -0.532714 + -0.349077 + + + + -0.1712 + 0 + + + + -1.26658 + -0.712601 + + + + -7.75339 + -4.80529 + + + + 0 + 0 + + + + -1.88377 + -1.16102 + + + + 0 + 0 + + + + -0.330214 + -0.264415 + + + + -1.31284 + -0.854726 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.532714 + -0.345421 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.85807 + -2.24378 + + + + -2.33538 + -1.40438 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -1.56434 + -1.18276 + + + + 0 + 0 + + + + -0.1651 + -0.134 + + + + -3.35104 + -3.57211 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.51549 + -0.94215 + + + + 2.17256 + 1.27595 + + + + -0.4494 + -0.2471 + + + + -4.56931 + -3.194 + + + + -0.1722 + 0 + + + + -3.2398 + -1.89532 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.39873 + -1.04963 + + + + 0.165114 + 0.130415 + + + + 0.5528 + 0.2201 + + + + -2.17019 + -1.28125 + + + + -0.1722 + 0 + + + + 2.25373 + 1.28927 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0.6206 + 0.2471 + + + + -0.900546 + -0.567011 + + + + 1.43405 + 0.824195 + + + + 0.5523 + 0.221 + + + + 3.7806 + 2.67562 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.43219 + -0.834319 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1651 + -0.126231 + + + + 0 + 0 + + + + -3.77349 + -2.67373 + + + + 1.26914 + 0.78441 + + + + 0 + 0 + + + + 1.73072 + 1.31544 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + -2.13232 + -1.31813 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -2.53855 + -1.39159 + + + + 0.6206 + 0.2471 + + + + -4.12651 + -2.37645 + + + + -0.1712 + 0 + + + + 0.53278 + 0.344547 + + + + 11.7292 + 7.48603 + + + + -0.1722 + 0 + + + + 2.56423 + 3.05537 + + + + 0 + 0 + + + + 0 + -0.00460465 + + + + -3.72153 + -3.79412 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 2.54463 + 1.49479 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -0.98225 + -0.591084 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1722 + 0 + + + + 3.01749 + 3.30319 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 2.54284 + 1.49926 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + -0.00692537 + + + + 0.449473 + 0.240222 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.4494 + -0.239751 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + 0.932007 + 0.699031 + + + + 5.60434 + 3.25233 + + + + 3.71295 + 2.48674 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.4494 + -0.2471 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.9 + 0 + + + + -2.91044 + -1.72026 + + + + 0 + 0 + + + + -0.1651 + -0.129891 + + + + -0.1722 + 0 + + + + -0.735238 + -0.439627 + + + + -1.14763 + -0.722718 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + 0.44943 + 0.245888 + + + + -0.4494 + -0.243783 + + + + -0.1722 + 0 + + + + 1.18601 + 0.680958 + + + + 0 + 0 + + + + 0 + 0 + + + + -16.3283 + -11.1174 + + + + 1.43309 + 0.831512 + + + + 16.3283 + 11.1174 + + + + -1.80069 + -1.05251 + + + + -3.4016 + -2.45243 + + + + -0.1847 + 0 + + + + 3.86057 + 2.24453 + + + + 3.67711 + 2.12935 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 4.5753 + 3.19727 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.17395 + -2.13238 + + + + -1.06447 + -0.611573 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 1.71949 + 0.936662 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.83357 + -0.571425 + + + + -0.1847 + 0 + + + + 1.13566 + 0.78612 + + + + 2.3014 + 1.44784 + + + + -0.1722 + 0 + + + + -1.96629 + -1.1857 + + + + -0.1847 + 0 + + + + 4.25432 + 2.84444 + + + + 0 + 0 + + + + -2.83696 + -1.80153 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.449439 + 0.244854 + + + + -0.1712 + 0 + + + + 1.18546 + 0.6812 + + + + 1.37414 + 2.36914 + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + + + + false + + + + false + + + + false + + + + false + + + + false + + + + true + + + + true + + + + false + + + + true + + + + -1 + + + + -1 + + + + -154.432 + 9.62371 + + + + -154 + 9.7983 + + + + -152.575 + 10.0693 + + + + -154.298 + 9.71759 + + + + -152.591 + 10.0336 + + + + -154.084 + 9.80434 + + + + -154.053 + 9.8326 + + + + -154.014 + 9.86069 + + + + -152.589 + 10.0214 + + + + -154.412 + 9.63875 + + + + -152.744 + 9.93874 + + + + -152.57 + 10.0511 + + + + -152.734 + 9.94833 + + + + -154.279 + 9.73008 + + + + -154.372 + 9.6676 + + + + -154.092 + 9.79809 + + + + -152.584 + 10.052 + + + + -152.615 + 10.0489 + + + + -152.553 + 10.0673 + + + + -154.093 + 9.79735 + + + + -154.429 + 9.62557 + + + + -154.23 + 9.76264 + + + + -154.145 + 9.77072 + + + + -154.02 + 9.82524 + + + + -152.651 + 10.0274 + + + + -152.592 + 10.0344 + + + + -154.145 + 9.78026 + + + + -152.586 + 10.0314 + + + + -152.71 + 9.96992 + + + + -154.14 + 9.76705 + + + + -154.046 + 9.8442 + + + + -154.043 + 9.85322 + + + + -154.003 + 9.77098 + + + + -154.334 + 9.69395 + + + + -152.533 + 10.0916 + + + + -154.06 + 9.83288 + + + + -154.018 + 9.84966 + + + + -154.033 + 9.74473 + + + + -154.021 + 9.83237 + + + + -154.421 + 9.63121 + + + + -152.587 + 10.0235 + + + + -153.989 + 9.79388 + + + + -152.546 + 10.0845 + + + + -154.122 + 9.80271 + + + + -152.588 + 10.0278 + + + + -152.581 + 10.0664 + + + + -154.09 + 9.80847 + + + + -152.585 + 10.0496 + + + + -152.643 + 10.0351 + + + + -152.564 + 10.0573 + + + + -152.589 + 10.0222 + + + + -152.583 + 10.0655 + + + + -153.979 + 9.7915 + + + + -152.667 + 10.0118 + + + + -154.031 + 9.85641 + + + + -154.079 + 9.8414 + + + + -154.016 + 9.86788 + + + + -152.59 + 10.0287 + + + + -152.594 + 10.0385 + + + + -152.592 + 10.0316 + + + + -154.024 + 9.86012 + + + + -154.064 + 9.82203 + + + + -152.587 + 10.0486 + + + + -152.579 + 10.0625 + + + + -154.076 + 9.8329 + + + + -154.115 + 9.80239 + + + + -154.044 + 9.85299 + + + + -154.358 + 9.67714 + + + + -154.141 + 9.76548 + + + + -152.592 + 10.0384 + + + + -152.683 + 9.99677 + + + + -154.138 + 9.75906 + + + + -154.132 + 9.74967 + + + + -154.058 + 9.8443 + + + + -154.008 + 9.87503 + + + + -152.581 + 10.0378 + + + + -154.186 + 9.79203 + + + + -152.556 + 10.0805 + + + + -152.574 + 10.0717 + + + + -154.017 + 9.86927 + + + + -152.555 + 10.0766 + + + + -154.044 + 9.73595 + + + + -152.586 + 10.0223 + + + + -154.139 + 9.76496 + + + + -152.511 + 10.1029 + + + + -152.578 + 10.0686 + + + + -154.095 + 9.80402 + + + + -154.021 + 9.83634 + + + + -154.142 + 9.77666 + + + + -154.013 + 9.76187 + + + + -154.132 + 9.751 + + + + -152.703 + 9.97712 + + + + -154.086 + 9.82555 + + + + -154.15 + 9.80871 + + + + -154.014 + 9.81178 + + + + -154.079 + 9.81845 + + + + -154.04 + 9.73947 + + + + -154.394 + 9.65188 + + + + -154.083 + 9.81542 + + + + -152.743 + 9.9399 + + + + -154.143 + 9.78014 + + + + -152.595 + 10.0478 + + + + -152.596 + 10.0435 + + + + -154.072 + 9.82385 + + + + -154.1 + 9.79965 + + + + -154.144 + 9.78405 + + + + -152.727 + 9.9549 + + + + -154.07 + 9.81646 + + + + -152.585 + 10.0215 + + + + -154.425 + 9.62831 + + + + -152.594 + 10.0536 + + + + -152.579 + 10.0626 + + + + -152.741 + 9.94181 + + + + -154.322 + 9.70166 + + + + -152.534 + 10.0886 + + + + -152.546 + 10.0731 + + + + -152.534 + 10.0833 + + + + -152.51 + 10.1028 + + + + -154.09 + 9.7999 + + + + 0 + 112.75 + + + + -153.997 + 9.77644 + + + + -152.572 + 10.0667 + + + + -154.04 + 9.84543 + + + + -154.418 + 9.63371 + + + + -154.091 + 9.82066 + + + + -154.135 + 9.75539 + + + + -154.011 + 9.86979 + + + + -154.024 + 9.75248 + + + + -152.589 + 10.024 + + + + -154.105 + 9.81013 + + + + -154.055 + 9.84593 + + + + -154.036 + 9.86164 + + + + -154.137 + 9.75801 + + + + -152.562 + 10.0778 + + + + -154.145 + 9.78751 + + + + -154.018 + 9.86923 + + + + -154.137 + 9.75571 + + + + -154.099 + 9.80071 + + + + -154.112 + 9.80475 + + + d8a8ae1b-f7b4-484f-95b2-4cbe47c6f13c + Island_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml new file mode 100644 index 00000000..42d70808 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml @@ -0,0 +1,3890 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Topology-EU/3.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7ad1e20d-1a25-5de9-9cb7-2bc0fda801c7 + MV3.101 Bus 124 + + + + + 3e5c26a9-64d6-a95e-d136-6d338a3413a5 + MV3.101 Bus 140 + + + + + 9ee3ec6f-01a5-9446-c9e9-87f0ea888022 + MV3.101 Bus 107 + + + + + 274ab182-95bd-4935-a939-be514f32cd14 + MV3.101 Bus 132 + + + + + 20d965d4-547f-ef79-120b-b656e048a56e + MV3.101 Bus 115 + + + + + e5af3d7f-6ae1-7397-e0b7-8237b69b9a10 + MV3.101 Bus 142 + + + + + a16f7dd0-7f98-857f-db89-a4982579e9f0 + MV3.101 BS busbar1A + + + + + 81a99107-4386-39a9-28bf-98490bcb620e + MV3.101 Bus 118 + + + + + c3f045c0-97a7-ea96-5793-88d28e3370dc + MV3.101 Bus 121 + + + + + 16092c18-9fe5-c62e-eb16-9cc5a7b8857a + MV3.101 Bus 117 + + + + + 10f66351-9f7b-9796-9050-7e150a33774f + MV3.101 Bus 128 + + + + + 860ef470-20a2-b265-0227-78ae2a413177 + MV3.101 Bus 130 + + + + + e9193243-8915-51cd-1412-d681773ba481 + MV3.101 Bus 102 + + + + + 7e0612a8-1400-9dc2-a8f4-534440d6d6e9 + MV3.101 Bus 103 + + + + + f07355ed-b22f-0df8-5eb6-de698051abb2 + MV3.101 Bus 100 + + + + + e5c2b140-dd88-395a-e27d-e805c5df923f + MV3.101 Bus 133 + + + + + 705901ec-60fe-4b0c-5e99-9992625a04f6 + MV3.101 Bus 135 + + + + + 61cbb0fe-826f-8581-6d93-5b837cf07bf3 + MV3.101 Bus 137 + + + + + 6f9bd2f6-550a-d37a-a809-2f4f7d13f4ce + MV3.101 Bus 141 + + + + + adbe4a49-1ca1-95a9-da27-52d9d7367390 + MV3.101 Bus 143 + + + + + dd6112b5-4418-6832-721e-3e1cb2f0d6b6 + MV3.101 Bus 134 + + + + + 1ef40479-1002-8c72-74ff-bef8c7258f4e + MV3.101 Bus 123 + + + + + eee1182e-8812-ff35-2903-b816329321a5 + MV3.101 Bus 15 + + + + + 587e8ed2-530b-bec2-8669-fb7bb0f8dbef + MV3.101 Bus 12 + + + + + f9000bee-c959-4676-1d29-2f3a0ce95685 + MV3.101 Bus 33 + + + + + 33585175-2bb8-f709-27cd-236ad4d9e56d + MV3.101 Bus 18 + + + + + 9a645299-fd8b-38a2-c4b2-3f2e04cd4443 + MV3.101 Bus 13 + + + + + ce2891be-ec57-1f2f-fcba-09db40600346 + MV3.101 Bus 138 + + + + + 6dedca80-8d5a-0c24-aae6-93e6831180ab + MV3.101 Bus 125 + + + + + f66a5dc6-18f0-6950-401f-44386aba252f + HV1 Bus 25 + + + + + b03b2b2a-5c69-8b1a-8f8e-092cbf20a907 + MV3.101 Bus 120 + + + + + fda27f50-ab53-288d-8e5c-b03e4fa019eb + MV3.101 Bus 131 + + + + + 50125f3f-c855-c5e4-4e70-eefa978206a8 + MV3.101 Bus 16 + + + + + 750c16c1-5d7d-435a-c8d6-b1454173b4bd + MV3.101 busbar1A + + + + + a796e6b9-35ce-96f3-18ce-2f88758344b7 + MV3.101 Bus 14 + + + + + 4e5e5370-fad2-16ac-5608-410f5461d5d9 + MV3.101 Bus 139 + + + + + 08cdf98a-c831-3c79-7882-0076d9ae8c94 + MV3.101 Bus 106 + + + + + 9722fc63-dcfe-bdd2-f8fb-048c6f7c7f9c + MV3.101 Bus 23 + + + + + 5df9864f-72eb-305a-29ae-b3bc2c60c4a0 + MV3.101 Bus 20 + + + + + 19746bc7-ae5f-1fa1-0ca6-3c0154cccf88 + MV3.101 Bus 126 + + + + + 54822be9-7b18-395d-3421-594966e5ea96 + MV3.101 Bus 119 + + + + + a79d2154-3198-c3a5-d23b-17c8b863d012 + MV3.101 Bus 25 + + + + + aea946ac-9d89-6cd4-d1a9-defea9c4ba22 + MV3.101 Bus 21 + + + + + 5cfb155e-a4f1-7813-0b59-2f091574e4e2 + MV3.101 Bus 127 + + + + + 19f6f5b6-b5e4-c323-f92e-b67587c57eaa + MV3.101 Bus 24 + + + + + e00f21a7-bcf7-091c-8ae4-a348a6c9437c + MV3.101 BS busbar1B + + + + + 553427ff-c6cc-c01c-f0bf-1d500fded0e7 + MV3.101 Bus 27 + + + + + 28aa69aa-fabf-3c95-c671-44b5c6f0a3e4 + MV3.101 Bus 19 + + + + + 364abc8b-32dc-b709-aff1-f0d984f6e4de + MV3.101 Bus 116 + + + + + d17d8bf4-5fd3-9434-2ff5-34fda953baa2 + MV3.101 Bus 122 + + + + + edbac2a9-769a-0e8c-1b93-32c1577b6b2b + MV3.101 Bus 108 + + + + + ff235fd7-7728-639e-991d-68ffb1485a83 + MV3.101 Bus 101 + + + + + f22cef26-370e-c785-5624-090e87bfc8d1 + MV3.101 BS busbar1C + + + + + ee0a237b-0e0b-78de-535a-9b53cb53ea2d + MV3.101 Bus 136 + + + + + 09d549e6-ebdd-2c0d-086d-a96b1152667e + MV3.101 busbar1B + + + + + 40adbcc7-f8fa-7388-891e-7c147bf45023 + MV3.101 Bus 105 + + + + + b6170f00-2c57-2451-d575-01bb519075fb + MV3.101 Bus 129 + + + + + 213a2f02-f50a-1660-908c-914f3cce8c0c + MV3.101 Bus 104 + + + + + 0de42932-e0b1-22a6-bf8b-73b379b7377d + MV3.101 Bus 44 + + + + + b1d53dca-5f33-72af-3b2b-5ec36ad07954 + MV3.101 Bus 65 + + + + + ad51de78-3702-0b14-0735-784662894e69 + MV3.101 Bus 40 + + + + + ec6489ca-edb2-b300-d607-b02b8a2750fb + MV3.101 Bus 112 + + + + + 1aab9b43-6c21-902f-44ab-4d10d0b893e2 + MV3.101 Bus 67 + + + + + 2b510655-88d6-ae18-b58e-2330e133c2df + MV3.101 Bus 68 + + + + + 49f2ded1-15a3-7a3b-cf3f-bad9b01f3546 + MV3.101 Bus 69 + + + + + 5413fa98-ec7b-20ef-b6c7-e1286f8e1737 + MV3.101 Bus 80 + + + + + 12070c64-6818-ea18-5f5a-83d6d441d549 + MV3.101 Bus 79 + + + + + 9c6fc31a-c773-7390-f8eb-5e30dab03f83 + MV3.101 Bus 29 + + + + + 539dd97f-a501-0529-2ee2-a2bbf63c79d4 + MV3.101 Bus 38 + + + + + d66a6ade-7f1b-97c0-0017-9a6cf47c9bda + MV3.101 Bus 49 + + + + + 9906db9c-e3ed-6a2f-e0a2-d1fccb763605 + MV3.101 Bus 61 + + + + + acf4451f-2bbb-a754-b495-4654468f4052 + MV3.101 Bus 63 + + + + + 396d4836-ccc1-74f5-146a-2b6847f7ac7c + MV3.101 Bus 85 + + + + + 133d74c7-98d7-e422-c3d8-1ae37b04026f + MV3.101 Bus 30 + + + + + 03a0251b-1ed0-2fe8-0eb6-459bbee9b0a8 + MV3.101 Bus 34 + + + + + bd27ffe1-aada-4d7c-72df-40e9fa6b56a7 + MV3.101 Bus 41 + + + + + 5c2a0840-9b2c-152d-4772-73d9533c61e8 + MV3.101 Bus 55 + + + + + 98acd6c4-8f82-6b8e-6c34-5f3a98d5b892 + MV3.101 Bus 37 + + + + + 98834ca7-0a8c-6bb4-fd89-2747b4526f6e + MV3.101 Bus 72 + + + + + e70d1212-dd40-bddf-8f33-bb2b638444d3 + MV3.101 Bus 75 + + + + + 87279821-a0ab-830a-22db-b856f71c39a1 + MV3.101 Bus 83 + + + + + 16f0828e-9754-c9ed-9ba0-9489b64c0899 + MV3.101 Bus 114 + + + + + 9bfef8b9-7087-4040-646d-3c837a796ac3 + MV3.101 Bus 26 + + + + + e54fa85a-b795-481c-cded-83f7eaa6b9cc + MV3.101 Bus 35 + + + + + ec9ff049-fed0-586c-7784-3b70ff307e2a + MV3.101 Bus 43 + + + + + d641a8da-1790-3996-ac01-ba4b42f5babc + MV3.101 Bus 11 + + + + + 7910e4fc-60ae-7e08-f374-3e4f2ae03f1c + MV3.101 Bus 59 + + + + + 3d6249b9-b039-bd8c-944e-1ca40eb7e8e7 + MV3.101 Bus 66 + + + + + 28f58cfd-0e6f-61a1-dc04-74835353f5f3 + MV3.101 Bus 31 + + + + + b8acc88e-d9f2-3ff7-62cb-c29bf9f5d807 + MV3.101 Bus 58 + + + + + 1838f7d2-cca9-d294-ec30-fdc944aaa2d0 + MV3.101 Bus 57 + + + + + c6a917d7-b457-5409-6f8d-7fed5ef541bc + MV3.101 Bus 82 + + + + + ebf5c214-df25-6593-96e5-b7c7c0b66dc4 + MV3.101 Bus 39 + + + + + a4b59bf2-0563-2429-efc2-f5aefbfdc18e + MV3.101 Bus 42 + + + + + 0fe6123d-546b-fa84-46c6-19ea3ce4efb3 + MV3.101 Bus 53 + + + + + a870c968-0f0e-d146-9074-29b610cb7ace + MV3.101 Bus 48 + + + + + 0c3ccdb5-7ef2-c076-c7ca-214b4aa2d108 + MV3.101 Bus 86 + + + + + 0ad17a43-29b4-73f6-935f-036a64570db9 + MV3.101 Bus 71 + + + + + 9ca17508-d1bd-711c-af9e-32613ff9ff43 + MV3.101 Bus 87 + + + + + 0a9a2164-403a-b34c-6e4d-0f82ebda0623 + MV3.101 Bus 110 + + + + + 48c0500d-2e1e-927e-9421-bd5aadd56450 + MV3.101 Bus 46 + + + + + 018a79c3-b918-686e-26ee-01a36d1267c9 + MV3.101 Bus 50 + + + + + dc6d8bbb-a674-93db-b9ef-b3658e8b3646 + MV3.101 Bus 84 + + + + + 5f6cbebc-71c2-1d04-9950-8aa580206a7d + MV3.101 Bus 22 + + + + + cd269e1f-c319-47b9-07fd-7a7a8aa4a793 + MV3.101 Bus 60 + + + + + dba63795-5ec4-0d09-345f-c707f2a5d2e6 + MV3.101 Bus 56 + + + + + 62ad74cb-3898-1103-070b-22c1bdd9b8c8 + MV3.101 Bus 70 + + + + + be9c219b-5b2c-119e-3e1e-271cb6223331 + MV3.101 Bus 74 + + + + + 409457ac-b8c9-ea43-15a7-ecb239f7de3e + MV3.101 Bus 111 + + + + + 10fbcf81-7bad-c502-34f9-73f68d8360f6 + MV3.101 Bus 45 + + + + + adfbfd04-8fe4-4e5e-c8d8-e277243baf82 + MV3.101 Bus 109 + + + + + bc013bbd-a734-3be2-c021-195caef49f29 + MV3.101 Bus 113 + + + + + b551b24e-44e7-f6ef-2e55-ffab04bedc9c + MV3.101 Bus 51 + + + + + 2ac28fdb-440e-c7e9-2b26-07e9c0ad000d + MV3.101 Bus 36 + + + + + 25006734-7941-2a7d-6502-548d25beaa5c + MV3.101 Bus 62 + + + + + 1b0a571f-c9c3-bbf1-2247-61a3e30f6d1a + MV3.101 Bus 47 + + + + + 5e3924be-5aa1-7a33-51b6-0a9b74b5bb94 + MV3.101 Bus 28 + + + + + 4bb5886a-11b5-54a3-0c37-d62089df3378 + MV3.101 Bus 54 + + + + + e5b39655-db54-61cd-7245-552ea4e3da55 + MV3.101 Bus 52 + + + + + d5faa2b0-6504-7be2-11f7-2dacc8b39e5b + MV3.101 Bus 17 + + + + + 71aaa328-31fa-2e71-6708-c9319a76f9e3 + MV3.101 Bus 64 + + + + + 155a8215-77be-f9de-1ff6-f7b7fbd38a11 + MV3.101 Bus 32 + + + + + 9e03ccbb-d548-a42f-8164-c2310ea3cd0d + MV3.101 Bus 92 + + + + + c0a04f8a-5e75-5d4d-3464-bc746255ac0e + MV3.101 Bus 81 + + + + + 25ae9883-c5e3-a702-b9b7-7cbad30e682f + MV3.101 Bus 94 + + + + + b3482888-a476-ee31-72b5-98631931a20b + MV3.101 Bus 78 + + + + + d7baf6d9-8a12-0b03-1e9d-153dc754eb05 + MV3.101 Bus 76 + + + + + 45d7e093-b6c0-7bbc-f3d7-94f1f4d00f7b + MV3.101 Bus 77 + + + + + 2dca6748-8f7c-a569-f5a4-3b583b95f323 + MV3.101 Bus 91 + + + + + 8d445f23-0301-8c82-d817-cb580d7d4870 + MV3.101 Bus 99 + + + + + 58e61fcf-10cf-1872-c660-d511fecbfad3 + MV3.101 Bus 96 + + + + + 0719bb8f-b06f-a985-9e7e-7fe9b920df13 + MV3.101 Bus 97 + + + + + bf04f4ea-e882-de84-a7f4-249406e6aa42 + MV3.101 Bus 93 + + + + + a1affc43-2921-48d3-0b48-8fa028ffe673 + MV3.101 Bus 98 + + + + + 9df05979-9863-aacc-49d2-9adc8d02dc46 + MV3.101 Bus 73 + + + + + fcde5dda-8657-c106-b2ae-b56124172a78 + MV3.101 Bus 90 + + + + + 940c4c60-3e96-9c4a-0d5c-0834645d95f4 + MV3.101 Bus 95 + + + + + f9c34ee0-3927-a9ac-0e2f-2e3c9b84c1ee + MV3.101 Bus 89 + + + + + 1bacc330-79ba-2553-ac05-e397c6e0af7b + MV3.101 Bus 88 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml new file mode 100644 index 00000000..668fd4b6 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml @@ -0,0 +1,22667 @@ + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + 2015-12-31T23:00:00Z + + + 355c012c-df56-d45e-dd89-635138d85707 + Current rating for MV3.101 Line 78 + + + + 96b62661-c9fe-6092-f667-728c50442b30 + Voltage limits for MV3.101 Bus 103 + + + + 3944f1ac-fc82-50dd-30d2-913464ccf749 + Current rating for MV3.101 Line 45 + + + + 5a4dad5d-9062-b8b8-ba21-57f8531ddae1 + Current rating for MV3.101 Line 89 + + + + e58fa489-d42c-5519-0f55-c903698dc300 + Current rating for MV3.101 Line 45 + + + + 8e39b518-c46a-5a8e-529f-7f915cc051eb + Current rating for MV3.101 loop_line 10 + + + + 9f1e45f5-728c-83d7-e8a6-c7d8e3b2bb82 + Current rating for MV3.101 loop_line 6 + + + + 1b04e0b8-56a0-995f-1910-38d65666ad31 + Current rating for MV3.101 Line 121 + + + + fdc8a1a4-7aad-d5bc-bb4c-64b0c7f016e9 + Current rating for MV3.101 Line 18 + + + + 020d8b4f-b32e-d2f4-1edd-b0c5f86f6a83 + Current rating for MV3.101 Line 116 + + + + 9933608a-f454-3482-32f3-6284b0b3c1c9 + Current rating for MV3.101 Line 82 + + + + 512c2d8e-ded4-887f-6bc6-8aa0c3e84883 + Voltage limits for MV3.101 Bus 88 + + + + e84cc9e8-2bcc-c7e4-1da8-f615f8db9c7f + Current rating for MV3.101 Line 23 + + + + 427b864d-e716-d29b-e556-6da453365ce1 + Current rating for MV3.101 Line 18 + + + + 66571b87-8fbe-6f7d-9972-26f5af49d996 + Voltage limits for MV3.101 Bus 109 + + + + 187d9069-e99c-c5e6-2380-16e78b48a9ce + Current rating for MV3.101 Line 67 + + + + e4c056c5-bbaf-1ba5-54c8-b28f622a253a + Current rating for MV3.101 Line 82 + + + + 7166d57d-c710-0903-ba9d-35272c6e46a2 + Current rating for MV3.101 Line 23 + + + + 7154e3c3-1f64-52c7-5272-e6015fbfc466 + Current rating for MV3.101 loop_line 10 + + + + a5c53bf3-04f5-9ff4-6491-a9833465cd2c + Current rating for MV3.101 Line 121 + + + + b4cb2782-6e1d-85c5-d82e-579f9db54635 + Voltage limits for MV3.101 Bus 17 + + + + 0a5273ef-72ad-ad2f-a553-d91f3f3bcada + Current rating for MV3.101 Line 75 + + + + 7294cdf8-43c1-f2a7-34a7-b452e7574c00 + Voltage limits for MV3.101 Bus 110 + + + + 34d7f217-01c1-e168-2483-285829f5c1c0 + Voltage limits for MV3.101 Bus 41 + + + + 13eca1fc-64a0-2d49-ef5c-48b24b5b8de9 + Current rating for MV3.101 Line 75 + + + + b9a84c3f-41f8-4a89-48a2-4f3d82ba80b7 + Current rating for MV3.101 Line 26 + + + + cca47c08-adf6-e452-2299-e2cbcf2ff1ec + Current rating for MV3.101 Line 26 + + + + 1b06b2fd-4654-6ece-fae6-b7d1bd87b0d0 + Current rating for MV3.101 Line 67 + + + + 16f821b2-df81-2ef1-2ce8-6d19f071e619 + Current rating for MV3.101 Line 133 + + + + 549bf0dc-5ba4-c77d-811d-11b9b23d7bdc + Current rating for MV3.101 Line 42 + + + + 9a86308a-3c00-ff4e-d931-97f8cf3932ba + Current rating for MV3.101 Line 119 + + + + 8723dc98-04bd-1d03-2869-855a43f96c02 + Current rating for MV3.101 Line 10 + + + + b9eb1e5e-99db-4943-9871-92a676bdb5a2 + Current rating for MV3.101 Line 119 + + + + 190f0d41-3cd2-7283-69d0-4dfbb873ced4 + Current rating for MV3.101 Line 133 + + + + 256c00fe-1a9e-e045-8707-5bb7cdd90873 + Current rating for MV3.101 Line 42 + + + + b2117c42-259d-76c8-d628-8c0e792cb888 + Voltage limits for MV3.101 Bus 85 + + + + 8ce4eca6-70ae-bf2a-0c0a-b23eb62e3556 + Current rating for MV3.101 Line 10 + + + + 5dce530a-1126-56c3-4fa5-1e33fb157602 + Current rating for MV3.101 Line 111 + + + + 622e730a-d11d-74a6-3d9d-b5f73f84f90b + Current rating for MV3.101 BS-Feeder3_line + + + + 0f9228d9-bc50-1dab-90e3-09a220e222f4 + Current rating for MV3.101 loop_line 11 + + + + c97a8129-6b06-6c66-4277-95007e506758 + Voltage limits for MV3.101 Bus 81 + + + + 64594a0e-b1d3-15dc-9a5a-42eb53f75540 + Current rating for MV3.101 Line 111 + + + + f637ca45-dc35-d7d3-39fb-89bbd74e47c0 + Current rating for MV3.101 Line 105 + + + + 21627028-14d5-767e-7e7c-84bdb0a0a246 + Current rating for MV3.101 loop_line 11 + + + + adfc1f6c-732d-41ce-8ac3-410475a305b0 + Voltage limits for MV3.101 Bus 70 + + + + cfa6599b-799d-0a56-9212-082ee0d01202 + Current rating for MV3.101 Line 12 + + + + 0f781553-6bae-944a-92aa-45f397841751 + Current rating for MV3.101 loop_line 3 + + + + de8bb789-db9b-a0eb-dbab-a4192ba6d8dd + Voltage limits for MV3.101 Bus 101 + + + + 751e14d3-1a01-f738-7241-26969c78b3f0 + Voltage limits for MV3.101 Bus 130 + + + + 130ccc47-b2c0-c8cd-505a-ab756a2ca313 + Current rating for MV3.101 Line 12 + + + + f36b00c9-0ddf-0f86-c397-6dfd1e1138f2 + Voltage limits for MV3.101 Bus 28 + + + + 080de163-276c-530a-b9c5-acd592be08c3 + Current rating for MV3.101 loop_line 3 + + + + b5f2d6bd-4354-645d-1a2e-cf15ff19ab6e + Current rating for MV3.101 BS-Feeder3_line + + + + 47fe5674-5914-42d3-ff37-2c501f56d01f + Current rating for MV3.101 Line 64 + + + + 5329cb35-66dc-f2d5-f02a-56722f9100a7 + Current rating for MV3.101 Line 105 + + + + 8b770895-ab59-56b5-f1cc-e1b6b451c515 + Voltage limits for MV3.101 Bus 137 + + + + e36cb878-3d3e-2cac-ca6c-1542f76f6baf + Current rating for MV3.101 Line 19 + + + + 05e0c967-7831-88a1-25ea-dc013cd44188 + Voltage limits for MV3.101 Bus 46 + + + + 25d14211-a369-90f4-84cc-feca9ef9f3d9 + Current rating for MV3.101 Line 61 + + + + 29f010b2-54c9-c0d0-6ba3-647ca9e6b4d6 + Current rating for MV3.101 Line 27 + + + + 0220ebce-1fa9-a6e6-21dc-ab466468a769 + Current rating for MV3.101 Line 27 + + + + ebc30937-429e-7530-a7a3-8483524f3f8a + Current rating for MV3.101 Line 102 + + + + bea2aba0-1ce9-6712-c3f5-822b8969b927 + Current rating for MV3.101 Line 132 + + + + 047f0e38-b376-d68e-e800-5e269e710131 + Current rating for MV3.101 Line 44 + + + + d0b6a4c8-702f-d95f-e10f-9f647bf4c1b3 + Voltage limits for MV3.101 Bus 119 + + + + acec1c2b-469f-bfcf-f665-c51e56911d01 + Current rating for MV3.101 Line 64 + + + + f36a4264-c547-5059-c0c7-c405ce32344c + Voltage limits for MV3.101 Bus 42 + + + + 35316be2-b88b-d56f-ea65-746143787bba + Current rating for MV3.101 Line 19 + + + + 97cb72f5-08eb-928a-ce68-338f690601c7 + Current rating for MV3.101 Line 102 + + + + 89c36618-c938-44e5-da26-32d3843780a5 + Current rating for MV3.101 Line 44 + + + + e57353bc-857a-bb5b-26ff-5c913758a692 + Current rating for MV3.101 Line 132 + + + + 7747c803-ca50-929d-4b70-663f618a7d1c + Current rating for MV3.101 Line 61 + + + + 56fd8f3b-97f7-b555-2402-872bde2a2b5b + Voltage limits for MV3.101 Bus 89 + + + + edcdcd6f-de68-7f38-1864-144c8857f0bc + Current rating for MV3.101 Line 98 + + + + 395d71b6-c42e-1c4c-b32b-645b3ed86beb + Current rating for MV3.101 Line 9 + + + + 738e7a05-3d8c-6b5e-2ca7-0e5cd2c88151 + Voltage limits for MV3.101 Bus 54 + + + + 33323605-1d07-c40b-ea73-b0142b0f268a + Current rating for MV3.101 Line 58 + + + + c0579821-bfa8-3f5b-a950-ccfc3556e162 + Current rating for MV3.101 Line 33 + + + + b1477f1f-f26d-bbf1-0f22-1a3ea6d878a6 + Voltage limits for MV3.101 Bus 29 + + + + 80466e70-e800-5342-dddd-4439eaa27c92 + Current rating for MV3.101 Line 33 + + + + b159f4c1-8336-d6b7-4863-a59227f72062 + Current rating for MV3.101 Line 76 + + + + 626e29f1-6ecd-0529-3d31-eb4636b15e22 + Voltage limits for MV3.101 Bus 19 + + + + f3ec894c-4089-596d-e752-a4562883e858 + Current rating for MV3.101 Line 129 + + + + 96c515a3-6715-60b1-d090-a29962d1ca0d + Current rating for MV3.101 Line 17 + + + + ce572762-050c-0304-67cc-30ab98068368 + Current rating for MV3.101 Line 76 + + + + 0b7cc13a-d272-25e8-2d19-4b12da15defd + Current rating for MV3.101 Line 9 + + + + 7f1d1a1c-8239-4d69-8bc5-5c91a4bddda4 + Current rating for MV3.101 Line 58 + + + + 5cc3da29-7741-3a11-7832-6eb70b9136ec + Current rating for MV3.101 Line 17 + + + + 2815ff03-e192-7321-8364-5c0fee404e15 + Current rating for MV3.101 Line 98 + + + + 0dd6eed9-b9d7-c1db-0a9b-1210acc93b64 + Current rating for MV3.101 Line 60 + + + + a83caaf7-0bc7-32bb-8cc9-fa67130c5bff + Current rating for MV3.101 Line 131 + + + + 6b352450-963a-65c9-431d-f40504aedf70 + Voltage limits for MV3.101 Bus 53 + + + + 8dbd02f3-9c7d-d21b-f33e-1240d2544561 + Current rating for MV3.101 Line 90 + + + + 0b93d426-5bbe-37b2-3b07-97c3fc77ef23 + Current rating for MV3.101 Line 1 + + + + 7c2b3b48-0f1b-5e9f-be54-1cdc296af5aa + Current rating for MV3.101 Line 123 + + + + 610fb60d-6e5e-453b-b742-2cef2416c320 + Voltage limits for MV3.101 Bus 62 + + + + cb4207c2-f3ae-c6a4-b29b-f5ad7b17ef8a + Current rating for MV3.101 Line 95 + + + + b6ea8fbb-09d1-2ac0-e2b7-e9947dcc3fe6 + Current rating for MV3.101 Line 123 + + + + ebe0b924-c687-9d3f-8d61-4c6973c98931 + Voltage limits for MV3.101 Bus 61 + + + + 662bd746-db1c-47da-324e-707c79f01bef + Current rating for MV3.101 Line 95 + + + + d3ca0415-44e6-35a5-4ac5-ea41942af7e0 + Current rating for MV3.101 Line 1 + + + + ad779108-535a-b0d1-c366-da0ac0ef9df9 + Current rating for MV3.101 Line 131 + + + + 2d6a0c30-2e90-d3e7-4233-18b2b024dc26 + Current rating for MV3.101 Line 90 + + + + 7096b701-b525-048b-72c3-fcc3bbca863b + Current rating for MV3.101 Line 11 + + + + 2adaa4ce-650a-00eb-6430-1a2f805b8bc5 + Current rating for MV3.101 Line 129 + + + + 410d451a-3cbe-c0fd-1681-853ae7d07017 + Current rating for MV3.101 Line 92 + + + + 8fdc66fb-8140-7d27-5ad2-41ca531fb224 + Voltage limits for MV3.101 Bus 15 + + + + 03753fc3-def6-77a2-ba11-6961c348b729 + Current rating for MV3.101 Line 83 + + + + 5e1baf18-8c8d-6acf-068e-90d36bd2cd6c + Current rating for MV3.101 Line 92 + + + + ee37d667-69b1-cf99-98bf-297fc7288aa8 + Current rating for MV3.101 Line 68 + + + + 8313c766-75f0-6bd6-71e6-e8531cfc4685 + Current rating for MV3.101 Line 68 + + + + b5f6073f-9248-25a0-c27a-e85c7247c30a + Current rating for MV3.101 Line 60 + + + + ddba99aa-2b4f-de98-83d8-081dc2dcf2c6 + Current rating for MV3.101 Line 11 + + + + 4c78dcb8-385a-57a5-d258-64b2ab0ef2ac + Current rating for MV3.101 Line 83 + + + + cd616df2-3bff-9a31-9831-01e5938302d6 + Current rating for MV3.101 Line 8 + + + + a2d726d9-84d3-1d57-937b-9f3ec884cd24 + Voltage limits for MV3.101 Bus 77 + + + + 453a5a09-bcf4-fc93-e4f4-8e52bc8c9c05 + Current rating for MV3.101 Line 8 + + + + 8b3e009e-818c-27a9-0378-dbb227b04548 + Current rating for MV3.101 Line 69 + + + + 027cf39a-e911-fbeb-877a-c55c84515d57 + Voltage limits for MV3.101 Bus 63 + + + + 4e0aaf56-2340-8548-8748-a9bd88bad2e2 + Current rating for MV3.101 Line 69 + + + + 8378f103-9f78-cd15-4c2c-3bd74dee6b17 + Current rating for MV3.101 Line 101 + + + + 7b017297-fe98-d992-d012-bd6a89a590ee + Current rating for MV3.101 Line 124 + + + + 36de8472-32bc-85f3-b0dd-08efb20a90ba + Current rating for MV3.101 Line 36 + + + + 7672828e-adf9-5266-20ff-a44133decf17 + Current rating for MV3.101 Line 40 + + + + 2e49aa09-379d-27e1-dc4d-d322f4fec4ec + Voltage limits for MV3.101 Bus 93 + + + + 781488d4-cc72-e90f-4a41-64441941bc53 + Voltage limits for MV3.101 Bus 94 + + + + d86e8a6d-159b-dcad-c79f-35e930984a33 + Current rating for MV3.101 Line 40 + + + + ee39f535-ae7f-fdc2-8077-2c9faf3559ee + Current rating for MV3.101 Line 74 + + + + 62c4585c-8c6c-f475-c452-eab852afb7b4 + Current rating for MV3.101 Line 74 + + + + a62a1b75-bdcf-a554-040b-7aeaff5c1d9c + Voltage limits for MV3.101 Bus 38 + + + + 3a254ad3-8c2a-b55c-f93e-a0a63be6e014 + Voltage limits for HV1 Bus 26 + + + + 01db0bf8-d8f1-8bff-42df-05593db35e4d + Voltage limits for MV3.101 Bus 22 + + + + fc4f5e43-fba6-6f36-1e83-d45bedf1ff16 + Current rating for MV3.101 Line 124 + + + + cd24b586-dcd2-e60e-cfbd-ecdd5cd262dd + Voltage limits for MV3.101 Bus 87 + + + + 11b4173f-7165-ec17-7c6d-6aa7ed75176e + Current rating for MV3.101 Line 101 + + + + 36df57d1-cf28-40a5-3f47-f51f656b4cb3 + Voltage limits for MV3.101 Bus 48 + + + + af152fd9-5d32-4631-34b9-ee6b1c3fc47c + Current rating for MV3.101 Line 28 + + + + 633a8930-1886-f812-4106-0bb6a078935a + Current rating for MV3.101 Line 28 + + + + f4cf95f2-d840-549c-7761-0aee670b0465 + Current rating for MV3.101 Line 122 + + + + a8304359-fb7f-c5ed-f5e7-e414e9821702 + Voltage limits for MV3.101 Bus 55 + + + + 534a5b54-261f-af5e-c03d-a0c1d100863d + Current rating for MV3.101 Line 50 + + + + de23831c-370f-d592-5452-220960a90506 + Current rating for MV3.101 Line 122 + + + + d3848db2-7e35-fe44-5267-ee89e339962b + Voltage limits for MV3.101 Bus 142 + + + + d670ba56-021c-04fe-fae4-8512912327f0 + Current rating for MV3.101 Line 127 + + + + e828f47e-41a0-7bd0-5040-9bcf02e9624a + Current rating for MV3.101 Line 24 + + + + 379bd81d-ca9b-bc61-80a9-f95462c452c1 + Current rating for MV3.101 Line 24 + + + + bb9157d6-10da-68ae-5380-1fc9b6d6589b + Current rating for MV3.101 Line 36 + + + + e7239107-72e6-13bc-897c-0edc0317668b + Current rating for MV3.101 Line 50 + + + + e313d400-3c93-5439-acb5-9f0583a3df8a + Current rating for MV3.101 Line 7 + + + + 94cddd99-b5be-7d66-a326-00a4f76d648b + Current rating for MV3.101 Line 118 + + + + 775411a9-d1da-1cbb-e22f-765b4948efbe + Current rating for MV3.101 Line 51 + + + + da10cf94-f532-13a7-5beb-05c9bc220d70 + Current rating for MV3.101 Line 118 + + + + 0f9138f3-616b-4c20-0dc8-858164cae413 + Voltage limits for MV3.101 Bus 122 + + + + 6255afd2-dacb-6ddb-a151-df09b76d2075 + Current rating for MV3.101 Line 31 + + + + 2cc235b2-4a81-78a8-fbef-fa26fcb3ab35 + Current rating for MV3.101 Line 51 + + + + e02d7037-7599-b9f9-c636-019d10dd9a9e + Current rating for MV3.101 Line 7 + + + + 7598a31f-fbeb-71ab-b7f1-f17045835017 + Voltage limits for MV3.101 busbar1A + + + + 2b845e83-75d1-04b5-40ea-b7228ddb99e6 + Current rating for MV3.101 Line 93 + + + + 5c67340e-217b-14db-363e-c314a83b0f98 + Current rating for MV3.101 Line 93 + + + + 2465f20b-8bdf-00b8-9ce8-63ca2a1bc95f + Current rating for MV3.101 Line 48 + + + + fcb008bc-31c4-cc34-1d95-54fe1b5c1987 + Current rating for MV3.101 Line 20 + + + + 0a965372-6e86-0684-26db-e0fba57983c5 + Voltage limits for MV3.101 Bus 91 + + + + 72167bf8-d341-a340-04d1-40d60e6d6968 + Current rating for MV3.101 Line 48 + + + + 3240753e-0b1b-0665-7918-55c66c0beca7 + Current rating for MV3.101 Line 91 + + + + 22bcd436-ec9e-490c-45dd-e898a5ff0006 + Voltage limits for MV3.101 BS busbar1C + + + + 85748eb1-3db7-449f-cab8-abf8d3f39bc9 + Current rating for MV3.101 Line 31 + + + + 8eab24be-ed55-f3a2-bb46-e8ac0c501818 + Current rating for MV3.101 Line 2 + + + + 46496d7e-16cb-dd1d-3366-81cf6928ae41 + Current rating for MV3.101 Line 91 + + + + 4cbf2ac3-ed2d-89dc-1eae-2280a05e7e6e + Voltage limits for MV3.101 Bus 43 + + + + 39e0bda7-8098-d98d-ed33-e2f07d3a8715 + Current rating for MV3.101 Line 127 + + + + 1172ebea-f9c8-f1f5-dc2e-c4ac7cf091e1 + Current rating for MV3.101 Line 126 + + + + 01109808-dc89-ad35-da6d-dac07012fc65 + Voltage limits for MV3.101 Bus 102 + + + + 07dd8f1a-c6d2-4ef9-0b88-8328ad8d3117 + Current rating for MV3.101 Line 126 + + + + c5a50134-53f1-0a65-c049-d10b4fa65e28 + Current rating for MV3.101 Line 20 + + + + 3eb820c3-b197-6fbf-a755-0fe5714ae4da + Voltage limits for MV3.101 Bus 45 + + + + a087cf0b-5829-bd1a-1a23-575b01d846b8 + Current rating for MV3.101 Line 106 + + + + f8a5a5d0-a726-ce5d-7dcd-1e67cc2e28f5 + Current rating for MV3.101 Line 106 + + + + 46412c92-6e3e-11bf-e425-7a95df6a193d + Current rating for MV3.101 Line 84 + + + + 0f4b71ce-42ea-2098-2c23-5e12b113074a + Current rating for MV3.101 Line 103 + + + + 45398877-c1b4-3847-5cec-1db5b219b05a + Voltage limits for MV3.101 Bus 82 + + + + ed841921-3851-2f26-7c7f-8813a8468fc2 + Current rating for MV3.101 Line 2 + + + + 9e870c9b-3fc3-59e7-3af6-0207f61dc875 + Voltage limits for MV3.101 Bus 32 + + + + 29853083-665f-b1a4-77ae-b1c50d9571b6 + Current rating for MV3.101 Line 53 + + + + efc725d8-028e-3940-05ad-ab81c295627f + Current rating for MV3.101 Line 84 + + + + 7939b768-21be-ac0d-fffa-0a97259b38a8 + Current rating for MV3.101 Line 53 + + + + 44022006-789b-4362-ad19-c6f372185655 + Voltage limits for MV3.101 Bus 86 + + + + c9558f25-558a-457f-c4a5-462326485453 + Voltage limits for MV3.101 Bus 40 + + + + d1b1117b-194b-10a1-37a4-b670060f8026 + Voltage limits for MV3.101 Bus 27 + + + + daf4cd1e-d1c3-9658-5192-68345d6ca1b5 + Current rating for MV3.101 Line 35 + + + + 564db986-a4fc-8e5f-fe56-ad7be1edba24 + Current rating for MV3.101 Line 114 + + + + df62ff11-cd23-e9f9-3c8a-5f0896f4f2c6 + Current rating for MV3.101 Line 130 + + + + 1f33a146-01c5-cfdb-0f0c-ae462a3487e1 + Voltage limits for MV3.101 Bus 100 + + + + d0f3922b-a944-3511-782d-789de0d8fd42 + Current rating for MV3.101 Line 114 + + + + 0cf171aa-803c-5310-0947-4bd8ebd5a632 + Current rating for MV3.101 Line 130 + + + + 48a5bd71-c6dd-7215-dd76-7d56ee43e0e5 + Current rating for MV3.101 Line 35 + + + + f619d2dc-9a66-5a0c-ee9a-0e841efea336 + Current rating for MV3.101 Line 103 + + + + 32a81a99-90f8-1227-b68f-b0257b1e959d + Voltage limits for MV3.101 Bus 26 + + + + b3759915-4412-a8b7-883b-ac5c9cfa9149 + Voltage limits for MV3.101 Bus 97 + + + + f75ab98c-d6a6-cc59-048c-001a26e0fee6 + Voltage limits for MV3.101 Bus 11 + + + + 0af6c7f3-eb10-40d6-e56b-69fb780eafe0 + Voltage limits for MV3.101 Bus 121 + + + + 7d7260b9-d434-1236-0148-1738c9ba6d33 + Current rating for MV3.101 Line 128 + + + + ad015f74-73ae-93a2-b50c-4d5359aea4ef + Current rating for MV3.101 Line 128 + + + + 6a8dcf9e-3055-5ee7-d58d-b43d45a3b328 + Voltage limits for MV3.101 Bus 132 + + + + 083dd117-593c-cf51-35e9-3a64318cc9b2 + Current rating for MV3.101 BS-Feeder4_line + + + + 24379419-f405-b1b7-c5bd-a949cf00a45d + Voltage limits for MV3.101 Bus 58 + + + + aeda32d2-e694-5cb5-5c55-220535334568 + Current rating for MV3.101 Line 43 + + + + f672a5e8-bbe8-059d-298d-9ebaed1dad4c + Voltage limits for MV3.101 Bus 83 + + + + 5965a769-830b-ffa3-697b-bc872228d480 + Voltage limits for MV3.101 Bus 135 + + + + fb8f565c-859c-8553-0d4b-60a45897a303 + Current rating for MV3.101 Line 43 + + + + 741fd07a-7253-248e-4626-ba54d1178605 + Current rating for MV3.101 BS-Feeder4_line + + + + 12f8a61e-1220-503b-fd4f-43e43c75b4e0 + Current rating for MV3.101 Line 80 + + + + 22ca0617-6068-ee1f-8d4d-656599a703c1 + Current rating for MV3.101 Line 38 + + + + 7d7ef6b0-e4b1-5b8d-c231-4b5ec30ccea0 + Current rating for MV3.101 Line 41 + + + + e559da4d-9b64-9d40-aaf7-95d1981b8056 + Voltage limits for MV3.101 Bus 80 + + + + c1fa32c4-3290-41e9-4dec-9a73188550b1 + Voltage limits for MV3.101 Bus 140 + + + + 48ec2e92-800f-9e53-5e54-1468db919604 + Current rating for MV3.101 Line 41 + + + + 78bfbcc1-d3fe-b11f-2c3c-251ce94cfd34 + Current rating for MV3.101 Line 80 + + + + a991ab08-7a3c-038b-83ce-9c3bd28a050a + Current rating for MV3.101 Line 38 + + + + da9dd5c8-3f54-73d4-f100-218c2ca58d5a + Current rating for MV3.101 Line 29 + + + + 6165ce69-e579-4940-3a45-c4aae639e525 + Current rating for MV3.101 Line 66 + + + + 21cfedbd-42b1-94c3-ef5a-c32df89422ca + Voltage limits for MV3.101 Bus 124 + + + + b3cc1e79-6ae5-c756-7cc6-816085124e53 + Current rating for MV3.101 Line 62 + + + + 8778a5e1-2245-0b64-c660-1bb0c603c1d7 + Voltage limits for MV3.101 Bus 99 + + + + 8997d6b1-f706-7333-be67-4506d3fd22d2 + Voltage limits for MV3.101 Bus 125 + + + + a1a67b2f-91c9-3938-5e23-0f449d931238 + Voltage limits for MV3.101 Bus 31 + + + + 8a27f3e6-24fe-c8ec-a122-7825633ac892 + Current rating for MV3.101 Line 62 + + + + 6bff8085-42b4-4d51-3630-5d684d60ecc8 + Voltage limits for MV3.101 Bus 51 + + + + e4cb4ba3-4269-44d6-f78b-9d8e7f184a26 + Current rating for MV3.101 Line 65 + + + + 3f89a3d4-4d9b-6c87-9148-6434c25648ae + Current rating for MV3.101 Line 29 + + + + e6e6c7f1-230f-0fd8-7d45-374d17deef05 + Voltage limits for MV3.101 Bus 112 + + + + 3fd6ae4e-e5dd-6632-66b5-2697bcbc7f02 + Current rating for MV3.101 Line 65 + + + + ef39fa12-962a-51a7-0908-87302da400ab + Current rating for MV3.101 Line 120 + + + + c386c84b-6a6f-bc9d-b81e-a4027fb39a19 + Current rating for HV1-MV3.101-Trafo2 + + + + a15f300e-4270-8a24-6adf-f1550e423d32 + Current rating for MV3.101 Line 47 + + + + cc4e6f63-1c6c-b483-08af-c4e9e33f3fbc + Voltage limits for MV3.101 Bus 57 + + + + 3e0ce633-22bf-a129-9ec4-b8429382f580 + Current rating for MV3.101 Line 120 + + + + 52b8b23c-eddf-3810-28e0-fae8ae9ef87f + Current rating for MV3.101 Line 66 + + + + 05be2db8-759c-2c36-0804-075b9852e05c + Current rating for MV3.101 Line 113 + + + + 54753b37-f21c-a6a8-3054-a37eece19b54 + Current rating for MV3.101 Line 16 + + + + ea579124-fc09-bce1-9cac-63e35d27ab31 + Voltage limits for MV3.101 Bus 35 + + + + 40535328-a451-b966-aa1d-1fd98fcaa67e + Current rating for MV3.101 Line 47 + + + + 3a95a6a1-ff3e-4115-d7bf-74fd4131460c + Current rating for MV3.101 Reserve line + + + + ecadf16f-b15e-d480-3920-2466d5be4718 + Current rating for MV3.101 Reserve line + + + + 8dda3650-5e15-96b3-3c0b-f3b4747774b9 + Current rating for MV3.101 Line 30 + + + + bc569062-87c9-815e-ba65-f1e793050083 + Current rating for MV3.101 Line 113 + + + + 9e7373b3-52bc-3359-f46b-be71a82aab86 + Voltage limits for MV3.101 Bus 34 + + + + 4609ca44-c67e-add8-e280-324651d57e29 + Current rating for MV3.101 Line 16 + + + + 2270ba3c-46a7-12b6-1434-f4f27ab3ab3e + Current rating for MV3.101 Line 39 + + + + 51d93546-6cb1-3425-9747-db044d438d72 + Current rating for MV3.101 Line 30 + + + + 37f1b04e-010e-5ad0-f4e9-07a72eb707f3 + Current rating for MV3.101 Line 100 + + + + 8c9ceff0-3000-827e-90ab-6fc2adb42b72 + Current rating for MV3.101 Line 125 + + + + da57f874-4b58-09f4-89c4-f57974364cbe + Current rating for MV3.101 Line 70 + + + + eef7c3de-3558-9dc1-55fc-069d1cadc0a1 + Current rating for MV3.101 Line 70 + + + + 2575618a-7bdf-16f7-5445-2f9acae35485 + Current rating for MV3.101 Line 97 + + + + d1514e5e-33a9-1b8d-7d59-f5e395103a23 + Voltage limits for MV3.101 Bus 12 + + + + 87bb22d5-98ce-d2a6-8720-b37804654d5a + Current rating for HV1-MV3.101-Trafo2 + + + + 2505f54e-ec7b-e4e0-14b8-a3edcdef584f + Current rating for MV3.101 Line 125 + + + + a1db3c2e-6c4c-99bb-745e-8fdc2b218dfe + Voltage limits for MV3.101 Bus 138 + + + + 6b24cebd-3962-6e2b-11f1-f9aeed6c8118 + Current rating for MV3.101 Line 39 + + + + fdb979e7-a817-b3ee-89bb-2493807f44ec + Current rating for MV3.101 Line 97 + + + + b6b473d4-4373-78ca-414f-f133fd2240c5 + Current rating for MV3.101 loop_line 1 + + + + 7a31943d-7862-3f39-b035-89aafc4c8ab0 + Current rating for MV3.101 Line 49 + + + + 162fd53f-beb6-f21c-6b0e-6e32f802a31e + Current rating for MV3.101 Line 87 + + + + 672433cb-93be-f656-8bef-04be5ec71297 + Voltage limits for MV3.101 Bus 23 + + + + b10364e1-dd23-bdfb-c842-3e48b874fc19 + Current rating for MV3.101 Line 87 + + + + 244086f7-c6fd-03f8-8e76-27926470c3ba + Current rating for MV3.101 Line 49 + + + + f7ae91f4-1b4a-66b6-ad81-2fdb44dff514 + Current rating for MV3.101 Line 77 + + + + af1bdaa9-d5dc-3ac5-878f-11af9eb0a793 + Current rating for MV3.101 loop_line 1 + + + + 543366d0-1cd3-79e0-0c6c-3c46905d5263 + Current rating for MV3.101 Line 77 + + + + 99de7373-d641-81cd-772f-4e24eef51a39 + Current rating for MV3.101 Line 59 + + + + 07da1f20-0bb8-f7ce-91c1-d802d3e693e6 + Voltage limits for MV3.101 BS busbar1B + + + + e80b7f2e-d93d-057a-8010-a06dfdfcbd66 + Current rating for MV3.101 Line 108 + + + + b62f0201-dc29-f8fa-b97f-938f3a10970e + Current rating for MV3.101 Line 117 + + + + 9172538f-fd17-c6dd-d7ce-843ed9aaca46 + Current rating for MV3.101 Line 96 + + + + d8e34920-c68f-8fc0-be33-f6a40d80ebd2 + Current rating for MV3.101 Line 100 + + + + 3e53cf99-00ff-d1bc-598d-75b24c76ff7d + Current rating for MV3.101 Line 96 + + + + 900e328f-6f4e-3e87-f55d-81996db8d4b7 + Voltage limits for MV3.101 Bus 141 + + + + 33c5ebbd-d9c0-3577-9522-030fb981badd + Voltage limits for MV3.101 Bus 39 + + + + e93b997b-fa13-4d7a-97c1-a85df0942d4f + Current rating for MV3.101 Line 117 + + + + d709656a-d291-723c-7792-f6eea069a191 + Current rating for MV3.101 Line 108 + + + + ae6d6fee-a7d1-31c1-402b-d85a05f0e7d7 + Current rating for MV3.101 Line 59 + + + + d00c7b9b-37ae-d00d-2cfd-197482a556fe + Voltage limits for MV3.101 Bus 120 + + + + ac7ac6f1-6fc2-3407-7ad0-b70369fc1cb8 + Voltage limits for MV3.101 Bus 92 + + + + aef12411-24a6-cd0f-27f9-42c314237751 + Current rating for MV3.101 Line 73 + + + + 0e98b549-ea6f-1983-21fc-585eb57385a6 + Current rating for MV3.101 Line 32 + + + + 1c948908-2ae7-a3d5-7e0a-4dbf9c9ab844 + Current rating for MV3.101 Line 32 + + + + a5038981-59d2-2a20-a55c-50e231e231df + Current rating for MV3.101 Line 110 + + + + b42ca62c-3721-a6e8-4ba2-1c3b96e24eda + Current rating for MV3.101 loop_line 9 + + + + 2b333d58-669f-7dfd-a7f6-914b2bbb9a90 + Voltage limits for MV3.101 Bus 25 + + + + 39768659-f562-bdce-44cd-de55cb1703a5 + Current rating for MV3.101 Line 15 + + + + bc4c9d83-d8b9-8d13-744e-b7852ece78b5 + Current rating for MV3.101 Line 110 + + + + 12f19435-1d0b-42c5-c4f8-4df89ae24362 + Voltage limits for MV3.101 Bus 68 + + + + 91aa2d18-4552-1604-0a18-dcc90dd99206 + Current rating for MV3.101 Line 73 + + + + 4628c68b-74d5-3593-168c-274bf7b23de6 + Current rating for MV3.101 Line 15 + + + + cfa9f7db-8fd5-48a6-1276-42403bdf0196 + Current rating for MV3.101 loop_line 9 + + + + a2e8f855-1784-7c8a-107f-5bebee99507c + Voltage limits for MV3.101 Bus 114 + + + + 6e7673aa-f5ce-69b2-6c53-25ce2ee70829 + Current rating for MV3.101 loop_line 2 + + + + 22a44364-fccf-3164-46f5-e0c1715b73de + Current rating for MV3.101 Line 34 + + + + 45abfcc9-b6ca-9781-17af-b3fc832b19a4 + Current rating for MV3.101 Line 3 + + + + 5d1e1f51-221f-4a36-8381-31190a75c9f0 + Current rating for MV3.101 Line 34 + + + + 8a897861-e827-65a7-abe0-ea8c9569c97c + Current rating for MV3.101 Line 81 + + + + 0387a864-329d-ac29-7e0a-597476e1c3f9 + Current rating for MV3.101 loop_line 4 + + + + 1e91cbe5-8672-6475-585c-0a508a3fe32c + Current rating for MV3.101 loop_line 4 + + + + 87013eed-8813-10fc-fcb4-bc4a8de9ee3c + Voltage limits for HV1 Bus 25 + + + + 7aa8220a-45f7-cdd4-09e7-30e6dcbe5c46 + Current rating for MV3.101 loop_line 2 + + + + 8eac3744-aee6-339d-6e00-33c679c715e4 + Voltage limits for MV3.101 Bus 133 + + + + 82ba5660-298b-0bf6-b21b-9f932739961a + Current rating for MV3.101 Line 81 + + + + 9589c9c3-f8fc-d8e3-f6d7-588461f8e77b + Voltage limits for MV3.101 Bus 95 + + + + 43063a7d-735e-4cff-4965-8c1c5ca060b3 + Current rating for MV3.101 Line 86 + + + + 61aa9ae0-de30-8399-9fb7-71a82f2cffe1 + Current rating for MV3.101 Line 115 + + + + 0b0b3cee-1ecc-392f-4e62-c4b8bd781eca + Current rating for MV3.101 Line 79 + + + + 13a9c4db-147c-fa83-2b9d-719dcd64e508 + Current rating for MV3.101 Line 79 + + + + 12a19d3a-3899-633e-8cf4-53b305f0029a + Current rating for MV3.101 Line 3 + + + + 7f7bf3e9-97cb-0abd-4994-856a2bf3cff3 + Current rating for MV3.101 Line 55 + + + + 13089b81-e477-1131-b9f5-e5bcd79a3627 + Voltage limits for MV3.101 Bus 24 + + + + 46a68ae9-25e0-a736-0a3d-cf7a97b34824 + Voltage limits for MV3.101 busbar2A + + + + 3cb67754-f8cb-70cf-8df2-33302dac6a32 + Current rating for MV3.101 Line 14 + + + + ce68b489-e13a-5756-1d64-e80cff9a8e22 + Current rating for MV3.101 Line 86 + + + + 2c27331f-4661-bc48-35ff-f55a100b299a + Voltage limits for MV3.101 BS busbar1A + + + + c71ac476-2030-678c-4de0-dfaa7a79bee6 + Current rating for MV3.101 Line 21 + + + + b852858f-6f20-ac0a-8d63-93da564deee0 + Current rating for MV3.101 Line 115 + + + + d6b7c786-e40b-8c8f-29a4-dc6e9f56817c + Current rating for MV3.101 Line 52 + + + + b51d6ab4-3291-6e09-eadb-a50cd1a6c718 + Voltage limits for MV3.101 Bus 66 + + + + 54ddcd6c-25ed-5537-cbf7-b2d86d50cb71 + Current rating for MV3.101 Line 14 + + + + 997cc9db-1214-6659-3976-9d0b8497d15e + Current rating for MV3.101 Line 5 + + + + 57ff7dde-dea7-bfe7-5d9d-2ee19560793a + Current rating for MV3.101 Line 55 + + + + cab466ce-25a8-6332-7939-d7458173a124 + Current rating for MV3.101 Line 21 + + + + a34089de-96d5-3937-4ada-7a47c5088b82 + Current rating for MV3.101 Line 112 + + + + c4336f55-cf05-c750-d5ca-f35eceb68726 + Current rating for MV3.101 Line 112 + + + + 3b43b93e-8548-c723-e53c-e1e3f98fefc9 + Current rating for MV3.101 Line 5 + + + + 7babe0c2-0a1b-e1a6-e12a-fd0baba359ed + Current rating for MV3.101 Line 46 + + + + 273c9ad4-a0cb-cbad-1ac9-3022a6a8f8b7 + Voltage limits for MV3.101 Bus 59 + + + + bd29ce9e-dd8e-e64c-88a5-e236fc54b4f3 + Current rating for MV3.101 Line 46 + + + + cef12e5c-c775-4b0d-f243-ebf3c10f66a5 + Voltage limits for MV3.101 Bus 72 + + + + 1ec9b5e4-155b-bd48-46e5-33ce42c930cd + Current rating for MV3.101 Line 52 + + + + 031a8dda-eb99-097a-3bdb-9d714c5029de + Current rating for MV3.101 Line 107 + + + + 342d708a-b97d-112b-6a9e-7e7e70fb7068 + Voltage limits for MV3.101 Bus 56 + + + + 85a5bc91-e83c-6dad-01fa-bba6909545b8 + Voltage limits for MV3.101 Bus 90 + + + + d2c93ef1-9ad8-d4e5-473c-97d257f5fa57 + Current rating for MV3.101 Line 54 + + + + f35dd31c-f5df-008e-cc88-7b65a936d3ea + Voltage limits for MV3.101 Bus 13 + + + + 27142e73-e4cc-2159-5416-1bfe70a44387 + Current rating for MV3.101 Line 107 + + + + a76e9562-3555-6246-d767-680225111740 + Current rating for HV1-MV3.101-Trafo1 + + + + af9f414e-d0d8-9f16-0b66-f0d0d24711bd + Current rating for MV3.101 loop_line 8 + + + + 0552f35c-9215-666d-8bf8-1df5782e35ff + Current rating for MV3.101 Line 54 + + + + bf80ab80-32a8-6b11-e07d-2ca59771da9a + Current rating for MV3.101 loop_line 5 + + + + 34915a9b-7742-4763-3d6d-0455b3f95369 + Voltage limits for MV3.101 Bus 143 + + + + a38e6ad9-7b9e-beca-b6ac-e93b103d57dc + Current rating for MV3.101 Line 109 + + + + 9e6ab5a8-63e0-9e2b-54f8-5273ce20ea5e + Current rating for HV1-MV3.101-Trafo1 + + + + 11ebba20-74c4-ce89-3547-d127af52215d + Voltage limits for MV3.101 Bus 76 + + + + 334b9bbc-5a7d-8683-bdde-d2b068c558f2 + Voltage limits for MV3.101 Bus 104 + + + + 80c83515-31d4-a417-3ed9-0b610ef5daed + Current rating for MV3.101 Line 6 + + + + ed0ca8bc-f4e4-a998-5ca9-3324212e9dad + Current rating for MV3.101 Line 72 + + + + 1fccd53c-52ec-5b28-cf24-144416a33c85 + Current rating for MV3.101 Line 6 + + + + ddd3601c-0680-c492-cbb6-b72aa0e61941 + Current rating for MV3.101 loop_line 8 + + + + 03e48a3e-b99d-239d-3210-46c256437128 + Current rating for MV3.101 loop_line 5 + + + + c9531043-45e0-46f3-f59b-319fd770e188 + Current rating for MV3.101 Line 94 + + + + 5124d288-d570-a2e9-861d-c3b0fa4db5d6 + Voltage limits for MV3.101 Bus 36 + + + + f30eb91a-e78e-b332-5169-294490bf97e8 + Current rating for MV3.101 Line 4 + + + + 4f581338-45c9-300d-f8f1-fa7ae410c02c + Current rating for MV3.101 Line 22 + + + + fa9034bf-6f77-f713-5de5-31f4bdd3312b + Current rating for MV3.101 Line 94 + + + + c04d20ee-10f5-a3a1-0ed7-dd6b4c4d46e9 + Current rating for MV3.101 Line 4 + + + + f4aaded2-6ce5-c860-1f99-e29dd6546d7b + Current rating for MV3.101 Line 109 + + + + c4777082-f51c-22ee-9121-44109bebe447 + Current rating for MV3.101 Line 22 + + + + a9d39c2b-557f-1d77-52bf-9e0c9f34c927 + Current rating for MV3.101 Line 99 + + + + 70db3bba-e278-c04a-6883-97e11ddb1856 + Voltage limits for MV3.101 Bus 129 + + + + 2cc59a87-11a3-e078-95f1-dffaae574f93 + Current rating for MV3.101 Line 37 + + + + 7d9ebd93-4e5b-cd07-ce59-915c08b780db + Voltage limits for MV3.101 Bus 106 + + + + 27ff7060-b78b-bdeb-ac9c-a6ca843d2a48 + Current rating for MV3.101 Line 63 + + + + 114e47ce-f47d-d853-3aa8-1f93643df25f + Current rating for MV3.101 Line 37 + + + + 084a2acf-de4d-d332-d46f-5f6d319d5207 + Voltage limits for MV3.101 Bus 78 + + + + 71fbd01d-bbe7-52c4-9366-e6ce208a0abc + Current rating for MV3.101 Line 63 + + + + f8028ed3-b03a-f37f-6275-81ef7e15cac6 + Current rating for MV3.101 Line 72 + + + + ece1bb4c-2f3e-7fa5-3e93-60fbf6c1341d + Voltage limits for MV3.101 Bus 44 + + + + c00dfd15-8042-ff09-a015-bb7f8e961e7c + Voltage limits for MV3.101 Bus 47 + + + + 2c91168a-0d49-0483-54dd-0de063d2b052 + Voltage limits for MV3.101 Bus 84 + + + + face5e74-e265-2aa4-ede8-d200cbac8337 + Voltage limits for MV3.101 Bus 65 + + + + 361fd923-62a2-4820-152a-ca179077fe27 + Current rating for MV3.101 Line 104 + + + + 80234a9b-00b8-66ab-be46-91ce993e2664 + Current rating for MV3.101 Line 104 + + + + 21389a70-02b0-78be-0baa-c98f857f1d80 + Current rating for MV3.101 Line 99 + + + + c71a9b85-20c0-6c47-6ff8-97c5e919fe07 + Current rating for MV3.101 Line 57 + + + + 15c0d2b3-f2f4-8a61-6922-807968a7f222 + Voltage limits for MV3.101 Bus 16 + + + + 203d33bc-d365-3ffe-d632-7731b75b2999 + Current rating for MV3.101 Line 88 + + + + eb0045e2-43af-614e-33d4-ead6de3766c1 + Current rating for MV3.101 Line 88 + + + + 747cc1b0-b9d8-ecde-5ae0-78c80c988bae + Voltage limits for MV3.101 Bus 49 + + + + 1d0dbf6c-bf96-f8fc-91f1-db9fe8eb4e3f + Current rating for MV3.101 Line 57 + + + + 5a55c12e-8993-03de-5457-fba9f536f749 + Voltage limits for MV3.101 Bus 108 + + + + b3336147-4a7d-7d97-e6f1-afbd213f7bcf + Voltage limits for MV3.101 Bus 20 + + + + 428e7e4d-33f2-1508-0125-438940be2575 + Current rating for MV3.101 Line 56 + + + + a58cb104-7040-f687-dfc4-7c7da4e6cdfb + Voltage limits for MV3.101 Bus 37 + + + + a9d3bbc6-08f0-6a64-67ab-4496e8175c74 + Current rating for MV3.101 Line 13 + + + + e84587c7-d69c-da8b-5d39-299300ebe264 + Current rating for MV3.101 Line 85 + + + + 6b2bd2a5-18f5-cede-8b54-27d5ecd7afe2 + Current rating for MV3.101 Line 85 + + + + ed7b783e-6b21-f034-5ac3-b5e7a6f7116c + Voltage limits for MV3.101 Bus 128 + + + + 7fa7ebad-e23f-b70f-2864-64fe193b534d + Current rating for MV3.101 Line 13 + + + + 7386d575-57c6-1596-46b0-d2d1927f2f53 + Current rating for MV3.101 Line 56 + + + + c8cc631f-437c-1463-06c9-3a9aeb123aa0 + Current rating for MV3.101 loop_line 7 + + + + 084e8e95-19d1-cb3d-d5d9-005e502cf391 + Current rating for MV3.101 Line 71 + + + + 3fe864f3-82ee-d972-76b7-72da75ffcbc5 + Voltage limits for MV3.101 Bus 79 + + + + dca49c43-d8f1-4e05-9f8d-72aaa0fd883f + Current rating for MV3.101 Line 25 + + + + 39f3e9d8-529a-fac7-8b4c-c176d1e2857c + Voltage limits for MV3.101 Bus 113 + + + + ea725bf4-cdb8-20f2-fc9c-511bceddbabb + Current rating for MV3.101 Line 71 + + + + 260d9196-c187-532a-385a-5460aa58867c + Voltage limits for MV3.101 Bus 73 + + + + 27fabc55-aae1-1530-49cd-7beef8facc35 + Current rating for MV3.101 loop_line 7 + + + + 25c14872-ed64-d8b3-a4f1-138df56010a1 + Voltage limits for MV3.101 Bus 67 + + + + cbf4dd6a-d468-2ae3-c190-4db555ad6378 + Current rating for MV3.101 Line 25 + + + + 05eca5fc-d0a8-146b-f0b8-7710a24fe991 + Voltage limits for MV3.101 Bus 98 + + + + 947172df-8f94-70e5-aa23-483e713c6a72 + Current rating for MV3.101 loop_line 6 + + + + f5a2af4e-a673-c42d-53e5-8acd3f4f21f1 + Current rating for MV3.101 Line 78 + + + + bfed264e-a667-eb7a-eb15-455de7e0b936 + Voltage limits for MV3.101 Bus 64 + + + + 1ba7e721-a331-f882-5834-6773004f0257 + Current rating for MV3.101 Line 89 + + + + 41888b8f-918e-fba9-e5ca-67ef693a01b8 + Current rating for MV3.101 Line 116 + + + + ec028bd5-1bb5-bcad-2493-bf5db912d3c3 + Voltage limits for MV3.101 Bus 52 + + + + fe1a260e-0406-461d-02ea-9fe2c12ce813 + Voltage limits for MV3.101 Bus 21 + + + + 61c7abff-7042-50ed-0a23-77b0e928cd06 + Voltage limits for MV3.101 Bus 123 + + + + e54fe18e-e3ba-4396-7ba5-3c1fc9e976f5 + Voltage limits for MV3.101 Bus 60 + + + + 1faf503f-96d3-d2ce-6dc2-845911116a08 + Voltage limits for MV3.101 Bus 105 + + + + d02d8f64-1541-0616-7cd0-9a825f3b4130 + Voltage limits for MV3.101 Bus 111 + + + + 5ff1e634-5970-7a7b-90c0-2827ea4862e2 + Voltage limits for MV3.101 busbar2B + + + + 31367694-d1f1-cdbe-aed3-2890aba91f08 + Voltage limits for MV3.101 Bus 127 + + + + 752154a7-e362-90c4-0cd1-d8c960f1de6e + Voltage limits for MV3.101 Bus 117 + + + + 00c7c455-3623-28d1-a1a6-5a79cdb37149 + Voltage limits for MV3.101 Bus 18 + + + + 1d5a9e14-be05-572e-b074-0644694e0cea + Voltage limits for MV3.101 Bus 134 + + + + f67adcb0-400b-3d5f-d927-99dbcb470aeb + Voltage limits for MV3.101 busbar1B + + + + c7b5ee8e-06cc-a7b9-8b2b-0ddddcc08a2c + Voltage limits for MV3.101 Bus 33 + + + + a21d2fa1-c80f-1ee7-b635-a7f058f8c0ab + Voltage limits for MV3.101 Bus 14 + + + + 8a6a8066-837d-0bd9-d6ca-7cbc800c7881 + Voltage limits for MV3.101 Bus 30 + + + + e4417893-cc5a-2d11-461b-20666304d08e + Voltage limits for MV3.101 Bus 136 + + + + fea4a4ab-1645-58f7-36c4-901f80799d00 + Voltage limits for MV3.101 Bus 50 + + + + 8157c987-7f8f-08dd-dfe4-66dc798dd979 + Voltage limits for MV3.101 Bus 116 + + + + e04cc820-8e37-3b28-cf6a-91358ba515c6 + Voltage limits for MV3.101 Bus 126 + + + + 179a7c30-6e9a-7436-9b43-88427a5ecf82 + Voltage limits for MV3.101 Bus 131 + + + + 7c955645-4fb0-7d93-c657-786d94de6da1 + Voltage limits for MV3.101 Bus 107 + + + + 2dec4804-70b6-b64a-eb56-8543895334d6 + Voltage limits for MV3.101 Bus 74 + + + + 0d5f5fa1-11e1-58c7-2608-db8feea37dd8 + Voltage limits for MV3.101 Bus 71 + + + + e4a87fd7-3436-881e-d2e3-e4b72cc27396 + Voltage limits for MV3.101 Bus 75 + + + + e3414f94-e4ee-8488-170d-8c4632f6281e + Voltage limits for MV3.101 Bus 139 + + + + 5ad4c2ed-d8a5-b3d8-0644-599a296b76d1 + Voltage limits for MV3.101 Bus 118 + + + + 44f96f0f-cbe1-d5d9-caef-774e915ac3c4 + Voltage limits for MV3.101 Bus 96 + + + + 11b40b86-b6d8-8da8-0051-242306924077 + Voltage limits for MV3.101 Bus 115 + + + + 2756ba25-aa49-94a5-77f9-bafe4cbbddc4 + Voltage limits for MV3.101 Bus 69 + + + + + + + af34d989-7f9a-4b08-9649-18ca5be9ffbe + MV3.101 Load 69 + + + + + + f8387be2-73a3-49a0-880d-1fb142f5acfe + MV3.101 Load 56 + + + + + + fbb51ce0-09e3-48f2-87ca-30ce9c7f5d60 + MV3.101 Load 43 + + + + + + b6304302-6309-45ff-bd09-67fb5b9d8d4e + MV3.101 Load 131 + + + + + + e50c0f4b-3238-45a9-9d39-1b7ef71e3022 + MV3.101 Load 96 + + + + + + fda83017-c3ae-43db-8617-b367868e53b4 + MV3.101 Load 24 + + + + + + a8515958-e2f2-473d-b9c8-d2f7ff5c473c + MV3.101 Load 120 + + + + + + e1235b77-d537-4b1c-aa15-240a008ace12 + MV3.101 Load 124 + + + + + + d6509bd3-35c3-4f3d-badb-86a473f3aad3 + MV3.101 Load 64 + + + + + + c4c2ae36-e4a6-4c63-87fd-623956877845 + MV3.101 Load 115 + + + + + + 9eb86ce5-a02a-4741-91d1-b6229b0efcfd + MV3.101 Load 60 + + + + + + 8fe0b17d-1756-4d3c-9b98-86e62b761336 + MV3.101 Load 113 + + + + + + 989d982e-b378-4b25-adef-6967c40a0a89 + MV3.101 Load 94 + + + + + + c25f6082-0c63-4dbc-83f1-d8c1c4c21e56 + MV3.101 Load 98 + + + + + + 89c85288-a2e0-4830-a141-72c61ed888ba + MV3.101 Load 97 + + + + + + da263309-7e40-4d53-b008-138542978ab8 + MV3.101 Load 71 + + + + + + cb87cadb-2d2a-4559-befc-e5636be50ca1 + MV3.101 Load 25 + + + + + + a565170b-9a94-4197-a8f9-d51682bac1d1 + MV3.101 Load 57 + + + + + + cd193d8a-bffc-4dd8-9e13-526aca22c680 + MV3.101 Load 23 + + + + + + cf7c4fee-8d6f-4c22-b094-95725e26547e + MV3.101 MV Load 3 + + + + + + debe1d7c-3a64-47aa-b93b-d3ad09e2937a + MV3.101 Load 21 + + + + + + ff25488f-c91c-4d56-bb7f-7b9ac91fc3f6 + MV3.101 Load 117 + + + + + + 0fb2059a-f914-4cce-af89-0a745b79d034 + MV3.101 Load 126 + + + + + + 136bde33-9b40-46e6-85ef-9a5fb96bc21d + MV3.101 Load 7 + + + + + + 02ad2253-ced9-4ddb-a07e-38e408e86443 + MV3.101 Load 103 + + + + + + 0578050d-f290-4415-95f1-b1c7769efce7 + MV3.101 Load 53 + + + + + + 05904465-b4a6-4750-9b08-cff55a7bab97 + MV3.101 Load 108 + + + + + + 08bee9e8-d4e4-4c8c-b9cc-92c0a874bac7 + MV3.101 Load 8 + + + + + + 0194e2ed-16ba-4f78-9906-154e1bc8db67 + MV3.101 Load 51 + + + + + + 034df634-1e0d-4157-87cb-ee77bbe644e9 + MV3.101 Load 44 + + + + + + 08d016c8-f365-4885-b92b-5e78a041fcf6 + MV3.101 Load 118 + + + + + + 09dfe9c3-89a7-4620-bd51-59593bfddbd3 + MV3.101 Load 109 + + + + + + 0b8ae7ff-127f-40a4-8f9a-3d75eba7eb87 + MV3.101 Load 105 + + + + + + 175a2917-cedb-404b-b01b-457245296cf4 + MV3.101 Load 85 + + + + + + 1bcaec57-c06d-442a-980d-0055858dd798 + MV3.101 Load 84 + + + + + + 2335d39b-4fc8-4f5c-98f8-075b8d73831d + MV3.101 Load 47 + + + + + + 40b19e0b-c111-4029-a60a-78f7ec1be682 + MV3.101 Load 119 + + + + + + 51d848a2-b03b-4ef7-9434-872447f96c50 + MV3.101 Load 46 + + + + + + 5ad6d656-b6aa-433a-9203-f3fe44b7747f + HV1_MV3.101_load + + + + + + 6492264b-bbab-4ea7-875c-e9eff6d2a45f + MV3.101 Load 13 + + + + + + 67bd2d15-0713-43ba-8552-1aa23cf360de + MV3.101 Load 75 + + + + + + 4177a2b0-cba5-4d3e-8e96-bc3c8a335c19 + MV3.101 Load 66 + + + + + + 4323f761-de16-414a-a310-243f37ddb16c + MV3.101 Load 3 + + + + + + 1d9c0962-917a-425b-9a66-d91427b2a6ff + MV3.101 Load 41 + + + + + + 747ff172-a2cb-4c34-bf32-e52b514b3182 + MV3.101 Load 83 + + + + + + 66a0c91e-4a44-4936-a112-9e26c89e2eb7 + MV3.101 Load 87 + + + + + + 77920c6f-1288-45be-b23c-a9662318c0a4 + MV3.101 Load 18 + + + + + + 797e10a1-c473-4d18-916f-1377e752e490 + MV3.101 Load 42 + + + + + + 31666e66-34d5-4061-bec0-ff2b2c9a8d00 + MV3.101 Load 5 + + + + + + 238d9da9-d29e-444d-b742-7aa1a2759946 + MV3.101 Load 95 + + + + + + 2d194b08-9197-4c22-a9db-5ca9dc4b37c1 + MV3.101 Load 104 + + + + + + 55106cbf-3bd4-4745-8a1d-3d3701e3fc01 + MV3.101 MV Load 1 + + + + + + 7ac464e2-98f4-444f-a2f0-86fb296557cd + MV3.101 Load 81 + + + + + + 5b6a8fc9-aa2e-4e68-ba73-d969580b610e + MV3.101 Load 111 + + + + + + 60090924-1b8e-48d5-aba5-4bd34cbb812b + MV3.101 Load 33 + + + + + + 7ae476f5-839f-4b3b-9b28-e162efd9716e + MV3.101 Load 26 + + + + + + 1a12623f-b493-4acd-a9b6-c5388a2d504f + MV3.101 Load 89 + + + + + + 33454ba1-d5d4-4514-89fd-7f3e260b621f + MV3.101 Load 2 + + + + + + 7bfb75d0-122b-4e72-b175-92672696701b + MV3.101 Load 100 + + + + + + 50296e9d-57a4-4fb2-9560-ac34fdb0da42 + MV3.101 Load 28 + + + + + + 1a92e783-651f-474d-aa03-94429502945f + MV3.101 Load 40 + + + + + + 20e2d6a5-2953-4306-bf78-0c435472a32c + MV3.101 Load 45 + + + + + + 220268a7-fd5c-4c36-aa2d-5025b76cee6a + MV3.101 Load 36 + + + + + + 2dfd2553-9fa9-440e-bb1b-34fe96d56998 + MV3.101 Load 50 + + + + + + 4d4754f1-df5a-4920-a1cd-84d490a438c1 + MV3.101 Load 125 + + + + + + 6a1ef2c9-8df8-43e9-b003-d6dffc8df34a + MV3.101 Load 101 + + + + + + 2728ccc2-f7b2-46a1-a9db-f7b753d5fa88 + MV3.101 Load 114 + + + + + + 3336865f-8b71-4356-bcf5-86cfd5dbbc59 + MV3.101 Load 106 + + + + + + 72d94938-3a57-4713-8fa0-4e27ed1112de + MV3.101 Load 63 + + + + + + 30194020-9dd8-4368-94bd-61f881c53b01 + MV3.101 Load 48 + + + + + + 810eaebc-aec6-4d86-8707-8165fe91a640 + MV3.101 Load 78 + + + + + + 84221564-dddf-4879-9a4b-c70204904247 + MV3.101 Load 122 + + + + + + 8123190e-caff-4281-9e9e-ebea24b23709 + MV3.101 Load 102 + + + + + + 7c54539a-2e04-4a0d-9176-dd2493fea36d + MV3.101 Load 10 + + + + + + 85203ef2-7ca6-4b8c-bc1e-4026c46de1ce + MV3.101 Load 15 + + + + + + 87f7b180-8599-4421-b92d-89d2a589c997 + MV3.101 Load 127 + + + + + + 1bb71236-281b-40ea-9bfd-2009d24bbbf1 + MV3.101 Load 16 + + + + + + 339c68f8-e19a-4028-9150-5190c11641fe + MV3.101 Load 130 + + + + + + 75c9614a-a691-4e9f-b02b-658918358581 + MV3.101 Load 32 + + + + + + 883c56eb-3bec-4738-927e-1928f3b39fde + MV3.101 Load 134 + + + + + + 88ec97a2-6e0a-4ba8-9e60-e7c5afad31ad + MV3.101 Load 86 + + + + + + 3f1e5f2b-8776-4ae4-a2a0-b809618e74c9 + MV3.101 Load 30 + + + + + + 17090226-c11d-4036-a001-4355d114d8ae + MV3.101 Load 74 + + + + + + 3459ae84-00c6-4828-8ef6-35eef2cb6e65 + MV3.101 Load 49 + + + + + + 32c19c31-980a-4329-a0a6-b15da71c1a39 + MV3.101 Load 132 + + + + + + 35b7a5bc-89e4-4233-a9a3-40bf7c750f2d + MV3.101 Load 112 + + + + + + 3e4858a5-53c8-4953-8024-45e78214c70e + MV3.101 MV Load 2 + + + + + + 305456eb-2097-4bc0-b2e2-ffe0ce9a28ca + MV3.101 Load 123 + + + + + + 3fe104cd-bb4b-4ba3-90e4-5b021edc087d + MV3.101 Load 14 + + + + + + 45360327-29cd-4642-81d2-437b1ab1dee4 + MV3.101 Load 107 + + + + + + 463a1b6b-0307-490d-9d5f-c241f9508500 + MV3.101 Load 6 + + + + + + 55a69b60-0d58-49c8-8594-863c4d43d13a + MV3.101 Load 121 + + + + + + 6862b495-7672-43d8-9050-001fb633247e + MV3.101 Load 62 + + + + + + 6b5a98f9-8789-4502-92dc-09902afeae26 + MV3.101 Load 72 + + + + + + 6cffcfe4-2b15-4bc0-8a3f-a3b48e7ff112 + MV3.101 Load 34 + + + + + + 6eb2bb56-54ed-41fb-b38d-ac0a914ce623 + MV3.101 Load 58 + + + + + + d68bd0b8-ae1e-4ba9-ac7c-4128b1c6388c + MV3.101 Load 59 + + + + + + bedad604-9fe9-483b-801f-0f0a914ff68b + MV3.101 Load 37 + + + + + + ed454cad-f6e3-4bf0-a192-5157adee2aae + MV3.101 Load 116 + + + + + + f305039b-6dde-4423-a04d-977f791cf573 + MV3.101 Load 29 + + + + + + a0fea60d-07e5-49c7-86b9-42d2736d0924 + MV3.101 Load 92 + + + + + + c0669001-e84d-4c9d-ad4a-74ea32c53f28 + MV3.101 Load 27 + + + + + + cfb20189-d0a5-4bbc-b130-2e60d0367b17 + MV3.101 Load 67 + + + + + + 918a4ceb-dc59-4def-b480-dc00e2ec884e + MV3.101 Load 12 + + + + + + 9f72ed37-ba84-4fbb-9999-f587ca4a8586 + MV3.101 Load 61 + + + + + + 99edffcb-d168-4c22-b048-ee56ea13d78e + MV3.101 Load 99 + + + + + + 9f1013db-1992-4ab5-9942-ad5d91f7002f + MV3.101 Load 19 + + + + + + a7fdbed4-f699-4ec8-acdd-4e716b0ddb60 + MV3.101 Load 91 + + + + + + af09f9c2-12ec-4980-9d8d-afb76cd85195 + MV3.101 Load 20 + + + + + + b0247fd9-c2d7-4708-aed4-c3c401d5848e + MV3.101 Load 133 + + + + + + b4a560cf-7fe9-4ab6-bb9f-8ee2c2fb5ec8 + MV3.101 Load 128 + + + + + + c634b905-a4bb-4e64-8f2f-d54f36fed161 + MV3.101 Load 110 + + + + + + c6d6601c-fe6a-489c-b885-65d3d1667067 + MV3.101 Load 22 + + + + + + cffbff32-e1f5-430b-a960-b413f713f7d4 + MV3.101 Load 31 + + + + + + a0f874dd-47a1-4a3b-a3f5-e515b554a147 + MV3.101 Load 82 + + + + + + bc169467-6ffe-4a5c-93f0-a8d09d5d5cba + MV3.101 Load 4 + + + + + + d66d703f-1872-42ad-80b6-8bc1e696147e + MV3.101 Load 17 + + + + + + b54247e5-1d24-4684-9351-234462928b07 + MV3.101 Load 93 + + + + + + 8e357c58-e39b-496f-8d3d-4514bb13125a + MV3.101 Load 90 + + + + + + 92629f37-01e5-4808-a43a-924c7699ecf9 + MV3.101 Load 9 + + + + + + d90769fd-c43f-4f4b-af03-6efab100d19d + MV3.101 Load 52 + + + + + + dbe659d4-8acc-498b-83fd-aa0a5a4d975f + MV3.101 Load 39 + + + + + + de545db3-a9a9-425d-8211-47f41c2a69b8 + MV3.101 Load 79 + + + + + + 8df7d387-b81e-4d68-8cb8-5fc06c70d424 + MV3.101 Load 129 + + + + + + def5abc5-a3a3-4e2e-8575-0d435e7ac605 + MV3.101 Load 35 + + + + + + cfe06713-0b52-4945-a111-0895fa57c83a + MV3.101 Load 76 + + + + + + e2da336c-28a7-4530-9b32-053e4dc51cfc + MV3.101 Load 70 + + + + + + e776e743-102d-47cc-98b1-41c02fcc087b + MV3.101 Load 73 + + + + + + edf2ccef-97a3-4197-87cf-571655f2cd62 + MV3.101 Load 38 + + + + + + f3d2ecf1-4c7e-4cf2-b5d4-8a3c14622cf6 + MV3.101 Load 77 + + + + + + f46ac8b4-eb1f-45c2-9ae9-4f79d53ff0f2 + MV3.101 Load 80 + + + + + + f5ff961a-3056-45b7-82d6-7280a0220b08 + MV3.101 MV Load 4 + + + + + + f79a0290-7fb7-4a9d-b52a-b3bb5fadcfac + MV3.101 Load 54 + + + + + + 923864dd-c980-4796-af8f-bbd0bc1ca9d2 + MV3.101 MV Load 5 + + + + + + 9a5f9bc2-a753-401c-8c93-b36346247680 + MV3.101 Load 68 + + + + + + c240179c-f455-48bb-867c-bf6c72c1d58a + MV3.101 Load 11 + + + + + + d9aa66e2-a923-4695-a027-9c47fe453d21 + MV3.101 Load 88 + + + + + + b995f333-2825-44ce-a723-8b5f1cc90ba9 + MV3.101 Load 65 + + + + + + a9bcd737-c945-4573-83b3-466206af01ae + MV3.101 Load 55 + + + 416 + 68548979-03f1-f7a9-2f13-3d3bca952dc9 + patl for MV3.101 Line 89 + + + + + 358 + 847757c2-457e-e671-5dab-7b13ef30c37a + patl for MV3.101 loop_line 6 + + + + + 416 + a545cdde-ab24-196b-4feb-7373a7902611 + patl for MV3.101 Line 45 + + + + + 416 + 0c4b41cf-5479-1a27-d7e9-77cf9bed2a71 + patl for MV3.101 Line 78 + + + + + 471 + ebe7af55-4d6c-6ef0-8194-a2f9455b291f + patl for MV3.101 Line 18 + + + + + 416 + 6656b7bc-0268-565e-9bd6-ab1a333493f2 + patl for MV3.101 Line 23 + + + + + 358 + 2efabcd2-25da-6b73-7f52-9e40a993d1fd + patl for MV3.101 Line 121 + + + + + 535 + 3456811b-83a6-1477-fe8f-befc320b53ed + patl for MV3.101 Line 67 + + + + + 535 + e66a149c-49f5-9313-2cf4-c14b610945b5 + patl for MV3.101 Line 67 + + + + + 416 + 035f5c37-8e99-a8ce-658a-49289261514d + patl for MV3.101 loop_line 10 + + + + + 416 + 634da840-6052-9286-bf03-38141137be8b + patl for MV3.101 Line 82 + + + + + 471 + fd6b70d3-b56b-c46b-f820-d203748dc86b + patl for MV3.101 Line 18 + + + + + 416 + 0a3adaab-096f-3551-aa01-0c4d8d1485ea + patl for MV3.101 Line 23 + + + + + 358 + cf6b8458-be8a-5728-239a-2db825141aa6 + patl for MV3.101 Line 121 + + + + + 416 + abb5a10b-3509-283f-d3ca-ceee0ff2ff85 + patl for MV3.101 loop_line 10 + + + + + 416 + 119f5115-a525-06f6-c912-6072055bedca + patl for MV3.101 Line 82 + + + + + 535 + 674b42dd-5d73-7eea-e5de-5fb350c6fce9 + patl for MV3.101 Line 26 + + + + + 315 + d55630b0-808c-6ce3-37cb-4f3a5f9eb24e + patl for MV3.101 Line 119 + + + + + 315 + a6b0a44a-cc75-2438-944c-cab8c24b609c + patl for MV3.101 Line 119 + + + + + 358 + 5d69a5e1-4e7c-986d-7e1e-486377aef40f + patl for MV3.101 Line 133 + + + + + 535 + 010bfd23-d634-e744-dde6-88e7bb9885f9 + patl for MV3.101 Line 26 + + + + + 535 + ff3a3adc-1efc-5ecf-9ea7-f42bcf61d758 + patl for MV3.101 Line 75 + + + + + 535 + 7ac1dc27-8cd9-69e6-a463-8bc185124d85 + patl for MV3.101 Line 75 + + + + + 471 + ceb0d2f0-f810-e7c3-b19a-a2500261f717 + patl for MV3.101 Line 10 + + + + + 471 + acd16c9e-6303-f510-b8e9-a963e1b22060 + patl for MV3.101 Line 42 + + + + + 471 + 87c82b95-e5a6-703a-5f4e-efdb15328d5b + patl for MV3.101 Line 10 + + + + + 471 + 47408603-0023-e4ea-2388-743248d8fbff + patl for MV3.101 Line 42 + + + + + 358 + 32fb9598-ef55-3401-f421-351b2e4a1c9e + patl for MV3.101 Line 133 + + + + + 416 + 38a3d3e3-0432-85c9-d172-bc9031a7fc8e + patl for MV3.101 Line 105 + + + + + 535 + 9a7b11c6-b4fc-a7f5-01ee-ccd7e848117c + patl for MV3.101 BS-Feeder3_line + + + + + 315 + e96bc929-830c-b845-4371-07a9c0aa77b9 + patl for MV3.101 Line 111 + + + + + 535 + ab6f3295-5655-b2db-f531-af41b1c2e22a + patl for MV3.101 Line 12 + + + + + 416 + 5d776a79-bbd6-332d-b215-a572d1913730 + patl for MV3.101 loop_line 3 + + + + + 416 + be9648b8-d4fe-c4c5-bef6-1dce36345644 + patl for MV3.101 Line 105 + + + + + 315 + 8dd74490-ad99-575a-02bd-ff45fd14f728 + patl for MV3.101 Line 111 + + + + + 535 + 00ff4fb8-04e9-0cbe-e3db-835485f702c2 + patl for MV3.101 Line 12 + + + + + 416 + 664ee000-9c3e-29c3-8314-8434f8f374ad + patl for MV3.101 loop_line 3 + + + + + 416 + 1e20f755-4f23-55ea-c1e1-7d7a32d3b45f + patl for MV3.101 Line 102 + + + + + 535 + 3dba24b7-fb42-4baa-aa43-7047a8530058 + patl for MV3.101 BS-Feeder3_line + + + + + 535 + 4ee816a6-505d-99ab-1245-e01a0123ce10 + patl for MV3.101 loop_line 11 + + + + + 535 + 54f50303-0399-b504-5a53-0233c3103a69 + patl for MV3.101 loop_line 11 + + + + + 471 + 5ee3b900-5427-d077-e566-ca47f74410a8 + patl for MV3.101 Line 61 + + + + + 471 + cee2d815-6843-d21d-41f4-58eca1dc26f5 + patl for MV3.101 Line 61 + + + + + 471 + b744e643-9f6f-9832-1ed6-a1375cae5f2c + patl for MV3.101 Line 19 + + + + + 358 + 4b203954-fac1-4662-a412-282fbf5033de + patl for MV3.101 Line 132 + + + + + 535 + 11fed0b2-c970-cf90-c7be-683e2460ee1e + patl for MV3.101 Line 27 + + + + + 471 + ea160919-914e-63cb-aa42-67f4c4c415be + patl for MV3.101 Line 19 + + + + + 471 + e28a0662-72cf-566e-9ca0-bff30875bc55 + patl for MV3.101 Line 64 + + + + + 471 + cf41502a-3d7f-d6cb-0918-12764dba261b + patl for MV3.101 Line 44 + + + + + 471 + 2315943e-1854-e82f-c8be-9bf5a1520c16 + patl for MV3.101 Line 64 + + + + + 416 + 851864ca-8df7-75ed-cb58-cc3b434161a6 + patl for MV3.101 Line 102 + + + + + 358 + e54d7a5f-b93f-f5f8-5220-99de24aee592 + patl for MV3.101 Line 132 + + + + + 471 + 04bf654d-7ace-4e7a-f72b-42809b24eb50 + patl for MV3.101 Line 44 + + + + + 416 + 5ae68e46-2eae-c2bf-076f-8936ace0aa12 + patl for MV3.101 Line 33 + + + + + 535 + de6c1ace-fe15-f174-22cf-1cfeea1afdf8 + patl for MV3.101 Line 27 + + + + + 416 + cba57f31-73ec-a902-e015-524203f56e11 + patl for MV3.101 Line 33 + + + + + 535 + dca70216-a20e-29f9-b961-8d4c0c360d17 + patl for MV3.101 Line 76 + + + + + 471 + 5865b3f0-b3f7-1769-4d49-4fdbc33edcaa + patl for MV3.101 Line 9 + + + + + 535 + 6c6479bb-1aff-04af-312c-58cb9da2d391 + patl for MV3.101 Line 98 + + + + + 358 + 32b60c0a-71e8-bfc3-b7f3-226fb9825ab8 + patl for MV3.101 Line 129 + + + + + 471 + b7433510-4316-be0d-1563-fa8ec44e3c73 + patl for MV3.101 Line 58 + + + + + 471 + c9fae2a7-1b6e-f4ad-4870-7a050df7835f + patl for MV3.101 Line 17 + + + + + 535 + 13b4676e-70e0-81a3-d48f-1cd74e0ab052 + patl for MV3.101 Line 76 + + + + + 358 + 33179045-e52d-a1db-e7ec-7fe1f9a6562f + patl for MV3.101 Line 129 + + + + + 471 + 7eadc758-a656-3021-164d-c92424c71a89 + patl for MV3.101 Line 58 + + + + + 535 + 67983e75-3ebe-23ef-355d-14bf1b0245ae + patl for MV3.101 Line 98 + + + + + 471 + 79828215-4b9f-61a7-9e2d-63bab0024e98 + patl for MV3.101 Line 17 + + + + + 471 + edb134a3-5fb1-e75b-ed67-7036135ca9cf + patl for MV3.101 Line 9 + + + + + 535 + bb42e577-97c8-a002-e0ca-4d16ac6812e8 + patl for MV3.101 Line 95 + + + + + 535 + 702a44d8-4a00-5b6f-601a-dc4b61e68218 + patl for MV3.101 Line 1 + + + + + 535 + ee8b913f-ac06-bcfd-7a28-6a28032859c3 + patl for MV3.101 Line 95 + + + + + 315 + 39df22c1-d8ec-b0ba-7d5c-f9594ac4b25c + patl for MV3.101 Line 123 + + + + + 471 + 7544bbe4-b319-7257-5897-7edcd672d05d + patl for MV3.101 Line 60 + + + + + 358 + cf33a06a-0c83-f26e-b21f-9ec071799536 + patl for MV3.101 Line 131 + + + + + 416 + 1c6487d7-9b23-c5eb-8095-58d412320a01 + patl for MV3.101 Line 90 + + + + + 358 + 8593ca59-4298-6934-b3de-d8ccb8bf6584 + patl for MV3.101 Line 131 + + + + + 416 + e5d76626-0225-bc3c-d368-b9a17b62dd67 + patl for MV3.101 Line 90 + + + + + 315 + 3aa74c0f-fd4d-0c22-d686-276a668f43ab + patl for MV3.101 Line 123 + + + + + 471 + c3aec13b-74e3-9e96-c05c-99bf13b004ba + patl for MV3.101 Line 60 + + + + + 535 + a6b5c07a-52bf-7ff9-ebd8-ed4af3a5e126 + patl for MV3.101 Line 1 + + + + + 471 + 708de55a-e9d2-c748-b81b-c007b329b44a + patl for MV3.101 Line 8 + + + + + 471 + 2d4b18f6-5a8f-486c-5872-431bb6ff0ccf + patl for MV3.101 Line 8 + + + + + 416 + d0885a58-23d3-1b74-60a6-5fa9f59e657d + patl for MV3.101 Line 83 + + + + + 535 + c5200375-1559-0889-6259-d73db72dc22b + patl for MV3.101 Line 68 + + + + + 535 + 5d2773ba-eb6e-9cc4-c1c4-1ac3e244f7d9 + patl for MV3.101 Line 69 + + + + + 416 + 187d7c8c-e21c-bc6e-7dc9-89288cc387d5 + patl for MV3.101 Line 83 + + + + + 471 + 34a1eaff-78ab-12fe-c93f-ccb97749a3f9 + patl for MV3.101 Line 11 + + + + + 535 + 6e68c643-b867-5a89-6bde-eeab405c0312 + patl for MV3.101 Line 68 + + + + + 416 + 2923eb14-9383-01fa-4499-5e29e15c230a + patl for MV3.101 Line 92 + + + + + 535 + ba09fabf-5199-cf20-38e0-2d953070e556 + patl for MV3.101 Line 69 + + + + + 471 + 0045241c-9179-e12d-7c90-964f074b4b33 + patl for MV3.101 Line 11 + + + + + 416 + a2921fdd-c8a0-70fd-4849-a882ba465c09 + patl for MV3.101 Line 92 + + + + + 535 + 0b8b5c74-d835-87e2-b7a9-0b6a0dec62c0 + patl for MV3.101 Line 74 + + + + + 315 + d1aa0e14-4e1c-ff0d-e3a2-6995a94cb5c4 + patl for MV3.101 Line 122 + + + + + 315 + 30562875-8a5a-372b-8b34-b9032fb66177 + patl for MV3.101 Line 124 + + + + + 535 + 88c3a310-5cf4-c238-ac8b-f6c8cce37286 + patl for MV3.101 Line 28 + + + + + 315 + cee3297c-a62a-3124-c54e-a6bc47245472 + patl for MV3.101 Line 124 + + + + + 416 + a760844c-baa3-1cf7-5440-dafa30b16566 + patl for MV3.101 Line 101 + + + + + 416 + d9f5fec8-05a6-887f-98ad-4b42c4bca9bb + patl for MV3.101 Line 40 + + + + + 416 + 3313c29a-11b4-a5f3-fc7b-2003e11a6974 + patl for MV3.101 Line 40 + + + + + 416 + 4843a283-7f1c-1c00-0838-3ed68e17e31e + patl for MV3.101 Line 101 + + + + + 535 + f88cf389-4526-4453-7f43-02b994d3549f + patl for MV3.101 Line 28 + + + + + 416 + 93776c11-94ac-8f3d-9506-9af9573ade7a + patl for MV3.101 Line 24 + + + + + 416 + 107e5750-1f4f-9893-251d-8668f5388902 + patl for MV3.101 Line 36 + + + + + 358 + 53144086-6973-157b-4522-f79ba24db4e4 + patl for MV3.101 Line 127 + + + + + 535 + 5003f821-695a-dd56-6e38-e0b569632aed + patl for MV3.101 Line 74 + + + + + 416 + 2b2dc39d-0ca7-656e-5af3-90a129be7d43 + patl for MV3.101 Line 36 + + + + + 535 + 74de4c2b-5507-e581-b05e-9292c6ad99f5 + patl for MV3.101 Line 50 + + + + + 358 + 32d369fc-e792-224c-d2da-d9bceea5230f + patl for MV3.101 Line 7 + + + + + 535 + 38e26fb2-d2d3-3f26-7402-76c1f0118210 + patl for MV3.101 Line 50 + + + + + 535 + 8779a028-298a-42d4-9c87-b22f7340df15 + patl for MV3.101 Line 51 + + + + + 315 + f0e39b7f-3f27-6b46-3aed-81918d51c1e2 + patl for MV3.101 Line 118 + + + + + 358 + 6dfca2da-ace5-3780-3b8f-7740655e46b1 + patl for MV3.101 Line 127 + + + + + 315 + 1da2478d-c2fe-4b78-9c4e-815d2b34f862 + patl for MV3.101 Line 118 + + + + + 416 + 259ef640-939c-cf9f-bd94-48ead3865f4f + patl for MV3.101 Line 24 + + + + + 315 + 8aee9870-24ea-cc97-d3df-b6eacd1e0de1 + patl for MV3.101 Line 122 + + + + + 535 + fd575539-57e8-11a2-e62e-90b141296688 + patl for MV3.101 Line 51 + + + + + 416 + 3e589fe0-154a-fd34-8146-ecebb35b3b20 + patl for MV3.101 Line 91 + + + + + 416 + d7fa1959-ae0e-e212-d75e-f29f51d40147 + patl for MV3.101 Line 48 + + + + + 416 + d7aa825a-8910-30f2-7e4c-e99f65bcccc4 + patl for MV3.101 Line 31 + + + + + 358 + 571d6d8d-1667-b84f-e699-c453ff4c88a0 + patl for MV3.101 Line 7 + + + + + 416 + 2ccfe0b5-a577-b705-ce3d-441d8d459470 + patl for MV3.101 Line 31 + + + + + 416 + b08542cb-d3b1-ee95-e2e3-e8a48fe366dd + patl for MV3.101 Line 93 + + + + + 416 + 49e558ee-a2c4-0d2a-6211-3535042c6114 + patl for MV3.101 Line 48 + + + + + 416 + ca50bfd9-909c-cd58-9792-b7e869f59bc6 + patl for MV3.101 Line 91 + + + + + 471 + b5535597-9d55-cf5a-8267-4d3b3ee46c12 + patl for MV3.101 Line 20 + + + + + 535 + 5c8495fb-2584-8385-1bd6-9254fcf862af + patl for MV3.101 Line 2 + + + + + 535 + 3f66c908-faaa-cd50-81a3-1ec2a0942ab0 + patl for MV3.101 Line 2 + + + + + 358 + f349461a-c46d-7eeb-761e-d323e0ca9131 + patl for MV3.101 Line 126 + + + + + 416 + f2447f27-e76a-06f8-850f-118d4519c222 + patl for MV3.101 Line 106 + + + + + 471 + 77a71c55-c697-3251-5de1-041ef5027b91 + patl for MV3.101 Line 20 + + + + + 416 + 6555cbc6-a206-39e0-e5c1-691b91e263d4 + patl for MV3.101 Line 93 + + + + + 358 + 7d61c28f-1680-9ba0-b013-373690c0ae7f + patl for MV3.101 Line 126 + + + + + 416 + 958bf28d-3f35-fcb1-146c-0a25045fc160 + patl for MV3.101 Line 103 + + + + + 416 + 62d175f1-258a-698e-78c7-0dff460de082 + patl for MV3.101 Line 103 + + + + + 416 + b0730628-2c77-c33c-666c-08667289de73 + patl for MV3.101 Line 106 + + + + + 471 + 718f7407-b369-4775-ba3e-0f02bba9d4e9 + patl for MV3.101 Line 84 + + + + + 471 + 1c7d63bf-ad75-e1f4-8dba-1a7e5a6de7f2 + patl for MV3.101 Line 53 + + + + + 471 + 842d0998-473c-c11a-c297-050874c48956 + patl for MV3.101 Line 53 + + + + + 471 + 1675f393-c222-b714-8fe2-957126e49177 + patl for MV3.101 Line 84 + + + + + 416 + 10c4a445-823e-729b-0591-a1475a6562dd + patl for MV3.101 Line 35 + + + + + 315 + 39bb7b74-4b8f-3203-bad9-93bacf6ffe9e + patl for MV3.101 Line 114 + + + + + 358 + 02bc89d6-fb28-2d88-f45e-582fba000934 + patl for MV3.101 Line 130 + + + + + 315 + d5d48df7-df43-9034-5288-a14c4c984194 + patl for MV3.101 Line 114 + + + + + 358 + da82d3f0-f1ef-5171-aaf5-58cde4002a47 + patl for MV3.101 Line 130 + + + + + 416 + b3c3d100-a27c-2b0c-14ca-935cb1ecd66b + patl for MV3.101 Line 35 + + + + + 358 + f5d011f3-8481-9f7b-eb9c-81808090bed0 + patl for MV3.101 Line 128 + + + + + 358 + da944c6c-8afb-7646-10f8-28e088447a66 + patl for MV3.101 Line 128 + + + + + 471 + 4c1ccd33-529e-0a97-20ad-b637a2f73002 + patl for MV3.101 Line 43 + + + + + 535 + b8082cd3-5ff6-4687-db5b-6503cefdbece + patl for MV3.101 BS-Feeder4_line + + + + + 535 + a31e3c1e-34e0-17e8-4d8d-b92e2f62b7ff + patl for MV3.101 BS-Feeder4_line + + + + + 471 + 21c21280-1064-00bd-f475-928896722de9 + patl for MV3.101 Line 43 + + + + + 416 + 07c6e876-99a5-5f19-c50f-b01311c389a4 + patl for MV3.101 Line 38 + + + + + 416 + 1922b3b8-d2f3-a633-0f34-d855c3032274 + patl for MV3.101 Line 80 + + + + + 416 + 014591e2-50f5-8de0-6efc-a114258aa3c3 + patl for MV3.101 Line 80 + + + + + 471 + 7c986399-4846-dfe2-c2c9-9e2c6f68b569 + patl for MV3.101 Line 41 + + + + + 471 + 7fa60de9-fd2c-1329-f6ff-d4d4378205d9 + patl for MV3.101 Line 41 + + + + + 416 + 70fa6f17-c112-bec0-6989-e5cbb22af2d2 + patl for MV3.101 Line 38 + + + + + 471 + 10dc6e17-5dca-a9dc-e057-9003af4fa5bf + patl for MV3.101 Line 66 + + + + + 535 + 03c86e46-b200-db79-e096-e2bad97b47d6 + patl for MV3.101 Line 29 + + + + + 471 + 14965a6c-8abb-c2a7-214f-4c3eb091af6e + patl for MV3.101 Line 62 + + + + + 471 + 9ff32d55-dbb0-a082-0d7e-c4ccb0fd8c1d + patl for MV3.101 Line 66 + + + + + 471 + 16434079-af02-2fb2-b3c6-9e96ec0a8c0c + patl for MV3.101 Line 65 + + + + + 471 + ceda5ff6-bb4e-c5a7-e62a-efbd8e7d2c20 + patl for MV3.101 Line 65 + + + + + 471 + e91807b1-2b60-9d30-5e76-c5e24392e598 + patl for MV3.101 Line 62 + + + + + 535 + eec2107e-ab88-ad7c-03e0-e463650d6ff9 + patl for MV3.101 Line 29 + + + + + 330.664 + ce02c5e0-9844-7e9e-bf99-8e3926e47b41 + patl for HV1-MV3.101-Trafo2 + + + + + 358 + c90dae7f-0560-fa76-ea77-fd35ad887e50 + patl for MV3.101 Line 120 + + + + + 3637.31 + 0d57bc7e-bf09-6a33-c44c-2b3915a21a7a + patl for HV1-MV3.101-Trafo2 + + + + + 416 + c2cc83b7-c206-854b-ee4e-0c2b42ed63fa + patl for MV3.101 Line 47 + + + + + 358 + ddf006a0-74c9-d68c-461a-eb21bba63ab5 + patl for MV3.101 Line 120 + + + + + 471 + d40acf2e-2f3e-7537-4d0d-746ef69697b7 + patl for MV3.101 Line 16 + + + + + 416 + 5239afd7-8ad6-1d83-aa30-89d213b2d04d + patl for MV3.101 Line 47 + + + + + 471 + ff6ed00c-55c8-08df-37a0-40d77e357a1b + patl for MV3.101 Line 16 + + + + + 315 + 1e9e05c8-3ee0-547a-55ca-60e98e82e72a + patl for MV3.101 Line 113 + + + + + 535 + 49e91796-fa20-0480-9c96-aa772dfc58ad + patl for MV3.101 Line 30 + + + + + 315 + 2ff2880f-21b3-c6ca-dac4-e3f9215bb4ee + patl for MV3.101 Line 113 + + + + + 535 + b0a53a3a-fa68-ff52-8459-a4971c4cf448 + patl for MV3.101 Line 30 + + + + + 315 + 636ee73b-3d2c-5526-0fe4-5a8b51e6cff0 + patl for MV3.101 Line 125 + + + + + 535 + bfcc7ec8-b580-3d75-d277-ad53ffc1139a + patl for MV3.101 Line 70 + + + + + 416 + a94b5a7f-2ec8-fb58-8aa1-28e9f9e49780 + patl for MV3.101 Line 100 + + + + + 416 + 2bb68204-7b5d-eab7-dd58-37dd3c308ebf + patl for MV3.101 Reserve line + + + + + 535 + f4850999-51ef-abd2-2f1d-db0a943506e6 + patl for MV3.101 Line 70 + + + + + 416 + 31987ad9-e616-71e1-a967-281e6487ddbd + patl for MV3.101 Line 39 + + + + + 416 + e270ee05-5808-3b5b-63dc-3242685bbe16 + patl for MV3.101 Reserve line + + + + + 416 + 43018fe6-5ee1-d2eb-671c-1badd29cca69 + patl for MV3.101 Line 100 + + + + + 416 + 76bf4fb4-e64b-bdb4-3b15-10cd1d4b80c4 + patl for MV3.101 Line 39 + + + + + 535 + 3d21b0ba-9923-cbbf-50a2-9b44ce6308f1 + patl for MV3.101 Line 97 + + + + + 315 + cfbb9031-4aef-2281-c2e5-fef033791efc + patl for MV3.101 Line 125 + + + + + 535 + 20f56e81-c123-b508-580d-a2750e4196e3 + patl for MV3.101 Line 49 + + + + + 535 + 9f7023d1-7ab9-0ab0-5a74-f2579c98b103 + patl for MV3.101 Line 49 + + + + + 358 + 4319fa20-842b-a7b3-30e8-955f821048bb + patl for MV3.101 loop_line 1 + + + + + 315 + 74dc14d1-b4a6-d470-c44f-5d975ef60933 + patl for MV3.101 Line 117 + + + + + 471 + abe10340-f30d-ccdf-1783-b7752152a60d + patl for MV3.101 Line 87 + + + + + 535 + fc0f4e68-60d3-2ce7-9ca3-98b68bf46491 + patl for MV3.101 Line 97 + + + + + 358 + 2c996ac6-0e8a-b9ef-ed1f-32dd021a89a8 + patl for MV3.101 loop_line 1 + + + + + 416 + db3cb7ed-4469-7911-0d8d-1ea51ed80771 + patl for MV3.101 Line 77 + + + + + 416 + 8ca375f4-187f-91f8-eaa4-4e5cfe333c78 + patl for MV3.101 Line 108 + + + + + 416 + 4105cb24-a0d3-31b3-9855-80f22a61ba20 + patl for MV3.101 Line 77 + + + + + 315 + f3dc88bb-5644-517a-b808-e365923f77a0 + patl for MV3.101 Line 117 + + + + + 471 + 8fea6af6-cd04-98a1-8eff-6f5cb2698ce0 + patl for MV3.101 Line 59 + + + + + 471 + 511d1511-b5c7-662f-7556-07d2459cdc25 + patl for MV3.101 Line 87 + + + + + 535 + 1398142a-d3d2-94c6-6b50-c0f4b2dc3fa0 + patl for MV3.101 Line 96 + + + + + 416 + 8bbcf180-a02c-20a1-e9ed-455a94a0c064 + patl for MV3.101 Line 32 + + + + + 471 + 0d20c496-a395-9066-91f7-b5baa07f5a09 + patl for MV3.101 Line 59 + + + + + 535 + 651555d1-86a3-f362-c3e1-d8e19917738e + patl for MV3.101 Line 15 + + + + + 416 + ff29cb18-dadb-103d-4d8c-3328a0e127e0 + patl for MV3.101 Line 108 + + + + + 535 + 94420f64-0e32-b303-11d1-846912a14df6 + patl for MV3.101 Line 73 + + + + + 535 + ddea4dfb-7400-f38e-5bc0-03d4f2a85356 + patl for MV3.101 Line 96 + + + + + 416 + 70b065db-345e-c65f-f75e-0d51dcb9dba4 + patl for MV3.101 loop_line 4 + + + + + 535 + 299f0474-8fdc-38a8-d567-4844c65306c0 + patl for MV3.101 Line 73 + + + + + 358 + b853129b-247e-6821-6e7d-3e3eecb88ee7 + patl for MV3.101 Line 110 + + + + + 535 + 1115e9ae-22e5-44ac-b30d-6c9b18b035d6 + patl for MV3.101 Line 15 + + + + + 416 + 95d855e4-d410-4f96-9b64-a9cf35bf8e8e + patl for MV3.101 Line 32 + + + + + 358 + d6e3ba4e-6490-bd0c-9579-7a5ab0370a0b + patl for MV3.101 Line 110 + + + + + 471 + be029a05-a3b1-e01e-f65c-50653a3f0fdc + patl for MV3.101 loop_line 9 + + + + + 416 + 17aec372-1f90-5d11-861b-db0356b6505e + patl for MV3.101 loop_line 2 + + + + + 535 + 9cf6cf25-6163-f658-8875-509e6375b1a1 + patl for MV3.101 Line 3 + + + + + 416 + 794fe990-496e-b5ba-2ad9-674b95de173e + patl for MV3.101 Line 81 + + + + + 535 + 24acd60a-3048-988b-93f0-9ba357dfccec + patl for MV3.101 Line 3 + + + + + 416 + d38404a4-ef0f-b7c3-83fd-599860f0f836 + patl for MV3.101 loop_line 4 + + + + + 416 + 92b05c9e-7d97-a840-9029-6bdffb100815 + patl for MV3.101 Line 34 + + + + + 471 + d76bfda7-959c-a3c1-ca7b-cecd005ff23a + patl for MV3.101 loop_line 9 + + + + + 416 + 04a61a67-fa0e-27b7-49af-9322702ced97 + patl for MV3.101 loop_line 2 + + + + + 416 + 3d826c88-ef02-0e29-a942-04cae108272a + patl for MV3.101 Line 81 + + + + + 416 + 8740ee69-b0cb-38fc-0dd1-15135a5be140 + patl for MV3.101 Line 79 + + + + + 416 + 75e8dcf4-c191-8355-2001-50f71e0ecaf5 + patl for MV3.101 Line 34 + + + + + 471 + 77382549-5f6d-2c8a-d689-914cf9cfe6a9 + patl for MV3.101 Line 86 + + + + + 416 + a4ed313a-5619-23e9-8db6-c67ad1aa07d6 + patl for MV3.101 Line 79 + + + + + 535 + 38ea6064-1d4a-8c92-23ab-a2850bd3bbb9 + patl for MV3.101 Line 14 + + + + + 358 + fac8d782-507a-c874-ec07-59ee057f4272 + patl for MV3.101 Line 115 + + + + + 358 + 639038a7-2f35-259d-3bba-7d0ab3188210 + patl for MV3.101 Line 115 + + + + + 471 + 32b3cf0f-f770-cb07-30db-5d5eada2c08c + patl for MV3.101 Line 86 + + + + + 535 + db814b25-11bc-15f5-2540-4f702cff24f1 + patl for MV3.101 Line 14 + + + + + 358 + f3134f17-781d-a5c5-ed89-73ddbc53e7e9 + patl for MV3.101 Line 5 + + + + + 471 + 234ebf55-9691-d611-5e85-133cacf228d8 + patl for MV3.101 Line 55 + + + + + 471 + 62e07eaf-b6d2-a07c-35e5-c68e09aa3914 + patl for MV3.101 Line 55 + + + + + 416 + ea0946ab-4a59-9fb9-f045-01d40faa61fa + patl for MV3.101 Line 21 + + + + + 471 + 1ca49901-7048-1aa9-6f3d-a30b1a49d485 + patl for MV3.101 Line 54 + + + + + 315 + e6e85bfc-e1d9-39cc-05f2-b7e20fd05b70 + patl for MV3.101 Line 112 + + + + + 416 + 292f4f80-c067-c3a3-1223-daa6a1562bb7 + patl for MV3.101 Line 21 + + + + + 416 + 410fa6bc-7763-5de4-63ed-e1de9183bb51 + patl for MV3.101 Line 46 + + + + + 535 + 61a8b5cf-b562-6507-28cf-6258ac1c3193 + patl for MV3.101 Line 52 + + + + + 535 + 670ffe3a-b822-b418-2fa8-25eedd64c0a2 + patl for MV3.101 Line 52 + + + + + 416 + 429a29d2-79f8-7971-6126-ba5b20ab30fe + patl for MV3.101 Line 107 + + + + + 358 + 97064177-a4d7-4f47-81ad-972ac156a7c1 + patl for MV3.101 Line 5 + + + + + 416 + ef6bee5c-c0da-7c60-7836-94cd33d02ff4 + patl for MV3.101 Line 107 + + + + + 416 + 6446ace5-6867-c604-ac4e-6e514707f53b + patl for MV3.101 loop_line 8 + + + + + 315 + 33dd4a3e-2904-e81f-075a-4d0d24eb2b11 + patl for MV3.101 Line 112 + + + + + 3637.31 + 64d20b69-b224-ba96-186b-c6b23a694c3a + patl for HV1-MV3.101-Trafo1 + + + + + 416 + 62f4cdf4-c204-9c09-4cb0-17aaae8b4a0e + patl for MV3.101 Line 46 + + + + + 416 + 59c461a6-778a-9ea8-2d75-158bd08a1656 + patl for MV3.101 loop_line 5 + + + + + 330.664 + 713ef67a-bf48-2eb6-8999-b6cd4840991a + patl for HV1-MV3.101-Trafo1 + + + + + 358 + 03924d09-c8b3-db02-2cff-50d7b3ab2e86 + patl for MV3.101 Line 6 + + + + + 416 + 3f0eed97-897e-0fa6-0654-9c754ab2a430 + patl for MV3.101 Line 94 + + + + + 535 + 83837f6a-494a-699f-28d9-2e13ecfb3a63 + patl for MV3.101 Line 72 + + + + + 471 + 28eab3fb-e805-d27a-cd77-888ae49ca354 + patl for MV3.101 Line 54 + + + + + 535 + 75e1401e-304c-76a4-1a78-2d01e913532b + patl for MV3.101 Line 72 + + + + + 416 + dc64f61e-6621-99f2-fd99-ed75435bb71d + patl for MV3.101 Line 94 + + + + + 416 + 62e78154-55cb-7841-d4d3-9ee4d4f0bb45 + patl for MV3.101 loop_line 8 + + + + + 358 + 2acb159c-b9d1-2dec-409c-b5fcdfe0ea29 + patl for MV3.101 Line 6 + + + + + 535 + 6fc65f3c-7bcb-25a4-0b2d-573cb17ca764 + patl for MV3.101 Line 4 + + + + + 416 + 0960d816-4eea-40a0-0cce-6294b2a7d70b + patl for MV3.101 loop_line 5 + + + + + 358 + 23c332a2-0e01-5976-3950-ebcceb80f012 + patl for MV3.101 Line 109 + + + + + 358 + 1cae7fa1-eb9b-284a-5e07-1610d8030292 + patl for MV3.101 Line 109 + + + + + 535 + 43463522-16e5-5967-1ea8-30c0dfc590cd + patl for MV3.101 Line 4 + + + + + 416 + 04dee7f8-7fcf-046c-b531-695cdeff2e7c + patl for MV3.101 Line 37 + + + + + 416 + 253db37e-088a-c262-581a-abbb50497708 + patl for MV3.101 Line 22 + + + + + 416 + 82d2372a-af56-9daf-e4a5-763d60a1e8cc + patl for MV3.101 Line 22 + + + + + 416 + 387e39e4-e3c0-21fa-d3aa-4a50cfa64526 + patl for MV3.101 Line 45 + + + + + 471 + fa7a914f-2af9-75a9-ac08-b7f4ba4b45d2 + patl for MV3.101 Line 63 + + + + + 471 + 606090f2-de73-01a9-ac75-30c889a83a01 + patl for MV3.101 Line 63 + + + + + 416 + 144a1fe6-f719-39dc-1b73-2eed38e2a7eb + patl for MV3.101 Line 99 + + + + + 416 + 24e8fc8f-9ffe-01f3-f63d-4d2083cf8ece + patl for MV3.101 Line 37 + + + + + 416 + c77de751-ad64-edf5-c17b-d0d230c7c69f + patl for MV3.101 Line 99 + + + + + 416 + c36f7c32-a4e3-7f65-e061-931129b7511e + patl for MV3.101 Line 88 + + + + + 471 + fb019aa3-c842-4efd-9705-0210d8b877fe + patl for MV3.101 Line 57 + + + + + 416 + 2d984b2f-93e7-f5d1-3399-55a6a20ee8ee + patl for MV3.101 Line 88 + + + + + 471 + 397dca8b-28da-58a9-c186-5668b0fb33a0 + patl for MV3.101 Line 57 + + + + + 416 + 727c5aea-7498-c97e-3801-344408a7e282 + patl for MV3.101 Line 104 + + + + + 416 + a18477ea-701f-01cf-8a5c-255badb9b806 + patl for MV3.101 Line 104 + + + + + 471 + 889c9789-4f27-cfe2-1b19-db242a8c5d42 + patl for MV3.101 Line 85 + + + + + 471 + 6e0f709f-7044-af0e-02bf-bddadb93fb7b + patl for MV3.101 Line 56 + + + + + 535 + 8d33ffef-2ea4-02d5-e3ab-2e9a6ffe54fa + patl for MV3.101 Line 13 + + + + + 535 + ed7eba68-91fc-3a51-ca2b-c94c274c9fdf + patl for MV3.101 Line 13 + + + + + 471 + 3a27ac81-3e5c-c9a3-dad0-39c17756bb08 + patl for MV3.101 Line 56 + + + + + 471 + 3e2d050b-88c1-dd90-28ad-4486fb66ff6d + patl for MV3.101 Line 85 + + + + + 416 + 75734baf-ad4c-8334-98de-af7f88eac938 + patl for MV3.101 loop_line 7 + + + + + 535 + 3630a4f4-9d96-7993-85db-99b797f45a45 + patl for MV3.101 Line 71 + + + + + 416 + 9ff0a5ab-2c32-1e4b-9eca-08fc26ab0e2a + patl for MV3.101 loop_line 7 + + + + + 416 + bfc644ad-b1bc-ef76-cf24-5e4509c440af + patl for MV3.101 Line 25 + + + + + 416 + 1db0907a-e0ec-3cc1-62d4-12351eb88838 + patl for MV3.101 Line 25 + + + + + 535 + 83a224a9-2a47-960b-67e9-8204b9147458 + patl for MV3.101 Line 71 + + + + + 416 + c3218948-ec17-8527-5754-bb1824d615d4 + patl for MV3.101 Line 89 + + + + + 358 + da48d8e6-60b6-4cff-c344-5aeae956030d + patl for MV3.101 Line 116 + + + + + 358 + f9c475ee-6808-a52a-5c73-26e1e2d86ae5 + patl for MV3.101 Line 116 + + + + + 358 + 6740eb4a-3241-bb4c-fea1-7f036bfea07c + patl for MV3.101 loop_line 6 + + + + + 416 + 364fca36-ac7b-33f2-ace2-c63789f38e5b + patl for MV3.101 Line 78 + + + + + + 738a86f3-4efd-4990-6cc5-23703a8bd620 + MV3.101 Bus 122 + + + + 8e937d9a-23ed-17d3-93f5-4812252d5ef6 + MV3.101 Bus 102 + + + + cc9e3505-0275-122e-dfb0-40455cf4471d + MV3.101 busbar1A + + + + 1353d5ca-6772-fab0-5d77-7999c54246d6 + MV3.101 BS busbar1C + + + + 5d19946d-fd8a-3980-fbd4-4622227bc7ab + MV3.101 Bus 48 + + + + 9a2976a4-1ebf-ca61-001d-2bcb6e37f5fc + MV3.101 Bus 40 + + + + 8a434f6d-c0ab-9299-fea2-322552458fb7 + MV3.101 Bus 45 + + + + 216f8e0e-f904-6436-a3b5-6b88c4c47ed3 + MV3.101 Bus 27 + + + + cdb6eaba-4dac-0ccb-af68-577f713de24c + MV3.101 Bus 86 + + + + f86f6351-fa22-4cd2-daa3-97b9f7789da3 + MV3.101 Bus 82 + + + + c883fc36-16d0-a0fd-e07c-2a1a81b14b5c + MV3.101 Bus 32 + + + + a59a7752-2107-d5c3-c0d0-6c0a5bdbf8cf + MV3.101 Bus 26 + + + + a78fe215-77cc-d77b-82da-928d57f9b64d + MV3.101 Bus 11 + + + + 2003fec4-4314-71c6-4d44-b012cebdad9e + MV3.101 Bus 58 + + + + e2f6cf39-25ed-f200-e96e-1f98a6736c73 + MV3.101 Bus 121 + + + + 698729d4-7c73-a924-aacc-51d06cb5e909 + MV3.101 Bus 100 + + + + c8173fdc-538e-0583-83b2-67c6486a1ab8 + MV3.101 Bus 97 + + + + 7cd8d5cb-82eb-2a8b-4a0f-82f57568bac5 + MV3.101 Bus 135 + + + + 496bd271-43c6-9e08-0aca-654e2e0ad6d4 + MV3.101 Bus 99 + + + + 4575e8a2-82a5-0c2c-d397-a305ccfdaa67 + MV3.101 Bus 80 + + + + 0676fe9d-c314-812c-5c3a-8957f2e69139 + MV3.101 Bus 124 + + + + cc1bc810-8951-607d-36bd-4e980e614ad0 + MV3.101 Bus 140 + + + + 9a46efca-f2aa-de01-9be7-0ab9d3c7f94d + MV3.101 Bus 83 + + + + 9fa73bfd-b236-f5f2-751f-503ab076a895 + MV3.101 Bus 132 + + + + fcc1f8ab-5050-6542-6970-5dd5cd1071fd + MV3.101 Bus 57 + + + + 68990147-1b4f-7fd8-6a68-86f8021873da + MV3.101 Bus 125 + + + + e3861bf2-31ad-7a3a-aade-28998b919d71 + MV3.101 Bus 112 + + + + 91e7eef0-1a5e-a54f-ea32-8f655653bc2c + MV3.101 Bus 51 + + + + 8a0f599b-08a3-eb57-a681-886bf2231c69 + MV3.101 Bus 35 + + + + 7f3b6ec0-d223-2530-3bda-209cf4b8e074 + MV3.101 Bus 31 + + + + 4022137f-5e80-a642-b920-ba2e5426f7ab + MV3.101 Bus 34 + + + + da9ebbb8-9c83-b12c-ff32-48777704eedf + MV3.101 Bus 138 + + + + db5a4f51-55ed-9ad4-39db-5e90cd8e77d2 + MV3.101 Bus 23 + + + + 93a6167e-84d8-4b18-3eb5-bae378bac290 + MV3.101 Bus 39 + + + + 58457082-22da-78cd-ecbe-cc2154bbc08b + MV3.101 Bus 12 + + + + 742909e0-e6b2-1a42-6499-e1dde74f20c7 + MV3.101 BS busbar1B + + + + a65ae067-3e5c-e823-0ccb-1a64bc18364e + MV3.101 Bus 114 + + + + 2fba9afc-ab63-bb8b-1ea6-1be8c6e784f5 + MV3.101 Bus 141 + + + + bc79619f-5d1c-b404-010f-e1cabdbf433f + MV3.101 Bus 68 + + + + 2791dab6-805f-698a-e0a0-6a24e694d550 + HV1 Bus 25 + + + + 30e1b0d7-87e8-3b9c-a777-3112634f4b90 + MV3.101 Bus 120 + + + + 24173c72-814d-4833-ba70-150bc24db40f + MV3.101 busbar2A + + + + 25aa04be-e7a6-81d1-3c90-6dd70a93ab67 + MV3.101 Bus 25 + + + + 71cd900b-22fe-6e0d-1e54-f0aa943a6b42 + MV3.101 Bus 92 + + + + a712b943-b0f7-2ed6-d5c2-666d898becc7 + MV3.101 Bus 133 + + + + 428d8181-a885-a107-fd8d-0b0ed9912234 + MV3.101 BS busbar1A + + + + b34430cb-d98e-3789-34ad-3e31ab6a5747 + MV3.101 Bus 24 + + + + 52c287b7-d0dc-64c3-481a-feebe46bf7d8 + MV3.101 Bus 95 + + + + d5a7ef0e-24a4-4bdd-ac77-8a96bbdf4106 + MV3.101 Bus 59 + + + + 1c08b14d-9574-bdcf-7215-37b8262ec65a + MV3.101 Bus 90 + + + + 7e5e74c2-afe3-ec6e-48bc-790bdadb0940 + MV3.101 Bus 66 + + + + 0b235c60-ef5a-caae-90cc-51d974285804 + MV3.101 Bus 143 + + + + dc790200-b36a-194b-a1a6-e1181e500993 + MV3.101 Bus 36 + + + + f9ac8018-5f71-d097-f3d4-1c201dcf9f01 + MV3.101 Bus 104 + + + + a8de6c97-d93b-0f60-6015-037118e5d19d + MV3.101 Bus 72 + + + + 392beab5-f5b8-182d-fe9c-1b3a72e938d2 + MV3.101 Bus 56 + + + + 6f7aa9e7-c3d0-e45b-e0eb-b36fca9ecc72 + MV3.101 Bus 13 + + + + da409541-0772-fa5e-519c-efca34cda195 + MV3.101 Bus 106 + + + + d11098ac-58fe-3a7e-39db-a8966b9fc7e8 + MV3.101 Bus 47 + + + + e61b4ea9-2975-2b18-2a51-79800efd0a1b + MV3.101 Bus 65 + + + + 2ba2741d-7599-a570-f4e5-857046d96ce8 + MV3.101 Bus 44 + + + + e189598e-a43a-b718-2d9d-d612d6326b53 + MV3.101 Bus 78 + + + + c8a011fa-a243-a66c-0aef-c63eff6ade24 + MV3.101 Bus 129 + + + + fe9e8a42-9825-3135-8e52-3edec21df0d2 + MV3.101 Bus 76 + + + + baaa668e-1ca2-d2a6-68e9-6b9371794880 + MV3.101 Bus 84 + + + + 9944e00b-953b-67de-2425-2e870405e572 + MV3.101 Bus 20 + + + + 37f92665-7ce1-922f-3dd6-9f23a21847c3 + MV3.101 Bus 37 + + + + 17f6de20-a733-3481-4662-f00b93429793 + MV3.101 Bus 128 + + + + d56642bb-588d-c8c4-1955-27000c11f7f7 + MV3.101 Bus 16 + + + + 7890739e-e2dc-6b42-3121-09216b25098e + MV3.101 Bus 49 + + + + 398c030a-3a49-2e9e-5482-124a9d82ee99 + MV3.101 Bus 98 + + + + 257c474e-db5b-1b30-e17c-a8cd21168ab3 + MV3.101 Bus 73 + + + + 67e5c109-bf9e-e6be-2a0d-9623282497d1 + MV3.101 Bus 113 + + + + 21fe2650-b75e-39e6-8965-58ea687fcdc5 + MV3.101 Bus 67 + + + + c82d4262-d36d-04d4-e49e-e2b2480c0565 + MV3.101 Bus 108 + + + + fe108591-54c9-acb6-0634-f5fdb3d0811b + MV3.101 Bus 79 + + + + 3504a4c2-7867-f246-afec-9a1e9fce414f + MV3.101 Bus 123 + + + + 6106d42f-efbb-36de-e320-b9d950b8fe1c + MV3.101 Bus 21 + + + + ede08803-42e6-6c8b-7a1c-754b59b0731c + MV3.101 Bus 60 + + + + 8a1ece07-f6dd-be8f-f603-8744e8267fb0 + MV3.101 Bus 52 + + + + 5cf420a3-cb56-c7e3-cfdf-cceb771ee798 + MV3.101 Bus 64 + + + + 96793c96-6b18-4ecf-a2e3-b17997eb7730 + MV3.101 Bus 105 + + + + 32b21a70-a414-0262-51da-3410b53bba70 + MV3.101 Bus 111 + + + + 861dcc4f-0ad9-ebf3-fcbc-73295fe50272 + MV3.101 busbar2B + + + + dcf7f1a6-7a20-8cc8-60a2-41296f1db6e7 + MV3.101 Bus 18 + + + + 3f5340ba-706a-8f26-9b76-c2d711a072ef + MV3.101 busbar1B + + + + 274f7524-9dfa-e67c-f747-28c0dd5013af + MV3.101 Bus 134 + + + + 411a7538-8861-ff58-4bae-85ffc6052b11 + MV3.101 Bus 117 + + + + b316ad67-4757-542a-efa9-ccb501fa0f9d + MV3.101 Bus 127 + + + + 900b4313-1427-f56d-3aa0-0634c1654cbe + MV3.101 Bus 126 + + + + 9feb3442-d290-22fe-d8e9-c356c81cb700 + MV3.101 Bus 50 + + + + cecc599c-8259-03f7-cb81-f258a0978a53 + MV3.101 Bus 33 + + + + 0a7ff38b-a968-200e-5381-7b4444f9182d + MV3.101 Bus 131 + + + + 7d567811-65f7-dba4-9292-d7f9a1b82627 + MV3.101 Bus 136 + + + + 86446e3b-a038-89a9-9c36-f1936543ac63 + MV3.101 Bus 30 + + + + 85c9068e-abea-84da-a779-8119b8a8eaca + MV3.101 Bus 14 + + + + a47242e3-fd2b-0644-f939-fee9c262de86 + MV3.101 Bus 71 + + + + 2f6e9402-dd71-bf78-016a-c104443eed27 + MV3.101 Bus 74 + + + + 4dad0264-ee43-6bd9-3aaf-f9f3305a4331 + MV3.101 Bus 116 + + + + 2837f35a-7bb2-6f7f-c049-2627654e8a80 + MV3.101 Bus 118 + + + + 8e6e062a-9f3f-c40f-42c4-12351350e3c7 + MV3.101 Bus 69 + + + + 8218ffcc-d5d8-cc64-c332-c3f731871af8 + MV3.101 Bus 107 + + + + cd59c981-6595-e04f-d200-53d88c60724f + MV3.101 Bus 96 + + + + aed2479b-f7ea-28cd-285d-d9ca8a541ffa + MV3.101 Bus 139 + + + + cfca33e7-6158-f4d7-fca6-5676f88360aa + MV3.101 Bus 75 + + + + fb56e2f0-585c-e471-734c-e39be4de9077 + MV3.101 Bus 115 + + + + 93b1287f-ffd4-4e5d-cb3f-12890943c1bd + MV3.101 Bus 103 + + + + 2983ccd2-e2de-eb72-ae50-f5b62877232e + MV3.101 Bus 85 + + + + d23ea011-85e0-3acd-10b5-b50d76d9cb01 + MV3.101 Bus 17 + + + + 2c202a31-415d-9350-5136-33875d2ad3a8 + MV3.101 Bus 28 + + + + 1883a64d-a11b-eb39-61a1-1c52d271ce9c + MV3.101 Bus 110 + + + + dfb27b54-6339-fba3-27fd-4399cf6d22ef + MV3.101 Bus 88 + + + + 8086fee5-d541-e20a-5862-49c9106c425d + MV3.101 Bus 41 + + + + 27b58e18-ea2e-2d26-c12d-4661998a63a3 + MV3.101 Bus 109 + + + + 99947ec1-98a6-9ee5-335f-ae2d76b19d14 + MV3.101 Bus 42 + + + + 83656aa0-613e-d62b-76f2-5fc3c539ee3a + MV3.101 Bus 130 + + + + 9fd17cbd-66fc-c041-8836-bcbb9888e379 + MV3.101 Bus 119 + + + + 239be8ee-1ed3-079b-1e79-3008a74ab43c + MV3.101 Bus 101 + + + + 10266c49-589f-73d5-e883-ff3d5f25057b + MV3.101 Bus 81 + + + + 9ed6117a-8d30-8b31-1287-04ad48a07f5d + MV3.101 Bus 70 + + + + b4b0680e-cf54-0824-23c2-d7cbb7065f5e + MV3.101 Bus 89 + + + + f518bb28-521b-8beb-655c-bdc3969fa330 + MV3.101 Bus 46 + + + + afaaf557-7240-eb82-76a5-bed619cffec1 + MV3.101 Bus 54 + + + + 9650681b-f781-d012-a340-da97b65af08b + MV3.101 Bus 53 + + + + 97f6348c-4954-472b-2020-f0d894f23299 + MV3.101 Bus 29 + + + + 0e256a9d-d999-14ce-7f17-e9bbbd838ed3 + MV3.101 Bus 61 + + + + 7dbc0e56-448b-5415-f16b-cedd1f436e6f + MV3.101 Bus 137 + + + + 86593c2b-d8c7-e41d-ce2e-7818cd0410c7 + MV3.101 Bus 38 + + + + b08382b1-ebcb-da17-a7b4-a1001451a108 + MV3.101 Bus 19 + + + + 64493248-a946-4cba-09e4-9aca2ff64fb7 + MV3.101 Bus 62 + + + + 30c890d8-aaed-292e-aae7-208eda9270be + MV3.101 Bus 93 + + + + 0fb8f2fe-9e60-6e20-d87b-7d2177006495 + MV3.101 Bus 63 + + + + 577272bf-ab76-ad32-b54d-feee3733351d + MV3.101 Bus 77 + + + + b03050e3-8693-e18e-afdd-4bd106bfcf08 + MV3.101 Bus 15 + + + + 41ab8b3d-6d6e-d32f-a70f-3f4e06064250 + MV3.101 Bus 22 + + + + c75aa309-22fb-612e-c2fa-8e148a33a753 + MV3.101 Bus 142 + + + + 64df2fb6-63ed-f6e3-d423-bd94d71a4cc4 + MV3.101 Bus 94 + + + + a62b82bb-9de0-b26a-0637-cba3df1bcd95 + MV3.101 Bus 55 + + + + 00f951d2-5ad8-79b9-9b5b-2f29d52fbb4e + MV3.101 Bus 87 + + + + f527943d-0766-97c0-7596-adb1addf3198 + MV3.101 Bus 43 + + + + 7c9fd30a-eed6-a171-5a7f-90b40f0d8f17 + HV1 Bus 26 + + + + 8de0feab-7a38-91c8-a97d-16fdf6f67ad5 + MV3.101 Bus 91 + + + 1 + 4915a083-7f2b-67e4-9959-e389a0f3fd22 + Cubicle_MV3.101 SGen 40 + + + + + + 1 + 9387fec3-11ca-9b4b-ab4f-9e8de2fe91c0 + MV3.101 Bus 120_2 + + + + + + 1 + 08e16802-44d6-49a1-136a-f8bc30f20731 + HV1 Bus 26 + + + + + 2 + fab05411-1cdf-7a73-872e-eefd7899b9ec + MV3.101 Bus 62_1 + + + + + + 1 + 94a2d7af-59ac-0efe-f5eb-e9f9f05d1fc7 + MV3.101 Bus 133_2 + + + + + + 1 + ff2da168-c394-e1a5-fcfc-34bf6f4710c0 + HV1 Bus 25_1 + + + + + + 1 + 0a9eb766-459a-6fbe-4682-d1f7e1056602 + MV3.101 Bus 43 + + + + + 1 + 8f62ee0f-b9ab-544c-f8b5-41fb64cd51b2 + Cubicle_MV3.101 MV Storage 124 + + + + + + 1 + ff47b9a7-bb2b-d759-daad-b3aa8f31eb85 + Cubicle_MV3.101 MV Storage 27 + + + + + + 1 + cc4dd121-b371-be6f-94d6-7312d2d684c5 + MV3.101 busbar1A + + + + + 2 + ffb45ef3-0c00-78df-48fd-b7730f716314 + MV3.101 Bus 46_1 + + + + + + 1 + 8e66d57e-a0f0-38ec-f5fe-66806452ab67 + Cubicle_MV3.101 SGen 110 + + + + + + 1 + c3f385b5-cb55-b9dc-5773-e7f100cc5fb8 + MV3.101 Bus 91 + + + + + 1 + a4326289-67da-8fd6-4a6d-0c187f3bc164 + MV3.101 BS busbar1C + + + + + 1 + 88e658bc-abec-beb9-d3a9-965ca35607db + Cubicle_HV1 grid at MV3.101 + + + + + + 1 + 49066ed8-50df-f609-43d4-c3d1b7d3e8ab + MV3.101 Bus 14_2 + + + + + + 1 + 8bc77a47-8999-e7e8-b709-4ac3383bcc0b + MV3.101 Bus 141_2 + + + + + + 1 + ffdb8ee7-9643-4787-35d0-dc4694741fc1 + MV3.101 Bus 70_2 + + + + + + 2 + 8dc4a79b-9b97-2e8a-49b9-97d13eed32bf + MV3.101 Bus 98_1 + + + + + + 1 + 05f7a717-279c-50c7-c30d-95fe551add38 + MV3.101 Bus 86 + + + + + 1 + fff7eec5-15c2-14ff-fc8c-fed32573fddf + Cubicle_MV3.101 SGen 50 + + + + + + 1 + 99561e5b-0ac5-aa79-c2c0-2edf735d94bf + MV3.101 Bus 40 + + + + + 2 + 8e40625f-cdfc-29be-89ba-d910e4ff7481 + MV3.101 Bus 140_1 + + + + + + 1 + fa25896a-35d4-665a-4fda-73cf81f692e8 + MV3.101 Bus 20_2 + + + + + + 1 + 8a7b29c5-1edc-9f0d-b8bd-06e0a2b6ce88 + MV3.101 Bus 54_3 + + + + + + 1 + ab436ec8-b9e8-5aa6-a656-1e01e4084eb3 + MV3.101 Bus 32 + + + + + 2 + f951b3d9-cc2f-38e9-b845-4c0d33867a70 + MV3.101 Bus 118_1 + + + + + + 1 + 825acc88-2a76-64ee-f694-034edc3c296d + MV3.101 Bus 45 + + + + + 2 + 48977695-e7b3-0b81-3249-afd796f2f3ba + MV3.101 Bus 57_1 + + + + + + 1 + 891e4200-475f-26b3-eb7a-ba661d23df38 + MV3.101 Bus 28_2 + + + + + + 2 + 8db404ba-57d2-e8c0-64e3-84dad831f53b + MV3.101 Bus 25_1 + + + + + + 2 + 018ca385-1e6f-1f3b-d15d-7b3a01bc1dab + MV3.101 Bus 13_1 + + + + + + 1 + 572d7570-7368-50ab-9336-c81bab743e1b + MV3.101 Bus 27 + + + + + 2 + 90ae4993-943d-142f-197a-50b9cad968f9 + MV3.101 Bus 86_1 + + + + + + 2 + fb70e597-6750-de90-eac9-5708aebe0ca6 + MV3.101 Bus 17_1 + + + + + + 1 + 00677160-362e-94e9-9154-9f4e6f38e38a + Cubicle_MV3.101 SGen 120 + + + + + + 1 + 6a644969-54cd-eeae-720d-2dc3edee727a + MV3.101 Bus 122 + + + + + 2 + 912135e8-c2c9-29e5-cd97-707ab7dd6cab + MV3.101 Bus 97_1 + + + + + + 1 + fd6929c7-a2f8-449c-32e3-476f6be4739c + Cubicle_MV3.101 MV Storage 67 + + + + + + 1 + 919dc7a4-69fa-1500-8a60-831b88dfbeb4 + Cubicle_MV3.101 MV Storage 84 + + + + + + 1 + 04d73cfb-6b01-e153-3533-296025a65fc4 + MV3.101 busbar2B_MV3.101 node2 + + + + + + 1 + f5417c93-a11d-585c-44ff-b51f0e8adf81 + MV3.101 Bus 53_2 + + + + + + 1 + 91acc724-9a07-c204-55a3-d85b3dafcd34 + MV3.101 Bus 72_2 + + + + + + 1 + 3d33f0c4-9a84-4581-c3e7-c41f877f3b1c + MV3.101 Bus 82 + + + + + 1 + 8ade4ed1-5ec4-f669-a191-3fe7414e0bae + MV3.101 Bus 119_2 + + + + + + 1 + 04fc7f7a-8b7b-14d5-49b7-adbbc38ae0cd + Cubicle_MV3.101 SGen 126 + + + + + + 1 + 81018bcd-9c3b-7a82-719e-2c94b432b95c + MV3.101 Bus 121 + + + + + 1 + e2253692-2a52-76ce-d7fa-03c73dc9d04e + MV3.101 Bus 26 + + + + + 1 + 8d27ced8-a892-aec4-1953-f60776f30677 + Cubicle_MV3.101 MV Storage 36 + + + + + + 1 + ef77aa85-7417-1d87-041d-fa0f00f1eae0 + MV3.101 Bus 58 + + + + + 1 + 8dbece1c-c2fc-4366-c093-0d26b8d58d41 + MV3.101 Bus 71_2 + + + + + + 1 + b59bed20-1724-b217-857f-e14f2b68631d + MV3.101 Bus 11 + + + + + 1 + 8109b69e-9eac-9a12-5008-4d5e80d37748 + MV3.101 Bus 100 + + + + + 1 + 8f06f51c-269d-2b4e-3b17-32b8b511efb7 + Cubicle_MV3.101 SGen 37 + + + + + + 2 + 8e44b7f8-475b-d54a-d5c7-6deb0a2e4e58 + MV3.101 Bus 135_1 + + + + + + 1 + 02f20913-b93b-2703-1202-33c86ff1d284 + Cubicle_MV3.101 SGen 32 + + + + + + 1 + 95b1d4ea-214b-75be-7f14-243db3684ca1 + Cubicle_MV3.101 MV Storage 64 + + + + + + 2 + 0248518b-a20c-ed62-ab09-340dde965940 + MV3.101 Bus 67_1 + + + + + + 1 + 97c27500-1466-f150-2ede-d3c935027429 + MV3.101 Bus 14_3 + + + + + + 1 + b9fd2cbd-42a1-2caa-b5cc-d72f1128000b + MV3.101 Bus 97 + + + + + 2 + 029cb89c-8330-1d5d-3257-7cf263322fc5 + MV3.101 Bus 122_1 + + + + + + 1 + 0300e4c5-f31a-6fbe-f27b-7eee1be7f50c + Cubicle_MV3.101 Load 25 + + + + + 1 + 03f4996c-eedb-8d78-69f8-0fbad5009c11 + MV3.101 Bus 135 + + + + + 1 + 04ab5a97-fd19-3ac2-703c-a2c9f23588f1 + MV3.101 Bus 62_2 + + + + + + 1 + 0ed81728-97e3-94f6-7966-f899da21c5cd + Cubicle_MV3.101 Load 87 + + + + + 1 + 036f10e0-8fad-91e4-7695-9c1d11d47cd5 + MV3.101 Bus 99_2 + + + + + + 1 + 9ae3b800-5627-2daf-d0a0-1d55b11c4b53 + Cubicle_MV3.101 SGen 113 + + + + + + 1 + 61fc7502-a8ad-58ab-c5da-af475ffc6e99 + MV3.101 Bus 132 + + + + + 1 + 1669ed7c-1f1e-1ab5-5cc2-921eb76a13fd + Cubicle_MV3.101 Load 127 + + + + + 1 + 9ddeed7e-fad6-b50b-31e1-9cfb90e1b230 + Cubicle_MV3.101 SGen 68 + + + + + + 1 + 95027fdd-8f9b-4d15-c89f-253f997f5e6e + MV3.101 Bus 140 + + + + + 1 + 04f84a1b-e2fa-1aea-af37-395ca62ab917 + Cubicle_MV3.101 SGen 38 + + + + + + 1 + 1671c485-e3a4-ee89-bdc7-2e5d6f24f1ad + Cubicle_MV3.101 Load 71 + + + + + 1 + 1d37e576-ba8e-60ba-6945-a1b755d159c0 + Cubicle_MV3.101 Load 7 + + + + + 1 + 1020a29d-ced9-f6a6-2fda-757ff88cc9cf + MV3.101 Bus 124 + + + + + 2 + 9547dea4-23cc-a074-31a8-bb6c76809ca4 + MV3.101 busbar2B + + + + + + 1 + 1edc1df3-64a0-60b0-a80c-d46a54161ded + Cubicle_MV3.101 Load 8 + + + + + 1 + ac38d5c1-6306-5452-22bf-ace4f16e2feb + MV3.101 Bus 99 + + + + + 1 + 9e94afc4-0d2b-7036-b82d-01246c211c92 + Cubicle_MV3.101 SGen 109 + + + + + + 1 + 1fcaeaaa-245b-3a71-7526-2de69fe199cd + Cubicle_MV3.101 MV Load 1 + + + + + 1 + 9ea2c7a3-d036-bd5c-2058-2b1ad2e3f895 + Cubicle_MV3.101 MV Storage 56 + + + + + + 1 + 20dbceb5-b494-6c14-b76f-540694367409 + Cubicle_MV3.101 Load 42 + + + + + 1 + 04b27bc0-a8ef-b56d-92dc-d7f7ac0cf4d0 + Cubicle_MV3.101 Load 104 + + + + + 1 + f957a159-52f2-cd00-4f72-ec6adfedb5d2 + MV3.101 Bus 83 + + + + + 1 + 98a4c8f6-393e-b2a4-9993-64559e93c761 + Cubicle_MV3.101 SGen 84 + + + + + + 1 + 05ee633f-e916-ab47-9c08-a5951c584acd + Cubicle_MV3.101 Load 118 + + + + + 1 + 02d43afc-df69-f245-d1be-3503fc3e197a + MV3.101 Bus 42_2 + + + + + + 1 + 205ebc92-bd1b-4384-15c0-801843766362 + Cubicle_MV3.101 Load 46 + + + + + 1 + d829a544-3531-ccc6-b140-8cd4ba62b7ec + MV3.101 Bus 80 + + + + + 1 + 96b27aff-972d-8432-4705-90ec3f56acb4 + MV3.101 Bus 22_2 + + + + + + 1 + 0571e64d-bafe-c010-c084-9c9349d54631 + MV3.101 Bus 35_2 + + + + + + 1 + 21f9337a-6428-2849-7e16-98644f252c28 + Cubicle_MV3.101 Load 94 + + + + + 1 + 22f25546-54ff-fb8f-777e-471f138b0d98 + Cubicle_MV3.101 Load 63 + + + + + 1 + d5f2b206-ab87-2d00-35ec-54bb0c530aeb + MV3.101 Bus 57 + + + + + 1 + 007a7393-90a8-2c52-21d5-b8450822d259 + Cubicle_MV3.101 MV Load 2 + + + + + 1 + 27eab934-c8d1-ca92-08e6-6d645dfade68 + MV3.101 Bus 51 + + + + + 1 + 9774dde3-3e46-20a9-e9cc-b5d86da401e0 + Cubicle_MV3.101 SGen 17 + + + + + + 1 + a4a0589a-6c75-fe69-ffb6-afb650f2d990 + MV3.101 Bus 125 + + + + + 1 + 2613e2da-d53d-416a-e53d-b906bc993537 + Cubicle_MV3.101 Load 129 + + + + + 1 + 97844f99-074a-055b-2e46-d2a1c3bad7f3 + MV3.101 Bus 77_2 + + + + + + 1 + 06718343-3abf-1b20-6e43-64ae7fb159aa + Cubicle_MV3.101 MV Load 3 + + + + + 1 + 97be5354-b921-0283-9dd3-81bafcc1e309 + MV3.101 Bus 102_2 + + + + + + 1 + 0d751a21-fae7-8677-2259-806413f2d660 + Cubicle_MV3.101 Load 33 + + + + + 1 + 0342db0a-7246-0573-32f0-bffb2ebcde73 + MV3.101 Bus 63_2 + + + + + + 1 + 0e4b8d3a-a0b8-32b8-ed93-0fe24e7006f2 + Cubicle_MV3.101 Load 12 + + + + + 1 + 983b5949-00e4-6fde-6134-ec51aa343079 + Cubicle_MV3.101 SGen 54 + + + + + + 1 + c5e03fd4-ae33-062d-494f-543764def7be + MV3.101 Bus 112 + + + + + 1 + 0288af2c-e87f-6454-6f24-ab69e3152fec + MV3.101 busbar2A_2 + + + + + + 1 + 115b496e-e53b-2428-dfa7-5d93a8503e0c + Cubicle_MV3.101 Load 86 + + + + + 1 + 9a6d6131-cfc1-ae33-057a-b10a97d3eae3 + MV3.101 Bus 67_2 + + + + + + 2 + 9519939d-290d-46a2-17d0-695211c55542 + MV3.101 Bus 104_2 + + + + + + 1 + 1831fb25-8001-dcc0-0d41-31fc119e78ea + Cubicle_MV3.101 Load 50 + + + + + 1 + 4692df47-fae3-ecd7-3080-f9eac670c4b8 + MV3.101 Bus 31 + + + + + 1 + 02211b4a-b4c8-861c-87a0-f7e364967a9e + Cubicle_MV3.101 Load 82 + + + + + 1 + 96c32a96-46cf-a8ef-5be9-43d40aa76886 + MV3.101 BS busbar1A_1 + + + + + + 1 + 68d30259-13d6-b659-6971-c4ccd5dc3e80 + MV3.101 Bus 35 + + + + + 1 + 00def159-2290-375a-eb27-3980e6624992 + Cubicle_MV3.101 Load 19 + + + + + 2 + 9a94999f-c4c2-adb5-4a10-1fcfdb87fd8c + MV3.101 BS busbar1B_1 + + + + + + 1 + 1927bece-72f3-9473-abc2-879d83ffc2c9 + Cubicle_MV3.101 Load 110 + + + + + 2 + 9ac366ef-941f-2716-5b7a-94e571cfe818 + MV3.101 node1 + + + + + + 1 + 9b4e01ae-9167-43cd-f5f3-a8f91c774995 + MV3.101 Bus 19_2 + + + + + + 1 + 9099eb7b-34a4-2138-7829-46d328bfe922 + Cubicle_MV3.101 Load 107 + + + + + 1 + 03fcf5f8-7c4c-17bf-0ee3-843d90ceb9a3 + Cubicle_MV3.101 SGen 103 + + + + + + 1 + 9b506d81-d79c-0088-a371-aa63f76d25ee + Cubicle_MV3.101 SGen 122 + + + + + + 1 + 4f71117d-2696-0416-11c0-e688fe0a8844 + Cubicle_MV3.101 Load 100 + + + + + 1 + 9a5eaef9-543f-636b-cc2e-2875711749ac + Cubicle_MV3.101 Load 9 + + + + + 2 + 97d21d38-2dad-8f1a-599f-87d6503545d2 + MV3.101 Bus 84_1 + + + + + + 1 + 680e26a5-02ad-574f-6013-ff0c80c575cb + Cubicle_MV3.101 Load 38 + + + + + 1 + 44c63523-2686-79a8-3f7b-ed3a9afa5ae2 + Cubicle_MV3.101 Load 54 + + + + + 1 + 4874818b-0abf-b121-80c0-c990776a882b + Cubicle_MV3.101 Load 5 + + + + + 1 + 59f5efd4-a570-5d4c-2d76-94a65d3a6c7b + Cubicle_MV3.101 Load 31 + + + + + 2 + 12899a07-8e25-666d-3ccf-91ddfb4fe1a5 + MV3.101 Bus 34_1 + + + + + + 1 + 7cba4f28-9548-bbe4-9027-41da0fa97ea1 + Cubicle_MV3.101 Load 23 + + + + + 1 + 07a3a8f9-f357-de64-748f-b71f9ff300ae + MV3.101 Bus 47_2 + + + + + + 1 + 96bc6e0c-9172-abe1-bc52-906ef6026517 + Cubicle_MV3.101 MV Storage 61 + + + + + + 1 + 78295307-ae39-9447-bd14-53f5e80f3318 + Cubicle_MV3.101 Load 52 + + + + + 1 + 809c04ea-b058-7377-6545-5e583effbea4 + Cubicle_MV3.101 Load 26 + + + + + 1 + 99208a43-0d20-8f88-2d60-bbdb7e828ecc + MV3.101 Bus 59_2 + + + + + + 2 + 06fdb6f5-5eb4-f139-6275-8f08861d4b63 + MV3.101 Bus 47_1 + + + + + + 1 + 5e64b94c-fe09-b907-2575-4af6c285701c + Cubicle_MV3.101 Load 74 + + + + + 2 + 9c0172c5-e569-23f2-add7-b7fe3c391d5b + MV3.101 Bus 136_1 + + + + + + 1 + 12ad8ad5-9c0c-a45f-943e-0de6e15b4b35 + MV3.101 Bus 116_2 + + + + + + 1 + 9274bb5e-b381-77e6-a66f-046e88de50a9 + Cubicle_MV3.101 Load 59 + + + + + 2 + 0edfb974-623f-c3f4-add7-4d328d0f7c4b + MV3.101 Bus 102_1 + + + + + + 1 + 9c66c65a-85ce-043c-c47d-dde9faf41811 + Cubicle_MV3.101 SGen 10 + + + + + + 1 + 0a9c55eb-e281-efcd-5db3-d52e5f7fb494 + MV3.101 Bus 94_2 + + + + + + 1 + 64cc440e-ad81-d1d6-48e4-179cdca2b42e + Cubicle_MV3.101 Load 21 + + + + + 2 + 95424b44-4029-4a91-f8f7-c24e3a1905aa + MV3.101 Bus 111_1 + + + + + + 1 + 368fb83d-6b9c-9835-79b5-c00c24be8fd9 + Cubicle_MV3.101 Load 111 + + + + + 1 + 0b8b7f9c-8150-ad2a-5a57-fd04760a3907 + Cubicle_MV3.101 MV Storage 37 + + + + + + 1 + 9661c8c1-9790-61a3-8050-4ecf0dbd16a7 + Cubicle_MV3.101 MV Storage 35 + + + + + + 1 + 2c81eb67-40b1-c683-eabf-7a6bbec32e9d + Cubicle_MV3.101 Load 29 + + + + + 1 + 490797fb-393a-6694-350d-6726b98090d8 + Cubicle_MV3.101 Load 75 + + + + + 2 + 97fd8dca-536b-2ec5-8870-3a521c99cdfe + MV3.101 Bus 118_2 + + + + + + 1 + 0ffb2e85-141c-032c-2e31-de342b1360e2 + MV3.101 Bus 45_2 + + + + + + 1 + 7017e869-b894-72e4-775f-ae17448e0a6e + Cubicle_MV3.101 Load 85 + + + + + 2 + 9a5b3f6d-0724-357e-1a6b-d13878172da5 + MV3.101 Bus 107_1 + + + + + + 1 + 87d8ae57-2399-2ea3-475d-3997118c2555 + Cubicle_MV3.101 Load 109 + + + + + 1 + 454b6e30-0470-297f-7fb4-5b56b221f438 + Cubicle_MV3.101 Load 11 + + + + + 1 + 9cb2f1c4-5069-6338-68d3-e19227d2aa1f + Cubicle_MV3.101 SGen 104 + + + + + + 1 + 0858c979-39eb-8d57-3f8b-24d3f2d8aadc + Cubicle_MV3.101 MV Storage 77 + + + + + + 1 + 94c4b7e9-8c50-385a-ec09-600d39fc0e0b + Cubicle_MV3.101 Load 89 + + + + + 1 + 972ba56b-cf6d-4ab5-4182-d1f59eb2ec77 + Cubicle_MV3.101 MV Storage 12 + + + + + + 1 + 95eab691-70fa-e233-d747-4dc4d56bb4ac + Cubicle_MV3.101 Load 95 + + + + + 2 + 9749cf02-cd41-326c-88b4-1ff64c05dcae + MV3.101 Bus 20_1 + + + + + + 1 + 4a940535-82b9-a971-3fb8-cc967b678ecf + Cubicle_MV3.101 Load 112 + + + + + 1 + a209bb7a-e044-f39e-ee69-cabf129fb19a + Cubicle_MV3.101 MV Storage 71 + + + + + + 1 + 8ab2198f-f107-a938-ce60-8d8405b337fc + Cubicle_MV3.101 Load 24 + + + + + 1 + 884150a3-477a-79db-9f68-e148675caffe + Cubicle_MV3.101 Load 35 + + + + + 1 + a2b99001-6968-a8fd-a3ff-e187adddbbd9 + Cubicle_MV3.101 SGen 73 + + + + + + 1 + 4f0e317c-db8c-5781-6d6c-e135225e19dd + Cubicle_MV3.101 Load 68 + + + + + 1 + 96e6a3f5-b902-057a-5d3b-8555cce7ea0e + Cubicle_MV3.101 Load 36 + + + + + 1 + 38ae6667-dc6a-44d3-8be4-08838c57e128 + Cubicle_MV3.101 Load 47 + + + + + 1 + 10a8b98b-80cd-0d6a-48a1-96f29b6ffcd7 + Cubicle_MV3.101 MV Storage 13 + + + + + + 1 + 40899bc5-6401-21d9-241a-a75de0455420 + Cubicle_MV3.101 Load 105 + + + + + 1 + 10d76fb1-5577-91fe-a929-82129277abbe + Cubicle_MV3.101 MV Storage 110 + + + + + + 1 + 9794e42a-3237-11e2-ba30-775b558cfefd + Cubicle_MV3.101 Load 61 + + + + + 1 + a03d4994-b7d6-b7a3-59e1-3bacb4bd586e + MV3.101 busbar1B_1 + + + + + + 2 + 07ba26af-51f8-1057-5875-54ce96269366 + MV3.101 Bus 36_1 + + + + + + 1 + 9aa52263-fe4b-455b-7505-f287245292ab + Cubicle_MV3.101 MV Load 4 + + + + + 1 + a38478ec-d41d-86f7-4014-bc4f12465392 + MV3.101 Bus 78_2 + + + + + + 1 + 0b74682b-449d-5dc6-cabb-2409ff0d45f3 + Cubicle_MV3.101 SGen 100 + + + + + + 1 + 2bccc3c4-81b0-90fd-2b12-5a9a7d9aad1c + Cubicle_MV3.101 Load 57 + + + + + 2 + a42056c3-0e8c-e214-fc7b-7227b07ccba1 + MV3.101 Bus 52_1 + + + + + + 1 + 0621c61b-3009-874a-0aef-a3042590e411 + MV3.101 busbar1A_MV3.101 node1 + + + + + + 1 + 08afb8fb-ce59-f002-e7c9-74cd553bbf2e + MV3.101 Bus 69_2 + + + + + + 2 + a7b88f10-6f58-e769-146b-07da85018be8 + MV3.101 Bus 95_1 + + + + + + 2 + a73129f4-ec73-93e6-fcef-479f3e22d5ae + MV3.101 Bus 132_1 + + + + + + 1 + 08aca091-72b3-d217-688e-fab73937af5d + Cubicle_MV3.101 MV Storage 99 + + + + + + 1 + 0b010ca4-7a3b-8d36-bcb9-85d7ee4dc07e + Cubicle_MV3.101 SGen 39 + + + + + + 1 + a2a37953-e3d3-8bd2-aef3-76c56013f7de + Cubicle_MV3.101 SGen 116 + + + + + + 1 + a2d55e2f-7dc6-8ee2-cbd5-384fb5a8063c + MV3.101 Bus 40_3 + + + + + + 2 + a2e834fc-60be-1f9e-7543-8f8260d9be33 + MV3.101 BS busbar1C + + + + + + 1 + 545fb0fc-4a85-adbe-5ad1-472f2d4392ad + Cubicle_MV3.101 Load 70 + + + + + 1 + a44f3a94-6ec2-5a4b-1929-1c6bfb2963ed + Cubicle_MV3.101 MV Storage 55 + + + + + + 1 + 365b9b49-bf30-ec9b-ee17-f108fbec17f6 + Cubicle_MV3.101 Load 20 + + + + + 1 + 9f61edfe-6b74-f0bc-3da6-1de93603d114 + Cubicle_MV3.101 MV Storage 70 + + + + + + 1 + 6cd06c3b-aaae-fc15-784f-68014f2cda38 + Cubicle_MV3.101 Load 121 + + + + + 1 + 2ea70caf-1856-f399-0013-4afad3b868d8 + Cubicle_MV3.101 Load 81 + + + + + 1 + 4145c738-4573-a5c7-05c4-eec4b2874810 + Cubicle_MV3.101 Load 113 + + + + + 1 + a24a43e4-9055-2fe5-6961-87b86e8d2c39 + Cubicle_MV3.101 MV Storage 88 + + + + + + 1 + 4f211504-2251-0af3-9a57-4802370b1fdf + Cubicle_MV3.101 Load 41 + + + + + 2 + a3b7b3fc-abed-888b-be60-610c80fc3ef0 + MV3.101 Bus 114_1 + + + + + + 1 + 538ad3b7-850d-f311-86c1-369b0b550d40 + Cubicle_MV3.101 Load 27 + + + + + 1 + a0bdf978-cfa7-30d2-c581-0b9814a7c92f + Cubicle_MV3.101 MV Storage 8 + + + + + + 1 + 6a90ebf9-1138-7147-8b85-2fb549b54953 + Cubicle_MV3.101 Load 133 + + + + + 1 + a282f91d-a612-091a-7803-26377a0bc51a + Cubicle_MV3.101 MV Storage 29 + + + + + + 1 + 6b20d152-1968-ba0a-a716-0c21294e95db + Cubicle_MV3.101 Load 103 + + + + + 1 + 35e4a8ee-9187-845d-da14-e9c7658a0890 + Cubicle_MV3.101 Load 62 + + + + + 1 + a137c5f5-a24b-9ea2-1358-b36471a21933 + MV3.101 Bus 34_2 + + + + + + 1 + 61bdc6da-55a3-d355-7827-c2b134180d91 + Cubicle_MV3.101 Load 125 + + + + + 1 + a146f4e3-e8cf-2c9d-7a2a-3caed65869a8 + MV3.101 Bus 82_2 + + + + + + 1 + 6cfe6f9f-cd11-d72c-ce96-7f132cf6791c + Cubicle_MV3.101 Load 92 + + + + + 1 + 76d33462-c09f-6a85-d082-1b6ecba786df + Cubicle_MV3.101 Load 79 + + + + + 1 + a13b84da-fff1-8af3-dd12-9a64a4432cdd + Cubicle_MV3.101 SGen 31 + + + + + + 1 + 8702d598-ae53-bb6f-186e-844bb23a1c53 + Cubicle_MV3.101 Load 93 + + + + + 1 + a24de886-f31e-c494-2b17-46394ca04b20 + Cubicle_MV3.101 SGen 131 + + + + + + 1 + 6a2f87df-e2cc-a926-cd77-94111e371eba + Cubicle_MV3.101 Load 72 + + + + + 1 + 48b7648a-7802-7766-cfca-750647ca2e56 + Cubicle_MV3.101 Load 51 + + + + + 1 + a2644dc5-1ee8-aa1d-829d-0240f4a068c3 + MV3.101 Bus 96_2 + + + + + + 1 + 88aa7a6e-f987-78a0-edc1-9e9d6292ebd2 + Cubicle_MV3.101 Load 124 + + + + + 1 + 44f9daba-551f-9257-ae3a-4cad4974333e + Cubicle_MV3.101 Load 115 + + + + + 1 + 54a2dc1c-7d45-eee8-d81b-22927f2e7e09 + Cubicle_MV3.101 Load 76 + + + + + 1 + 2e03cf3b-3ed7-3e06-8640-a947706ded2a + Cubicle_MV3.101 Load 37 + + + + + 1 + a46d7b81-83d0-608e-8662-66eb5ce1fa4a + MV3.101 Bus 91_2 + + + + + + 1 + 3b328934-63ec-79fc-1784-f51103e3fccf + Cubicle_MV3.101 Load 73 + + + + + 1 + 61746524-4feb-25cf-a019-ba2cdec47c58 + Cubicle_MV3.101 Load 2 + + + + + 1 + a2b5a248-c16a-be08-c73f-81d2003d046b + MV3.101 Bus 60_2 + + + + + + 1 + 852a36b5-501c-ae69-a5d4-e6810d6296b5 + Cubicle_MV3.101 Load 119 + + + + + 1 + 3600990a-4e1d-3706-f3c6-961eef77c831 + Cubicle_MV3.101 Load 91 + + + + + 1 + 13924410-528f-2332-7414-3e4f67deea13 + MV3.101 Bus 34 + + + + + 1 + a62bf0b8-920e-e1a8-c721-dcf829a518c7 + Cubicle_MV3.101 SGen 71 + + + + + + 1 + 8396d8f7-be55-630e-adb6-ee5bcf4d3cb8 + Cubicle_MV3.101 Load 55 + + + + + 1 + 8961e3f9-16a9-86ef-1967-067638caf2c6 + Cubicle_MV3.101 Load 123 + + + + + 1 + 7f23acea-e74e-d344-cb65-e295058d12c5 + Cubicle_MV3.101 Load 34 + + + + + 1 + 35bf5669-6821-6b97-c0be-9b6eebdfeaf0 + Cubicle_HV1_MV3.101_load + + + + + 1 + 6d6df280-ef3f-b5de-ecf1-865cc5d1d04a + Cubicle_MV3.101 Load 106 + + + + + 1 + a58b61df-2123-ef28-036c-4ca5eb5c5839 + MV3.101 busbar1A_1 + + + + + + 1 + 6ddf2a49-f16f-c451-9dfe-68f23e6602ba + Cubicle_MV3.101 Load 83 + + + + + 1 + 8ae94f4d-0d89-be19-964a-966c455c2049 + Cubicle_MV3.101 Load 6 + + + + + 1 + 83c4cb5d-f181-dfb2-4188-d2bec8426f44 + Cubicle_MV3.101 Load 28 + + + + + 1 + a117e19a-459a-021d-7d30-3d5817c999a2 + Cubicle_MV3.101 MV Storage 18 + + + + + + 1 + 549f6b38-adfb-fe62-91a4-bf4b7fee9bc2 + Cubicle_MV3.101 Load 3 + + + + + 1 + b1f94f9a-0829-b997-e2ac-c14adcc2c3a0 + Cubicle_MV3.101 MV Storage 17 + + + + + + 1 + 0de63770-b4dd-92c6-2155-5f0214acd11a + Cubicle_MV3.101 MV Storage 117 + + + + + + 1 + b26f9f2f-d5c3-ed4c-6866-6118fb539b1f + MV3.101 Bus 12_2 + + + + + + 1 + 0c9b4146-f96e-3a7b-8279-4a097418b430 + Cubicle_MV3.101 MV Storage 75 + + + + + + 1 + ac163ddc-0321-ceef-3c11-121acd457cba + Cubicle_MV3.101 SGen 34 + + + + + + 1 + d3db5cf7-2e95-7f81-5df7-c2441da898e2 + Cubicle_MV3.101 Load 134 + + + + + 1 + 0b1a2968-ab32-ac76-7f8b-a0110a103eba + MV3.101 Bus 52_2 + + + + + + 1 + d3fe9be3-586c-21a0-92bd-79d3e6801f6d + Cubicle_MV3.101 Load 130 + + + + + 2 + ae703e17-b56e-905c-8add-537b808e8205 + MV3.101 Bus 104_1 + + + + + + 1 + ebfcecd3-6a33-0a53-7a13-6ab18ab14220 + Cubicle_MV3.101 Load 78 + + + + + 2 + 0c547651-346d-e353-1125-978aefd1404e + MV3.101 Bus 110_3 + + + + + + 1 + ee7bbfb8-074b-1318-9fb6-357400c29ae0 + Cubicle_MV3.101 Load 88 + + + + + 1 + b28d8c2e-bcc4-b2d4-2654-52d753396cf7 + Cubicle_MV3.101 SGen 78 + + + + + + 1 + f105d592-f9a3-defd-3b62-e00ca54c407f + Cubicle_MV3.101 Load 4 + + + + + 1 + b03dcf9b-9ff4-3d5c-cb9a-cf5fc85b2732 + Cubicle_MV3.101 MV Storage 58 + + + + + + 1 + b0ea343c-e6f9-c92b-fbb6-6b46669f9ed0 + Cubicle_MV3.101 Load 66 + + + + + 1 + f5847c91-91c3-9b0b-a25c-b2f4fb0c78fb + Cubicle_MV3.101 Load 22 + + + + + 2 + b2a859c9-9619-3f92-3ffb-421c1771cc21 + MV3.101 Bus 80_1 + + + + + + 1 + f9b66697-92ef-29e1-dd47-28b6ee022515 + Cubicle_MV3.101 Load 132 + + + + + 2 + adb03142-c99d-3cbf-b87d-1b6bf6743e8c + MV3.101 Bus 103_1 + + + + + + 1 + 9d5d3d22-d3e7-5c80-77cc-f419afacd090 + Cubicle_MV3.101 Load 58 + + + + + 1 + a0c7bbe3-75f0-0375-5504-a2454a686ec9 + Cubicle_MV3.101 Load 67 + + + + + 1 + ae3370b3-1e76-bb8f-d355-69f1afe04fb6 + Cubicle_MV3.101 Load 126 + + + + + 1 + a810befe-c1b5-91fe-28aa-45f4249d5026 + MV3.101 Bus 13_2 + + + + + + 1 + b78cfad5-520a-5811-04a9-53d530926441 + Cubicle_MV3.101 Load 131 + + + + + 1 + b2e8eb27-d981-8978-2785-f03f88f71174 + MV3.101 Bus 136_2 + + + + + + 1 + d3677fc4-65c9-24de-d1ab-b71ed126d925 + Cubicle_MV3.101 Load 53 + + + + + 1 + b2e9699a-b63c-7d4f-1fbc-86996a3efa77 + Cubicle_MV3.101 SGen 95 + + + + + + 1 + 9fc4d6dd-c38e-e956-4882-caf7c7a264e8 + Cubicle_MV3.101 Load 80 + + + + + 1 + aa6b35bf-40e1-b2da-87c7-26cc1644a3ab + Cubicle_MV3.101 MV Storage 23 + + + + + + 1 + a5f2bc81-39da-e2cb-99fc-690c5fcd1d67 + Cubicle_MV3.101 Load 98 + + + + + 1 + d72722b0-d703-3e2c-a59f-bd1fbcec216a + Cubicle_MV3.101 Load 60 + + + + + 2 + af9c7475-f578-44f2-7c85-f9839a377334 + MV3.101 Bus 100_1 + + + + + + 1 + d8e1c146-11df-226d-452a-159e422cb286 + Cubicle_MV3.101 Load 15 + + + + + 2 + aab02919-d337-86a0-4f59-65139c74d4c6 + MV3.101 Bus 125_1 + + + + + + 1 + e1522ce8-99c6-484f-c389-605c12e04ab8 + Cubicle_MV3.101 Load 96 + + + + + 1 + e2947a86-caa1-1538-a764-659cd37e6807 + Cubicle_MV3.101 Load 30 + + + + + 1 + aff6da21-2e75-a18f-51a2-631c089c00b7 + Cubicle_MV3.101 MV Storage 53 + + + + + + 1 + ca256fbb-b7fe-4afa-2163-abd110a368eb + Cubicle_MV3.101 Load 108 + + + + + 1 + a91c686d-3462-cf1a-3125-a25ca89ce270 + Cubicle_MV3.101 MV Storage 46 + + + + + + 1 + be4c8e7e-5b4c-dd23-570a-53bb600edfab + Cubicle_MV3.101 Load 97 + + + + + 1 + a800c666-a829-b353-179c-7c078485109f + MV3.101 Bus 142_2 + + + + + + 1 + e2ffab25-2f52-a836-ab10-bdfe99c597c4 + Cubicle_MV3.101 Load 120 + + + + + 1 + aa0a5631-38fb-fe83-b0bb-92f737cafc5a + Cubicle_MV3.101 SGen 115 + + + + + + 1 + f1ad1a87-f1d8-7497-07c0-36be6b73b75b + Cubicle_MV3.101 Load 14 + + + + + 2 + a98b2aa6-cd14-7740-f6f0-8afb4f1a3486 + MV3.101 Bus 128_1 + + + + + + 1 + d8cfeab2-907e-a192-4462-b7587ab6e26d + Cubicle_MV3.101 Load 99 + + + + + 1 + f3bba606-c003-58f5-97ab-f1642db89a84 + Cubicle_MV3.101 Load 69 + + + + + 1 + ad0a924f-ac7a-e2dc-2964-f8ca3311c250 + Cubicle_MV3.101 Load 116 + + + + + 1 + f55fc2fc-2353-683b-ed22-475dbb50b658 + Cubicle_MV3.101 MV Load 5 + + + + + 1 + a83e7cd3-7409-f162-f0b7-95788cb7b042 + Cubicle_MV3.101 MV Storage 105 + + + + + + 1 + f6415ebe-4850-7ab7-b33a-74717534883e + Cubicle_MV3.101 Load 101 + + + + + 1 + ac56fef9-8728-0f07-b9e2-5c62cb2d7f3f + Cubicle_MV3.101 MV Storage 10 + + + + + + 1 + f9e530cc-0571-2ecf-fe91-8d85ce6641e9 + Cubicle_MV3.101 Load 65 + + + + + 2 + ad110288-6a16-a35d-4632-4656d703ff05 + MV3.101 Bus 41_1 + + + + + + 1 + b9386e69-33b9-884b-56b1-ca7ba51dbce1 + Cubicle_MV3.101 Load 122 + + + + + 1 + a821eb93-c8c8-dc1b-28fa-e78e4a789959 + MV3.101 busbar1A + + + + + + 1 + fa9f747d-65cc-b4ce-f48c-d541b345216c + Cubicle_MV3.101 Load 13 + + + + + 1 + a0ae5938-f47a-13a5-b9ff-0565c3a29ea1 + Cubicle_MV3.101 Load 49 + + + + + 2 + aa398d79-68f7-1a0c-f9b1-7de9d214e48c + MV3.101 Bus 48_1 + + + + + + 1 + b4c51675-4b97-c2f2-3714-5838b4e8f6e9 + Cubicle_MV3.101 Load 90 + + + + + 1 + 5fd0f26b-7f17-bab3-8a63-2c6a1d8a587d + MV3.101 Bus 39 + + + + + 1 + 9c0e802c-81db-03ae-8f5a-112693231a46 + Cubicle_MV3.101 Load 77 + + + + + 1 + c053f78c-56e7-e039-f352-83708c635e40 + Cubicle_MV3.101 Load 128 + + + + + 1 + ab0179b5-a3b2-fde3-70da-6b830dfc1ba9 + Cubicle_MV3.101 MV Storage 22 + + + + + + 1 + cc1eeb86-41eb-116e-4d3c-5c7f9631f374 + Cubicle_MV3.101 Load 32 + + + + + 1 + 7e6fe179-e756-f09d-594f-ca61419352e3 + MV3.101 Bus 23 + + + + + 1 + c0804960-63ca-3c22-8a7e-bf442092523e + Cubicle_MV3.101 Load 84 + + + + + 1 + b46a8641-2bec-2c69-6ed1-4161c6a0b563 + Cubicle_MV3.101 Load 43 + + + + + 1 + 3e87fd5a-67f4-200a-acf3-367a539e49fd + MV3.101 Bus 12 + + + + + 1 + ecf1ba17-262d-bfa6-ca1f-3c6eb8073352 + Cubicle_MV3.101 Load 40 + + + + + 1 + 2db140a6-a155-2169-d7b3-fa2bb2dd807f + MV3.101 Bus 114 + + + + + 1 + e75a7093-bb38-7280-de39-930eb8e1bc63 + Cubicle_MV3.101 Load 114 + + + + + 1 + af9e308e-04b9-08d5-1509-b39a516483e6 + Cubicle_MV3.101 SGen 69 + + + + + + 1 + 151b156e-693b-5e2d-e3df-364c741f16ac + Cubicle_MV3.101 SGen 82 + + + + + + 1 + fc79316f-aeb1-6a2c-847f-b226f302fcef + Cubicle_MV3.101 Load 39 + + + + + 1 + f7a5425d-669f-d81a-21ba-35d0d463231d + MV3.101 Bus 138 + + + + + 2 + a81bd693-ec3e-ead8-08c7-c0ad11d537e2 + MV3.101 Bus 75_1 + + + + + + 1 + ff721484-64d9-a7e4-d100-acd9d26532ba + Cubicle_MV3.101 Load 45 + + + + + 1 + d9fabad0-2ff8-7cbc-dc6d-b1074500b944 + MV3.101 BS busbar1B + + + + + 2 + af5b7a43-e845-c083-6a04-a1a9888c75b6 + MV3.101 Bus 108_1 + + + + + + 2 + af26c5e8-b662-0832-ed3b-42f9291ae9f2 + MV3.101 Bus 137_1 + + + + + + 1 + d40fe62c-fbc8-e68d-e324-02a80b81a57b + Cubicle_MV3.101 Load 64 + + + + + 2 + a906ba88-06b1-6483-444a-37b841c47970 + MV3.101 Bus 71_1 + + + + + + 1 + 19d57e79-d4c1-e55b-6b08-6d4b95ab7dbb + MV3.101 Bus 46_2 + + + + + + 1 + a97a7489-4071-d13f-5ab7-98d5c0c9b763 + MV3.101 Bus 25 + + + + + 1 + e6176c90-e5db-600a-c2dd-f0608cd9853a + Cubicle_MV3.101 Load 16 + + + + + 2 + ac28f3b5-f578-6b4d-dde7-da006e0540ac + MV3.101 Bus 74_1 + + + + + + 1 + ac2cef91-b3dd-9c10-e9d3-2bce566f1192 + Cubicle_MV3.101 Load 10 + + + + + 2 + b1df3ac4-f43c-6918-b232-1f73aea255ed + MV3.101 Bus 105_1 + + + + + + 1 + a75331a3-d027-e1ab-3fb4-1264bc42cfdb + Cubicle_MV3.101 Load 117 + + + + + 1 + fd786bc6-4c8a-7bc9-69d7-afe6d7303bb7 + MV3.101 Bus 92 + + + + + 1 + 14f37736-c3fe-a517-9440-9542ff9c3067 + Cubicle_MV3.101 SGen 91 + + + + + + 1 + b33644c6-deca-fda6-972e-187d2a8d2a43 + Cubicle_MV3.101 MV Storage 19 + + + + + + 1 + a85d03ef-05e6-945c-3ec5-b01208330025 + Cubicle_MV3.101 Load 56 + + + + + 1 + badd8c47-605b-7ee3-0e14-ef51c8613781 + HV1 Bus 25 + + + + + 1 + 1bdb6a5c-9d7c-90d1-3a09-12388cd7aa3f + Cubicle_MV3.101 MV Storage 43 + + + + + + 1 + c82ef986-a492-fc03-3282-a42a29fc1fea + Cubicle_MV3.101 Load 44 + + + + + 2 + b73bcccf-cacf-b8f6-39e2-39ee03d9d8eb + MV3.101 Bus 130_1 + + + + + + 2 + 18ee2b6a-b980-d3cc-581e-ff8c21620404 + MV3.101 Bus 39_1 + + + + + + 1 + d9928094-97b7-b85d-46a1-e08c9ec1b6c8 + Cubicle_MV3.101 Load 17 + + + + + 1 + 1c82d10b-730c-1a09-7aec-51fb866ec943 + Cubicle_MV3.101 SGen 53 + + + + + + 1 + 9236b46c-bda1-36a3-8589-3f9b20a049e0 + MV3.101 busbar2A + + + + + 1 + b76e58bb-d6cd-4c28-48fe-1f9d57c3f886 + Cubicle_MV3.101 SGen 108 + + + + + + 1 + b857a0bb-a06a-9e1c-c6b1-d2da6da4100d + Cubicle_MV3.101 Load 18 + + + + + 1 + 13ed859b-5c2a-456c-23de-6641519dbefe + MV3.101 Bus 138_2 + + + + + + 1 + a8d6c3b6-edd3-8dd7-b55e-5e7dcbac1bac + Cubicle_MV3.101 Load 102 + + + + + 1 + b6043756-ffb8-f0ad-7fa8-f197b5b3ea19 + Cubicle_MV3.101 MV Storage 14 + + + + + + 1 + be0f6fd3-86f9-0cfb-69d0-3c98bc483083 + MV3.101 Bus 68 + + + + + 1 + a6aa6261-f233-e89a-aa69-8713b38926a8 + Cubicle_MV3.101 Load 48 + + + + + 1 + 7a3e51bd-7e42-2195-acbd-04bd6410c267 + MV3.101 Bus 141 + + + + + 1 + be25010f-0aea-aba4-e3a0-13138855061e + Cubicle_MV3.101 MV Storage 102 + + + + + + 2 + 136dbedb-cea4-6aba-1c06-2bb7c58a26ca + MV3.101 Bus 131_1 + + + + + + 1 + bec3c344-3a84-d68c-a5cb-53128802f742 + Cubicle_MV3.101 MV Storage 57 + + + + + + 1 + a12099ef-4f84-d95a-47b0-7b385e62deb9 + MV3.101 Bus 120 + + + + + 1 + 1d2224a6-b9c5-f549-8d02-8c58035d22c9 + MV3.101 Bus 30_2 + + + + + + 1 + 662849a3-1ec5-2b35-0f2b-7a76dcdfdc3a + MV3.101 BS busbar1A + + + + + 2 + baa23566-6c3e-df49-c260-b551cb482dd2 + MV3.101 Bus 63_1 + + + + + + 2 + 1ce852ad-2317-8883-ad8c-90e48ccce8f6 + MV3.101 Bus 139_1 + + + + + + 1 + fcfa7de9-ab63-316b-5c85-b39864409410 + MV3.101 Bus 24 + + + + + 1 + 1d22488d-6ead-0147-abac-e7084448171a + Cubicle_MV3.101 SGen 67 + + + + + + 1 + 63483ece-ac9f-7e79-7ec3-df65f3ed5074 + MV3.101 Bus 66 + + + + + 2 + 149b4df2-56fa-602c-05f9-2917a57e6be6 + MV3.101 Bus 110_1 + + + + + + 1 + bef5f20c-1984-cf51-6fed-e5bfec045048 + MV3.101 Bus 76_2 + + + + + + 1 + ce446b4e-99d9-4431-1fa8-b5ced2a728f3 + MV3.101 Bus 95 + + + + + 1 + 18b8c1cb-6a39-54a5-a6de-dfb2400208a0 + Cubicle_MV3.101 SGen 16 + + + + + + 1 + b9d1e048-5cbf-bc89-ffc8-f9580a46ee74 + MV3.101 busbar1A_3 + + + + + + 1 + 140782b4-048b-3a82-3c56-6fd0ca5ccd28 + MV3.101 Bus 59 + + + + + 1 + 137a75e6-3a5f-0abe-5586-99bc0d3a5d2c + Cubicle_MV3.101 MV Storage 25 + + + + + + 2 + b6df29b2-ba60-4e5a-b1be-469e801529de + MV3.101 Bus 143_1 + + + + + + 1 + ef54ef26-f27c-5ec5-9140-76da782886f7 + MV3.101 Bus 133 + + + + + 2 + bf3d195e-0ab8-c159-8aa7-da966af6f071 + MV3.101 busbar1B + + + + + + 1 + 1666bf8a-7b80-e7d6-14ac-9a72ae3fc675 + Cubicle_MV3.101 MV Storage 79 + + + + + + 1 + 1482b11c-f865-7a5c-a49d-a4f9d9d5473c + Cubicle_MV3.101 MV Storage 123 + + + + + + 1 + 6d05eb94-db0a-340f-d02d-85ee79cb24ee + MV3.101 Bus 90 + + + + + 2 + b6ce6ab7-2840-7bd6-df3a-e3e8fb828559 + MV3.101 Bus 33_1 + + + + + + 2 + 16a6791b-a4d3-b705-bd2b-c6af196fa2a5 + MV3.101 Bus 116_1 + + + + + + 1 + bf809f04-113a-dfc4-62b7-8201e792c352 + Cubicle_MV3.101 SGen 49 + + + + + + 1 + ad54010f-c971-67ac-671a-cc3fc42dc837 + MV3.101 Bus 13 + + + + + 1 + b3e84f6c-ba19-7fc5-b93e-179ac89eccd9 + Cubicle_MV3.101 SGen 41 + + + + + + 1 + f60cad91-49d2-906a-dac1-7a174647699e + MV3.101 Bus 72 + + + + + 1 + b934ab91-2be2-e013-403a-b102aa957b79 + MV3.101 Bus 101_2 + + + + + + 1 + d3933ab6-4d6d-79e0-af12-446fb177fe2c + MV3.101 Bus 104 + + + + + 1 + 7da0e516-120a-44dc-3f48-2974e680bc94 + MV3.101 Bus 36 + + + + + 1 + b676d233-c9f6-87c7-276e-29eeb847447e + Cubicle_MV3.101 SGen 27 + + + + + + 2 + 1a0a331e-de2b-80ca-a4d0-39a3db37afe1 + MV3.101 Bus 75_3 + + + + + + 1 + b96511d6-4c37-c979-4689-9818644c25c8 + Cubicle_MV3.101 MV Storage 38 + + + + + + 1 + 819fd909-7d08-d4de-49d3-b6414f5e954c + MV3.101 Bus 56 + + + + + 1 + 610ec2d8-491d-41e4-211e-51b453a7cd8e + MV3.101 Bus 143 + + + + + 1 + b8303b63-853e-3e32-b235-073b1c3f220c + Cubicle_MV3.101 MV Storage 126 + + + + + + 2 + b58c294b-7ee9-caea-afbe-c0883d59a949 + MV3.101 BS busbar1B + + + + + + 1 + 1410eb9c-96e2-6d59-2cbc-046bff836b84 + MV3.101 BS busbar1A + + + + + + 1 + b67bc910-84ec-3d96-7710-79fe651bbd00 + Cubicle_MV3.101 MV Storage 54 + + + + + + 1 + 80b2620b-ec2b-f749-077d-095dd5958749 + MV3.101 Bus 65 + + + + + 2 + 15bda8dc-161e-7035-6795-6d099decc9ba + MV3.101 Bus 114_3 + + + + + + 1 + f2c2876d-0c22-e0c1-cf7d-c3b388fa5138 + MV3.101 Bus 76 + + + + + 1 + 15eebc25-ed84-c7c4-29b4-411187c77516 + Cubicle_MV3.101 SGen 66 + + + + + + 1 + ebc136ee-175d-f7da-9367-a9ab6aba0078 + MV3.101 Bus 44 + + + + + 1 + bec4eeb4-f0b8-254a-a01c-9f683540626b + MV3.101 Bus 128_2 + + + + + + 1 + b154c456-eebb-3110-19b0-ba94e4de1a31 + MV3.101 Bus 129 + + + + + 1 + bf06d848-373e-a20d-9c70-bd0a26f0a3a3 + MV3.101 BS busbar1B(1) + + + + + + 1 + 17ae8b16-c9e6-7a13-5cde-051db43d801c + Cubicle_MV3.101 MV Storage 59 + + + + + + 1 + 2d0ab85a-9378-7f3c-8a6b-7e92458df46e + MV3.101 Bus 47 + + + + + 1 + b8f6cb31-c37e-5eb6-0dfe-8c0543aaac3e + Cubicle_MV3.101 MV Storage 98 + + + + + + 1 + 2234f854-6c74-fb8c-e2ae-0fa3426ed7e5 + MV3.101 Bus 55_2 + + + + + + 1 + 6cfc7636-fcbd-248f-9d5c-ffc83408302d + MV3.101 Bus 106 + + + + + 1 + bb73adcd-693a-708a-a7f4-32313305341a + MV3.101 Bus 132_2 + + + + + + 1 + ca6ea31a-3693-c809-1873-9ed19180bccf + MV3.101 Bus 84 + + + + + 2 + 228fc3c1-f140-da71-bb17-3161c75021ac + MV3.101 Bus 85_1 + + + + + + 1 + be2be0aa-97c5-9cb1-32f0-0d1f12d5568a + Cubicle_MV3.101 MV Storage 65 + + + + + + 1 + dafa5dea-24ab-e4c8-b004-279411642ce3 + MV3.101 Bus 78 + + + + + 1 + c1a4ce37-aba2-d21f-666c-d34716a79b1d + MV3.101 Bus 87_2 + + + + + + 2 + 22ca7319-c12d-34c0-2ca2-64984b407efe + MV3.101 Bus 22_1 + + + + + + 1 + 1db9d96d-e0e5-5b97-19cd-8f88f34de06a + MV3.101 Bus 16 + + + + + 1 + 1f88087e-af63-5f45-4adf-4117809bf9ff + MV3.101 Bus 37_2 + + + + + + 1 + e3f8f5aa-e54c-609b-5943-0c5ccd3d6358 + MV3.101 Bus 49 + + + + + 1 + 0e00ba8e-6863-6d35-b85a-bddfec8270fd + MV3.101 Bus 128 + + + + + 1 + 20e6bb73-af0a-f9ee-f06d-a5489f102c00 + Cubicle_MV3.101 MV Storage 74 + + + + + + 1 + 9bf26516-f1f6-1e93-6e82-5d874e06326c + MV3.101 Bus 20 + + + + + 1 + c0fec04d-bcdf-ce60-6e3a-d0468259ae83 + Cubicle_MV3.101 SGen 93 + + + + + + 1 + 2554e791-56ee-da0b-af16-4a7c6ca93c42 + MV3.101 Bus 86_2 + + + + + + 1 + 8649a8bc-5027-5722-1ae1-a693a924ab8d + MV3.101 Bus 37 + + + + + 2 + 26eb21be-57bc-298d-94aa-1e37506b49ec + HV1 Bus 26_1_HV1 Bus 26 + + + + + + 1 + 50282697-e50e-4c86-af83-cddaa0460e4e + MV3.101 Bus 79 + + + + + 2 + c1cf73cf-9f49-71a7-161e-0aedc96b1e97 + MV3.101 Bus 53_1 + + + + + + 1 + c3ce9e3e-22a7-5615-baed-1191e35b900a + Cubicle_MV3.101 SGen 11 + + + + + + 1 + 7720e010-029a-02d7-af61-945e4ced4924 + MV3.101 Bus 113 + + + + + 1 + ca6e8d22-eb1f-d18c-7ac3-a6b7f6456925 + Cubicle_MV3.101 SGen 1 + + + + + + 1 + 1e7febc6-c5dc-340d-4013-912aa1ce3ae0 + Cubicle_MV3.101 MV Storage 122 + + + + + + 1 + ca87492f-9fad-3760-1157-72a7a9fc2e7b + Cubicle_MV3.101 SGen 87 + + + + + + 1 + 237049c5-ca19-8ffc-10b7-f602b647f4ef + MV3.101 Bus 100_2 + + + + + + 1 + 5f4ddddb-0051-7432-a3db-8fe341a1e6e6 + MV3.101 Bus 73 + + + + + 1 + cc378adf-b258-7512-19ab-27e42df91175 + MV3.101 Bus 36_3 + + + + + + 1 + edaa6cb8-56d9-4787-efad-866e02142798 + MV3.101 Bus 108 + + + + + 1 + 62b75864-9b4b-6112-c19e-1245736199d0 + MV3.101 Bus 67 + + + + + 1 + a8d09bcd-0383-6432-8817-afb00584bf9b + MV3.101 Bus 98 + + + + + 1 + 1fe6840d-18d5-4bbc-71be-b9182fcfdcea + MV3.101 Bus 65_2 + + + + + + 1 + 2087412a-9cdc-23ad-955b-bd32920403bb + Cubicle_MV3.101 SGen 76 + + + + + + 1 + 61125399-5b1f-6a03-048a-e78041e4fa99 + MV3.101 Bus 52 + + + + + 1 + c17afb68-6b90-a0c6-f6af-e1418214c3ee + Cubicle_MV3.101 SGen 57 + + + + + + 1 + 1e973e0c-2411-d22b-23ad-cf1feca2d762 + MV3.101 Bus 98_2 + + + + + + 2 + c132ff92-730b-b9a9-ca79-0636dbc67fb8 + MV3.101 Bus 93_1 + + + + + + 1 + f62a80ee-0aae-d5cb-da77-1449cede565a + MV3.101 Bus 60 + + + + + 2 + c21d6f5d-b3b5-900a-6b33-137f0c336fb8 + MV3.101 Bus 66_1 + + + + + + 1 + e8e56620-9e72-062a-9809-0b93242378fd + MV3.101 Bus 123 + + + + + 1 + ecfa8ebc-b069-a04a-4eb0-a24eff3cf89f + MV3.101 Bus 21 + + + + + 1 + c2eb5912-5a6f-05a1-7558-71ffae95fa54 + MV3.101 Bus 89_2 + + + + + + 1 + c1138890-9de1-13e1-385d-b1520277ee03 + MV3.101 Bus 105 + + + + + 1 + 1f9cbb0e-52ae-a750-1eb3-13082d025ed7 + Cubicle_MV3.101 MV Storage 66 + + + + + + 1 + c40b328b-c7ad-cf3b-2699-a9768882856f + Cubicle_MV3.101 MV Storage 4 + + + + + + 1 + 25570de3-ba35-dd7d-e5d4-6a0f258e559b + MV3.101 Bus 85_2 + + + + + + 1 + dcd2e3ee-6b3a-8509-f1cd-bddb66ac4439 + MV3.101 Bus 64 + + + + + 1 + 39c7675e-107f-d2a1-e7d9-ed3d15822d06 + MV3.101 Bus 111 + + + + + 1 + 25f069c4-055f-6f65-765a-9d7dd8bb358b + Cubicle_MV3.101 MV Storage 69 + + + + + + 1 + e8bd1193-5423-10cc-3ddf-4b93504e697c + MV3.101 Bus 134 + + + + + 1 + 1d993990-255d-cf4b-6621-8f1863cd4c59 + Cubicle_MV3.101 MV Storage 32 + + + + + + 1 + 35e863c2-6291-5063-4af8-9cb83b8b34e7 + MV3.101 Bus 117 + + + + + 1 + c38210ae-9a95-58d2-e250-4d7dd689cc3f + MV3.101 Bus 39_2 + + + + + + 1 + a9cc61ad-183b-2fbc-5471-2c0d345e7c2e + MV3.101 busbar1B + + + + + 1 + 210de821-3e75-d2e9-2385-6f0bda3bacb9 + Cubicle_MV3.101 SGen 70 + + + + + + 1 + cb398ca9-c669-ce08-7c83-f09c07ab2f42 + MV3.101 busbar2B + + + + + 1 + 267d534f-9f9f-c59c-c69f-a41c929351b5 + Cubicle_MV3.101 MV Storage 92 + + + + + + 1 + c13ba9b0-fde3-43a3-369a-782e0851d801 + MV3.101 Bus 113_2 + + + + + + 1 + 2c359592-4150-808d-36e9-9f1b0bcb373f + MV3.101 Bus 18 + + + + + 2 + c69ec5b0-69b5-f118-1bf8-5e6033d9c3b5 + MV3.101 Bus 124_1 + + + + + + 1 + 21aacf95-55af-e87e-094f-56d3f8a4bf78 + MV3.101 busbar2A + + + + + + 1 + 4cc151bc-5630-0733-85b3-6ac73d40bafe + MV3.101 Bus 127 + + + + + 1 + bf905eba-6831-523c-0ecf-0931fadc51ed + Cubicle_MV3.101 MV Storage 11 + + + + + + 1 + 988cddbf-adc0-424c-02d5-72b086946625 + MV3.101 Bus 30 + + + + + 2 + 20b01619-35ac-1bbf-b5c7-912e3af627c7 + MV3.101 Bus 134_1 + + + + + + 1 + 29ced2f2-1714-f49f-1ed3-297ea682d95a + Cubicle_MV3.101 SGen 8 + + + + + + 1 + b2bdffa9-6f21-e19b-0a3d-5103bb240665 + MV3.101 Bus 14 + + + + + 2 + 283dfa94-9aaa-1ef1-007e-f9d5fa368581 + HV1 Bus 26 + + + + + + 1 + 64c7b804-11a0-b517-82b2-4c61edd37b3a + MV3.101 Bus 33 + + + + + 1 + c99295c9-1f88-8576-0398-10b9b592eeac + Cubicle_MV3.101 SGen 81 + + + + + + 1 + 2a62f122-94f6-6cc9-32f0-4c2e5ccd2eed + MV3.101 Bus 64_2 + + + + + + 1 + 19c4bef4-efa9-3875-300c-060518163c81 + MV3.101 Bus 136 + + + + + 1 + ca47c1ec-c2b3-55d3-cf0d-89ac5ff0fd0d + Cubicle_MV3.101 SGen 102 + + + + + + 1 + 2d74a056-0c8b-3ff2-7ae3-22dd2a056ee4 + MV3.101 Bus 134_2 + + + + + + 1 + d42adf23-3bad-9d68-0c53-eb22d9c808e7 + MV3.101 Bus 126 + + + + + 1 + ca62a5be-f2e4-c07c-f9e3-fa86691cd9e5 + Cubicle_MV3.101 MV Storage 3 + + + + + + 1 + 2dbe165a-50a2-05a2-c4ab-a67a8a0de05a + MV3.101 Bus 106_2 + + + + + + 1 + c1b5bd15-d1b1-aa6c-ed24-70ec89381e9c + Cubicle_MV3.101 MV Storage 20 + + + + + + 1 + c558ed04-5f97-c3b4-9863-71114d02c4e8 + MV3.101 Bus 50 + + + + + 1 + 2bd09a90-f0bb-0afa-e324-629c1649766f + MV3.101 Bus 57_2 + + + + + + 1 + 2f2d9b9d-b650-c7c4-3745-22bf7630b942 + Cubicle_MV3.101 MV Storage 112 + + + + + + 1 + cae249ed-46d8-a27e-0303-4f20a2618792 + MV3.101 Bus 80_2 + + + + + + 1 + e5fe6f71-8ee0-8c67-78b9-84cdee636138 + MV3.101 Bus 71 + + + + + 1 + c6c5ae8a-98d3-e69b-1d7d-427a70f994cb + Cubicle_MV3.101 SGen 15 + + + + + + 1 + fa525567-5fd1-99c3-1cbf-af3109df892c + MV3.101 Bus 69 + + + + + 1 + c0bcf9bd-3d6d-bcbe-b316-7339813fd877 + Cubicle_MV3.101 MV Storage 115 + + + + + + 1 + c5634055-2305-cde4-0bfe-2430dbd96855 + Cubicle_MV3.101 MV Storage 62 + + + + + + 1 + 9effa9c0-e398-21bb-d047-ce6805332095 + MV3.101 Bus 131 + + + + + 1 + 2030e960-240d-59fa-13f1-87a86a0c7058 + MV3.101 Bus 74 + + + + + 1 + 2f35f267-c642-42f2-57d6-6bcb6d5d4978 + MV3.101 Bus 73_2 + + + + + + 1 + 80158d5d-fbdb-dadd-26a7-6e055ef120e1 + MV3.101 Bus 118 + + + + + 2 + c7a6fe1f-7fe3-a253-e059-84c5893435ef + MV3.101 Bus 40_1 + + + + + + 1 + a98296d7-c850-d184-2e58-a4f538d85793 + MV3.101 Bus 107 + + + + + 1 + 28e1e605-8f19-3598-5955-524afce12c6b + Cubicle_MV3.101 SGen 44 + + + + + + 1 + 0e1d4efa-7376-0e12-c762-d2555be84ea8 + MV3.101 Bus 116 + + + + + 1 + 2ab39c54-feb5-4820-2a12-b7c4224083b2 + Cubicle_MV3.101 MV Storage 73 + + + + + + 1 + c5b108c0-0f33-b792-1054-a7efdde80be6 + MV3.101 Bus 122_2 + + + + + + 1 + d27ad437-af77-4621-3e64-ae4c1da74a3c + Cubicle_MV3.101 SGen 24 + + + + + + 1 + 30afa392-a2a6-63ef-b556-5de5961fc6b3 + Cubicle_MV3.101 MV Storage 85 + + + + + + 1 + ba40642e-054f-175c-c46b-396ae9012a38 + MV3.101 Bus 96 + + + + + 1 + ce041802-10cc-857e-bffe-c84a218f0a26 + Cubicle_MV3.101 SGen 130 + + + + + + 1 + d1932c69-2db3-cee7-ea26-7999a7f1e37b + MV3.101 Bus 79_2 + + + + + + 1 + c78cfc96-20b9-9283-af5d-3dfd1f61a3f8 + MV3.101 Bus 75 + + + + + 1 + 08b391f0-3a13-d3eb-d457-1e0a4850cbba + MV3.101 Bus 139 + + + + + 1 + 2a551891-f767-69f1-09a2-d504707035c6 + MV3.101 Bus 95_2 + + + + + + 1 + c92c22fa-4260-7f18-d9c4-73c38363bbd9 + MV3.101 Bus 103 + + + + + 1 + adde697f-c1fc-a6fc-6229-3d833c292e85 + MV3.101 Bus 115 + + + + + 2 + 289686ec-da58-4f27-6a79-e8f428856385 + MV3.101 Bus 61_1 + + + + + + 1 + 50ea8607-0875-83b0-f109-eae71324655b + MV3.101 Bus 88 + + + + + 1 + 029aa67f-2527-1c66-719b-2dc175e0cc66 + MV3.101 Bus 109 + + + + + 1 + d3748491-4ec0-af0a-6847-f465b8f4906b + Cubicle_MV3.101 SGen 2 + + + + + + 1 + 30497b95-49c7-df79-1e46-4e92505f81c6 + MV3.101 Bus 121_2 + + + + + + 1 + d3a2f0a7-9261-c238-9f96-312f0fd7d394 + MV3.101 Bus 43_2 + + + + + + 2 + d47faf47-8d1f-ec02-3d48-3c9ec21a70bd + MV3.101 Bus 50_2 + + + + + + 1 + 18453b7a-5895-8993-8911-f302722c3ffc + MV3.101 Bus 17 + + + + + 1 + 2afb1092-3bc1-4c64-b874-c3870c76d38f + HV1 Bus 26_HV1 Bus 26_1 + + + + + + 1 + 25593f17-d2be-60fc-3680-4f93e21c33bf + MV3.101 Bus 28 + + + + + 2 + cd394f80-fca8-3acc-e728-1038c33ee0fe + MV3.101 Bus 77_1 + + + + + + 1 + e10f84fb-7870-4f3c-6d9f-18a4c91a6c44 + MV3.101 Bus 85 + + + + + 1 + d0832a98-a91e-08e4-3fcb-51cc167a1833 + Cubicle_MV3.101 SGen 33 + + + + + + 2 + 3251f8eb-a375-1404-1872-46806e705e6b + MV3.101 Bus 51_1 + + + + + + 1 + 1c68e2b1-b319-8c45-42b0-91e21cc62c76 + MV3.101 Bus 110 + + + + + 2 + d555b26b-1a9b-8068-45b8-db6606015922 + MV3.101 Bus 35_1 + + + + + + 1 + facc8cea-da8a-7fe1-4dae-58fd868f7a8e + MV3.101 Bus 41 + + + + + 1 + cf542360-c5c7-ba4c-1d11-92896c657c37 + Cubicle_MV3.101 SGen 94 + + + + + + 1 + d06c3d53-144c-9846-1a65-aa1135f69e32 + Cubicle_MV3.101 MV Storage 97 + + + + + + 1 + 4fb81c35-89ba-99d3-73dd-3571ffa1c6b1 + MV3.101 Bus 101 + + + + + 1 + 28f77713-0a43-4313-a0e0-b6f9bbb78f33 + Cubicle_MV3.101 MV Storage 132 + + + + + + 1 + d08f48e3-1322-a96f-c0cf-486b5248e41f + Cubicle_MV3.101 SGen 60 + + + + + + 1 + d06d0be5-29d0-06b1-5a9c-c8c435830c90 + Cubicle_MV3.101 MV Storage 40 + + + + + + 2 + cd364419-731d-38b8-5905-20c9f79511c4 + MV3.101 node2_MV3.101 busbar1B + + + + + + 2 + 27fa06f3-79fb-3a68-f4c3-187c6f1bdbba + MV3.101 Bus 69_1 + + + + + + 1 + 9bcd1c43-4890-432b-eef3-ae0afecaa630 + MV3.101 Bus 42 + + + + + 1 + cf52d80b-e2b3-d965-e552-7a0c6cf95a4e + Cubicle_MV3.101 MV Storage 83 + + + + + + 1 + 2d7980ae-9ef1-ac8d-179e-090e7cf43fba + Cubicle_MV3.101 MV Storage 21 + + + + + + 1 + 9fc1c345-f312-79e6-5c12-8d289864d42a + MV3.101 Bus 130 + + + + + 1 + a5e42825-ae34-80e0-9055-46c20a2dbf62 + MV3.101 Bus 119 + + + + + 1 + 2e37a314-3847-34cf-c37b-a108903e62e7 + MV3.101 Bus 68_2 + + + + + + 1 + 438ea5ae-e0c9-81f9-b221-d450353e4c7e + MV3.101 Bus 70 + + + + + 1 + d0cafec8-765f-2beb-7926-76044b91466d + Cubicle_MV3.101 SGen 12 + + + + + + 2 + 281fed85-cbb3-edac-61cf-f6e26f23cb82 + MV3.101 Bus 60_1 + + + + + + 1 + 7c339274-48f4-610e-854d-113b70719246 + MV3.101 Bus 81 + + + + + 1 + e9dd3f8c-c947-22cf-8a48-5249f7b6f928 + MV3.101 Bus 53 + + + + + 1 + e6a2bb3f-90d3-f097-608d-2ed33ead4ee6 + MV3.101 Bus 137 + + + + + 1 + 8fe53187-71c9-e212-9c8b-0d2d2b39718d + MV3.101 Bus 54 + + + + + 1 + 0f0c23ce-5bb7-158a-82e9-e99d13035727 + MV3.101 Bus 46 + + + + + 2 + 298f4692-7d47-57b8-8f5e-57c910633621 + MV3.101 Bus 44_1 + + + + + + 1 + 1d971927-703d-bd8d-d8c2-12bd716a2848 + MV3.101 Bus 61 + + + + + 1 + 2c2d818b-e214-d9dd-c1d0-8467c383825e + Cubicle_MV3.101 SGen 43 + + + + + + 1 + 2749092d-d2f2-866e-0428-f068696f3d9e + MV3.101 Bus 126_2 + + + + + + 1 + 797d147c-cf32-3a96-78e4-bb74601e8c00 + MV3.101 Bus 89 + + + + + 1 + 2a87e787-2be6-3cad-01b7-27f0d4689952 + Cubicle_MV3.101 SGen 101 + + + + + + 1 + d5d14602-a1dd-c614-cf8f-d96703513618 + MV3.101 Bus 61_2 + + + + + + 2 + 29a2dd0f-f591-ca08-961d-2e096fb0a1f1 + MV3.101 node1_MV3.101 busbar2A + + + + + + 1 + fda9cd97-be02-a3e7-184e-0ab797d9766c + MV3.101 Bus 38 + + + + + 1 + d3eeae39-bf9d-c0ea-dd45-2bdd5e8aa356 + MV3.101 Bus 75_2 + + + + + + 1 + 27875b17-4c58-b63d-cb40-710deb947c15 + Cubicle_MV3.101 MV Storage 106 + + + + + + 1 + cd8f3842-6b74-3d92-ee6e-1ba7484feeac + Cubicle_MV3.101 SGen 88 + + + + + + 1 + 161ed45c-957f-5b48-c793-d067d493d9ee + MV3.101 Bus 19 + + + + + 1 + cd61baac-dd69-d8cf-78fb-545b22012430 + MV3.101 Bus 29 + + + + + 1 + d58d96ae-cd2f-4dc4-c546-bf8ee44564b5 + MV3.101 Bus 93_2 + + + + + + 1 + 2776127b-a2bd-8eed-ca73-f213b8fb6495 + Cubicle_MV3.101 MV Storage 114 + + + + + + 1 + 0d1f6ca3-b0fd-2174-032b-c3da93e40afd + MV3.101 Bus 77 + + + + + 2 + 33ac2b71-8962-fd54-28f8-3da7680ac71f + MV3.101 Bus 143_2 + + + + + + 1 + ee5b4e4a-d34e-2a08-f8f4-61a1e1efd939 + MV3.101 Bus 62 + + + + + 1 + d492da0a-a35e-f265-ae9c-af33cd0a917d + Cubicle_MV3.101 MV Storage 78 + + + + + + 1 + e1aeee38-162a-e89e-72e3-d6150c0e31b5 + MV3.101 Bus 93 + + + + + 1 + 36508147-9404-4e27-495c-6907329e78e8 + MV3.101 Bus 58_2 + + + + + + 1 + d6596382-39e4-cb39-dd80-ad9f3f1de18c + Cubicle_MV3.101 MV Storage 108 + + + + + + 1 + 19bf2623-3362-a92c-2812-caf1c8123285 + MV3.101 Bus 63 + + + + + 1 + 39c886c3-329a-9572-b28d-9f80a9382e35 + Cubicle_MV3.101 SGen 63 + + + + + + 1 + 4e929881-4893-9f7e-1c38-5a59bbba6eda + MV3.101 Bus 55 + + + + + 1 + 3c179143-d5ee-26d3-5416-b8dbf7c0d1cf + Cubicle_MV3.101 SGen 9 + + + + + + 1 + d6dff019-93d6-11b6-1f62-bdfb54cb8b19 + MV3.101 Bus 23_2 + + + + + + 1 + 2ce74ee9-2cf4-d9f2-e6f8-398e03a13e2a + MV3.101 Bus 94 + + + + + 2 + 3ad3b5f4-835c-c156-7a72-c0c485eac57a + MV3.101 Bus 55_1 + + + + + + 1 + d00410aa-65f2-7305-8be8-fb28fa416125 + Cubicle_MV3.101 MV Storage 129 + + + + + + 2 + 34192bfa-ab37-2156-9705-1ffcc837a1d3 + MV3.101 Bus 88_1 + + + + + + 1 + d9acc72f-2ddc-be4f-8cac-80e2692f6da7 + Cubicle_MV3.101 MV Storage 48 + + + + + + 1 + c80ce1c9-09ab-2311-3954-a0dd7d8d9dea + MV3.101 Bus 15 + + + + + 1 + 36342de4-c9cb-320b-8767-4f5f92e86499 + Cubicle_MV3.101 SGen 97 + + + + + + 1 + d8823c65-491d-803e-c026-c0f1dac4ccee + Cubicle_MV3.101 MV Storage 80 + + + + + + 2 + 39208d16-c902-c75a-ca0c-c7a240365bc7 + MV3.101 Bus 16_1 + + + + + + 1 + dbdeb82d-4104-0634-cf75-1958847b6113 + Cubicle_MV3.101 SGen 112 + + + + + + 1 + dc7ff8a2-f147-8ef1-3da7-752f522f81a6 + MV3.101 Bus 49_2 + + + + + + 1 + 3c51700a-35d8-2c84-7505-b661fae68ccc + Cubicle_MV3.101 SGen 123 + + + + + + 2 + db0f47c7-3488-8e4c-ca66-acb541181faa + MV3.101 Bus 129_1 + + + + + + 1 + 2c08b81a-9188-ce5f-acf6-30c82281051f + MV3.101 Bus 142 + + + + + 1 + 3ad01e74-e616-31e4-3649-9cf7ba331d64 + Cubicle_MV3.101 SGen 56 + + + + + + 1 + db649623-02ab-1fcc-f8f1-5024980762ec + Cubicle_MV3.101 MV SGen 1 + + + + + + 1 + 70640f50-73dc-ed53-1683-40399de170f8 + MV3.101 Bus 22 + + + + + 1 + 606777b8-9bd8-2e12-b65c-cb7b5c59a40a + MV3.101 Bus 87 + + + + + 1 + 9ca21680-9cd0-7920-eeda-93acf03391c1 + MV3.101 Bus 102 + + + + + 1 + 3cf82f87-69a3-c0d6-a737-81ebae6b4582 + Cubicle_MV3.101 MV Storage 45 + + + + + + 1 + 8740357d-eb7e-1be5-dbd0-59bc675f4396 + MV3.101 Bus 48 + + + + + 2 + 3d3b7dab-3fac-c6d5-660f-fe23e1ecedd0 + MV3.101 Bus 120_1 + + + + + + 2 + de1aadc8-0136-ddbd-cae7-7c26f617de26 + MV3.101 Bus 31_1 + + + + + + 2 + 33e0ceca-c1b6-7a63-fc49-53ccb3171b62 + MV3.101 Bus 49_1 + + + + + + 1 + d833746c-1e93-db44-2094-e92e3fa90b26 + Cubicle_MV3.101 SGen 28 + + + + + + 1 + 350f447a-20c3-c013-d65b-09316163b8f3 + Cubicle_MV3.101 MV Storage 49 + + + + + + 2 + dc8298e7-63d9-1135-83ea-3342b27b87d6 + MV3.101 Bus 76_1 + + + + + + 1 + 3c1b5201-36dc-080b-0c1e-1902d99aae44 + Cubicle_MV3.101 SGen 117 + + + + + + 1 + d8614517-68f6-f4f2-ad9a-13076c3c7738 + Cubicle_MV3.101 SGen 118 + + + + + + 1 + 3dafbbca-ef93-2f28-565b-d29e06e24565 + Cubicle_MV3.101 MV Storage 133 + + + + + + 1 + d8780ed5-02d3-76dc-d4b8-46263cc71b79 + Cubicle_MV3.101 MV Storage 101 + + + + + + 2 + 3e58e523-683b-7749-7285-fadda3bb3565 + MV3.101 Bus 121_1 + + + + + + 1 + 3e7435b9-cd8d-b915-65af-e88ec3ca7d8b + MV3.101 Bus 44_2 + + + + + + 1 + ddd602d4-3759-453e-8dba-54c84baa627e + Cubicle_MV3.101 SGen 64 + + + + + + 2 + 3e7a486f-1912-7439-e843-bf4e8c19d581 + MV3.101 node2_MV3.101 busbar2B + + + + + + 1 + dae0813f-43b5-5201-bd76-4519d7d20314 + Cubicle_MV3.101 SGen 83 + + + + + + 1 + 395921fd-b78e-a1a2-b07f-4a8a7e06e2b3 + HV1 Bus 25 + + + + + + 1 + dacccbdf-ddf0-9642-3777-81c12941dc37 + Cubicle_MV3.101 SGen 4 + + + + + + 1 + 339f4cdb-2610-50a0-860c-6dfc8becf4ad + Cubicle_MV3.101 MV Storage 1 + + + + + + 1 + 3d700036-22d9-6ad8-6d89-6d8f1a762c63 + MV3.101 Bus 29_2 + + + + + + 2 + 3541f01e-347c-6577-c888-af353a06ab44 + MV3.101 Bus 113_1 + + + + + + 1 + defcde90-3da8-3e54-ce5a-a0a641661a81 + MV3.101 busbar1B_3 + + + + + + 1 + 37ed3433-29c9-c6ae-fa9f-a2e0f9cd88b4 + Cubicle_MV3.101 MV Storage 33 + + + + + + 1 + 3a836b65-eee1-976c-bcae-cf9ca0c0e40c + Cubicle_MV3.101 SGen 55 + + + + + + 2 + 33ec5672-4727-af7b-4bd0-5a1db319b4b7 + MV3.101 Bus 18_2 + + + + + + 2 + da6fe4d6-b2da-67e9-c556-3105f429eb40 + MV3.101 Bus 18_1 + + + + + + 1 + dc4c7f79-851b-77a0-129e-810d8f86835c + Cubicle_MV3.101 MV Storage 94 + + + + + + 1 + 36109f7c-12e5-dcad-1ce7-bc5403b2016d + Cubicle_MV3.101 SGen 29 + + + + + + 2 + dc797da0-9553-8e59-f989-068bd31d4d0f + MV3.101 Bus 43_1 + + + + + + 2 + dd5244b8-0787-4a3f-343a-90319065b3dc + MV3.101 Bus 73_1 + + + + + + 1 + db01a6bc-3ed5-f993-2ccc-fed66df8cd91 + Cubicle_MV3.101 MV Storage 131 + + + + + + 2 + ddda976e-d5c8-3d6b-b26a-de6e699615e0 + MV3.101 Bus 117_1 + + + + + + 1 + d8a1267b-6bb6-88a1-12a4-177ab3971736 + Cubicle_MV3.101 MV Storage 109 + + + + + + 1 + d948fb37-fae0-d98e-6c09-338a92256a48 + Cubicle_MV3.101 SGen 98 + + + + + + 1 + 458454b1-c554-03dd-b67c-6b09d6d62868 + Cubicle_MV3.101 SGen 30 + + + + + + 1 + 460663d2-79f5-4ba4-aa8a-f7a2d79b3cb2 + Cubicle_MV3.101 SGen 5 + + + + + + 2 + 4244e9de-295d-7198-bebc-85432b8b261c + MV3.101 Bus 27_1 + + + + + + 1 + d7caae19-aa31-6c48-f586-546fe3b3ebc5 + MV3.101 Bus 139_2 + + + + + + 1 + 46466fc8-7395-6c35-8072-e823a8eac7cc + Cubicle_MV3.101 SGen 85 + + + + + + 1 + ddfbc53e-7dfa-4b7d-e500-b0554a8298b5 + HV1 Bus 25_HV1 Bus 25_1 + + + + + + 1 + de0a515c-3324-2584-8b81-9ceb36063599 + MV3.101 Bus 15_2 + + + + + + 1 + 46df6cc7-811f-fd88-edc1-18bf0c96ece4 + MV3.101 BS busbar1A_2 + + + + + + 1 + 47141f82-1577-9e7a-f5a0-446dc0246e6c + MV3.101 Bus 56_2 + + + + + + 1 + d98b3a20-570c-143b-0d73-b2ab498adf5c + Cubicle_MV3.101 MV Storage 96 + + + + + + 1 + 41b49ad4-fcdb-9bdf-42c8-bbd57e9d277b + Cubicle_MV3.101 MV Storage 103 + + + + + + 2 + e432fae8-8a01-52b9-63a1-14dfcf08abac + MV3.101 Bus 133_1 + + + + + + 2 + 438fc965-0fca-e8f7-c264-cef633fadbc4 + MV3.101 Bus 106_1 + + + + + + 1 + e2dbdb9c-b48f-242c-c55a-d38bd2d5bba6 + Cubicle_MV3.101 SGen 6 + + + + + + 1 + e1cfe29b-6024-f2c0-d8ed-c6b23c5bcfe8 + Cubicle_MV3.101 MV Storage 89 + + + + + + 2 + 43a85767-744c-86a4-e94c-a1cd90ff68b3 + MV3.101 Bus 65_1 + + + + + + 1 + 460470ba-9946-d3b9-a52e-d5404188ecf2 + Cubicle_MV3.101 MV Storage 15 + + + + + + 2 + 47aae71c-3507-4543-9450-c336dcf0d50b + MV3.101 Bus 11_1 + + + + + + 1 + e41f2e0d-3a8f-1aa2-f29d-085a1d89eb89 + Cubicle_MV3.101 SGen 22 + + + + + + 2 + 4198c9dc-0bc1-c398-e8e9-3180d49c3fe3 + MV3.101 Bus 40_2 + + + + + + 1 + 41b7a038-4169-db67-cc75-7c06343df655 + Cubicle_MV3.101 MV Storage 130 + + + + + + 1 + e8e04abf-5d4d-4346-54aa-a1c6977e8ca7 + Cubicle_MV3.101 MV Storage 68 + + + + + + 2 + e263722d-6d34-c35c-84e1-e5f46071475a + HV1 Bus 25_1_HV1 Bus 25 + + + + + + 1 + e7806651-14fb-8c26-712e-e302e9a0d1fb + MV3.101 Bus 131_2 + + + + + + 1 + e2972b74-9939-a016-1044-724b138782f7 + Cubicle_MV3.101 MV Storage 44 + + + + + + 1 + 3f6f2be5-0960-3df4-31a9-ea60ea9b5a44 + Cubicle_MV3.101 SGen 58 + + + + + + 1 + e4e680f2-475b-4c37-36be-e84d298457a4 + Cubicle_MV3.101 SGen 59 + + + + + + 1 + 45a265e3-4c01-24bf-7777-88806cc6c36f + Cubicle_MV3.101 SGen 107 + + + + + + 1 + e5568350-8764-aa43-e3f7-6b728a19e552 + MV3.101 Bus 54_2 + + + + + + 1 + 3f037cee-2a90-b293-d5ce-65ea666566cc + Cubicle_MV3.101 SGen 99 + + + + + + 1 + 42021e28-1126-35c2-96d3-d98ba156e76d + Cubicle_MV3.101 MV Storage 113 + + + + + + 1 + e8f71633-ba16-e09a-7096-b343af738fe7 + MV3.101 Bus 17_2 + + + + + + 2 + e9370aeb-c944-d85f-1610-784ea8a9081c + MV3.101 Bus 26_1 + + + + + + 1 + e4736606-14e7-e05e-d048-4f31394ac247 + Cubicle_MV3.101 SGen 42 + + + + + + 1 + 40e2e60a-77b1-a8be-af31-58d00af64a5f + Cubicle_MV3.101 MV Storage 125 + + + + + + 1 + e9322be5-78c9-4b93-f24c-1335e0f9c482 + Cubicle_MV3.101 MV Storage 41 + + + + + + 1 + e9af8037-a11e-afbd-9fdd-36d0b9dedbab + Cubicle_MV3.101 SGen 114 + + + + + + 1 + 4296a1da-05a0-a52b-9c10-3d22f9d0c964 + Cubicle_MV3.101 SGen 45 + + + + + + 2 + 445bfea2-3e03-afb7-09de-83b94bbc3454 + MV3.101 Bus 42_1 + + + + + + 2 + 41925e5c-38f2-fdb4-3e81-4637a03f23db + MV3.101 Bus 82_1 + + + + + + 2 + ea1766d3-802b-bd12-6b19-6bacde5f4dc0 + MV3.101 Bus 30_1 + + + + + + 1 + 4e7cb5ad-99a0-74fd-c7c0-9fdb61a52b3f + MV3.101 Bus 92_2 + + + + + + 1 + e8086e53-d780-4329-cf0b-25d7107ea101 + Cubicle_MV3.101 SGen 75 + + + + + + 2 + 53506186-0aef-e22b-dd61-9261dd693b36 + MV3.101 Bus 15_1 + + + + + + 1 + e926ccb9-db42-4369-8c84-e8f367f1bb5c + Cubicle_MV3.101 MV Storage 76 + + + + + + 2 + 51a36fd5-738c-8b00-1e3f-714d1d231091 + MV3.101 Bus 38_1 + + + + + + 1 + ea19ea16-6357-ae18-3cba-544ceb87d543 + MV3.101 Bus 27_2 + + + + + + 1 + 523e0713-bdd9-2f80-8ea5-9eb0d6e7509d + Cubicle_MV3.101 SGen 132 + + + + + + 2 + e39a8c43-2a91-4085-810a-37483a374410 + MV3.101 BS busbar1A_3 + + + + + + 1 + 4adde88c-8a27-3a93-f4cc-e6c7a9803264 + Cubicle_MV3.101 MV Storage 87 + + + + + + 1 + e3b0c5e9-32b4-9089-f7b4-957d8108fd5c + MV3.101 Bus 36_2 + + + + + + 1 + 5379ac02-fa9a-caa9-37b2-6f86a0fe6ec4 + Cubicle_MV3.101 SGen 119 + + + + + + 1 + 4b5aa8a8-b41a-74fb-c680-ee34e0125431 + Cubicle_MV3.101 MV Storage 52 + + + + + + 2 + e7023644-7a2b-7f27-7ecc-3ca66aba14e6 + MV3.101 Bus 91_1 + + + + + + 1 + 50d674ce-b7dd-049a-0529-7823ba5e9cc5 + Cubicle_MV3.101 SGen 21 + + + + + + 2 + e186a641-48ce-8461-bc0d-25bbb17329d6 + MV3.101 BS busbar1C_3 + + + + + + 1 + 50c135cb-06f2-af5f-beb1-ee44f82a1565 + Cubicle_MV3.101 SGen 105 + + + + + + 1 + e36ae6ea-8b95-d2f6-2ba3-29c1cf3c7d55 + Cubicle_MV3.101 SGen 61 + + + + + + 1 + 51267b66-f7ba-31ab-a299-58154d715504 + Cubicle_MV3.101 SGen 111 + + + + + + 1 + 558551f1-138c-f9c5-a3b5-81e06621a030 + MV3.101 Bus 97_2 + + + + + + 1 + 5086012f-7a73-da3b-0c13-269d33af91bf + Cubicle_MV3.101 SGen 3 + + + + + + 1 + e66123c8-fae6-0621-fb70-0e7c9e0fc835 + Cubicle_MV3.101 MV Storage 7 + + + + + + 2 + 5612e3f9-ebf8-8a8c-69ac-68348191bf5e + MV3.101 Bus 28_1 + + + + + + 1 + e17bd05d-fc36-9706-d176-33644c9a83fb + MV3.101 Bus 66_2 + + + + + + 1 + 56630f49-6666-94a5-7a3c-e6ad90394261 + Cubicle_MV3.101 MV Storage 90 + + + + + + 1 + 5671ab5e-c40c-92ec-969e-46f564a7da91 + MV3.101 Bus 114_2 + + + + + + 1 + e8d5abbf-04e2-c9a1-8d4b-a9e0d9b810ad + Cubicle_MV3.101 SGen 13 + + + + + + 2 + 4d09cb1a-a571-e0fa-fbf1-2be6afd4c0fd + MV3.101 Bus 87_1 + + + + + + 2 + 4d2530ae-9141-258f-8333-3968a892add4 + MV3.101 Bus 24_1 + + + + + + 1 + e2c8bd5f-1292-18c8-4afa-6c3dcd9fa205 + MV3.101 Bus 31_2 + + + + + + 1 + f033757d-5443-808f-ec99-df930cd53c02 + MV3.101 Bus 38_2 + + + + + + 1 + ee13e771-f413-39a4-0cae-f26c3dc991ea + Cubicle_MV3.101 SGen 47 + + + + + + 1 + 53f8230c-d6e8-81d5-bbcb-44cec6830092 + Cubicle_MV3.101 SGen 62 + + + + + + 1 + edad674c-222c-51c1-2368-86ad82017cc9 + HV1 Bus 26_1 + + + + + + 1 + f02aa75a-2f65-9a12-ce4d-96d7cb3a6a37 + MV3.101 Bus 107_2 + + + + + + 1 + effac11e-7daa-d5f4-00d1-2b303b7263cd + Cubicle_MV3.101 MV Storage 86 + + + + + + 1 + eb9e60d4-793a-63c1-bdb8-e6930306c2aa + MV3.101 Bus 115_2 + + + + + + 1 + 4f0fd920-bc17-d741-cdc2-dc848fa08805 + Cubicle_MV3.101 MV Storage 50 + + + + + + 1 + f351d380-adba-f37c-6c87-1dac92ee7640 + Cubicle_MV3.101 SGen 96 + + + + + + 1 + ec278fd1-f75d-436a-7ffc-88b5187f9374 + Cubicle_MV3.101 SGen 25 + + + + + + 2 + 4d0cb209-22ed-a098-6de1-de0dbe6220e2 + MV3.101 Bus 59_1 + + + + + + 1 + ead0c11d-041a-e0e4-36e2-086896e6dbcc + MV3.101 busbar1A_2 + + + + + + 1 + 552a20d9-5f29-8a61-114c-218dbd3411af + Cubicle_MV3.101 MV Storage 28 + + + + + + 1 + ec11da23-a919-304a-685b-5186c5ac6d6a + Cubicle_MV3.101 MV Storage 34 + + + + + + 1 + 5177ffa7-f78d-57c6-bf33-814e83a0aebb + Cubicle_MV3.101 SGen 7 + + + + + + 1 + f3a192a2-e537-e212-d07f-257a485c79b9 + MV3.101 Bus 21_2 + + + + + + 1 + 4c32dc06-26fc-cdcf-28ac-ddf2edd810a3 + Cubicle_MV3.101 MV Storage 47 + + + + + + 1 + eb7ec44a-04ca-fd5a-c660-65be488df4ca + MV3.101 Bus 83_2 + + + + + + 1 + 5077b926-58b2-8b71-e0c5-9fce7df50664 + Cubicle_MV3.101 SGen 65 + + + + + + 2 + f0be6870-9c28-5746-f796-aec663759e63 + MV3.101 Bus 58_1 + + + + + + 1 + 4dce3fcb-e1a2-197e-6fa9-d8d451c7a817 + Cubicle_MV3.101 MV Storage 24 + + + + + + 2 + eb3d13c1-2d7e-b826-10fc-8d024cc99f93 + MV3.101 Bus 96_1 + + + + + + 1 + 4f14fd02-9716-e8d0-4dc7-c74255de0f3b + MV3.101 Bus 85_3 + + + + + + 1 + f0b185be-ba1f-98c9-7d2c-7b428fc7cef2 + Cubicle_MV3.101 MV Storage 120 + + + + + + 1 + 4abc4189-b38b-a529-683c-e4e79c403865 + MV3.101 Bus 26_2 + + + + + + 1 + eafa99af-6107-c071-3b10-45679aef4aff + Cubicle_MV3.101 MV Storage 128 + + + + + + 1 + 4c46194e-530c-3e07-9e85-0977417c8149 + Cubicle_MV3.101 SGen 92 + + + + + + 2 + 4f9c0aa8-8c16-248f-6468-7e212566a75b + MV3.101 Bus 92_1 + + + + + + 1 + f407b46b-8b76-fe81-3737-4fdc1b867c1b + Cubicle_MV3.101 SGen 77 + + + + + + 1 + eabec60d-606d-979c-335a-4d0b7a64b1db + Cubicle_MV3.101 SGen 20 + + + + + + 1 + 52198e84-cc3d-3507-a09b-b3f3eede126a + Cubicle_MV3.101 MV Storage 5 + + + + + + 2 + ecdc5aa9-5e2b-7df8-4201-219e1c69005e + MV3.101 Bus 81_1 + + + + + + 2 + 50a20b18-8aa8-94d1-51a5-0ed5dfba02a5 + MV3.101 Bus 89_1 + + + + + + 1 + 4e26d90a-e1f8-f0f2-e2ac-18e68110ed67 + MV3.101 Bus 48_2 + + + + + + 1 + efeed631-f4ee-6345-badc-dc842de9b51a + Cubicle_MV3.101 MV Storage 104 + + + + + + 1 + ebc0faf7-fc01-71a2-e88b-1eea06fb2c76 + Cubicle_MV3.101 MV Storage 6 + + + + + + 2 + ef6123cb-1c2b-734b-abe0-c0076dfa43a9 + MV3.101 Bus 14_1 + + + + + + 1 + 521b7282-05ec-2465-ada1-f519e187b460 + MV3.101 Bus 74_2 + + + + + + 1 + 5c75408c-79b8-0d04-4ef4-5db88e68b5ff + Cubicle_MV3.101 SGen 128 + + + + + + 1 + efd2e61d-14ed-0a40-5302-bfcef9395fed + MV3.101 Bus 123_2 + + + + + + 1 + 5cfc6a0b-b774-6037-e64c-9f553c3e78ac + Cubicle_MV3.101 MV Storage 31 + + + + + + 1 + 625596bf-26e8-d577-92b0-6b14ecdb2d51 + Cubicle_MV3.101 SGen 121 + + + + + + 1 + 5d27f329-5b02-c853-6b56-79bba11182c5 + Cubicle_MV3.101 SGen 90 + + + + + + 1 + ec034c8f-80b8-7b15-fba4-0384070851de + MV3.101 Bus 130_2 + + + + + + 1 + 56c46b9a-35cb-1042-9467-c352621ebf06 + MV3.101 Bus 108_2 + + + + + + 1 + 59ddc28d-1040-0dbc-70f1-2fe7cb7e1244 + Cubicle_MV3.101 SGen 51 + + + + + + 1 + 5e252f4c-4be9-7eb1-195b-901c3ac8b4a5 + Cubicle_MV3.101 SGen 26 + + + + + + 1 + ee3755d1-65d6-7927-eb97-82230d9cb39e + MV3.101 Bus 117_2 + + + + + + 1 + 5929303b-9988-31c6-8b5c-270cfe0fd064 + MV3.101 Bus 90_2 + + + + + + 2 + eae8bf41-ae54-7be1-6f9b-6e7127b98cff + MV3.101 Bus 99_1 + + + + + + 1 + ec71893a-1894-0b24-cd4b-3c7ef30b85a2 + MV3.101 busbar2B_1 + + + + + + 1 + 5a4dcab9-ca92-4285-7b7a-321996526b8e + Cubicle_MV3.101 MV Storage 91 + + + + + + 1 + 5b423404-d35b-02b1-6e03-8bd8ecfb9be5 + MV3.101 Bus 129_2 + + + + + + 2 + f6be7cea-e825-5794-fbdb-52ee3d8e4ff2 + MV3.101 Bus 79_1 + + + + + + 1 + fa34cb7f-e229-075a-cd96-8a6006cedfb6 + MV3.101 Bus 84_2 + + + + + + 1 + fb7ab1b9-2328-5d33-c61d-ce3431b812e2 + Cubicle_MV3.101 MV Storage 2 + + + + + + 1 + 5ce1d5c5-a335-a1f1-d8a8-a8bc7b3ad76d + Cubicle_MV3.101 MV Storage 82 + + + + + + 1 + 5d3649f8-338d-d563-ad8e-5bf4a82f5eef + MV3.101 busbar2A_MV3.101 node1 + + + + + + 2 + faf4fb9c-4dbe-0356-3335-8e66e300fc83 + MV3.101 Bus 54_1 + + + + + + 2 + 5796f54f-1622-3540-9f11-c60b04b8183f + MV3.101 Bus 101_1 + + + + + + 1 + 57f26f6b-f93a-4a6e-24ef-3e194a4f7bfd + Cubicle_MV3.101 MV Storage 39 + + + + + + 1 + 5dc4216f-29fa-b442-86bf-4d9cac41a527 + MV3.101 Bus 88_2 + + + + + + 1 + 5ff5c6df-4769-e09d-c545-b63be0412ba5 + Cubicle_MV3.101 MV Storage 93 + + + + + + 1 + fddfed37-c910-a7dd-4d2a-6bdfd231665d + MV3.101 Bus 127_2 + + + + + + 2 + fe377b24-18b0-5988-f91c-6730861b65fa + MV3.101 Bus 23_1 + + + + + + 2 + 5e75803e-d898-c17c-9d04-3c39a76eb877 + MV3.101 Bus 70_1 + + + + + + 2 + f62f7367-5e46-1709-6462-63a5d9df8b6d + MV3.101 Bus 83_1 + + + + + + 2 + 6006a2fd-ff7a-8385-d2b0-72463e08e880 + MV3.101 Bus 138_1 + + + + + + 1 + feca40e7-16e8-1edc-8143-3579218da502 + Cubicle_MV3.101 MV Storage 26 + + + + + + 2 + 60c3060a-f75f-c2ba-bb95-83f0fa4658ac + MV3.101 Bus 72_1 + + + + + + 2 + f8c6a4ae-208f-9a9f-5746-357f24da9ee4 + MV3.101 Bus 141_1 + + + + + + 1 + f9fcebca-6781-2671-4321-df570db95e62 + Cubicle_MV3.101 SGen 89 + + + + + + 2 + 60022443-7906-ea5d-823a-848184ab1c2d + MV3.101 Bus 123_1 + + + + + + 1 + f52dadf3-53b3-f635-eb91-4fb51a693654 + Cubicle_MV3.101 SGen 129 + + + + + + 2 + 5ebf562c-c528-61f5-3f75-8933e1643cdd + MV3.101 Bus 115_1 + + + + + + 1 + fa5957cd-5c42-5fd5-78da-447a4848709d + Cubicle_MV3.101 SGen 125 + + + + + + 1 + 572ede0e-22e2-0ccf-7788-5fa6a71c7510 + MV3.101 Bus 16_2 + + + + + + 1 + f514ae87-6a05-7d9b-16f6-b986610692b0 + Cubicle_MV3.101 MV Storage 111 + + + + + + 1 + fb294655-07c9-a829-e871-0411fcbcb4d8 + Cubicle_MV3.101 MV Storage 42 + + + + + + 1 + fbc1a15e-3adb-cfec-e11a-2aa3e1f67b54 + Cubicle_MV3.101 MV Storage 72 + + + + + + 1 + 58345b40-ff3d-a96f-5f5d-0542691382e7 + Cubicle_MV3.101 MV Storage 81 + + + + + + 1 + 6124ae12-71f5-8666-dce2-f48b3fa31db6 + Cubicle_MV3.101 MV Storage 16 + + + + + + 1 + f94d5312-2b2f-4aba-717d-6b4a8e1013b3 + Cubicle_MV3.101 SGen 74 + + + + + + 1 + 589bf9e9-f356-dd35-b293-1381354e8ad4 + Cubicle_MV3.101 MV Storage 63 + + + + + + 1 + 5d049c7c-c967-3aa4-f86b-5af77fb6b14a + MV3.101 Bus 109_2 + + + + + + 2 + 619fe5d1-dff6-c2d1-1048-65cb6f70af85 + MV3.101 Bus 37_1 + + + + + + 2 + 5a51f296-8d87-2217-9521-70a5896aedb3 + MV3.101 Bus 142_1 + + + + + + 1 + 62113284-a3bd-1eee-ad24-aeaf4e8a71cf + MV3.101 Bus 103_2 + + + + + + 1 + 5bb22438-ed7b-07f1-e6b4-513f590e7713 + MV3.101 Bus 81_2 + + + + + + 1 + 6abc5275-4eca-d998-7044-2cdd3a90c2c1 + Cubicle_MV3.101 MV Storage 107 + + + + + + 1 + 696da7b5-ca29-6467-d398-0ddc7c143459 + Cubicle_MV3.101 SGen 106 + + + + + + 1 + 6ae12780-467b-0ed4-b236-ba9553918f4d + MV3.101 Bus 125_2 + + + + + + 1 + 661a5ae9-9fb6-a305-ed90-ca3cb78eb17c + MV3.101 Bus 112_2 + + + + + + 2 + 6e16a0da-00e3-0511-743b-34e2efa5d610 + MV3.101 Bus 19_1 + + + + + + 2 + 6e98590b-2586-c0d5-fae8-0d80486f45db + MV3.101 Bus 135_2 + + + + + + 2 + 6774f972-6045-8a2b-ecc7-2ae7d12d107b + MV3.101 Bus 32_1 + + + + + + 2 + 67b59be0-1831-b720-9279-39acea193f94 + MV3.101 Bus 45_1 + + + + + + 2 + 62e534b9-d9bb-a25e-1838-7c819b6f14f9 + MV3.101 Bus 50_1 + + + + + + 2 + 631262ca-49bf-6f37-a7fd-af13a408732a + MV3.101 Bus 78_1 + + + + + + 1 + 6e1b6a10-a29e-e73e-732f-e26423e4eed7 + Cubicle_MV3.101 SGen 127 + + + + + + 1 + 6f2127d9-2e12-7a6f-0259-6694fe792550 + MV3.101 BS busbar1C_2 + + + + + + 2 + 6294a60e-ff31-25ab-9015-5a33ebd795c5 + MV3.101 Bus 68_1 + + + + + + 1 + 66284338-8e75-5139-b390-2c1cf896d3a9 + Cubicle_MV3.101 MV Storage 100 + + + + + + 2 + 6bda133e-6ace-df6b-2be3-a6cacb462cbf + MV3.101 Bus 127_1 + + + + + + 1 + 6f760755-28d3-2f21-fe2a-42c557cf2122 + Cubicle_MV3.101 SGen 79 + + + + + + 1 + 6d40eeee-7c12-aaf8-c664-c6960c09022f + Cubicle_MV3.101 SGen 19 + + + + + + 1 + 6be4a7cd-c583-d004-f46b-2ffc59b419e0 + Cubicle_MV3.101 SGen 18 + + + + + + 1 + 78fcbc1c-cad3-92ff-f0c4-d8c7ec60c7f6 + MV3.101 busbar1B_MV3.101 node2 + + + + + + 1 + 7a6872c5-f4f5-65b8-e437-5457bd3b7881 + Cubicle_MV3.101 SGen 48 + + + + + + 2 + 7a85f179-806a-2908-1860-e450dee1edfa + MV3.101 Bus 21_1 + + + + + + 1 + 709ae4ba-d916-e93d-407a-6b0c6c191227 + MV3.101 Bus 24_2 + + + + + + 1 + 7a8f1ed3-4d2c-b966-7d47-3cbd6f9b192a + Cubicle_MV3.101 MV Storage 127 + + + + + + 2 + 7009e443-496d-e780-eaab-eee30daa5c02 + MV3.101 Bus 29_1 + + + + + + 1 + 7afa1273-5023-4175-4a75-eb250327243e + MV3.101 Bus 67_3 + + + + + + 1 + 7b441529-d7a2-bc2a-f047-d670172e9905 + Cubicle_MV3.101 SGen 36 + + + + + + 2 + 758f1c57-ab13-972a-3cc4-5d0d071f2224 + MV3.101 node1_MV3.101 busbar1A + + + + + + 1 + 73b0011b-6895-3ee7-7595-9eb88011e51d + Cubicle_MV3.101 MV Storage 30 + + + + + + 1 + 74453759-fd32-e807-ca73-1095d79b9849 + Cubicle_MV3.101 MV Storage 51 + + + + + + 1 + 74b73927-5cdc-02f9-1aa1-ad084b18fbb1 + Cubicle_MV3.101 SGen 23 + + + + + + 1 + 72c406aa-941e-f89a-e9c9-4b9d913a62bb + Cubicle_MV3.101 MV Storage 60 + + + + + + 2 + 72e31efe-6f1b-3114-f4e4-e621fa3f0aa8 + MV3.101 Bus 68_3 + + + + + + 1 + 7724f13e-6acd-3924-fa87-d18e2d13925c + Cubicle_MV3.101 MV Storage 116 + + + + + + 1 + 79100914-c98f-d364-683d-a56837a2655b + MV3.101 Bus 137_2 + + + + + + 1 + 79a41143-2ca6-5bb2-1694-89b3f742cd62 + MV3.101 Bus 51_2 + + + + + + 1 + 729dfaa1-02f8-c914-68cd-e3875936aeb2 + Cubicle_MV3.101 MV Storage 121 + + + + + + 1 + 6fdb16f7-c337-d409-7667-1033e00228f8 + MV3.101 Bus 111_2 + + + + + + 1 + 71f96e96-edc4-78d9-1a09-7a32320224e3 + MV3.101 Bus 41_2 + + + + + + 1 + 7049e950-39c1-86fd-3fad-d4e2b43534a7 + MV3.101 busbar1B_2 + + + + + + 1 + 719f2b5f-63c3-d24e-b54f-16c659ca46d1 + MV3.101 Bus 11_2 + + + + + + 1 + 708384cb-c90a-c2c4-5ea5-df48b666ac92 + Cubicle_MV3.101 MV Storage 119 + + + + + + 2 + 74640d3f-7adc-0445-6138-5199d147b086 + MV3.101 Bus 90_1 + + + + + + 2 + 78b24674-3196-020a-1933-b9de61288962 + MV3.101 Bus 119_1 + + + + + + 2 + 7a1d47d2-6950-6f87-8536-dc2a84e5d8c1 + MV3.101 Bus 64_1 + + + + + + 2 + 70c35b5b-345b-2f58-6040-1a99ad0674a8 + MV3.101 Bus 126_1 + + + + + + 1 + 75165eca-aca4-0386-a412-7af941fe1613 + Cubicle_MV3.101 SGen 35 + + + + + + 2 + 742037f3-2622-b8c0-0237-206bbce78c26 + MV3.101 Bus 94_1 + + + + + + 1 + 7711bb4f-2f3b-bdc3-3696-3ac21f2cca2a + Cubicle_MV3.101 MV Storage 9 + + + + + + 1 + 789dfa92-d536-dc87-8786-fadd154cec2f + Cubicle_MV3.101 SGen 46 + + + + + + 2 + 7dc1d91a-34cf-fcef-ba62-a9cf5dd09061 + MV3.101 Bus 12_1 + + + + + + 1 + 7c3878ba-30ab-fde9-5de2-bff179af8a7c + MV3.101 Bus 25_2 + + + + + + 1 + 7bbc2c08-a072-6a6e-29c1-7a7b70975db5 + Cubicle_MV3.101 MV Storage 118 + + + + + + 1 + 7f5a4492-f628-1650-4b00-ae15ccef71fa + MV3.101 Bus 140_2 + + + + + + 1 + 8310887d-021f-33ae-9ccd-2cbdef83d633 + Cubicle_MV3.101 SGen 80 + + + + + + 1 + 83658c0c-1653-af60-7d75-89c07c4f15a5 + Cubicle_MV3.101 MV Storage 95 + + + + + + 1 + 8266266a-00ba-231b-6729-dc8ac4884fdd + Cubicle_MV3.101 SGen 124 + + + + + + 1 + 82c24c4c-e467-a8e7-e352-0b6169399ac2 + MV3.101 busbar2B_3 + + + + + + 1 + 842b691e-534f-c220-fe9b-78ec26471b16 + Cubicle_MV3.101 SGen 72 + + + + + + 2 + 8530d66c-3b7a-4930-f26b-db35d1d10759 + MV3.101 Bus 109_1 + + + + + + 1 + 85379848-4c28-5a02-da84-3cfb4959e86e + Cubicle_MV3.101 SGen 86 + + + + + + 1 + 8732f982-a57b-bf82-7793-614c181487be + MV3.101 BS busbar1C_1 + + + + + + 1 + 7c80b102-e9b7-78bc-1cd1-1de5f426877a + MV3.101 Bus 124_2 + + + + + + 2 + 806a7664-54cf-9102-e892-01b55d285997 + MV3.101 Bus 112_1 + + + + + + 1 + 87d1ac1b-db59-9631-5382-4a09e91d61a6 + MV3.101 Bus 33_2 + + + + + + 1 + 7f366279-fc9c-847a-d116-c25acb9254fb + Cubicle_MV3.101 SGen 14 + + + + + + 1 + 81e58b3f-9d63-7ace-b81e-d4e4486c4c91 + Cubicle_MV3.101 SGen 52 + + + + + + 1 + 86c2d9fc-c0c5-3fe2-fb2d-dc6d6668dc80 + MV3.101 Bus 105_2 + + + + + + 1 + 7eae793c-cd0d-ac0c-c443-09f6f1d5754c + MV3.101 busbar2A_1 + + + + + + 1 + 8297cb19-10e5-c9e6-0e2d-4aadf5b3f44c + MV3.101 Bus 110_2 + + + + + + 1 + 841f3746-5e53-cabf-81e3-f6592774695d + Cubicle_MV3.101 SGen 133 + + + + + + 2 + 8f8c3714-55a3-2ebe-14ac-4df1ab821b8e + MV3.101 node2 + + + + + + 2 + 908cb193-fe44-3a73-2a16-669019d9a925 + MV3.101 Bus 56_1 + + + + + + 1 + 92696597-d7c9-a888-1129-832a4182485f + MV3.101 busbar2B_2 + + + + + + 1 + 8b2991ca-6a98-d6a6-0600-f9eb734b10ee + MV3.101 Bus 32_2 + + + + + + + f850238c-f84f-4897-bdeb-771b7df05859 + MV3.101 Bus 57 + + + + 9419011d-c734-4215-8f34-1a3078929efa + MV3.101 Bus 139 + + + + 8ad2eb76-0d91-4e4e-8879-5e90719a3d66 + MV3.101 Bus 71 + + + + 8b651b2b-b9ad-4a66-a172-e780f899e3ec + MV3.101 Bus 69 + + + + 493809de-7e08-40ff-be99-47f53ce3f878 + MV3.101 Bus 108 + + + + 8eafe60f-b54d-4afe-8f95-cf99b45c7661 + MV3.101 Bus 96 + + + + 8ea3f854-e9d0-4bce-8ca5-72765ae6e0a4 + MV3.101 Bus 115 + + + + f9a540c7-6530-42e7-ba69-08471c52ba2e + MV3.101 Bus 34 + + + + 91f567cf-7015-44df-98d9-290cf8577fa4 + MV3.101 Bus 75 + + + + 88fb3857-642b-4385-b79f-413b9a22c113 + MV3.101 Bus 107 + + + + 8a8fe016-455c-4e83-9536-3b8ece50b1f2 + MV3.101 Bus 74 + + + + 05fc49b1-4624-4f62-8cfc-92ba254b4c2f + MV3.101 Bus 39 + + + + 01bf6446-353d-4bfd-9dde-c4013ae4908f + MV3.101 Bus 138 + + + + 99499d7e-14be-48a4-a73d-409dad804407 + MV3.101 Bus 41 + + + + 99829bfc-e0c0-4281-87b8-0638d4d596da + MV3.101 Bus 85 + + + + 98e941d7-e2a3-4221-b2d1-d2d2f678837e + MV3.101 Bus 17 + + + + 94ef1d6f-c935-454c-bbd7-7428f97e1967 + MV3.101 Bus 103 + + + + 05148239-d1a3-422e-b6e1-2c94587b1bb0 + MV3.101 Bus 12 + + + + 98dcb55f-0324-4f63-ab3c-7832f551c1e9 + MV3.101 Bus 109 + + + + 9929a35c-44bc-42cd-bee3-7fa097b38385 + MV3.101 Bus 110 + + + + 0eb36c8b-ad4a-4665-b58f-7514e0743ffa + MV3.101 Bus 25 + + + + 96be00af-612c-409a-9ee6-9f25173b7276 + MV3.101 Bus 88 + + + + 9b2cb1af-9c63-4bc6-8496-1461b2b368bd + MV3.101 Bus 28 + + + + 9db30325-f94d-4805-9f4b-46ec89ad2908 + MV3.101 Bus 81 + + + + 08854483-a14a-4c60-9580-b498bb808e63 + MV3.101 BS busbar1B + + + + 9fc00385-f75f-42ae-94a5-3213189f07cd + MV3.101 Bus 101 + + + + a3b19e75-095d-48d8-b3eb-97e584f61ace + MV3.101 Bus 46 + + + + 0dd37da7-4bab-4469-9fe3-6f856758d6c2 + MV3.101 Bus 120 + + + + 0f00fa13-830c-4ead-82fb-6dc4d43f7f56 + MV3.101 Bus 68 + + + + 083a20a8-0749-4dc5-9d67-61feb3b01a66 + MV3.101 Bus 23 + + + + 0ac3aef6-e7eb-4b1b-a756-20df24046052 + MV3.101 Bus 114 + + + + a3268f7b-ce16-47e7-bd5c-846bcb30bc32 + MV3.101 Bus 42 + + + + 100b2786-91d0-435a-8d07-6e66f8840a48 + MV3.101 Bus 141 + + + + a4169edc-4f74-4e6a-b281-39b3501be261 + MV3.101 Bus 89 + + + + a42054f8-4cd0-4413-961b-68c55408da72 + MV3.101 Bus 54 + + + + a1dd8fe8-853c-4687-808b-85785734f2d7 + MV3.101 Bus 119 + + + + 9ff7aa88-4227-4372-a4b6-3bce5e3b5375 + MV3.101 Bus 130 + + + + a394393e-e53c-4582-b6a4-ed44f0f3d303 + HV1 Bus 26_1 + + + + a60f0fae-5f99-484c-8e87-0f8a7df10af3 + MV3.101 Bus 53 + + + + a5ee946d-deca-4bc1-b650-35f63814155e + MV3.101 Bus 137 + + + + a72bbf9c-ca8c-4b6a-8fb4-da105abd820b + MV3.101 Bus 61 + + + + a057799b-5fe0-4fde-aa9e-0b7cef3dd98c + MV3.101 Bus 70 + + + + aafccde9-9868-4c9c-8aae-e96eac154c7f + MV3.101 Bus 19 + + + + 1b99a885-38ce-4320-bdf7-bf47d06425e4 + MV3.101 Bus 24 + + + + a859096f-f201-4c92-a431-a3c53379e127 + MV3.101 Bus 29 + + + + a94dde67-c5ab-48d6-8f58-6ee48e374917 + MV3.101 node2 + + + + ac4abc49-1649-466f-9336-1afde32eb18e + MV3.101 Bus 62 + + + + 13786f3b-0907-4a12-8f70-be134cc454cc + MV3.101 Bus 92 + + + + 1658c1f6-15f0-41e1-85a4-f100c4a9d5ae + HV1 Bus 25 + + + + bacb25bd-aed7-4d83-b7d9-adad69f3640a + MV3.101 Bus 63 + + + + bf30f9ad-836f-4922-be9c-c20780ff8766 + MV3.101 Bus 94 + + + + bb637b39-6e2c-40cc-81a4-c88c0bf6858f + MV3.101 Bus 38 + + + + 17d0bd8d-5774-4924-9dd6-db13fd44e437 + MV3.101 busbar2A + + + + 198f5e74-85b7-4d57-aad8-dc6061db7fda + MV3.101 Bus 133 + + + + bab55e0f-ec86-435e-b7e7-a8fb457ce5c6 + MV3.101 Bus 77 + + + + ba47c0c6-d29a-4909-bcc6-17334ebf95e3 + MV3.101 Bus 93 + + + + c005bdba-9e17-4736-91ea-6f0fa9d224f6 + MV3.101 Bus 15 + + + + 1f2f2ce0-31a4-4501-b2b4-3b500e889bc3 + HV1 Bus 25_1 + + + + ca187211-ddc3-491f-ab63-9342b429be25 + MV3.101 Bus 87 + + + + 20e4c2cb-e6ef-4f52-bb0b-30f2101d2a45 + MV3.101 Bus 13 + + + + 2394558f-c996-4dba-97bb-b2a993ff6f6a + MV3.101 Bus 72 + + + + 1f854102-0b31-43fc-b1f9-ab20b026df79 + MV3.101 Bus 66 + + + + 20b18083-b918-4a86-b48a-9837a1e57c3d + MV3.101 Bus 59 + + + + c3bc99b2-717f-4998-a319-fbd5f50b3c0e + MV3.101 Bus 142 + + + + 1d97b37b-63c2-4b9b-b699-c90a35d6b2b2 + MV3.101 BS busbar1A + + + + 1e3be0a0-2b67-4fbc-aef8-42a7cf41ae53 + MV3.101 Bus 95 + + + + 20e37a82-c74d-4e55-8428-133232a1b080 + MV3.101 Bus 90 + + + + c6cd3fbd-932d-4a90-b6db-8dda8c77376a + MV3.101 Bus 55 + + + + 25e10699-f9cf-48aa-9021-6c4efd5ebadf + MV3.101 Bus 56 + + + + 2a87f20e-a5f7-46c1-bd28-a7f511617cc7 + MV3.101 Bus 143 + + + + 2d609811-bd6b-479f-847e-62b279b15799 + MV3.101 Bus 129 + + + + 2a0fad9f-bce6-40da-a6a3-439b936327e0 + MV3.101 Bus 104 + + + + c0e13d93-d2fb-425c-bd2a-dd7aabb5b151 + MV3.101 Bus 22 + + + + 2d4da6a1-dd22-4bb8-b3d6-d1e566616a3c + MV3.101 Bus 76 + + + + 2a120d9a-b238-45d1-9211-d8e13775b300 + MV3.101 Bus 36 + + + + 2f6da21b-fe2c-48fa-b69b-857ffa003159 + MV3.101 node1 + + + + 30f2fc8b-dc4a-4c3b-92bf-7e937f533754 + MV3.101 Bus 65 + + + + 30f991b8-5e7f-451c-ae1d-6c5766cfaca1 + MV3.101 Bus 47 + + + + d42c837b-242d-4b46-a5c9-ff6b1b535994 + MV3.101 Bus 43 + + + + 2ab3daee-4c3e-4d47-bf33-267425641fb1 + MV3.101 Bus 106 + + + + d596185f-800c-4602-a2ac-372a7b670292 + MV3.101 BS busbar1C + + + + d1ca8b4f-b34f-4920-87ec-89558b26943b + MV3.101 Bus 48 + + + + d2ddc782-b15c-43c3-ab1d-dce619a6632c + HV1 Bus 26 + + + + 3a11123d-6f23-4592-bf45-a291e18d2e91 + MV3.101 Bus 84 + + + + 3d558efa-1400-4bf7-9c84-6f647b950138 + MV3.101 Bus 16 + + + + dbee21f7-48fa-4775-be96-b0c244dad683 + MV3.101 Bus 40 + + + + 3a8c8be0-a5d5-4c3e-afa3-f49ad03d5952 + MV3.101 Bus 20 + + + + deb849a9-523a-4893-b204-c081f291415a + MV3.101 Bus 45 + + + + d9297530-a740-4f1b-94d7-a98889d80cad + MV3.101 busbar1A + + + + 38e4dbc9-c8bb-4c6e-858b-9362ba073945 + MV3.101 Bus 78 + + + + dab46b6b-7a9e-407b-9313-7a88167a6e72 + MV3.101 Bus 91 + + + + 36807b95-dd41-49b6-bb9a-f54e1844cb1b + MV3.101 Bus 44 + + + + ddc0bc00-5914-4554-9dc3-d5adf531b51e + MV3.101 Bus 32 + + + + dbe86e42-89c7-4a9e-ab23-d4c7969ae622 + MV3.101 Bus 122 + + + + 469053b3-c972-4e80-823d-143e1f0d21db + MV3.101 Bus 49 + + + + 46e293d1-067e-4b3a-90e3-ca7126eaef94 + MV3.101 Bus 128 + + + + dab0c089-e8c6-4180-86ea-a134cce6dfc3 + MV3.101 Bus 102 + + + + deece471-37ad-4cf6-958c-27a76eaaf900 + MV3.101 Bus 27 + + + + e5e01892-57a7-4ac7-b611-e260e29e5294 + MV3.101 Bus 82 + + + + 48567f53-6bc4-4c3f-b768-2b609dccb4eb + MV3.101 Bus 37 + + + + e7e4a362-7ded-4e55-b3c4-90058eab52de + MV3.101 Bus 97 + + + + e8f3e0ea-ae0e-4aee-9321-1179b3c5df5d + MV3.101 Bus 121 + + + + e6eb554e-a499-474b-b7cd-60906fe882f4 + MV3.101 Bus 11 + + + + e8d3fd3d-b628-4b9c-9c72-a5538702b839 + MV3.101 Bus 26 + + + + e96916bc-3c5c-464f-808e-8cf0fd6af8e3 + MV3.101 Bus 100 + + + + e21e87dc-5b81-4caa-8990-35936b9828b8 + MV3.101 Bus 86 + + + + 52685ea1-8e94-480d-b652-3229a99265fe + MV3.101 Bus 113 + + + + 4c7e4de2-004a-40de-b457-e442fdecc544 + MV3.101 Bus 67 + + + + 4cf234a3-d7d0-41b6-9128-343f64a22edd + MV3.101 Bus 79 + + + + ea1b7d5f-c078-47a0-82f5-8c667c5bbe42 + MV3.101 Bus 58 + + + + eabb7d88-4945-4d1c-9594-01b06149afa4 + MV3.101 Bus 132 + + + + f18e8cf0-cd6e-46a0-ba80-4e2a74d960d2 + MV3.101 Bus 124 + + + + f0f29e04-7a02-4552-8e44-796e82a521fc + MV3.101 Bus 140 + + + + f223b98b-9fa9-411f-bc29-4b8ac596f469 + MV3.101 Bus 99 + + + + 51d44ca5-8fcf-4f39-bbba-c6753a9a5fc9 + MV3.101 Bus 98 + + + + eeb342f7-599b-4007-beda-c6c120869a7e + MV3.101 Bus 83 + + + + 4c7b3e60-9cc4-414d-937f-77cde7aa1b87 + MV3.101 Bus 73 + + + + f184c6eb-0413-4e65-8fc1-0974fb145da7 + MV3.101 Bus 80 + + + + f24b1f30-a37d-4dab-bcc4-02e032f5a426 + MV3.101 Bus 125 + + + + ee658230-42c4-48b3-a552-6bd8c85ae825 + MV3.101 Bus 135 + + + + 5727c59c-5686-4f80-ba0e-9a2075951c2e + MV3.101 Bus 64 + + + + f4cb2904-c462-4970-92e0-957588878bf3 + MV3.101 Bus 112 + + + + f3a12af4-d249-4473-b1e2-4be79c9fd09f + MV3.101 Bus 51 + + + + 5757b833-2dc6-4aad-bd6a-baeed16a08c3 + MV3.101 Bus 105 + + + + 5c312ef4-0dc6-4505-be0a-fcb5a64d2107 + MV3.101 Bus 123 + + + + 5c1d93eb-3f1e-4d2f-a873-e6e601b65eb5 + MV3.101 Bus 52 + + + + 57e9812d-8adf-4555-b53e-7b011d6822e3 + MV3.101 Bus 21 + + + + f59f8fd7-d0ed-448b-8fff-8229ec31113a + MV3.101 Bus 31 + + + + f7e7edbe-6da0-41ce-8e06-5f428bbe2e11 + MV3.101 Bus 35 + + + + 5abadde9-feca-4004-a41d-f8b3f46b58f0 + MV3.101 Bus 111 + + + + 6a85b34e-8c3a-40a3-bffa-2db0e2b3931a + MV3.101 Bus 117 + + + + 646289ac-d642-4555-bf82-2d7ee2d3c14e + MV3.101 Bus 127 + + + + 63c3a42f-485d-46fe-9018-a8a5e973c5f5 + MV3.101 Bus 134 + + + + 63063958-ef0f-49d3-b30e-12d95d551664 + MV3.101 Bus 60 + + + + 6e31ecd6-4293-4632-bd05-8dd831d48f1f + MV3.101 busbar2B + + + + 697d3134-684b-4bea-99c4-55451fe2d77d + MV3.101 busbar1B + + + + 723f0678-cc8a-44c6-a7a5-6e42d11d2b20 + MV3.101 Bus 18 + + + + 78b74d38-bee6-4cb1-9237-2ad48849aa73 + MV3.101 Bus 14 + + + + 7b476a15-4f7d-4188-8e77-6986db123157 + MV3.101 Bus 33 + + + + 7ecda507-933c-48ac-9f1e-9da76137d19c + MV3.101 Bus 136 + + + + 7f74da1d-ed25-4065-9d78-e5e3d7059dbf + MV3.101 Bus 126 + + + + 7be1a845-3cee-4db0-9b39-06ae853af02f + MV3.101 Bus 30 + + + + 81827045-e0d8-47fb-a232-617b1a3f663f + MV3.101 Bus 131 + + + + 7c3650d3-57bd-4fde-80ea-720b5d09efdd + MV3.101 Bus 50 + + + + 8a0319ae-a0a3-435a-b096-4c8099c94c52 + MV3.101 Bus 116 + + + + 8c1b77e0-9de9-4c53-a9c7-f4de788fe765 + MV3.101 Bus 118 + + + 9b06547c-12fa-8e54-92b1-fadbe466f554 + high limit for MV3.101 Bus 109 + + + 10.55 + + + 82a921e4-a89e-32e5-600b-bf817bafbdfd + high limit for MV3.101 Bus 17 + + + 10.55 + + + 6f7200c4-9be9-06c5-1829-600d04445323 + low limit for MV3.101 Bus 88 + + + 9.65 + + + a99d1c99-cb8e-d372-d2c9-03a58d423497 + high limit for MV3.101 Bus 110 + + + 10.55 + + + 19bbcf92-6bd7-6d06-c91e-944f473a0b6e + low limit for MV3.101 Bus 110 + + + 9.65 + + + 2d1ef18b-14e7-cb3d-06d4-7de217dac9aa + low limit for MV3.101 Bus 17 + + + 9.65 + + + af114445-f28a-0b0f-1425-54c71524f353 + high limit for MV3.101 Bus 41 + + + 10.55 + + + 8a929a02-5b88-6cdb-2184-47a2e98dbf30 + low limit for MV3.101 Bus 109 + + + 9.65 + + + 505f30fd-dd82-bdd5-c616-686d976ede5b + low limit for MV3.101 Bus 103 + + + 9.65 + + + 9ab6a83c-6011-1541-639c-3b7288663387 + low limit for MV3.101 Bus 41 + + + 9.65 + + + 2f323c50-3af9-2662-fcfd-59d3932bc08d + high limit for MV3.101 Bus 81 + + + 10.55 + + + e75528a7-7274-a292-5681-137cdde6564f + low limit for MV3.101 Bus 70 + + + 9.65 + + + 4e3e7958-f361-00d3-9fcc-7072941db481 + high limit for MV3.101 Bus 70 + + + 10.55 + + + 14ec198e-a82f-7c93-44c9-4873e727e7be + low limit for MV3.101 Bus 85 + + + 9.65 + + + 793be1eb-ef56-1b71-a53c-f1110f2ab862 + low limit for MV3.101 Bus 81 + + + 9.65 + + + a31f46d7-caea-2518-bd77-09ee71f343b4 + low limit for MV3.101 Bus 130 + + + 9.65 + + + b9946b41-4342-cab1-b116-42f309598134 + high limit for MV3.101 Bus 28 + + + 10.55 + + + 4c9b13a4-2928-bd17-5d23-5c27a3e58eae + low limit for MV3.101 Bus 28 + + + 9.65 + + + bf4f36ca-d17f-a535-66c1-cb10fb6c8198 + low limit for MV3.101 Bus 101 + + + 9.65 + + + bab20dce-2c59-ef2f-8edb-11b6e41b77d5 + high limit for MV3.101 Bus 130 + + + 10.55 + + + b747e665-9221-4ba6-1ad8-8ebbc005c293 + high limit for MV3.101 Bus 101 + + + 10.55 + + + d9ea9a75-8676-4771-0883-6ff7772ba640 + high limit for MV3.101 Bus 85 + + + 10.55 + + + 05a28e11-3b3b-b439-1f4e-efd3bb3a36cf + high limit for MV3.101 Bus 137 + + + 10.55 + + + 4820682a-5513-0273-d137-b0f340ae7c98 + low limit for MV3.101 Bus 137 + + + 9.65 + + + d7f0dd3d-43f1-a86a-fd4d-496c1f7362a5 + low limit for MV3.101 Bus 46 + + + 9.65 + + + 8c05daa9-97c9-6adc-4fb3-0a7cdb52272c + high limit for MV3.101 Bus 89 + + + 10.55 + + + b03f86b1-681f-57f2-8202-7c7d77ef2e28 + low limit for MV3.101 Bus 119 + + + 9.65 + + + 2f3c7b47-e064-6dd3-0ff9-e318ed2c13f2 + high limit for MV3.101 Bus 119 + + + 10.55 + + + a9c5cb8c-2ba9-0e0f-0749-ec89338eaf2b + high limit for MV3.101 Bus 42 + + + 10.55 + + + 4c2b26e1-ad18-540b-c0a6-18a2c7b56679 + low limit for MV3.101 Bus 89 + + + 9.65 + + + 716df6e0-b92e-4b5d-f069-9a80be1d2656 + high limit for MV3.101 Bus 54 + + + 10.55 + + + 122c046f-3512-10bf-4c31-1af43f50c469 + low limit for MV3.101 Bus 54 + + + 9.65 + + + c3a385d2-1208-e069-1e73-c3aabd1f1767 + low limit for MV3.101 Bus 42 + + + 9.65 + + + 51b3615f-4194-cbd6-43cf-b1fe1e91ca1c + high limit for MV3.101 Bus 46 + + + 10.55 + + + afca703a-6264-ba65-b31b-0b4e555bb0db + low limit for MV3.101 Bus 19 + + + 9.65 + + + 3756362c-04fa-f5d8-38f2-31a6c3544f42 + high limit for MV3.101 Bus 53 + + + 10.55 + + + dccf705b-329f-58b7-37b3-58a5e8cdd8fd + low limit for MV3.101 Bus 62 + + + 9.65 + + + 4e14cbf1-c2b2-4a68-8f72-04f7596ca729 + high limit for MV3.101 Bus 93 + + + 10.55 + + + ab82e5e6-0f75-6c62-0922-1909963aac0d + high limit for MV3.101 Bus 61 + + + 10.55 + + + fc37a282-5a1d-98d1-9206-8587963e1e32 + low limit for MV3.101 Bus 53 + + + 9.65 + + + ed54a94d-500c-a29d-dfe6-6e68d95d7138 + low limit for MV3.101 Bus 61 + + + 9.65 + + + b3e93cbb-6566-dc6c-fb14-4307bed0c765 + high limit for MV3.101 Bus 29 + + + 10.55 + + + 65dbadb1-41c5-1562-b0ae-5bb94199559a + high limit for MV3.101 Bus 19 + + + 10.55 + + + 3035d52d-85a2-8e0c-3da4-d74d40960b7c + high limit for MV3.101 Bus 62 + + + 10.55 + + + 8347ea73-ac40-37fd-dadd-1cbf6ffc2c58 + low limit for MV3.101 Bus 29 + + + 9.65 + + + 17c3c15e-e219-9381-ef53-5e0c2315d1ec + low limit for MV3.101 Bus 15 + + + 9.65 + + + ebcc2b7e-7380-c563-c948-a727444313fc + high limit for MV3.101 Bus 94 + + + 10.55 + + + 8f46a40c-a014-4798-c85c-540c9fe5b7dd + high limit for MV3.101 Bus 63 + + + 10.55 + + + 3097a0bc-5b35-5dae-8eb4-325eac27f12f + high limit for MV3.101 Bus 38 + + + 10.55 + + + 339f49b8-ab47-369a-05bf-da94c6435d9c + low limit for MV3.101 Bus 63 + + + 9.65 + + + 15f3920c-1b89-1ce5-92b2-e2608817ba36 + low limit for MV3.101 Bus 77 + + + 9.65 + + + df24bd69-03e9-22d2-6c2f-c688c0e7d68c + low limit for MV3.101 Bus 38 + + + 9.65 + + + 7471d44c-f383-8e8c-40d2-e803ab470826 + low limit for MV3.101 Bus 93 + + + 9.65 + + + e575b46d-5858-8aac-6a2a-95aeedb3da1c + high limit for MV3.101 Bus 15 + + + 10.55 + + + b713b194-f468-7a21-1340-3987b30a27a5 + low limit for MV3.101 Bus 94 + + + 9.65 + + + e62a5020-f3ad-b626-7531-50f04bbd1396 + high limit for MV3.101 Bus 77 + + + 10.55 + + + 96cbdfda-68ad-5d74-5754-7424ecb09a5e + low limit for MV3.101 Bus 87 + + + 9.65 + + + 499af853-0b79-9419-112b-952e63894d8c + high limit for HV1 Bus 26 + + + 121 + + + 6e2572f5-1e8e-00f2-6dc7-9b312017bc2f + high limit for MV3.101 Bus 22 + + + 10.55 + + + 3a7cc0f2-7c45-6eb2-c78a-fa701a24227b + low limit for HV1 Bus 26 + + + 99 + + + 05dd0646-35ef-7cee-3fc3-65e0cdce93e7 + low limit for MV3.101 Bus 142 + + + 9.65 + + + 1ddab489-0cc3-9a5e-c472-f906527b1b81 + high limit for MV3.101 Bus 87 + + + 10.55 + + + 3b1afaaa-4741-9477-9776-91918a08abd7 + low limit for MV3.101 Bus 55 + + + 9.65 + + + cf1839f0-40f3-e1ee-108c-887df0e86dad + high limit for MV3.101 Bus 48 + + + 10.55 + + + e0e8f9c7-7f14-7bfa-1845-026010117842 + low limit for MV3.101 Bus 48 + + + 9.65 + + + 94c42d52-9feb-2a71-cd84-8a02ce888051 + low limit for MV3.101 Bus 22 + + + 9.65 + + + f6853508-f9be-719a-f3c1-d357c164c932 + high limit for MV3.101 Bus 142 + + + 10.55 + + + 0b4b6e1f-3e98-9a7d-4995-9fb4f0344026 + high limit for MV3.101 Bus 55 + + + 10.55 + + + cb01bce7-35bf-c54a-0983-a3d17866de9d + low limit for MV3.101 Bus 91 + + + 9.65 + + + e4f8e8d1-d530-373b-1149-4258ccc33b57 + low limit for MV3.101 Bus 122 + + + 9.65 + + + 5565b696-1d2c-14ca-26dc-13b566cd97ae + high limit for MV3.101 busbar1A + + + 10.55 + + + 37e14be2-9cdb-3ecf-715d-ab0394d2f523 + low limit for MV3.101 Bus 43 + + + 9.65 + + + 25d193a9-3314-e1fd-6e57-40e359e16013 + low limit for MV3.101 Bus 102 + + + 9.65 + + + 68cf3556-caae-bb17-42c6-898a6e32c94c + high limit for MV3.101 Bus 43 + + + 10.55 + + + c2bbdc4d-c87e-072f-bc33-40138bc33bb9 + low limit for MV3.101 BS busbar1C + + + 9.65 + + + 3b46c403-b2d6-c041-7d74-88033d15ca75 + high limit for MV3.101 BS busbar1C + + + 10.55 + + + 5a9fb237-f1f1-2360-e70e-c4651fcfa86a + low limit for MV3.101 busbar1A + + + 9.65 + + + d75ddd32-c589-3477-5916-f90b6d7e3e9d + high limit for MV3.101 Bus 102 + + + 10.55 + + + 5fe5286c-8713-48cd-5bf2-16f3955fbe20 + high limit for MV3.101 Bus 91 + + + 10.55 + + + 2baf3e6b-acb4-50d5-f13e-331a8149dfa8 + high limit for MV3.101 Bus 122 + + + 10.55 + + + 1d6508aa-a3b8-41a4-a685-a6d075902091 + high limit for MV3.101 Bus 86 + + + 10.55 + + + f882a38e-6cb4-212b-8c76-aba346ed2146 + low limit for MV3.101 Bus 86 + + + 9.65 + + + c646a185-eabc-fa4b-4701-ccba6c0b5e9d + high limit for MV3.101 Bus 32 + + + 10.55 + + + 0756c90a-2cb4-4481-efa7-b3929b8c49de + low limit for MV3.101 Bus 40 + + + 9.65 + + + 8cd69db9-1e6f-688d-e1e8-c754e8102cb1 + high limit for MV3.101 Bus 82 + + + 10.55 + + + 665b2297-c12e-92ad-6bc2-fba6a4d04ca1 + low limit for MV3.101 Bus 82 + + + 9.65 + + + d1bec58b-1557-2a80-89c1-d30d0f88065c + high limit for MV3.101 Bus 27 + + + 10.55 + + + f6423488-9c56-617e-3d3e-a8c680688712 + low limit for MV3.101 Bus 32 + + + 9.65 + + + 1a8cce79-0076-27fe-90d5-39ac9d305ce6 + high limit for MV3.101 Bus 40 + + + 10.55 + + + 45f273a6-0019-0dc7-dee1-890e51bd52f5 + low limit for MV3.101 Bus 45 + + + 9.65 + + + 03b51c06-bbdc-de9e-85b2-ef72dbab5829 + high limit for MV3.101 Bus 45 + + + 10.55 + + + f3afc4f5-7e3d-64fc-80da-34da24f6d6c0 + low limit for MV3.101 Bus 27 + + + 9.65 + + + 7d46e357-739a-c385-2918-ec415cb17eb6 + low limit for MV3.101 Bus 26 + + + 9.65 + + + 92f045f8-3ff6-0e98-bd8a-fb1b6a307c2d + high limit for MV3.101 Bus 100 + + + 10.55 + + + 32b7ff7c-0ebb-a331-95a0-b1551ecf6214 + low limit for MV3.101 Bus 97 + + + 9.65 + + + 5fc2cae6-2140-8f00-28b2-db3b1e8ab9d3 + low limit for MV3.101 Bus 121 + + + 9.65 + + + 81deeb7a-05fa-d39f-ad1c-b40f109b0a31 + high limit for MV3.101 Bus 11 + + + 10.55 + + + 06d2f1d3-75f4-e651-eb4e-89589fd47a02 + low limit for MV3.101 Bus 11 + + + 9.65 + + + 32b47826-3b06-ec57-b688-950d012776e7 + low limit for MV3.101 Bus 100 + + + 9.65 + + + a1f5a778-6351-12ca-9d02-12b9bc7ad128 + high limit for MV3.101 Bus 58 + + + 10.55 + + + a4a3696e-c1d0-b762-a9fa-d943bd0a4617 + low limit for MV3.101 Bus 58 + + + 9.65 + + + af112c1f-5108-2d17-59c4-1c096d95f120 + high limit for MV3.101 Bus 97 + + + 10.55 + + + aabd08d1-3379-69f2-1089-6dc089209fb8 + high limit for MV3.101 Bus 121 + + + 10.55 + + + a0aec1d0-b882-0a86-7af6-552b399cee90 + high limit for MV3.101 Bus 26 + + + 10.55 + + + 7ed630e6-5983-7655-a554-02c8a82d9436 + high limit for MV3.101 Bus 140 + + + 10.55 + + + ded8fcbd-fd55-ddcc-6d61-96f46843f433 + low limit for MV3.101 Bus 80 + + + 9.65 + + + 83a20fbf-9af9-3538-b442-ea3e7dd36891 + low limit for MV3.101 Bus 135 + + + 9.65 + + + e7976699-228c-f48a-c87b-7a253a2a8b45 + low limit for MV3.101 Bus 140 + + + 9.65 + + + 5a48a5ba-49c3-b62e-a747-9e1a6dbaceb5 + low limit for MV3.101 Bus 132 + + + 9.65 + + + 7e8d77de-e3ba-3b0f-9fb6-9af7e7ea175e + high limit for MV3.101 Bus 80 + + + 10.55 + + + a4ea99b6-ea09-dc1a-5a18-24c0f5deda93 + high limit for MV3.101 Bus 83 + + + 10.55 + + + 6977890d-efe8-533d-fbba-4558e1481237 + high limit for MV3.101 Bus 135 + + + 10.55 + + + 45c99f8d-528a-75eb-af46-8777a6ed7b51 + low limit for MV3.101 Bus 83 + + + 9.65 + + + 726244fc-5122-1d7c-6a81-43ac654aff56 + high limit for MV3.101 Bus 132 + + + 10.55 + + + c7839b29-889a-8c70-86d7-37ee8777e68a + high limit for MV3.101 Bus 31 + + + 10.55 + + + 0df8b0b5-8ada-41c3-63f0-6b6a6f07be10 + low limit for MV3.101 Bus 31 + + + 9.65 + + + aacd5d27-bea6-8430-ba08-a65fdaf94f04 + low limit for MV3.101 Bus 124 + + + 9.65 + + + 31691e10-5eeb-80af-66a8-cc97a1393348 + low limit for MV3.101 Bus 51 + + + 9.65 + + + 898e9782-a8f0-b76e-43c1-3ccbe519c7df + high limit for MV3.101 Bus 51 + + + 10.55 + + + 91e6e67c-409c-3221-0d31-dc472dce6be9 + low limit for MV3.101 Bus 125 + + + 9.65 + + + 50c92aac-5dbf-619d-d1bf-94e3e6f383bf + high limit for MV3.101 Bus 112 + + + 10.55 + + + e6c7e9a9-917f-3078-d33c-4caad85c545f + low limit for MV3.101 Bus 112 + + + 9.65 + + + df87cc9d-874d-e649-65f7-fda1b094fed4 + high limit for MV3.101 Bus 125 + + + 10.55 + + + 6e63d03a-f1f8-3983-7bb1-0f8d3d57ccb2 + high limit for MV3.101 Bus 99 + + + 10.55 + + + d53d522e-22d5-c647-951d-0ed3bbf9f9fd + low limit for MV3.101 Bus 99 + + + 9.65 + + + 3d53142c-00db-e36f-40c6-40cdc746ad49 + high limit for MV3.101 Bus 124 + + + 10.55 + + + 7fd3c91d-6a57-737b-1eab-2b5fb99a58f5 + high limit for MV3.101 Bus 35 + + + 10.55 + + + b817fcac-2513-9baa-218e-bc220fed7a09 + low limit for MV3.101 Bus 57 + + + 9.65 + + + dc1f505f-e502-f113-c761-62cff854f049 + low limit for MV3.101 Bus 35 + + + 9.65 + + + 87bee9bd-ff04-930f-6b33-f4e7ffb67320 + high limit for MV3.101 Bus 138 + + + 10.55 + + + f7db3077-01b0-a9e5-6e46-529c75047fa5 + low limit for MV3.101 Bus 34 + + + 9.65 + + + 1d72edf5-0895-6363-8d72-f4bb906f1777 + low limit for MV3.101 Bus 138 + + + 9.65 + + + d4afc2da-0637-f7b1-9ca1-1bd3bec3a05d + high limit for MV3.101 Bus 34 + + + 10.55 + + + c17544d9-7ddf-2816-e101-9ecf745797b8 + high limit for MV3.101 Bus 57 + + + 10.55 + + + 86cb5b3d-6fae-279d-9d5a-201041d0d50e + low limit for MV3.101 Bus 23 + + + 9.65 + + + 0b6c4952-85b8-6c5a-ca6d-d3987903c472 + high limit for MV3.101 Bus 141 + + + 10.55 + + + 55fcfe6a-7b12-0b13-58d4-f68825a4fb1d + high limit for MV3.101 Bus 39 + + + 10.55 + + + ab7dc914-40da-456f-6932-2494ec8d8bf5 + low limit for MV3.101 Bus 141 + + + 9.65 + + + 9e84bf50-4ebe-d5ab-9000-a6821fba29df + high limit for MV3.101 Bus 23 + + + 10.55 + + + 64ec9d2d-0ae1-3276-f5a1-1a277e1b7ebf + high limit for MV3.101 Bus 12 + + + 10.55 + + + 32206a6b-a6eb-3292-92e9-e0e134645fed + low limit for MV3.101 Bus 39 + + + 9.65 + + + 6a946910-1ab6-5ed9-0da5-657efd0f0af8 + low limit for MV3.101 Bus 12 + + + 9.65 + + + 5b8bf26f-077f-9fc8-6444-e11e2418d447 + high limit for MV3.101 BS busbar1B + + + 10.55 + + + 536749ac-f272-86ca-6840-0e43bfd70448 + low limit for MV3.101 BS busbar1B + + + 9.65 + + + 798564b8-6137-389e-842d-38f864086c81 + low limit for MV3.101 Bus 68 + + + 9.65 + + + 1a4e2a4a-860a-b19d-0885-2e3bfc3d4d53 + high limit for MV3.101 Bus 120 + + + 10.55 + + + 829e7398-1576-e1b7-0379-cbbd2f90e42c + low limit for MV3.101 Bus 120 + + + 9.65 + + + 81b52a91-e643-b473-d0ba-c1c131ca6cea + high limit for MV3.101 Bus 92 + + + 10.55 + + + c6dab436-4d96-88ae-a743-0042fea95f57 + low limit for MV3.101 Bus 92 + + + 9.65 + + + 30030e50-a0e8-6af5-372d-37d58ae7f9b3 + high limit for MV3.101 Bus 68 + + + 10.55 + + + 69d5b75c-f740-f78b-f02c-083ae4ac0430 + low limit for MV3.101 Bus 25 + + + 9.65 + + + d77ce4d9-d628-9fda-d898-1b0bbd00ada3 + high limit for MV3.101 Bus 25 + + + 10.55 + + + 9114da2e-0800-3a1a-437c-120fffc4cde2 + high limit for MV3.101 Bus 114 + + + 10.55 + + + 5af4e9c5-39bb-23f6-1126-d14a760eec69 + low limit for MV3.101 Bus 114 + + + 9.65 + + + c81fffed-af99-4205-2a87-58ea3ea4fd51 + low limit for MV3.101 Bus 24 + + + 9.65 + + + a521ac6f-c5a8-6107-7e78-47578eb4868e + high limit for MV3.101 BS busbar1A + + + 10.55 + + + d7144a71-e42f-065b-da68-812c3c017cd9 + high limit for MV3.101 busbar2A + + + 10.55 + + + 1ad46e7d-7056-0599-4e19-0a905b39b3d9 + low limit for HV1 Bus 25 + + + 99 + + + ed1917e7-f5c9-64a6-7ef3-f0eb0d4a4a2f + low limit for MV3.101 Bus 133 + + + 9.65 + + + bd78eb14-9cf8-9fe9-38f6-981a16ef8a57 + low limit for MV3.101 Bus 95 + + + 9.65 + + + 70295e32-7a22-7dc9-5118-b45e4bbd873f + high limit for MV3.101 Bus 95 + + + 10.55 + + + c1510e10-ab2c-0775-8235-6e0a5a951653 + low limit for MV3.101 BS busbar1A + + + 9.65 + + + 6f4e07b7-ebb6-a25a-1157-8fdb02fd6adb + high limit for HV1 Bus 25 + + + 121 + + + d850430f-f8ec-9f1c-8039-988b7606b531 + high limit for MV3.101 Bus 133 + + + 10.55 + + + efcfcee3-3123-dc8e-ecbc-4514327b0d49 + low limit for MV3.101 busbar2A + + + 9.65 + + + 8afeef58-86b9-5521-5340-9db59a918942 + high limit for MV3.101 Bus 24 + + + 10.55 + + + 54656fca-b691-c6b8-04a5-bff1cdbf792d + high limit for MV3.101 Bus 56 + + + 10.55 + + + 417769d4-db11-0152-4c79-4a802374180d + low limit for MV3.101 Bus 56 + + + 9.65 + + + b29c2310-9c9c-2806-5e4c-cba7398bf843 + high limit for MV3.101 Bus 13 + + + 10.55 + + + 834bba3d-6276-ee63-1f5d-4f0a006b6f35 + low limit for MV3.101 Bus 13 + + + 9.65 + + + 55eda48e-88aa-8f87-2775-65257fa32ecb + high limit for MV3.101 Bus 90 + + + 10.55 + + + 8b2c6028-94bc-08d6-efd4-ed2b18d53fb7 + low limit for MV3.101 Bus 66 + + + 9.65 + + + f1d2f2f6-e438-be3d-a2f1-de0be660621b + high limit for MV3.101 Bus 59 + + + 10.55 + + + e9816e85-6374-a2ce-b67b-c71d582ae1cf + high limit for MV3.101 Bus 72 + + + 10.55 + + + 179fae4c-42c9-69a9-36ee-209c0bbfb718 + low limit for MV3.101 Bus 59 + + + 9.65 + + + 8286319a-0f1a-8250-f5a6-9ac57b266976 + low limit for MV3.101 Bus 90 + + + 9.65 + + + 1a8442ce-7376-d004-efda-493766b4156d + low limit for MV3.101 Bus 72 + + + 9.65 + + + fa1530de-8d99-4555-d0eb-e21ff6f47e19 + high limit for MV3.101 Bus 66 + + + 10.55 + + + 186efb24-597c-0b73-bf81-470dfd84efb3 + high limit for MV3.101 Bus 106 + + + 10.55 + + + 8d124882-8961-6a42-dbdc-f264fd3541f4 + low limit for MV3.101 Bus 76 + + + 9.65 + + + 024d7162-beb6-3206-c7d5-c39fbbab1d14 + low limit for MV3.101 Bus 104 + + + 9.65 + + + a06ebd41-4364-b449-7861-afe88e574391 + low limit for MV3.101 Bus 106 + + + 9.65 + + + 40ae48ac-d1e8-c02e-9c16-03701d6c9061 + low limit for MV3.101 Bus 143 + + + 9.65 + + + 90c297f5-fb86-e5fc-ba4e-0b00c8185f73 + high limit for MV3.101 Bus 76 + + + 10.55 + + + 111ad55f-2538-1a7a-4a73-24a90a0510cd + high limit for MV3.101 Bus 129 + + + 10.55 + + + 5110c003-58db-76c6-df93-1d130a1f2601 + high limit for MV3.101 Bus 143 + + + 10.55 + + + 406d495b-1e29-fc41-a5ee-1d7c837cbe61 + low limit for MV3.101 Bus 129 + + + 9.65 + + + f7a9317c-890b-eab7-1e19-94f91b1c033e + high limit for MV3.101 Bus 36 + + + 10.55 + + + 83b794bf-9cae-f5ea-a973-2c1089cb4721 + low limit for MV3.101 Bus 36 + + + 9.65 + + + 1d51e5b3-8ff1-895f-7bb3-14d15e06ca21 + high limit for MV3.101 Bus 104 + + + 10.55 + + + dd94e128-955d-1b16-be3f-4f2c8f7dd843 + high limit for MV3.101 Bus 20 + + + 10.55 + + + 5d80cbe7-b51e-6b1c-620a-543b6d36b49b + low limit for MV3.101 Bus 47 + + + 9.65 + + + ac60702b-030a-c790-872c-020e18e5a5e2 + high limit for MV3.101 Bus 78 + + + 10.55 + + + d2e74773-570d-3caa-a71f-e1352ccea0c7 + high limit for MV3.101 Bus 65 + + + 10.55 + + + b688d118-9f42-2528-6854-432c69a9d034 + high limit for MV3.101 Bus 44 + + + 10.55 + + + 9bfafeec-186b-259a-7632-d1a4410f152f + low limit for MV3.101 Bus 78 + + + 9.65 + + + c07fac83-f45f-4bdc-f4de-0226b63cb9ef + high limit for MV3.101 Bus 84 + + + 10.55 + + + da8790ff-706c-e2b8-4e01-33e2ddbd048f + low limit for MV3.101 Bus 44 + + + 9.65 + + + 4398e07e-0dde-e253-6b5f-ce0781c78af8 + low limit for MV3.101 Bus 65 + + + 9.65 + + + 3eb20f21-c752-ac9a-4b13-faf750436b58 + high limit for MV3.101 Bus 47 + + + 10.55 + + + 2fd05813-90f6-06b2-205b-388117cbfc1a + low limit for MV3.101 Bus 84 + + + 9.65 + + + 25919b80-a461-7636-efae-8ad08767d60a + high limit for MV3.101 Bus 16 + + + 10.55 + + + d57dd4d6-e383-b5f0-e32c-1c8e09063ee6 + low limit for MV3.101 Bus 49 + + + 9.65 + + + da163aef-5ecb-3ede-9639-57bdce767822 + low limit for MV3.101 Bus 108 + + + 9.65 + + + a1d80f74-eb88-7e9b-0cee-13d0866ee871 + low limit for MV3.101 Bus 16 + + + 9.65 + + + 3f445b42-5002-b8f0-ee99-980a1455c5fb + high limit for MV3.101 Bus 49 + + + 10.55 + + + 11c8dab9-2a07-4fbc-2044-ae9b579c3d2c + high limit for MV3.101 Bus 128 + + + 10.55 + + + 916902a2-9087-72e6-cf6a-f23012872793 + low limit for MV3.101 Bus 128 + + + 9.65 + + + 454af780-db18-1198-2d0e-88a318f1713a + high limit for MV3.101 Bus 37 + + + 10.55 + + + ee4fe061-2e73-c1e0-8bef-674c486152ad + low limit for MV3.101 Bus 37 + + + 9.65 + + + 0bb48d3b-f875-4c9b-5e1f-42927b66d6a8 + low limit for MV3.101 Bus 20 + + + 9.65 + + + b0f041f2-8b41-72f2-51f9-5f18aab67b00 + high limit for MV3.101 Bus 108 + + + 10.55 + + + a40e520d-bee9-3616-7862-113fbacf8a59 + high limit for MV3.101 Bus 73 + + + 10.55 + + + 6ca921fd-65c9-8a23-5840-363c4c2696ee + high limit for MV3.101 Bus 67 + + + 10.55 + + + 77f95408-e0cb-6cc3-270d-a833314cc0fd + low limit for MV3.101 Bus 79 + + + 9.65 + + + ae877719-9de5-29f0-3a13-2de21d0381a0 + high limit for MV3.101 Bus 64 + + + 10.55 + + + 87edcee0-5276-fe6b-93e0-4a84a4636d9d + high limit for MV3.101 Bus 98 + + + 10.55 + + + de0be2c5-3cb3-8316-6d1b-dfe31a69eafd + low limit for MV3.101 Bus 67 + + + 9.65 + + + 44e9a00c-624a-6470-76c4-48941e7799ad + high limit for MV3.101 Bus 79 + + + 10.55 + + + 6e1b194d-078e-c866-6ef7-6463a9e453ad + high limit for MV3.101 Bus 113 + + + 10.55 + + + 4ce52ca5-8da4-ae4a-389f-0aae24314e92 + low limit for MV3.101 Bus 113 + + + 9.65 + + + 2be635ff-975b-1799-3d61-261eeacf1eb6 + low limit for MV3.101 Bus 64 + + + 9.65 + + + ebddb1e6-476c-2eb0-655a-2a15966cc807 + low limit for MV3.101 Bus 73 + + + 9.65 + + + c484a470-8319-c88a-9399-aefb3d2dcd11 + low limit for MV3.101 Bus 98 + + + 9.65 + + + 434a8e48-d159-afa4-1c16-ae0df440b01a + low limit for MV3.101 Bus 52 + + + 9.65 + + + aca00b3a-579e-f9a2-e6fc-e43de0776939 + high limit for MV3.101 Bus 123 + + + 10.55 + + + 09c76f4c-2998-3628-547e-6c4cb4b08d31 + low limit for MV3.101 Bus 111 + + + 9.65 + + + d8f6aeb0-0f25-f1dc-63ae-dce1aaf213c1 + low limit for MV3.101 Bus 123 + + + 9.65 + + + 3e46b5c2-a182-eb73-0804-e9ff09c740a8 + high limit for MV3.101 Bus 111 + + + 10.55 + + + 01e27545-425e-19bd-47aa-ae20093240d7 + low limit for MV3.101 Bus 105 + + + 9.65 + + + 5a838147-91d5-50f2-3d22-ba88017b283d + high limit for MV3.101 Bus 60 + + + 10.55 + + + b510f5ac-56a3-0b83-e47c-a4b7313843d5 + low limit for MV3.101 Bus 60 + + + 9.65 + + + 31172334-529f-75f7-6d71-0e1f16ddcc9e + high limit for MV3.101 Bus 21 + + + 10.55 + + + b21fa059-f9d2-43cf-c495-098ec2b4f870 + high limit for MV3.101 Bus 52 + + + 10.55 + + + 48780771-a880-d0f9-c626-157132f283f8 + high limit for MV3.101 Bus 105 + + + 10.55 + + + fb9c435a-2d56-26fd-ca4f-cacedba6696a + low limit for MV3.101 Bus 21 + + + 9.65 + + + 5dc7cbef-5424-3416-8b1e-e996cb695d01 + high limit for MV3.101 Bus 18 + + + 10.55 + + + 9bd1adcf-6047-0110-3868-9b6769794115 + low limit for MV3.101 Bus 18 + + + 9.65 + + + 164d821b-42aa-eba8-2202-eb065681f817 + low limit for MV3.101 Bus 127 + + + 9.65 + + + 0a433165-94b0-f4ac-cb88-3fe8f0f2d791 + low limit for MV3.101 Bus 117 + + + 9.65 + + + 92792939-429d-05fe-b3c7-6619142f285a + high limit for MV3.101 Bus 134 + + + 10.55 + + + 7f45389a-6523-f953-55a3-ef77de166781 + high limit for MV3.101 busbar1B + + + 10.55 + + + 287f22ff-8e86-cc65-1f56-6dcbc607af5e + low limit for MV3.101 busbar1B + + + 9.65 + + + 930148ed-201a-a598-6aad-f4ac0a62b440 + high limit for MV3.101 Bus 127 + + + 10.55 + + + a36a2c17-5ed5-7fde-36f3-40313d5f5f59 + low limit for MV3.101 busbar2B + + + 9.65 + + + 236feeb7-21cf-533a-017e-42d31b280b57 + low limit for MV3.101 Bus 134 + + + 9.65 + + + 149ef251-c4b7-97ce-7c1e-5812e30a91e8 + high limit for MV3.101 Bus 117 + + + 10.55 + + + 02d035e7-7462-8c97-25c3-fd443e41ba0b + high limit for MV3.101 busbar2B + + + 10.55 + + + 9b43dac5-8332-378d-6c2e-b9b02e25fa77 + high limit for MV3.101 Bus 126 + + + 10.55 + + + b727d991-2908-93ba-7de4-552a5ada3b87 + low limit for MV3.101 Bus 126 + + + 9.65 + + + f43e65e1-0706-9440-0fed-e725872b9ba8 + high limit for MV3.101 Bus 33 + + + 10.55 + + + 1fd3038e-9872-6b53-b9c1-c02631deb551 + high limit for MV3.101 Bus 30 + + + 10.55 + + + dfaa0a10-f9c9-fe00-9a7e-0d7b55ae21c9 + high limit for MV3.101 Bus 136 + + + 10.55 + + + c345245d-1e49-da1b-9d99-81e49b55b9c5 + high limit for MV3.101 Bus 50 + + + 10.55 + + + f4981d76-ec39-0a59-b486-25fce300df22 + low limit for MV3.101 Bus 50 + + + 9.65 + + + f7d0d48e-b3bc-391b-1f22-e1ce7056ea4a + high limit for MV3.101 Bus 14 + + + 10.55 + + + 344c3442-f7f4-f66a-7d7e-654f67b81d3e + low limit for MV3.101 Bus 33 + + + 9.65 + + + 03012dbd-e966-d320-6ab6-1aeeccffa380 + low limit for MV3.101 Bus 14 + + + 9.65 + + + 377178c2-b6c2-c0be-ea56-6ff2918de221 + low limit for MV3.101 Bus 30 + + + 9.65 + + + b82d4ce4-d1b2-7803-c1f6-50c7da30a7d3 + low limit for MV3.101 Bus 136 + + + 9.65 + + + 9742ac43-7963-7e5b-9fdd-7da4b56c586c + high limit for MV3.101 Bus 74 + + + 10.55 + + + 02539e3e-0465-3bbf-d1f7-625ab7247f6f + low limit for MV3.101 Bus 74 + + + 9.65 + + + fbc98295-1899-23c0-40d1-70f00fac504b + low limit for MV3.101 Bus 131 + + + 9.65 + + + 92b0ce8e-5480-81d8-3c77-ac46c257f67e + high limit for MV3.101 Bus 107 + + + 10.55 + + + 6b5a48f5-620c-19f7-94c3-ab24e76e64b6 + low limit for MV3.101 Bus 116 + + + 9.65 + + + aa90ae91-69cd-0887-da04-96a23e2ea016 + low limit for MV3.101 Bus 107 + + + 9.65 + + + 206410b5-d6ca-7452-9ca4-6c63353fbd15 + high limit for MV3.101 Bus 71 + + + 10.55 + + + ad9304f0-48e9-515b-5abe-6098115b213b + low limit for MV3.101 Bus 71 + + + 9.65 + + + 8cb2834a-0a8c-3336-91d7-fed258ecd903 + high limit for MV3.101 Bus 131 + + + 10.55 + + + af34a658-77e4-a2ae-0213-b70915b35e4b + high limit for MV3.101 Bus 116 + + + 10.55 + + + edf800d0-6ff1-c4bc-137e-cf4f4f0f9743 + low limit for MV3.101 Bus 139 + + + 9.65 + + + ba92b9cf-3639-a543-7a30-54d199ef51be + high limit for MV3.101 Bus 139 + + + 10.55 + + + 3e845e53-e144-04ce-9b83-5a0067e0fc54 + low limit for MV3.101 Bus 75 + + + 9.65 + + + 01633d07-bc14-af3f-e310-4cce67df078c + high limit for MV3.101 Bus 96 + + + 10.55 + + + 6c58c995-bd78-967e-151a-42b1920bdf15 + low limit for MV3.101 Bus 69 + + + 9.65 + + + 0b024807-4a65-fe21-2873-41bad9c8eef5 + low limit for MV3.101 Bus 118 + + + 9.65 + + + e9e65c22-9f17-d3cd-9c0e-73eab73ab46b + high limit for MV3.101 Bus 118 + + + 10.55 + + + 88900b0c-eec0-ef07-8435-caf6035979ce + low limit for MV3.101 Bus 96 + + + 9.65 + + + fce8f8d9-b35c-beaa-a986-308a883f15fd + high limit for MV3.101 Bus 75 + + + 10.55 + + + c684aeb1-b6c9-a3c4-b992-c2257c11104b + high limit for MV3.101 Bus 69 + + + 10.55 + + + 104279ac-0943-ace1-e260-59e2b742fd0a + low limit for MV3.101 Bus 115 + + + 9.65 + + + 03d7e523-b539-6e37-38a8-8609750b5839 + high limit for MV3.101 Bus 115 + + + 10.55 + + + 167de0f7-2478-7065-387c-ef62e80ce5f1 + high limit for MV3.101 Bus 103 + + + 10.55 + + + 2ed849db-3f44-30f1-bbb5-aa54600f65a9 + high limit for MV3.101 Bus 88 + + + 10.55 + + + 0 + 6.03184e-5 + 0 + 0 + 0.04 + 0 + 80 + 0.03896 + 0 + + 0.4 + 8e44668f-3a15-4997-a608-5ed6fac228a2 + MV3.101 Line 16 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + fec8ad1e-3f39-4c1b-aedc-3efcbd2d05fa + MV3.101 Line 106 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + 49c03a3e-3ae4-42f5-8635-3445519c71b3 + MV3.101 Line 44 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + f59db258-a2d7-4650-b12a-9b2fd496c039 + MV3.101 Line 127 + + + 0 + 3.39292e-5 + 0 + 0 + 0.0156 + 0 + 80 + 0.01884 + 0 + + 0.2 + 4886bf39-a1f3-4894-b864-b9600b1d32e8 + MV3.101 BS-Feeder3_line + + + 0 + 9.04776e-6 + 0 + 0 + 0.01648 + 0 + 80 + 0.0088 + 0 + + 0.08 + 00d6d3e0-86bb-4d50-9a3e-f6098bb4e5b4 + MV3.101 Line 113 + + + 0 + 2.29588e-5 + 0 + 0 + 0.02898 + 0 + 80 + 0.0198 + 0 + + 0.18 + 8c51d17d-9a34-4943-988d-d00f3dbc71b1 + MV3.101 Line 120 + + + 0 + 1.47026e-5 + 0 + 0 + 0.02678 + 0 + 80 + 0.0143 + 0 + + 0.13 + 0527ac8c-38bb-4fef-be23-b75598e76250 + MV3.101 Line 125 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 05326d41-f37a-452b-9f5b-9a8b4758c9fd + MV3.101 Line 100 + + + 0 + 1.57583e-5 + 0 + 0 + 0.01342 + 0 + 80 + 0.01155 + 0 + + 0.11 + 03d1abc1-649f-4605-bf17-95722a483186 + MV3.101 Line 39 + + + 0 + 6.95549e-5 + 0 + 0 + 0.03198 + 0 + 80 + 0.038622 + 0 + + 0.41 + 96add4a0-c47c-4a70-9077-944a8c737048 + MV3.101 Line 30 + + + 0 + 1.52681e-5 + 0 + 0 + 0.00702 + 0 + 80 + 0.008478 + 0 + + 0.09 + 0f25e183-1368-43c6-ad46-19b7f20b3a7e + MV3.101 Line 15 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 0f356630-f14f-4923-af92-353810c5f3fd + MV3.101 Line 32 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 9b29f488-6093-4033-82ab-af7079c6b0e9 + MV3.101 Line 70 + + + 0 + 9.31171e-5 + 0 + 0 + 0.0793 + 0 + 80 + 0.06825 + 0 + + 0.65 + 118cce93-fa2e-44d3-937e-ddd4955ac012 + MV3.101 loop_line 2 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 07fd0aec-121a-499a-b63e-835c5cf096c1 + MV3.101 Line 87 + + + 0 + 7.65294e-5 + 0 + 0 + 0.0966 + 0 + 80 + 0.066 + 0 + + 0.6 + a2df1322-75e8-4924-913c-69a201200972 + MV3.101 loop_line 1 + + + 0 + 6.44655e-5 + 0 + 0 + 0.02964 + 0 + 80 + 0.035796 + 0 + + 0.38 + a4dcee7a-e60b-489c-9d64-59ca3753bd5e + MV3.101 Line 97 + + + 0 + 2.26194e-5 + 0 + 0 + 0.0412 + 0 + 80 + 0.022 + 0 + + 0.2 + 06fd1bf0-d73f-4789-acba-f2e38f107cdb + MV3.101 Line 117 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + a64cb6c1-d46e-4f42-bad1-fc50cabe48ee + MV3.101 Line 96 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + 0eb3c957-7cf0-4862-b070-6af9a9c0d8db + MV3.101 Line 73 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + 0dbf2ff0-d27b-4e06-abc3-9f841eb9c9c5 + MV3.101 Line 77 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 0f5cbd35-9238-41f9-918c-1e6013d9892b + MV3.101 Line 81 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + a14148c6-4ff2-4127-9348-952e0a2b473c + MV3.101 Line 49 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 11498a68-3887-439f-91ba-26f8cf25a636 + MV3.101 Line 34 + + + 0 + 7.30611e-5 + 0 + 0 + 0.06222 + 0 + 80 + 0.05355 + 0 + + 0.51 + b2e1339f-b00b-43fc-85c1-ac5518ce3b41 + MV3.101 loop_line 4 + + + 0 + 3.16672e-5 + 0 + 0 + 0.021 + 0 + 80 + 0.020454 + 0 + + 0.21 + abf0fc48-a389-4d6a-8b0e-e76a50e02cad + MV3.101 Line 59 + + + 0 + 2.43537e-5 + 0 + 0 + 0.02074 + 0 + 80 + 0.01785 + 0 + + 0.17 + ad4c71dd-967f-498c-8b69-f96c2fccbc79 + MV3.101 Line 108 + + + 0 + 3.05362e-5 + 0 + 0 + 0.05562 + 0 + 80 + 0.0297 + 0 + + 0.27 + 1853c7b4-61e1-4596-acbe-c08108875e4f + MV3.101 Line 112 + + + 0 + 0.000104049 + 0 + 0 + 0.069 + 0 + 80 + 0.067206 + 0 + + 0.69 + b1be2186-3c84-43c1-a860-729d57b93e7c + MV3.101 loop_line 9 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 1619102e-332c-4ec7-967b-ab42cf9b9b47 + MV3.101 Line 14 + + + 0 + 7.73588e-5 + 0 + 0 + 0.06588 + 0 + 80 + 0.0567 + 0 + + 0.54 + 1901d039-7430-4d58-8cb2-71be26923a41 + MV3.101 loop_line 5 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + be9e1c34-7b0c-4f12-8557-86e9056abbeb + MV3.101 Line 79 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + bf57767a-cabf-4210-ae07-3f8f0d8fe7ad + MV3.101 Line 21 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1b1a0bfb-8777-4623-a39b-0c22d180f334 + MV3.101 Line 6 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 161ce126-ca69-41df-b4ef-aa5eeef61978 + MV3.101 Line 55 + + + 0 + 2.11114e-5 + 0 + 0 + 0.014 + 0 + 80 + 0.013636 + 0 + + 0.14 + bb9f0b0c-f6f0-4f7b-b09c-9f0cab43c1e7 + MV3.101 Line 86 + + + 0 + 2.0056e-5 + 0 + 0 + 0.01708 + 0 + 80 + 0.0147 + 0 + + 0.14 + 18999834-b3d8-43f2-84c0-30aaab348a9b + MV3.101 Line 107 + + + 0 + 1.01788e-5 + 0 + 0 + 0.00468 + 0 + 80 + 0.005652 + 0 + + 0.06 + b9f18a1f-71d9-424d-819a-a1fe697ec02e + MV3.101 Line 3 + + + 0 + 2.04078e-5 + 0 + 0 + 0.02576 + 0 + 80 + 0.0176 + 0 + + 0.16 + 160c0a80-c883-425f-859b-1fc1860b182b + MV3.101 Line 115 + + + 0 + 3.06118e-5 + 0 + 0 + 0.03864 + 0 + 80 + 0.0264 + 0 + + 0.24 + bee7a922-84df-486d-85d2-0a464872a3e2 + MV3.101 Line 5 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 16e7a695-d706-4adc-9a43-01ff12272c70 + MV3.101 Line 46 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + 1e912a0d-8b8f-4f6b-bddc-f5b4cec8c94e + MV3.101 Line 72 + + + 0 + 2.80608e-5 + 0 + 0 + 0.03542 + 0 + 80 + 0.0242 + 0 + + 0.22 + b48506ab-7206-4131-a28f-e8fdf3e1a265 + MV3.101 Line 110 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1e72292b-93fa-47d9-a13a-161bed6ef36f + MV3.101 Line 109 + + + 0 + 4.52388e-5 + 0 + 0 + 0.03 + 0 + 80 + 0.02922 + 0 + + 0.3 + ca86bfb5-7b75-40e1-a557-9ad6e0ceb1e0 + MV3.101 Line 18 + + + 0 + 5.73028e-5 + 0 + 0 + 0.0488 + 0 + 80 + 0.042 + 0 + + 0.4 + 202bdacf-d455-4104-8f9d-37330083f1af + MV3.101 Line 37 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + c2476bcf-77b4-4d15-900a-91cbeb6d79a5 + MV3.101 Line 94 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + c2c7f6e5-195b-4246-b460-a7e8c0336652 + MV3.101 Line 4 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 25dbaa41-e625-45c1-b4d1-fdcc69d46c41 + MV3.101 Line 99 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + c4cfae68-b467-4a09-adce-e14ff6983cd2 + MV3.101 loop_line 10 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 2278df8a-1a52-4b58-832e-9aee56966950 + MV3.101 Line 63 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + c3555abb-1482-4092-833b-a766ec238379 + MV3.101 Line 22 + + + 0 + 2.29211e-5 + 0 + 0 + 0.01952 + 0 + 80 + 0.0168 + 0 + + 0.16 + 26b89e9c-1cf6-42c7-8334-ed6952ce6c10 + MV3.101 Line 88 + + + 0 + 3.43817e-5 + 0 + 0 + 0.02928 + 0 + 80 + 0.0252 + 0 + + 0.24 + c85c13e5-eec8-4d11-bd19-94a8a0d2fcd6 + MV3.101 Line 23 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + c0efc9c9-5d57-49a5-b55c-c81dce24fdc4 + MV3.101 Line 52 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + c47d64b4-3e10-48d2-8639-40e8dfed03ea + MV3.101 Line 45 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 306ff41b-8313-46b6-97bb-a51f567c8f3d + MV3.101 Line 25 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3075b911-f233-44c7-b8c6-67c2cd00238a + MV3.101 Line 71 + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + c128212b-6e7c-4449-b709-8b57755ff051 + MV3.101 loop_line 8 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + c125dd08-cb6f-49b7-9741-c0ff7767f3ed + MV3.101 Line 54 + + + 0 + 3.56257e-5 + 0 + 0 + 0.01638 + 0 + 80 + 0.019782 + 0 + + 0.21 + 29e058f5-a3db-4cba-8d97-54b068b7b78f + MV3.101 Line 13 + + + 0 + 3.6191e-5 + 0 + 0 + 0.024 + 0 + 80 + 0.023376 + 0 + + 0.24 + 2bbd71f9-2357-41f5-acd7-fce0f12a037b + MV3.101 Line 56 + + + 0 + 3.29491e-5 + 0 + 0 + 0.02806 + 0 + 80 + 0.02415 + 0 + + 0.23 + d1c5775f-55e2-4223-b8ed-4706bfbef0f5 + MV3.101 Line 105 + + + 0 + 5.87354e-5 + 0 + 0 + 0.05002 + 0 + 80 + 0.04305 + 0 + + 0.41 + 290f1aca-ff0b-457b-a95d-51e458d50a37 + MV3.101 Line 104 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + ccf930cd-6246-41cf-bcc7-261e8e044c37 + MV3.101 Line 75 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 325de2d8-b070-44fa-9ee5-5c694d7319a2 + MV3.101 loop_line 7 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 28091a55-6ec4-4225-b5d8-b296c7cda4c1 + MV3.101 Line 57 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 2dcb56b7-d753-4f48-86c1-ba352371e7dc + MV3.101 Line 85 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + ccef1487-fac6-4348-bc5a-79c23d5844a0 + MV3.101 Line 42 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + d14ecf82-e719-43a7-bf87-404a052dd2aa + MV3.101 Line 119 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + d57a1212-f877-4c47-ae6c-5b54021af043 + MV3.101 Line 12 + + + 0 + 1.91324e-5 + 0 + 0 + 0.02415 + 0 + 80 + 0.0165 + 0 + + 0.15 + 38aeb869-7ccc-40e6-a4eb-a87d1121ef88 + MV3.101 Line 116 + + + 0 + 4.58422e-5 + 0 + 0 + 0.03904 + 0 + 80 + 0.0336 + 0 + + 0.32 + 3c83d204-dc2d-4a9e-9456-8bf505ad6578 + MV3.101 Line 82 + + + 0 + 3.82647e-5 + 0 + 0 + 0.0483 + 0 + 80 + 0.033 + 0 + + 0.3 + 3df399c5-7a04-4bc1-ad89-9abc28b124cb + MV3.101 Line 121 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + d7f6a330-f420-4391-9d99-887f79c74aed + MV3.101 Line 102 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + dd01385f-87d5-4d7e-a97c-e3542963f6fd + MV3.101 Line 98 + + + 0 + 2.2054e-5 + 0 + 0 + 0.01014 + 0 + 80 + 0.012246 + 0 + + 0.13 + dba77fd1-aaf8-4065-a32f-054807a9f626 + MV3.101 Line 76 + + + 0 + 4.82547e-5 + 0 + 0 + 0.032 + 0 + 80 + 0.031168 + 0 + + 0.32 + df0fd72c-cbee-41f7-81af-700cd564354e + MV3.101 Line 58 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + dfd599da-89b6-4aa9-8b51-b0fba34dee55 + MV3.101 Line 131 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + e11544c7-2d6f-4bce-8e80-a85e7dc44149 + MV3.101 Line 95 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + 3622f0ce-0914-4214-8ff3-87c9c3b4255c + MV3.101 Line 89 + + + 0 + 4.08157e-5 + 0 + 0 + 0.05152 + 0 + 80 + 0.0352 + 0 + + 0.32 + 383208d7-6750-4f2a-82f6-879a29343b75 + MV3.101 loop_line 6 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + db4fcec7-1ea6-44f3-bb14-f7ada6a1a364 + MV3.101 Line 27 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 337bc4a3-850c-4691-9e23-dbf3d10ad992 + MV3.101 Line 78 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + dadbb088-9ed3-4a51-be5c-d7f5e2564059 + MV3.101 Line 132 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 418eb5bd-6a85-410a-9a1f-0e915ad69682 + MV3.101 Line 26 + + + 0 + 6.33343e-5 + 0 + 0 + 0.042 + 0 + 80 + 0.040908 + 0 + + 0.42 + db791626-9bc3-470d-81d0-6f9a7c4ce3a5 + MV3.101 Line 61 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + d78fe5ad-7365-4f56-9740-79be4d72ff78 + MV3.101 loop_line 11 + + + 0 + 2.60123e-5 + 0 + 0 + 0.04738 + 0 + 80 + 0.0253 + 0 + + 0.23 + e59be798-a2f0-409f-9717-afc06aa21b55 + MV3.101 Line 124 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 40dae9aa-d2c7-4596-8d66-97e4cd87eede + MV3.101 Line 10 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + e17c3f71-33fc-49e7-94a1-cdf1bb8a7a4d + MV3.101 Line 1 + + + 0 + 4.0112e-5 + 0 + 0 + 0.03416 + 0 + 80 + 0.0294 + 0 + + 0.28 + e5717912-49e2-4c33-9909-ee6104d9732f + MV3.101 Line 101 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3f499bf7-ebb5-4c3e-84ee-1806c787f8ae + MV3.101 Line 67 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + 42d66142-0c55-482e-a999-25c4f3c1dccc + MV3.101 loop_line 3 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + 417ecd67-e648-42a3-ab41-286013a9404d + MV3.101 Line 133 + + + 0 + 1.13097e-5 + 0 + 0 + 0.0206 + 0 + 80 + 0.011 + 0 + + 0.1 + 433c94bd-0e2a-4f67-8777-bdeb9dd8f69e + MV3.101 Line 111 + + + 0 + 3.15165e-5 + 0 + 0 + 0.02684 + 0 + 80 + 0.0231 + 0 + + 0.22 + ea0336c5-c716-4662-b14d-c31d5b4c7dd3 + MV3.101 Line 24 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 5045533f-6463-4be2-89a9-d322834fc215 + MV3.101 Line 17 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + e28e48b0-9a45-40ff-a048-9bdea00db61c + MV3.101 Line 11 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + e734548e-26d7-4242-b25e-f83a696b36e3 + MV3.101 Line 40 + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 4bb5cfc8-0f97-43d9-b42b-b9337720eb0b + MV3.101 Line 64 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + e4bab5c0-7da9-46c0-9677-86dea0175eae + MV3.101 Line 68 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + e8af0ec2-1712-4f2b-be5d-14b01305dcf6 + MV3.101 Line 122 + + + 0 + 2.26194e-5 + 0 + 0 + 0.015 + 0 + 80 + 0.01461 + 0 + + 0.15 + e38b55fa-db81-4447-b054-15d100b76d05 + MV3.101 Line 8 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 528a73fd-574c-4924-b175-fdd0953ed90c + MV3.101 Line 90 + + + 0 + 4.46422e-5 + 0 + 0 + 0.05635 + 0 + 80 + 0.0385 + 0 + + 0.35 + 51fe2fbf-bece-4e0d-9ba8-a2a06664dbb5 + MV3.101 Line 129 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 5099bbc8-530f-4986-a400-84e327e6abcb + MV3.101 Line 33 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 5096a397-bcf7-42c2-b1b8-34636f1c17b4 + MV3.101 Line 9 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 4ead5e53-a4dc-464b-bc1f-142ed7fb47d7 + MV3.101 Line 19 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + f391ebbe-2777-4e34-a0fc-163177e81fc2 + MV3.101 Line 50 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + 5d81ff25-da65-4c08-9bff-60adc7eacd34 + MV3.101 Line 60 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + f8c4c93e-2f5d-48dc-a09f-7f74d7267ff4 + MV3.101 Line 48 + + + 0 + 1.43257e-5 + 0 + 0 + 0.0122 + 0 + 80 + 0.0105 + 0 + + 0.1 + fd18150d-e044-46d8-a853-64f53e717d39 + MV3.101 Line 31 + + + 0 + 4.75007e-5 + 0 + 0 + 0.08652 + 0 + 80 + 0.0462 + 0 + + 0.42 + 5c9fddda-d1c2-46b9-97e5-cd0ce5b1768c + MV3.101 Line 123 + + + 0 + 5.44377e-5 + 0 + 0 + 0.04636 + 0 + 80 + 0.0399 + 0 + + 0.38 + 6015925c-9d52-443d-90d6-73312ac28f6d + MV3.101 Line 92 + + + 0 + 3.0084e-5 + 0 + 0 + 0.02562 + 0 + 80 + 0.02205 + 0 + + 0.21 + fa7b5dfa-ce1a-4842-b772-444e4ce0741a + MV3.101 Line 91 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 61e6a456-a2af-453f-9a65-7631f9962b00 + MV3.101 Line 83 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 685325eb-a5fc-4245-a5a0-1b2c036612cf + MV3.101 Line 74 + + + 0 + 2.14886e-5 + 0 + 0 + 0.0183 + 0 + 80 + 0.01575 + 0 + + 0.15 + 65ad9953-8ecd-4156-a6b2-755c453e3868 + MV3.101 Line 36 + + + 0 + 2.03575e-5 + 0 + 0 + 0.00936 + 0 + 80 + 0.011304 + 0 + + 0.12 + 6959c6b0-3a55-4f94-9ebf-0e223b3ed035 + MV3.101 Line 28 + + + 0 + 1.65814e-5 + 0 + 0 + 0.02093 + 0 + 80 + 0.0143 + 0 + + 0.13 + 6d537852-3bb0-480f-93f0-fccebcae6f6a + MV3.101 Line 7 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 64f12259-364f-4309-8d13-ad2ee93c4941 + MV3.101 Line 69 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 6a732427-2430-442a-b04f-b84f04c95a67 + MV3.101 Line 51 + + + 0 + 3.16672e-5 + 0 + 0 + 0.05768 + 0 + 80 + 0.0308 + 0 + + 0.28 + 6be3304c-f474-431a-9e34-17328ca655c1 + MV3.101 Line 118 + + + 0 + 1.02039e-5 + 0 + 0 + 0.01288 + 0 + 80 + 0.0088 + 0 + + 0.08 + 6d63bfd2-0008-4b77-8b14-e114e16109aa + MV3.101 Line 126 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 6ebf9c42-bc57-4772-a34d-d02a23966f02 + MV3.101 Line 20 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + 77028944-16e2-4bcd-96dd-11785ca60170 + MV3.101 Line 130 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + 7b2c1a05-06c7-4b40-a323-7fa096029d20 + MV3.101 Line 114 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 71756910-5ed7-4312-b060-bc27c5be1aaf + MV3.101 Line 2 + + + 0 + 5.73025e-5 + 0 + 0 + 0.038 + 0 + 80 + 0.037012 + 0 + + 0.38 + 7197bbb6-2fcb-40ec-bc49-f871c6d42659 + MV3.101 Line 84 + + + 0 + 5.12706e-5 + 0 + 0 + 0.034 + 0 + 80 + 0.033116 + 0 + + 0.34 + 71f546df-b8f7-4430-aadc-0663802fc845 + MV3.101 Line 53 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 70ef17ff-9e17-4ff0-836c-1bcb0b61f3d3 + MV3.101 Line 93 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 75db16e4-2bc3-4144-8e47-9a571f215e87 + MV3.101 Line 35 + + + 0 + 2.57863e-5 + 0 + 0 + 0.02196 + 0 + 80 + 0.0189 + 0 + + 0.18 + 73bd388c-11e3-460f-9f85-ac2c4ec21442 + MV3.101 Line 103 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 81f6eb74-6325-4206-b9fc-62cebe7b9307 + MV3.101 Line 62 + + + 0 + 1.65876e-5 + 0 + 0 + 0.011 + 0 + 80 + 0.010714 + 0 + + 0.11 + 7fafe799-e1b2-453e-a860-b475f7e3ee14 + MV3.101 Line 41 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + 7d7f4add-80d3-46c4-95f1-589385a567e6 + MV3.101 Line 128 + + + 0 + 5.01399e-5 + 0 + 0 + 0.0427 + 0 + 80 + 0.03675 + 0 + + 0.35 + 8043ad13-462b-4693-94a0-38a6f452d0d2 + MV3.101 Line 80 + + + 0 + 4.07149e-5 + 0 + 0 + 0.027 + 0 + 80 + 0.026298 + 0 + + 0.27 + 80dbc165-e7fa-45c9-b700-486d0a967f31 + MV3.101 Line 65 + + + 0 + 5.93761e-5 + 0 + 0 + 0.0273 + 0 + 80 + 0.03297 + 0 + + 0.35 + 84fe5e3a-2325-4593-b14b-ae07922e9fc1 + MV3.101 Line 29 + + + 0 + 2.72188e-5 + 0 + 0 + 0.02318 + 0 + 80 + 0.01995 + 0 + + 0.19 + 80b0d932-279e-4399-af25-03eea5bb4162 + MV3.101 Line 38 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + 7cf0d319-8bcf-459f-9adc-0acd7684de1e + MV3.101 BS-Feeder4_line + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 7c3503e8-dbe4-4eed-8095-8b30e5e883b6 + MV3.101 Line 43 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 85541da1-3ab1-440f-82c0-ff0f8177d93b + MV3.101 Line 66 + + + 0 + 0.000133229 + 0 + 0 + 0.11346 + 0 + 80 + 0.09765 + 0 + + 0.93 + 9174d043-2b17-4ff0-86b2-cf3865df432b + MV3.101 Reserve line + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + 897da234-091f-45ed-9534-eef4b0a6d5cf + MV3.101 Line 47 + + + 86d16297-3c13-8bde-5a28-f06b13fd90ad + G0-A + true + 2 + 2 + + + 7feffc53-3796-439f-4b9e-61878965a0fd + G0-M + true + 2 + 2 + + + c03325c5-14ac-bc27-7149-4457eb2a95e5 + G3-H + true + 2 + 2 + + + d9927a02-2ec6-1bad-9b9e-ee70b6c8e483 + WB-H + true + 2 + 2 + + + 05f2cd73-68a8-5838-eb64-0c9fa161309c + lv_semiurb5 + true + 2 + 2 + + + a1e3eb3e-fef5-521b-0b67-9e1493d8e478 + BL-H + true + 2 + 2 + + + ae730329-c63c-a155-8d12-d5ad6e0da4b4 + G4-M + true + 2 + 2 + + + aeb59b4a-e86f-e50c-128e-742bc5ee3eed + lv_semiurb4 + true + 2 + 2 + + + e5f04ee7-443f-cd0b-25ce-3fca38747430 + lv_urban6 + true + 2 + 2 + + + 2c1b9559-8fc1-c1b7-1fc1-1d13de7cc64a + lv_rural3 + true + 2 + 2 + + + + 0150e4d6-88b2-41aa-aa93-42154fc0bbe7 + HV1-MV3.101-Trafo2 + false + false + + + + c214c8e3-78d2-4580-a066-8ca2d168847e + HV1-MV3.101-Trafo1 + false + false + + + d587ac08-2ef3-5aee-d804-f05aa952b741 + 1-MV-urban--2-sw + + + + 10 + BaseVoltage 10.00 kV + a7cdf97c-c348-a393-3f71-000495c0f66f + 10.00 kV + 10.00 kV + + + 110 + BaseVoltage 110.00 kV + 3f9b0e00-ddcb-e7f0-54c0-4c45abeb7f5b + 110.00 kV + 110.00 kV + + + 17f13142-8a97-6f14-eb0f-5f9690899e04 + 1-MV-urban--2-sw + + + + c391b0d7-7edc-acc1-3e40-e44b367f23f9 + HV1-MV3.101-Trafo2 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + 1ec57857-43da-9017-8638-fb69432c570f + HV1-MV3.101-Trafo2 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + fa5b8a3f-d706-e455-bde0-6fbf098a9357 + HV1-MV3.101-Trafo1 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + 439a0b6a-17c2-9334-68b1-d3603c4bcb7c + HV1-MV3.101-Trafo1 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + b6ee02e0-0c12-7102-373a-0242037b441a + MV3.101 Bus 133 + + + + + cc61045e-56ba-2614-66bf-77e71f4e42e0 + MV3.101 Bus 141 + + + + + e5db80c3-885c-c233-8efe-44c25094aaec + MV3.101 Bus 59 + + + + + c9eb814d-544c-dced-c7e4-7c9cd3795f19 + MV3.101 Bus 92 + + + + + 58a5ba43-d173-c1c1-ba51-fc5b093e0a75 + MV3.101 busbar2A + + + + + 602a26c7-d6d7-79fb-5ca6-0b86442e0e16 + MV3.101 Bus 24 + + + + + 11aada37-7a4c-3c61-aaaf-41e00ac3d747 + MV3.101 Bus 66 + + + + + 47768294-c9a3-7695-295f-37580c57a272 + MV3.101 Bus 95 + + + + + 580dc9bd-c0fb-20ac-b6d7-c319df77f90e + MV3.101 Bus 138 + + + + + f035318d-e522-11f7-1ad6-5c1ed2167ded + MV3.101 Bus 12 + + + + + ab998416-52d8-05ee-6459-459839b11f28 + MV3.101 Bus 114 + + + + + 65d05a4a-8253-a513-13f0-ac7a45197f13 + MV3.101 Bus 120 + + + + + 54c81db0-89b5-ba2e-036a-4fa79fddb4a1 + MV3.101 Bus 25 + + + + + 6dd10276-4498-ea53-b847-bbbc9968baf5 + MV3.101 Bus 23 + + + + + 54543dae-6e27-2218-8d33-f64e84cb1785 + MV3.101 Bus 68 + + + + + 78a28a61-0df5-a916-34b4-7d01974aa8da + MV3.101 Bus 39 + + + + + e355c3ec-9fc7-2792-aab7-2c681ca576e6 + MV3.101 Bus 72 + + + + + 5352c677-45da-9ecf-c1b0-0eac2fff2d22 + MV3.101 Bus 36 + + + + + 54fd3237-c050-39b1-1c1d-072d2a4a7a49 + MV3.101 Bus 13 + + + + + 0dca8cd3-f73c-e4d1-3b8f-9f3b70b222ab + MV3.101 Bus 104 + + + + + f3c2d4e0-d306-68f2-f757-8021334e607b + MV3.101 Bus 143 + + + + + e67f4be2-b617-2b0e-3c0c-0e0e31e0153f + MV3.101 Bus 56 + + + + + d43525fd-6892-c452-2a7c-fd3c36d016ad + MV3.101 Bus 90 + + + + + b604b137-8723-81be-0e85-df1245f89628 + MV3.101 Bus 44 + + + + + 689658ac-5360-d766-8036-3080b446c7b5 + MV3.101 Bus 78 + + + + + 0c06574c-3c9e-4ae1-b7f7-a149371fb0c1 + MV3.101_Base_Station + + + + + 97d87410-badb-0766-360c-8a0b52001919 + MV3.101 node1 + + + + + 47a7e411-4fd8-a259-276f-b9f91ac6d799 + MV3.101 Bus 65 + + + + + a7269b65-b0a4-ee02-6afb-3b71275d3b31 + MV3.101 Bus 106 + + + + + d6736037-3ae8-7edd-b98e-b80770bf4de9 + MV3.101 Bus 129 + + + + + 5dc164b2-0ddd-a0c4-a767-4414f52690da + MV3.101 Bus 47 + + + + + ac3f2425-71a0-4a59-028f-0efb8f0865b4 + MV3.101 Bus 76 + + + + + 6d9c3c72-ba07-f8e3-1cf2-e5027075baf1 + MV3.101 Bus 49 + + + + + 115f9eaf-13e0-94c2-e000-dd4229a8664e + MV3.101 Bus 84 + + + + + dc9c5c7e-05a0-6ef3-52ae-d547189c7229 + MV3.101 Bus 128 + + + + + 9da6e0e9-fc7d-08d3-f362-eea7c5863308 + MV3.101 Bus 20 + + + + + 9f09d15e-215f-34ab-5718-45e9f4f6ac9d + MV3.101 Bus 16 + + + + + 760c7a73-66b4-7030-0fc1-8b4bc887485d + MV3.101 Bus 37 + + + + + 97684c59-0d96-6b35-6c13-661e8d8ba259 + MV3.101 Bus 108 + + + + + 4cba6ff3-ee76-eff3-7a68-e5e605a31b1e + MV3.101 Bus 79 + + + + + c151ce0a-3433-059e-2075-e5535c6f5de9 + MV3.101 Bus 113 + + + + + 526db1d6-3d31-519d-4bcc-e15e4eea0377 + MV3.101 Bus 98 + + + + + 8ad6129c-a88c-2aec-f075-ed9f077db94a + MV3.101 Bus 67 + + + + + e7188310-66e6-7e73-a0f7-f96c0f3d9abf + MV3.101 Bus 64 + + + + + 4e651281-df73-7d31-1c6f-03124536504a + MV3.101 Bus 73 + + + + + efcb79ff-f708-3aee-941a-bbb0c013565c + MV3.101 Bus 105 + + + + + 17b791b7-b205-d275-f973-c1cac10fca23 + MV3.101 Bus 60 + + + + + c8745399-8f49-3d30-a126-8625ef3ff7d8 + MV3.101 Bus 123 + + + + + 7123f74d-2cb3-fbd4-ca0d-c5a7b083aae6 + MV3.101 Bus 21 + + + + + 9b175a79-168a-b364-74dc-4060d49da2c3 + MV3.101 Bus 134 + + + + + 6d5fb603-0c53-6451-9e6a-350d3b470d86 + MV3.101 Bus 52 + + + + + 39445220-1eb6-a202-17e9-fa1ff26d230b + MV3.101 Bus 111 + + + + + 1b8b2d2d-68db-f891-801b-bfc32b6cbb10 + MV3.101 Bus 127 + + + + + 051940d7-5f46-1141-0345-845af73bc61b + MV3.101 Bus 18 + + + + + 58bacb1b-6b97-f35e-9056-f123409ad68d + MV3.101 Bus 14 + + + + + e4cc9c36-d963-b91a-abf2-286732fd4d13 + MV3.101 Bus 117 + + + + + d53e0af4-e39d-a077-24c2-1b9a70ca323a + MV3.101 Bus 33 + + + + + dd27bff6-9756-ba58-8cc9-271384a2db04 + MV3.101 Bus 30 + + + + + 730c8f17-bae4-c7e5-fd4f-ff814461640e + MV3.101 busbar2B + + + + + 08a95d01-c5fe-03aa-dbb0-458f5dabd564 + MV3.101 Bus 50 + + + + + 58605c91-4c45-1448-8a47-baf5166978a6 + MV3.101 busbar1B + + + + + 07407ab0-2b31-e7c7-2495-6eaa23e49b27 + MV3.101 Bus 116 + + + + + f4dcc431-dc24-eb97-45f2-3a128fd5e66d + MV3.101 Bus 126 + + + + + c47fa67e-fcb5-2620-e260-8feeea1f0457 + MV3.101 Bus 136 + + + + + 65e322b3-ae18-927a-0a0a-e4a20194ded8 + MV3.101 Bus 74 + + + + + 76d998be-a8d9-1066-6c86-d51dfcd9ecb9 + MV3.101 Bus 107 + + + + + baeb2c7c-3b75-a823-f2e3-60478164ea08 + MV3.101 Bus 131 + + + + + 1abbbb15-5d86-586a-593e-f219ec0470f4 + MV3.101 Bus 71 + + + + + 2d63de0d-abd9-c608-4b23-27f6fd6788c8 + MV3.101 Bus 139 + + + + + 7d4101ff-b95d-3ba8-9c61-ac4fafdb2a90 + MV3.101 Bus 69 + + + + + 3e9fe49e-3528-5467-1802-3e4f4915815a + MV3.101 Bus 75 + + + + + 60522422-53c2-d7d3-830e-e9e5c44b7e74 + MV3.101 Bus 118 + + + + + c536086b-6882-97c3-e0e9-299d2caee42e + MV3.101 Bus 96 + + + + + 379e69e3-db5a-e85b-35ae-aabe3b87737d + MV3.101 Bus 103 + + + + + ca89565c-a448-5cff-5cc3-7028cf5fb252 + MV3.101 Bus 115 + + + + + 5718a016-b383-8e60-b061-5b99b2ef017d + MV3.101 Bus 85 + + + + + 0b188d0d-6877-d4ea-f9dc-873a54ed4161 + MV3.101 Bus 109 + + + + + 4307efd8-8ff2-163a-56b2-b5803704805e + MV3.101 Bus 110 + + + + + 395f2cc2-76f0-8bb0-1795-3b971208544b + MV3.101 Bus 17 + + + + + e2b983c0-14cc-5594-aa8b-422ef036fca0 + MV3.101 Bus 41 + + + + + 557a023a-d38b-f093-c68a-5e9fa24a9228 + MV3.101 Bus 88 + + + + + 7b686997-745f-a9ea-9e24-60a717ee7969 + MV3.101 Bus 28 + + + + + c48aa952-8ff9-3d3e-a526-b92a68ae5b14 + MV3.101 Bus 70 + + + + + 62a5f875-d066-813f-81c9-797615c95fc7 + MV3.101 Bus 130 + + + + + 387007f2-1b11-5814-104c-2c3815d0698f + MV3.101 Bus 81 + + + + + 9352aa3a-b6e5-623c-85e1-d94be8417c8c + MV3.101 Bus 101 + + + + + b86ea43b-ac52-c894-ba81-8111b00ac85c + MV3.101 Bus 46 + + + + + 247f7ef7-4ef8-9d2a-b058-2c653f49bb2c + MV3.101 Bus 42 + + + + + 70ebd8ad-f2c0-94ed-e659-fa5193bf3c7e + MV3.101 Bus 119 + + + + + d8b2848b-4c9d-2372-3a80-0f2c54090de5 + MV3.101 Bus 61 + + + + + e93bbc88-a718-e5e8-7f4b-5e81522012ff + MV3.101 Bus 29 + + + + + 036a5044-6656-4c3e-2b7c-c44975aa666b + MV3.101 Bus 137 + + + + + 33a1d003-ba4c-3428-14cd-3f68fb165e98 + MV3.101 Bus 53 + + + + + 35f709ca-eb62-b94f-80d3-33f600bab607 + MV3.101 Bus 19 + + + + + 9d15fdb8-8da0-7b78-82e5-f0f1f5ed11cd + MV3.101 Bus 54 + + + + + 3e175583-dccb-c91c-2387-fd3bbecc8a1a + MV3.101 node2 + + + + + 32027039-ed3a-de83-3c5d-c91b8ad64fae + MV3.101 Bus 89 + + + + + 5045c15b-762c-bf1a-bd5d-611bfe7801a2 + MV3.101 Bus 15 + + + + + 5f5af2fe-efec-0a5b-f0f4-1f3778dd7ed5 + MV3.101 Bus 77 + + + + + cc64a710-bc60-8393-1534-67aeae0037ac + MV3.101 Bus 38 + + + + + 8efd3322-c2d9-71d8-fe73-579b71cde32f + MV3.101 Bus 93 + + + + + 14f329fd-ab52-8f13-7f6c-971f9a03fec4 + MV3.101 Bus 63 + + + + + 52462df7-08c3-5d01-7b32-7b605390918d + MV3.101 Bus 62 + + + + + 44a189e2-ec1b-fe81-2817-57addffb09eb + MV3.101 Bus 94 + + + + + 935d2af4-7956-7880-a02b-57b489653dce + MV3.101 Bus 102 + + + + + 7a930359-285b-06b8-9672-18ea41f0958a + MV3.101 Bus 142 + + + + + 94a7ad37-fb23-78af-fe8c-d8c8f26d72e0 + MV3.101 Bus 43 + + + + + d4580c16-00b7-ef82-9cc1-001fd2d51e1d + MV3.101 Bus 22 + + + + + 0850c86c-abab-7768-04a2-e0bb2ad02e9b + MV3.101 Bus 55 + + + + + 256e6ac2-a956-059b-fdb6-813245400f31 + MV3.101 Bus 87 + + + + + 3482e8d7-8ae1-82b0-5763-fef5ba4f54cd + MV3.101 Bus 48 + + + + + 7397c38d-7d07-f2c1-48ab-b833a45f94f3 + MV3.101 busbar1A + + + + + 28bd024f-b497-3bc2-916e-53c309e94e95 + MV3.101 Bus 27 + + + + + bd450768-9c66-bc20-d69d-d10dadf376f6 + MV3.101 Bus 45 + + + + + 0bbad25c-73c2-2ff1-c743-e7ebe4b8d659 + MV3.101 Bus 32 + + + + + bc0876c2-366d-2935-f721-c68ad693d169 + MV3.101 Bus 91 + + + + + 92d70c56-44b9-6a46-91e4-62f5b34bb478 + MV3.101 Bus 86 + + + + + 8cb33678-b00f-6b1b-e5c5-895297997d97 + MV3.101 Bus 40 + + + + + 3261dc3a-e831-fcbd-35ae-e94d260aa6aa + MV3.101 Bus 122 + + + + + a24d1791-8984-4f63-ccc2-1fbce9ffc636 + MV3.101 Bus 82 + + + + + d950c4ac-3587-ff37-d12c-2d76bdf6ad69 + MV3.101 Bus 26 + + + + + 7124a4e1-19b4-de33-d76b-812573026325 + MV3.101 Bus 121 + + + + + 92b24ba3-5137-bd4d-8e19-bf9a2a68ee9b + MV3.101 Bus 11 + + + + + 76cde34d-c93e-25d5-24b7-d14275d1391b + MV3.101 Bus 100 + + + + + 2ba88481-69ec-3ea6-f1f5-0499c7e7fd02 + MV3.101 Bus 97 + + + + + 9a005fe3-3282-5da6-6c1d-1a9a7406db94 + MV3.101 Bus 58 + + + + + ab45297a-e03e-3cc5-d3aa-da843ea91a2e + MV3.101 Bus 83 + + + + + b9d34c1f-d6d1-af76-d959-6484604da4f9 + MV3.101 Bus 124 + + + + + 119fc018-17a5-1d66-9c97-77ce2fcc5238 + MV3.101 Bus 99 + + + + + 2e4f41c0-9317-3505-2bc6-62aade4ed90a + MV3.101 Bus 140 + + + + + 537a4af5-7195-3b72-0557-fdd868ba34be + MV3.101 Bus 80 + + + + + e55c9391-d83d-72e9-4d3e-38e5ad0fec9f + MV3.101 Bus 132 + + + + + f7daf3a7-0f47-9b52-8f23-52d373205dca + MV3.101 Bus 135 + + + + + 04fb1fc4-356a-4c49-d82f-71531342a8fb + MV3.101 Bus 34 + + + + + 0226e00f-bcd7-e1f0-a04c-b918104167da + MV3.101 Bus 31 + + + + + b0b45ac3-cf55-2d3b-718e-9c1d178af3e5 + MV3.101 Bus 35 + + + + + 0ab8cdb3-6d6f-de47-4bc5-918cb7e9de5f + MV3.101 Bus 112 + + + + + 63ee912d-e5f0-d84e-b14b-2ba9982afba7 + MV3.101 Bus 125 + + + + + 2848b881-d889-0a73-8f6e-8891b4aab963 + MV3.101 Bus 51 + + + + + 45fc6f7d-c57b-f5cb-859b-b1c372d46452 + MV3.101 Bus 57 + + + + + 22895fe0-8efa-45e8-832a-37d2757a92ed + HV1_MV3.101_Substation + + + + + 49cfd1e5-c52f-7f87-b853-76c12e21a35c + HV1-MV3.101-Trafo2 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 1a8a5059-b1ba-7f47-4385-c92f303b0d83 + HV1-MV3.101-Trafo1 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 864c19f1-3f36-9ff6-ee01-8146f9ea44b1 + HV1 grid at MV3.101 + + + + + + lv_urban6 + 0dcd000a-f0fa-42f8-b2cd-b6c263af1aed + MV3.101 MV Storage 133 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + 11c0a680-8b5b-42d0-aa62-ae1afe7e8032 + MV3.101 MV Storage 1 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + 12b5ca89-4f47-4f63-9104-9d08bfc277bb + MV3.101 SGen 111 + 0 + 0 + 0.2523 + 10 + + + + lv_urban6 + 10ab3fe5-ca26-444d-a34e-efd33b7fb172 + MV3.101 SGen 84 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 0541fc1f-b8db-45a6-a0fc-fc3d447dea49 + MV3.101 SGen 51 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 132e8803-0582-4699-8e7c-132c0b064fe4 + MV3.101 MV Storage 29 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0c1b63f6-bfcc-488b-8d25-b4bcfe7c3d33 + MV3.101 MV Storage 42 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 163a4786-fc9e-4f67-ae93-5f2302e45970 + MV3.101 SGen 102 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 16b72425-e4c1-4ccc-a9e2-103d312aa031 + MV3.101 MV Storage 117 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 1c3df07f-5859-4336-bea0-04fae2435087 + MV3.101 SGen 100 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 1c5edae2-ee94-4e7e-97b6-96581fb61aa7 + MV3.101 MV Storage 22 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 1cdbe127-3033-4d5f-83b9-15cfeb19aed3 + MV3.101 SGen 88 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 05bdce2a-51a3-4faf-8954-e1f54b917ee9 + MV3.101 SGen 107 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 1d73426e-e96a-4892-ae0f-f51111a2243b + MV3.101 MV Storage 113 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 11ca0788-6f61-465e-ad5b-6243f4da8664 + MV3.101 SGen 119 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 130a00db-4ff7-413b-89e7-b51927e19395 + MV3.101 SGen 47 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 1d816f26-d730-468b-887f-00db324687f8 + MV3.101 SGen 90 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 1ef58b22-db47-497b-8f6c-3cfef81ea7fa + MV3.101 SGen 114 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 1db23e21-1386-435e-b1c4-55438aec0c88 + MV3.101 MV Storage 25 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + 104d524a-0095-4144-905c-bd948ebb21e7 + MV3.101 SGen 128 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 1f054a58-a7a0-42da-b429-57d3b4ad126f + MV3.101 SGen 30 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0da75dee-9fad-48d5-bd83-f9f427cd883c + MV3.101 SGen 120 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 12137f82-6fea-40bd-bc38-55ab9228f3fe + MV3.101 SGen 105 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 13e37822-5633-475c-956c-985cf9c17d3e + MV3.101 MV Storage 9 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 16456899-0ee3-495d-bc9c-7338d500f798 + MV3.101 SGen 125 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 169059b6-1bea-4db5-8f17-3483ae91a1cf + MV3.101 MV Storage 48 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 173dcb34-e3df-41e1-b922-96d83dd53491 + MV3.101 SGen 10 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 0e9e40a1-6993-4833-8275-b4f351a1508e + MV3.101 SGen 28 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 157c4bc7-38f1-476b-9161-7d10aa1b54df + MV3.101 SGen 44 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 17daa0b4-70db-49a5-9695-10331a032af1 + MV3.101 MV Storage 16 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 19210669-5c2d-4f8a-b38a-eb453ed750b7 + MV3.101 MV Storage 66 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 155818af-4a9d-47ca-a4c5-b3492c21df16 + MV3.101 MV Storage 20 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05783df4-d9ea-4ba4-a6ba-6a92d6f962b6 + MV3.101 MV Storage 12 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 165261b4-24f8-4095-ad25-9bda58ae4553 + MV3.101 MV Storage 41 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 1bcd6b30-0eab-463f-afda-dbc5ece904fa + MV3.101 SGen 20 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 037ebd05-9ae4-4576-8d66-1b1b71e7a582 + MV3.101 SGen 32 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0af22853-a576-40fb-9054-28b537f5f7e4 + MV3.101 MV Storage 61 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 11afbbb4-aa6a-4647-a8a5-3ff01d74e7a9 + MV3.101 MV Storage 34 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0a778181-c3ba-4326-a697-1f6a353deff7 + MV3.101 MV Storage 45 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05f82fb7-e9e0-4d85-a235-deeeb8e918a1 + MV3.101 SGen 12 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 2290c230-02d1-4dc8-854b-500474f3dd9c + MV3.101 MV Storage 71 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 22cbd18e-381d-4a12-96be-158669a4f9b5 + MV3.101 MV Storage 54 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 29b2105c-6a0e-49cd-9a6a-d3e7a3e1212b + MV3.101 SGen 21 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 33524a46-4f45-4c7b-842a-d9b6f6f5acdb + MV3.101 SGen 48 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3357d0f3-4f9a-4115-8957-01fca9491d34 + MV3.101 SGen 70 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 3a1f07e9-8c09-44a0-8d3f-0dd9e157c4c8 + MV3.101 MV Storage 80 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 2313a5f3-d454-4088-a8e9-9d63679d5483 + MV3.101 MV Storage 28 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 3f1f3f65-08de-4db3-a1ee-7cf514812b0f + MV3.101 SGen 13 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 331bf763-9b98-458d-91ca-815cf43b72b5 + MV3.101 MV Storage 94 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 3fda2746-f855-4626-a981-1d450b209f65 + MV3.101 MV Storage 121 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 21d2011d-bb05-46f0-842b-d6f300981560 + MV3.101 SGen 3 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3a862fa1-4d3d-4589-874d-d2ee50fc240f + MV3.101 SGen 73 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 33fdf0e6-3966-426c-ae4a-b41d1aea86dc + MV3.101 MV Storage 21 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 406bbd1e-3a1b-4a17-bf2b-c5c838be2832 + MV3.101 MV Storage 108 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 262aa101-1087-42a4-bd64-dcccf6a7c887 + MV3.101 MV Storage 118 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4199355a-6d02-426c-92ac-fe862cbac50f + MV3.101 MV Storage 33 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 41ef6f44-8ea5-4da8-893f-f5d758cdc87a + MV3.101 MV Storage 23 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 4745aaa5-910f-4162-a8e6-9600ba7113b6 + MV3.101 MV Storage 76 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 44e47fb7-0158-45d2-a0c2-13fef9f631ce + MV3.101 MV Storage 81 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 4add3828-7eea-4d77-90a2-dd17f22b2bf0 + MV3.101 SGen 5 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 4cf62559-4d6b-4747-8e02-9cb1c0319a82 + MV3.101 SGen 112 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 23f1d0e3-c234-4138-8ed8-54deda17fd37 + MV3.101 SGen 96 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 453c0b33-7930-4caa-ade0-d40ef682ac80 + MV3.101 MV Storage 111 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 51e62a95-9a31-4b17-8f55-a0c1467c167f + MV3.101 MV Storage 64 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 5337d65e-0d14-406a-8961-c370ec406a07 + MV3.101 MV Storage 128 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5773c9be-c477-445a-97c5-675997ebc67f + MV3.101 SGen 52 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 584b110c-7643-4ed3-8044-196c9aeef167 + MV3.101 MV Storage 8 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + 5d37b09f-ee82-48fb-b852-31ca627ee8f9 + MV3.101 SGen 83 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2cfb222f-ae03-4443-8e0f-5b6ffbb95cb8 + MV3.101 SGen 8 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 2e7b8742-4313-4215-8828-86fbd93e49bc + MV3.101 MV Storage 53 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 2f30be2a-38de-4112-97da-d640068ae463 + MV3.101 SGen 45 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 35a6c90b-cf0b-44dc-82d1-108d5831e515 + MV3.101 SGen 46 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 3eceb2d3-bbd2-4d15-8174-b34e76e5458e + MV3.101 MV Storage 10 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 23d6d9d6-62f3-4334-9ad9-fd342eb762bc + MV3.101 SGen 38 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 24587219-0a2a-47b6-985f-9faa783f7c49 + MV3.101 SGen 59 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2fdb9cc8-d408-483e-8e34-0d668b57f560 + MV3.101 MV Storage 123 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 2285022b-32b6-437f-9cb3-15fc86d452cb + MV3.101 MV Storage 60 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 39b02ca0-0a73-45f2-8519-ae4f584a72db + MV3.101 SGen 34 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 3dc31b4e-bfbc-4621-a4f1-1ce53363ee31 + MV3.101 MV Storage 105 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 42693952-3252-48f8-b537-ba2acbe73401 + MV3.101 MV Storage 63 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 439bc75b-2f9a-4dcf-8c3d-d5d2b98bba65 + MV3.101 MV Storage 99 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 44a70f76-6dc4-42ab-9052-ae77937e0fd1 + MV3.101 MV Storage 36 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 2d5cef5a-e874-4d91-85fa-f0fa7792e203 + MV3.101 MV Storage 11 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 235eb701-c43e-4266-9f3e-44621159f757 + MV3.101 MV Storage 114 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4550ce83-9380-4c2d-ba48-edce4db8db10 + MV3.101 SGen 65 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 49c7e3ea-aba3-44d0-857d-d7ca680da93f + MV3.101 SGen 132 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 4afa186a-de83-4b67-82b5-ea028fbe2123 + MV3.101 MV Storage 91 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 58c7151c-b54a-4bff-825c-c9bca1dd4cc5 + MV3.101 SGen 14 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 4ab8a1ac-c6c8-4507-a0ab-d5157aca026c + MV3.101 SGen 113 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5744b5b5-0ae6-441e-a95e-9e9fe1aa94ea + MV3.101 MV Storage 58 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b0f44c2-9bdc-4bad-815d-e452af177ff5 + MV3.101 MV Storage 89 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b2c7cd7-47e0-411d-9c59-ba266a1b42f4 + MV3.101 SGen 91 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 5d70f316-198e-40a8-88d2-badc16c283a5 + MV3.101 MV Storage 109 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5dd5801d-96ad-4517-8c79-1e0a504ee194 + MV3.101 SGen 29 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 312b6b9a-0654-4476-bbd7-db5fef48f1c4 + MV3.101 SGen 15 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 334b1d66-6caa-44c1-a244-008b46809f2d + MV3.101 MV Storage 103 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 5e36a45c-bef3-4e23-aeca-50bdfa5bbbcc + MV3.101 MV Storage 65 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 5e4ff613-9ba4-41ba-b14d-b886ec3119a8 + MV3.101 MV Storage 35 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 5e69c9a7-4bdf-4f96-9fdd-30b16d75349b + MV3.101 SGen 54 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5ec12e7e-1c9d-412d-8930-307e96bd1373 + MV3.101 MV Storage 57 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + 34245e19-5165-49f1-abb1-b386670b8432 + MV3.101 SGen 122 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 5666380f-2408-4727-80ac-2bf79012dc52 + MV3.101 MV Storage 95 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5f7c9f77-781a-4ed5-be6c-7dd982a48ed7 + MV3.101 SGen 108 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 577335d9-73a7-441d-9312-27376a207ff6 + MV3.101 SGen 123 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 69972b42-c433-45ae-8fb9-ca13e5b38180 + MV3.101 SGen 31 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 8264ac88-3f62-4866-a88a-8033bd49e7ca + MV3.101 MV Storage 19 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 8b3336a5-9d7d-4b6c-a72f-79f5d63c205c + MV3.101 SGen 71 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 77d2308a-bc7e-4a44-90c9-e82d823a03a2 + MV3.101 MV Storage 112 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 765b14df-31e6-4b7d-865a-f4bd38be6318 + MV3.101 SGen 69 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 83127641-d4bb-4b86-8cbc-b55abd050341 + MV3.101 SGen 17 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 87ca3466-bccd-48c1-9a2a-c8985d9e732c + MV3.101 MV Storage 44 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 8962194b-9e19-4334-9083-d66b04add360 + MV3.101 SGen 43 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 8d76bfd5-e0d1-4dbf-b770-14b96d2a4af2 + MV3.101 SGen 53 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 6fa1d2c3-09e4-44d5-8ea5-16940337a520 + MV3.101 MV Storage 130 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 63637818-369e-4c6e-8286-f864bd79458d + MV3.101 MV Storage 27 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 70b41c19-5a00-438b-b35c-d92a24316322 + MV3.101 SGen 2 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 89e911da-5378-47bf-a64a-80042cfe047e + MV3.101 MV Storage 14 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 5fa0db49-2df0-48f3-bb0e-57c03b3ddc06 + MV3.101 SGen 57 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 6a9c52b6-de64-4811-b0a4-27e75acb8fd0 + MV3.101 MV Storage 69 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 792f0b5b-6189-4393-bc36-8bec8535f899 + MV3.101 SGen 126 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 8e9c2499-4077-451b-b284-5698a20ead12 + MV3.101 SGen 95 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 659894fd-e683-4680-ace0-92ad0635cc37 + MV3.101 MV Storage 92 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 8f6cecac-9876-42f8-8c2f-5c6f20a7f9db + MV3.101 MV Storage 73 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 916b7018-e5a1-4aba-b5d4-ffdfed9756e7 + MV3.101 SGen 37 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 9620e818-1fc8-4cee-90f1-a544188c2651 + MV3.101 SGen 97 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 80b1a107-81c3-4e85-b58e-6649f6a8eebf + MV3.101 SGen 75 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 668f5c04-07e3-4b46-b19e-445368b594d2 + MV3.101 MV Storage 110 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 900a7b6d-46c9-4a8f-a09c-f60ef5aa0151 + MV3.101 MV Storage 18 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 77cc5d76-c082-418a-8fc9-87f1c4c08f14 + MV3.101 SGen 129 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 7f07701c-ca7a-4869-85d5-ac97a842f74c + MV3.101 MV Storage 68 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 99493d51-c8a8-4470-ade4-4fe749ee0ddd + MV3.101 SGen 72 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 99b2ffdf-f2bd-4c29-9f9b-432b16c77f4a + MV3.101 SGen 85 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 83a46f9d-3e77-45cb-8be9-f8ed3ad04afb + MV3.101 SGen 109 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 6c7b8dee-acc0-4bf3-957d-1211d4155e15 + MV3.101 SGen 74 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 883ee820-1148-4d32-b356-209746dab4b0 + MV3.101 MV Storage 24 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 74d26114-3d80-47cd-ac0c-e2088dcbc437 + MV3.101 SGen 116 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 9155b04f-d6e4-49b6-97f2-f987c02e618d + MV3.101 SGen 26 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 8ff6c5c8-e0ad-40a3-b399-c9cc2321292d + MV3.101 SGen 23 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 9e3ee225-9109-4b48-a1e3-e195022964ce + MV3.101 MV Storage 120 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 9f366de6-1988-48dd-9841-95159eccbaf0 + MV3.101 MV Storage 124 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 6b6235f1-f478-447d-bf27-ece62e3556de + MV3.101 MV Storage 104 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 74cc8ed7-f010-4f10-83db-82f50586c6ff + MV3.101 MV Storage 131 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 96cdf27c-93b6-4cd3-8de9-5b2bd9e85775 + MV3.101 SGen 40 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 728a3267-0e49-49cb-bf7a-92f4761bcb15 + MV3.101 SGen 50 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 9599d93a-a655-4618-9c6e-0c7336402e96 + MV3.101 MV Storage 100 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 6c30ce7c-4c36-4c69-a099-81d33fcc1d40 + MV3.101 MV Storage 32 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + a097e809-e41b-4d96-9a03-c8a4532594d5 + MV3.101 SGen 106 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 64841da5-a3df-4592-babd-4abf340bde7e + MV3.101 SGen 19 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 67accd57-25ad-4aad-a129-d97ad09f517e + MV3.101 MV Storage 67 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 69d568e0-91a9-40b7-8a2f-e3d546f5632d + MV3.101 MV Storage 13 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 9dc81a53-8430-4f8a-abf4-fc5a6c1663d5 + MV3.101 SGen 39 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 661ad891-cb09-4f91-96a2-87305d4ef08f + MV3.101 SGen 86 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 8aec1d63-4481-4b29-93fe-cdf352e8d76b + MV3.101 SGen 55 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 6fe87550-bc95-4778-8127-2f95401bcdb8 + MV3.101 MV Storage 51 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 736dffa5-dd25-4af5-8bff-9755e5ade175 + MV3.101 MV Storage 98 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 81c9a7eb-2b2e-4f21-bd05-635cbf2edd03 + MV3.101 MV Storage 72 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 89ca11c6-220e-44a2-9c66-343d885f1462 + MV3.101 MV Storage 47 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + a09b1044-83d0-42eb-b5ef-c74793e46924 + MV3.101 MV Storage 6 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + a0b18eab-719a-4c53-b610-b72e89608044 + MV3.101 MV Storage 3 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6f8d90f7-5358-470c-9fc5-975d965245aa + MV3.101 MV Storage 77 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 9deb86d3-6d35-482c-899c-8488c51789e1 + MV3.101 SGen 62 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 9dae6627-4645-4180-8524-59d92cece369 + MV3.101 SGen 115 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + a33117cb-65ca-4f2e-ada4-aee7137bb5ce + MV3.101 SGen 87 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 7ca7c8a0-3e9c-4109-8dd7-e4fe0fe40343 + MV3.101 MV Storage 106 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 74372083-67a9-4aea-a341-70b7a74d7423 + MV3.101 SGen 103 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + a4e507a6-c3f2-4cf2-b5f2-ce8156a8690c + MV3.101 SGen 67 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 616ef04b-932f-49b2-b49a-509cf9e0d85c + MV3.101 MV Storage 5 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6472fcb2-8211-4de2-9aab-3f566fe20ca1 + MV3.101 SGen 76 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + b1bac79c-4e14-450e-9db9-91d6582c84fc + MV3.101 SGen 64 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b7b2bcce-4458-4064-a0b7-a3fd1f51eed5 + MV3.101 MV Storage 38 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + c222b6db-dcdb-4a84-9fd7-6752390e7ce6 + MV3.101 SGen 117 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bd57cf2c-ae28-4a6e-a5d3-4350dadf12a4 + MV3.101 SGen 77 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + a56c0180-d41f-4c54-8557-9990224bcff2 + MV3.101 MV Storage 79 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + c74cee0a-f8f9-4902-bd51-e8f32002dcb5 + MV3.101 SGen 130 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adba62b5-31de-40dd-ba5e-6016817e0b6b + MV3.101 SGen 36 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf7f0f4d-cb0a-44f4-a204-e4d45c45256c + MV3.101 MV Storage 59 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d6007ee7-29c5-4979-aadb-eaf67ec82677 + MV3.101 MV Storage 93 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + a62d5e8e-c850-42a7-bb2e-0d9912370396 + MV3.101 SGen 60 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + b770926c-21c7-4a5b-ab8b-f7118a06dcfb + MV3.101 SGen 58 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + af641d59-7cb4-40af-b59a-274fe8d40012 + MV3.101 MV Storage 116 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ce77bb95-6d0c-4746-b567-1053bf75134c + MV3.101 SGen 6 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf4d009a-15e5-4385-a8f9-06675e2b3cb9 + MV3.101 MV Storage 97 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + cf6e5150-b194-40a4-a374-c52ca2fa7851 + MV3.101 SGen 99 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + d7f17798-671f-48ce-a987-022efe8ea074 + MV3.101 MV Storage 56 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + aee65a47-bf09-4a89-ad43-ff1db74c53e6 + MV3.101 MV Storage 84 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d96ba3ab-0293-4bc6-8bbb-6dc5a26d3421 + MV3.101 SGen 49 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + dc6c3a5c-80da-41f4-b4c5-f36751e73ba3 + MV3.101 SGen 56 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + a9f288b8-ffba-4a9b-989c-2e7c0ce43884 + MV3.101 MV Storage 43 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + cc72a949-f5b0-4024-83cc-2c9b1518fb6a + MV3.101 SGen 121 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + b73138ea-e59d-4add-aefb-0c0e39d45a32 + MV3.101 SGen 89 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + d161600f-ca3b-40f5-a291-22090f00ed8a + MV3.101 SGen 11 + 0 + 0 + 0.1712 + 10 + + + + Hydro3 + d9a7edfd-e7ed-4572-af38-02c1c23ce77f + MV3.101 MV SGen 1 + 0 + 0 + 2.9 + 10 + + + + lv_semiurb5 + e127e90d-70ec-400d-b732-cbba8d74168a + MV3.101 SGen 63 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + e1dd8c5f-59d5-4b0b-9a79-aac238094d6e + MV3.101 MV Storage 126 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + e2f13a8a-76ee-4faf-8016-ecdf87f0bc26 + MV3.101 MV Storage 88 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + b108680b-616b-448c-8147-29d25abec7a4 + MV3.101 MV Storage 82 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + c189aebd-8e65-488c-8bd3-5c94fe4dac7b + MV3.101 SGen 61 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bb7a995b-b646-41cc-9943-b24ef708a1cb + MV3.101 SGen 79 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + a923cfdc-2409-467f-b56e-0fed3d3b2d55 + MV3.101 MV Storage 102 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + bcb34cdb-aea5-466f-8dc7-180eb9b37d2e + MV3.101 SGen 131 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + ccd6c75d-f3b6-4210-a68c-bc31c7cc6bbe + MV3.101 MV Storage 78 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + c1146c39-35b9-4f1e-ab34-5ea518993714 + MV3.101 MV Storage 107 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + b9fde374-4332-4151-b397-011bbfe1ce8a + MV3.101 MV Storage 83 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + ac9e35d7-190e-488a-82b7-f3a0767b96cf + MV3.101 SGen 7 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + c4862ca4-89e9-4d4f-b8d0-2309d9884cd1 + MV3.101 MV Storage 127 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + a6d3f4d6-8fe6-44ee-abc3-c97463efc3d8 + MV3.101 SGen 92 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adf0a6f2-f1e9-4a6c-b8aa-58d563bac0ae + MV3.101 SGen 33 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf3bfaad-c3f7-4c8a-b45a-d093b614cbe5 + MV3.101 MV Storage 75 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + bb6b73e9-2832-4778-89f0-69519c7de317 + MV3.101 SGen 133 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + aa4f9936-1432-4cce-aea7-6d52430cb0d6 + MV3.101 MV Storage 55 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bcc7a28e-b4d0-44d9-91e9-fe7ffe89f7c2 + MV3.101 SGen 78 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + cde19335-3d2e-4251-9c68-b0d23b2958f4 + MV3.101 MV Storage 115 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + b0395b28-b85f-4b3b-809f-9bc2cc66021b + MV3.101 SGen 81 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + ceca9c98-3deb-43aa-83fb-be94940efa9a + MV3.101 MV Storage 17 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + d0bee435-1b3c-40f9-9e60-211149e7d6fc + MV3.101 MV Storage 2 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + d0d3daf6-5062-4a89-ab56-f3218a1f97ad + MV3.101 MV Storage 31 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + d2b31764-56c9-4ed8-9b9e-196865ba9d7c + MV3.101 MV Storage 119 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + d4ea00dc-c67f-4049-b987-0ea403d92039 + MV3.101 SGen 27 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + d658229b-f7e1-448c-8a71-476be4d22fd3 + MV3.101 SGen 18 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + db508db1-32d7-4996-a15c-f426579daf00 + MV3.101 SGen 110 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + c177863c-53e7-4202-be2c-b89f98fcc2e9 + MV3.101 MV Storage 49 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + e0289568-e905-4773-9017-72fd1973e01f + MV3.101 SGen 16 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b8c3feaa-ced5-4ce7-98dd-2c7d80a53f81 + MV3.101 MV Storage 30 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + aa638558-9d26-481f-9828-4e959b1a56aa + MV3.101 MV Storage 40 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + b87e223c-91c4-4299-bad4-0b495266f505 + MV3.101 MV Storage 85 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bb95398d-78d1-4b94-a31d-a9d62d94ab27 + MV3.101 SGen 9 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf658c61-b214-4794-baca-d1ec4f5aac09 + MV3.101 MV Storage 62 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + ccec02d7-bd62-4350-a767-808833d1116f + MV3.101 SGen 93 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d21526e4-7a31-41d6-861b-626f69cd0923 + MV3.101 SGen 35 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + bbbd3c7a-7293-4377-bed1-8f09afb50168 + MV3.101 SGen 41 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ad3769ae-8568-469a-a418-6db01e9dcc3e + MV3.101 SGen 4 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d3b768da-d85d-4e60-9d42-f25c3d31e790 + MV3.101 SGen 127 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + e5909199-409f-4bcf-afe7-91162d27a049 + MV3.101 MV Storage 46 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fd2c013f-91ad-4731-8c05-020966be5c21 + MV3.101 MV Storage 129 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + efaf4560-f7b8-46f3-bf37-c3026fdde8cb + MV3.101 MV Storage 125 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ec6a90a3-baa1-4628-8015-56587c7f066f + MV3.101 MV Storage 90 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + e8ca0274-7972-41d0-81f5-5ce83ddcafa2 + MV3.101 MV Storage 70 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e6b0180c-f587-4b99-b24a-59161892522e + MV3.101 SGen 25 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f50f9b84-4f87-4e7a-a033-3685ba290923 + MV3.101 SGen 101 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + f22bd768-44fa-4f44-9e1a-ada4ecc0c7b6 + MV3.101 MV Storage 39 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + fca529f1-796c-48fb-b96f-e498c9eec06f + MV3.101 SGen 24 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ed174c39-5407-4821-9e5d-a06a29050cf4 + MV3.101 MV Storage 37 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + f4f05b3f-5b4f-4ca4-9ccf-1fead37cfe0b + MV3.101 SGen 22 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f6a1a3f4-2775-4653-8123-5731811db974 + MV3.101 MV Storage 96 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + f4dd0f7f-ac97-4475-94f5-34c861f00f11 + MV3.101 MV Storage 26 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + f98a8df5-ab23-43c0-be13-bf0013c8f242 + MV3.101 MV Storage 74 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + fcc74610-1be7-48d3-9a5a-080a8542907e + MV3.101 MV Storage 7 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + e6180b3b-254b-4b43-a32e-2a7d239aff5a + MV3.101 SGen 104 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + fdf7314e-8cb0-43d2-8a7a-36600525e32c + MV3.101 MV Storage 132 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + fa8012d8-f024-40b1-b931-6a1bb3cb29a7 + MV3.101 SGen 124 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + fd056a2a-40d4-4b2a-9491-7207c5d5ea85 + MV3.101 SGen 118 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + fbe0c20b-da2b-448c-8229-7614a2c4abcf + MV3.101 MV Storage 15 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fa99ba1f-c0e4-4c0e-a6bf-ea6a3a7ee21d + MV3.101 MV Storage 122 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + e7f461ec-44fd-4986-82d1-20a35f20fa49 + MV3.101 SGen 94 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f50e5096-6f24-43e6-84d9-c382e8a5e604 + MV3.101 MV Storage 86 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + ecfcf7a0-65c3-46ba-89f7-ecc79fec1ddf + MV3.101 MV Storage 4 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + f3efdd0e-eaa0-429a-b103-ba4800b3f174 + MV3.101 SGen 1 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f25b840b-3235-442d-a54c-d46cb290a211 + MV3.101 SGen 80 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + ea61d02e-4cf4-450a-8bdf-b4b9ff984a5c + MV3.101 MV Storage 87 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + eb25dab9-2373-4815-95f5-d43bfa5e2e4d + MV3.101 MV Storage 50 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + eb95a6e1-1d97-4757-a3fb-9813cd878298 + MV3.101 MV Storage 52 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e78c7485-dd98-4d70-a4e0-f3d33f93fbee + MV3.101 SGen 66 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ebe52646-d71d-41f0-9135-e39aeeb2e4d9 + MV3.101 SGen 42 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ec15ecc0-78a7-4012-aa47-f4dfbc524474 + MV3.101 SGen 82 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + fc97a6f2-1a84-451a-9fa6-b3d343fe08ff + MV3.101 SGen 68 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + e712dcdc-0a76-44da-8e77-fb20a70e07f9 + MV3.101 SGen 98 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + eef42a51-8e61-4e24-876e-961cb4fd9d9e + MV3.101 MV Storage 101 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + 3de2f8c8-eefb-47d0-3f1f-c7e2e697bf70 + 1-MV-urban--2-sw + + + bd6d8cee-c8f4-7932-c9ee-d9585f5143f7 + HV1-MV3.101-Trafo2 + + + + + 881600c4-d3b4-cab0-050b-08dcbb9ab4bb + HV1-MV3.101-Trafo1 + + + + + + 1bae3fe1-0bc9-46ae-856a-9b5a21af169b + CB MV3.101 Busbar2 + false + false + + + + a6fae133-a560-411b-aca0-3ff83654a736 + CB MV3.101 Busbar5 + false + false + + + + 2ef567ec-21ab-41c8-9b02-90560b261497 + HV1 Switch 319 + false + false + + + + 3e511a23-3e14-4ddd-9e9c-89035d411cc5 + CB MV3.101 Busbar3 + false + false + + + + 0bf73b1b-41ee-4e34-84fd-e63a417008d5 + HV1-MV3.101-Trafo1 CB HV-Side + false + false + + + + 822ca83b-e968-47d6-9066-d5537f84f785 + HV1-MV3.101-Trafo2 CB HV-Side + false + false + + + + b6c2111b-e500-4aba-bb72-7ef14cd3e21b + CB MV3.101 Busbar0 + false + false + + + + d10f2815-3415-4292-9de6-5170fd628217 + CB MV3.101 Busbar1 + false + false + + + + 054dd2d7-a6e2-4c31-a381-d2d2d40bb8a1 + CB MV3.101 Busbar4 + false + false + + + + 78d65f8a-c5b2-44a8-b251-2d296301c0a7 + CB MV3.101 Base Station2 + false + false + + + + 0a7b1590-fa32-4ae4-9b7c-de0f60fd9ffa + CB MV3.101 Base Station1 + false + false + + + 0 + + 48d081ef-ce03-fd6a-4715-e8ab8161d37a + MV3.101 MV Storage 61 + 0 + -0.2477 + + + 0 + + 053810b1-db5b-4888-7e78-a5919d998a7c + MV3.101 MV Storage 45 + 0 + -0.2252 + + + 0 + + 56cd77f1-2e3a-4888-1923-8456d4cc7914 + MV3.101 MV Storage 42 + 0 + -0.2252 + + + 0 + + 23d24471-ac13-d986-71e6-f703e97f9340 + MV3.101 MV Storage 12 + 0 + -0.2252 + + + 0 + + be09a79d-4e12-ed20-9e0e-2c3fe60d8297 + MV3.101 MV Storage 41 + 0 + -0.2252 + + + 0 + + 13707fb0-303d-b42e-fbcf-a5ab31e0cd00 + MV3.101 MV Storage 34 + 0 + -0.2252 + + + 0 + + 699cddf0-80e9-84bb-ca4c-b7679a3f16ee + MV3.101 MV Storage 29 + 0 + -0.2252 + + + 0 + + a794091b-33eb-2a7d-4277-4638019aaa4d + MV3.101 MV Storage 16 + 0 + -0.2252 + + + 0 + + 90742ed4-0f9f-88eb-58aa-ca88be4ca563 + MV3.101 MV Storage 1 + 0 + -0.093 + + + 0 + + 60c01160-1a37-a6a8-730c-c793b141e794 + MV3.101 MV Storage 20 + 0 + -0.2252 + + + 0 + + 549be146-fd5d-71c3-24c0-7e105f705ff6 + MV3.101 MV Storage 133 + 0 + -0.0508 + + + 0 + + 4b2b6f6b-9808-5901-233e-ee9ad9e91499 + MV3.101 MV Storage 48 + 0 + -0.2252 + + + 0 + + 0ea898ed-863c-7c44-1f27-45625efb7d7a + MV3.101 MV Storage 117 + 0 + -0.0508 + + + 0 + + f06f01ac-e73e-9492-915b-52e1ee8969bf + MV3.101 MV Storage 9 + 0 + -0.093 + + + 0 + + 542b86d2-0fed-e06f-0641-315279066e8e + MV3.101 MV Storage 25 + 0 + -0.2252 + + + 0 + + ec39331f-3ad5-a4be-e739-c2e0ecdb3591 + MV3.101 MV Storage 54 + 0 + -0.2477 + + + 0 + + 23545b6c-5dcb-16ca-5a01-1f062632c3bc + MV3.101 MV Storage 114 + 0 + -0.0508 + + + 0 + + f6e4ca34-5434-6803-a199-104617a7577a + MV3.101 MV Storage 60 + 0 + -0.2477 + + + 0 + + c731b59c-8d70-d065-df91-3c31c3262f83 + MV3.101 MV Storage 66 + 0 + -0.2477 + + + 0 + + ee7e53b0-e7e2-0f07-e014-30a8d1a9bf11 + MV3.101 MV Storage 71 + 0 + -0.2477 + + + 0 + + e4018ed4-396f-405e-e02e-e67609a931d2 + MV3.101 MV Storage 22 + 0 + -0.2252 + + + 0 + + 472e84d8-8d5f-6edf-4701-e246a1186c75 + MV3.101 MV Storage 113 + 0 + -0.0508 + + + 0 + + 5a3da016-0f3d-0e31-7f4e-986aefdb9a89 + MV3.101 MV Storage 28 + 0 + -0.2252 + + + 0 + + 4256e716-720f-7dcc-cb73-d5a4a89749eb + MV3.101 MV Storage 21 + 0 + -0.2252 + + + 0 + + 63d2ac6c-0694-fd4c-a230-a6efb7228336 + MV3.101 MV Storage 118 + 0 + -0.0508 + + + 0 + + 07e5f169-40b7-a84c-8225-f2c8ac1387d6 + MV3.101 MV Storage 53 + 0 + -0.2477 + + + 0 + + e30e4dde-f9c4-1677-5820-7981cd549ba1 + MV3.101 MV Storage 105 + 0 + -0.0508 + + + 0 + + 5bb74099-419e-9449-3329-24470b756855 + MV3.101 MV Storage 123 + 0 + -0.0508 + + + 0 + + 74f6fd21-5f16-8cf1-452e-2ab29a55feb9 + MV3.101 MV Storage 94 + 0 + -0.2477 + + + 0 + + 8d582142-08ae-b3e0-f767-45e1718a8e20 + MV3.101 MV Storage 103 + 0 + -0.0508 + + + 0 + + 9f9c3186-819f-b44b-dcbe-111acd5c2c2d + MV3.101 MV Storage 80 + 0 + -0.2477 + + + 0 + + 19b153c3-d5a3-457a-96ae-b64527c80db9 + MV3.101 MV Storage 11 + 0 + -0.2252 + + + 0 + + 25e55bea-bc2a-42aa-0485-910d9fdd5c65 + MV3.101 MV Storage 36 + 0 + -0.2252 + + + 0 + + a35c0e50-f3f3-ea84-1d64-dc524bd580e0 + MV3.101 MV Storage 81 + 0 + -0.2477 + + + 0 + + 857bef1f-3ef8-8e37-48dd-7b3fdb8fece9 + MV3.101 MV Storage 10 + 0 + -0.2252 + + + 0 + + 6948bcf2-3848-31e8-9c7f-31ca04b9f6c3 + MV3.101 MV Storage 33 + 0 + -0.2252 + + + 0 + + 702eff52-7157-b20c-a2eb-89c136318246 + MV3.101 MV Storage 63 + 0 + -0.2477 + + + 0 + + 5dc97ee2-4a2d-3767-1e2f-960218b0f189 + MV3.101 MV Storage 99 + 0 + -0.2477 + + + 0 + + 371981dd-8285-d124-c4d4-78a45d90dd8f + MV3.101 MV Storage 108 + 0 + -0.0508 + + + 0 + + b9c3df42-3139-8919-e5e9-1c02b6804762 + MV3.101 MV Storage 23 + 0 + -0.2252 + + + 0 + + 4e53d518-e264-8bc1-2fc5-05a1499e8ae2 + MV3.101 MV Storage 121 + 0 + -0.0508 + + + 0 + + 3a33b120-3b46-2ee2-d9c3-c9515b53a15c + MV3.101 MV Storage 91 + 0 + -0.2477 + + + 0 + + 3b7d59a9-9574-1c0f-3300-236850caa091 + MV3.101 MV Storage 128 + 0 + -0.0508 + + + 0 + + 46f0aa2a-3ebf-b6e9-26b4-2f2721587d6a + MV3.101 MV Storage 64 + 0 + -0.2477 + + + 0 + + 5e0010b1-4774-de36-3419-aea42e66caf8 + MV3.101 MV Storage 95 + 0 + -0.2477 + + + 0 + + 5e9f3e12-68ad-b543-94cd-527f56067a27 + MV3.101 MV Storage 89 + 0 + -0.2477 + + + 0 + + e98646d6-cc3e-0848-b139-3fd2630459c0 + MV3.101 MV Storage 76 + 0 + -0.2477 + + + 0 + + 508d4ff9-ac1c-a5cd-aaf8-471b583c82b3 + MV3.101 MV Storage 111 + 0 + -0.0508 + + + 0 + + 10952b3a-fbed-9d9e-385a-4bea5762a107 + MV3.101 MV Storage 58 + 0 + -0.2477 + + + 0 + + c07b3094-c4ac-689e-4aa7-7351eba7bad2 + MV3.101 MV Storage 8 + 0 + -0.093 + + + 0 + + 19f0bb21-7885-c6e1-e1cc-1d3ec5cb14c9 + MV3.101 MV Storage 110 + 0 + -0.0508 + + + 0 + + 25f00a1b-9f7f-e682-3834-20cf9d88f6a0 + MV3.101 MV Storage 109 + 0 + -0.0508 + + + 0 + + 994d40bf-17ec-be8c-1537-e14e2e1c1dcc + MV3.101 MV Storage 92 + 0 + -0.2477 + + + 0 + + 5789325f-e960-ab6d-3b10-41ca02e8757e + MV3.101 MV Storage 65 + 0 + -0.2477 + + + 0 + + 2d716c8c-caf6-96e7-159f-62e95b8f0d75 + MV3.101 MV Storage 57 + 0 + -0.2477 + + + 0 + + 75ce967b-a38f-311d-5b79-39124dd1fc4d + MV3.101 MV Storage 27 + 0 + -0.2252 + + + 0 + + c49aec52-e8bc-36dc-6d5c-4822f18b3709 + MV3.101 MV Storage 35 + 0 + -0.2252 + + + 0 + + 88f553be-e02c-760c-b046-1b4a6e532ad2 + MV3.101 MV Storage 67 + 0 + -0.2477 + + + 0 + + f4d16633-6743-8816-e313-0a318adb4ff9 + MV3.101 MV Storage 5 + 0 + -0.093 + + + 0 + + 407daf34-d4d9-cbe2-fdbf-a4b4bcaa2506 + MV3.101 MV Storage 98 + 0 + -0.2477 + + + 0 + + 432dc384-98a8-c7aa-a5be-1da1adc4aac7 + MV3.101 MV Storage 13 + 0 + -0.2252 + + + 0 + + 98223601-32e8-c364-a57f-6df16cef9adb + MV3.101 MV Storage 77 + 0 + -0.2477 + + + 0 + + 4523fcd0-5cd8-f12c-57f1-5a66b1bd9e75 + MV3.101 MV Storage 69 + 0 + -0.2477 + + + 0 + + 59d707d3-a4a8-3bed-5b68-cf8b5654b109 + MV3.101 MV Storage 130 + 0 + -0.0508 + + + 0 + + 2262576f-4e36-6738-267f-ced384f05862 + MV3.101 MV Storage 51 + 0 + -0.2252 + + + 0 + + a3eda602-63f0-3a96-f00f-7e0431f91046 + MV3.101 MV Storage 104 + 0 + -0.0508 + + + 0 + + ff0d6762-05a7-3309-7e7e-bbc32871966d + MV3.101 MV Storage 131 + 0 + -0.0508 + + + 0 + + 698b7ed5-6c74-92ed-7d87-8a23783fe43c + MV3.101 MV Storage 112 + 0 + -0.0508 + + + 0 + + 84937d01-aece-d5b0-c7c0-4e38f752a944 + MV3.101 MV Storage 32 + 0 + -0.2252 + + + 0 + + 293b39ca-96f7-7435-3405-be3052e42c8b + MV3.101 MV Storage 106 + 0 + -0.0508 + + + 0 + + f2214ea0-d311-9f4f-3c0c-460d923092b1 + MV3.101 MV Storage 14 + 0 + -0.2252 + + + 0 + + f941a9f8-3b9a-9b4f-84e2-d0284c761c2e + MV3.101 MV Storage 73 + 0 + -0.2477 + + + 0 + + 9e9a0a67-08a1-1a1a-b9ee-eb8e1654f3f0 + MV3.101 MV Storage 44 + 0 + -0.2252 + + + 0 + + 9ded6486-49f5-4236-4570-81cdfd6c97ae + MV3.101 MV Storage 19 + 0 + -0.2252 + + + 0 + + f514e2fc-4f1f-cc28-2293-90b79c373e5a + MV3.101 MV Storage 72 + 0 + -0.2477 + + + 0 + + 4278455c-fed1-53f7-54ea-dc3e092a1b5a + MV3.101 MV Storage 24 + 0 + -0.2252 + + + 0 + + 7f010f6e-82ca-4f0b-11f6-0542563814e3 + MV3.101 MV Storage 47 + 0 + -0.2252 + + + 0 + + b38b8234-4162-ca63-93aa-b0a690bad8d6 + MV3.101 MV Storage 68 + 0 + -0.2477 + + + 0 + + d52eba40-5b39-1dad-9050-fa6f17615646 + MV3.101 MV Storage 100 + 0 + -0.2477 + + + 0 + + f4e55466-d2a7-1271-6a91-a6099fc61e2d + MV3.101 MV Storage 3 + 0 + -0.093 + + + 0 + + 68175ad0-cb97-ba1d-c734-571f71aee954 + MV3.101 MV Storage 79 + 0 + -0.2477 + + + 0 + + 2ff233f1-9572-f079-e6a1-386c528ed1bc + MV3.101 MV Storage 120 + 0 + -0.0508 + + + 0 + + 745ddb79-ab87-d84e-f211-ebfd73e23c6e + MV3.101 MV Storage 124 + 0 + -0.0508 + + + 0 + + 31e1cc95-c82a-47da-cb48-0d824d0aadcb + MV3.101 MV Storage 102 + 0 + -0.0508 + + + 0 + + c321b46d-3571-fc0a-071f-d9048d919687 + MV3.101 MV Storage 6 + 0 + -0.093 + + + 0 + + de685234-ede0-e71a-f3f1-ed98266a48cc + MV3.101 MV Storage 43 + 0 + -0.2252 + + + 0 + + 708ce2d9-2738-0d8d-f513-9c1e840505cc + MV3.101 MV Storage 18 + 0 + -0.2252 + + + 0 + + 66d1fe3e-526c-18c8-49d1-5c08d389a91b + MV3.101 MV Storage 82 + 0 + -0.2477 + + + 0 + + 45aadf03-db5d-a6f6-6f4e-2a453aa46ea2 + MV3.101 MV Storage 38 + 0 + -0.2252 + + + 0 + + 858b7eb7-cfb2-1b19-0983-2ddc94c1db50 + MV3.101 MV Storage 55 + 0 + -0.2477 + + + 0 + + 7061f85b-e2b5-57f7-f1fb-57891ea917cb + MV3.101 MV Storage 30 + 0 + -0.2252 + + + 0 + + 7bf7cb11-965c-f731-b421-a3b02893abc1 + MV3.101 MV Storage 40 + 0 + -0.2252 + + + 0 + + b6560e79-7ba7-fa67-6556-0cd39c8ec974 + MV3.101 MV Storage 83 + 0 + -0.2477 + + + 0 + + c94e0254-1f04-28ef-90dc-ab3064ef314d + MV3.101 MV Storage 116 + 0 + -0.0508 + + + 0 + + 1af7bb13-800b-6287-3e63-fbc5acd0fcd5 + MV3.101 MV Storage 85 + 0 + -0.2477 + + + 0 + + e9282bde-b493-7b52-70eb-7067949e1d63 + MV3.101 MV Storage 84 + 0 + -0.2477 + + + 0 + + ccb538ca-ca53-62be-e99a-5e255e4bf07f + MV3.101 MV Storage 75 + 0 + -0.2477 + + + 0 + + 5b3d90aa-bdbb-8da8-3011-f14455d3105c + MV3.101 MV Storage 62 + 0 + -0.2477 + + + 0 + + e9b0e6b8-19b7-4106-260c-c233a6d500eb + MV3.101 MV Storage 127 + 0 + -0.0508 + + + 0 + + 7431db48-211d-9a86-f456-7dea996c9337 + MV3.101 MV Storage 97 + 0 + -0.2477 + + + 0 + + ba79311b-f923-1cc8-5b5f-bd76212fac93 + MV3.101 MV Storage 49 + 0 + -0.2252 + + + 0 + + d76061fd-15b2-a4c8-cef8-b8da5d25259d + MV3.101 MV Storage 107 + 0 + -0.0508 + + + 0 + + 222088be-2c19-20b5-0ce0-d19575db6b3b + MV3.101 MV Storage 115 + 0 + -0.0508 + + + 0 + + 9749f017-18e3-8c37-fc9c-fb44161926f8 + MV3.101 MV Storage 17 + 0 + -0.2252 + + + 0 + + 7107f55f-9faf-d0f5-53d6-10595c31f8b0 + MV3.101 MV Storage 78 + 0 + -0.2477 + + + 0 + + 8d1d6e4d-e048-9810-0a64-41a97a9c4821 + MV3.101 MV Storage 126 + 0 + -0.0508 + + + 0 + + faa4ac52-4b9f-f02c-941e-b53224cd74e5 + MV3.101 MV Storage 119 + 0 + -0.0508 + + + 0 + + 610e89e6-de8e-238c-8263-e61894b89c8f + MV3.101 MV Storage 93 + 0 + -0.2477 + + + 0 + + 0715273c-33b1-f8c0-6780-8e4442bdb6ed + MV3.101 MV Storage 56 + 0 + -0.2477 + + + 0 + + 2dab8ff2-0441-ae6c-9f5e-b10733c33446 + MV3.101 MV Storage 2 + 0 + -0.093 + + + 0 + + c630bf8b-6804-c1ef-df04-24100ea8cc9a + MV3.101 MV Storage 31 + 0 + -0.2252 + + + 0 + + 919d88d4-6db2-384f-3d84-d409b6c41c2e + MV3.101 MV Storage 46 + 0 + -0.2252 + + + 0 + + cac8ab2f-2f2d-4070-f4b5-afce965ea858 + MV3.101 MV Storage 88 + 0 + -0.2477 + + + 0 + + 90b46a9c-9fdd-78c6-5f37-8337e4d80d35 + MV3.101 MV Storage 59 + 0 + -0.2477 + + + 0 + + e66ea5a4-fc92-7c5e-aa8b-8145cd896de9 + MV3.101 MV Storage 87 + 0 + -0.2477 + + + 0 + + d4189104-a2f0-6144-b677-032535bf293d + MV3.101 MV Storage 4 + 0 + -0.093 + + + 0 + + 9a241147-d3fc-a173-67f1-da75d001f21a + MV3.101 MV Storage 101 + 0 + -0.2477 + + + 0 + + 36660b52-d735-b8ce-2d2b-5ea70a3a5a57 + MV3.101 MV Storage 37 + 0 + -0.2252 + + + 0 + + 582908bd-60bb-4fe7-8107-ea977653a2e7 + MV3.101 MV Storage 70 + 0 + -0.2477 + + + 0 + + e6857bfc-e08b-d88e-a717-e6fe5338a9e7 + MV3.101 MV Storage 52 + 0 + -0.2477 + + + 0 + + bc660879-fd0e-dff1-5b79-c8aaa13ccf15 + MV3.101 MV Storage 125 + 0 + -0.0508 + + + 0 + + 7623dc11-1511-45c4-5956-ad351514fd27 + MV3.101 MV Storage 50 + 0 + -0.2252 + + + 0 + + fad39011-dc94-374a-e00b-3f7ba472758f + MV3.101 MV Storage 90 + 0 + -0.2477 + + + 0 + + b9253e2b-2496-e4be-9482-0bf3f6d3ad72 + MV3.101 MV Storage 96 + 0 + -0.2477 + + + 0 + + f657fbce-cbbd-ae65-53cc-0e30b71d0ac6 + MV3.101 MV Storage 7 + 0 + -0.093 + + + 0 + + fc2b832a-42a0-1d84-f314-f1deb4a62b65 + MV3.101 MV Storage 39 + 0 + -0.2252 + + + 0 + + e86629bf-49ef-005e-3733-3859be33c0db + MV3.101 MV Storage 74 + 0 + -0.2477 + + + 0 + + 2a53fa1e-3321-ee2a-a5b8-f23ab2df2574 + MV3.101 MV Storage 86 + 0 + -0.2477 + + + 0 + + c4f53510-5208-47ba-2a7e-7c8d512a723e + MV3.101 MV Storage 15 + 0 + -0.2252 + + + 0 + + c2351f23-900d-a5f9-3ac7-caf7ce7ddb29 + MV3.101 MV Storage 129 + 0 + -0.0508 + + + 0 + + 7b1244df-ad19-cc4e-95dd-e68452c14977 + MV3.101 MV Storage 132 + 0 + -0.0508 + + + 0 + + 1f64842d-4062-4c3c-f9df-89627c0327f6 + MV3.101 MV Storage 26 + 0 + -0.2252 + + + 0 + + edeccb4c-b1f0-2125-9d6f-363e768b39dc + MV3.101 MV Storage 122 + 0 + -0.0508 + + + 48b8834d-b984-f8cc-d7d5-2894dd4274af + patl + + true + + + + a0fc8bf8-eb5b-6ea2-78f0-70ca6f768671 + highVoltage + + true + + + + a6847f87-bb8d-42bd-f395-cc837b190037 + lowVoltage + + true + + + + + 0 + 52486.4 + 100000 + 9999 + 0.1 + 0.1 + 1 + 41989.1 + 0 + -9999 + 0.1 + 0.1 + 1 + 38f16956-c45a-489d-8872-b9fff788d254 + HV1 grid at MV3.101 + + + + d3f7bf98-bcea-1f0e-5ce4-93ae1e0e6afe + MV3.101 Load 51 + + + 64b79e2e-0f98-48c1-2a00-887bb03c5b11 + MV3.101 Load 51 + + + + 40795be0-5cd7-2962-a710-bdb75a5c42da + MV3.101 Load 51 + + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_DL_.xml b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_DL_.xml new file mode 100644 index 00000000..19a82f03 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_DL_.xml @@ -0,0 +1,2159 @@ + + + + + + + 2023-05-09T13:15:07Z + www.ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 2015-12-31T23:00:00Z + + + + 1 + 341.25 + 40.625 + + + + 1 + 56.875 + 163.125 + + + + 1 + 271.25 + 106.25 + + + + 1 + 310.625 + 62.5 + + + + 3 + 220.938 + 237.5 + + + + 1 + 280 + 228.75 + + + + 1 + 166.25 + 237.5 + + + + 2 + 138.633 + -380.039 + + + + 1 + 217.292 + 548.125 + + + + 1 + 280 + 290 + + + + 2 + 138.634 + -380.039 + + + + 1 + 266.875 + 272.5 + + + + 1 + 284.375 + 106.25 + + + + 1 + 297.5 + 123.75 + + + + 2 + 350 + 80 + + + + 1 + 217.292 + 513.125 + + + + 2 + 177.188 + 220 + + + + 1 + 223.125 + 176.25 + + + + 1 + 210 + 473.75 + + + + 1 + 201.25 + 303.125 + + + + 1 + 253.75 + 158.75 + + + + 1 + 201.25 + 416.875 + + + + 1 + 284.375 + 141.25 + + + + 2 + 253.75 + 416.875 + + + + 1 + 239.167 + 456.25 + + + + 1 + 231.875 + 491.25 + + + + 1 + 228.958 + 530.625 + + + + 1 + 239.167 + 237.5 + + + + 1 + 297.5 + 80 + + + + 2 + 350 + 40.625 + + + + 1 + 231.875 + 237.5 + + + + 2 + 240.625 + 530.625 + + + + 2 + 297.5 + 123.75 + + + + 1 + 212.917 + 285.625 + + + + 1 + 323.75 + 97.5 + + + + 1 + 91.875 + 202.5 + + + + 1 + 218.75 + 377.5 + + + + 1 + 238.438 + 158.75 + + + + 2 + 240.625 + 416.875 + + + + 1 + 358.75 + 58.125 + + + + 2 + 253.75 + 237.5 + + + + 1 + 177.188 + 220 + + + + 1 + 56.875 + 198.125 + + + + 2 + 293.125 + 272.5 + + + + 1 + 291.667 + 246.25 + + + + 1 + 358.75 + 23.125 + + + + 2 + 236.25 + 303.125 + + + + 2 + 310.625 + 123.75 + + + + 1 + 323.75 + 62.5 + + + + 1 + 247.625 + 193.75 + + + + 1 + 48.125 + 198.125 + + + + 1 + 242.812 + 491.25 + + + + 2 + 376.25 + 40.625 + + + + 1 + 227.5 + 399.375 + + + + 1 + 227.5 + 430 + + + + 2 + 284.375 + 176.25 + + + + 1 + 210 + 237.5 + + + + 1 + 144.375 + 220 + + + + 2 + 56.875 + 180.625 + + + + 1 + 214.375 + 416.875 + + + + 2 + 188.125 + 220 + + + + 1 + 112.383 + -380.041 + + + + 1 + 269.062 + 176.25 + + + + 1 + 367.5 + 58.125 + + + + 4 + 220.938 + 237.5 + + + + 1 + 112.384 + -380.041 + + + + 1 + 207.812 + 377.5 + + + + 1 + 112.384 + -380.039 + + + + 1 + 112.384 + -380.039 + + + + 2 + 74.375 + 180.625 + + + + 2 + 220.938 + 473.75 + + + + 1 + 112.383 + -380.041 + + + + 1 + 173.542 + 202.5 + + + + 1 + 264.323 + 233.125 + + + + 1 + 239.167 + 460.625 + + + + 1 + 238.438 + 163.125 + + + + 1 + 272.125 + 193.75 + + + + 4 + 310.625 + 80 + + + + 2 + 212.917 + 303.125 + + + + 1 + 240.625 + 399.375 + + + + 1 + 224.583 + 473.75 + + + + 1 + 259.875 + 189.375 + + + + 1 + 115.208 + 202.5 + + + + 1 + 211.458 + 360 + + + + 1 + 207.812 + 373.125 + + + + 1 + 112.384 + -380.04 + + + + 1 + 228.958 + 548.125 + + + + 1 + 336.875 + 80 + + + + 2 + 207.812 + 360 + + + + 1 + 336.875 + 97.5 + + + + 1 + 112.383 + -380.04 + + + + 1 + 112.383 + -380.041 + + + + 2 + 229.688 + 360 + + + + 2 + 358.75 + 40.625 + + + + 1 + 226.042 + 342.5 + + + + 2 + 158.958 + 220 + + + + 3 + 310.625 + 80 + + + + 2 + 138.635 + -380.041 + + + + 1 + 253.75 + 163.125 + + + + 1 + 65.625 + 180.625 + + + + 1 + 112.383 + -380.039 + + + + 2 + 336.875 + 80 + + + + 2 + 275.625 + 272.5 + + + + 2 + 138.633 + -380.041 + + + + 2 + 239.167 + 473.75 + + + + 2 + 226.042 + 360 + + + + 2 + 235.375 + 176.25 + + + + 2 + 253.75 + 473.75 + + + + 1 + 224.583 + 320.625 + + + + 2 + 253.75 + 176.25 + + + + 1 + 56.875 + 167.5 + + + + 1 + 284.375 + 255 + + + + 1 + 258.125 + 123.75 + + + + 1 + 115.208 + 185 + + + + 1 + 358.75 + 27.5 + + + + 2 + 126.875 + 202.5 + + + + 2 + 138.634 + -380.04 + + + + 2 + 138.634 + -380.04 + + + + 1 + 155.312 + 237.5 + + + + 2 + 138.633 + -380.04 + + + + 1 + 224.583 + 303.125 + + + + 1 + 214.375 + 434.375 + + + + 2 + 358.75 + 40.625 + + + + 1 + 297.5 + 141.25 + + + + 1 + 103.542 + 215.625 + + + + 1 + 196.875 + 360 + + + + 2 + 138.634 + -380.04 + + + + 2 + 138.634 + -380.041 + + + + 1 + 39.375 + 180.625 + + + + 2 + 240.625 + 360 + + + + 1 + 112.384 + -380.041 + + + + 1 + 297.5 + 136.875 + + + + 1 + 205.625 + 530.625 + + + + 2 + 173.542 + 220 + + + + 2 + 138.634 + -380.039 + + + + 2 + 138.633 + -380.041 + + + + 1 + 112.385 + -380.041 + + + + 1 + 358.75 + 53.75 + + + + 2 + 297.5 + 228.75 + + + + 2 + 224.583 + 237.5 + + + + 2 + 297.5 + 123.75 + + + + 2 + 138.634 + -380.041 + + + + 1 + 217.292 + 517.5 + + + + 2 + 259.875 + 176.25 + + + + 1 + 155.312 + 233.125 + + + + 1 + 103.542 + 220 + + + + 2 + 227.5 + 416.875 + + + + 1 + 226.042 + 346.875 + + + + 1 + 112.384 + -380.04 + + + + 2 + 227.5 + 416.875 + + + + 1 + 173.542 + 206.875 + + + + 2 + 166.25 + 220 + + + + 2 + 285.833 + 228.75 + + + + 1 + 112.383 + -380.04 + + + + 2 + 103.542 + 202.5 + + + + 1 + 259.875 + 193.75 + + + + 1 + 112.385 + -380.04 + + + + 1 + 247.625 + 189.375 + + + + 1 + 166.25 + 233.125 + + + + 2 + 138.633 + -380.041 + + + + 1 + 227.5 + 434.375 + + + + 2 + 238.438 + 176.25 + + + + 2 + 284.375 + 272.5 + + + + 1 + 218.75 + 373.125 + + + + 2 + 217.292 + 530.625 + + + + 2 + 271.25 + 123.75 + + + + 1 + 271.25 + 110.625 + + + + 2 + 138.635 + -380.04 + + + + 2 + 291.667 + 228.75 + + + + 1 + 336.875 + 93.125 + + + + 2 + 212.917 + 303.125 + + + + 1 + 272.125 + 189.375 + + + + 2 + 271.25 + 123.75 + + + + 1 + 284.375 + 136.875 + + + + 1 + 240.625 + 403.75 + + + + 2 + 310.625 + 80 + + + + 1 + 323.75 + 66.875 + + + + 2 + 240.625 + 416.875 + + + + 1 + 217.292 + 543.75 + + + + 2 + 48.125 + 180.625 + + + + 1 + 231.875 + 486.875 + + + + 1 + 56.875 + 193.75 + + + + 2 + 103.542 + 202.5 + + + + 1 + 112.384 + -380.04 + + + + 1 + 291.667 + 241.875 + + + + 1 + 310.625 + 66.875 + + + + 1 + 280 + 285.625 + + + + 1 + 284.375 + 259.375 + + + + 2 + 228.958 + 530.625 + + + + 1 + 242.812 + 486.875 + + + + 2 + 231.875 + 473.75 + + + + 2 + 138.633 + -380.04 + + + + 1 + 224.583 + 316.25 + + + + 2 + 284.375 + 123.75 + + + + 2 + 242.812 + 237.5 + + + + 1 + 268.644 + 232.441 + + + + 2 + 323.75 + 80 + + + + 2 + 367.5 + 40.625 + + + + 2 + 242.812 + 473.75 + + + + 2 + 115.208 + 202.5 + + + + 1 + 214.375 + 430 + + + + 2 + 218.75 + 360 + + + + 2 + 155.312 + 220 + + + + 1 + 323.75 + 93.125 + + + + 2 + 323.75 + 80 + + + + 2 + 247.625 + 176.25 + + + + 1 + 227.5 + 403.75 + + + + 1 + 260.002 + 233.809 + + + + 2 + 214.375 + 416.875 + + + + 1 + 115.208 + 189.375 + + + + 1 + 212.917 + 290 + + + + 1 + 284.375 + 110.625 + + + + 2 + 284.375 + 123.75 + + + + 1 + 228.958 + 543.75 + + + + 2 + 56.875 + 180.625 + + + + 2 + 280 + 272.5 + + + + 1 + 48.125 + 193.75 + + + + 2 + 224.583 + 303.125 + + + + 2 + 272.125 + 176.25 + + + + 2 + 217.292 + 530.625 + + + + 1 + 367.5 + 53.75 + + + + 46c354aa-e762-479a-a7c9-6db5aca4fd13 + 1-LV-rural1--2-no_sw(1) + + + + c179606b-8f57-48d9-8865-867b3582fe08 + 1-LV-rural1--2-no_sw + + + + + ab274502-2e94-cb5e-ced2-388e1952984c + LV1.101 Bus 10_Graph + + + + + 180 + f24a7ea8-8ea1-c989-0083-34e90dc5fca2 + Grafisches Netzelement58 + + + + + dca77355-1745-b3f7-a9f9-b91f0c467289 + GCO_1 + + + + + 7273b08a-2d7e-d429-e616-0f1cc0a2c317 + GCO_1 + + + + + 561e885b-656e-3cc1-a839-c9e4b93adafd + Grafisches Netzelement36 + + + + + 180 + 9bfcc67e-52c3-cf2e-33e0-884efba75c1f + Grafisches Netzelement33 + + + + + 81992949-5208-d7eb-a6e7-f3c80b8a543c + GCO_1 + + + + + b0d87b0c-8ca8-3b3b-9373-eecd98556c15 + GCO_1 + + + + + 8486d7ee-44b8-356d-1006-954440512c08 + LV1.101 Bus 4 + + + + + de59ae05-a59e-55d3-2bc2-099141090ab0 + Grafisches Netzelement44 + + + + + 6a26d02a-08a7-ec01-ceed-8c2eba8a826f + GCO_1 + + + + + 180 + acc63e73-b9bc-f466-47c2-e125e291fdf8 + Grafisches Netzelement34 + + + + + 6dc43235-35ac-c4a7-b250-051b9f868315 + GCO_1 + + + + + 26b21bd3-cc9c-9255-9b84-43613f782608 + Grafisches Netzelement55 + + + + + 9104b8aa-5d87-38e3-cfcc-b1db04b52eef + Grafisches Netzelement31 + + + + + f2536c2f-20d5-c255-13cf-f5699ac7cfe5 + GCO_1 + + + + + 8aff863b-b189-6594-a788-f504852694b2 + GCO_1 + + + + + b15772d4-6f84-a83a-d66e-29d7b34c72e6 + LV1.101 Bus 9 + + + + + 180 + b493b7e4-491a-247f-a573-2ba549f7781e + Grafisches Netzelement27 + + + + + 180 + ed3bf9cb-5a24-2a26-2f34-23de69ea291f + Grafisches Netzelement54 + + + + + 86ac4f26-fd95-5264-eb62-13c047950dcd + GCO_1 + + + + + e607ef8f-728e-dcd0-84c2-e55c39a8ced4 + GCO_1 + + + + + fcbc10fd-07ef-f8db-4e18-7d052e5fc089 + Grafisches Netzelement29 + + + + + 608d1af4-8f5c-7d36-04df-13c898237352 + GCO_1 + + + + + fe0690bb-3265-f6c4-9521-269ea8c0a34b + Grafisches Netzelement18 + + + + + a6dc502b-4270-3fad-05c4-25f3c4de3729 + GCO_1 + + + + + 4b36ab50-a342-8bc0-bdaf-3bcd7ca796b9 + LV1.101 Bus 3 + + + + + 05844f3e-e7fc-1cd0-9366-0d4d9c8d1544 + GCO_1 + + + + + 4bb34af9-2a77-94b0-4784-84711ac0eef9 + Grafisches Netzelement52 + + + + + fc6a09de-876d-6893-0cac-e0fc2feb67fd + Grafisches Netzelement24 + + + + + 81 + 565025ca-165b-4e47-f119-4a80a9e276fb + Grafisches Netzelement17 + + + + + 2c909e87-317c-2196-84ec-ab46da658091 + GCO_1 + + + + + d19f7458-b957-1a0a-5189-242f2362a340 + GCO_1 + + + + + 820b0c4c-4fd6-5c20-e1ba-3c77af1a503c + Grafisches Netzelement43 + + + + + feb80397-b3b8-d0e1-e501-3d9c69f6be63 + Grafisches Netzelement22 + + + + + 180 + cdc28c57-4f28-aedf-ed0a-8f6aec1c84bf + Grafisches Netzelement48 + + + + + 800d3dab-1081-fb28-1680-c96472225e92 + GCO_1 + + + + + 6789a5b5-e37c-af67-9496-c1d90f499451 + GCO_1 + + + + + 180 + 478d417a-b356-1b91-1744-d3af74e05bd1 + Grafisches Netzelement37 + + + + + b98d0122-9713-29d5-eb0c-71b17f0952f1 + LV1.101 Bus 13 + + + + + 1e3cec73-d213-45c4-3a3e-367397f07c67 + GCO_1 + + + + + f8d2fcb2-961b-bf93-50bb-7dcca1cd3728 + GCO_1 + + + + + 0cfbd288-a85a-094c-af1f-dc8a9db514ad + Grafisches Netzelement25 + + + + + 797a7e8a-5f79-6488-b484-84ee2bd99d69 + Grafisches Netzelement30 + + + + + 7b5d92a8-0ae1-f3e5-c309-3f78b1018d49 + GCO_1 + + + + + 95d15384-1111-0472-2217-745fd6e480bb + Grafisches Netzelement21 + + + + + 59de1ef2-621e-7fdf-880c-e1265a5a5aab + GCO_1 + + + + + d16b46b5-724b-c786-304c-845c16e7bc08 + LV1.101 Bus 8 + + + + + 538021ef-e5c0-18a9-87d9-5a17b9e6a84f + GCO_1 + + + + + 8dfcfc2e-b903-7bf2-9569-ecaf81c8ece9 + Grafisches Netzelement49 + + + + + 2c571f97-d21e-b59a-2cb5-56ef16cf5b25 + GCO_1 + + + + + b21c4549-8299-9357-4dc6-27dd7cd6e4a2 + Grafisches Netzelement20 + + + + + 26397ad1-9fb0-5903-75d4-8262e415a1a2 + GCO_1 + + + + + 4fbc2244-57fb-24c3-51d9-cf446e5c83be + Grafisches Netzelement46 + + + + + dcd52969-1912-898b-a99d-6fb32d4297a7 + Grafisches Netzelement53 + + + + + 54b177f8-73d0-0f5c-ccfa-91d66b2da3d2 + GCO_1 + + + + + 80c197d1-4797-9382-3f0d-8c097906e00b + MV1.101 Bus 4_Graph + + + + + 8758f745-290a-3330-ae18-0ba090416eeb + GCO_1 + + + + + 77ccfd7c-c5a9-12f0-c25f-50f8634a8909 + GCO_1 + + + + + 180 + 86d62768-6de7-8bb9-c384-0fb58ee7274d + Grafisches Netzelement40 + + + + + b2fec5a4-8e6d-35df-21b4-de936f87cd85 + LV1.101 Bus 6 + + + + + b6675950-af8f-2257-028e-5b018bdde9b2 + LV1.101 Bus 3_Graph + + + + + edf6da7f-13a1-d8b7-75ee-3507e8395308 + GCO_1 + + + + + 190a4c47-5263-45da-0d11-f0f506afe542 + GCO_1 + + + + + 4f5eb48a-b046-d85a-b807-e9015c3fc884 + Grafisches Netzelement56 + + + + + 86b5f1af-3fc0-cf26-7d07-2a9fc10a6724 + LV1.101 Bus 5 + + + + + 3d5c95e1-9a7e-ccd4-fc96-8e8ab96181dd + GCO_1 + + + + + 79ac68ab-fb12-abb0-0f95-a7880614f245 + LV1.101 Bus 6_Graph + + + + + 1a8c7a1a-fdea-810f-1035-2107328523b9 + GCO_1 + + + + + b9fcc6b7-f396-9aee-52b4-3552451ac998 + LV1.101 Bus 9_Graph + + + + + fed8b2ab-dd7d-27db-6a39-583ce2df7e66 + LV1.101 Bus 11 + + + + + 4f368292-009d-ad64-a577-a2959ee016b3 + Grafisches Netzelement16 + + + + + 180 + 6d07be7b-14db-1b0f-2cb8-270dfb161be4 + Grafisches Netzelement51 + + + + + 804daae9-b5e6-563c-fac0-a38ff978abb8 + GCO_1 + + + + + 42a1c246-4324-6bcc-9619-7a31f214797c + LV1.101 Bus 8_Graph + + + + + 8f0d80b0-0ef9-2632-0515-8ca4c5f99ee1 + LV1.101 Bus 2 + + + + + 293 + 837f2419-127c-a4f2-cd3c-93aae63d801f + Grafisches Netzelement60 + + + + + 29902223-2ba3-423a-6b17-ff959055e891 + GCO_1 + + + + + 6f77e205-00bc-1cb1-3c7f-5c85f5a8786e + LV1.101 Bus 7_Graph + + + + + c0e959ca-812f-02ce-66a9-448ebe3ed0e1 + GCO_1 + + + + + 1d47aacd-c65b-30b8-3d2b-3fd46e6a554b + Grafisches Netzelement19 + + + + + c13677be-c318-b890-5578-ff5081210030 + Grafisches Netzelement35 + + + + + bc2cd99f-6003-5b91-d4d6-ab79e8d05e24 + GCO_1 + + + + + 9dfb1822-1e64-3f2a-7183-a97425f808aa + LV1.101 Bus 14 + + + + + e6b53c37-987a-0b1e-4af9-6447adac6978 + LV1.101 Bus 13_Graph + + + + + 180 + 8df1b81a-338f-4c8b-13aa-b6b2d9996825 + Grafisches Netzelement38 + + + + + edaef163-a5c8-935a-58c0-87b1ff59b7d1 + GCO_1 + + + + + ae9ab461-b242-c8e9-887d-240ed516084e + LV1.101 Bus 1 + + + + + 6a6e83cb-f07b-f499-2931-a3d22d307840 + LV1.101 Bus 5_Graph + + + + + 306 + cffd5032-d32f-0f57-bb12-fae53f7536b7 + Grafisches Netzelement61 + + + + + f6b59b61-2bfb-3353-3489-ab4458c11401 + Grafisches Netzelement50 + + + + + 52d61dea-b86c-de9c-91b0-681557408e95 + GCO_1 + + + + + 14835ed3-4dc9-e111-c0af-9d4ddff423b3 + GCO_1 + + + + + 93f6f758-3a50-6a92-c83e-7466c0622590 + LV1.101 Bus 2_Graph + + + + + 285 + f31c2f08-dd57-54df-8ef6-9a94bc175292 + Grafisches Netzelement69 + + + + + 180 + 9f3880f6-3b17-d578-8d5f-e8c3c0120df3 + Grafisches Netzelement57 + + + + + 91ffc9f2-76ee-9055-05c7-a0d19c0836a4 + GCO_1 + + + + + fdc35cfa-f970-1b2d-997f-4e5ce1e9cc62 + LV1.101 Bus 12_Graph + + + + + f7ac1982-dcc4-7acc-3e66-ae935fe7ff6b + Grafisches Netzelement26 + + + + + ee0b9c55-4f90-f2e1-182f-04ee3af53449 + GCO_1 + + + + + 171 + 9297f9be-a273-2400-f461-79f5250c53a5 + Grafisches Netzelement71 + + + + + 729fb138-684a-8389-ae9a-7fab56781e50 + LV1.101 Bus 11_Graph + + + + + 01413a67-0508-1f75-2cf6-ad64eab41d69 + GCO_1 + + + + + 180 + 0986844f-5fea-a27d-a45a-54fa1e772eb9 + Grafisches Netzelement47 + + + + + 191 + 01c0753d-4ebe-1812-cd53-ec16494520ba + Grafisches Netzelement62 + + + + + 9f7dde2b-f88d-753e-2eb6-29c79cf93746 + GCO_2 + + + + + 6b55ed4a-1147-df6d-df22-d20b3b05bba5 + LV1.101 Bus 4_Graph + + + + + ad263154-91a8-50cf-8f3e-65dce9121379 + GCO_1 + + + + + 222 + 60e704a5-cdba-eca9-72b0-3977681dc854 + Grafisches Netzelement68 + + + + + f42521c8-faf7-8f7f-e515-6e9dfe7bf26f + GCO_1 + + + + + 180 + 4596ac51-531a-5829-9498-03b751b71e04 + Grafisches Netzelement23 + + + + + 189 + 17d6807e-43d0-3e03-be53-a59087d960a2 + Grafisches Netzelement67 + + + + + 5750d2fe-f56f-3f19-b2fd-c9c358df57bf + MV1.101 Bus 4 + + + + + fbd66258-2dc1-cea3-8671-fb24810ce804 + LV1.101 Bus 1_Graph + + + + + 738d2d0b-7f4b-70bc-9f75-fa38b778da5a + LV1.101 Bus 12 + + + + + 180 + 1ad6483c-b844-637a-ec2b-dee2a80406fd + Grafisches Netzelement42 + + + + + 210 + 3a0fa92f-0ae3-24d4-8482-7b3104cb2d3b + Grafisches Netzelement65 + + + + + c64f403b-178f-8157-1e17-1e4db1e42ef5 + LV1.101 Bus 10 + + + + + 180 + 5e44a93d-604e-3683-786a-e289120af29b + Grafisches Netzelement41 + + + + + 25fe2128-33c1-d757-a6a7-7459bbe7b191 + LV1.101 Bus 7 + + + + + 222 + 17a3f49e-68a2-22a7-624f-28e070b1e141 + Grafisches Netzelement70 + + + + + 287 + 15fe282d-b4fa-7de7-1c07-31f02851c923 + Grafisches Netzelement64 + + + + + 180 + 34d81296-8036-7de2-8684-9176c3c54061 + Grafisches Netzelement59 + + + + + 176 + 14bdf164-c9f6-9fd0-35a3-6a73bbe9defa + Grafisches Netzelement66 + + + + + 200 + 25c15dca-19be-d701-bd1e-e0a8074df263 + Grafisches Netzelement63 + + + + + b9a637e3-2a48-af42-a897-33329f0da55d + LV1.101 Bus 14_Graph + + + + + 82b658d9-c29d-e867-7521-254b26844c4d + Grafisches Netzelement45 + + + + + 180 + aeb1b19e-8700-9e69-d70b-aade5b1372db + Grafisches Netzelement32 + + + + + 180 + 737bf3d4-f472-58b0-932d-edb08aeab7c5 + Grafisches Netzelement28 + + + + + ae5b9bea-8ecc-7dee-6d0c-517e5134c84a + Grafisches Netzelement39 + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SSH_.xml new file mode 100644 index 00000000..e32aa363 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SSH_.xml @@ -0,0 +1,721 @@ + + + + + + 2023-05-09T13:15:07Z + www.ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/SteadyStateHypothesis-EU/3.0 + 2015-12-31T23:00:00Z + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.44 + + + 21.1 + + + 0.36 + + + 0.36 + + + 0.36 + + + 19.3 + + + 0.36 + + + 0.44 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.36 + + + 0.0137 + 0.0054 + true + + + 0.0059 + 0.0024 + true + + + 0.002 + 0.0008 + true + + + 0.002 + 0.0008 + true + + + 0.0079 + 0.0031 + true + + + 0.003 + 0.0012 + true + + + 0.0109 + 0.0043 + true + + + 0.004 + 0.0016 + true + + + 0.0137 + 0.0054 + true + + + 0.0109 + 0.0043 + true + + + 0.0037 + 0.0014 + true + + + 0.0037 + 0.0014 + true + + + 0.0218 + 0.0086 + true + + + 0.0049 + 0.002 + true + + + 0.0119 + 0.0046 + true + + + 0.0218 + 0.0086 + true + + + 0.002 + 0.0008 + true + + + 0.004 + 0.0016 + true + + + 0.003 + 0.0012 + true + + + 0.003 + 0.0012 + true + + + 0.002 + 0.0008 + true + + + 0.0049 + 0.002 + true + + + 0.0037 + 0.0014 + true + + + 0.002 + 0.0008 + true + + + 0.003 + 0.0012 + true + + + 0.003 + 0.0012 + true + + + 0.0049 + 0.002 + true + + + 0.004 + 0.0016 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + 4.6188 + + + 270 + + + 270 + + + 230.94 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + true + 0 + 0 + false + + + true + -0.0245 + 0 + false + + + true + -0.0489 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1172 + 0 + false + + + true + -0.019 + 0 + false + + + true + -0.023 + 0 + false + + + true + -0.1172 + 0 + false + + + true + -0.04 + 0 + false + + + true + -0.0784 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + 1 + true + + + false + 1 + + + false + true + 20.5 + + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SV_.xml new file mode 100644 index 00000000..bed9a9d9 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_SV_.xml @@ -0,0 +1,685 @@ + + + + + + + 2023-05-09T13:15:07Z + www.ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/StateVariables-EU/3.0 + 2015-12-31T23:00:00Z + + + + 0.003 + 0.0012 + + + + 0.0119 + 0.0046 + + + + 0.003 + 0.0012 + + + + 0.002 + 0 + + + + -0.1172 + 0 + + + + -0.0923119 + 0.00972368 + + + + 0.0059 + 0.0024 + + + + 0.002 + 0 + + + + 0.004 + 0.0016 + + + + -0.0712516 + 0.0181743 + + + + -0.0305517 + 0.00680054 + + + + 0.0137 + 0.0054 + + + + -0.0573452 + 0.0235845 + + + + 0.0109 + 0.0043 + + + + 0.0716172 + -0.0180343 + + + + 0.003 + 0.0012 + + + + 0.0998221 + -0.00673782 + + + + 0 + 0 + + + + 0.002 + 0 + + + + -0.0149728 + 0.00320059 + + + + 0.0937912 + -0.00915412 + + + + -0.037895 + 0.00431958 + + + + -0.0242777 + 0.0097323 + + + + -0.0937438 + 0.0249972 + + + + -0.019 + 0 + + + + -0.0563313 + 0.0354728 + + + + 0.004 + 0.0016 + + + + 0.0379981 + -0.00428186 + + + + 0.0037 + 0.0014 + + + + -0.0189768 + 0.00159778 + + + + 0.003 + 0.0012 + + + + 0 + 0 + + + + 0.0751753 + -0.0205083 + + + + -0.274253 + 0.0928229 + + + + 0.0563604 + -0.0354617 + + + + 0.282423 + -0.0732956 + + + + 0 + 0 + + + + 0.0109 + 0.0043 + + + + 0.0189981 + -0.00159146 + + + + 0.0149781 + -0.00319927 + + + + 0.0079 + 0.0031 + + + + 0.0242993 + -0.00972497 + + + + -0.1172 + 0 + + + + -0.0784 + 0 + + + + -0.101751 + 0.00602376 + + + + 0.004 + 0.0016 + + + + 0.002 + 0 + + + + 0.0049 + 0.002 + + + + 0.0218 + 0.0086 + + + + -0.0245 + 0 + + + + 0.0049 + 0.002 + + + + 0.0049 + 0.002 + + + + 0.0037 + 0.0014 + + + + 0 + 0 + + + + -0.04 + 0 + + + + -0.023 + 0 + + + + 0.0305719 + -0.00679334 + + + + 0.0943421 + -0.0247665 + + + + 0.0137 + 0.0054 + + + + -0.0489 + 0 + + + + 0.103507 + -0.00534601 + + + + 0.002 + 0 + + + + 0 + 0 + + + + 0.0037 + 0.0014 + + + + 0.274253 + -0.0928229 + + + + 0.0218 + 0.0086 + + + + 0.0573556 + -0.0235805 + + + + -0.0750511 + 0.020556 + + + + 0.003 + 0.0012 + + + + -0.0997907 + 0.0067499 + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + 1 + + + + -145.019 + 0.412765 + + + + -145.877 + 0.402486 + + + + -145.647 + 0.404691 + + + + -145.442 + 0.409262 + + + + -145.855 + 0.402598 + + + + -145.685 + 0.404448 + + + + 0 + 20.5 + + + + -145.843 + 0.402844 + + + + -145.813 + 0.403278 + + + + -145.762 + 0.403413 + + + + -145.855 + 0.402718 + + + + -145.47 + 0.406449 + + + + -145.028 + 0.412639 + + + + -145.654 + 0.404638 + + + + -145.797 + 0.403152 + + + 925c40ef-32d5-4466-af2d-ec8015bef04b + Island_001 + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_TP_.xml new file mode 100644 index 00000000..6fcbf9a3 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_XX_YYY_TP_.xml @@ -0,0 +1,311 @@ + + + + + + 2023-05-09T13:15:07Z + www.ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Topology-EU/3.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 45989efa-64b7-26dc-49b2-0d51d32050ee + LV1.101 Bus 4 + + + + + 067bb88f-d14a-aa41-6227-22db1d0dba6d + LV1.101 Bus 13 + + + + + 22346297-cca9-2106-5481-91684ee9642b + LV1.101 Bus 5 + + + + + befdca80-2e62-566c-b76e-cf758c7b13eb + LV1.101 Bus 6 + + + + + cfcce23d-3d52-9fa3-8c24-a2b72f3cf333 + LV1.101 Bus 8 + + + + + 84e160ed-03e1-d277-3815-25b1f17be9ec + LV1.101 Bus 12 + + + + + 0bc6c7b0-3520-9166-8e09-639edf91ede3 + LV1.101 Bus 2 + + + + + 83a2dafc-3f7b-d040-8955-b8762cc5e464 + LV1.101 Bus 9 + + + + + 75c5a0b7-f321-b362-5349-c3cf38a6a962 + LV1.101 Bus 7 + + + + + 331e093a-f298-fb3e-91f6-826695fb3a52 + LV1.101 Bus 3 + + + + + c49d03bf-69f9-5787-6e52-ed81bf8c0bfa + LV1.101 Bus 14 + + + + + daa6b445-c814-e801-b08c-d766391921b6 + LV1.101 Bus 1 + + + + + f057020a-055c-6446-e781-d9ea5d312b7e + LV1.101 Bus 11 + + + + + 9904d0a9-c245-e550-51b7-6445d9ebb38f + LV1.101 Bus 10 + + + + + fea3552a-86e4-a2e8-20be-258faeeaae3d + MV1.101 Bus 4 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_YYY_EQ_.xml new file mode 100644 index 00000000..a8eea06c --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/20151231T2300Z_YYY_EQ_.xml @@ -0,0 +1,1966 @@ + + + + + 2023-05-09T13:15:07Z + www.ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + 2015-12-31T23:00:00Z + + + 2 + 6573e5b5-63a6-47c9-bb79-fbb5befbda71 + LV1.101 Bus 14_LV1.101 Line 9 + + + + + 1 + b68b3bc6-96bd-4da1-bed1-0da722d55d38 + LV1.101 Bus 12_LV1.101 Line 8 + + + + + 1 + 82235650-a803-185f-9183-5b59c7652b0f + Cubicle_MV1.101 grid at LV1.101 + + + + + 2 + 8d199eb6-eedc-4e8e-8860-66244728c1d5 + LV1.101 Bus 4_MV1.101-LV1.101-Trafo 1 + + + + + 1 + b8fbbb3b-0cd9-4815-9a26-ef6928af84a9 + LV1.101 Bus 2_LV1.101 Line 12 + + + + + 1 + c850c11d-e4a8-47fa-bd82-7505741f29d6 + Cubicle_LV1.101 Load 24 + + + + 1 + 29fa4900-5eb5-462f-949e-022fd07d2422 + Cubicle_LV1.101 Load 23 + + + + 1 + 8940ed9d-4eee-4cf5-8562-a7f575c97068 + LV1.101 Bus 10_LV1.101 Line 1 + + + + + 1 + ca4bb642-61d3-4fc1-b989-d829bdd8efc1 + Cubicle_LV1.101 Load 27 + + + + 2 + be6ed5d8-1553-4061-b969-4cd8316bc0e7 + LV1.101 Bus 8_LV1.101 Line 7 + + + + + 1 + 0b840725-1625-4fcb-9a38-0072153dea72 + LV1.101 Bus 14_LV1.101 Line 2 + + + + + 1 + a6362ded-d192-4afc-bdbf-8378f5aa3788 + LV1.101 Bus 11_LV1.101 Line 6 + + + + + 1 + 5350f46c-711b-4e68-ba8a-fc388966f338 + Cubicle_LV1.101 Load 10 + + + + 2 + 0769f722-ad6a-4704-8ea6-58c87d74c268 + LV1.101 Bus 12_LV1.101 Line 2 + + + + + 1 + 8f1d3257-bd3e-4bc2-88da-71bd76a3d229 + Cubicle_LV1.101 Load 8 + + + + 1 + d39da9d5-0c4b-4b80-9493-70d35d40f96d + Cubicle_LV1.101 Load 11 + + + + 1 + 12d5a636-c5a4-45cb-b182-05d44203ffc5 + Cubicle_LV1.101 Load 16 + + + + 1 + ca94ef42-5dc7-4d35-8ac1-afade54aa86f + Cubicle_LV1.101 SGen 1 + + + + + 1 + 84e15e44-5d09-4242-98d3-9f3ce8a41771 + LV1.101 Bus 7_LV1.101 Line 3 + + + + + 1 + 3c28167d-23b3-487b-bb44-49627bf8e400 + Cubicle_LV1.101 Load 28 + + + + 1 + a6ec6e4b-91c2-446c-8760-a659b6d87e0d + Cubicle_LV1.101 Load 25 + + + + 1 + de8a3074-3be4-4d87-b4bc-43165013d6ec + Cubicle_LV1.101 SGen 3 + + + + + 1 + 606fca89-cee3-4c42-8326-0022e284d314 + LV1.101 Bus 4_LV1.101 Line 7 + + + + + 1 + 1e1af7a8-1e57-48de-b8e0-89518228558b + Cubicle_LV1.101 Load 14 + + + + 1 + 53b49cf4-14f1-447c-a78e-ec7777d81037 + LV1.101 Bus 5_LV1.101 Line 11 + + + + + 1 + 299f0a6a-4575-4fdf-83e1-5016e729521b + MV1.101 Bus 4_MV1.101-LV1.101-Trafo 1 + + + + + 1 + 67759146-f9c1-4f87-86f3-4a72a03f5f6c + Cubicle_LV1.101 Load 18 + + + + 1 + 4446158d-c9d1-483e-b715-958b14af4d0b + Cubicle_LV1.101 Load 1 + + + + 1 + 6e20d229-ba72-438f-b37b-019ee6c4f744 + Cubicle_LV1.101 SGen 6 + + + + + 1 + 7d1c6d1c-9883-4c67-9e07-f2f8c9e6d20c + Cubicle_LV1.101 Load 5 + + + + 1 + 4aa7e131-42e6-45e5-adbb-536251d3adad + Cubicle_LV1.101 Load 6 + + + + 1 + 540da292-02e3-435e-9bf3-d36b78619d01 + LV1.101 Bus 4_LV1.101 Line 10 + + + + + 1 + 5b10f88a-6f2c-4277-9eb8-20c9ec2f9316 + Cubicle_LV1.101 Load 9 + + + + 1 + 1e2ff5b5-fc49-456c-808b-8a995623250e + Cubicle_LV1.101 SGen 4 + + + + + 1 + c14240b4-13a7-44d9-a632-f22b4d2b7a8b + Cubicle_LV1.101 Load 12 + + + + 1 + 8606b7bb-a563-4a91-acaa-f4ccb56f8ead + Cubicle_LV1.101 Load 2 + + + + 1 + d7fc9a2a-990c-4bc3-9785-f0cc1792522c + Cubicle_LV1.101 Load 13 + + + + 1 + 17390844-ac9f-4ba2-be3b-3c304c06b231 + Cubicle_LV1.101 Load 22 + + + + 1 + 0fd5ef0b-d296-417e-8a9c-83f22bd1c426 + LV1.101 Bus 9_LV1.101 Line 4 + + + + + 1 + 2b8a58aa-c6f7-4166-a51f-ddbe3d5655a8 + Cubicle_LV1.101 Load 19 + + + + 1 + 7c5f000a-3f7e-42d9-9cf9-50b1bb35b2d1 + Cubicle_LV1.101 Load 17 + + + + 1 + 29a12e04-ee6f-4c3b-af22-8d8665da16ea + LV1.101 Bus 6_LV1.101 Line 9 + + + + + 1 + 539c5c0d-8769-43a5-9fcf-f6420690e257 + Cubicle_LV1.101 Load 4 + + + + 1 + 11c3da26-b40d-4a4c-bf3e-f638b3d5409a + Cubicle_LV1.101 Load 26 + + + + 2 + 2469aa63-b93c-4ed4-807d-27848aabe7f8 + LV1.101 Bus 4_LV1.101 Line 12 + + + + + 1 + 947facf3-6edd-4091-8e81-9161780b6e32 + Cubicle_LV1.101 Load 21 + + + + 2 + 3247de14-f37b-468e-9598-5661e434cb65 + LV1.101 Bus 3_LV1.101 Line 1 + + + + + 1 + a3037c12-b605-469b-b893-77d9fb1cf234 + Cubicle_LV1.101 Load 3 + + + + 1 + f8fed63a-4225-40b5-b714-e95a26b780b6 + Cubicle_LV1.101 Load 7 + + + + 1 + 38a27c29-5d31-4d8c-adea-8ab386d2665f + Cubicle_LV1.101 Storage 2 + + + + + 1 + d36e1894-656d-4464-94bc-3dbdf16f425d + Cubicle_LV1.101 Load 20 + + + + 1 + 3851b6d3-f52b-4422-a2ef-607d08614587 + Cubicle_LV1.101 SGen 5 + + + + + 2 + 40455e91-082f-42bc-84c2-6a68626094d2 + LV1.101 Bus 7_LV1.101 Line 8 + + + + + 1 + 0e9e5ee5-1b60-44a5-8514-ca68a5c64452 + Cubicle_LV1.101 Load 15 + + + + 2 + e594a44b-3213-47a8-b236-926c3604f457 + LV1.101 Bus 4_LV1.101 Line 3 + + + + + 2 + f07d83e7-0cfc-4dd8-a77a-36571565c348 + LV1.101 Bus 6_LV1.101 Line 11 + + + + + 2 + 09328f3e-72af-433b-992a-e28255abf343 + LV1.101 Bus 2_LV1.101 Line 4 + + + + + 1 + bd0d8979-8b5a-4f79-9b49-1fb4e9e03b11 + Cubicle_LV1.101 Storage 3 + + + + + 2 + 777f7f7a-70ab-4846-99f4-a730617799ff + LV1.101 Bus 11_LV1.101 Line 5 + + + + + 1 + f048e7a4-17f1-4921-80eb-fac7f33d3944 + LV1.101 Bus 8_LV1.101 Line 5 + + + + + 1 + 9a5640bc-25b4-4b99-b6c5-6809d3e3d605 + Cubicle_LV1.101 Storage 5 + + + + + 1 + d295d51f-bb5a-4fa3-89b9-4b28a8844588 + Cubicle_LV1.101 Storage 1 + + + + + 2 + baebb27f-2b06-4534-8821-360f9205f2d6 + LV1.101 Bus 9_LV1.101 Line 13 + + + + + 1 + ad14b24a-1d2f-4705-8843-3dfe6a692b33 + Cubicle_LV1.101 SGen 7 + + + + + 1 + ca003607-a538-4313-ac4f-bd4f3d8b5274 + Cubicle_LV1.101 Storage 4 + + + + + 2 + 821a8698-9161-4ea8-aaa0-e59cdb5e5d07 + LV1.101 Bus 10_LV1.101 Line 6 + + + + + 1 + b0b6cd87-5828-4095-9fa1-034c891af789 + LV1.101 Bus 13_LV1.101 Line 13 + + + + + 1 + d8d0f0c5-cc39-48f5-9517-f315780cdceb + Cubicle_LV1.101 SGen 8 + + + + + 1 + 9bbc7e33-ed61-44a4-9097-a3e3783914d7 + Cubicle_LV1.101 SGen 2 + + + + + 2 + c7e220bf-ca7b-4936-8284-5ffc6ecdd823 + LV1.101 Bus 1_LV1.101 Line 10 + + + + + 7f4965a7-cd01-c39b-6756-0516da8a78b6 + Voltage limits for LV1.101 Bus 14 + + + + 57ac9a3e-0fdf-821a-d90d-1204732c5af6 + Voltage limits for LV1.101 Bus 4 + + + + e1c6ef52-80b5-f334-1100-f3951029b5de + Current rating for MV1.101-LV1.101-Trafo 1 + + + + 1a380a0c-b23f-c30e-01d1-b97f44a43d69 + Current rating for LV1.101 Line 10 + + + + 40abb5f9-502e-5ed9-a83a-8f6c5ad7d55d + Current rating for LV1.101 Line 9 + + + + f5d25d70-0acb-971e-fa19-91be583510fe + Voltage limits for LV1.101 Bus 10 + + + + 05fe5fec-2d10-84da-9094-40155144884e + Current rating for LV1.101 Line 2 + + + + 7e53285b-9e9e-1bd5-66bb-c4bc000c70b7 + Voltage limits for LV1.101 Bus 5 + + + + 27881ba4-70bd-0a73-61a5-c44861c9aeed + Voltage limits for LV1.101 Bus 7 + + + + 55b4a5b5-1244-ae84-8d60-267f27fa26c9 + Current rating for LV1.101 Line 7 + + + + 0225f0fa-d831-5f17-cbfa-f31f089272c2 + Current rating for LV1.101 Line 10 + + + + 0387ecb7-fbf8-6203-ffb2-3aaf274f3c10 + Current rating for LV1.101 Line 2 + + + + 0d8677f6-5b41-fba0-aa32-e8c4cc89b06d + Current rating for LV1.101 Line 11 + + + + d1e64e0e-a1f6-6675-1b7c-283ebe5c6100 + Current rating for LV1.101 Line 11 + + + + 65bd0d9b-681d-64f6-e2bd-c6839b6feaa2 + Current rating for LV1.101 Line 7 + + + + 20415075-032e-9f84-fbd0-37d2e763c569 + Voltage limits for LV1.101 Bus 11 + + + + b6e9f998-9913-72f4-038d-31cb3ba60900 + Current rating for MV1.101-LV1.101-Trafo 1 + + + + 13b25b03-8b16-2782-8b84-6f0252931787 + Current rating for LV1.101 Line 3 + + + + 1b87dd17-77a7-5de0-efc2-4e97e2dd947a + Current rating for LV1.101 Line 9 + + + + e36f2fc2-da24-d65c-c76b-1df0cf26fb73 + Current rating for LV1.101 Line 13 + + + + 5f41d991-03ff-91cf-d8ca-3a373a2a1c48 + Current rating for LV1.101 Line 13 + + + + 785dd895-52a5-3bab-5869-acc2b2eccf7b + Voltage limits for MV1.101 Bus 4 + + + + 58f44a1e-02c5-a801-af18-bd97e019af51 + Current rating for LV1.101 Line 3 + + + + aecbc441-60e3-70f1-285c-d2029f40157f + Current rating for LV1.101 Line 1 + + + + 336b01db-5e24-7c21-b7f9-c5a89fffca69 + Voltage limits for LV1.101 Bus 2 + + + + 51e6f716-d309-b003-e623-290f4c5c4059 + Current rating for LV1.101 Line 1 + + + + 135ddab3-bc26-4cc4-35da-9b2f622ffdc8 + Voltage limits for LV1.101 Bus 12 + + + + edee70d2-25bf-4541-7b7c-24625f27f8e1 + Voltage limits for LV1.101 Bus 13 + + + + 98f16f62-4ed2-b326-5edf-f04f721651f5 + Current rating for LV1.101 Line 8 + + + + 30b4709c-70d2-346e-cff6-74cc5ae1ed68 + Current rating for LV1.101 Line 12 + + + + 112bc0bc-9a6d-c160-c7e1-371630dde06a + Current rating for LV1.101 Line 6 + + + + d120a5af-a38d-3081-5d88-8a884ea22d15 + Voltage limits for LV1.101 Bus 3 + + + + df1e500a-53d6-c241-732e-0c3e00e51faf + Current rating for LV1.101 Line 5 + + + + 281dd5e5-2c5d-b31f-09d4-0a08ad77e35e + Current rating for LV1.101 Line 6 + + + + b5ab0cf0-4e08-664f-5051-e02e997b5abe + Current rating for LV1.101 Line 4 + + + + c3ca9d1a-df0f-b867-86ac-f88cb58af2dd + Current rating for LV1.101 Line 8 + + + + a47b6455-25b9-686b-0f21-b87632053f53 + Voltage limits for LV1.101 Bus 1 + + + + 7076a390-f50e-1f63-9fc7-d3b52e51a30c + Current rating for LV1.101 Line 4 + + + + bbe28838-4144-f77a-0e38-7908a26de802 + Voltage limits for LV1.101 Bus 6 + + + + 4bec8272-6f17-e8e4-1fff-d19c48716240 + Current rating for LV1.101 Line 5 + + + + 6b89f541-e273-6a4d-1f47-9c809a1a2ec4 + Voltage limits for LV1.101 Bus 9 + + + + 0256953b-05e5-9deb-73fb-ff25cfefe3f3 + Voltage limits for LV1.101 Bus 8 + + + + dfc65d76-bc43-948f-3f14-95630663ea1b + Current rating for LV1.101 Line 12 + + + + 969ca142-66c0-1e4a-d69e-daa4615a10a7 + low limit for LV1.101 Bus 1 + + + 0.36 + + + 6f5fbcc9-39c1-2bee-a9e4-26a5dc3f33be + high limit for LV1.101 Bus 12 + + + 0.44 + + + b0e50e5e-1ac3-c74d-476a-8a9ae5748af4 + low limit for LV1.101 Bus 4 + + + 0.36 + + + de7329ce-2e0d-7b91-f723-73f186384cc4 + low limit for LV1.101 Bus 12 + + + 0.36 + + + 3f3869d5-2e5d-fb3b-dd3b-474290fe172c + high limit for LV1.101 Bus 9 + + + 0.44 + + + f6abdcaa-4a30-47fe-4dbe-fbc4fa2bd6f9 + high limit for LV1.101 Bus 6 + + + 0.44 + + + bcad8b03-90a4-56b6-ced0-292f34827152 + low limit for LV1.101 Bus 6 + + + 0.36 + + + 08ae570b-df56-ca1d-250b-344724f6f1c2 + high limit for LV1.101 Bus 7 + + + 0.44 + + + ad198ee8-f8ce-4d92-2074-68e7eaa69e25 + high limit for LV1.101 Bus 10 + + + 0.44 + + + 02c415af-6d26-9d80-c404-85ad418d95eb + high limit for LV1.101 Bus 5 + + + 0.44 + + + 3441b8c1-f377-58e1-4939-51f30b26ae2b + low limit for LV1.101 Bus 7 + + + 0.36 + + + b0f017b9-47eb-3c35-cf9a-065c44d2c159 + low limit for LV1.101 Bus 10 + + + 0.36 + + + 32a86950-4ac4-ce63-d220-a4248d81c116 + high limit for LV1.101 Bus 13 + + + 0.44 + + + fea8a23b-ca2a-12bd-073c-e13f1d7995c7 + high limit for LV1.101 Bus 2 + + + 0.44 + + + 3b9e56b1-e760-89d3-21b2-f4dc684253fe + high limit for LV1.101 Bus 11 + + + 0.44 + + + 404c02f9-a36a-76b1-7393-a76d90d57da3 + high limit for MV1.101 Bus 4 + + + 21.1 + + + 47da7e51-2706-524b-8cef-7924b0e108c4 + low limit for LV1.101 Bus 11 + + + 0.36 + + + c0d4d79f-27d0-b115-363b-06bd55049086 + low limit for LV1.101 Bus 5 + + + 0.36 + + + 46558f4d-4cf3-d242-ec16-b97f1a22b48f + low limit for LV1.101 Bus 13 + + + 0.36 + + + d12fffbc-ceaf-76c8-0507-f700a137bfe3 + low limit for MV1.101 Bus 4 + + + 19.3 + + + 5351d066-ab6c-ef1a-b58f-7c89d2088e13 + low limit for LV1.101 Bus 2 + + + 0.36 + + + ed9ee630-843a-8653-b2f1-5f8f9c392997 + high limit for LV1.101 Bus 8 + + + 0.44 + + + 2dea19ad-8882-c3e6-a625-6635d8402f76 + high limit for LV1.101 Bus 3 + + + 0.44 + + + 7ea409c9-6c92-82f2-2f2a-67157f22eec2 + low limit for LV1.101 Bus 3 + + + 0.36 + + + 1dc5884e-7685-b838-9ad8-fff008637b2b + high limit for LV1.101 Bus 4 + + + 0.44 + + + 3e060efc-ac74-b0f1-e9ea-29208cfea6f7 + high limit for LV1.101 Bus 1 + + + 0.44 + + + 20f68d36-7ca7-6380-b610-b2f78ac209e6 + high limit for LV1.101 Bus 14 + + + 0.44 + + + 206e18b9-11ba-206a-a10c-28acbce6177e + low limit for LV1.101 Bus 14 + + + 0.36 + + + 938c7be4-8dbc-0320-e6e9-ff3ccc9c0f52 + low limit for LV1.101 Bus 9 + + + 0.36 + + + d5e0d68e-1061-a40a-ac09-51aec342f1e8 + low limit for LV1.101 Bus 8 + + + 0.36 + + + 88631a07-15f5-8765-93f6-ffa7df51ea83 + Air_Alternative_2 + true + 2 + 2 + + + 1203f311-e8d2-9a4a-dcea-0ddc4b546977 + Soil_Alternative_2 + true + 2 + 2 + + + 111354f7-3fe8-6110-f1ee-8607b8829349 + H0-A + true + 2 + 2 + + + df8f2ff4-1b47-d8a2-d76b-3fd021f85860 + L1-A + true + 2 + 2 + + + 2b8210e5-06f4-2925-138f-a2a0fce5d802 + HLS_A_3.7 + true + 2 + 2 + + + 611e2046-24ea-4908-536d-f343c1a4c74d + Air_Semi-Parallel_2 + true + 2 + 2 + + + 5003fbba-d615-631b-fc48-8153f703d152 + Air_Parallel_2 + true + 2 + 2 + + + 1b575204-1017-51e9-dba0-c4e986add141 + H0-B + true + 2 + 2 + + + 3748155f-434f-df05-ffa5-6f2739d3f35a + H0-C + true + 2 + 2 + + + cb48a791-95dc-761e-6081-7b7dc2dc9200 + HLS_A_11.0 + true + 2 + 2 + + + 0644daf4-d6c7-89d4-b98b-618db6b0ec91 + HLS_B_3.7 + true + 2 + 2 + + + c8e561b5-d381-ac3e-0394-a7bd9d423bd3 + HLS_A_22.0 + true + 2 + 2 + + + ea1d9ba2-257d-59b2-05c3-747996f2f051 + L2-A + true + 2 + 2 + + + 4.6188 + c9dc56f3-2ca5-d9f1-2689-8b56fa2f2805 + patl for MV1.101-LV1.101-Trafo 1 + + + + + 270 + b3bf284e-bd4d-444c-4bea-226d8a309b00 + patl for LV1.101 Line 9 + + + + + 270 + 0ebd9db2-52be-0eca-964e-85c74c23d848 + patl for LV1.101 Line 9 + + + + + 230.94 + 184413b4-2d63-f06b-97f1-a7d16c1f02aa + patl for MV1.101-LV1.101-Trafo 1 + + + + + 270 + 92745f42-5d07-3b8e-ad59-485e76927b25 + patl for LV1.101 Line 11 + + + + + 270 + 159a24ed-dddd-10bc-2a39-0e5962487a57 + patl for LV1.101 Line 10 + + + + + 270 + e9968c82-831b-b3d3-6f2d-f202d14f2052 + patl for LV1.101 Line 7 + + + + + 270 + 2193eb65-4a47-89e0-f8f2-6c8b61a16787 + patl for LV1.101 Line 10 + + + + + 270 + 4d7ecaf3-f674-8091-3986-7876c3ecca49 + patl for LV1.101 Line 7 + + + + + 270 + 98fb05ad-6731-feb0-27c3-9504981b3349 + patl for LV1.101 Line 2 + + + + + 270 + 78adcf90-efbb-4a73-ee15-0c0fa28315fc + patl for LV1.101 Line 2 + + + + + 270 + 339dff78-d393-d3b3-dd47-19aaed3ccb09 + patl for LV1.101 Line 11 + + + + + 270 + a707d25d-b24c-9836-59f4-b64b71013e00 + patl for LV1.101 Line 1 + + + + + 270 + 5a4e8dd1-c53f-4805-598e-731f1288e7bf + patl for LV1.101 Line 3 + + + + + 270 + cfdae26e-4ece-e318-e400-04f0cbe95066 + patl for LV1.101 Line 3 + + + + + 270 + 0ae152f4-c05b-454b-05e2-7113ac58afbd + patl for LV1.101 Line 13 + + + + + 270 + b519906c-ede2-c5eb-2261-201ad126c086 + patl for LV1.101 Line 1 + + + + + 270 + e655ada6-ca56-8c0b-ed27-3014e796acbb + patl for LV1.101 Line 8 + + + + + 270 + d348593b-44f7-5ccb-18d3-81ee00fc40b3 + patl for LV1.101 Line 8 + + + + + 270 + 97967719-e2f1-bc55-cc36-7ef0cec1160b + patl for LV1.101 Line 13 + + + + + 270 + d8f73325-0e0f-933c-e3bf-c8eb4ed09866 + patl for LV1.101 Line 6 + + + + + 270 + 5a156107-28ee-36de-03e1-dfae5d841527 + patl for LV1.101 Line 12 + + + + + 270 + 7d12df3f-b367-a464-bcd1-ab4942fcb21d + patl for LV1.101 Line 4 + + + + + 270 + 38d6fd28-b32f-8285-3989-91856fca3f25 + patl for LV1.101 Line 5 + + + + + 270 + 4a9aa1e1-f0a1-918d-55a9-0987672cae60 + patl for LV1.101 Line 4 + + + + + 270 + aab219d9-d7e8-2135-d4cb-9427ad18e0dd + patl for LV1.101 Line 5 + + + + + 270 + 15af5265-8a5b-a27f-a9bd-f4db7f332e0f + patl for LV1.101 Line 6 + + + + + 270 + ceb2bbe5-9930-0cff-d0bd-2dc872c6f030 + patl for LV1.101 Line 12 + + + + + + + + e2acf849-2b3b-44bc-8010-1211c3e871d3 + LV1.101 Load 8 + + + + + + e801ea3b-5d0f-4eb6-941d-71b14279b92b + LV1.101 Load 1 + + + + + + 42d4acfc-1e79-4e4f-9973-e096772a15d2 + LV1.101 Load 27 + + + + + + b47d3b85-6f7f-4019-8004-8c381708d248 + LV1.101 Load 15 + + + + + + 0770d814-c98f-4eb1-a378-ab5f4ed4fa1d + LV1.101 Load 7 + + + + + + 180c7e1e-8af1-439b-8efd-7cb62bfba145 + LV1.101 Load 23 + + + + + + 5a04c2ba-503f-441b-aac3-5522810bc963 + LV1.101 Load 16 + + + + + + c4be856a-75cb-437e-b04c-0aba06ed102c + LV1.101 Load 5 + + + + + + fbfed02b-0034-4932-b7f6-4093dd3f8154 + LV1.101 Load 13 + + + + + + 1847794b-1c05-4a3e-89d6-91e0e00d2279 + LV1.101 Load 22 + + + + + + 2b144c40-87f1-439e-ac28-5b3f29872296 + LV1.101 Load 25 + + + + + + 3d573a89-87c9-4f5c-872a-cf5c54c13991 + LV1.101 Load 20 + + + + + + 231c3936-7b75-4ff7-a13d-173d36ea9f48 + LV1.101 Load 24 + + + + + + 875c7d69-1238-4a9b-b582-61e2691b0064 + LV1.101 Load 3 + + + + + + 593806ad-d1fc-47ab-bf7d-8ad2fdaf2da3 + LV1.101 Load 10 + + + + + + 60aedba3-2dab-4eb4-abc7-9394778543a8 + LV1.101 Load 21 + + + + + + c135a594-d644-4d5d-ab88-266be0a47e64 + LV1.101 Load 2 + + + + + + 24dcc7d6-7c93-4e59-bfe7-574a246f9921 + LV1.101 Load 14 + + + + + + 086013f1-c9c6-4fff-8dfc-a27505a3501f + LV1.101 Load 19 + + + + + + 474be48f-7a88-44df-b096-51ac58bf3989 + LV1.101 Load 4 + + + + + + 268cce5e-55a2-40b5-94bc-ec92d9e2c184 + LV1.101 Load 6 + + + + + + 2f0c4dd7-30c1-4b9b-9c5b-c0916d5491fe + LV1.101 Load 26 + + + + + + 805d3be0-a8a9-4571-86ef-bd4e0cbe1ea7 + LV1.101 Load 11 + + + + + + 977f4214-3a9f-4b48-8b0a-b91c51dbffbd + LV1.101 Load 12 + + + + + + b66a0a6e-b1ff-4d71-b2e0-eccf6abf0b92 + LV1.101 Load 17 + + + + + + 7c49b2c2-0d39-4843-8823-14ca241a2d35 + LV1.101 Load 18 + + + + + + 12537c26-0b07-42e2-9260-c778625fd726 + LV1.101 Load 28 + + + + + + 35cfb96f-402f-414a-a674-fe2f69670e60 + LV1.101 Load 9 + + + + Storage_PV8_L2-A + c59d5176-aaec-4b42-b261-19a297495de7 + LV1.101 Storage 5 + + 0.050232 + -0.050232 + 0.0502 + 0.4 + + + + PV6 + 2e4b51aa-b3fa-4422-b68c-a3edb53c1d47 + LV1.101 SGen 7 + + 0 + 0 + 0.0245 + 0.4 + + + + PV5 + 7669242b-6236-41d0-ae71-7068bd9ae545 + LV1.101 SGen 3 + + 0 + 0 + 0.023 + 0.4 + + + + PV8 + 08701210-0615-48a9-a3bf-94120851dc67 + LV1.101 SGen 5 + + 0 + 0 + 0.0489 + 0.4 + + + + PV5 + f182b438-d382-40ba-b119-b7914724cb2d + LV1.101 SGen 1 + + 0 + 0 + 0.04 + 0.4 + + + + Storage_PV5_L2-A + 0cf72316-b123-4919-9b1a-175ab8a6d231 + LV1.101 Storage 2 + + 0.033488 + -0.033488 + 0.0335 + 0.4 + + + + PV8 + 6dd2153f-0d2e-4979-ba7c-6910eba8adea + LV1.101 SGen 6 + + 0 + 0 + 0.1172 + 0.4 + + + + PV6 + 22aa007b-d2c8-4d1a-9a2c-538d93ff73f5 + LV1.101 SGen 4 + + 0 + 0 + 0.019 + 0.4 + + + + PV6 + 75034969-222c-4bcc-b32f-87797e33af70 + LV1.101 SGen 8 + + 0 + 0 + 0.1172 + 0.4 + + + + PV8 + fa42b334-8dd5-409e-b86b-b9c1ee5366ed + LV1.101 SGen 2 + + 0 + 0 + 0.0784 + 0.4 + + + + Storage_PV8_L1-A + b36276eb-a9f7-4e00-9460-b41c6c93356a + LV1.101 Storage 4 + + 0.018338 + -0.018338 + 0.0183 + 0.4 + + + + Storage_PV5_L1-A + e620e7f4-13d3-4748-af49-773c63a5ceea + LV1.101 Storage 3 + + 0.030563 + -0.030563 + 0.0306 + 0.4 + + + + Storage_PV8_L1-A + 90a7bc31-8f77-4e2f-be01-fdda8a81aa4d + LV1.101 Storage 1 + + 0.073352 + -0.073352 + 0.0734 + 0.4 + + + 6.45781e-6 + 0 + 0.00511915 + 0.00199181 + + 0.0247661 + f8927e72-54f7-4b53-9e60-64754ade6abc + LV1.101 Line 6 + + + 3.57791e-5 + 0 + 0.0283623 + 0.0110355 + + 0.137215 + 70ab901e-5d8a-4c8e-a5fb-957a8578789a + LV1.101 Line 9 + + + 3.45494e-5 + 0 + 0.0273875 + 0.0106562 + + 0.132499 + 14274c4c-039e-4f58-8bac-31a5ed528566 + LV1.101 Line 10 + + + 1.45413e-5 + 0 + 0.011527 + 0.00448503 + + 0.0557667 + 92286623-b4fe-48c0-a036-326b5681d11a + LV1.101 Line 1 + + + 4.66384e-6 + 0 + 0.00369706 + 0.00143849 + + 0.0178861 + bff367a0-e660-4964-ab6d-8c7c945ae362 + LV1.101 Line 4 + + + 6.7341e-7 + 0 + 0.000533817 + 0.000207703 + + 0.00258257 + 53ca41a9-2478-4c57-9eb4-c739cd862350 + LV1.101 Line 11 + + + 1.34056e-6 + 0 + 0.00106267 + 0.000413474 + + 0.00514112 + 66239d79-5d3f-471a-951a-904940919237 + LV1.101 Line 7 + + + 1.39701e-5 + 0 + 0.0110742 + 0.00430886 + + 0.0535763 + 19c9660d-c2e0-4d2e-83e2-bfa485f04759 + LV1.101 Line 2 + + + 4.22606e-6 + 0 + 0.00335003 + 0.00130346 + + 0.0162072 + f67b07cc-ddb1-4ba2-bebf-735e9ee84e6f + LV1.101 Line 12 + + + 4.19529e-6 + 0 + 0.00332564 + 0.00129397 + + 0.0160892 + f7ed9c27-2d37-47c2-ad43-bfd95fbde0d6 + LV1.101 Line 5 + + + 5.59822e-7 + 0 + 0.000443775 + 0.000172668 + + 0.00214695 + fb3b7ba0-661c-494a-b8d5-f879ba2c8f91 + LV1.101 Line 8 + + + 1.19986e-5 + 0 + 0.00951136 + 0.00370077 + + 0.0460153 + 8aa76e57-41c0-4823-b80b-c602bdf9276a + LV1.101 Line 13 + + + 1.29892e-5 + 0 + 0.0102967 + 0.00400632 + + 0.0498145 + 7fcc388d-be1c-4e02-af11-63bf7cbd1317 + LV1.101 Line 3 + + + fc8a4012-0310-2869-17a9-a90dd3ec4389 + LV1.101 Load 7 + + + 45495227-e0ec-2752-d552-520a0752c845 + highVoltage + + true + + + + 9d7181c3-8b02-ed53-e2c9-f94e83aa813d + lowVoltage + + true + + + + 47b6609e-6485-5ae2-2a59-eefb1e2ad462 + patl + + true + + + + 9f2c1238-cd31-e2d1-aac9-fd86ab19844d + LV1.101 Load 7 + + + + + 0 + 100000 + 9999 + 0 + -9999 + 2539e00a-e4a6-4c49-8522-10d688e6aafb + MV1.101 grid at LV1.101 + + + + 153e21e1-70e7-52b8-4b0e-29334f376b71 + MV1.101-LV1.101-Trafo 1 + + -9.58077e-9 + + 1.15e-6 + 36.7188 + 0.16 + 20 + 93.0147 + + + 1 + + + 02db410e-2023-422f-b33b-d2053027feb6 + MV1.101-LV1.101-Trafo 1 + + 0 + + 0 + 0 + 0.16 + 0.4 + 0 + + + 2 + + + 6f914c87-3b9b-c780-7f6a-804e1ae269de + LV1.101 Bus 1 + + + + + 7de027f8-cba1-c2ab-5eed-bcfbf1cd7d53 + LV1.101 Bus 14 + + + + + 0727d3e0-35e1-835d-cfef-5ebdae383997 + LV1.101 Bus 10 + + + + + b7ef6fd7-97c6-dff7-637c-6c3f0efdfdaa + LV1.101 Bus 3 + + + + + 7bd84100-ce74-04bb-056c-d27e506411ae + LV1.101 Bus 8 + + + + + 5731d1ec-39b4-a147-1595-46007bf5d920 + LV1.101 Bus 6 + + + + + aed845bc-cb0f-6e64-be3e-be943a45ea8b + LV1.101 Bus 12 + + + + + ee9170b7-8667-b59f-78ed-ecabc5e8f8fc + LV1.101 Bus 5 + + + + + 4ab89a89-4d6e-a5d7-b996-7dda37b83751 + LV1.101 Bus 9 + + + + + 54ed6638-0f70-7d3e-a7fa-757bad861217 + MV1.101 Bus 4 + + + + + 610d536b-c18d-1c16-2207-7054d2bca172 + LV1.101 Bus 2 + + + + + ec3cf56c-e6ca-f10d-04ec-99c4985278fe + LV1.101 Bus 4 + + + + + 8015930e-9cb0-b77e-eee1-9d23810418c7 + LV1.101 Bus 13 + + + + + 72230379-c41c-dc03-f057-7ea2282da073 + LV1.101 Bus 11 + + + + + ed2f6c57-1c0b-eb3c-1e66-31b18d163c8f + LV1.101 Bus 7 + + + + + 036b5bae-3f4a-e452-7c8c-44397299b4d9 + MV1.101-LV1.101-Trafo 1 + + 2.5 + 2 + -2 + false + 0 + 20 + 1 + + + 0.4 + BaseVoltage 0.40 kV + 3bb9f877-99de-e910-f7a7-04c49f08e88e + 0.40 kV + 0.40 kV + + + 20 + BaseVoltage 20.00 kV + d61ecdd0-8e67-2117-ebd9-76ca624396fc + 20.00 kV + 20.00 kV + + + 0 + + 634cc5dc-e7d6-7a65-13be-afe892436589 + LV1.101 Storage 2 + 0 + -0.033488 + + + 0 + + f08d67d3-b0a8-802f-7496-3e7601436089 + LV1.101 Storage 5 + 0 + -0.050232 + + + 0 + + 5a975eab-f292-bf45-a804-fefd2b2ccb5a + LV1.101 Storage 3 + 0 + -0.030563 + + + 0 + + b8020ace-b9d4-5c99-22d6-30da56f386df + LV1.101 Storage 1 + 0 + -0.073352 + + + 0 + + 1a633230-f244-937e-431f-88b284adab40 + LV1.101 Storage 4 + 0 + -0.018338 + + + + bd3b6b8e-46dc-b04f-cd1b-189ee62828a4 + LV1.101 SGen 4 + 0.019 + 0 + + + + 1611b0aa-0980-200b-6fef-f0bf55e2eae7 + LV1.101 SGen 2 + 0.0784 + 0 + + + + c125b5d1-7599-cdb8-3df9-4cafb0784b8c + LV1.101 SGen 8 + 0.1172 + 0 + + + + 5fc6b897-92bb-a2b7-413d-f5e98f26eab0 + LV1.101 SGen 1 + 0.04 + 0 + + + + a30cad0d-67b9-c835-5587-45d354843d85 + LV1.101 SGen 3 + 0.023 + 0 + + + + 59a120a0-f002-91a3-3ebe-f60489c5d04e + LV1.101 SGen 7 + 0.0245 + 0 + + + + 83c8891b-debe-2e54-637e-54a38fad9715 + LV1.101 SGen 6 + 0.1172 + 0 + + + + 8172af27-3b10-0378-7403-b13c635eac93 + LV1.101 SGen 5 + 0.0489 + 0 + + + 8919f6ba-9261-cbbd-2db7-a6e1980aecc7 + MV1.101 grid at LV1.101 + + + + + + 28c4a136-6bb9-4df0-8ac1-8ead38a3f668 + MV1.101-LV1.101-Trafo 1 + + + 16339f15-3388-e3b6-d88d-14997f4270be + LV1.101 Load 7 + + + + da7e23be-ded2-7ae3-bef6-626d6eae63bb + 1-LV-rural1--2-no_sw + + + f3f9331a-2600-943d-3edb-df338c7aab30 + 1-LV-rural1--2-no_sw + + + + b69ccccb-ea19-3e88-c6ea-5f910d6e6bfd + 1-LV-rural1--2-no_sw + + + diff --git a/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/LV_Test_grid_cim/LV_Test_grid_cim/CIM_LV_Simbench_Grid.zip b/cimpy_3/cimpy/examples/sampledata/CIGRE_MV/LV_Test_grid_cim/LV_Test_grid_cim/CIM_LV_Simbench_Grid.zip new file mode 100644 index 0000000000000000000000000000000000000000..a6e697bc05b8209934c409462b95359ffae68159 GIT binary patch literal 54330 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 x?eC + + + + + + 2023-05-12T08:11:14Z + www.ie3.etit.tu-dortmund.de + http://entsoe.eu/CIM/DiagramLayout/3/1 + 2015-12-31T23:00:00Z + + + + + GCO_1 + + + + + 287 + Grafisches Netzelement64 + + + + + LV1.101 Bus 1_Graph + + + + + GCO_1 + + + + + Grafisches Netzelement53 + + + + + LV1.101 Bus 14 + + + + + GCO_1 + + + + + LV1.101 Bus 6_Graph + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement40 + + + + + GCO_1 + + + + + LV1.101 Bus 11_Graph + + + + + GCO_1 + + + + + 285 + Grafisches Netzelement69 + + + + + Grafisches Netzelement52 + + + + + GCO_1 + + + + + Grafisches Netzelement46 + + + + + 180 + Grafisches Netzelement48 + + + + + GCO_1 + + + + + GCO_1 + + + + + 200 + Grafisches Netzelement63 + + + + + 180 + Grafisches Netzelement57 + + + + + GCO_1 + + + + + GCO_1 + + + + + Grafisches Netzelement39 + + + + + Grafisches Netzelement56 + + + + + GCO_1 + + + + + GCO_2 + + + + + 222 + Grafisches Netzelement68 + + + + + GCO_1 + + + + + LV1.101 Bus 12 + + + + + 180 + Grafisches Netzelement51 + + + + + GCO_1 + + + + + Grafisches Netzelement55 + + + + + GCO_1 + + + + + Grafisches Netzelement50 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement23 + + + + + GCO_1 + + + + + Grafisches Netzelement49 + + + + + GCO_1 + + + + + Grafisches Netzelement26 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement47 + + + + + GCO_1 + + + + + Grafisches Netzelement36 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement28 + + + + + GCO_1 + + + + + Grafisches Netzelement18 + + + + + Grafisches Netzelement43 + + + + + LV1.101 Bus 5 + + + + + Grafisches Netzelement22 + + + + + GCO_1 + + + + + Grafisches Netzelement25 + + + + + 180 + Grafisches Netzelement54 + + + + + GCO_1 + + + + + Grafisches Netzelement29 + + + + + 210 + Grafisches Netzelement65 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement42 + + + + + Grafisches Netzelement31 + + + + + GCO_1 + + + + + LV1.101 Bus 7 + + + + + 189 + Grafisches Netzelement67 + + + + + GCO_1 + + + + + 81 + Grafisches Netzelement17 + + + + + 306 + Grafisches Netzelement61 + + + + + 180 + Grafisches Netzelement32 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement34 + + + + + GCO_1 + + + + + Grafisches Netzelement19 + + + + + Grafisches Netzelement16 + + + + + GCO_1 + + + + + LV1.101 Bus 13 + + + + + 171 + Grafisches Netzelement71 + + + + + GCO_1 + + + + + LV1.101 Bus 10 + + + + + GCO_1 + + + + + Grafisches Netzelement45 + + + + + LV1.101 Bus 3 + + + + + GCO_1 + + + + + Grafisches Netzelement20 + + + + + LV1.101 Bus 4 + + + + + GCO_1 + + + + + Grafisches Netzelement21 + + + + + LV1.101 Bus 10_Graph + + + + + GCO_1 + + + + + LV1.101 Bus 1 + + + + + LV1.101 Bus 6 + + + + + 180 + Grafisches Netzelement59 + + + + + GCO_1 + + + + + LV1.101 Bus 2 + + + + + GCO_1 + + + + + 191 + Grafisches Netzelement62 + + + + + 180 + Grafisches Netzelement27 + + + + + GCO_1 + + + + + LV1.101 Bus 4_Graph + + + + + LV1.101 Bus 11 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement37 + + + + + LV1.101 Bus 9 + + + + + GCO_1 + + + + + 293 + Grafisches Netzelement60 + + + + + GCO_1 + + + + + 180 + Grafisches Netzelement38 + + + + + 222 + Grafisches Netzelement70 + + + + + LV1.101 Bus 7_Graph + + + + + Grafisches Netzelement44 + + + + + Grafisches Netzelement35 + + + + + GCO_1 + + + + + LV1.101 Bus 3_Graph + + + + + 176 + Grafisches Netzelement66 + + + + + 180 + Grafisches Netzelement58 + + + + + LV1.101 Bus 9_Graph + + + + + LV1.101 Bus 2_Graph + + + + + MV1.101 Bus 4_Graph + + + + + LV1.101 Bus 14_Graph + + + + + LV1.101 Bus 12_Graph + + + + + LV1.101 Bus 5_Graph + + + + + LV1.101 Bus 8_Graph + + + + + LV1.101 Bus 13_Graph + + + + + MV1.101 Bus 4 + + + + + 180 + Grafisches Netzelement33 + + + + + Grafisches Netzelement24 + + + + + 180 + Grafisches Netzelement41 + + + + + Grafisches Netzelement30 + + + + + GCO_1 + + + + + LV1.101 Bus 8 + + + + 1 + 155.312 + 237.5 + + + + 1 + 201.25 + 416.875 + + + + 1 + 91.875 + 202.5 + + + + 1 + 297.5 + 141.25 + + + + 1 + 258.125 + 123.75 + + + + 1 + 280 + 228.75 + + + + 1 + 266.875 + 272.5 + + + + 1 + 112.383 + -380.041 + + + + 2 + 74.375 + 180.625 + + + + 2 + 293.125 + 272.5 + + + + 2 + 310.625 + 123.75 + + + + 1 + 112.383 + -380.041 + + + + 1 + 48.125 + 198.125 + + + + 1 + 210 + 237.5 + + + + 1 + 112.384 + -380.041 + + + + 1 + 227.5 + 399.375 + + + + 2 + 126.875 + 202.5 + + + + 2 + 240.625 + 530.625 + + + + 1 + 271.25 + 106.25 + + + + 2 + 253.75 + 416.875 + + + + 1 + 205.625 + 530.625 + + + + 2 + 236.25 + 303.125 + + + + 1 + 358.75 + 58.125 + + + + 1 + 231.875 + 491.25 + + + + 2 + 253.75 + 473.75 + + + + 2 + 253.75 + 237.5 + + + + 2 + 188.125 + 220 + + + + 1 + 201.25 + 303.125 + + + + 1 + 323.75 + 97.5 + + + + 1 + 264.323 + 233.125 + + + + 1 + 214.375 + 434.375 + + + + 1 + 238.438 + 158.75 + + + + 1 + 173.542 + 202.5 + + + + 1 + 217.292 + 548.125 + + + + 1 + 196.875 + 360 + + + + 2 + 350 + 80 + + + + 1 + 223.125 + 176.25 + + + + 1 + 291.667 + 246.25 + + + + 1 + 144.375 + 220 + + + + 2 + 240.625 + 360 + + + + 2 + 138.633 + -380.039 + + + + 1 + 247.625 + 193.75 + + + + 2 + 138.633 + -380.04 + + + + 1 + 112.383 + -380.039 + + + + 1 + 112.383 + -380.04 + + + + 2 + 138.634 + -380.041 + + + + 1 + 210 + 473.75 + + + + 2 + 138.633 + -380.041 + + + + 1 + 231.875 + 237.5 + + + + 2 + 284.375 + 176.25 + + + + 1 + 39.375 + 180.625 + + + + 1 + 269.062 + 176.25 + + + + 1 + 112.384 + -380.041 + + + + 2 + 297.5 + 228.75 + + + + 1 + 228.958 + 530.625 + + + + 1 + 284.375 + 141.25 + + + + 2 + 138.634 + -380.041 + + + + 3 + 220.938 + 237.5 + + + + 1 + 177.188 + 220 + + + + 1 + 103.542 + 220 + + + + 2 + 138.633 + -380.041 + + + + 1 + 239.167 + 237.5 + + + + 1 + 239.167 + 456.25 + + + + 1 + 297.5 + 80 + + + + 2 + 103.542 + 202.5 + + + + 1 + 224.583 + 303.125 + + + + 2 + 138.633 + -380.041 + + + + 1 + 323.75 + 62.5 + + + + 2 + 138.633 + -380.04 + + + + 1 + 112.384 + -380.04 + + + + 2 + 177.188 + 220 + + + + 2 + 350 + 40.625 + + + + 1 + 227.5 + 403.75 + + + + 1 + 112.384 + -380.04 + + + + 2 + 138.634 + -380.039 + + + + 4 + 220.938 + 237.5 + + + + 1 + 112.383 + -380.04 + + + + 1 + 253.75 + 158.75 + + + + 1 + 207.812 + 377.5 + + + + 1 + 48.125 + 193.75 + + + + 2 + 376.25 + 40.625 + + + + 2 + 138.634 + -380.039 + + + + 2 + 138.634 + -380.04 + + + + 1 + 238.438 + 163.125 + + + + 1 + 115.208 + 185 + + + + 1 + 65.625 + 180.625 + + + + 2 + 240.625 + 416.875 + + + + 1 + 112.385 + -380.041 + + + + 1 + 310.625 + 62.5 + + + + 2 + 275.625 + 272.5 + + + + 2 + 226.042 + 360 + + + + 1 + 228.958 + 548.125 + + + + 1 + 358.75 + 23.125 + + + + 1 + 272.125 + 193.75 + + + + 1 + 260.002 + 233.809 + + + + 1 + 280 + 290 + + + + 2 + 336.875 + 80 + + + + 2 + 158.958 + 220 + + + + 1 + 218.75 + 377.5 + + + + 1 + 284.375 + 255 + + + + 1 + 112.385 + -380.04 + + + + 1 + 242.812 + 491.25 + + + + 2 + 220.938 + 473.75 + + + + 1 + 231.875 + 486.875 + + + + 2 + 138.635 + -380.041 + + + + 1 + 56.875 + 198.125 + + + + 1 + 336.875 + 97.5 + + + + 1 + 217.292 + 513.125 + + + + 2 + 247.625 + 176.25 + + + + 2 + 227.5 + 416.875 + + + + 1 + 336.875 + 80 + + + + 2 + 271.25 + 123.75 + + + + 1 + 56.875 + 167.5 + + + + 2 + 224.583 + 237.5 + + + + 2 + 280 + 272.5 + + + + 2 + 138.634 + -380.04 + + + + 2 + 48.125 + 180.625 + + + + 2 + 238.438 + 176.25 + + + + 1 + 259.875 + 193.75 + + + + 1 + 224.583 + 473.75 + + + + 2 + 56.875 + 180.625 + + + + 3 + 310.625 + 80 + + + + 1 + 367.5 + 58.125 + + + + 1 + 115.208 + 202.5 + + + + 2 + 253.75 + 176.25 + + + + 1 + 211.458 + 360 + + + + 1 + 253.75 + 163.125 + + + + 1 + 112.384 + -380.04 + + + + 1 + 227.5 + 434.375 + + + + 2 + 138.634 + -380.04 + + + + 1 + 247.625 + 189.375 + + + + 1 + 358.75 + 27.5 + + + + 1 + 103.542 + 215.625 + + + + 1 + 112.384 + -380.039 + + + + 1 + 112.384 + -380.039 + + + + 1 + 112.383 + -380.041 + + + + 2 + 217.292 + 530.625 + + + + 1 + 155.312 + 233.125 + + + + 1 + 227.5 + 430 + + + + 2 + 235.375 + 176.25 + + + + 1 + 214.375 + 416.875 + + + + 1 + 226.042 + 346.875 + + + + 2 + 323.75 + 80 + + + + 1 + 166.25 + 237.5 + + + + 1 + 56.875 + 163.125 + + + + 1 + 224.583 + 316.25 + + + + 1 + 297.5 + 123.75 + + + + 1 + 240.625 + 399.375 + + + + 2 + 231.875 + 473.75 + + + + 1 + 226.042 + 342.5 + + + + 2 + 224.583 + 303.125 + + + + 2 + 173.542 + 220 + + + + 1 + 271.25 + 110.625 + + + + 1 + 280 + 285.625 + + + + 2 + 138.635 + -380.04 + + + + 1 + 323.75 + 66.875 + + + + 1 + 284.375 + 136.875 + + + + 2 + 229.688 + 360 + + + + 1 + 341.25 + 40.625 + + + + 2 + 297.5 + 123.75 + + + + 1 + 217.292 + 543.75 + + + + 2 + 155.312 + 220 + + + + 2 + 227.5 + 416.875 + + + + 2 + 284.375 + 123.75 + + + + 1 + 310.625 + 66.875 + + + + 1 + 173.542 + 206.875 + + + + 4 + 310.625 + 80 + + + + 1 + 212.917 + 285.625 + + + + 2 + 103.542 + 202.5 + + + + 2 + 242.812 + 237.5 + + + + 2 + 239.167 + 473.75 + + + + 1 + 323.75 + 93.125 + + + + 2 + 212.917 + 303.125 + + + + 1 + 284.375 + 106.25 + + + + 2 + 358.75 + 40.625 + + + + 2 + 207.812 + 360 + + + + 2 + 310.625 + 80 + + + + 1 + 166.25 + 233.125 + + + + 2 + 166.25 + 220 + + + + 1 + 224.583 + 320.625 + + + + 2 + 271.25 + 123.75 + + + + 1 + 259.875 + 189.375 + + + + 1 + 239.167 + 460.625 + + + + 2 + 323.75 + 80 + + + + 2 + 272.125 + 176.25 + + + + 1 + 336.875 + 93.125 + + + + 1 + 284.375 + 259.375 + + + + 1 + 297.5 + 136.875 + + + + 2 + 56.875 + 180.625 + + + + 1 + 272.125 + 189.375 + + + + 2 + 297.5 + 123.75 + + + + 1 + 284.375 + 110.625 + + + + 1 + 228.958 + 543.75 + + + + 1 + 212.917 + 290 + + + + 2 + 228.958 + 530.625 + + + + 2 + 115.208 + 202.5 + + + + 2 + 259.875 + 176.25 + + + + 1 + 268.644 + 232.441 + + + + 1 + 217.292 + 517.5 + + + + 1 + 240.625 + 403.75 + + + + 2 + 218.75 + 360 + + + + 2 + 285.833 + 228.75 + + + + 2 + 214.375 + 416.875 + + + + 1 + 214.375 + 430 + + + + 1 + 367.5 + 53.75 + + + + 1 + 115.208 + 189.375 + + + + 1 + 218.75 + 373.125 + + + + 2 + 212.917 + 303.125 + + + + 1 + 358.75 + 53.75 + + + + 2 + 240.625 + 416.875 + + + + 2 + 242.812 + 473.75 + + + + 2 + 358.75 + 40.625 + + + + 1 + 207.812 + 373.125 + + + + 1 + 242.812 + 486.875 + + + + 2 + 367.5 + 40.625 + + + + 2 + 217.292 + 530.625 + + + + 2 + 284.375 + 272.5 + + + + 1 + 291.667 + 241.875 + + + + 2 + 284.375 + 123.75 + + + + 2 + 291.667 + 228.75 + + + + 1 + 56.875 + 193.75 + + + + 1-LV-rural1--2-no_sw(1) + + + + 1-LV-rural1--2-no_sw + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SSH_.xml new file mode 100644 index 00000000..382a2bc7 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SSH_.xml @@ -0,0 +1,479 @@ + + + + + + 2023-05-12T08:11:14Z + www.ie3.etit.tu-dortmund.de + http://entsoe.eu/CIM/SteadyStateHypothesis/1/1 + 2015-12-31T23:00:00Z + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 0.0079 + 0.0031 + + + 0.003 + 0.0012 + + + 0.0049 + 0.002 + + + 0.003 + 0.0012 + + + 0.0037 + 0.0014 + + + 0.0049 + 0.002 + + + 0.0109 + 0.0043 + + + 0.002 + 0.0008 + + + 0.003 + 0.0012 + + + 0.0037 + 0.0014 + + + 0.0218 + 0.0086 + + + 0.002 + 0.0008 + + + 0.002 + 0.0008 + + + 0.003 + 0.0012 + + + 0.0037 + 0.0014 + + + 0.0049 + 0.002 + + + 0.002 + 0.0008 + + + 0.002 + 0.0008 + + + 0.003 + 0.0012 + + + 0.004 + 0.0016 + + + 0.0137 + 0.0054 + + + 0.0059 + 0.0024 + + + 0.0137 + 0.0054 + + + 0.0218 + 0.0086 + + + 0.0119 + 0.0046 + + + 0.0109 + 0.0043 + + + 0.004 + 0.0016 + + + 0.004 + 0.0016 + + + false + -0.0502 + 0 + + 0 + + + false + -0.1172 + 0 + + 0 + + + false + -0.0335 + 0 + + 0 + + + false + -0.023 + 0 + + 0 + + + false + -0.0489 + 0 + + 0 + + + false + -0.0245 + 0 + + 0 + + + false + -0.0183 + 0 + + 0 + + + false + -0.0306 + 0 + + 0 + + + false + -0.019 + 0 + + 0 + + + false + -0.04 + 0 + + 0 + + + false + -0.0734 + 0 + + 0 + + + false + -0.1172 + 0 + + 0 + + + false + -0.0784 + 0 + + 0 + + + false + 1 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + 0 + 1 + true + + + false + true + 20.5 + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SV_.xml new file mode 100644 index 00000000..59319b2d --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_SV_.xml @@ -0,0 +1,460 @@ + + + + + + + 2023-05-12T08:11:14Z + www.ie3.etit.tu-dortmund.de + http://entsoe.eu/CIM/StateVariables/4/1 + 2015-12-31T23:00:00Z + + + Island_001 + + + + + + + + + + + + + + + + + + + + 0.0716172 + -0.0180343 + + + + -0.0149728 + 0.00320059 + + + + 0.0049 + 0.002 + + + + 0.002 + 0 + + + + -0.0923119 + 0.00972368 + + + + -0.019 + 0 + + + + -0.1172 + 0 + + + + 0.0149781 + -0.00319927 + + + + -0.0712516 + 0.0181743 + + + + 0 + 0 + + + + -0.0573452 + 0.0235845 + + + + 0.003 + 0.0012 + + + + 0.0109 + 0.0043 + + + + 0.003 + 0.0012 + + + + -0.037895 + 0.00431958 + + + + 0.0119 + 0.0046 + + + + 0.0037 + 0.0014 + + + + 0.0751753 + -0.0205083 + + + + 0.0059 + 0.0024 + + + + 0.274253 + -0.0928229 + + + + 0.002 + 0 + + + + 0.0189981 + -0.00159146 + + + + 0.004 + 0.0016 + + + + 0.003 + 0.0012 + + + + -0.0189768 + 0.00159778 + + + + 0.0379981 + -0.00428186 + + + + 0.002 + 0 + + + + 0.0573556 + -0.0235805 + + + + 0.003 + 0.0012 + + + + -0.0563313 + 0.0354728 + + + + 0 + 0 + + + + -0.0784 + 0 + + + + 0.0563604 + -0.0354617 + + + + 0.0218 + 0.0086 + + + + -0.0245 + 0 + + + + -0.0997907 + 0.0067499 + + + + 0.003 + 0.0012 + + + + 0 + 0 + + + + 0.0137 + 0.0054 + + + + 0.0218 + 0.0086 + + + + -0.04 + 0 + + + + 0.004 + 0.0016 + + + + 0 + 0 + + + + -0.0937438 + 0.0249972 + + + + 0.002 + 0 + + + + 0.002 + 0 + + + + 0.0242993 + -0.00972497 + + + + 0.0037 + 0.0014 + + + + 0.0079 + 0.0031 + + + + 0.0137 + 0.0054 + + + + 0.282423 + -0.0732956 + + + + -0.1172 + 0 + + + + 0.0037 + 0.0014 + + + + -0.023 + 0 + + + + 0.0049 + 0.002 + + + + -0.0750511 + 0.020556 + + + + -0.0305517 + 0.00680054 + + + + 0.0943421 + -0.0247665 + + + + -0.0489 + 0 + + + + 0 + 0 + + + + 0.0049 + 0.002 + + + + -0.0242777 + 0.0097323 + + + + -0.274253 + 0.0928229 + + + + 0.004 + 0.0016 + + + + 0.0937912 + -0.00915412 + + + + 0.103507 + -0.00534601 + + + + 0.0305719 + -0.00679334 + + + + 0.0109 + 0.0043 + + + + -0.101751 + 0.00602376 + + + + 0.0998221 + -0.00673782 + + + + -145.762 + 0.403413 + + + + -145.654 + 0.404638 + + + + -145.647 + 0.404691 + + + + -145.813 + 0.403278 + + + + 0 + 20.5 + + + + -145.797 + 0.403152 + + + + -145.877 + 0.402486 + + + + -145.855 + 0.402598 + + + + -145.685 + 0.404448 + + + + -145.019 + 0.412765 + + + + -145.843 + 0.402844 + + + + -145.855 + 0.402718 + + + + -145.47 + 0.406449 + + + + -145.028 + 0.412639 + + + + -145.442 + 0.409262 + + + + 1 + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_TP_.xml new file mode 100644 index 00000000..79e1da5f --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_XX_YYY_TP_.xml @@ -0,0 +1,296 @@ + + + + + + 2023-05-12T08:11:14Z + www.ie3.etit.tu-dortmund.de + http://entsoe.eu/CIM/Topology/4/1 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LV1.101 Bus 13 + + + + + LV1.101 Bus 10 + + + + + LV1.101 Bus 6 + + + + + LV1.101 Bus 11 + + + + + LV1.101 Bus 14 + + + + + LV1.101 Bus 3 + + + + + LV1.101 Bus 1 + + + + + LV1.101 Bus 5 + + + + + LV1.101 Bus 12 + + + + + LV1.101 Bus 4 + + + + + LV1.101 Bus 7 + + + + + LV1.101 Bus 8 + + + + + LV1.101 Bus 9 + + + + + LV1.101 Bus 2 + + + + + MV1.101 Bus 4 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_YYY_EQ_.xml new file mode 100644 index 00000000..186589a6 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_2_4_15/20151231T2300Z_YYY_EQ_.xml @@ -0,0 +1,1713 @@ + + + + + 2023-05-12T08:11:14Z + www.ie3.etit.tu-dortmund.de + http://entsoe.eu/CIM/EquipmentCore/3/1 + 2015-12-31T23:00:00Z + + + Voltage limits for LV1.101 Bus 5 + + + + Voltage limits for LV1.101 Bus 1 + + + + Current rating for LV1.101 Line + + + + Voltage limits for LV1.101 Bus 3 + + + + Voltage limits for LV1.101 Bus 6 + + + + Voltage limits for LV1.101 Bus 8 + + + + Voltage limits for MV1.101 Bus 4 + + + + Voltage limits for LV1.101 Bus 1 + + + + Voltage limits for LV1.101 Bus 1 + + + + Voltage limits for LV1.101 Bus 4 + + + + Voltage limits for LV1.101 Bus 1 + + + + Voltage limits for LV1.101 Bus 1 + + + + Voltage limits for LV1.101 Bus 1 + + + + Voltage limits for LV1.101 Bus 2 + + + + Current rating for LV1.101 Line + + + + Voltage limits for LV1.101 Bus 7 + + + + Current rating for LV1.101 Line + + + + Current rating for MV1.101-LV1.1 + + + + Current rating for LV1.101 Line + + + + Voltage limits for LV1.101 Bus 9 + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for MV1.101-LV1.1 + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + Current rating for LV1.101 Line + + + + high limit for LV1.101 Bus 1 + + + 0.44 + + + high limit for LV1.101 Bus 6 + + + 0.44 + + + low limit for LV1.101 Bus 3 + + + 0.36 + + + high limit for LV1.101 Bus 5 + + + 0.44 + + + high limit for LV1.101 Bus 11 + + + 0.44 + + + low limit for LV1.101 Bus 2 + + + 0.36 + + + low limit for LV1.101 Bus 6 + + + 0.36 + + + high limit for MV1.101 Bus 4 + + + 21.1 + + + low limit for LV1.101 Bus 11 + + + 0.36 + + + high limit for LV1.101 Bus 10 + + + 0.44 + + + high limit for LV1.101 Bus 4 + + + 0.44 + + + low limit for LV1.101 Bus 10 + + + 0.36 + + + low limit for LV1.101 Bus 4 + + + 0.36 + + + low limit for LV1.101 Bus 12 + + + 0.36 + + + low limit for LV1.101 Bus 14 + + + 0.36 + + + high limit for LV1.101 Bus 9 + + + 0.44 + + + low limit for LV1.101 Bus 1 + + + 0.36 + + + low limit for LV1.101 Bus 13 + + + 0.36 + + + high limit for LV1.101 Bus 12 + + + 0.44 + + + high limit for LV1.101 Bus 13 + + + 0.44 + + + low limit for MV1.101 Bus 4 + + + 19.3 + + + high limit for LV1.101 Bus 7 + + + 0.44 + + + low limit for LV1.101 Bus 7 + + + 0.36 + + + high limit for LV1.101 Bus 2 + + + 0.44 + + + high limit for LV1.101 Bus 3 + + + 0.44 + + + high limit for LV1.101 Bus 14 + + + 0.44 + + + low limit for LV1.101 Bus 9 + + + 0.36 + + + high limit for LV1.101 Bus 8 + + + 0.44 + + + low limit for LV1.101 Bus 8 + + + 0.36 + + + low limit for LV1.101 Bus 5 + + + 0.36 + + + LV1.101 Bus 7 + + + + + LV1.101 Bus 8 + + + + + LV1.101 Bus 13 + + + + + LV1.101 Bus 14 + + + + + LV1.101 Bus 1 + + + + + LV1.101 Bus 10 + + + + + LV1.101 Bus 6 + + + + + LV1.101 Bus 9 + + + + + LV1.101 Bus 5 + + + + + LV1.101 Bus 12 + + + + + LV1.101 Bus 2 + + + + + MV1.101 Bus 4 + + + + + LV1.101 Bus 3 + + + + + LV1.101 Bus 4 + + + + + LV1.101 Bus 11 + + + + + 2 + LV1.101 Bus 3_LV1.101 Line 1 + + + + + 1 + Cubicle_LV1.101 Load 22 + + + + 1 + Cubicle_LV1.101 Load 8 + + + + 2 + LV1.101 Bus 12_LV1.101 Line 2 + + + + + 1 + Cubicle_LV1.101 Load 15 + + + + 1 + LV1.101 Bus 10_LV1.101 Line 1 + + + + + 1 + Cubicle_LV1.101 Load 3 + + + + 1 + Cubicle_LV1.101 SGen 2 + + + + + 1 + LV1.101 Bus 14_LV1.101 Line 2 + + + + + 1 + Cubicle_LV1.101 Load 16 + + + + 2 + LV1.101 Bus 7_LV1.101 Line 8 + + + + + 1 + Cubicle_LV1.101 Load 26 + + + + 1 + Cubicle_LV1.101 Storage 5 + + + + + 1 + Cubicle_LV1.101 Load 23 + + + + 1 + Cubicle_LV1.101 Storage 4 + + + + + 1 + Cubicle_LV1.101 Load 19 + + + + 1 + Cubicle_LV1.101 Load 28 + + + + 1 + Cubicle_LV1.101 SGen 1 + + + + + 1 + Cubicle_LV1.101 Load 11 + + + + 1 + Cubicle_LV1.101 Load 14 + + + + 1 + Cubicle_LV1.101 Load 25 + + + + 1 + Cubicle_LV1.101 Load 5 + + + + 1 + Cubicle_LV1.101 SGen 5 + + + + + 1 + Cubicle_LV1.101 Load 4 + + + + 1 + LV1.101 Bus 7_LV1.101 Line 3 + + + + + 1 + Cubicle_LV1.101 Load 9 + + + + 1 + LV1.101 Bus 4_LV1.101 Line 10 + + + + + 1 + Cubicle_LV1.101 SGen 4 + + + + + 1 + Cubicle_LV1.101 Load 1 + + + + 1 + Cubicle_LV1.101 Load 7 + + + + 1 + Cubicle_LV1.101 SGen 7 + + + + + 1 + Cubicle_LV1.101 Load 10 + + + + 1 + Cubicle_LV1.101 SGen 6 + + + + + 1 + Cubicle_LV1.101 SGen 3 + + + + + 1 + Cubicle_LV1.101 Load 6 + + + + 1 + Cubicle_LV1.101 Load 2 + + + + 1 + Cubicle_LV1.101 Load 17 + + + + 1 + Cubicle_LV1.101 Load 27 + + + + 1 + Cubicle_LV1.101 Load 20 + + + + 1 + Cubicle_LV1.101 Load 13 + + + + 2 + LV1.101 Bus 2_LV1.101 Line 4 + + + + + 1 + Cubicle_LV1.101 Storage 2 + + + + + 1 + Cubicle_LV1.101 Load 12 + + + + 2 + LV1.101 Bus 8_LV1.101 Line 7 + + + + + 1 + Cubicle_LV1.101 Storage 3 + + + + + 2 + LV1.101 Bus 6_LV1.101 Line 11 + + + + + 1 + Cubicle_LV1.101 Load 21 + + + + 1 + Cubicle_LV1.101 Storage 1 + + + + + 1 + Cubicle_LV1.101 Load 24 + + + + 1 + Cubicle_MV1.101 grid at LV1.101 + + + + + 1 + Cubicle_LV1.101 SGen 8 + + + + + 1 + LV1.101 Bus 11_LV1.101 Line 6 + + + + + 2 + LV1.101 Bus 10_LV1.101 Line 6 + + + + + 2 + LV1.101 Bus 4_LV1.101 Line 12 + + + + + 1 + LV1.101 Bus 8_LV1.101 Line 5 + + + + + 1 + LV1.101 Bus 13_LV1.101 Line 13 + + + + + 2 + LV1.101 Bus 4_MV1.101-LV1.101-Tr + + + + + 1 + LV1.101 Bus 6_LV1.101 Line 9 + + + + + 2 + LV1.101 Bus 4_LV1.101 Line 3 + + + + + 2 + LV1.101 Bus 14_LV1.101 Line 9 + + + + + 1 + Cubicle_LV1.101 Load 18 + + + + 1 + LV1.101 Bus 5_LV1.101 Line 11 + + + + + 1 + LV1.101 Bus 12_LV1.101 Line 8 + + + + + 1 + LV1.101 Bus 9_LV1.101 Line 4 + + + + + 2 + LV1.101 Bus 9_LV1.101 Line 13 + + + + + 1 + MV1.101 Bus 4_MV1.101-LV1.101-Tr + + + + + 2 + LV1.101 Bus 1_LV1.101 Line 10 + + + + + 1 + LV1.101 Bus 2_LV1.101 Line 12 + + + + + 1 + LV1.101 Bus 4_LV1.101 Line 7 + + + + + 2 + LV1.101 Bus 11_LV1.101 Line 5 + + + + + 4.66384e-6 + 0 + 0.00369706 + 0.00143849 + + 0.0178861 + LV1.101 Line 4 + + + 3.45494e-5 + 0 + 0.0273875 + 0.0106562 + + 0.132499 + LV1.101 Line 10 + + + 1.29892e-5 + 0 + 0.0102967 + 0.00400632 + + 0.0498145 + LV1.101 Line 3 + + + 1.39701e-5 + 0 + 0.0110742 + 0.00430886 + + 0.0535763 + LV1.101 Line 2 + + + 4.19529e-6 + 0 + 0.00332564 + 0.00129397 + + 0.0160892 + LV1.101 Line 5 + + + 1.19986e-5 + 0 + 0.00951136 + 0.00370077 + + 0.0460153 + LV1.101 Line 13 + + + 4.22606e-6 + 0 + 0.00335003 + 0.00130346 + + 0.0162072 + LV1.101 Line 12 + + + 6.45781e-6 + 0 + 0.00511915 + 0.00199181 + + 0.0247661 + LV1.101 Line 6 + + + 5.59822e-7 + 0 + 0.000443775 + 0.000172668 + + 0.00214695 + LV1.101 Line 8 + + + 3.57791e-5 + 0 + 0.0283623 + 0.0110355 + + 0.137215 + LV1.101 Line 9 + + + 1.45413e-5 + 0 + 0.011527 + 0.00448503 + + 0.0557667 + LV1.101 Line 1 + + + 6.7341e-7 + 0 + 0.000533817 + 0.000207703 + + 0.00258257 + LV1.101 Line 11 + + + 1.34056e-6 + 0 + 0.00106267 + 0.000413474 + + 0.00514112 + LV1.101 Line 7 + + + lowVoltage + + + + highVoltage + + + + patl + + + + + + PV6 + LV1.101 SGen 8 + + 1 + 0.1172 + 0.4 + 0 + 0 + + + + + Storage_PV8_L2-A + LV1.101 Storage 5 + + 1 + 0.0502 + 0.4 + 0.050232 + -0.050232 + + + + + Storage_PV5_L2-A + LV1.101 Storage 2 + + 1 + 0.0335 + 0.4 + 0.033488 + -0.033488 + + + + + PV5 + LV1.101 SGen 3 + + 1 + 0.023 + 0.4 + 0 + 0 + + + + + PV8 + LV1.101 SGen 5 + + 1 + 0.0489 + 0.4 + 0 + 0 + + + + + PV6 + LV1.101 SGen 7 + + 1 + 0.0245 + 0.4 + 0 + 0 + + + + + Storage_PV8_L1-A + LV1.101 Storage 4 + + 1 + 0.0183 + 0.4 + 0.018338 + -0.018338 + + + + + Storage_PV5_L1-A + LV1.101 Storage 3 + + 1 + 0.0306 + 0.4 + 0.030563 + -0.030563 + + + + + PV6 + LV1.101 SGen 4 + + 1 + 0.019 + 0.4 + 0 + 0 + + + + + PV5 + LV1.101 SGen 1 + + 1 + 0.04 + 0.4 + 0 + 0 + + + + + PV8 + LV1.101 SGen 2 + + 1 + 0.0784 + 0.4 + 0 + 0 + + + + + Storage_PV8_L1-A + LV1.101 Storage 1 + + 1 + 0.0734 + 0.4 + 0.073352 + -0.073352 + + + + + PV8 + LV1.101 SGen 6 + + 1 + 0.1172 + 0.4 + 0 + 0 + + + + + + + LV1.101 Load 7 + + + + + + LV1.101 Load 23 + + + + + + LV1.101 Load 26 + + + + + + LV1.101 Load 9 + + + + + + LV1.101 Load 19 + + + + + + LV1.101 Load 28 + + + + + + LV1.101 Load 22 + + + + + + LV1.101 Load 14 + + + + + + LV1.101 Load 6 + + + + + + LV1.101 Load 25 + + + + + + LV1.101 Load 11 + + + + + + LV1.101 Load 24 + + + + + + LV1.101 Load 15 + + + + + + LV1.101 Load 2 + + + + + + LV1.101 Load 20 + + + + + + LV1.101 Load 3 + + + + + + LV1.101 Load 27 + + + + + + LV1.101 Load 4 + + + + + + LV1.101 Load 17 + + + + + + LV1.101 Load 5 + + + + + + LV1.101 Load 8 + + + + + + LV1.101 Load 1 + + + + + + LV1.101 Load 13 + + + + + + LV1.101 Load 21 + + + + + + LV1.101 Load 10 + + + + + + LV1.101 Load 16 + + + + + + LV1.101 Load 18 + + + + + + LV1.101 Load 12 + + + 270 + patl for LV1.101 Line 10 + + + + + 270 + patl for LV1.101 Line 11 + + + + + 270 + patl for LV1.101 Line 11 + + + + + 230.94 + patl for MV1.101-LV1.101-Trafo 1 + + + + + 270 + patl for LV1.101 Line 10 + + + + + 270 + patl for LV1.101 Line 2 + + + + + 270 + patl for LV1.101 Line 9 + + + + + 4.6188 + patl for MV1.101-LV1.101-Trafo 1 + + + + + 270 + patl for LV1.101 Line 3 + + + + + 270 + patl for LV1.101 Line 2 + + + + + 270 + patl for LV1.101 Line 6 + + + + + 270 + patl for LV1.101 Line 7 + + + + + 270 + patl for LV1.101 Line 7 + + + + + 270 + patl for LV1.101 Line 5 + + + + + 270 + patl for LV1.101 Line 1 + + + + + 270 + patl for LV1.101 Line 13 + + + + + 270 + patl for LV1.101 Line 4 + + + + + 270 + patl for LV1.101 Line 5 + + + + + 270 + patl for LV1.101 Line 12 + + + + + 270 + patl for LV1.101 Line 9 + + + + + 270 + patl for LV1.101 Line 1 + + + + + 270 + patl for LV1.101 Line 3 + + + + + 270 + patl for LV1.101 Line 4 + + + + + 270 + patl for LV1.101 Line 12 + + + + + 270 + patl for LV1.101 Line 6 + + + + + 270 + patl for LV1.101 Line 13 + + + + + 270 + patl for LV1.101 Line 8 + + + + + 270 + patl for LV1.101 Line 8 + + + + + LV1.101 Load 7 + + + + LV1.101 Load 7 + + + + LV1.101 Load 7 + + + + MV1.101-LV1.101-Trafo 1 + + + MV1.101-LV1.101-Trafo 1 + + -9.58077e-9 + + 1.15e-6 + 36.7188 + 0.16 + 20 + 93.0147 + + + 1 + + + MV1.101-LV1.101-Trafo 1 + + 0 + + 0 + 0 + 0.16 + 0.4 + 0 + + + 2 + + + 1-LV-rural1--2-no_sw + + + + 1-LV-rural1--2-no_sw + + + + 1-LV-rural1--2-no_sw + + + MV1.101-LV1.101-Trafo 1 + + 2.5 + + 2 + -2 + false + 0 + 20 + 1 + + + L1-A + true + 2 + 2 + + + HLS_A_3.7 + true + 2 + 2 + + + HLS_B_3.7 + true + 2 + 2 + + + Soil_Alternative_2 + true + 2 + 2 + + + Air_Parallel_2 + true + 2 + 2 + + + HLS_A_22.0 + true + 2 + 2 + + + L2-A + true + 2 + 2 + + + Air_Alternative_2 + true + 2 + 2 + + + HLS_A_11.0 + true + 2 + 2 + + + H0-B + true + 2 + 2 + + + Air_Semi-Parallel_2 + true + 2 + 2 + + + H0-C + true + 2 + 2 + + + H0-A + true + 2 + 2 + + + + 0.023 + 0.023 + 0 + LV1.101 SGen 3 + + + + 0.0489 + 0.0489 + 0 + LV1.101 SGen 5 + + + + 0.0306 + 0 + -0.030563 + LV1.101 Storage 3 + + + + 0.1172 + 0.1172 + 0 + LV1.101 SGen 6 + + + + 0.0245 + 0.0245 + 0 + LV1.101 SGen 7 + + + + 0.0784 + 0.0784 + 0 + LV1.101 SGen 2 + + + + 0.019 + 0.019 + 0 + LV1.101 SGen 4 + + + + 0.0335 + 0 + -0.033488 + LV1.101 Storage 2 + + + + 0.1172 + 0.1172 + 0 + LV1.101 SGen 8 + + + + 0.0734 + 0 + -0.073352 + LV1.101 Storage 1 + + + + 0.0502 + 0 + -0.050232 + LV1.101 Storage 5 + + + + 0.0183 + 0 + -0.018338 + LV1.101 Storage 4 + + + + 0.04 + 0.04 + 0 + LV1.101 SGen 1 + + + 0.4 + BaseVoltage 0.40 kV + 0.40 kV + 0.40 kV + + + 20 + BaseVoltage 20.00 kV + 20.00 kV + 20.00 kV + + + + 0 + 100000 + 9999 + 0 + -9999 + MV1.101 grid at LV1.101 + + + + MV1.101 grid at LV1.101 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DL_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DL_.xml new file mode 100644 index 00000000..f397e68f --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DL_.xml @@ -0,0 +1,2159 @@ + + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 2015-12-31T23:00:00Z + + + + 1 + 228.958 + 543.75 + + + + 1 + 205.625 + 530.625 + + + + 4 + 220.938 + 237.5 + + + + 1 + 297.5 + 123.75 + + + + 2 + 240.625 + 360 + + + + 1 + 310.625 + 66.875 + + + + 1 + 227.5 + 403.75 + + + + 2 + 367.5 + 40.625 + + + + 1 + 39.375 + 180.625 + + + + 1 + 284.375 + 106.25 + + + + 1 + 269.062 + 176.25 + + + + 1 + 297.5 + 136.875 + + + + 2 + 253.75 + 176.25 + + + + 1 + 112.383 + -380.039 + + + + 1 + 212.917 + 290 + + + + 2 + 336.875 + 80 + + + + 1 + 166.25 + 237.5 + + + + 2 + 236.25 + 303.125 + + + + 2 + 271.25 + 123.75 + + + + 2 + 138.633 + -380.039 + + + + 2 + 227.5 + 416.875 + + + + 2 + 358.75 + 40.625 + + + + 1 + 224.583 + 316.25 + + + + 1 + 218.75 + 373.125 + + + + 2 + 235.375 + 176.25 + + + + 1 + 226.042 + 342.5 + + + + 1 + 210 + 473.75 + + + + 1 + 358.75 + 53.75 + + + + 1 + 367.5 + 53.75 + + + + 1 + 358.75 + 58.125 + + + + 2 + 56.875 + 180.625 + + + + 1 + 284.375 + 136.875 + + + + 1 + 173.542 + 202.5 + + + + 2 + 212.917 + 303.125 + + + + 1 + 266.875 + 272.5 + + + + 2 + 284.375 + 123.75 + + + + 2 + 220.938 + 473.75 + + + + 2 + 173.542 + 220 + + + + 1 + 207.812 + 373.125 + + + + 1 + 56.875 + 163.125 + + + + 2 + 224.583 + 303.125 + + + + 2 + 138.633 + -380.04 + + + + 1 + 260.002 + 233.809 + + + + 1 + 239.167 + 237.5 + + + + 1 + 177.188 + 220 + + + + 1 + 112.384 + -380.041 + + + + 1 + 358.75 + 27.5 + + + + 2 + 115.208 + 202.5 + + + + 1 + 253.75 + 158.75 + + + + 1 + 310.625 + 62.5 + + + + 2 + 217.292 + 530.625 + + + + 2 + 358.75 + 40.625 + + + + 2 + 138.633 + -380.041 + + + + 2 + 218.75 + 360 + + + + 1 + 217.292 + 513.125 + + + + 1 + 224.583 + 320.625 + + + + 1 + 227.5 + 430 + + + + 2 + 166.25 + 220 + + + + 2 + 138.633 + -380.041 + + + + 1 + 207.812 + 377.5 + + + + 1 + 272.125 + 189.375 + + + + 1 + 240.625 + 399.375 + + + + 2 + 280 + 272.5 + + + + 1 + 112.383 + -380.04 + + + + 1 + 214.375 + 430 + + + + 1 + 224.583 + 303.125 + + + + 1 + 201.25 + 303.125 + + + + 1 + 56.875 + 198.125 + + + + 1 + 242.812 + 486.875 + + + + 1 + 112.385 + -380.04 + + + + 1 + 103.542 + 215.625 + + + + 1 + 367.5 + 58.125 + + + + 1 + 264.323 + 233.125 + + + + 1 + 336.875 + 97.5 + + + + 2 + 138.633 + -380.04 + + + + 1 + 280 + 285.625 + + + + 2 + 259.875 + 176.25 + + + + 1 + 341.25 + 40.625 + + + + 1 + 228.958 + 530.625 + + + + 2 + 138.635 + -380.04 + + + + 2 + 323.75 + 80 + + + + 2 + 158.958 + 220 + + + + 2 + 74.375 + 180.625 + + + + 1 + 112.383 + -380.041 + + + + 2 + 297.5 + 123.75 + + + + 2 + 242.812 + 237.5 + + + + 2 + 103.542 + 202.5 + + + + 1 + 228.958 + 548.125 + + + + 1 + 115.208 + 185 + + + + 1 + 218.75 + 377.5 + + + + 1 + 48.125 + 193.75 + + + + 1 + 115.208 + 189.375 + + + + 1 + 226.042 + 346.875 + + + + 1 + 112.384 + -380.04 + + + + 1 + 210 + 237.5 + + + + 1 + 291.667 + 246.25 + + + + 1 + 115.208 + 202.5 + + + + 1 + 238.438 + 163.125 + + + + 1 + 291.667 + 241.875 + + + + 2 + 310.625 + 80 + + + + 1 + 112.384 + -380.04 + + + + 2 + 48.125 + 180.625 + + + + 1 + 231.875 + 491.25 + + + + 1 + 103.542 + 220 + + + + 1 + 336.875 + 93.125 + + + + 1 + 173.542 + 206.875 + + + + 2 + 238.438 + 176.25 + + + + 2 + 138.634 + -380.04 + + + + 2 + 214.375 + 416.875 + + + + 1 + 217.292 + 548.125 + + + + 1 + 224.583 + 473.75 + + + + 1 + 56.875 + 167.5 + + + + 2 + 207.812 + 360 + + + + 1 + 247.625 + 193.75 + + + + 1 + 166.25 + 233.125 + + + + 2 + 231.875 + 473.75 + + + + 2 + 253.75 + 416.875 + + + + 2 + 240.625 + 416.875 + + + + 1 + 268.644 + 232.441 + + + + 1 + 112.383 + -380.041 + + + + 1 + 284.375 + 110.625 + + + + 2 + 247.625 + 176.25 + + + + 2 + 226.042 + 360 + + + + 1 + 271.25 + 106.25 + + + + 1 + 280 + 290 + + + + 2 + 297.5 + 123.75 + + + + 1 + 196.875 + 360 + + + + 2 + 284.375 + 272.5 + + + + 2 + 284.375 + 123.75 + + + + 1 + 323.75 + 93.125 + + + + 1 + 239.167 + 456.25 + + + + 1 + 217.292 + 543.75 + + + + 2 + 138.633 + -380.041 + + + + 1 + 56.875 + 193.75 + + + + 2 + 293.125 + 272.5 + + + + 1 + 242.812 + 491.25 + + + + 1 + 297.5 + 80 + + + + 1 + 155.312 + 233.125 + + + + 2 + 242.812 + 473.75 + + + + 1 + 65.625 + 180.625 + + + + 1 + 227.5 + 399.375 + + + + 2 + 155.312 + 220 + + + + 2 + 228.958 + 530.625 + + + + 1 + 48.125 + 198.125 + + + + 2 + 291.667 + 228.75 + + + + 2 + 227.5 + 416.875 + + + + 1 + 223.125 + 176.25 + + + + 1 + 323.75 + 66.875 + + + + 1 + 284.375 + 259.375 + + + + 1 + 231.875 + 486.875 + + + + 1 + 280 + 228.75 + + + + 1 + 239.167 + 460.625 + + + + 1 + 201.25 + 416.875 + + + + 2 + 103.542 + 202.5 + + + + 1 + 247.625 + 189.375 + + + + 2 + 126.875 + 202.5 + + + + 1 + 217.292 + 517.5 + + + + 2 + 323.75 + 80 + + + + 2 + 253.75 + 473.75 + + + + 2 + 272.125 + 176.25 + + + + 3 + 310.625 + 80 + + + + 2 + 138.634 + -380.04 + + + + 4 + 310.625 + 80 + + + + 1 + 214.375 + 434.375 + + + + 1 + 240.625 + 403.75 + + + + 1 + 271.25 + 110.625 + + + + 2 + 253.75 + 237.5 + + + + 2 + 239.167 + 473.75 + + + + 2 + 271.25 + 123.75 + + + + 2 + 284.375 + 176.25 + + + + 2 + 217.292 + 530.625 + + + + 1 + 227.5 + 434.375 + + + + 1 + 238.438 + 158.75 + + + + 1 + 259.875 + 193.75 + + + + 1 + 323.75 + 97.5 + + + + 2 + 240.625 + 530.625 + + + + 2 + 138.634 + -380.041 + + + + 1 + 323.75 + 62.5 + + + + 1 + 155.312 + 237.5 + + + + 2 + 310.625 + 123.75 + + + + 1 + 253.75 + 163.125 + + + + 3 + 220.938 + 237.5 + + + + 1 + 258.125 + 123.75 + + + + 1 + 144.375 + 220 + + + + 2 + 275.625 + 272.5 + + + + 1 + 259.875 + 189.375 + + + + 1 + 112.384 + -380.039 + + + + 2 + 350 + 80 + + + + 2 + 229.688 + 360 + + + + 2 + 138.634 + -380.039 + + + + 2 + 285.833 + 228.75 + + + + 1 + 112.384 + -380.041 + + + + 1 + 214.375 + 416.875 + + + + 2 + 56.875 + 180.625 + + + + 1 + 112.384 + -380.04 + + + + 2 + 138.634 + -380.041 + + + + 1 + 284.375 + 255 + + + + 2 + 240.625 + 416.875 + + + + 2 + 138.634 + -380.04 + + + + 1 + 112.385 + -380.041 + + + + 1 + 231.875 + 237.5 + + + + 1 + 112.384 + -380.039 + + + + 2 + 138.635 + -380.041 + + + + 2 + 224.583 + 237.5 + + + + 2 + 138.634 + -380.039 + + + + 1 + 112.383 + -380.041 + + + + 1 + 212.917 + 285.625 + + + + 1 + 358.75 + 23.125 + + + + 1 + 112.383 + -380.04 + + + + 1 + 272.125 + 193.75 + + + + 1 + 284.375 + 141.25 + + + + 2 + 177.188 + 220 + + + + 2 + 297.5 + 228.75 + + + + 2 + 188.125 + 220 + + + + 2 + 376.25 + 40.625 + + + + 1 + 297.5 + 141.25 + + + + 1 + 91.875 + 202.5 + + + + 2 + 212.917 + 303.125 + + + + 1 + 336.875 + 80 + + + + 1 + 211.458 + 360 + + + + 2 + 350 + 40.625 + + + + + b1d19d05-1062-cccc-bcca-6d96103640fb + LV1.101 Bus 2 + + + + + 24eeb3fb-a2b3-9336-453d-fb61b13ce78f + LV1.101 Bus 10 + + + + + 180 + 16d8f875-a13f-a372-0b08-4a058d80c031 + Grafisches Netzelement32 + + + + + 98f2ded5-3fe4-a701-2aad-c0fb6668229f + LV1.101 Bus 14 + + + + + 10abaeb3-b66c-94eb-69f1-d1e5a8b475fc + LV1.101 Bus 13 + + + + + a9f35ebd-67d8-ff31-fcc8-5920bec3995d + LV1.101 Bus 11 + + + + + e5037e58-c8ae-1e10-1945-7e268befefaa + MV1.101 Bus 4 + + + + + 9349a13a-80bd-1128-98e1-a3275f1fbb64 + LV1.101 Bus 7 + + + + + c8211a7b-b627-c972-5b7e-4de8f755a6d4 + LV1.101 Bus 6 + + + + + 3bd54ace-4a78-5f41-1d60-c1cac02a7421 + LV1.101 Bus 5 + + + + + 4133e9db-8c0c-23ef-bd85-7acae50f9d9e + LV1.101 Bus 4 + + + + + ed184963-2730-ca9b-cce1-e2435bd99cbb + LV1.101 Bus 3 + + + + + ac66d67b-92ce-ca95-1c99-30c310786cad + LV1.101 Bus 9 + + + + + 180 + dac60bf5-163b-3cb6-3b5a-10565668864f + Grafisches Netzelement28 + + + + + 2840a569-f1fc-3f2c-be3a-227499a89b5b + LV1.101 Bus 12 + + + + + ee4ce633-5174-e715-4928-448a4ba5cfb4 + Grafisches Netzelement31 + + + + + e5515a4b-ab9b-4883-6cb9-e62f37c4cfd0 + LV1.101 Bus 8 + + + + + 48172565-f99b-270f-72a2-e96f2db897e8 + Grafisches Netzelement49 + + + + + 9634baaf-05d4-1aca-b425-38936fc2a9c5 + LV1.101 Bus 1 + + + + + 4eafcdd1-5d32-0c7d-4768-34c60d4139fc + Grafisches Netzelement30 + + + + + 800efc2c-8510-ab79-4b53-b443ae755797 + Grafisches Netzelement46 + + + + + 84ae0497-65ba-7312-86ef-fce374dba391 + Grafisches Netzelement56 + + + + + 180 + a0063ebc-7c5e-1a76-cb71-34eaff43706b + Grafisches Netzelement34 + + + + + ba4400b0-1f8b-12d7-7e0f-cc28009f20fb + Grafisches Netzelement39 + + + + + 180 + 07a42fb9-a0b5-268d-fb72-ec5d488fed74 + Grafisches Netzelement47 + + + + + 180 + eba33290-d566-7d05-eb7a-29a64aff917d + Grafisches Netzelement48 + + + + + 180 + 3a31fdcb-118b-1c37-d796-dd57b89b98e3 + Grafisches Netzelement59 + + + + + 180 + 2dccb5d8-04e6-b955-4f36-4aab88c1e261 + Grafisches Netzelement27 + + + + + ea97f3f9-c206-51a0-819b-147d0cf8e766 + Grafisches Netzelement52 + + + + + 180 + 46f56805-3d52-dc67-bbbe-d0cf8590bed2 + Grafisches Netzelement58 + + + + + b80a7293-455b-c7b0-9bf7-869bcd7fb035 + Grafisches Netzelement26 + + + + + f56e37ad-b8b4-55ba-8a22-f64423ef2592 + Grafisches Netzelement53 + + + + + 189 + 74fa8cec-fae5-a3ad-55f2-9f4bdc702f8f + Grafisches Netzelement67 + + + + + 180 + 834c92b3-93b3-7305-b3d5-6aff1a820ada + Grafisches Netzelement23 + + + + + 200 + 441fddd9-4924-b5d6-18dd-6420ed79dba4 + Grafisches Netzelement63 + + + + + 05c65dfd-663c-ccae-1ecd-6a13a4fe2846 + Grafisches Netzelement55 + + + + + 306 + 32fd19d9-ad4c-a180-5d43-0babd50db1d3 + Grafisches Netzelement61 + + + + + 4328f227-a022-cdae-eafe-e0eef7c956b7 + Grafisches Netzelement20 + + + + + 716d9911-2f41-77f3-8971-8da675ec9a60 + Grafisches Netzelement50 + + + + + 293 + a2cb074d-7961-e6c9-09f4-f77e8ce7107c + Grafisches Netzelement60 + + + + + 285 + a6b98aa8-6504-b794-4c9f-7e3ea7a6867e + Grafisches Netzelement69 + + + + + 180 + e9ab50a2-9657-3758-84e6-6f24db7d930e + Grafisches Netzelement54 + + + + + 222 + bb6c4216-7682-2d43-d3f1-e35f74829df2 + Grafisches Netzelement70 + + + + + 222 + 87704f64-6e19-39c6-0406-662965fbf5d1 + Grafisches Netzelement68 + + + + + 180 + d57f4f2c-c6d0-ce82-65c8-af9fe79a94cc + Grafisches Netzelement41 + + + + + 287 + eddf0936-21ac-625b-f38e-088690f55704 + Grafisches Netzelement64 + + + + + 171 + 27f1979f-025a-47e7-566c-ab4abc567ce6 + Grafisches Netzelement71 + + + + + 6f973369-ffbf-289a-4415-ef87078fce46 + Grafisches Netzelement24 + + + + + 210 + 9e5f1e09-a397-7dce-00b8-043d399af470 + Grafisches Netzelement65 + + + + + 180 + b968df3c-0421-c1e9-3b20-0c13e19612e4 + Grafisches Netzelement51 + + + + + d8d285aa-cfbd-ac2b-dc67-af319f7e2255 + LV1.101 Bus 13_Graph + + + + + 180 + 92b8ffbc-d250-9323-4abf-e47a0a775865 + Grafisches Netzelement40 + + + + + 191 + 602af68f-8a7f-7c0e-78f5-d43207ccd8b4 + Grafisches Netzelement62 + + + + + daea8693-c8dd-a95f-e669-f420c8aca534 + LV1.101 Bus 5_Graph + + + + + 64af3de9-01f5-de3f-806d-535bcedff096 + LV1.101 Bus 10_Graph + + + + + 419c12f4-fc06-e39f-b8e6-0661ed0f79b6 + LV1.101 Bus 4_Graph + + + + + 180 + a5afbf67-b20a-1e85-8ba7-b2c8e26aab3a + Grafisches Netzelement57 + + + + + 176 + 9082cc3e-d4b8-b57e-3da1-5fb9574299f8 + Grafisches Netzelement66 + + + + + 0f65ba0a-8a78-e136-1349-9ac98974e4da + LV1.101 Bus 12_Graph + + + + + 49311496-1742-214b-0416-8afd848a5106 + LV1.101 Bus 11_Graph + + + + + 58d19da8-d6bf-f33a-afc3-dc7f52406fce + MV1.101 Bus 4_Graph + + + + + 988680f0-cf3c-904c-07b6-16f4a511a606 + Grafisches Netzelement21 + + + + + f0c0cb40-bf6c-7563-8fcb-8b2a149b0a4f + GCO_1 + + + + + 0dde8544-4193-38d3-0f4a-1496891b93d3 + LV1.101 Bus 7_Graph + + + + + bbb5cdea-0be6-ded6-0488-9eba457ccd68 + GCO_1 + + + + + 180 + e17c9e2e-3298-1630-1a00-f5ea4c32fccb + Grafisches Netzelement42 + + + + + 0ec0bfa0-bdde-6b9a-9f87-73f75ed74004 + GCO_1 + + + + + 1a0b2105-d973-1fc3-0bf2-e6b37d952232 + GCO_1 + + + + + 39aed234-39b7-54ad-4de5-f85f3a7d80e1 + GCO_1 + + + + + 44d2723e-f989-1837-def8-caca50b61b64 + GCO_1 + + + + + f13f9e03-9ca0-c558-9c02-822f7ed32f82 + Grafisches Netzelement43 + + + + + 4678ecae-dd3e-fd31-8a1b-0b05936e8576 + Grafisches Netzelement16 + + + + + f721d2ed-7ebc-716b-ae10-8aed63e161ee + GCO_1 + + + + + 9fef3379-c7ad-7bbf-f954-f73eda561b74 + GCO_1 + + + + + d14fa90b-9721-7eb1-7df4-f85828c3af58 + LV1.101 Bus 1_Graph + + + + + c0444ddd-b6d3-86d1-70a2-69626028b54b + Grafisches Netzelement36 + + + + + 56865503-054c-7b3b-8dfd-5cc29a7ac7a8 + GCO_1 + + + + + cd4940c4-3f7c-bef5-d798-8a68e233ae7e + GCO_1 + + + + + 90e8a630-f4a3-5277-7345-72af357461fb + GCO_1 + + + + + a2678c6d-2b5b-90d1-48da-c7efc7fd5c22 + LV1.101 Bus 9_Graph + + + + + 01c4ba4f-317d-7a71-59bf-9dbaf4524d1e + Grafisches Netzelement35 + + + + + ac2f2380-4b26-3be8-6424-78f8bcd50b0d + GCO_1 + + + + + b43492bc-de46-6578-80d3-3b86ab1927ec + Grafisches Netzelement25 + + + + + fa585c65-580c-dde7-92b0-dae8293c3e57 + LV1.101 Bus 2_Graph + + + + + 9218429c-bdae-bb21-dbaf-f791a9cb3420 + LV1.101 Bus 6_Graph + + + + + e48e6b76-5347-3a67-db2e-096727ee0cb0 + GCO_1 + + + + + ae27cd4b-4306-1673-5f3a-4ca3b0073184 + GCO_1 + + + + + 684a8a5d-9a23-0c3a-186d-977ba2e0798e + Grafisches Netzelement44 + + + + + b6344480-54c8-3bfc-bea6-1dd469c945dc + GCO_1 + + + + + d4850872-27b4-a58b-491d-25973e566ca6 + GCO_1 + + + + + a949ef0d-1dcd-407d-b7c2-6df069d16990 + GCO_1 + + + + + b5d795b5-1aa4-8eb5-345d-852ec045d201 + LV1.101 Bus 8_Graph + + + + + 7caa249e-41ce-4ab9-440b-fb01937f88b3 + Grafisches Netzelement45 + + + + + 11c057f4-9997-eb4c-7452-76a2cf35ac81 + GCO_1 + + + + + 4f730fee-dc9a-40cb-9927-274f0590d601 + GCO_1 + + + + + 2071d925-c768-0305-c1c3-e244b6b04d96 + GCO_1 + + + + + 02229201-102b-584e-6efa-693dec6f5015 + GCO_1 + + + + + 74e2d48e-7225-3740-3f7c-4a77c988def9 + GCO_1 + + + + + 180 + 2a8e6c9f-4120-ba91-0885-5a5cf384110f + Grafisches Netzelement37 + + + + + 81 + c49c651d-3bc5-f722-a36d-85969749f6a3 + Grafisches Netzelement17 + + + + + da3e92a2-c030-814b-d84e-c574301919c2 + GCO_1 + + + + + 60d5d50f-63b9-b8fb-57ea-5ef15a4f1338 + GCO_1 + + + + + bcf12b3a-fcb9-2672-c527-d9b58acc238f + GCO_1 + + + + + 37e8ffaf-de16-2b2f-4e03-2d6e6176a7b9 + GCO_1 + + + + + f56b59d5-1f05-0d80-306e-002446b7fe82 + GCO_1 + + + + + 5b094863-20c9-0152-db53-411dc5eb84c5 + Grafisches Netzelement29 + + + + + 92820068-541c-f3de-e179-80b31b07028c + GCO_1 + + + + + 51d90378-1ab6-5360-f752-d6d81bd32626 + Grafisches Netzelement18 + + + + + 869695a7-8745-6692-02b5-3b1f5fc7f71c + GCO_1 + + + + + 8ffb702c-882e-192a-d5f0-64ca6cb81990 + GCO_1 + + + + + a30e5e8b-a291-ca8c-c919-5e1654ade064 + GCO_1 + + + + + 2a3d2dd3-8799-2cac-2708-f009e1641eec + GCO_1 + + + + + 79aab0df-4b02-3209-7552-633931c18d7a + GCO_1 + + + + + 180 + 9eccac5a-2eea-0f0a-3fff-7e8a278f29f4 + Grafisches Netzelement38 + + + + + 25ae0bf2-a9ed-73a1-dc03-9f3b17078b99 + GCO_1 + + + + + 3a374a59-7898-c44f-2c45-6c687278ec15 + GCO_1 + + + + + 81a67c99-5fcc-89f7-db5e-7233858f631e + Grafisches Netzelement19 + + + + + 679144e5-018c-a013-f12f-f62ed741cc8e + GCO_1 + + + + + fe87318f-84ee-8bfd-82ec-b4d88151b0c6 + GCO_1 + + + + + 180 + 6132cdf4-c651-8a52-5891-0853b4d5b154 + Grafisches Netzelement33 + + + + + 38e7210d-89d8-0280-3620-0b51aefb13fe + GCO_1 + + + + + 5f86d09c-cc83-8da5-2dcb-fe17859a7bfe + GCO_1 + + + + + 7a765688-f7f5-c138-a3f4-e4aff8a51646 + GCO_2 + + + + + b8bf4864-b4cc-b69a-6817-df302a24a19c + GCO_1 + + + + + 6c3529dd-d04e-58ac-198b-f210c10f6b7d + LV1.101 Bus 14_Graph + + + + + eba2d685-2666-a88b-3c58-cae052930d72 + Grafisches Netzelement22 + + + + + f7453f52-05c9-6f7b-6569-21f45d75239e + GCO_1 + + + + + 37646f4f-7b89-0296-7bf0-18dfebfbb90b + GCO_1 + + + + + 133f4b5c-9c3e-7578-058c-e2f89b75219a + GCO_1 + + + + + 007dda71-3124-b7b7-57bd-43009f13eebd + LV1.101 Bus 3_Graph + + + + 294b1235-75f6-42aa-947a-7a4939c6c99d + 1-LV-rural1--2-no_sw + + + + 661ed0dd-7cd0-4052-8ac1-e1752a5de182 + 1-LV-rural1--2-no_sw(1) + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DY_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DY_.xml new file mode 100644 index 00000000..05321b88 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_DY_.xml @@ -0,0 +1,199 @@ + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6412f756-1258-9fc0-701e-9c71568b31be + + + cfa71c40-6f8e-04ae-e4fa-8269da070067 + + + 5c0dc8ea-94b4-80c7-a3c9-d8354193c077 + + + 94a74768-59c7-1faa-55b4-2f556bb982ec + + + afbbba0c-b7d2-258c-0d46-9a942bf3450c + + + 434aa34e-db72-02ee-f5e0-8c97957de6b8 + + + f75d82ca-2800-6dfa-346b-f45610eb7bbc + + + 2a6e5f4c-d8fa-908a-f977-b678fac1da38 + + + 309621a1-54c0-9b75-e2eb-34e617a0da35 + + + e6e1ad07-7eb5-1f69-177e-e5661e462238 + + + da7a65db-40ad-dcd1-2425-b6211a5ffb12 + + + 182e3c74-853c-2ad9-db5b-9c9801b80201 + + + 74cdc4cb-c5b0-070a-be18-70f2b6bd9fd7 + + + 4133e761-02b5-4cf5-a327-167943462377 + + + + + acf8d745-1059-b62b-f258-917eef00b021 + + + + + 609ce1f5-54f1-9f17-94a1-b31d488cb6e5 + + + + + a5aaafe6-2923-535d-de6d-e3304c962f00 + + + + + b0e713b7-3d95-308f-1660-1f8ab92b22fb + + + + + dd7234db-f1a8-5ec0-c927-312c7c5ff59a + + + + + 79af6d33-b425-2420-d568-b2de81042e0f + + + + + 814b2227-90ed-051c-ee95-4017731d9366 + + + + + ff0e5cb7-c290-dbbb-4be2-4380bff1594e + + + + + e86ee3ce-db82-25eb-e47c-781858bf9b1a + + + + + 4f6d032c-95d0-e66f-1470-a0dffafad576 + + + + + 3ec43e56-2f66-478f-90ea-3d85a620050d + + + + + 47317d53-14e7-a8ec-a590-bf05917f35a4 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_GL_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_GL_.xml new file mode 100644 index 00000000..fe5e83aa --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_GL_.xml @@ -0,0 +1,181 @@ + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0 + 2015-12-31T23:00:00Z + + + ce592991-46f5-76c2-c110-ee46092c2b85 + Location + + + + + 0436aed4-2c8c-399e-c3e8-458e948042e2 + Location + + + + + bab4000f-8705-e2e0-9ecb-46ef1996f8d4 + Location + + + + + 219cdbd9-f0ff-e6d7-f92e-c2feabfeb569 + Location + + + + + b43a5c5a-b3e3-eb5e-51b9-e5087bc04009 + Location + + + + + b236d807-df38-a445-2078-020364b076fb + Location + + + + + 42814c93-3278-0b73-1410-a15d8bef3677 + Location + + + + + 0a3939ff-f6c3-9e8e-35bb-6c8887529237 + Location + + + + + 5c1ca961-324d-8d1c-0fc7-8909d092159a + Location + + + + + d6e7e924-0ea4-9455-3dc7-f77d375f7d8c + Location + + + + + 17af94ee-6c18-e002-7899-9b9b91077ec3 + Location + + + + + 55fbedfd-ce7b-a036-84bc-202a325c6feb + Location + + + + + ffc36f41-370d-ba28-d004-7c28794bd29e + Location + + + + + c708b99d-a4cd-bdda-0648-6877ab4e9fc1 + Location + + + + + c797274c-4147-76a5-f62e-a8dca5fc1db0 + Location + + + + + + 11.4106 + 53.6409 + + + + 11.4115 + 53.6419 + + + + 11.4098 + 53.6409 + + + + 11.4098 + 53.6419 + + + + 11.4116 + 53.6409 + + + + 11.4106 + 53.6399 + + + + 11.4106 + 53.6404 + + + + 11.4098 + 53.6404 + + + + 11.4106 + 53.6415 + + + + 11.4115 + 53.6414 + + + + 11.4098 + 53.6419 + + + + 11.4098 + 53.6419 + + + + 11.4106 + 53.6419 + + + + 11.4123 + 53.6419 + + + + 11.4098 + 53.6414 + + + urn:ogc:def:crs:EPSG::4326 + 6548fc33-0635-028d-2496-5c1b88ca789e + WGS-84 + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SSH_.xml new file mode 100644 index 00000000..793f461d --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SSH_.xml @@ -0,0 +1,811 @@ + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/SteadyStateHypothesis-EU/3.0 + 2015-12-31T23:00:00Z + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 4.6188 + + + 270 + + + 230.94 + + + 270 + + + 270 + + + 270 + + + 270 + + + 270 + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.44 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.44 + + + 19.3 + + + 0.36 + + + 0.36 + + + 0.36 + + + 21.1 + + + 0.44 + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.44 + + + 0.36 + + + 0.36 + + + 0.36 + + + 0.44 + + + 0.44 + + + 0.002 + 0.0008 + true + + + 0.0137 + 0.0054 + true + + + 0.003 + 0.0012 + true + + + 0.004 + 0.0016 + true + + + 0.0119 + 0.0046 + true + + + 0.003 + 0.0012 + true + + + 0.004 + 0.0016 + true + + + 0.0079 + 0.0031 + true + + + 0.003 + 0.0012 + true + + + 0.0037 + 0.0014 + true + + + 0.0218 + 0.0086 + true + + + 0.0109 + 0.0043 + true + + + 0.0059 + 0.0024 + true + + + 0.002 + 0.0008 + true + + + 0.002 + 0.0008 + true + + + 0.0049 + 0.002 + true + + + 0.002 + 0.0008 + true + + + 0.0037 + 0.0014 + true + + + 0.003 + 0.0012 + true + + + 0.0049 + 0.002 + true + + + 0.004 + 0.0016 + true + + + 0.0037 + 0.0014 + true + + + 0.0137 + 0.0054 + true + + + 0.0109 + 0.0043 + true + + + 0.0049 + 0.002 + true + + + 0.002 + 0.0008 + true + + + 0.0218 + 0.0086 + true + + + 0.003 + 0.0012 + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + 1 + + + false + true + 20.5 + + + + true + 0 + 0 + 1 + true + + + true + 0 + 0 + false + + + true + -0.0489 + 0 + false + + + true + -0.0784 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.04 + 0 + false + + + true + -0.019 + 0 + false + + + true + 0 + 0 + false + + + true + -0.023 + 0 + false + + + true + 0 + 0 + false + + + true + -0.0245 + 0 + false + + + true + -0.1172 + 0 + false + + + true + -0.1172 + 0 + false + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SV_.xml new file mode 100644 index 00000000..31166602 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_SV_.xml @@ -0,0 +1,745 @@ + + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/StateVariables-EU/3.0 + 2015-12-31T23:00:00Z + + + + 0.0037 + 0.0014 + + + + 0.0149781 + -0.00319927 + + + + -0.0189768 + 0.00159778 + + + + 0.0189981 + -0.00159146 + + + + 0.002 + 0 + + + + 0.002 + 0 + + + + 0.002 + 0 + + + + 0.0716172 + -0.0180343 + + + + 0.0563604 + -0.0354617 + + + + 0.0573556 + -0.0235805 + + + + 0.274253 + -0.0928229 + + + + -0.037895 + 0.00431958 + + + + 0.0137 + 0.0054 + + + + -0.274253 + 0.0928229 + + + + -0.0245 + 0 + + + + 0.003 + 0.0012 + + + + -0.1172 + 0 + + + + 0.0242993 + -0.00972497 + + + + -0.0242777 + 0.0097323 + + + + 0.0751753 + -0.0205083 + + + + 0.003 + 0.0012 + + + + 0 + 0 + + + + 0.004 + 0.0016 + + + + 0 + 0 + + + + 0.103507 + -0.00534601 + + + + 0.0119 + 0.0046 + + + + -0.0997907 + 0.0067499 + + + + -0.0305517 + 0.00680054 + + + + -0.0573452 + 0.0235845 + + + + -0.0712516 + 0.0181743 + + + + 0.0998221 + -0.00673782 + + + + 0.0109 + 0.0043 + + + + 0.0218 + 0.0086 + + + + 0.0379981 + -0.00428186 + + + + 0.0037 + 0.0014 + + + + 0.282423 + -0.0732956 + + + + 0 + 0 + + + + -0.0923119 + 0.00972368 + + + + 0.003 + 0.0012 + + + + 0 + 0 + + + + 0.0079 + 0.0031 + + + + 0.003 + 0.0012 + + + + 0.0137 + 0.0054 + + + + -0.0149728 + 0.00320059 + + + + 0.0037 + 0.0014 + + + + 0.002 + 0 + + + + 0.0049 + 0.002 + + + + -0.0784 + 0 + + + + 0.0943421 + -0.0247665 + + + + -0.0489 + 0 + + + + 0.004 + 0.0016 + + + + 0.0218 + 0.0086 + + + + 0.002 + 0 + + + + -0.0750511 + 0.020556 + + + + -0.101751 + 0.00602376 + + + + 0.0049 + 0.002 + + + + 0.0059 + 0.0024 + + + + 0 + 0 + + + + 0.0305719 + -0.00679334 + + + + 0.0937912 + -0.00915412 + + + + -0.0563313 + 0.0354728 + + + + -0.04 + 0 + + + + 0.0049 + 0.002 + + + + -0.1172 + 0 + + + + 0.004 + 0.0016 + + + + 0.0109 + 0.0043 + + + + -0.019 + 0 + + + + -0.0937438 + 0.0249972 + + + + -0.023 + 0 + + + + 0.003 + 0.0012 + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + -145.47 + 0.406449 + + + + -145.762 + 0.403413 + + + + -145.855 + 0.402598 + + + + -145.843 + 0.402844 + + + + -145.028 + 0.412639 + + + + -145.442 + 0.409262 + + + + -145.797 + 0.403152 + + + + 0 + 20.5 + + + + -145.654 + 0.404638 + + + + -145.813 + 0.403278 + + + + -145.855 + 0.402718 + + + + -145.685 + 0.404448 + + + + -145.019 + 0.412765 + + + + -145.877 + 0.402486 + + + + -145.647 + 0.404691 + + + + 1 + + + cb735546-0e49-47c7-be85-d71b3714b113 + Island_001 + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_TP_.xml new file mode 100644 index 00000000..a16c13a6 --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_XX_YYY_TP_.xml @@ -0,0 +1,401 @@ + + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Topology-EU/3.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 777e6e33-b0ad-4d9d-259d-f122784e310f + LV1.101 Bus 12 + + + + + 34b3cfc4-8320-062d-8594-22d62c9b428d + LV1.101 Bus 6 + + + + + 6d06e4be-2884-0970-e5c7-a6f87fbcd7de + LV1.101 Bus 8 + + + + + f1bd34d7-6301-f6fc-45ef-6e81f50cd5f9 + LV1.101 Bus 1 + + + + + a33f4aa1-8f46-0c80-933e-e561fcfb2ed1 + LV1.101 Bus 14 + + + + + 78ded6cc-9116-1c13-2dd8-41cda374404a + LV1.101 Bus 2 + + + + + d3004e74-5f1e-f171-1ded-fe3a31989618 + LV1.101 Bus 7 + + + + + 65417d3b-a0cd-f1f0-4392-f877accf5fae + LV1.101 Bus 13 + + + + + 7606397b-0b99-159a-3e2f-1f762cbd3572 + LV1.101 Bus 10 + + + + + 35fba29d-b9e8-2e62-48fe-a87d1062dc41 + LV1.101 Bus 11 + + + + + 55526838-7349-b0c0-b8a4-b279f010f7f9 + MV1.101 Bus 4 + + + + + 29fc6b33-ccbd-b39e-b30f-f08e58f8e856 + LV1.101 Bus 9 + + + + + cc0c4e6a-7f44-442f-f667-4acbaa3d03fe + LV1.101 Bus 4 + + + + + d42e3651-bbe2-134c-2445-fbcdb63b03da + LV1.101 Bus 3 + + + + + 1484fe13-7cdc-75de-9a78-068f879c0c62 + LV1.101 Bus 5 + + + + diff --git a/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_YYY_EQ_.xml new file mode 100644 index 00000000..5b6b754d --- /dev/null +++ b/cimpy_3/cimpy/examples/sampledata/LV_SIMBENCH_3_0/20151231T2300Z_YYY_EQ_.xml @@ -0,0 +1,2384 @@ + + + + + 2023-12-08T12:24:45Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + 2015-12-31T23:00:00Z + + + 1 + f7f2f433-688c-e308-c157-b6ce86691357 + Cubicle_LV1.101 SGen 8 + + + + + + 2 + 45f1189c-1b0f-3562-8e12-8e92e6e33149 + LV1.101 Bus 7_LV1.101 Line 8 + + + + + + 2 + 2cf522fb-0e5b-2750-ab0d-6838fb92ac21 + LV1.101 Bus 11_LV1.101 Line 5 + + + + + + 2 + 07d0ff5e-5f08-fc6e-d0c6-af44cb4d2342 + LV1.101 Bus 14_LV1.101 Line 9 + + + + + + 1 + 4106da66-e119-5fdc-28e8-f930014c7b2f + LV1.101 Bus 11_LV1.101 Line 6 + + + + + + 1 + 79f74ca3-b470-38e2-4bf5-478cb3f0688f + LV1.101 Bus 13_LV1.101 Line 13 + + + + + + 2 + 3894f710-096b-1159-528c-7667a3adb6a3 + LV1.101 Bus 3_LV1.101 Line 1 + + + + + + 2 + 9e6c8189-d629-3a67-1827-ae76f1594401 + LV1.101 Bus 4_MV1.101-LV1.101-Trafo 1 + + + + + + 1 + 9eb842d0-33e9-d5ba-6eaa-8f8829c13fd4 + LV1.101 Bus 8_LV1.101 Line 5 + + + + + + 1 + a481d933-1ecc-7337-9d36-31574a8b713e + LV1.101 Bus 6_LV1.101 Line 9 + + + + + + 1 + bf19870d-0e0c-bdf2-c18e-bd28e3796580 + Cubicle_LV1.101 SGen 5 + + + + + + 1 + 8b56611b-45d9-01e4-9351-7b311f944355 + MV1.101 Bus 4_MV1.101-LV1.101-Trafo 1 + + + + + + 1 + 3d50a829-9577-e41f-6da0-f12cb80eb421 + LV1.101 Bus 3 + + + + + 1 + 006eb6cb-36ac-cae9-45c6-488c3b31ccf9 + LV1.101 Bus 14 + + + + + 1 + 8ea7fb52-f83a-23c3-7ce2-3e8381e0fa8b + LV1.101 Bus 13 + + + + + 1 + f4eb918d-7ecf-6a90-d4f2-dca0653b8b59 + Cubicle_LV1.101 SGen 4 + + + + + + 1 + 390f2ec1-6956-1139-fc3c-96e7360ddec9 + Cubicle_LV1.101 Storage 2 + + + + + + 1 + c62d4c63-3a6c-5449-f91c-fa9a10f1b300 + LV1.101 Bus 2 + + + + + 1 + 53049efe-c029-6d78-73b6-81eb5f02d055 + LV1.101 Bus 1 + + + + + 1 + c2878e7d-9295-eb43-d670-3a925e2c029d + LV1.101 Bus 7_LV1.101 Line 3 + + + + + + 2 + fed6f645-dfd2-4b11-23cb-019f3eb6ffdb + LV1.101 Bus 4_LV1.101 Line 3 + + + + + + 1 + 62435fe5-cd99-9f2e-e37d-189d37d1daf0 + LV1.101 Bus 5 + + + + + 1 + 5d766dd8-03e5-47a8-fb8d-51dfed13af1e + LV1.101 Bus 10 + + + + + 2 + c14172f9-7743-7b8a-e19b-c8e0e8dde357 + LV1.101 Bus 4_LV1.101 Line 12 + + + + + + 1 + f7aee8a9-1ff2-aaf2-c5e8-21c0705d357f + Cubicle_LV1.101 SGen 1 + + + + + + 1 + 32c36c31-214f-a291-e07c-a27943b70c2a + LV1.101 Bus 12 + + + + + 1 + ec13e53a-5a5d-367d-f1f5-3d49cacf9bdb + LV1.101 Bus 4 + + + + + 1 + c82b7f3c-80fe-a45e-5e8d-5c1fdb19ba9e + Cubicle_LV1.101 Storage 5 + + + + + + 1 + c17019ea-c3ad-899f-6e7c-f3bcc59a3205 + LV1.101 Bus 4_LV1.101 Line 7 + + + + + + 1 + 9c9f71f6-2e38-e7ef-7743-9fe0cd59ddde + LV1.101 Bus 6 + + + + + 1 + 24f2da36-f297-3944-269d-7995924cb3b6 + LV1.101 Bus 7 + + + + + 1 + fa2751a9-48b5-7ab5-cdf6-f48c4bb295f3 + Cubicle_LV1.101 SGen 3 + + + + + + 1 + edbd6c3a-460a-cbce-a115-80532dada7d2 + LV1.101 Bus 2_LV1.101 Line 12 + + + + + + 1 + c6daf743-e2c8-f510-1079-6a5dc9e3cbe5 + LV1.101 Bus 11 + + + + + 1 + 670a0f9b-ff3e-6ab7-725d-0b9cc0b48603 + LV1.101 Bus 9 + + + + + 1 + ced9fc3e-b889-b6ff-7586-f22a817a65ea + Cubicle_LV1.101 Storage 4 + + + + + + 1 + 1ce6ee9c-a484-c8da-9c3b-3110e0e323b0 + LV1.101 Bus 8 + + + + + 1 + d8507fff-a9c2-8e3e-78b6-32b428b91991 + LV1.101 Bus 4_LV1.101 Line 10 + + + + + + 1 + 159a3bd3-f964-1c24-2afa-6a4aa0430a77 + MV1.101 Bus 4 + + + + + 2 + 59f9b865-be6f-d5f9-7407-7ef27398d973 + LV1.101 Bus 8_LV1.101 Line 7 + + + + + + 2 + 47294778-cec6-8a3f-8324-fe2cc309075b + LV1.101 Bus 1_LV1.101 Line 10 + + + + + + 1 + 129e42f9-cc39-9a76-7763-a10ba83e3a7b + LV1.101 Bus 9_LV1.101 Line 4 + + + + + + 1 + dd94904d-8d62-2a02-9f8b-22c9bde458b9 + Cubicle_LV1.101 Load 16 + + + + + 1 + 4395c3a0-fb74-f6ee-0f94-f71eb246906b + LV1.101 Bus 10_LV1.101 Line 1 + + + + + + 2 + 196180e4-a471-f61d-419f-0d3a961173c0 + LV1.101 Bus 6_LV1.101 Line 11 + + + + + + 1 + 628c09a0-c45c-4b62-bcad-5d499d7b75b2 + LV1.101 Bus 5_LV1.101 Line 11 + + + + + + 1 + ee6948f4-6db9-5906-d637-b8ade0e475bf + Cubicle_LV1.101 Load 23 + + + + + 1 + 6871c99b-14c6-122c-2eab-40d4df87fe44 + Cubicle_LV1.101 Storage 3 + + + + + + 1 + 70cb7758-c93a-de7e-31cc-d96c3be51e12 + LV1.101 Bus 12_LV1.101 Line 8 + + + + + + 1 + 1afa1667-8d4f-166f-52f6-84621ca530ca + LV1.101 Bus 14_LV1.101 Line 2 + + + + + + 2 + 1ef2abd0-f10b-71fe-9c9d-ce1c48a039d3 + LV1.101 Bus 12_LV1.101 Line 2 + + + + + + 2 + 78a86b8e-04a2-1489-f3b6-20a8137403b8 + LV1.101 Bus 10_LV1.101 Line 6 + + + + + + 1 + 28db1be4-20f9-25fb-eea1-5c85e0fbaccb + Cubicle_MV1.101 grid at LV1.101 + + + + + + 1 + 7d5799c9-8fdb-0a67-cc85-0719d21db9ab + Cubicle_LV1.101 SGen 6 + + + + + + 1 + 00bd5da3-2bfa-b4bf-cbb2-959a0234e056 + Cubicle_LV1.101 Load 8 + + + + + 1 + 05c1a5a6-c639-9919-9e20-f7275a252c96 + Cubicle_LV1.101 Load 27 + + + + + 1 + 0ee6d08b-069c-93f0-e1db-fcd068f84c87 + Cubicle_LV1.101 SGen 7 + + + + + + 1 + 4e119ddd-fd7b-c3eb-0c96-a98bc78fee61 + Cubicle_LV1.101 Load 20 + + + + + 1 + 98119720-d19e-55fe-63ff-cf68a64f2652 + Cubicle_LV1.101 Load 22 + + + + + 1 + 57d64359-ad91-104d-d00b-a14dcfcf43dc + Cubicle_LV1.101 Load 4 + + + + + 1 + 93348ecd-6b40-a236-c210-05abd84ad2e2 + Cubicle_LV1.101 SGen 2 + + + + + + 1 + 04f59ee3-f246-fff8-33e0-eb645dc7fadd + Cubicle_LV1.101 Load 3 + + + + + 1 + b6e82cc6-903f-29b5-8134-95f146de927a + Cubicle_LV1.101 Load 7 + + + + + 1 + d308cc7d-d4ea-72cd-393d-a162ca0ccb8f + Cubicle_LV1.101 Load 21 + + + + + 2 + 6b1c7904-2027-ff5e-97c6-e46b0c14244e + LV1.101 Bus 2_LV1.101 Line 4 + + + + + + 1 + d787f77f-69e7-89ce-14b7-600bb005fb76 + Cubicle_LV1.101 Load 18 + + + + + 2 + 536ede12-8b15-cec6-051d-36aa5d3bf6d4 + LV1.101 Bus 9_LV1.101 Line 13 + + + + + + 1 + e65f961a-ff1f-0525-88e9-0472bf61f12b + Cubicle_LV1.101 Load 26 + + + + + 1 + 7825c686-b2f2-9e2b-4a17-5209530575a7 + Cubicle_LV1.101 Storage 1 + + + + + + 1 + f928fbcb-1297-603e-841c-bd13fb839ea6 + Cubicle_LV1.101 Load 9 + + + + + 1 + 6e3da3af-4a46-379a-22f7-b5f2d669470a + Cubicle_LV1.101 Load 13 + + + + + 1 + 6ff9c1dd-39f4-f360-838c-55b90fade313 + Cubicle_LV1.101 Load 15 + + + + + 1 + 76657fd8-353e-32fa-32b1-8c151ac0e1fc + Cubicle_LV1.101 Load 19 + + + + + 1 + abe5fed4-fa42-dfaa-0c91-8eff254e214e + Cubicle_LV1.101 Load 11 + + + + + 1 + df1d1c95-cd4e-436d-1a17-be9a4a551f7c + Cubicle_LV1.101 Load 25 + + + + + 1 + 10ee7e15-ec11-0214-ece7-0954650d34c2 + Cubicle_LV1.101 Load 28 + + + + + 1 + 31846068-fede-29aa-4dc4-28c489a2658f + Cubicle_LV1.101 Load 24 + + + + + 1 + 82de9900-4bbd-a9e9-681e-4236c053b202 + Cubicle_LV1.101 Load 12 + + + + + 1 + 4a51c45b-33f7-7262-a3a4-e51e90f1adbf + Cubicle_LV1.101 Load 2 + + + + + 1 + 9771d14b-a96b-9769-3c98-e983c7f35676 + Cubicle_LV1.101 Load 1 + + + + + 1 + 1688ef87-a226-fe15-80b4-9e84e3be0bef + Cubicle_LV1.101 Load 14 + + + + + 1 + 435ec061-8f15-c63d-89dc-77874b9756ee + Cubicle_LV1.101 Load 6 + + + + + 1 + 31ea0ebd-535c-f881-55af-3b085a954c28 + Cubicle_LV1.101 Load 17 + + + + + 1 + 9a24ded7-2e34-f586-b2ea-41f79e20bba8 + Cubicle_LV1.101 Load 5 + + + + + 1 + be03238a-74f3-8e8c-b3fe-21315f72c8df + Cubicle_LV1.101 Load 10 + + + + + 47b6609e-6485-5ae2-2a59-eefb1e2ad462 + patl + + true + + + + 45495227-e0ec-2752-d552-520a0752c845 + highVoltage + + true + + + + 9d7181c3-8b02-ed53-e2c9-f94e83aa813d + lowVoltage + + true + + + + + + + d4e1eed9-2f16-4048-8d85-2cd42b716c5e + LV1.101 Load 14 + + + + + + d8d8c465-4881-4285-a896-7bf9b0c575ca + LV1.101 Load 8 + + + + + + c0320816-2225-4a69-8994-ffbbf4675aba + LV1.101 Load 23 + + + + + + c9db08e8-5e30-4619-bfd2-b507120a0530 + LV1.101 Load 18 + + + + + + b980117b-b299-4f8e-ac30-375b54d5ce72 + LV1.101 Load 10 + + + + + + d965a614-6cf3-417a-844f-e4d23d41db2a + LV1.101 Load 17 + + + + + + ef306d4d-6b69-463f-9780-e2b538f627a0 + LV1.101 Load 12 + + + + + + acd97424-146a-41cf-94c7-2c85404ff460 + LV1.101 Load 7 + + + + + + cc8e4e07-0063-40a9-8fbc-2fa053262f05 + LV1.101 Load 9 + + + + + + ee5ca52c-f7dc-460a-860e-74cd1919c881 + LV1.101 Load 20 + + + + + + 9a1cc8f1-da23-4d65-ba0d-fb6b8d3378d8 + LV1.101 Load 21 + + + + + + d5e74ac1-7609-424d-b3b1-294806a33b91 + LV1.101 Load 16 + + + + + + bd732fca-98b5-458e-bfa7-6f2b4e5b8a9b + LV1.101 Load 1 + + + + + + 717b3a1b-1bec-478a-b2f7-fb5ce55c72e7 + LV1.101 Load 27 + + + + + + 8640d52e-c4b1-4e25-a358-c6ffe3605196 + LV1.101 Load 4 + + + + + + 86f3ef1b-6f8c-4319-9cc0-049feb03bcd3 + LV1.101 Load 28 + + + + + + 1bcec746-2845-4b8b-9d1e-7eadcd576ea8 + LV1.101 Load 24 + + + + + + 1f8c2995-036b-4ea4-afe9-25ea47472ab8 + LV1.101 Load 15 + + + + + + 33e1c937-da6f-4918-abfd-6c35516bda81 + LV1.101 Load 25 + + + + + + 4b99956e-1f01-4f47-82fb-385e29db912c + LV1.101 Load 6 + + + + + + 4e25bd50-50bc-4b75-b4bf-eee6e1274f88 + LV1.101 Load 3 + + + + + + 63309068-5ff3-40f5-b68c-3e2d763f959a + LV1.101 Load 5 + + + + + + 3c0af105-05f9-48c3-a9db-6285bf71d5cc + LV1.101 Load 19 + + + + + + 8062ccee-ea7f-4cc8-b1be-dbb25c0ddf06 + LV1.101 Load 13 + + + + + + 68532dbf-bbb9-4663-ae1f-a64b46d12293 + LV1.101 Load 22 + + + + + + 69694007-f9b5-475c-9f76-b39a31b26d5c + LV1.101 Load 26 + + + + + + 84e69160-a70e-4711-9372-33fb914b760c + LV1.101 Load 11 + + + + + + cfcc222a-879f-4cb5-a4c8-9611016e5faa + LV1.101 Load 2 + + + e93f369d-2d64-1a41-cd65-e5edce549be8 + Current rating for LV1.101 Line 3 + + + + 3ce9c294-dc3a-d481-6013-25084c7d2d23 + Voltage limits for LV1.101 Bus 4 + + + + 6663ee11-163f-6e86-a8b2-2339143f27aa + Voltage limits for LV1.101 Bus 12 + + + + 7e3b7464-9446-e1ca-2961-9c9ea0128b31 + Current rating for LV1.101 Line 8 + + + + e654eec7-b084-1873-f57f-85f8ea60a345 + Voltage limits for LV1.101 Bus 1 + + + + ca63a448-d49e-0154-fc5f-492203d6d581 + Voltage limits for LV1.101 Bus 10 + + + + e4f5e709-81fd-2ada-b384-79d47e822356 + Voltage limits for LV1.101 Bus 8 + + + + 6d3037a4-0719-dc73-facf-1218a94d22e4 + Current rating for LV1.101 Line 12 + + + + 8bb6f4bf-da5b-f60e-e9c1-de230722b873 + Current rating for LV1.101 Line 2 + + + + 92379fb8-2358-4529-416b-65ccdbbebaac + Current rating for LV1.101 Line 12 + + + + 9e683919-c3a4-3201-3c6f-7bfecfd14ac1 + Current rating for LV1.101 Line 7 + + + + eb9df5e8-8d0a-6d7c-93a8-4c3ff9c93197 + Current rating for LV1.101 Line 2 + + + + 8c0029bd-12fb-92cb-fc99-a0d2f8ff6a5d + Current rating for LV1.101 Line 7 + + + + 1277d797-3227-a49d-d2c7-930f72ba1638 + Current rating for LV1.101 Line 4 + + + + 42f7b9a3-ba3a-f7fa-0587-b7be9eeaf7fa + Current rating for MV1.101-LV1.101-Trafo 1 + + + + 6539f2a6-1494-d375-14bf-8f7d72fa0548 + Current rating for LV1.101 Line 8 + + + + 6bb7b29f-4a68-897d-2809-05f1fadb938d + Current rating for LV1.101 Line 3 + + + + d8763d5c-deaa-b540-13a4-543ef351c44f + Current rating for LV1.101 Line 1 + + + + b9d2e009-0a21-9517-2fc8-bc09a08b4fb6 + Current rating for LV1.101 Line 4 + + + + 595710ff-6a52-4d03-aa21-91453ecc2940 + Current rating for LV1.101 Line 10 + + + + 5d634ecc-2cb2-bdba-9657-ffe3eaf57b2a + Current rating for LV1.101 Line 6 + + + + d3052a51-01da-d3f8-6a83-900be8577d04 + Current rating for LV1.101 Line 9 + + + + a30675cd-94ea-fd0a-8073-106279daaeef + Current rating for LV1.101 Line 11 + + + + d1863f7f-1147-b8e0-61e1-4a7097be3ede + Current rating for LV1.101 Line 11 + + + + fd19cea2-e072-7637-fdd7-2a6ba642586c + Current rating for LV1.101 Line 6 + + + + efa36cd1-d969-e308-1433-52117606d274 + Current rating for MV1.101-LV1.101-Trafo 1 + + + + c5494ff0-64fa-ffc2-c43c-4cee788fc26e + Current rating for LV1.101 Line 1 + + + + 6761e232-39d5-e101-f3e2-5ad4637b591c + Current rating for LV1.101 Line 10 + + + + cf241abb-99d4-e028-5361-a1b5b9772b39 + Current rating for LV1.101 Line 9 + + + + 4e36c7e8-11ed-3a22-5da8-8ab1526720e8 + Current rating for LV1.101 Line 5 + + + + 8619be82-3b9e-631a-99bc-60c6bdd11aa6 + Current rating for LV1.101 Line 5 + + + + 7de7c982-f524-2175-5cae-99c889409bce + Voltage limits for LV1.101 Bus 9 + + + + 4284bc8b-329f-faa9-5b56-44ddf8e0eff3 + Voltage limits for LV1.101 Bus 11 + + + + 74d2a3b4-0e92-6bdf-fe85-a65ec1c49191 + Voltage limits for MV1.101 Bus 4 + + + + d3e5f95a-611e-5e35-dcb8-d49c2787834a + Voltage limits for LV1.101 Bus 3 + + + + 0ca2cc2c-4fba-d6e2-2c9e-abc61b313a57 + Current rating for LV1.101 Line 13 + + + + 23091d02-fdba-cec5-8173-c3f3f8b5317d + Voltage limits for LV1.101 Bus 7 + + + + 7908b31c-e331-f60d-0849-95439af89d10 + Current rating for LV1.101 Line 13 + + + + 00c68262-49f3-532c-3b65-e82695426e06 + Voltage limits for LV1.101 Bus 2 + + + + a3640788-b17d-d7ec-a780-4e358bc8003b + Voltage limits for LV1.101 Bus 13 + + + + fc08398c-9b23-ab53-9c54-8eb3347516bd + Voltage limits for LV1.101 Bus 6 + + + + 60ede44a-2f9a-ef0e-d3b0-19f158d2043b + Voltage limits for LV1.101 Bus 5 + + + + 33ba166f-76a8-4517-c78a-7eb25568bd35 + Voltage limits for LV1.101 Bus 14 + + + + 10a3082b-57f7-d8d8-dcc7-4f64089fb061 + high limit for LV1.101 Bus 6 + + + 0.44 + + + 98a29e25-69e9-a274-b215-9a29791edfba + low limit for LV1.101 Bus 4 + + + 0.36 + + + f03006fc-07a3-502a-6f20-6e81c189e1c4 + low limit for LV1.101 Bus 12 + + + 0.36 + + + 53bb70be-da0f-49c6-2a00-d2c075de50a6 + high limit for LV1.101 Bus 4 + + + 0.44 + + + 06df99e3-0037-92b2-7919-416773627fe3 + low limit for LV1.101 Bus 1 + + + 0.36 + + + 1bb089aa-05db-6c75-02a3-b717a1d791bb + high limit for LV1.101 Bus 12 + + + 0.44 + + + 03d3d1f7-80a1-7cd9-3a42-12528d72f13f + high limit for LV1.101 Bus 1 + + + 0.44 + + + 4587223e-1106-61a6-00ce-39971c7e2c83 + low limit for LV1.101 Bus 8 + + + 0.36 + + + 7f7b7e6c-ba00-fe97-4cbc-734f3fd89121 + high limit for LV1.101 Bus 8 + + + 0.44 + + + 5703016a-0bd7-7fe6-d141-f5eb7405022e + high limit for LV1.101 Bus 10 + + + 0.44 + + + 2e0af15f-8e4e-3e75-02b1-1060bc65bd61 + low limit for LV1.101 Bus 10 + + + 0.36 + + + f3dc3aa8-a9da-91b1-c815-46790b6bba55 + low limit for LV1.101 Bus 3 + + + 0.36 + + + f81218a5-592b-7065-aa90-4247833a680d + high limit for LV1.101 Bus 11 + + + 0.44 + + + acfdcf4a-151f-0484-b83f-aa620a36090f + high limit for LV1.101 Bus 9 + + + 0.44 + + + 41524ff1-84d9-3b9a-9523-52d002ebdd18 + low limit for MV1.101 Bus 4 + + + 19.3 + + + 2d71abde-5404-18eb-1b5d-13284d0f2bd8 + low limit for LV1.101 Bus 7 + + + 0.36 + + + be0cf2f4-eb5a-b496-782a-1d153cdaecea + high limit for LV1.101 Bus 3 + + + 0.44 + + + 03ae46d0-532b-42e0-6a7b-d12cd9905b00 + low limit for LV1.101 Bus 9 + + + 0.36 + + + 8a46a62b-204e-9ac7-4d62-7efb96dc1c55 + low limit for LV1.101 Bus 11 + + + 0.36 + + + 029edcef-08a6-bc2b-410d-84122a651aab + high limit for MV1.101 Bus 4 + + + 21.1 + + + 25dd669b-0db6-96a5-3c76-7b6bfe96463c + high limit for LV1.101 Bus 7 + + + 0.44 + + + 788223d4-99b2-d5d6-124f-3f75f885dc13 + high limit for LV1.101 Bus 2 + + + 0.44 + + + e4354c9f-62ed-0367-b770-d5e936fa29a1 + low limit for LV1.101 Bus 2 + + + 0.36 + + + 6d046646-dea6-b45f-7306-8440b3b57412 + low limit for LV1.101 Bus 6 + + + 0.36 + + + 2f8f3ce7-74b7-9f35-8b68-bd7ccdd95db4 + high limit for LV1.101 Bus 5 + + + 0.44 + + + dbb0fdcd-a44c-941d-25c6-378444ed64e1 + low limit for LV1.101 Bus 14 + + + 0.36 + + + 7005ae81-f27a-fc57-035b-7cc9d80cfd37 + low limit for LV1.101 Bus 13 + + + 0.36 + + + 8ad9c027-dd47-f477-f5ce-787aa928d7af + low limit for LV1.101 Bus 5 + + + 0.36 + + + de4069db-f542-0dde-eff0-875233e45fe5 + high limit for LV1.101 Bus 14 + + + 0.44 + + + 7c5f49b1-188d-c518-5197-b0da649f57e6 + high limit for LV1.101 Bus 13 + + + 0.44 + + + + 83063ed1-539e-4629-84d9-d58eec7c5079 + LV1.101 Bus 4 + + + + 645f5d32-0384-4cbb-b5ee-2b251e826cfa + LV1.101 Bus 2 + + + + d6d423dd-bcf8-4465-a489-ebfb00e140a0 + MV1.101 Bus 4 + + + + 3aff2923-27ae-40ac-8bb7-9229929d29ab + LV1.101 Bus 13 + + + + c4e56b2b-5f69-4b46-a835-9162697f29ea + LV1.101 Bus 8 + + + + c24d384a-01f4-4d56-96ec-5a22f55e1c95 + LV1.101 Bus 6 + + + + eb35c2a0-9118-4a8f-956d-4f1cb8a4015f + LV1.101 Bus 11 + + + + f66e9711-cd8b-4547-a9d6-62f3134a066c + LV1.101 Bus 9 + + + + f0fa5879-3ead-4983-8753-4bfaf4c8842a + LV1.101 Bus 7 + + + + 6f733882-4a85-4822-8387-4e60e6c579a0 + LV1.101 Bus 5 + + + + 72434ca1-5e7d-4d70-ae83-abe045923651 + LV1.101 Bus 12 + + + + 0221accd-4869-4a48-bf8f-8a4cf0b12383 + LV1.101 Bus 3 + + + + 23461422-5b57-4589-bdc8-5fc602348259 + LV1.101 Bus 14 + + + + 829fbd98-2263-45b2-b70a-060ee4e4111e + LV1.101 Bus 1 + + + + 8babecfb-57ea-4ee3-bead-8f39e164f576 + LV1.101 Bus 10 + + + 83b08796-7a26-0e4e-c946-267b7c3faf49 + LV1.101 Bus 8 + + + + + 762f35f4-e6a5-a25f-c81f-4f2f38c7a31d + MV1.101 Bus 4 + + + + + 8fbd3fc9-f4d6-5c3d-045e-f93c5fee6cb8 + LV1.101 Bus 7 + + + + + 70981fef-8cdc-87d4-ae45-96d22dbe6782 + LV1.101 Bus 9 + + + + + d7ffebe6-f5fb-1766-a167-1bfd50291df7 + LV1.101 Bus 14 + + + + + c28cdd97-2bfa-8376-b322-c76c52e84657 + LV1.101 Bus 3 + + + + + 1c8cc5b5-a54d-caee-1332-24604f64c361 + LV1.101 Bus 1 + + + + + fa22c0ed-7b1d-885c-5287-70786d087be4 + LV1.101 Bus 2 + + + + + 4b6a3de2-435c-109f-ccce-84e1b0e50721 + LV1.101 Bus 13 + + + + + a12d2658-1a94-3746-8c65-8aa17af75adc + LV1.101 Bus 5 + + + + + 3fd7a408-7523-5414-04c4-44e408cfb2fd + LV1.101 Bus 4 + + + + + ad87a55b-0f75-1eb3-2f33-ccfe34c2c2fc + LV1.101 Bus 12 + + + + + 6fdaf99b-4630-5395-3d5e-50d5f5fd0763 + LV1.101 Bus 11 + + + + + 091896bc-54c2-a80b-7de9-a8dedf4d00af + LV1.101 Bus 10 + + + + + 4ec949f9-9664-fc14-8f07-ad5b9e0456bd + LV1.101 Bus 6 + + + + + 270 + 741317f3-79ff-edb7-2ef3-1a8b7bce7eae + patl for LV1.101 Line 8 + + + + + 270 + 67bbb21e-d566-87a5-b18b-df96e68d3702 + patl for LV1.101 Line 9 + + + + + 270 + 9da85e00-bb08-ed60-41f4-8927fcd64f60 + patl for LV1.101 Line 9 + + + + + 270 + 7d3c7fbd-f79c-6f79-3864-18e62154198a + patl for LV1.101 Line 12 + + + + + 270 + f27a3dc8-8df9-471f-60a5-b2b985f96e92 + patl for LV1.101 Line 2 + + + + + 270 + 4a0c492f-e202-f0cc-9b65-2dbc1d88ccd2 + patl for LV1.101 Line 3 + + + + + 270 + a2ba5ca8-3aba-e7ef-d54e-c0d70eb523c1 + patl for LV1.101 Line 12 + + + + + 270 + 9c7a181c-c28e-c34e-460b-63c6c48e087b + patl for LV1.101 Line 2 + + + + + 270 + 042ea96b-ed9d-65e0-d7e4-2702dbba99ff + patl for LV1.101 Line 8 + + + + + 270 + 6eb62e7f-b728-d49f-a5e8-6257f08c2d05 + patl for LV1.101 Line 7 + + + + + 270 + 5282b9ce-8f4b-262a-d42f-cebb1262c7c6 + patl for LV1.101 Line 6 + + + + + 270 + f4c9f51d-f5f5-5314-22d3-7cbec0c6898b + patl for LV1.101 Line 7 + + + + + 270 + a6d72852-67fc-4073-0659-0b68a50b8809 + patl for LV1.101 Line 1 + + + + + 270 + e207152b-73c1-acf1-4c2a-034bdc43cd01 + patl for LV1.101 Line 4 + + + + + 270 + 2a42f091-0b02-af5b-06cd-9ccd4b4adc4f + patl for LV1.101 Line 1 + + + + + 270 + 5aa5cc66-4305-4b94-8e0a-4e871a5b6d36 + patl for LV1.101 Line 6 + + + + + 270 + cfad5a43-bfff-0410-1cf3-73b2a934225f + patl for LV1.101 Line 10 + + + + + 270 + 8fdc13ba-79a0-601b-4eb1-a2c5aa8b2c38 + patl for LV1.101 Line 11 + + + + + 270 + 81e66a97-fbcb-0b8d-5b78-9b74e194ea9c + patl for LV1.101 Line 4 + + + + + 270 + 3b766bea-b909-28f5-3fdf-145d6bbca321 + patl for LV1.101 Line 11 + + + + + 4.6188 + 27c54ccc-aee8-54b5-5077-13959118a0f7 + patl for MV1.101-LV1.101-Trafo 1 + + + + + 230.94 + 04148225-9826-d357-0717-eaa47c7ead63 + patl for MV1.101-LV1.101-Trafo 1 + + + + + 270 + 593ace3d-54aa-d942-6a9e-fb35a32152f3 + patl for LV1.101 Line 10 + + + + + 270 + 1168331a-9c07-7aa3-38e0-cd8fe03c848b + patl for LV1.101 Line 5 + + + + + 270 + b91daafa-8f95-782e-1c61-a390e47324c2 + patl for LV1.101 Line 5 + + + + + 270 + 1fdef4f2-f234-4262-ba63-6bad0364368d + patl for LV1.101 Line 3 + + + + + 270 + 248d388f-575a-df77-39d4-6ed5b189f523 + patl for LV1.101 Line 13 + + + + + 270 + 9b1c279a-0492-6468-6e23-6e6c62f3fdf6 + patl for LV1.101 Line 13 + + + + + 0 + 4.22606e-6 + 0 + 0 + 0.00335003 + 0 + 80 + 0.00130346 + 0 + + 0.0162072 + 7c6406fd-71ff-411d-8178-d0bd7dfbafd1 + LV1.101 Line 12 + + + 0 + 4.66384e-6 + 0 + 0 + 0.00369706 + 0 + 80 + 0.00143849 + 0 + + 0.0178861 + 5767e3e0-fdd1-41eb-bdcf-29ff4f5f60ff + LV1.101 Line 4 + + + 0 + 3.45494e-5 + 0 + 0 + 0.0273875 + 0 + 80 + 0.0106562 + 0 + + 0.132499 + bcd5284b-3b3f-4ed5-a6d3-32c335f2446d + LV1.101 Line 10 + + + 0 + 1.29892e-5 + 0 + 0 + 0.0102967 + 0 + 80 + 0.00400632 + 0 + + 0.0498145 + e98486ad-e8d4-42d4-9c79-b0b32c0228b9 + LV1.101 Line 3 + + + 0 + 4.19529e-6 + 0 + 0 + 0.00332564 + 0 + 80 + 0.00129397 + 0 + + 0.0160892 + c6806465-3c28-4c5b-acbf-3dde3a004def + LV1.101 Line 5 + + + 0 + 1.34056e-6 + 0 + 0 + 0.00106267 + 0 + 80 + 0.000413474 + 0 + + 0.00514112 + fc7a7c2d-c14a-479d-b7a8-212a08efce56 + LV1.101 Line 7 + + + 0 + 1.45413e-5 + 0 + 0 + 0.011527 + 0 + 80 + 0.00448503 + 0 + + 0.0557667 + b10beea1-662b-4647-bf25-1ac89cada4e2 + LV1.101 Line 1 + + + 0 + 3.57791e-5 + 0 + 0 + 0.0283623 + 0 + 80 + 0.0110355 + 0 + + 0.137215 + ab415304-d9bd-4bcd-ab30-57cefd90f701 + LV1.101 Line 9 + + + 0 + 1.19986e-5 + 0 + 0 + 0.00951136 + 0 + 80 + 0.00370077 + 0 + + 0.0460153 + 101eb38e-1094-44b3-abc2-feddbb5ba623 + LV1.101 Line 13 + + + 0 + 1.39701e-5 + 0 + 0 + 0.0110742 + 0 + 80 + 0.00430886 + 0 + + 0.0535763 + 10df73d0-7469-41e7-a6d4-612185e7999c + LV1.101 Line 2 + + + 0 + 6.45781e-6 + 0 + 0 + 0.00511915 + 0 + 80 + 0.00199181 + 0 + + 0.0247661 + 25198c2c-723f-422f-bad7-a7b5d4ec1d4f + LV1.101 Line 6 + + + 0 + 5.59822e-7 + 0 + 0 + 0.000443775 + 0 + 80 + 0.000172668 + 0 + + 0.00214695 + 8252df2b-a10d-4faf-b029-d493656c08b2 + LV1.101 Line 8 + + + 0 + 6.7341e-7 + 0 + 0 + 0.000533817 + 0 + 80 + 0.000207703 + 0 + + 0.00258257 + 23dd5c28-4e16-498c-b337-20cb8040c4a6 + LV1.101 Line 11 + + + 48ab3324-c6aa-ba2b-811c-3dd4d2b17e85 + MV1.101-LV1.101-Trafo 1 + + 2.5 + 2 + -2 + false + 0 + 20 + 1 + + + + 71981e30-c91b-941e-c0bd-fc3fac3b84b3 + LV1.101 SGen 3 + 0.023 + 0 + + + + 81cce2ce-317b-e1c0-3d11-ac8ec620e791 + LV1.101 SGen 4 + 0.019 + 0 + + + + c9e80384-4d61-ea7b-268d-0790337f3760 + LV1.101 SGen 5 + 0.0489 + 0 + + + + 38f5d291-bbf5-7e90-c4b2-9505a2ea8505 + LV1.101 SGen 2 + 0.0784 + 0 + + + + d9fd9188-471b-9bf4-30a5-44ea7c4c64a6 + LV1.101 SGen 7 + 0.0245 + 0 + + + + 817d9481-6265-d392-e357-a1ad379c0651 + LV1.101 SGen 8 + 0.1172 + 0 + + + + 5c593437-b5cc-7d09-7251-fd5b3cdf3dc0 + LV1.101 SGen 6 + 0.1172 + 0 + + + + ed94cef6-ee9c-4d52-96c4-8d05767b6de3 + LV1.101 SGen 1 + 0.04 + 0 + + + + b61a5004-c98c-748c-aa25-96f033b66f13 + LV1.101 Bus 13 + + + + bccc0d3c-94ef-4a74-0e61-e29ceb7e2597 + LV1.101 Bus 3 + + + + 4d797952-a706-fd67-18c4-336a2cd0ac2a + LV1.101 Bus 14 + + + + fedcee6e-a71c-1f95-f06a-e32f3aed2ab1 + LV1.101 Bus 2 + + + + 05fe48fa-5949-b889-7a2e-bce3299d568f + LV1.101 Bus 12 + + + + fd31e62e-bea4-37b8-cb1f-3b5f15c790ee + LV1.101 Bus 10 + + + + 9d3c7af9-2398-3e14-78c6-00017c893870 + LV1.101 Bus 4 + + + + 6c0b8502-5bbc-0d8e-d29d-d5388c2e71d4 + LV1.101 Bus 6 + + + + 1740143a-93a8-0c7e-6315-7df2e6c482cc + LV1.101 Bus 1 + + + + 71b0f528-cd93-fb03-a148-19cecb0e659d + LV1.101 Bus 5 + + + + a273c823-6a79-9771-dc80-5bb8339c6314 + LV1.101 Bus 9 + + + + ac2cde7d-e37e-0386-648e-244d2551f1a0 + LV1.101 Bus 7 + + + + 77101ca8-63e7-c4b8-bec9-e5623507c250 + MV1.101 Bus 4 + + + + fd5fc876-77af-c868-f7d0-84721928b828 + LV1.101 Bus 11 + + + + b6970e68-fce5-742a-3a04-add112e9774f + LV1.101 Bus 8 + + + 0 + + 3a2e77e7-8cd7-2ae2-4812-a73ad979e75c + LV1.101 Storage 4 + 0 + -0.018338 + + + 0 + + 38245476-0a65-a105-3bbc-660f53f882a3 + LV1.101 Storage 1 + 0 + -0.073352 + + + 0 + + 44fb77e6-7d55-f61c-02d2-a05a4e97ebf5 + LV1.101 Storage 5 + 0 + -0.050232 + + + 0 + + 0c54dbe0-e96b-6ac6-d1e1-1bbeaf73cf44 + LV1.101 Storage 2 + 0 + -0.033488 + + + 0 + + b2010b32-75bb-c635-05e9-ca7c91347f91 + LV1.101 Storage 3 + 0 + -0.030563 + + + d808658c-dbc9-ce16-7ddd-87f0749f011a + HLS_A_22.0 + true + 2 + 2 + + + 2d26f4ca-d875-a792-2d4d-2da900d5edd1 + L1-A + true + 2 + 2 + + + ce1a58bd-6b85-e6f7-fb7a-c01c0db765ea + L2-A + true + 2 + 2 + + + d66bcc40-d14d-9bc9-8860-9068bdad7ff9 + Air_Semi-Parallel_2 + true + 2 + 2 + + + d0392d03-a209-8f6b-6bbe-2932b6dd775e + HLS_A_11.0 + true + 2 + 2 + + + c346ed2a-3aa8-45fd-0664-2334ded17849 + HLS_A_3.7 + true + 2 + 2 + + + a4796ff2-336c-49c8-0e15-2b370c0e4776 + HLS_B_3.7 + true + 2 + 2 + + + 1a4c0d06-3e31-3f48-a452-1d8f1a2b1b15 + Air_Parallel_2 + true + 2 + 2 + + + dc4beefc-7aed-9d29-cb54-b66a2f471666 + Air_Alternative_2 + true + 2 + 2 + + + d1974859-5340-8cd7-b2e3-aad8480d4f66 + H0-C + true + 2 + 2 + + + 9049a686-fd43-095e-392a-07e8af89183e + H0-A + true + 2 + 2 + + + f8448c7a-9d37-12d5-7923-693090de5cdc + Soil_Alternative_2 + true + 2 + 2 + + + 2aee24c4-b06c-37bc-d4bc-107139b8e608 + H0-B + true + 2 + 2 + + + f439963b-1f82-d485-4abe-91c122ed8dbc + MV1.101 grid at LV1.101 + + + + + 0.4 + BaseVoltage 0.40 kV + 4afb0a15-93bd-3e24-1d38-a0696bb2e040 + 0.40 kV + 0.40 kV + + + 20 + BaseVoltage 20.00 kV + 0d414c11-199f-b4ff-0601-964b20750e50 + 20.00 kV + 20.00 kV + + + 98d5b9a5-58d0-1bee-a437-131a3d51254c + LV1.101 Load 24 + + + + 33a4b1a5-54ff-d3f0-e09c-d1fad8036b2c + MV1.101-LV1.101-Trafo 1 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 0.16 + 0.4 + 0 + 0 + + + 2 + true + 0 + 0 + + + 12f4c21f-be4d-fdc4-c076-d7a4cf502618 + MV1.101-LV1.101-Trafo 1 + + -9.58077e-9 + -0.000133333 + + 1.15e-6 + 0 + 0 + 36.7188 + 0 + 0.16 + 20 + 93.0147 + 75 + + + 1 + true + 0 + 0 + + + + Storage_PV8_L1-A + 3a541130-2b07-459b-923c-ec95d5316371 + LV1.101 Storage 1 + + 0.073352 + -0.073352 + 0.0734 + 0.4 + + + + PV8 + 677faa23-6a77-4a56-9e2f-2580a7072599 + LV1.101 SGen 5 + + 0 + 0 + 0.0489 + 0.4 + + + + PV8 + 749269d3-1735-4c02-817f-e7232239fa38 + LV1.101 SGen 2 + + 0 + 0 + 0.0784 + 0.4 + + + + Storage_PV5_L1-A + b14e2a4d-d058-491f-addf-64dbc13b9253 + LV1.101 Storage 3 + + 0.030563 + -0.030563 + 0.0306 + 0.4 + + + + Storage_PV8_L2-A + 7576f8b7-6a1d-4633-bd1b-decddf0591e9 + LV1.101 Storage 5 + + 0.050232 + -0.050232 + 0.0502 + 0.4 + + + + PV5 + d34df7b2-1484-445f-8396-0fe5616f0aaf + LV1.101 SGen 1 + + 0 + 0 + 0.04 + 0.4 + + + + PV6 + 6bef0467-8e72-43a7-846f-6d09de077809 + LV1.101 SGen 4 + + 0 + 0 + 0.019 + 0.4 + + + + Storage_PV5_L2-A + 89bdf72c-d3ab-4982-b0d8-28f86cfeeb2e + LV1.101 Storage 2 + + 0.033488 + -0.033488 + 0.0335 + 0.4 + + + + PV5 + 0054afcf-8d67-4211-8c69-c4dc3a41dc82 + LV1.101 SGen 3 + + 0 + 0 + 0.023 + 0.4 + + + + Storage_PV8_L1-A + 3da95dff-f867-446a-9226-3f661e18e50f + LV1.101 Storage 4 + + 0.018338 + -0.018338 + 0.0183 + 0.4 + + + + PV6 + 911b0a86-fe2e-436e-9a24-f3f7aecdcb24 + LV1.101 SGen 7 + + 0 + 0 + 0.0245 + 0.4 + + + + PV6 + aa096c15-7008-4b19-8534-b0886f5cce14 + LV1.101 SGen 8 + + 0 + 0 + 0.1172 + 0.4 + + + + PV8 + ff1bbb84-7299-430b-9f78-f74a89231471 + LV1.101 SGen 6 + + 0 + 0 + 0.1172 + 0.4 + + + f3f9331a-2600-943d-3edb-df338c7aab30 + 1-LV-rural1--2-no_sw + + + + da7e23be-ded2-7ae3-bef6-626d6eae63bb + 1-LV-rural1--2-no_sw + + + + 69f8abcc-65ab-4630-b60c-676749f25152 + MV1.101-LV1.101-Trafo 1 + false + false + + + b69ccccb-ea19-3e88-c6ea-5f910d6e6bfd + 1-LV-rural1--2-no_sw + + + + 7d6e1665-b8e7-851e-9eea-6864a831697b + LV1.101 Load 24 + + + + d39b3e86-a86b-2099-d36c-06aca2816d0e + LV1.101 Load 24 + + + + 0 + 288675 + 100000 + 9999 + 0.1 + 0.1 + 1 + 230940 + 0 + -9999 + 0.1 + 0.1 + 1 + 2d04dddc-4ab7-4aa0-a9b7-8bacd4bfe2f6 + MV1.101 grid at LV1.101 + + + diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_DL_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_GL_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SSH_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_SV_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_XX_YYY_TP_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/20191030T0924Z_YYY_EQ_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/README.md diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/__init__.py b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/__init__.py similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/__init__.py rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Bus-Branch/__init__.py diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_DL_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_GL_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SSH_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_SV_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_XX_YYY_TP_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/20191030T0924Z_YYY_EQ_.xml diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/README.md diff --git a/cimpy/examples/sampledata/Sample_Grid_Switches/__init__.py b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/__init__.py similarity index 100% rename from cimpy/examples/sampledata/Sample_Grid_Switches/__init__.py rename to cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/Node-Breaker/__init__.py diff --git a/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/__init__.py b/cimpy_3/cimpy/examples/sampledata/Sample_Grid_Switches/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cimpy/export_template.mustache b/cimpy_3/cimpy/export_template.mustache similarity index 100% rename from cimpy/export_template.mustache rename to cimpy_3/cimpy/export_template.mustache diff --git a/cimpy/utils.py b/cimpy_3/cimpy/utils.py similarity index 71% rename from cimpy/utils.py rename to cimpy_3/cimpy/utils.py index ca668979..38cfb82e 100644 --- a/cimpy/utils.py +++ b/cimpy_3/cimpy/utils.py @@ -1,8 +1,5 @@ -import logging import importlib -logger = logging.getLogger(__name__) - def node_breaker_to_bus_branch(import_result): """TODO: Add documentation""" @@ -14,31 +11,31 @@ def node_breaker_to_bus_branch(import_result): diagram_objects_list = [] diagram_object_points_list = [] connect_nodes = [] - for id in res.keys(): - class_name = res[id].__class__.__name__ + for mRID in res.keys(): + class_name = res[mRID].__class__.__name__ if class_name == "Breaker": - breaker_list.append(id) + breaker_list.append(mRID) elif class_name == "OperationalLimitSet": - operational_limit_set_list.append(id) + operational_limit_set_list.append(mRID) elif class_name == "Terminal": - terminals_list.append(id) + terminals_list.append(mRID) elif class_name == "VoltageLimit": - voltage_limit_list.append(id) + voltage_limit_list.append(mRID) elif class_name == "DiagramObject": - diagram_objects_list.append(id) + diagram_objects_list.append(mRID) elif class_name == "DiagramObjectPoint": - diagram_object_points_list.append(id) + diagram_object_points_list.append(mRID) elif class_name == "ConnectivityNode": - connect_nodes.append(id) + connect_nodes.append(mRID) - # Search for open breakers + # search for open breakers open_breakers = [] for breaker in breaker_list: if res[breaker].open: if not res[breaker].retained: open_breakers.append(breaker) - # Check terminals for reference to open breakers and delete references to Connectivity Nodes + # check terminals for reference to open breakers and delete references to Connectivity Nodes del_terminals_list = [] for terminal in terminals_list: cond_eq = res[terminal].ConductingEquipment @@ -47,7 +44,7 @@ def node_breaker_to_bus_branch(import_result): else: res[terminal].ConnectivityNode = None - # Check for OperationalLimitSet with references to deleted Terminals + # check for OperationalLimitSet with references to deleted Terminals del_operationallimitset = [] for operational_limit in operational_limit_set_list: if res[operational_limit].Terminal.mRID in del_terminals_list: @@ -66,8 +63,12 @@ def node_breaker_to_bus_branch(import_result): continue if "ConnectivityNode" in str(type(res[diagram_object].IdentifiedObject)): if res[diagram_object].IdentifiedObject.TopologicalNode is not None: - keep_diagram.append(res[diagram_object].IdentifiedObject.TopologicalNode) - elif res[diagram_object].IdentifiedObject.mRID in (open_breakers + del_terminals_list): + keep_diagram.append( + res[diagram_object].IdentifiedObject.TopologicalNode + ) + elif res[diagram_object].IdentifiedObject.mRID in ( + open_breakers + del_terminals_list + ): del_diagram_object.append(diagram_object) del_diagram_object_points = [] @@ -98,14 +99,14 @@ def node_breaker_to_bus_branch(import_result): def add_external_network_injection(import_result, version, mRID, voltage_set_point): """TODO: Add documentation""" res = import_result["topology"] - topological_node = "" + TopologicalNode = "" if mRID in res: if "TopologicalNode" in str(type(res[mRID])): - topological_node = res[mRID] + TopologicalNode = res[mRID] elif "ConnectivityNode" in str(type(res[mRID])): - topological_node = res[mRID].TopologicalNode.mRID + TopologicalNode = res[mRID].TopologicalNode.mRID - if topological_node != "": + if TopologicalNode != "": i = 1 while "Injection " + str(i) in res.keys(): i += 1 @@ -118,10 +119,16 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi terminal_module = importlib.import_module((module_name + "Terminal")) terminal_class = getattr(terminal_module, "Terminal") - res[terminal_name] = terminal_class(mRID=terminal_name, name=terminal_name, TopologicalNode=topological_node) + res[terminal_name] = terminal_class( + mRID=terminal_name, name=terminal_name, TopologicalNode=TopologicalNode + ) - regulating_control_module = importlib.import_module(module_name + "RegulatingControl") - regulating_control_class = getattr(regulating_control_module, "RegulatingControl") + regulating_control_module = importlib.import_module( + module_name + "RegulatingControl" + ) + regulating_control_class = getattr( + regulating_control_module, "RegulatingControl" + ) res[reg_name] = regulating_control_class( mRID=reg_name, name=reg_name, @@ -129,8 +136,12 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi Terminal=res[terminal_name], ) - network_injection_module = importlib.import_module(module_name + "ExternalNetworkInjection") - network_injection_class = getattr(network_injection_module, "ExternalNetworkInjection") + network_injection_module = importlib.import_module( + module_name + "ExternalNetworkInjection" + ) + network_injection_class = getattr( + network_injection_module, "ExternalNetworkInjection" + ) res[inj_name] = network_injection_class( mRID=inj_name, name=inj_name, @@ -142,7 +153,7 @@ def add_external_network_injection(import_result, version, mRID, voltage_set_poi res[terminal_name].ConductingEquipment = res[inj_name] res[terminal_name].RegulatingControl = res[reg_name] else: - logger.warning("No Terminal with mRID %s found in object list!", mRID) + print("No Terminal with mRID ", mRID, " found in object list!") import_result["topology"] = res diff --git a/cimpy_3/conftest.py b/cimpy_3/conftest.py new file mode 100644 index 00000000..e69de29b diff --git a/cimpy_3/documentation/.gitignore b/cimpy_3/documentation/.gitignore new file mode 100644 index 00000000..a1a96bd9 --- /dev/null +++ b/cimpy_3/documentation/.gitignore @@ -0,0 +1,4 @@ +*.rst +Makefile +make.bat +_build diff --git a/cimpy_3/documentation/CIMpy.svg b/cimpy_3/documentation/CIMpy.svg new file mode 100644 index 00000000..e6395c41 --- /dev/null +++ b/cimpy_3/documentation/CIMpy.svg @@ -0,0 +1,3 @@ + + +
Import
Import
Export
Export
cgmes v2.4.15
cgmes...

CIMpy

CIMpy
Cim Codebase Generator
Cim Codebase Generator
CIM XML/
RDF Files
CIM XML/...
CIM XML/
RDF Files
CIM XML/...
RDFS files
RDFS files
Python class files
Python class fil...
Utils
Utils
Python objects
Python o...
Viewer does not support full SVG 1.1
diff --git a/cimpy_3/documentation/conf.py b/cimpy_3/documentation/conf.py new file mode 100644 index 00000000..36c513cd --- /dev/null +++ b/cimpy_3/documentation/conf.py @@ -0,0 +1,78 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +import os +import sys + +sys.path.insert(0, os.path.abspath("../")) + + +# -- Project information ----------------------------------------------------- + +project = "cimpy" +copyright = "2019, ACS RWTH Aachen University" +author = "Author" + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.viewcode", + "sphinx.ext.todo", + "sphinx_rtd_theme", + "sphinx.ext.inheritance_diagram", + "sphinx.ext.graphviz", +] + +modindex_common_prefix = ["cimpy."] + +inheritance_graph_attrs = dict(rankdir="TB", size='""') + +# Add any paths that contain templates here, relative to this directory. +templates_path = ["_templates"] + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = "en" + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = "sphinx_rtd_theme" + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ["_static"] + + +# -- Extension configuration ------------------------------------------------- + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = True diff --git a/cimpy_3/documentation/docu.sh b/cimpy_3/documentation/docu.sh new file mode 100644 index 00000000..720e233c --- /dev/null +++ b/cimpy_3/documentation/docu.sh @@ -0,0 +1,12 @@ +if [ "$1" = "--release" ] || [ "$1" == "" ]; then + python3 ../setup.py develop + sphinx-apidoc -F -H "cimpy" --separate -o "../documentation" "../" "../setup.py" + python3 set_inheritance_diagram.py + if [ "$1" = "--release" ] ; then + make html + else + make text + fi +else + echo "Usage: $0 [--release]" +fi diff --git a/cimpy_3/documentation/images/cimpy_logo.png b/cimpy_3/documentation/images/cimpy_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..633b9e8a2fd7192dbf6a775ecdb5fb08a9c3ce5b GIT binary patch literal 88966 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 literal 0 HcmV?d00001 diff --git a/cimpy_3/documentation/images/cimpy_logo.svg b/cimpy_3/documentation/images/cimpy_logo.svg new file mode 100644 index 00000000..8ce70afc --- /dev/null +++ b/cimpy_3/documentation/images/cimpy_logo.svg @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + C + I + M + p + y + + + + + + diff --git a/cimpy_3/documentation/set_inheritance_diagram.py b/cimpy_3/documentation/set_inheritance_diagram.py new file mode 100644 index 00000000..dd4d8be5 --- /dev/null +++ b/cimpy_3/documentation/set_inheritance_diagram.py @@ -0,0 +1,47 @@ +from os import remove +import os +from tempfile import mkstemp +from shutil import move, copy + +directory = os.path.abspath(os.path.join("..", "documentation")) + +# if 'conf.py' in os.listdir(directory): +# conf_file = os.path.abspath(os.path.join(directory, 'conf.py')) +# real_conf_file = os.path.abspath('real_conf.py') +# remove(conf_file) +# copy(real_conf_file, conf_file) +# +# if 'index.rst' in os.listdir(directory): +# index_file = os.path.abspath(os.path.join(directory, 'index.rst')) +# real_index_file = os.path.abspath('real_index.rst') +# remove(index_file) +# copy(real_index_file, index_file) + + +for file in os.listdir(directory): + if file.endswith(".rst"): + file_path = os.path.abspath(file) + fh, abs_path = mkstemp() + found_inheritance = False + with open(fh, "w") as new_file: + with open(os.path.join(directory, file)) as old_file: + for line in old_file: + if "undoc-members" in line: + continue + else: + if "automodule" in line: + name = line.split("::")[1] + if "show-inheritance" in line: + new_file.write("\nInheritance Diagram:\n") + new_file.write('""""""""""""""""""""\n') + new_file.write(".. inheritance-diagram:: " + name) + new_file.write(" :parts: 1\n") + new_file.write("") + new_file.write("") + found_inheritance = True + else: + new_file.write(line) + + if found_inheritance: + remove(os.path.join(directory, file)) + move(abs_path, os.path.join(directory, file)) diff --git a/cimpy_3/setup.py b/cimpy_3/setup.py new file mode 100644 index 00000000..ece2b02d --- /dev/null +++ b/cimpy_3/setup.py @@ -0,0 +1,17 @@ +import setuptools + +setuptools.setup( + name="cimpy", + version="1.0.2", + description="Python package for import, modification and export of CIM grid data", + author="Institute for Automation of Complex Power Systems", + author_email="acs-software@eonerc.rwth-aachen.de", + include_package_data=True, + license="MPL-2.0", + packages=setuptools.find_packages(), + install_requires=[ + "lxml", + "xmltodict", + "chevron", + ], +) diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM.zip b/cimpy_3/tests/1_MV_urban--2-sw_CIM.zip new file mode 100644 index 0000000000000000000000000000000000000000..7ad3e9069c653c96c22558b72cd54e2afc53c59e GIT binary patch literal 4541939 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 z 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%0AQ zcT3op64ah)J&YC16+tQ%jBz4U#Lzei+Hl_^ROQ?lM?wKk02Y@IaSS538UhL41O|wQ7ZT~622LpG&qY;GTC^viOs%ERD>s4Qh17i+mIFW zjx;=v1*F}WgW*8-t^gC`_yXwZvq12C4Q+UC0N-p!iCqjEG8E9WOHKv@wt?U2ykcmd zyG|3OMeejVt8}QMy@Cp!w6{s4#J)9R1nP?cOm@bw7Bt9hFij++=7?MBZJ zVIK(EhNw4f7uN6|@?$6;Hm2>uljP+2fN3$oy(8q}ZNf({(19wc8dd z;TI^wSaYp^p@~$+t8W&l_Y|y#nw3u%8nN9XC!1mh%!J{j{m=}pncIXO#d?$G5v!G{ z3L*$IW9wjPMz0V?+m7v<6yA!%1-I?XhKu47J5ygvG9)w;4ONzYkqESium#kZE>8Nn zt=ghCFjtX(nQv54C4E}BAKkZoqL|?(9$!OMZ%wHs%57Tl6shDdJ4G(CRKO*vVugT9 zz2xn@VB5H1Z8zAzIZ~%8FCA3VnMq%v3j5)WcXq`y z)DvDdU#w`Qa9><(gkIf$X(Oje$UzEI1ip>3zRumH!~io64PkJ@$xW^aW=4S9gc$_R zCMQhW3$XXA>q@W7Oz5YD8R1aLnWrW{#ODYAmJTr{|8)n;O(QHtS6P)a)!& zo1ODF{gpjez;10{fMHXz+G5q`@XEcuT*S<;MqQ9Y(3q798Oj(Q^URY^N=7~l*DS-_ zZycjLY+;=Z*9Bhxu)QWA5A4hxUuLgA+$Z{ev^TwP24C}0w1ncA(YsFBZ`%sHNjui~ z?$mi*bJ{F8PEv=Tk}Xudsd+-SPzOJ_2Kr_`x=%9(T9j%+W#-vh_?wnQ;k?=EyY9}G z;xo4T^$)T7R{uIVO>|{aW5C(^#9c;9g=B*QLmbR2gWk|j8sD5 z&}>56X5<=Vy2Y2}^KsKamH21_fBZVV68-M_ed;#`2-}4Cy(QfTw;J!(T0Y^p12<2C zr|2CN!ZVeC%rIV32vRI+r<*xrfq(ZCg5BX$tX_#7ul3senu5n(bDyGmqX>@$G9^u< zMx?};;oyY3Mgn4QQKsi=QKLJD%%XN1;HKoJSW;jhHd38*I26mMv;gxFKpeWEzT#8@hP5e)r;{No^Dd1FM@5}-z5&D zwmvlQ@VbbmV#pMd~v5}|}$mfpggsT^0 zM2WdyH^-mFK3|ubND)k`?-L$Z5()0Hgf$Yr%o~>OJ6HGStSAaBBS=$z(HM5T$du(x zM-ep(1~CWeymjdXOfscdRW>5J4z=-_7NKb-C%t` z0~5MY5cEzAX*rB0)yOkliQDF48F#b}>))m#NFH2$A1K7@WKl73-zz&PJaE%ucB}3a zmT$=yZouLeQ75;;iS7!&jmKEIK@o?2K^i{seYX^6PT!MwJP*4189r^Fc>nLTCTODo zLERP$joRZE?elHdi4VV+X02o26b0xh8zNi}Z*0j+vE6rgXDH7qf6(Pe~9fw~W9%ME0B04$m6F)V=OC(Gq3Gm<~szH=w z%wM9tOXBoAy#Qws1?UalUva01clrnhs(FYL|B5AGp>ce2*_Gs&vC%s=UMqf5V6)+5 zdTC(&2V3Vv)Dd{(5lt!#9$$QrxJnbxfu{V^I~(J2#RI(3Y}hQA+ZFv~PN*4LMU~Ry zy>%TgH|e5mFV6C$lGZdx+FQE5ESpWCV>!#cVWJ9~W$N|<58{`;<_Un!{mQOch>^!b zNfIp~hO~qHyI|l5#3`gbii2)ZoKC)pVuU#FL)l|^mmrrv+wGro=tc(dGlIzH7h zs5$Dl7$1*Z0BW9LU*t4MXSaZFbJO(e982Wa!f{=ujH~bLTKFk&&HXR<2Yb`%a80_Z zGu3S{k6QO)Pok$ODv1_+!&hqOgcw#k;j`PsXDs%spWv6v^dIYD-vWUN3GxInHi^lRp?lRYRAkM{ z*_Vc@M_6plN}M{zrmfYGg@TLDewgM(hl3f~M|QxXxKH9W^9r8juA;a>dr81XapxGD>;6jUWd7%fDTikeA9PZ?k{DTVQ_<>ZcAii6FR=!r*Km_ zVMCI~aI+5q)bN9ct&_CkosLtEaQ5l=pkMtAiF(6ZtT`rLntr*tG##U1zc|cHXfR@% zgklVgP~wspX`Fo%$D+%(CYg%x(O08f*f0fcldn+U1!UqEm=a4KMpM5(P4~YTH7`_F ze0joGx{WdtwKnR77~6_?6JT0AWi2z#6=TMb0?p`_N|E-XGsKdut zy%>Ril@s^I<~q|_kar2dlx@)QubJd*6Mo|uHao3%AFYO`lh2|^KbF)5P~cS%H1~b56Da{3h}w?vsABAnyY*4vbv|cQC=}a2Mlbc(9 z0;6))h(eS7u|dRkWhjmbNSDOIK_cf;@G5jdkg^0AC$X5*Kp`oZ4L1TLAK*)wHfv z`>&DXkxM(0eH@2S?>}H4+$si6Um@TGfAS64w&Goy!*#%$Q37FULL|h; zxGm;FyNr^qmZ?L{`zq+>YHaAl#;SjHr&_FOGK#gnM|xIfhQB+B=@q?%KrurEuD zcPVxYL}^905r9jM?bq2E8pWyVPeG?idS6HVuWKrjIX@GoXV!O-uJ|8&!gT%o`Qizw zZ5O)MV(Y6wPESp;=d+0C)fY-d@*ZA+ryQP7=3=0EG>lcTGs;z+7dv9o0UiMorx7&5 zHffuVA~x0Q@C)qr1f#`kim?fKLfMCC(xH*-3#{BGtKn@xg7J~3xjkvo$J3wan12SF zH?(2w$eWEYi=tw)IE)&r^#vdsa-z!HC{_Rkv$@+W)x1(C`lna|+9mC!l5rw}8?geN zqF^cTaf9QzE0r5&H)wUKXb?eo=Ri)U615qZ1t28LWjP)-RK2y)&OHP>kAvW2UzAbz zH(XUuQ9dlmARE1qyj_D@9NPxCId3jLmhRTZ=S~p=a>0sHfqWGKv@it*jIeg8(HuIg z_+J5dBj2iQwX|NIReE-pNcUbN1w&&mDp=V>RM(Bj<{;x->K@G?4dGH7{r;|h(0L0e%U4o zg^B|FNQE_({!Ze_0plsHY4t;VLTehXGnLAct_Eh^x7BSYUATB8gju1O z^qbuAc$-f0z&Y`;zolT!WWoHuy^qCo4DzTxL3GN5k>3vHT3dVHK&8K8aq~` zJ7J0bpCO9Gc5C-dWKGv}GKNoj^v$a-SD+DY6x$3u$VHt)-;AYL;MURU6|_;Qt!7osH}SxEoRievPv$Y&vR4bepuGe-wwe z;RQyFXBlRW_xD>h8`MaEmPYaETThqaL!HGocdY~M7nT>@yL#zVgUY{MR-&BLoLR>q zefy3qfK)=h*2ZL5({>yMuil{YLMx)-yA9k5zhJx{FT*Vn7oJ00L9ka=7_3By>^X<8ew#YeeXUB)6 zG4u>5{WyN*l3(m|YFWQ{K1u0>Fg=^kVtgAl#6p3pe zO$Em*F$~v{`7t!6eYK9ta8zV|s0#g=PdqI{!`f0v^vQuAn?~n=wV2BeV~dV+FRL#l z*kViBg>5fTiX3_?2c299pOPu@TeR^LpJ+r(Oc4dt7ze^Gy-j+JEZK9F$j=Qzi=Ax! zBrGa-E8j|I2Fl{#$#z6n|tb-v5y`dz%!gv1f?Nx*IRb zSb^j_Sv1h}WBk}>a4R|0+dO5^xc}jN@ED&lXf(wTm?d7YI}3>l##i#bzoG zVyDlzqYOsfnNPyQ=PcxN5sEDKWE=wJ6f_mxy5k{=hYJlq<~TA|_Orb5EjKH1c%t z!?Ome9Sr`3@k;vLP(nrv=vR;_hCc2bu6(`_gwP>|^&R?Klq5{L3|vbVu12d|agWh(Nk zM9SI?MaVB7Q|2E+PxAuQMXQyE7vS+>G1$9bwUol|UAL@j+%&2H6;(N5^7Bd9*w`9B znDn2kMS2HZNaei~%;}-{+3dwdvursy7WF&sHECPm&kMeOg%J7K;Zwkdeuw9tS;g-$#uPxw3Qp{8Pl-PLC?*crD7o zzU&l5|8C9f6v1Go#YiDVQxm+B@;?O#um3Jq2f}#(Uc;GUVVmMAy_uyH zHQ_pxUHlH;q!ebm$R$iB&?)FG;*<}QFNsmHun64R;*2DXiBv6~)fC0YL7VDF_ys|| zzsfych(98zmq2ft8MoYO#6X$g4Q{{7_tLZGnNRVTs(y;~{iO_QSC!&2 zbZlfxu2XL%T%>JWY|-t}><2cs*1Bh%iB?ZMG@V`FiYa9frW=T5{S0;=q~vg5e2F*F zNB%$vbG#H0;2%A*RYCB+1Ke2@wlvuyb+Q=sOy?#m?UtKw&?zo zOO8Uq0=F*#QZpV!Gj-&qCsi4IYX>4Lbw>hTNN)_R=9oD!U@L2#!b^lHvMGCX^Bu3k zHeP4)22SZj|MYw_R-bN!q<9L0QJ*D|Es{~^Qqy=92fVDM zB*?u2<*ir}4fj>r$4~J`Y0drqt7a{R1>I$72w&uo+SKKVs9CD|CSvS|-03-dn75&$URp}JI%-BD z=-m_P#JM+-;do5jsJOH2&351CTT|$+RQz$Gs_VhvpFbuBYRU&l=LZULxC*Wb$P%&W zd55GsWlUZ@E?G>l~Pa6?)16scY|Wv8hTy2l>D{in>XuT5P{Qu#2kCTWnGRPiwZP*Bv7A_l9I6OlDwXE6%ip(;EJvV*I=o z!BPYhr=CSv4eboi;Se+Le@5;&t{ULLR0>&g-!@hqpALXOA&U>m<|?jKQi^$owIQ35 z({PohQDnkKggQp9K~gMFa;2WK#<*WIAG}Yw2vnZ;Wx8JWDo$h9Y5dJ_W08PjX=zrq zlAHCzN_T4AaMBL^DJ^RCQ~a{rzyD)jyhU9Y%{1@A?5=RZJCac7=7@LScT+p>Oc~Bj z8c+kQa$a&F!A{MGfFUMU?YiJEGA?Q$?Vo<7j&=`p6cyja_QLe2Zeu;DY@>)8j5m;qiNB*1zEMjdHrZ~h*u~cJCm%(+8QPsJO3{W(SIPiY1{n5$ ze@U?+-|1gLS0ihct4+l^)LT4sQ>}T5Tu+wbkO?{^HXVwC=Cq@|ZCyux*0mEu$#Zqs z+BdmPi^;LCNVEAfv5hEphL~-$-QT+x$Tmgzt1SG!ilLEvd_ra@mQkdMJQ$)9WMNB? zJ^(#qem5E)Nt26yzjxO(8#dh@KL0%op|;QzH{!D96o!eHvGN2H zEqt4CUl@1+QMbJ4x&wrBJ2~x7Vrcchv;ifCW7tso*@OUW{ab%x@82GO5AS!89~?34 za{9NbT}@X!9Iv4d6Som$jBd}JQ_x%@WztfJrx7aN&pYMI$);v&?aTwWqdu3MVRTl5 zz9(^zLk;YbXYA4a^w#tp1h1OI_ajB)8W7wPxOin00=T&X7p)QPL|LOgQ$Nw0>)2W{V>nlb7Eo+BkQ6BqL2h%2Gc9W5rtMOj zxYu)(K75x}ufq`D0q}~WKC7q8wipaE#zIfLH62m*xEd6@)uScC*)EFTx;Va*r^p<> zqbn_GL-?i?7*>`maT}ormH8&6_BhL?dMSRvziU#Ze(X-~W3e?K#jb5u1j5J`nA=Rd zk+{v--8#rZz&q_Wj(X>gG33oxVq|+XWWuO6dw@Aq7i6#9pf&R1UjTQr?yPJkeVwtC z#$~4Uv}%`$>2t**Uc@2T?T0Mqgj(usBqrz0K6J*z)%#0BXX9nahq_7Q)H|UpFUL!< z`i08Wr}9GaN6ih| zoR5ooCrcRXMmCI}UyCiwrmmOt$mXcKDDZnli$bqK(U1sqi!CzKkQXlROCJ+#vuqpA zonr8lOozBT$iqcDN0B_XcKhU4DMV!RSFj;Q<{#d2&7I<4TD*!b)o5*|GK{a0H<(Yi z?1+o7W?os6wlhn;lbVdDMATOAZoY8AYo6kdgT^%r{<#TLT07294G9x>@S-)v7A1LE zS7CYEepZ#i;lGw%hlbQTX*EO?;7MBjYbs2Yo@i;ig$NlPuIF92RC#{M@M%&)M znri|!e7GstG&Q{p;DUZz+%}kR2#b;xrd4Y6$*u5H)WY{a>JP5=pP&|gK)b4Wf`y0H zNWny5D*4-p!hmTeDAo?kGQ+92?W8`jfHf}V64=HqKFlIcj4Z-a{h7;KJal*g8yh|l zkJh)xU&7d5H(Qi^JW1Qkouv!OQ?!W^%h#h#?JLX0We@Ag*YGLPwAIV-i~I0>Ld@|~ z{IM&&Zx>gy7R9EcnbKcN8E$WGK8)VX;=*pBr+Lvt#*^?j<|^||>#cES;=bjTxm3q& zoY003{>-gEAAb+4ccnB8Z{l1lzK0=SwoqhGYCoAU>>jAl2Cjn;r97k?MFt_RWPPqPc8fx2}j_q|&O)D&B z=!?hGhQyx*R=DO6Pz7WZ^7ovh*n?C0L=u6-+`j;Bh4#^~t%~#B!-jYgM?B(jdxaSv z>(oDS#oIJ@myL+duh_e>&selKE0+W!Q9(hQ3|E5w{#eT`0X z8<(+}+mj+wBn;xj7W><@ArpggZWixTE^QH2JjiEZjYpaM)sNATRd?bauOrzYdbc_Z zV?L^>h3%v$6H6kGnZLs0LcsdD-X?cQ=EFd=lWl`pFO;&!1)uu7ub`W3yg7V^)h|>M z)6VX%VsCThvxrJF<=J9C^W+AC>m==n9qJ-=xDj|dHYXSRY|_PsyHMX3!Hkc5S%i%h zm$34`BMXmLAlbzHCQ-8DDPGv2j+m$JH45yxnNi)?J8vb+Ikb5nhCHvlpU;(|jp4+x zhQVT@j#~WGlDpvx)3;WPyurBwetszmAb-nMGx)mevWA$+I4hzh)AuGmk*m}^u(b4c z`AO{zXnOOYo6almKmc^ku=D`8;hq*=&2L?2o(cV3sVd2F0=jI4LUU4 z+;q5ea&DO|jQlaNPs>7o85UV$T&#|p)mFbj+khCFYVIzeQ`eCcRUGM|Aj4U&-|r1X zGZmG$Lu@-~P6oPjr>K)*Ic)IcSc{E}h*3gmn1PSHPGb*~6?gmT@1O_yA*JvG58-t< zO_yfj34HQaCc`%i3lCxO35r4~hgL|`6i;5HDa#RxMRKv&T$p=1oSiTk4haQl_=SnR zfNMs5%ruVuWtb`XHKR)0L1zg`DYnk-uoPT+@7#4I;`A)?&BC2aCbrJR(t&TSe8%lP z2Y%u-HnzH&mo_%c5p0Y5c+nrUuBjxEEChIY5_nGspgQq@?xYx@VP zvy)icJS^*bh5{FGMp9gd#CU{crir(&7yiX1Nzzcg$|%FLpb_=6J2{g_)*U`PswF>?m88P z<_p4;BW49Js?C1HGQ$NBo5_?axZ&^_R=-Z!g;qpPudKpt83Au22~9toH1YE`E)v$R`2I!2kK>$->JtWs*GENjd`t}KI>e^g zk$1-(mRUYn#zS7k$+m%DzgPrO(#Mme48|%Qu-iR7>SZRDDz}M5zibkB);T0?T|8Wd z)eo`0oGpkfx`^b)dQVB9(qQphv9ka}uL;<_Y`Mo#_UN{qJVZgXbSlLa``@Db#PxlLbdJEXT3a>JOst>%-O2@%z-$=Aw0Q&qdLg2$MEU6ueDF)Y4ez z@2Q{J1Y1m>q-1cyk!nJ>N(SW%Qpiy~jL3bRM&VTbGQC1ZRNvN~5fj(c`;Ah~5mCTp zF#{gxT5!;8-`}%L(=B=+yJD{H<3HEdlqB{gxJ-Q^{O}@04s3A*ZmbhuT<*0mG3STz z!6$ya3NM`Uy#vi^iGd#M7L`WB6)53=Q_^5&v#gDZ}sBp z%wGLLd_ppNxKKvJjf>jTBDiIGvaqtGk=V=tWErCtQlXx##X#CJ{5vEOi zadvH~hsYNv9A|x3KSh&qb!M)(4W4m#`l3PU36waUrt=_;mTq=sk%r;K-9;0##qb!mAm* zhEov*_cQTlS87H5q1p?mh^O76pJAw2{T_XSq2hHCsAZHw(OBa1slf>?;l8#+lVNVf zT;d=cL-z^B%*b~AvxEv6LfzLNN7;f%7dl+-% zh*Kcd`2}d->~r4ws+wRE_rp%9=9svY_)ywTS?L6&v1G-JBP*#m7w=foeaWTgP7&&z zbfAT5ikUH&2-+4rggel+JXN-t-1KlMR_|=w2UV}rI9@a6mwZy5>_sh)o7k;xQMl;> z(Hz@-Vl>R```r1ZWoA`eno@ttKX$y-M6N$8Q(>qX_|#yP_Wqw>0}mRX;KY}oubgDQD6d5%}M!8 z*kgh5+@>qB94;F%xnvr=0ro>E|7KrF(zizxe+u;3WUh5gFnged}v zaPj5d$G~-sEdrF~TyJW}h0|@nrSXN=G=()>&;$~lK1JTt+SAW}539>AE~G{&LZ2g~ zt=OicWTVs%lG+LjP54$x^g0W-jU}Cd1^jL8sGueewFn;wi>rTmD6M`>FrVJja60S6 zmEL{Bj&GoRK_5(i@Z;6_-xFF7%ScudN#bh zf#JzXuJAN>BD|n%yXuAj!Dg9?@lZ9L(gh@K&v7Hg>ThDSey4dGrhi-a1E2^9sizk zlX%0EcpUC+s=taN03W_#$NSURT&C?F)|JS*T%y@_LH-Q9riA+P9hGcoGbOd@+#yE8 zXDf0Y9is>YX6$dd;7|oCF26$(aq;R!?PX^?vBUE}K6!%lt-+rPgK4Xf-lzDJ{zX3}gQK428wYS#39%|x$(x$&7bJQ}hVZAsPM%vh{n5D60BFT3r+sfYgT?ZQEkNK6>X5?b^{x zc+QOCyu#wL8L|_@Y=t~iIkN{z6hgZgJ+vWR*@2)_>Dfu05mzJ(?)RTFT2gf_-EA{J zRv3~)3G3zSoCz?{&8Py{2X3D*P1`(_RS*U)1Kx9oPBo6^vdqg6bF%{bmm z{KY~`G8+_zVvF6-HQV|LnhcVCM)S*O#JyFGR+MG$y2H@&=`e!Qj8X4NclA8}z3K zd*92rIyOW5Ddi$QV_oo|I%%+|o4g{?0?PK{KIOc+3FT?fMJ=m7JEZ`8Dny)ghBhzz zC)60Zwhb!h=VUcbk`{3LfZY!3d_-$YOfzeD^hL<;zV?NdL@)*G*o3-`nT-Q#`$B~a zdq9HA8RUa6_bsK>PgH$}+U5R3cVeEp9fFTg0xv`57V)oyHsTXHmfa-wqSV^m#k=U# zm_<&tjC4AYQX0$?9k;_0rXR@Ls;^+**T$WAh*Jz-KXz+Q65I9Y)%v8SfjgNSFPny! z)L>By$K2h8U)VfVNC2<*CT7ymW;!=EM6=M<6nrSfxb3`BZsvbAhhm*moWGrpgLcuT%l;jI8D6+PJ zOql$N4;P(-k`)@@?3PcUDVpHCY_Qy~6Z7y~_{FrwM@g8t>!^6yV1exu3|PD9fghr_ zX$;HWr#V7qxJw<^+;YO!jiY2QerM2l^bpe>_g^;GU-2LI-HZT3ZF;$Lez1zq>D)X# z!d6Cm)>27DB>I;Cs7@Hvf-{^J^#8(+&7k5u!U#nUDFzjj3Xa1sY<94HaYYW-4=6G) zYbv|+xm92FfNI`~MBj%j_T@{%8#7O7@#VS0ge}(qE@NBsQn-ja!Q8f6wR0jzHU*~mlv^{$O~&C7=M56;u)fP7#J+tMrG zxOmsV9c~5;k=%5KVzKK_S#4#D$O+XpfM4VpEQty7$o!dfao3>rh|?11nfvuc9J|`$ zZ!F1I(w&;;sV1i2Cs)=%B?(JH2D3}R6S0TM*EIS7PP-xnze7{U#v(4Lw}#F}CaC)w zwkBW4bmox@;{z5^Hrp%f(hqhbq0K`QjagTWl_uuE+BVysop>6moD#B|R<=Q>Vc8;@ zU2tMxst}&oiMyBS7;dYh_abb%mV)3DW>M){=6inupCY+IDJl!U!BJt}jmvPt9U>o| z=4~8wO_x%YRB8-H5aOKJ!N#Gcqvf*?x7~TlRH`@o0b8)IJW13kez~V>o}<{XjftYm z@C>u=YEIj5e3LFN8x7p4d0MFaeoJvt|6S_ps@rpW?m+{`CHvKYwu6t-XNv-Zu~d7k zCmn8sg;2N=6&B=dgct1b0`g z50lgMA#F{sE=s*VSX!t;rLegX2hB}czCseW;9L~S+}3W`c@eFeTsFbrl�Wpm^+K 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

cm=l5Dmc(T!cjGQAiP#mz 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

-*QRi*Z(-$+ReANV5r{*fWym-NC&ffRud& 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

C} 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

PFl?q8us?`Qr8LKLfP%FEI- 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%0A7_~RW)z} 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�r3uHbvXxdJIWsH?J&lN`PYSo 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�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

oP5D{eB1j2Qhd%QJLfx=*vh(l#59x)|1m z8}n{4>yN2>+AWA(>NIo;NgsGs9ex^_Jw+zWv!-JXO70wXy~flAP{wl|=A*kK6#NvJ zdpZ36v?HV1&)T0l7${6FaC&g?+O-?Ikp$kF8GU5J+?9^kZu=fBG!vZ$>l8ZDB?5mI zq}|5H>UOSl!!&Ok=S$sFWYq@l3c$*vo%R%`12R3t@WL$yEEARB=p z@GmwMqmN{9#NKIYFe@fu4{r=ZVZlE#(*{mIEL5`05@FCVFl}A#uVP>aDWcL6Vqm5=Ez>8 zrDEhY^kJ2BG@08e6XsGP9#v8IG#1Cqu-TZ2$c<05PmpNXsFYQhgOK>JOeklXLxrxg z)P`ahg7gZRi!orK9&*0XRrvpzdNvd0)=adwpwQaa(b@*5$|(i1-puseOl2)mHyu~_ zrxe?2``ypv2*Y{-6wP48v+bpR*;kxPYEYPenfZ7o%)ObogG0MEy98DgExiu3v$t&|> zq%1=&6Ei-Xofs6HlUI}kJV&n;kdpUYp;XX3BV>Mh8R!lw47?U|DE|+lTjRto#57Q`H79dm)gz%o1#ZAr;DLsXSOS>gbd3NI zdulp~Q;`W%IvL-=+}uQMVcEh)nc|i`=Soqu!+`98mWTaVU0J?YUkpBONrW@k9O1k` zGh$vT33u)*4k2h}xWTm75~;|9xs-}W7t}rcY!b4)jyI62=Hok^{P1T4Fwku5^khlT z6uY4YaxEJ}5c>&JSyVDsYc&kBH=7U}z#x~BL?$v}E@k2)H`I3y#XTdB?q~*9*$bU< z2LtOdM&qt0yzRl4seGYgQfRgw^BDHPj1ib2;3J1+(rRY}{iMt8I_fQt=dqbEw`Ss= z@`n5&ucljnoNa|Rcf33FFAzJOr#=GD%Gxiu5hEpQJ54x?!fboD`J_Z0^N zC+Na*Uz`S0gG#s5nQ-*Fw%x+?Q^kCSW%{%pNJrhO?W4!mkm!8;R%F6l%EW{EsksFd zIKp!uHBpBn^c>Dg4*FmkZDcJ;gSSwV#S#I2XxImUX2b}9xErnDSh%Lh4+1f;=}eI- zGGQ(y;!*i@&yfJqgN}6?Nc|WFl9-_k=&rIfU{VWQuwnlcnt52)(%v+4;+XBw;WH9S zrK`V%&S zSg=(SWzo$Vbv6WHELAESn6AVTRLS+W2g1kviL{NpY{V?8e(#$hlZ{N6yRz|G$lh}< z+)%S!zhSJDSZA}lJJ%pnyPojAx(%VaR3>OOzk;7wt+6EmAkkcKbbHb6clJqWs%-{w zlL>QcCi+|63guBWOS? zfgQC%U1_atW(SEu@qv9a4t23*1uPYj0(@r!af`djb?A?x1=UU`xASTqt4yz*33G2M z>RYO)L0w}SXZAn?jhcr^poan$N(qH;G%)QfHujiJ7ki(b4}!t$tBJE=OE_6s92r8v zZe~tJCd{p=m~SC|!Q!2;Pc-`weqN3ca`*Uql zLrsK8Bv%I3oWy+-^=u~0t(mw9i^i#U)n8Fq9$XhgMa96zGaB#OM#)&DARDr!jLC!$ z4zN1ysA|trAFfh%hZaiXzy~p7w3Z2TYbx$J6qGhd0YV{dRt09(c-rSm@g`pGVL;K_ z%8~G9G7>m=Cm5jJcAy*JJc2mDl4QW7q5Yqk1!lrr%Eb4TP~Uv@&S>t9@R!ObmF&^$ zf?r0e8rG;7E*=QQjeUjUzj9X%S5$#vB`C@gfu{ar11TRHG@R%0paa{#0 z+-@G+H4Kds?*!_>!!VZ;@n|Z`0PBtTm(D~pc5_8O6ClZBF%1K7cZbD$+ELghon#G) z)v^0nDGn%{?_MD;U&s{{j$DVPU)qWg9m>EnGhyENRJk+pFctT-6v(Ib8Zr`qn4z=* zSWoW+6_P<}ORx#Zz8G7Z%KL6Jf?_o4VcKZ3Nk3VkGw4w#R0n^e#Hq-Hxiu9xO+7|7 zsDAtUI!hc5zRp7^vlB$KQSgGSS(nNY+ITU7HmE}|nTku+1 z;44;$WP~4YjX1bI40C5D=34~OsBNLLki!pt(`zjiH$@>q_OqDO7s z+X2ZkV#T@~^)4OFo0=ZlIQE%$A`|9PA|AaH<1H)g(==!VP)1$L6K(O1m$>UGIB;OgmPN{agO6a%A4t{38VWQ=Kpvy5c5HNX19S-?aw0nb z9!{q7w`Xu3nJ{mBs>=<<-|n<;+25h%`b}DAN7<^*x5+aZ>RyyiVcK|B%Tf%;->eKm zh3goyI?ql&D!Fv zXem}aJ`|ZSms0WIb{cNkX0I?dppwS0gFdU;Og(gW=GL3~f1`sOQcQ(zCvKcP>}y}X z=Uv5Ije_aoU+yHetDR{Qjp0NhGGQ(y;?eDNPj|PF=kr1n@t9z3KxJ(!7IOJ5*7VM0 z&6Kp*gRN_vY)^x4=j0K6GU0+u*KBty8VBL=6yPQk=GIKy^G@(G;<)LZU>Sny70R;E z-Hu2{8-8l*lLBn1GqIh^Y)Q(Q7OCQeO^e390a)(v1-R6n73b!}naG5>D-$;tveV)R zIlnS0z*pzfn3OKH-QA!ICeE}SQ?YY_;EIdfdnyP^fms=N0az*6a9xgLX6QX;*ms#Q zm$LETsZi{{5&lwxN4$V_wqGd20fG*-29LZb;Dt2UYlB`81TXYfaOECGLOQnCir8UZ zjk!q8bJ5<8hLlK!Rg*XunJ{mBs)7yPEpyquv#SX2JH=)A8C7N=G)Cj)W(ChnW3T|QukEp_spsy6XvdLd@G%K%emMoY3Qf5bj?6wnIWTV z%5ac3BeF34%yup|gX;8-l3+my<7S_28U@yajMq}JZ8-_gOJ*9F33G2I-iUtbf?69z zEMt(6EKo;*i@#`x$;Y9upDS69wJvr+L4cxz6TEKBQ}8xu@=rVxV$y;tKK7fJDse$& z!o2aRE?-bL9tqY6WJGQFd7s%=utQMbkapmV-L z8k-9mXM|=qsEYv$y3R{h-ju}B49T@(a0b(+KOR-DL0rcW{zMyPR7XN z&<5po3C!~Assb~)8wc*7q^A;@$b`8o6MtLG-t$xtR-U=i*=+{XB(_Ie2wXD#qD$8? zYBUxqR6^DGcLeCLy@I2U{TQ;&))kcn#AE^tFPJ$OnJ`b94N&?W3R9!k26UX7!OJvp z;xZ+rj5g0(2+$PDhPX8~4~WdkEU<=?R!p(4HDp<)ot@6nX0nk9b154iX)TCAz57$( z%zNhJfrp$nuf)Kg#(kmDt`6IZU|?;obs|~Co{G`Z1IyL&v=4;(&WN%Kv6Z%hWr(wa zgqOIWGGQ(y;d>@fe|tgQ(p7{&KFdM1tPx01;ds8!E)Cp7E``3;bQJ5hCnnu&QNs+B zL2=u9GxYS1UrPg}=0s%ZjemrohO)jI=9Y z-|$3v0{zvX;slwc^O86cnJ~9zf*sQv@h`m-EIKNvdb3z2 z=V4RJv*iQ<;2P0-MCs&jYW&EuKC`19q1#N za@Y~RdQnb@N6dr~RaFO%OQ%ejTNBaW@=Q>jhJ(RFB!U)(Dpm;e`n(kcczdRhmTJY; zMK#pO9Ddy_?l|ah9wb{3>!N<$cz2tXJARKdkqL7t6Ay~m=9Up4XFFx3pXst9KH8^ybjoqL=7c9 z^tYeiI+RGN$ip2~JEFWdiU!I>$0(?*i;? zC#!`S+2I-GRMskIT`sj9U9=R41TD0NzN#>qr5e5WHp`knarto{N@GjC2SPnWaU zR?ul2(N~O6XQxwCjs~}gmyokWZt#Xs2Qt2ioX5PgRAo}9I?#gtAg=M|K8OJ>T0_{u z%7h+u%w-tc9K}j({_^t{fZS8|V_pCEs_sOc$}Wh9%?!4G z0bpqRVa0*XwnnOnej)_%P_CS4cg-buDqsTRyMPrvDtxY-IOZW4qoX1q%iAo(0&e@j)RO=Eh0*nhT!WGPvk==!3<{` z-YRFXhB62ntY zKQ`wv4{gM~d!kMzdpMi|wH=4G#4=1$8^rB5Rq%l!;0&Ty>XV>uqmGXzU~6DL2JtJX zTm0`5R`5dLW5|JJ<~*kAPE=`l4Be0z(M82eMM6%m^>j!x1ElFMRDHT)eQ`FBK>TRO z#|eFgkZfRwkq=UG(wZ6*h2@+cV9sOeZbX%x=sS{2QB9cj?=hiJYc2k^x-}NUamuk` z!y;PpiU|i{JLtjd#)2R&%tE+=4(@8AnOPl=oX1q%i8@IvvG7}iJ`4G14#a^fo_G}N$aYePhU-HK^DC*3xZBs4Vj zqE21M`8vs{W|Ve0kEyy9buNk}k)b8LHq&xsd^JDAsaE9 z7%*Ma8RF%#z76h*;W6nZvzA|Ev2bUELLyls$tibsdw{8LebxXq=P?g$#J$3<&L=_M zooavqj!uIq&Za%e1(IkcHI=?~Y)xmePl9ZA6JuEy1k`@N;k;gS3JA>`V*^@YZse#( z=X>Fz+&0!=PSSoYUc3(CyKD34k?OD42skkT5^SQ z*wi(666y!KkAy0S>fG?-VR8?~(dr3|qnutx&SR?X1U~sY&wr?#I4q6UkFy(?01+6f z02|VmagO{`;I{z)N^OPXjuJ0!JTD4&b)&N~uC5JjM{G0DObWsoA4Se%-dU==a^lYE zG*ro)2(Dkc8v3sX&A!91CeA6YfON*;GS5X5u+&BnVT7o05}vaX0xy6n0zmYQNUc20 zPa3jxOLHDmb0d~2a&$blNL4OIH7w3T)YZ8JX`%2UAE5RQlc!P}al}>N&c4ZGW7FLb zyo0G#5D?MS8!pBR8DB)sV;^sB-KdDn>BQzd=AoUqb2c?q(3mSLJ5ElVycSY)WW^mC zhW=KFdVoWnf^bzMPxqXs>pdv>CN~n>G1~&Y86R3?#zT6XgwwP@YoXYj<7`N znmHX>w8302^=TwZbk2G=wG&Eri=`eA3HS8l8uVSxfTLyXM$Thu?Zz9+Yp8N@r%2Hw zdtx*$Ov!$KhZ)~4K1L@jxAVQ!PFQu2{TcgLQb3XusN`hmNC>OC)^o56*~{vpbM!F zVo)J{%NkQ;Jm#U@xR*xtRr08@NhG!$-+nzL6T>12PD9;>*Y%)TzU!Zs`Yy0%Sl^<% znowa{BG@SRfTi6jJpGa*cKT7#o7tfgIM2pb0ZSh zC+Lgu6)Jr}`O%^UdYZY&YRwjF%yzQmh0_96b3b7oF;TZSC{(-Y1MUMHa}LfU z=P@-mqDfU!DB6Erhv@}MZ#&-X-dD37;sxVHkbNR}U9KIN6!3#QmJx+%YR_RWylJDp zaA9eP5E9P#B+y{)KIWmFxOY`l`6Q6l6QxY9LW>j%21eV%z}er{klGzJQj7II&X~Vhu9`w9lN8W~@vf4Nvye(Jf#= zH#Nno3YJCt5%`)A-FF%BH-xV;&g*;4sMQ#6&KacUJf`YSRQV*3d)x$y--yc~-SvuJ ztX&`g*jVx>!%_^YY(C|Y`m*i>&dvOrAw3+6+tjWr^(_khIiT^J$JE-0AIiHbZ4XV@ zNk@>BtDWGW?2;hnN|r7>YmaNurYqJFOx;OpT)WXMRf!$STV2~AgL5oKFzTkJ&6(ik zJf{9`R4KMy+Ix%0aGMv6Q`+o45J)6daMTou)n7R&St_NS^n*uju(TxxU{^!7{8|zhZ6lmF1x4bei1Gk2Ep=Cv zYTep$GS?SH#*NX(Ed&QiBY^Sy$zfvOb1i0kH<2N{|4HOL=An(am&#W8B2G|!7RqQp zjwt$MJrZ099`7ls`NSzvpHg20$O64m$y!g*8YDB2XtRush6OLB7>s0z$mTqz>PECx zplFIWx>sg*O)H_Hbz_}Y01Qnj6gk>MZ7OzWGYZj~oJmm)VOc;X^!VSrs_^qIh@wHNn7|1?#&j8rT*5^Lkq=So;C}9XgP|})nhYJe)PTh z5QqgM(p=DiComw(Bs}pfvCN#uRNaUsRq2fz5t-WoD@!De@8Z@5>DQhEm2`v5k=mBJ zCkRK#RH4&DwV5Y^uY;c+jIKL^a>Ry4kOTL~c}&%Tm&}TtX(lwV7u=FVW-fdqoo5^0C_XW zVo~+i)ojYgnIjFD^O$#*Di5)Iubk+rV8;=IVE<^V;&Li z;DXj>TGj~BmKg$3vas`oe>v7`Ke}QXL+ttpWzsAFHRRO{8;$4(1SOZ{+|yAB9CAQt zIghEj6Ln6fgzC73*&H-K-W^eE5LT?X`Jy49IoFfXEcH#Kxo5cwNW#h9PDI;DH3w2c zgI^MT3~kEEVsjqz&`#Vrou(=S3Q@o6IIPYkV+pWs!u!d0(N1PJECJiS94=FLeLIrQ z>$ZiKN(< zK9%|;z%twU3<4ALc#08fitj$Z=Dg&w=Gw#&GCHvtkEyy7b!OSH%2cpogbL+iOce5D zP)>$8-L$6e;-p+Gbt2W#Y#K~Ah-G9uAETcolj55WroJ~_-(;Z*G9L5LPTV=1`YLTF zXk>KL=*dl#RA8Na4V}6UY8YIS_P$T0)F+|OPI(i~W{&ca+7~V7 z<~*kAMpP*#+9P1x&@}{qjIr_6^*gXpCt@ljm=3m(#jvqhcP<`8)Zhh#LV}h!ak?PU zKrb8sXhRP4Eax#bH)5{xMeuh#mC!mJw9Yg~MQJlb@Y6ME7F3Fjm2asp;#w7Pr%ogN zC^EHcD105KF>0G=daQ~U#IlS_BI7YNH)5;;C9u?5OVmSQ#y3Y(gz6;GN6>YVb87OR zl-dZ4d+cMPLSsv_nY_EE%0Sg-r;WhDE#QVZ85kA|(qy`L3DFi( z(D^#>TTp${Oki|Q#d=N>o~{oH1tDv_6qgY6J{k>EPEPWjFNJH^{cj@YF|W84&>Rd1 zknD`E!xS@m5T|YgsH(H-+R>?taqe1h=Y=7<8Hl~t?!dF$%%paLTa*c}*!PUB$azfF zt*Fxy*KbG%%|v<{u=+hs6Jj%NY|U%>9xyNXp4(QlO@ftt0=fC>u8A|+S;HxB>Q-HjAZd3YKS*YLlrK!q$Q+Dv&SPG1Cm3b-;R11^ z>TYrkdFig$!flHaB=e}wkhxSE%PxM0A2FL)uq;nRW9%XbH=Y#ODO^~$HAn0z=P?iM z#GS*buQE6#6gppn^yM@_)%~$01MLW0uaE;o)9r?0t&WB$K{S_WT7!_hdD4RP7@YF+ zLdxgG+GULfG17P8AI@S2#b6+yhdaAp)3WpD^IK#WK+@^+}L=8g|?v zfOO@&JHsc@(+lP+$%leKV^op%uZf(;JhT&cK8Yq(xhBqIHMdk}4P!V1M_c^7$YIUs zsEIhf8AY*g0vcI;EOT`nqVye3L*|CfZ8fq`B5)zpSh>FwIghEi6KxgMtz}a?1W5ei zdH}5-{b}G!P*rV?=*qQYvC%|tFo7I{yQ0yq&jGTKnwIpIYL8pXNqQ@X+?Df~hc@Ew z;Z!Au-CKSsNT1O20mMwuf1{X_NKIUFLJ*udTp^^>I)q%XS>Tj7)D!d%8ErE=);Y(D z9KanW2i1}Dn1^=a&f!#NfX&rW=@ta()S6{ZimYZmofrDDbd(KK=VG9aK<(jTLwg#J zQ)OgpN9Jn-!(@xZ|6rh9n{hVfJm#T|xc5oa(LY{VGj?c(F$mBY+w z-M3<(j&nBc5dVrfpqfJfI0Io9lyg`V0I_XW`!DA)Rd-^p(i2bIs|SD%1B0-M1*fq( znh^%u#B8Q(>&tP8Y`Tltw6u{nLz~H*<}LVq)4~4W5D;h1lqlyhFSrvcegr~K=rW?6 zp45|(qjmpiFL7<*-@IX36}l#Z@ICRVauI=sU+65#IxbZdmZwz)YnYdV>d1M_LpyQj zngE@D=kX5#V$*3-K*0t`nA{S;k%@8)QjvSEbDvw%y2b7Z=z-}BrG47&7{?xsr4g4! ze{n35FlcgR+!HyEd1tB00AlOh69nd_33nnK1(V_$Ar${Q#4;IMk1V|ix|aGTrY=m= z;Ms=BwM`~7q>TL311kVhUw3xMfhOlXrs_`AQBy`A8fVqCouHN3hs?~>7~kNA&Kz?1 zpOSMebUN+xzK?HiwB1Bn4TOhSL69C{NX`x8l2Ad$H<9z0T08NBL_wAL1YJ^>0^V-} z<0990LX8vO98$}41Tb2bt=MkBP=@NGTYI5#w}Z4v4noX^sgt?j-1Clv=eu3?WsyLRw&Nx7%iY7QF_Ng)CYn?+UfB#kRQ|87lS(;`%3;) zr}qd3wr+~b<(jpi0B%;v0d7%F<0@R~=n(0sIEC~d^a%75Me{&r?xwXzqo#40=X??wk9lY(?tBu2HQssrLy7D( zVMo&$2e+^~C@Wx?BnuGjIH{<=i2sx;v)8E|HWTdqu-7efbi;E6H(Be=k2=_M<#e9d zcHVu=J4;n2k*#x0C~tR@BGT(2RyiGz7JZuZJyp+azh&GK4udnFELiyn4n) zllRd4*Li-SMCas-VP9H}DM__owQLR~B7+pD*own;bfPSJ1U^zy& z@d}JA;YY=b4%CuY+GRZEp`Ez%Ni0>mfa+_A4##!slo9BkAbAEiF^1 z)~ezz*AU+eLUVCv0FNV5ob-kEQC5`kN#s1{p^f;3PvVE0qRJ4JlFv+&lnSF`iiCqE z)U_fu@a{l2;SFMHQR=3E>1jjK&R`HtBm8(|QMP1Wp?WTrJ>X5oZsa_s)^2>)@u>1$ zNRt)_vlYU|olV{Q4IryMqyd3n5*|~<4k#8yhw)tO1Pa+1uxJfH{l@|SbvhFR=N!&s z&SM_hi8}|>ScO+a*o-fVP7pM~%E$}e>Ec5XV+xh_x^s3amOM3^F~ww7M5))nXbvC= zAp~7Vo%qyWNye7(N#s1{p^f;31M2OQn5*=jPA8G1#_B)6E#9OhSX$P4dy(i>P{FjzVrNtS{|cPi^xx?w}z&* z9tRm;7=G(C3_8`b+_ThHoHQ3hb&!=BV9&-27b73eY6JE$7io`f&zTtIJm#IH%4>Pt zIi2cQ(nbwo!F4<~78E0Rc<@5sbVO4awNOzkb~+iA>a}b80zJjlj$A=%=_7!~wxF6k zDF~V0Z;a{Fzb({LBsE z^Sdb|It9g+(2i#^Lpk?#&SPqBgc0LAkALWFGDaIvCBm^r8zNzb-j-kkM;gPAK-pUk zSKuNN&Tfbk(Gn0-J8;@Us9-0dznmP3ubkdf&STzLsv>98SOptXKjsd<_IBZdgnPMh+uW+FdQ#4>=iY56~HEZz9 z#D%O<3;M67Yy4V6KF0@{FsCA>IBkK63;NRcl-? zE%6B;c8*)v+%{t)avoE2Bf2WR4x9-PShfSsZ^w5F9H|Z-U{xuLyF@jlifsgMiDsJJ zNL1db)4H9a8S6l_ITGmp;Qx}b5jl^kxe;oacOL&xF+sSdXUIavB)*GoMl~@z3nNBQ zw7HSp3e!TF)1{2|KQOo>p9`lE2U;Re%8G`L>=baGoL)!HW8PV+BE`f|<&y|2WR|Yl z53E4KQqH;r(+lmb5u-GY%Q5Zd1_F73!=y-hAp;Y|L?Sad)dVDka6s|rs72&FrshUe zn$~etJWL@R)kJ+v>jHK*seX?(Fytt==UR^Qm{jwj!#E?Akyv|kpoKzP0$!yxPCzSX zHgRS=rs__#RSu`4Z&{wIBa90U-B`#xGBzwaSOg!7Ym~x6sl$l^<~r>fD(XgC--pE7 zhD|ZgP~c38nKJ1oO&YZ1F@@a&6dIQh@9+U?Kn`vCs$f(Cmc-! zn^}Mwptev@adnThY$jC5g}T~!WMN`+9#eHEQk9<5y3DPqjim>!(I91giWHCK#YC~2 z*+WdsY6@N0E!JKih0DYwUL9dddvegzZVV9>+s?K=BX!DoOwFB`suU9>^^A{clBye& z5bPX{inOceX`Ri_cG3~Wt_jG(3#-^Lsxgcrrvl?P>cC^QTqhmp={R!cbvcizx)D{* zCXx^omcoqLVD2{WKzT%5H6VJ*a3(sVX;_UfEv0V;F1>XUkL1_W3_}Q~6-}iPh z)6V!JavoE4BkIge3GkWYk4mdh{%cK#jG47!Lk}OtixWk;jez*%%cXAVjm+mB3BO^5 zX8SR-TeEaqld};SkEyv4{A%8L{6ke8uPm@K8b7Ek=KCEfl_TWf$YKVCh3a}aDmHRN zuag+oM4%j)*pf7@a3|ujx~aC{JZ9`f&STzLsv=cg(^Q#EkPK&Q5Td;sLe~+dvn}Af zEHhEKxtL|2#p>(c2QgmSetUpD-}vyD;BZg0)i|ipQrUClopK&ib0?N6wZyh+@AZZ? z2?!~CK=5&cTjIc8PaTMMEq6;`mm0&O1Z=^-pQ$2z$LtF{6}+2-Vafs~XFR6nMl?;8 zYr;1WV<2G)^#w%lkFjkvpAJS4JFDz-E>=sh0vorL>L1eyS5ohUVso%S-s*Qa1q~;1 zK8c*i)ZB@&$}PboNJ~SyG`OEl&1fw(2y8Cxjx8@b@M36_UrPMfZ+?G$^X>2c<(u{R z>f7V``+xp#|M+*m@vQz>=0&SXS>1f6hPt!M~qBdAz~lp!!$tVDW@_15p!llG*|-?(7)^ zhwlN~e|`M__vf$w@VoQ(fBMyb|LfoUtUs+^`>{WH{>WT;z}!LMQ9vBDqYbSklmvv* zW{ezju)nVSU!MQZhi89%eSIGPw*9Yj|I@GDZoQo4eJC*h_1E36n$&#twyXEU@VlS& zqdk1XhPfN!P;nS# z8?9lpIL3}Q1{e$_!wRFfc@ca$3TXC0x{~CXx;SvH%TKT#SD^G58|FgCf|qjlo@rW~fe? z!~4`U2C$&-3HNZ!-=iXb@$|SdmbYAZ^mm8r9~&Mf+sUT}f7L;(_n?<90Dl`vM6zW# zW_|qUJ3VS&E-fBQ-{{pY9i)Mv;HMIzukht7=hE{4qRcuya+bGTcr^Dr*B=`nadD>$ zW4&v;(EBmrq<|~=*znS(<`g=A+tYuF<0B1ME35Hk&k6^OM#7tVufBFYM%rp({rj}+ zQ*IY}s@o*-Vm2ll>sI{}7Oj*dx6N`HJdMML&;R-4BWHQb#mD`!@MFW{QkZqgH?ms< zbd*qB8T~6&1G5Ia7>DVXcYGXZ(_%*Ad zGy-s&jEOK=&%E3;XL-woheq2w5Bt8+`myl=7|;!y&%+m^6xc|>t}7h??Hz`)syqJ& zU*7StvDw9Qm9itbLa)fqpsz#djkXx5BQ#dt@sYETbe@eJnWO>;~1$Q zY-lUpptC|E)0eWo-7%}9gUZxOlj7-W+uGR&2>76vqCb5}ai)WE1FbnIq%LHgn4IAP zXI(Ej%lpojenNcQSIhX=<70QJl9}RK-=lHB0>hdZElSh7W#Ex9A!9yYc+|dLRBc_a zF$^pl43`T6>%i<#<<67>dwwBT-u05Ryye0pqgDQ~@v)pH2#k}ZU^v-&N~(N*n`R1{ z<(TWCZ~c7nQM)xZ9ldsB6#D#;0~Z!-E9#+?WpJ90tzDPzHQ|1-_mQ)_<>KQ$W&C5q z1Mnkl4QRPhmg9r0M_BKfHqnZto2N|tK!xaw$W9qZHHUIe<31#T_DziN2E3hsV-PcJ zz}CFmC1-idg-3?e?#IT5nTxqgkkd#w$WCJhb{Gba3#HY_P}liyF}`0$d`vo}(Mu-l z7(p`V4Mlvce5Nrr2}eyI4t9RN_mQ)_<>F&0o}BK~1t7>MenjFy<#I<3Mkz<}ku*;u0|9ai&RVE_tzTYv5WE~0{w@f=tNxfe7wP_Tglr+H#=vXqz6bOC zVtC{%Z^7`m3q=0d@Hi-2bun`>rW76;AeKZk8PXE(cbR6cbxctY42l)e2TCI+jWJ~B`0^F!q04bnxw-_6I zfZ%_M+@p5qgCZr>Iea%07OS#D!5nOgM9V;_1l46`gZUS@%`cuFIm=rvJnkz>e{6WH zCQQJ(^mSGMUdpZXi)jqUEjuDcue&n$%R4=g!`B0ppY#wqEO})`?aFDME+Kc;y*uDa zvce;0dCP^zeedj#4G;P<3oM|4B=KIC3kVFo4T=(gv-{f0K;|zH^pQZeF%UVNh2Ts} ztO_d;KaJw>hJ7$=hh{d$GM2Yoc-$8){OItw)UQ}CaJAaTN|jdb;T%~=u`n_jX_n5tAYubAft?405$ zp=sK)#7IAQ{?8Y-d&cq>36FpM^>?7c;;5j*2hki%`noVUhNZIsrvbEcHa#~v89bfY?P^$eu|lQ| zkad3KEN{8+XzmNUeQbQBYirXG#%&9cFZ6ufAW(QpF%!qQiAY8Fgs7nE@xk!f$a=cL z)48>_0TMTu`2#`m3H^KE8<-UzIm=rxKJE(>d~AFWV%d(9=purE-iL7uKD5UA!n9_? zchft4!ns`S_*m$Gl4L!@d*i~6rSdXNO@J7IUU-5#Xs8e#OTzy$VR!=tO(Z^GJ?0y)7A|ze@+D@^ z7ap}Q7gSBIt)NoJVpz$=Bz&GEr!Ch|WdEZ-SZU;RPUUrXm$zJaG^zMp4zd3{7rX(VED{}>j|Ty_T|z{sy37#o=d1u+8|u|mhjMPcB6)b zv)N{z9vRD9E;@$0VmaUatRKzJ?vQO2uE!M)2PO(fNM+NZB}ZzI%?f8brKX_!PnUbt zp4xU=9E2y`D{pg`o&;Y*IS83|G>~gX12a=>+XzT=~IZmK|OQCk>`#a!+{XaJ<+`X)<5 z5hDwBPI-OxP~5n;yanSU-IWyi==j*?^~8)Lm7$#uV%mpuFk1S-!6&Rbp+cT7K5Abt zDz;_r**fWzk^v$f5{&&|t1ol6Y)x~unb%9k@|KK`yV^e=8y|q`1i^xCdpb$`gqOX= zNlKUu^M{7Zem!Ahy>@)`{o2f?lDBiW78h4YWvxXTcv}#wH`-=mkyG2|EN{8^n9GL; zuhMgulkRDhox($f5h3Y(7`mB;8qt$45K}mx*Fj#F1U1EDP%&qSalRhev;dtFxYYm1 z3y+NDEf^lfv(vWg0Bkun^p_Ns*sZ1qKMVd>1Mth#;d?yc*roRAagsWLDg}WF;R5an zCJlSY_n+zPlzE_qdEt?>yye29FFtpnx7REfQL6gTO-l6SR(u~yu-6nPE1l{mBxBc3 zP7iI1jG zzae(76*9{`dfIg3K0G0)uy%ZCjVAmS!UZM^lo3N<9~S85L&BuwI&m&}$w$uezO$vD zFn8(iDujObv+`SG)Mt$*0}6y7ND2mna3NQq6+$Oc5eIvFJzwoY5WitPNQ+~KkLA2} zvIEq=y3)AOA`hXb565O71uCRw%@To`-gG212DateLIQ=mVYh+@Ekq5nj*pz>eJDKs z?_W2+`HP;zZ+=TP@|}l$^6^2kvTetxSmHzB01~ZJDTpc`rVh)&YCKnDc{WNbl_FtoMI24eLe#^2AkPIH#`oh|)@zs<-aO&prS|F3L57|EqGG``WlaeU-^?Kw6#9kq z%GpchK?-x0w_JFP#gmVoq#B_U*xS=t%GUtAfdVrjDJns%Jq)3~K%ucKb$D@-k5hx4 z@rjI`nW;YNj)2@Y<8=H)gZbw#mz?D-7aqm$mWI<+3V~~_Q>kf-GN8mnWBvgS{gQ+oZ?2@y*<)Wi6KGcuOCf2ss2v`A$oue3bgdv$9wrXhau8EY!FGW4fL!J^K5~|~TzJgI zPmeLIs1`OwoHqf+79hH{AxlbXbTe z=q9*^fzmj&wWmXj)enz;-gv)}Z}^TEruTLU5C6uohm;hQa@OgQv%KZPqi^4N)+cwx zx`u@|W+1)~^KSl1cnl}uc^ts4-BtJ>8an?d^8Vx8J8IXpVcffKhWTT#D6bAFYDrql z%)YulEozudGDFVtzO$vD&=o7*^`NQv>*=3xj~z7RNH3Ct7}K!UEXrx(WK&lk71y{ z7j|Ubc7%)rL+BY&8=SD45;cvBSH<(?9us|!D{OfbnR+Y;iWU`Ivhy>B zhbjh#kf{gpohCiuOwNp*vNe3LS66lgZ3*#$Mm~z;aZdZrg#D58W7ISqs1)AjAgQl| zaV4YxbunaY}w2yjp$mKT*T7x36GE3ef5n!X&6Z(qz{~KDBi*(`+SzrY(x{gx--wXG-r9s zg+~Py7`jM0q;D-kov{^Ra3u|F9M#QWh6g>iC!EUFK0Qb@npPXqO41R-8U|u?K9sqX zVHl>a41n@9ESrqwEf*ehaky#M^#d}#7U2-Zi$NULoTO~>f$$;V;n6%{c+@U#u}NF2 z0)(uAj6A3#G@lJ|U^Fpv?3uJdUhgAkdCP@I@xCb`J~q_{m4X((wm(g8S$R-`X~$3) zAJw-{n0nNX4ha5P$2cmNFjWJx#M3|c60i>=V8Hlg%u`p-S>AHd(WK(eas&FpNEIna zU``L^ERi5a;Vxc|&|Bhy^n_%F+PTLxCPj)0ZX7q0{KS)hcmq22=8l<(pUlIDt(Bjz zY;%^kTzs^}Wj>m9X>sx`#K0&^XH4$lYK5?*y&u2aQ-YCehX?BpaLPDJ39cdPGkIxt zB0=Ql+bLLL>y>wWg5gnq?$V}~vvk-}ATR)oK?EsS zZax$8rX1&3$v}Yz*FeL zmdh*9$C=j_%URxX;V~4yT>7J*hCYnKE(U5?QDF?F`7!%1(9Qaef7tVdNA0dU9S`Cb z6U#6sYxu{@PYG%VBqmuGc1e34A}D8h%Y{c%-rHqdn-fvc{Nm6*?r}WykL9N5mFA-U zL(;&{7az5c4@sD&I_-uTG)j=5mky(cbu(1GyEqH;P+P`X*wOV09^i;uDR)V51dZ%IKlC8G149fzXIJw7s)w_JGi#XF}n%#TijbM)N9G@Z5Y ztT%X@$-F9W8-`I&$Y-b>9_`?GSmk6Wm9!ipGIYu;P16zP>r=XNZEZ7_w_JEk<->z6 zL4!C-q2SP1pA~e=O7vrQ&nD$<4;}M-r$_bHm>Z`vQ~G&fEz_-!%Jl zXsr65)c4i>*V?FdiQ{xBZ>pcOyzgx3CqTxUR6IVWeTXt{y)jKUw_VM$k@ivbk58xbGofOz5sjjtjR4b8SSK8`@_5Mu1?4Pn$@qBZS)YD<3?#*L z$FR^>*#}D`wQW$d4P-#ssekNG2q~-`9wSdDzdyvscrZU+t~UyhJY);AEMF4DWmfGn zXDshKTly)-NAbbj40#IzgTR0qXR^>@Q!WN`bD(esYK_Y?djHhUJ}{53btGYV?VFKy zsLlt1PSt+`6gC&%+q}~wXL$>TM_Zh$->@l_fQ+FJ4K=2cfk=iaYysI_Fx$rU_xWy@ z+VL?kL26*4d?w;!3$91%#&Ewej|o!(`r28?N6zvVjE~}-v92?^4n<^$O259&pyY#p z7!)pzK6!d`J>l(AJ3Js^@Ma`pB!QOOPW8jZtAb%sFkZ(v&GVjDyyPrz!SLvcPj1Oo zF5{cF*vP|#gazz+0zVyHEzR78#`+T;AGNcOv)%YG&@ABjv)>S}dY#kR@!Dc}I7qld z<=MOBEN{8^=!(}avsKUs0`wr^ps}vSzG$i6nuY&!w;{niV`IJcVEg@JgRf z3a0k;(uZa?z%4U*v<3#QZ>US0^(mBb!M6=$v$Btz!TEz=&(-l`KvIm(pG*@7eVMUdO{;Ca5uB)U5F6GM2Yoc$7~* z8XcfSK|AajaKc=yY_X{~8t@OMwk9#_6DFs%2QMo!CHZ!pF?}H-?i{g?Hzmt;hMW>E zs+p|t$XVWU;V~7zT(ISq^_+Xk;W3w+)h^(bJ{ERa&}5tW)bM4CTjt0;x-fT1R%2@{3Kyhi?Vj** zshykBf*`v?T?~}a$U$uv%&3cv$2m0@e`vkayzt0a-g4n#sQk{uKDn{pAugYA^VFDam^w3uuFd1>=Pd6# zTly)D^`?A$oVbBAMic>0{hy#kDd2*ajYik1{HJG>f?=lFr8w*MF%(%Ff(!FOy7ve- z6)i2ugb$DZkCKv_J*H_FkJbbu5~S?E-lWEk#s8k-cF9amGnThVeEd~Ps(gSXgWG6+ zv?;XcHvOQjr7U$_XWCEX^m%_m)Ozg$gy!77bee_7+>tI|2KAkHMK_;9FkKn~dFFCm z#_|>kkT)qQGm>{6_URYQMFuxa!8csvXnvqaC0EU$gUXFyPxJJI7fkKm>3CqrwNdW( zi?PG%Sl#BHumhC#vW#RP%?p_VVa77{=y|sCh+nnVs7#^wkviU z61X5#7d%2kIgEWSd`}2Ft=$|Wk;Kb|oyjz|kT6$+Ifvo_tKDooZs(-^kyXFsEN{8^ zDBe09hIJ$zMa|+MwAL?DR0t4)LDD{az>f0Y6DA+kFBh1Xi^tyWNC?@W$WUVqULno& zv5}X6wC9~3Im=rvI-0gPWey*zWkfLePN-Xm2a}g%upcga+sGWcpPsOHT01`6tNvlR zHw21*m_a^r$%&hM4q-oMdCSGeSiE)_w_&A#i#teQSV;?h3pK_9deL!T zflk4to-g^R9UdKCN1B3cyYYhtZJ_fhgU5*K_{up`ELmQ7WGrvF@R-Vn2eRPKXHOR9 zV|goWSq_p)?zY}oj(1e^gj!Oy!$WIhGP5Rv5@4VZuDo5RF31566qt3zZeH&cE%om5 zmJ5&aV|`7JcH7W?LSc>fAoT4Pj=wAC9|m*#N#yeRPLJBDX|dK=&hnNEkD)jtidP9M zB&td489?=oBn+i!_#l2!*n=an(I-q?D+|WENfpbhzlnroXw{~eV@x7 zOU4yfY(`HfhO+K7gtBsvoaHSS9$oRi2hC3K?DgCk?`{cIzWiXIBbYq?5 z(9)8Mt%;iDGNHmO)EmtypD#XYCm(Mf4-^0A4O~6s=LuO3Y+Xm1=_>>Ejx$GAeB>zoHue!3`|?4y}>DOpbABWHQbg~w97vfVWXmjDs^t(7i2wZ`?}Y%*b_lQ?Bp(LSM+ zRQ23cc$UfSg+q#b5O`+k(uZV2tME|60Pc_MU5KweAs(pq<-&UaNL}s$bjtO3V8}?-f-X$ca|?%p zS-2wQoE|yLTP{47;+M;MrR7@a@ip>LeGggba>PuIYm_ybDLOnM8>)6&>|8py(%GlN zaZvB{oVlrKoBB%=@?(waHZMFfmbYAZw8e!SV2)|xgqlT5FbU8lrgM>~gNvmGhRj_5 z`PyQ&!(&<(YzetXJA)La(ae&Onr~<}iy;%l^EZ#pkh8qy!h?#yI}iKht~$jVW?}k1 zyvW@y^wl7;seQ25Yqfy3!F}`P#Ycz&L7WCh4%&h3jVop|$=-q2c{i*h?p)UKk+Zz- zZ0RR-)y>)8dDth%hp9bF`h<^8GfK`u?-b_c!Yk@8f+tk8`RqNNl0)sO917Tmg>F{a zV*f0GhCwKN<<`S!)8nTz{sm6uX8lq#g*n`AF0Bs=edj>Wfo}ta2SqQ(@Vw(AV|mMk zM_0ahNl^QJ6tfd=mmbU%)Ks9HKp)#MP~-a|HMD~wI4bG7anxKl!=)od;FDq>0M!!b zYF_KZ(Dv@~mJ5%$_|TT%?YQ*gbQ^JNWB$amqKmVX^Dj;mOTz65$u6~9A2P3_BOiX- zgV+HPgR~z?ABj6dYudmDI4?YMmbYAZ6em(jJPyXbm#QtOF0FKIW|qzjh)yzNY-h(8 zSlS*af_uLb;5U52Nf#${0B{*X&f&PmI6<=RmYn4+7adLUne8@&0|V3xa;>49VS~eC zXl`xS_hU<_aHAytbd^i(&W9y%NL*CK!oGu|X=J99*m%82-bb!#WW{qTmz?D-7amLT z#s|yiff}LaU|IRy! z%qyK}GdWC`PPD9q=!Ugd-49PV(XV~Cbfg*~JK(bM!)|j6XUc03aO}K>ZS61Yk0UGf z$XVWU;n5YJ==%)dZ9(Sf&ILf7j0Isa{SPC`W(SU1wkMpq)DDjU%_p_4*rW5kn89^# z4G$w*=JLepmKH)gCo|1i-g4nF6%P--*ON7XCY*ytiS~EXFy!PaGh=VTLiiVeN7nL>(7pOX4ugn0(CONked6gZG2vvTO!)X`r%(-hfE?ge3jiZ81Fj)sUfs z$tF>F#@{9&^+1j}P1lYvOy2F1v%Cevqj=xrk6oVaV9xRu43FYnQ$&V#-_f5K5y(CGQn+uS z#~iQYz|vzs#xGDHXgCZiIfY5V%(7SW7r0Yn%f4@vwJqXlCfp-udCP@IR~#*Nbq5sk z<+uQV@&`$+ZFuX0bbDj!((cz25}|6RrWDpD{yrgni;zC9TBl1xWNU0SKEUfX*4SCO zN6zw=3y-PzNKVt3o(X;VbEEr0(3ASy8n9CW4hIVMrBnEPBe~jb(~b$YIrefxA=Ldi z<)_@$g4xh)0r+4}nU{OyEN{8+n2YBg*MKNEQg)^E;bY;`pf7fqQns8tKGOrh zo~UXDdW&76p2SY%X=-{w&1;rk8V2M~y51k9yuY*?W{cZ)i0T%}R=1FACkI0bbcg}<@lc%4tyye1Ucqlyn{Oz~r@Bj2KU;pmw zKYjJ>asB;2|F?hqyWfoS0DwJ_!(rcy?*kdsMkz-(X;ZljTpB(&K7RC=U;X}@Z-2M` z_Sfrg|9t)*=!M_?rvLT5|BL_ppT6?XKkQ%s?(ctIuPx_g9$L*mtbh9LSJyY+e)X@v z?tVr7=Bt1C`uFEo^IfdOU*7uP{&0S~{^{#)e!u?qZ5e;{;eYV&=XXo{?fJ)V{`~EJ z{^Q^Mm)|I@1Q;Hb`KJ}0!zOorlS*ZsnEESmy8IxK`S7tn`8ogdfB)fp+ruCKAep0} z)~DHGT6E23XvY)+CB&T%=pA0(-v{+icj~Qw@wPWV-oGCLg=yMkif^>9zl3%?8DbwR zVr zAO&0$x$(UvdyL3Jw%nQ3?W4Q>1%hRTG$a-z712Z_FvV7^zvvjch`M#+`NBUdFIWnk zDmgDxHdx+HmHzHw{Yapk!+fny?wb#LzYPHL@XpFd317!I=GdJrFAykZmN?ll$<;Sw z8m_KU_;b)Q-Cf8}wS;s&TcG5;Ooc$1?$!j41d1+85U+fSqbz5qOU+@}u>vE0=)nG=BDg;VXHBcl7 zOd+HXA@FuPTJ$vLx+D^rI1iv(!+yR(poDbJHW5;G$p9}a1ogE|^AKbtU|o;N{XsYW zy*#DB)syow6$0hHx$q+=itreZK~ruI0|5LQo$Q#25%t!t98c5sSIAMIFTt5P;37h- z)G(Zm6Vwd3$DT1v$Q@iCkg47almZED&dXE?lnf`xMI~Wlv}Nsbd0C zLtJ;A{TibwpSaPiQ5+Kk$UIRBBq4AWa$gzlkz-|QI7W6mR5{nX8_y98 zayg3bRcZzbVY@E)3)DVP0tbbE-RcziNy|%^O_?4o$Jhosi>1y7;Q05Bl>*U{^D240|>Ti(vR^pG?!n^A!Rm z;cyh?bf;PBA zoSMFyXFfI{h3|(kxhL0uz|;qEVxzJ`GV*jf4j|DI^JOLLwSgPBeqdAbPLu*ga?ZGKYvO)P6mW6aQy(q1gXQ1=Nt@{m2VE3eY_B1^Ny7QEtQ;?sSqe_Rmj1% zs4Y1zqSXTGbB)6xnpZdvI4EjKl(e>2z^5E$Rdl|M1=B1a-Yz$;~x?4#^}?EU`SW<3CB`)lm7+4H_JqFn_=-Ox-1{ixhh6V&da>Br+Kn3KM#4U94UxI zlq+KNx-gg{2GfyqfEWu4#?S+nD!#&qa3ET|hHo{~vk;^pi$0wpj^#U;IGta8$^;!0 zsD5%@rbeXPH~)F$Olg*MQIKk!DMqpCOHH@sK%+aZZJVcV=Nk0_XG&7}TnC`up+5>i z!NUjqjVSnhPK=FMlYFS#`resRAWg}6nF^6oH%-|&+D>#}_){tt@Lmk=Tf-B6Q5(UB z>uSyq`Gn6{_>lOC-rIg_43CKng1+&XG*Ip}iZq9gY50I_UNKN|UZz5zOjVJQ;K=*h zSlqGKPiYUFc*=EVvSecWZP@1HC0euu^_nAC{qxR756cOJsV4vwHUr!hDFfy9Qwp3Y zIWO~afr4_{PO$549liYZU@x`~2)f~Z+g(9__=$YZGoC2?;gfflkn?zQ^%!?AP5ku2C+B4<1WMg8vhh6sThN~=t*6l|Dtp?I$+osTx3Q(@ zKfJ;i8Q`}W%_MG$IAq#Ev~2JP;f&Rt%|__tLr33=fs*qw6#}KNIz}GI8pvkd>x88Z zePATv#tw@08?{G<>)Y`PISOetjUPPYb9f7S@<4?5gQ$OO&Cs>8xo2L_t-y(r^D-3z zrSge_p^I2I14fb-ZVulgRL4S4mri^4#zK6B`naF^G>=~1MMJ}~*PI30<9Xb7Ex5rP zCVZbQP;y?TLZH+=QCcm0W_>4WOlY&DFuj-(7}LfV_JEmGBELX+3{2xZ5$`hb0lo&* zK*6KvAKW`Q+2A!FcxJtK^%Q8Napg1a)vk$cMLa-NCIbg2F*HMl!-Erl*jqVIWJQqQc~3d`O>`9OrcS} zvv@=iHYr(%+s`zaj;TMR&GG_g%Ce#!H?*s^Ua>DS%#oY()YZoz3~7*N%538oD3Ehr zrfj7A)4$*T$9W#-x7`~p`JIOsnfn+QQ%F$o9FfeTk&om7-bC=2FI{ub1K|}g2PYcx zzO=F|Y;~ni=wWn*5{c-6a&DcbEpwDyU_zMlGVko^V{@Oo`b3XhLSsKHx^9Z(#;MW} zD5kVJz_qt0mdrKr)_sMeW!=WmHiVd~W_6^lU!~u$r z+`$LRe(&YA1#q-EFH<&9egM7QReXQsRH4i>H_@3LH~lxW`tU%uDf(Or|~EHfzLSn(Ho-S;Y@)crvS6FpE^6~ z%G{Cl8m=j|d#2h!flMXmWokr9)l7xBH&abw7!xd0$kcLCXd#soSIHCGv>~Ja0@d<3 z_FflkZ`r%^=9CN_z=l<5-}S_*(Zkly$2iS-nX-ZMxiS@QfoEe%-%eC&-p&_HA1L?z z7zpa0psBBr);4D==L)f%OJ9FL218*7gPRWaJ1u2E*HB*lQy{I)d6}}o@|R4d>alWe z6uK4+@V?d9rwi_~4{sxlD>^Db%NNn-=ZELJYnW7VMYy2!Z~P*Za3)wL<^8nIek+pi zd681!{>gcnvXSx`n{ecOnUY8Xxow7w3a1uwY3hgzq3{Cu*v1d-TAndsaSP4OsDr57 z=Q!ZCZ()>awACP>w(y=!X2o0}U~*ojY{2|*57kX?+h%0$gRMzOVz@B{bH)UQ8J+!r zeosEySAeVxbc0f$RrnNXvJ8oe!>SQr+)UP?N%VL!TebzFCFf;cGg{IWF4tg&?0t#u zgsdxDW6R9yr%k$@?ez*E?BP7SZIR;+wCrw2qSJI@&?0t(7YSFqv}RsL1#l}lFH<&J z-qMz_YJZTE@^Sp!-ok;J0(|fKRxVkj{RAtOX~zJ+u^Wqw*~0|-tI(;bz{#oR_H)C|%Wxc{>RiZzvrN z%J+@_e0#%MhKJ+xF)t(Yvi22v`%QD5eBr$O;yk2s?GFlGuA=Ugl&2HHFz-kykkaP7 zOod2k?^?V*(%L775ezss3qADMu16b#L(@Z7k}PH1NJziHk#epLCNf?3rGdR3J6v|H z6%rZK)f*o64V8?%Kq-*T=DbXWK&gB8bTA#`##xJR#zxG`70*XXx!jKpWDqsUm*BIX z?YySAai}j7(r0O-$?u#5zQ)#{Xp{|~FPqJInF@h2-gWhS9NxW3}q=XvNiar{-WApiV9XT&kAyE3Nfijz` zjp`ehJ5>p_1AMJzB_?@vO3jI(^oO37&)B4G!3JnHU>$IWx}9=Z5G^?hb`y=Sp-p>} zsrpvn>dAST3V~AhL<#FgpcE|!x4RioxLX>+Du9N>#&C3?yh7Q7h|DsA%G-Q!Pn(95 zDZoZ8aNo@cJHx*wS01pypfKlUDg;WCs+K(q5u>RMaQnT$N{Iyzo7)42)1 zLfLZ;z2Px!!;Jw4G%cyAL2o$(Vw64Wd76*sWwQke%MjDdm9AlHSr8B|QrFjX((Sh(kn|f9eCs?rb{6ghW!_7-K3LT7& zCi6%saQWoCOoc$HE6y}0oy=34>bvmhbRQ1?NNhWzHO$)3XDje2EifU!iN*D)nc7p_n{c@>tAz1;8x0)@u% z_$EF^(L({}*5rN0si;-z(;00CBF1?)Pk}y4&dXE?l%}nEq+F7}c_9c*+z9(_q56AH zgel`(lzD8G)(~GB+?;Npxlfmx}9{;XT&bueVGc8GE_ZM zrmHy`+C?BJUEJ#-;APnQ)^J+^tq;!0FAymE!a|YJI+F;a;|mc?s-@_k)-)u2eT0-; zw$I}rx15)$5GYMmL<(b;&LtkU_MvpW0?=AjP>vHOa?_n>{8w)NDuf9qx|-UsO)l2Fk<5? zTs>XaOiO6hodZP-h-y~yla7j^XLBteHe;K4qLfHdGG3-apj1v$NESnbz4^u>u_xU( z_%P}CE=d;<5#&X~G4CdL<f@Z3sSqi3 zla!7sjfNCu1B4i=BOKc3&8r#`CdZbpR(JLV0%g=T?4;p0lFK@7A=|BAD5W(mC(YdZ(!DS z!2vmN*EgMSUeqsPRmtDEm6kh3FxqabBg9Y;~z#(E@o6>6DY&Qo7|zTF$H2U;MXx{V@A!QU}`Z-wP;`9?qSp0Aq$3q6{k(jA5z_I z6CQ*+j|dWnLzl_yDbShCd6{?i^pQY;Zhq&fMIyx&Gf|qwZ|LZ@@@8xB)Tz)MRG0Qd zB;{ZQ`uyW#&I+c0hwO@T6{e#GGyJ{bCXAayxg{c%iAX7cuFiRxclPv=NLi{LDdgN% zU_l<0r|t>)ix30s$mTPujE-jL(7ZsP$X7cmF9zT(gP(EXf4fn;khJWSJ%Y z&D*jz6C=e#s*;(dJnrq2^D-48rS6e3AKQ^yaIj_PJxJI}%>!i`5{o=SC5glM3Pkme z84Dmap5S2?nD!R$WSnsdm@SOseD&R$NmMUU_+-3Hg+QrX_^6IIa1O%Z#%Gvcp=*E^ z8CZ_JUB*?Z{1W-B0w4UBIyXR@EOyatPD*5g-IxD3;qQGueD$93G8H1FZsC)h%6z7R z;2;^~Nv&31^-`LaoT5vp+s0P_xvk>{>8oHHf+sj#7#ruNS9>0?*4;XsYyk4^o&rs` zoR_H(C{@dzLyD56|A48#2=mus}9gXqib?PZnG1T z3+H5dwQSsH^5UdKCne)$D#S@um_a}I+SU|WvlKTk2MFWX&=G|d+ZaKyVtWPPQhQ*S zP+*`(3;~In6kH7q6kzMknt?0 zBo~iTM<>F31med~aD4^b(oR+>k?BCv&`S|DG%j0zJ0`XUI{1p9%$lb_f|Bzx6#`|f zdh<9va9(s`rvV|8m4d$+%SQ{pBL%SIslUR_GhjMSz-;o@H>JP5mzDd2!a*pAG6$o< zoyF@Z5GXk>QzKBS0+)izpa9ly;8adcM-DhgBB<;+C`GOZ1JD;}w>8nemrC(SnFqY(ACRSM|N`aau=VdAcN?kjaDe<1364{GE=R1jv z5NkDn4WYbkUnv{Bf`c|)m)Teld0+;VRr$zKHlrRYI$N*pmT=bd0;Ry!lk+ka0;O(_ z!og%ZMvF_&+}!x$db60JkrJ|j1*F{mtuK-8ELIP+bQn*vaMpZvH+K;l7++_Cgt0(7W zDg;X1tA~%;(GQ3XEGbk9vBC`+j6&J`bHXxB#Lu2TM@hg*u$w)g62tg;3Ll8K({TgK zI?jD;_e`DH0#{GY%Tx%Isj3>jWLA&c;tGqvascGdVanHr$j61gyPU6JSxVz&O=rlo zpY9){9eO~WQh$V&UFiggqFjJm^B3B~fBo~f-=4q!)4zQEyRZNBtKWa~?eEs#{(AlG zpU)qs#Q%Kwzxew4`aJ$^`(Nk&r(eAx8FOByLZCEl)ohm1A5w#1&oS$`4gEqZVxp&* z2!oF#Qs~gWLTk25p%A5qKO1o(C?Pvazu+Mkyq;_03^8Q_+)ChzL`8?OXMH!$tIfT1$bdV$MF1GY2L6zeesR}bqhv)EuOqhY&i0<`nzt9x=@ zrb48&Ri{0Q6UcO(JyszxkRU0a-u7YGzqrBElFo7XXndjL6M@o{58 zi2Md*FZ_{LAQw1Na$crFp!lWVd1?{DhETYMQ&;oa4Ccp+-Yjj!(6-{Rc3cg2^_M7o zrZLU5I*cHQ8W?Em(DrWAW4+dnNCSbL%p;`$VT0iJ-IsZ1Pah#{ur7G#sYN2CX|}!z z64+!lZ-A#5b~|~<5k&Yrrh&fiD_lN@tej)B(tZ%|^DH@E=1~1Zo5d=ne6eLh4GKg` z&da>Br;kKRUzOT3;arlTaZDq7ft&&zw8?;tK0p&zusaii7r1=rxOLFr>n#GG^fqFF zDFj;?NEK4}3}vRw%BMh}zCrE?rt?`ZTW~X`sWV zB6eqzMCIKKEURrOrzP`ZD1mU_<(k?S2$YX%okDmQ z(kaJVR{IJ^%B9#KEru=VR5TPEB4*@XsohZSk528MiJL9Zb<25~3XxK`@EI|@Ss;;u zoKdDO`b0M!TckU<;m$1*zQBiR;iLA1yhyM4?E~Fkfh^dhi98n%ndUOLTEsVb2EWxD zOu?Z8q)nL>a)Cg}d6^1<($)21Ay)*Zt}ITZx#)$Sv<>E1@O|0F1HpTF1@sb>uX@;- zC~Z|B4-#21P9(^8u%g><{h67~79gtUyiA2aVfFmZQ;QVH2;5YPAZH2r(y#6z32DnC z_YCBaLp6em=nK?6gZkzQm#Wc(hvl7LXbiu^Gi~g?$F5z^OwvYyBqir%-r3Vf3go(@ z!MFQ`bPo6u=G4`jnZ$*IEx64CvfwstufQs8H^2zWSUBo*W_8${j3%2DT)RXJ6u|ld%t@H zRpO4-*SK6r8^0AIfSk>&j|(IzIWJQoP^zXVC*mlH=WwfsIHeH| zb~+mQq=o{ZlVw?#SLoqG$%f;X>9>Gkq^X%Q^`wcTW~P|i$X-4ldMW2+D#S_M1Ld5! zI;rO{HIM{}iMW1Z5SwT!B03-v&aY7Q%+%=CL|&FU7Zg6KIB}qPBKy}~6MmZk=jXe5 za$crJpj4d-P6RIvLr`@a2X(Vk=Q=H}PjT4#rH@4A6;70}gkN|G#$h6tW%b0V>eNSR zmS#SNW^b?_e+*E27sOToX^`_W6#~V%`OZ_zl*en60Nu!53@|BNOO5D>;G4s0q#$@F zH`5Cwvt$`|mZU4l(#eoz(hBM}Dj2weX&gW)AZ#)t<*(j1@5a)9{!d@|=O6a3fA{x4 z4~WcpnRoW|k@C25Bc)sP8V>P6b2DIWI6mh=8}e+i9S#kC)*CMnDGo&1xL$s5wSxN1 z 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 z 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 + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 2015-12-31T23:00:00Z + + + + 1 + 439.688 + 862.75 + + + + 1 + 437.5 + 735.875 + + + + 2 + 242.812 + 464.625 + + + + 1 + 490 + 670.25 + + + + 1 + 124.688 + 910.875 + + + + 1 + 420 + 105.875 + + + + 2 + 138.008 + -379.877 + + + + 2 + 453.542 + 945.875 + + + + 2 + 446.25 + 66.5 + + + + 2 + 438.958 + 66.5 + + + + 1 + 861.875 + 1033.38 + + + + 1 + 408.333 + 836.5 + + + + 1 + 293.125 + 232.75 + + + + 2 + 138.007 + -379.874 + + + + 1 + 740.833 + 149.625 + + + + 2 + 437.5 + 722.75 + + + + 2 + 648.958 + 630.875 + + + + 1 + 457.188 + 613.375 + + + + 2 + 203.438 + 245.875 + + + + 1 + 588.438 + 749 + + + + 2 + 138.006 + -379.879 + + + + 2 + 732.812 + 119 + + + + 1 + 1253.44 + 464.625 + + + + 2 + 175 + 280.875 + + + + 1 + 541.042 + 250.25 + + + + 1 + 111.757 + -379.877 + + + + 1 + 424.375 + 140.875 + + + + 1 + 473.958 + 823.375 + + + + 1 + 1006.25 + 556.5 + + + + 1 + 552.845 + 651.76 + + + + 1 + 522.812 + 342.125 + + + + 2 + 541.042 + 263.375 + + + + 2 + 138.007 + -379.877 + + + + 1 + 892.5 + 810.25 + + + + 2 + 424.375 + 127.75 + + + + 1 + 453.125 + 774.833 + + + + 2 + 476.875 + 49 + + + + 1 + 997.5 + 412.125 + + + + 1 + 1302.29 + 552.125 + + + + 2 + 138.013 + -379.878 + + + + 1 + 364.583 + 1112.12 + + + + 2 + 728.438 + 547.75 + + + + 2 + 1275.31 + 486.5 + + + + 1 + 1279.69 + 604.625 + + + + 2 + 441.875 + 679 + + + + 2 + 138.008 + -379.881 + + + + 2 + 638.75 + 595.875 + + + + 1 + 815.938 + 784 + + + + 2 + 459.375 + 171.5 + + + + 2 + 357.292 + 989.625 + + + + 2 + 603.75 + 565.25 + + + + 1 + 111.755 + -379.884 + + + + 1 + 896.875 + 1024.62 + + + + 2 + 332.5 + 228.375 + + + + 2 + 755.417 + 149.625 + + + + 1 + 339.062 + 1042.12 + + + + 2 + 107.188 + 858.375 + + + + 2 + 138.005 + -379.884 + + + + 2 + 400.312 + 718.375 + + + + 2 + 1302.29 + 565.25 + + + + 1 + 1302.29 + 508.375 + + + + 2 + 531.562 + 44.625 + + + + 1 + 111.737 + -379.89 + + + + 2 + 421.458 + 1068.38 + + + + 1 + 481.25 + 460.25 + + + + 2 + 321.562 + 228.375 + + + + 1 + 448.438 + 1029 + + + + 2 + 194.688 + 416.5 + + + + 1 + 111.755 + -379.882 + + + + 1 + 1173.96 + 705.25 + + + + 1 + 185.938 + 294 + + + + 1 + 409.062 + 105.875 + + + + 2 + 137.987 + -379.89 + + + + 1 + 516.25 + 132.125 + + + + 2 + 702.188 + 92.75 + + + + 2 + 511.875 + 40.25 + + + + 1 + 124.879 + -379.882 + + + + 1 + 1286.25 + 504 + + + + 1 + 107.188 + 871.5 + + + + 2 + 920.208 + 569.625 + + + + 2 + 947.188 + 425.25 + + + + 1 + 111.763 + -379.878 + + + + 1 + 832.708 + 574 + + + + 1 + 479.062 + 101.5 + + + + 2 + 1146.25 + 434 + + + + 1 + 332.5 + 241.5 + + + + 1 + 111.756 + -379.881 + + + + 2 + 422.917 + 854 + + + + 2 + 479.062 + 114.625 + + + + 1 + 920.208 + 556.5 + + + + 1 + 772.188 + 1024.62 + + + + 1 + 459.375 + 184.625 + + + + 2 + 138.005 + -379.882 + + + + 1 + 721.875 + 355.25 + + + + 2 + 590.625 + 57.75 + + + + 1 + 1146.25 + 420.875 + + + + 1 + 945 + 827.75 + + + + 1 + 400.312 + 731.5 + + + + 1 + 1050 + 372.75 + + + + 1 + 378.438 + 819 + + + + 1 + 538.125 + 416.5 + + + + 1 + 111.757 + -379.876 + + + + 1 + 1090.83 + 744.625 + + + + 1 + 487.812 + 62.125 + + + + 2 + 546.875 + 75.25 + + + + 1 + 560 + 75.25 + + + + 1 + 1231.56 + 438.375 + + + + 2 + 1090.83 + 757.75 + + + + 1 + 603.75 + 40.25 + + + + 1 + 304.062 + 521.5 + + + + 1 + 938.438 + 1002.75 + + + + 1 + 470.312 + 805.875 + + + + 1 + 111.758 + -379.877 + + + + 1 + 936.25 + 438.375 + + + + 1 + 755.417 + 136.5 + + + + 2 + 896.875 + 1011.5 + + + + 2 + 185.938 + 280.875 + + + + 2 + 335.417 + 858.375 + + + + 2 + 721.875 + 342.125 + + + + 1 + 111.757 + -379.881 + + + + 1 + 516.25 + 814.625 + + + + 2 + 1265.83 + 639.625 + + + + 2 + 527.188 + 399 + + + + 1 + 203.438 + 259 + + + + 2 + 457.628 + 774.379 + + + + 1 + 505.312 + 560.875 + + + + 1 + 111.758 + -379.881 + + + + 1 + 745.208 + 267.75 + + + + 2 + 516.25 + 40.25 + + + + 1 + 205.625 + 429.625 + + + + 1 + 385 + 539 + + + + 1 + 1004.79 + 399 + + + + 1 + 111.755 + -379.88 + + + + 1 + 796.25 + 517.125 + + + + 1 + 511.875 + 27.125 + + + + 2 + 413.438 + 127.75 + + + + 2 + 175 + 368.375 + + + + 2 + 1036.88 + 390.25 + + + + 1 + 752.5 + 294 + + + + 1 + 956.667 + 945.875 + + + + 1 + 194.688 + 429.625 + + + + 2 + 772.188 + 1011.5 + + + + 1 + 438.958 + 53.375 + + + + 1 + 389.375 + 832.125 + + + + 1 + 1093.75 + 425.25 + + + + 2 + 525 + 114.625 + + + + 2 + 138.007 + -379.881 + + + + 1 + 229.688 + 893.375 + + + + 2 + 389.375 + 819 + + + + 1 + 441.875 + 665.875 + + + + 2 + 208.542 + 910.875 + + + + 2 + 138.005 + -379.88 + + + + 1 + 1275.31 + 499.625 + + + + 2 + 481.25 + 447.125 + + + + 1 + 531.562 + 490.875 + + + + 1 + 1265.83 + 626.5 + + + + 1 + 714.583 + 119 + + + + 2 + 905.625 + 792.75 + + + + 2 + 1253.44 + 451.5 + + + + 2 + 531.562 + 477.75 + + + + 2 + 490 + 683.375 + + + + 1 + 533.75 + 775.25 + + + + 1 + 193.958 + 893.375 + + + + 2 + 205.625 + 416.5 + + + + 1 + 877.188 + 477.75 + + + + 1 + 111.757 + -379.888 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 989.625 + + + + 2 + 170.625 + 320.25 + + + + 1 + 148.75 + 810.25 + + + + 1 + 1159.38 + 744.625 + + + + 2 + 1231.56 + 425.25 + + + + 2 + 138.007 + -379.888 + + + + 1 + 321.562 + 241.5 + + + + 2 + 745.208 + 280.875 + + + + 2 + 409.792 + 687.75 + + + + 1 + 1159.38 + 420.875 + + + + 1 + 1093.75 + 394.625 + + + + 1 + 529.375 + 171.5 + + + + 1 + 111.737 + -379.887 + + + + 1 + 421.458 + 1055.25 + + + + 1 + 697.812 + 945.875 + + + + 2 + 293.125 + 219.625 + + + + 1 + 1063.12 + 390.25 + + + + 1 + 446.25 + 963.375 + + + + 2 + 505.312 + 547.75 + + + + 2 + 138.009 + -379.882 + + + + 2 + 956.667 + 959 + + + + 1 + 546.875 + 88.375 + + + + 2 + 938.438 + 989.625 + + + + 1 + 752.5 + 630.875 + + + + 2 + 262.5 + 766.5 + + + + 1 + 531.562 + 57.75 + + + + 2 + 138.006 + -379.887 + + + + 2 + 409.062 + 92.75 + + + + 1 + 648.958 + 617.75 + + + + 1 + 1036.88 + 784 + + + + 1 + 947.188 + 438.375 + + + + 2 + 223.125 + 219.625 + + + + 2 + 492.188 + 447.125 + + + + 1 + 111.766 + -379.887 + + + + 1 + 811.562 + 1033.38 + + + + 1 + 371.875 + 1081.5 + + + + 1 + 1208.96 + 683.375 + + + + 1 + 428.75 + 1081.5 + + + + 1 + 175 + 381.5 + + + + 2 + 185.938 + 368.375 + + + + 2 + 138.016 + -379.887 + + + + 1 + 516.25 + 53.375 + + + + 2 + 516.25 + 797.125 + + + + 1 + 918.75 + 854 + + + + 1 + 369.688 + 263.375 + + + + 2 + 420 + 92.75 + + + + 2 + 459.375 + 171.5 + + + + 1 + 111.754 + -379.883 + + + + 1 + 413.438 + 140.875 + + + + 2 + 328.125 + 858.375 + + + + 1 + 253.75 + 784 + + + + 1 + 470.312 + 460.25 + + + + 2 + 931.875 + 792.75 + + + + 1 + 170.625 + 333.375 + + + + 1 + 111.761 + -379.891 + + + + 2 + 304.062 + 508.375 + + + + 1 + 680.312 + 105.875 + + + + 1 + 1284.06 + 657.125 + + + + 2 + 1159.38 + 434 + + + + 2 + 470.312 + 447.125 + + + + 1 + 111.754 + -379.895 + + + + 1 + 525 + 127.75 + + + + 1 + 450.625 + 875.875 + + + + 1 + 560 + 88.375 + + + + 1 + 272.708 + 867.125 + + + + 2 + 1080.62 + 412.125 + + + + 2 + 138.004 + -379.883 + + + + 1 + 527.188 + 412.125 + + + + 2 + 560 + 75.25 + + + + 1 + 545.417 + 385.875 + + + + 1 + 428.75 + 241.5 + + + + 1 + 159.688 + 333.375 + + + + 1 + 111.753 + -379.89 + + + + 2 + 697.812 + 932.75 + + + + 2 + 680.312 + 92.75 + + + + 1 + 118.125 + 875.875 + + + + 2 + 330.312 + 1072.75 + + + + 1 + 111.757 + -379.885 + + + + 2 + 811.562 + 1020.25 + + + + 1 + 647.5 + 499.625 + + + + 1 + 780.938 + 241.5 + + + + 2 + 866.25 + 460.25 + + + + 2 + 138.004 + -379.882 + + + + 2 + 737.188 + 976.5 + + + + 2 + 371.875 + 1094.62 + + + + 1 + 549.792 + 27.125 + + + + 2 + 490 + 683.375 + + + + 2 + 138.007 + -379.882 + + + + 2 + 192.5 + 245.875 + + + + 2 + 647.5 + 486.5 + + + + 2 + 138.003 + -379.89 + + + + 1 + 748.125 + 167.125 + + + + 1 + 866.25 + 473.375 + + + + 2 + 928.958 + 425.25 + + + + 1 + 949.375 + 976.5 + + + + 1 + 1271.67 + 438.375 + + + + 2 + 138.003 + -379.887 + + + + 1 + 391.562 + 700.875 + + + + 1 + 554.167 + 543.375 + + + + 1 + 927.5 + 1002.75 + + + + 1 + 430.208 + 998.375 + + + + 2 + 138.01 + -379.89 + + + + 1 + 648.958 + 613.375 + + + + 1 + 1301.56 + 622.125 + + + + 1 + 536.667 + 140.875 + + + + 1 + 1249.79 + 412.125 + + + + 1 + 111.76 + -379.89 + + + + 1 + 770 + 197.75 + + + + 1 + 373.333 + 910.875 + + + + 1 + 1230.83 + 657.125 + + + + 2 + 545.417 + 399 + + + + 1 + 328.125 + 875.875 + + + + 2 + 138.014 + -379.889 + + + + 1 + 379.167 + 1112.12 + + + + 1 + 739.375 + 744.625 + + + + 1 + 300.417 + 206.5 + + + + 1 + 475.417 + 582.75 + + + + 1 + 488.542 + 434 + + + + 1 + 111.755 + -379.883 + + + + 1 + 990.208 + 381.5 + + + + 2 + 557.812 + 705.25 + + + + 2 + 300.417 + 219.625 + + + + 1 + 943.542 + 862.75 + + + + 2 + 829.792 + 1020.25 + + + + 1 + 111.757 + -379.873 + + + + 1 + 1098.12 + 775.25 + + + + 1 + 960.312 + 972.125 + + + + 1 + 446.25 + 158.375 + + + + 1 + 614.688 + 582.75 + + + + 2 + 138.011 + -379.891 + + + + 1 + 829.792 + 1007.12 + + + + 1 + 608.125 + 75.25 + + + + 1 + 1242.5 + 438.375 + + + + 1 + 1114.17 + 556.5 + + + + 1 + 110.833 + 805.875 + + + + 2 + 138.007 + -379.873 + + + + 2 + 488.542 + 447.125 + + + + 1 + 861.875 + 1037.75 + + + + 1 + 826.875 + 779.625 + + + + 1 + 1128.75 + 639.625 + + + + 2 + 446.25 + 171.5 + + + + 2 + 138.013 + -379.89 + + + + 2 + 430.208 + 1011.5 + + + + 1 + 1111.25 + 442.75 + + + + 1 + 450.625 + 364 + + + + 1 + 443.333 + 845.25 + + + + 2 + 533.75 + 263.375 + + + + 1 + 111.759 + -379.882 + + + + 1 + 215.833 + 206.5 + + + + 1 + 415.625 + 867.125 + + + + 1 + 858.958 + 442.75 + + + + 2 + 1109.06 + 757.75 + + + + 1 + 1172.5 + 451.5 + + + + 1 + 111.762 + -379.877 + + + + 2 + 662.812 + 875.875 + + + + 2 + 1249.79 + 425.25 + + + + 1 + 1080.62 + 425.25 + + + + 1 + 949.375 + 937.125 + + + + 2 + 450.625 + 350.875 + + + + 2 + 138.012 + -379.877 + + + + 1 + 763.438 + 298.375 + + + + 1 + 1136.04 + 609 + + + + 1 + 1293.54 + 473.375 + + + + 1 + 439.688 + 364 + + + + 1 + 118.125 + 840.875 + + + + 2 + 1054.38 + 390.25 + + + + 1 + 111.756 + -379.887 + + + + 1 + 395.208 + 670.25 + + + + 2 + 1271.67 + 451.5 + + + + 1 + 533.75 + 276.5 + + + + 2 + 391.562 + 687.75 + + + + 1 + 1150.62 + 692.125 + + + + 2 + 138.016 + -379.888 + + + + 1 + 698.542 + 75.25 + + + + 1 + 905.625 + 805.875 + + + + 1 + 141.458 + 779.625 + + + + 2 + 1136.04 + 622.125 + + + + 1 + 295.312 + 788.375 + + + + 1 + 1095.94 + 587.125 + + + + 1 + 111.764 + -379.889 + + + + 1 + 1081.5 + 539 + + + + 2 + 141.458 + 792.75 + + + + 2 + 777.292 + 224 + + + + 2 + 415.625 + 854 + + + + 1 + 656.25 + 648.375 + + + + 2 + 138.005 + -379.883 + + + + 1 + 780.938 + 197.75 + + + + 2 + 253.75 + 206.5 + + + + 2 + 1146.25 + 727.125 + + + + 1 + 154.583 + 932.75 + + + + 1 + 651.875 + 709.625 + + + + 1 + 777.292 + 210.875 + + + + 2 + 138.004 + -379.895 + + + + 2 + 376.25 + 775.25 + + + + 1 + 1133.12 + 709.625 + + + + 1 + 169.167 + 932.75 + + + + 1 + 457.917 + 337.75 + + + + 1 + 918.75 + 792.75 + + + + 1 + 490 + 696.5 + + + + 1 + 840 + 609 + + + + 1 + 212.188 + 928.375 + + + + 1 + 608.125 + 70.875 + + + + 1 + 651.875 + 674.625 + + + + 1 + 611.042 + 565.25 + + + + 1 + 1192.19 + 735.875 + + + + 1 + 1054.38 + 403.375 + + + + 2 + 439.688 + 350.875 + + + + 1 + 925.312 + 897.75 + + + + 2 + 706.562 + 547.75 + + + + 1 + 320.833 + 840.875 + + + + 1 + 516.25 + 810.25 + + + + 2 + 945 + 840.875 + + + + 1 + 446.25 + 184.625 + + + + 1 + 777.292 + 162.75 + + + + 2 + 450.625 + 862.75 + + + + 2 + 739.375 + 731.5 + + + + 1 + 426.562 + 871.5 + + + + 2 + 717.5 + 547.75 + + + + 1 + 1216.25 + 718.375 + + + + 2 + 215.833 + 219.625 + + + + 2 + 1242.5 + 425.25 + + + + 1 + 788.958 + 486.5 + + + + 1 + 192.5 + 259 + + + + 2 + 295.312 + 775.25 + + + + 1 + 511.875 + 22.75 + + + + 1 + 328.125 + 871.5 + + + + 2 + 960.312 + 919.625 + + + + 1 + 387.188 + 792.75 + + + + 2 + 927.5 + 989.625 + + + + 1 + 1273.12 + 652.75 + + + + 1 + 755.417 + 132.125 + + + + 2 + 437.5 + 679 + + + + 2 + 1173.96 + 718.375 + + + + 1 + 457.188 + 963.375 + + + + 2 + 942.083 + 959 + + + + 2 + 536.667 + 154 + + + + 1 + 631.458 + 578.375 + + + + 2 + 1273.12 + 639.625 + + + + 2 + 516.25 + 547.75 + + + + 2 + 1293.54 + 486.5 + + + + 1 + 998.958 + 525.875 + + + + 2 + 675.938 + 412.125 + + + + 1 + 185.208 + 228.375 + + + + 2 + 1114.17 + 569.625 + + + + 1 + 717.5 + 560.875 + + + + 2 + 468.125 + 600.25 + + + + 2 + 385 + 556.5 + + + + 1 + 313.542 + 757.75 + + + + 1 + 834.167 + 749 + + + + 1 + 253.75 + 193.375 + + + + 1 + 198.333 + 416.5 + + + + 2 + 245 + 766.5 + + + + 1 + 437.5 + 692.125 + + + + 1 + 341.25 + 1090.25 + + + + 2 + 1117.81 + 622.125 + + + + 1 + 627.812 + 827.75 + + + + 1 + 1159.38 + 727.125 + + + + 1 + 928.958 + 412.125 + + + + 1 + 376.25 + 788.375 + + + + 1 + 938.438 + 587.125 + + + + 1 + 673.75 + 889 + + + + 1 + 1290.62 + 622.125 + + + + 1 + 925.312 + 893.375 + + + + 1 + 177.188 + 779.625 + + + + 1 + 662.812 + 889 + + + + 1 + 330.312 + 1085.88 + + + + 1 + 360.938 + 1007.12 + + + + 1 + 317.188 + 1059.62 + + + + 1 + 599.375 + 744.625 + + + + 2 + 1098.12 + 757.75 + + + + 1 + 417.083 + 127.75 + + + + 2 + 457.917 + 350.875 + + + + 1 + 188.125 + 792.75 + + + + 1 + 523.542 + 530.25 + + + + 1 + 546.875 + 722.75 + + + + 1 + 665 + 679 + + + + 1 + 533.75 + 770.875 + + + + 2 + 430.938 + 92.75 + + + + 2 + 608.125 + 57.75 + + + + 2 + 1230.83 + 670.25 + + + + 1 + 651.875 + 84 + + + + 1 + 437.5 + 1029 + + + + 2 + 1198.75 + 420.875 + + + + 2 + 1203.12 + 420.875 + + + + 1 + 759.792 + 613.375 + + + + 1 + 659.167 + 49 + + + + 1 + 1283.33 + 591.5 + + + + 1 + 1295 + 582.75 + + + + 2 + 1045.62 + 390.25 + + + + 2 + 665 + 692.125 + + + + 2 + 406.875 + 1090.25 + + + + 2 + 636.562 + 486.5 + + + + 1 + 647.5 + 504 + + + + 2 + 1283.33 + 604.625 + + + + 1 + 368.958 + 757.75 + + + + 1 + 245 + 779.625 + + + + 1 + 457.188 + 79.625 + + + + 2 + 752.5 + 613.375 + + + + 1 + 406.875 + 1107.75 + + + + 2 + 855.312 + 460.25 + + + + 1 + 438.958 + 932.75 + + + + 1 + 290.938 + 902.125 + + + + 2 + 446.25 + 171.5 + + + + 1 + 1098.12 + 770.875 + + + + 1 + 111.763 + -379.89 + + + + 1 + 240.625 + 910.875 + + + + 1 + 373.333 + 245.875 + + + + 1 + 920.208 + 976.5 + + + + 1 + 461.562 + 880.25 + + + + 1 + 1146.25 + 740.25 + + + + 1 + 437.5 + 1024.62 + + + + 1 + 710.938 + 136.5 + + + + 2 + 264.688 + 464.625 + + + + 2 + 138.006 + -379.878 + + + + 2 + 431.667 + 127.75 + + + + 1 + 931.875 + 858.375 + + + + 1 + 1045.62 + 403.375 + + + + 1 + 385 + 543.375 + + + + 1 + 307.708 + 508.375 + + + + 2 + 138.004 + -379.895 + + + + 1 + 520.625 + 97.125 + + + + 2 + 438.958 + 945.875 + + + + 2 + 188.125 + 779.625 + + + + 1 + 721.875 + 136.5 + + + + 1 + 638.75 + 705.25 + + + + 1 + 1198.75 + 434 + + + + 2 + 403.958 + 718.375 + + + + 1 + 111.753 + -379.885 + + + + 1 + 728.438 + 749 + + + + 2 + 920.208 + 989.625 + + + + 1 + 972.708 + 766.5 + + + + 2 + 350 + 858.375 + + + + 1 + 1295 + 578.375 + + + + 2 + 457.188 + 66.5 + + + + 2 + 216.562 + 416.5 + + + + 2 + 138.003 + -379.885 + + + + 1 + 879.375 + 792.75 + + + + 1 + 431.667 + 114.625 + + + + 1 + 716.042 + 915.25 + + + + 1 + 1106.88 + 622.125 + + + + 2 + 925.312 + 880.25 + + + + 1 + 258.125 + 219.625 + + + + 1 + 526.458 + 329 + + + + 1 + 931.875 + 823.375 + + + + 1 + 469.583 + 35.875 + + + + 2 + 138.007 + -379.885 + + + + 1 + 763.438 + 630.875 + + + + 2 + 1150.62 + 622.125 + + + + 2 + 1295 + 565.25 + + + + 2 + 258.125 + 206.5 + + + + 2 + 522.812 + 263.375 + + + + 1 + 679.583 + 394.625 + + + + 2 + 469.583 + 49 + + + + 1 + 249.375 + 749 + + + + 1 + 240.625 + 906.5 + + + + 2 + 393.75 + 1094.62 + + + + 1 + 542.5 + 490.875 + + + + 2 + 916.562 + 989.625 + + + + 1 + 1249.79 + 407.75 + + + + 1 + 399.583 + 1072.75 + + + + 1 + 364.583 + 1107.75 + + + + 1 + 1067.5 + 508.375 + + + + 1 + 476 + 114.625 + + + + 1 + 516.25 + 560.875 + + + + 1 + 1067.5 + 412.125 + + + + 3 + 918.75 + 840.875 + + + + 1 + 142.917 + 875.875 + + + + 2 + 364.583 + 1094.62 + + + + 2 + 1067.5 + 521.5 + + + + 1 + 546.875 + 574 + + + + 1 + 1124.38 + 460.25 + + + + 1 + 833.438 + 1020.25 + + + + 2 + 1120 + 412.125 + + + + 1 + 1106.88 + 587.125 + + + + 2 + 118.125 + 823.375 + + + + 1 + 111.737 + -379.882 + + + + 1 + 111.754 + -379.882 + + + + 2 + 546.875 + 560.875 + + + + 1 + 246.458 + 464.625 + + + + 1 + 681.042 + 858.375 + + + + 1 + 350 + 1094.62 + + + + 4 + 850.938 + 1020.25 + + + + 2 + 638.75 + 692.125 + + + + 2 + 138.004 + -379.867 + + + + 1 + 111.754 + -379.893 + + + + 1 + 468.125 + 613.375 + + + + 1 + 803.542 + 504 + + + + 1 + 869.167 + 1020.25 + + + + 2 + 271.25 + 766.5 + + + + 1 + 251.562 + 910.875 + + + + 2 + 437.5 + 1011.5 + + + + 2 + 138.012 + -379.88 + + + + 2 + 138.004 + -379.893 + + + + 2 + 599.375 + 731.5 + + + + 1 + 719.688 + 932.75 + + + + 1 + 596.458 + 547.75 + + + + 2 + 450.625 + 1068.38 + + + + 1 + 697.812 + 429.625 + + + + 2 + 240.625 + 893.375 + + + + 1 + 111.754 + -379.867 + + + + 1 + 111.754 + -379.882 + + + + 2 + 542.5 + 477.75 + + + + 2 + 740.833 + 976.5 + + + + 1 + 554.959 + 652.704 + + + + 1 + 261.042 + 447.125 + + + + 1 + 306.25 + 858.375 + + + + 1 + 118.125 + 836.5 + + + + 1 + 111.753 + -379.878 + + + + 1 + 111.757 + -379.882 + + + + 1 + 450.625 + 735.875 + + + + 1 + 663.542 + 630.875 + + + + 1 + 412.708 + 75.25 + + + + 1 + 406.875 + 1068.38 + + + + 1 + 729.167 + 101.5 + + + + 1 + 752.5 + 626.5 + + + + 1 + 111.749 + -379.87 + + + + 2 + 138.004 + -379.882 + + + + 2 + 450.625 + 722.75 + + + + 1 + 1044.17 + 766.5 + + + + 1 + 439.688 + 1085.88 + + + + 1 + 490 + 665.875 + + + + 2 + 791.875 + 224 + + + + 2 + 728.438 + 731.5 + + + + 1 + 111.763 + -379.881 + + + + 1 + 111.753 + -379.887 + + + + 2 + 741.562 + 613.375 + + + + 1 + 544.688 + 276.5 + + + + 1 + 667.188 + 648.375 + + + + 1 + 920.208 + 552.125 + + + + 2 + 433.125 + 718.375 + + + + 1 + 1117.81 + 635.25 + + + + 1 + 111.754 + -379.895 + + + + 1 + 111.76 + -379.884 + + + + 2 + 1170.31 + 718.375 + + + + 2 + 544.688 + 263.375 + + + + 1 + 306.25 + 792.75 + + + + 1 + 441.875 + 661.5 + + + + 1 + 1036.88 + 779.625 + + + + 1 + 1028.12 + 390.25 + + + + 1 + 111.766 + -379.888 + + + + 1 + 111.752 + -379.881 + + + + 1 + 413.438 + 687.75 + + + + 2 + 673.75 + 875.875 + + + + 1 + 348.542 + 1055.25 + + + + 1 + 777.292 + 206.5 + + + + 1 + 406.875 + 1103.38 + + + + 1 + 555.625 + 648.375 + + + + 2 + 137.999 + -379.896 + + + + 1 + 111.748 + -379.865 + + + + 4 + 1146.25 + 434 + + + + 1 + 411.25 + 731.5 + + + + 1 + 606.667 + 714 + + + + 1 + 1265.83 + 622.125 + + + + 2 + 1036.88 + 766.5 + + + + 2 + 1128.75 + 569.625 + + + + 2 + 137.999 + -379.887 + + + + 2 + 138.003 + -379.86 + + + + 2 + 411.25 + 718.375 + + + + 1 + 1227.19 + 718.375 + + + + 1 + 435.312 + 945.875 + + + + 2 + 533.75 + 757.75 + + + + 3 + 492.188 + 805.875 + + + + 2 + 1019.38 + 399 + + + + 2 + 138.01 + -379.884 + + + + 2 + 137.993 + -379.891 + + + + 1 + 746.667 + 714 + + + + 1 + 503.125 + 696.5 + + + + 1 + 443.333 + 350.875 + + + + 1 + 1203.12 + 407.75 + + + + 1 + 460.833 + 600.25 + + + + 2 + 1264.38 + 425.25 + + + + 2 + 138.018 + -379.885 + + + + 2 + 137.992 + -379.886 + + + + 1 + 546.875 + 57.75 + + + + 2 + 503.125 + 683.375 + + + + 2 + 441.875 + 259 + + + + 1 + 728.438 + 744.625 + + + + 1 + 1283.33 + 587.125 + + + + 1 + 625.625 + 486.5 + + + + 1 + 111.766 + -379.886 + + + + 2 + 137.998 + -379.894 + + + + 1 + 129.062 + 840.875 + + + + 2 + 156.042 + 792.75 + + + + 1 + 398.125 + 543.375 + + + + 2 + 554.167 + 705.25 + + + + 1 + 1181.25 + 731.5 + + + + 1 + 726.25 + 149.625 + + + + 1 + 450.625 + 880.25 + + + + 1 + 526.458 + 740.25 + + + + 1 + 111.743 + -379.886 + + + + 2 + 398.125 + 556.5 + + + + 2 + 925.312 + 425.25 + + + + 1 + 1090.83 + 740.25 + + + + 1 + 306.25 + 1042.12 + + + + 2 + 138.003 + -379.878 + + + + 1 + 400.312 + 836.5 + + + + 2 + 137.999 + -379.89 + + + + 1 + 783.125 + 1024.62 + + + + 1 + 522.812 + 757.75 + + + + 1 + 918.75 + 792.75 + + + + 2 + 743.75 + 119 + + + + 2 + 137.999 + -379.87 + + + + 2 + 783.125 + 1011.5 + + + + 1 + 646.042 + 595.875 + + + + 2 + 885.938 + 1011.5 + + + + 2 + 138.002 + -379.883 + + + + 1 + 424.375 + 145.25 + + + + 2 + 1071.88 + 390.25 + + + + 2 + 138.018 + -379.879 + + + + 2 + 829.062 + 591.5 + + + + 1 + 494.375 + 101.5 + + + + 1 + 111.753 + -379.889 + + + + 1 + 185.938 + 298.375 + + + + 1 + 1271.67 + 434 + + + + 1 + 358.75 + 928.375 + + + + 2 + 138.013 + -379.881 + + + + 2 + 656.25 + 630.875 + + + + 1 + 1139.69 + 674.625 + + + + 1 + 1047.81 + 779.625 + + + + 1 + 111.754 + -379.896 + + + + 1 + 889.583 + 994 + + + + 2 + 402.5 + 928.375 + + + + 2 + 138.001 + -379.878 + + + + 1 + 1290.62 + 617.75 + + + + 1 + 873.542 + 460.25 + + + + 2 + 494.375 + 114.625 + + + + 1 + 111.745 + -379.885 + + + + 1 + 854.583 + 1002.75 + + + + 2 + 533.75 + 114.625 + + + + 2 + 1260 + 670.25 + + + + 2 + 137.987 + -379.882 + + + + 2 + 1150.62 + 674.625 + + + + 2 + 1047.81 + 766.5 + + + + 2 + 523.542 + 797.125 + + + + 2 + 137.991 + -379.888 + + + + 1 + 560 + 92.75 + + + + 2 + 774.375 + 613.375 + + + + 1 + 111.764 + -379.879 + + + + 2 + 918.75 + 792.75 + + + + 1 + 815.938 + 779.625 + + + + 1 + 544.688 + 770.875 + + + + 2 + 343.438 + 228.375 + + + + 1 + 111.741 + -379.893 + + + + 1 + 542.5 + 495.25 + + + + 1 + 1050 + 521.5 + + + + 1 + 111.766 + -379.882 + + + + 2 + 732.083 + 731.5 + + + + 1 + 1150.62 + 687.75 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 533.75 + 342.125 + + + + 2 + 137.991 + -379.893 + + + + 2 + 770 + 149.625 + + + + 1 + 111.759 + -379.865 + + + + 1 + 665 + 692.125 + + + + 2 + 1290.62 + 604.625 + + + + 1 + 111.755 + -379.884 + + + + 1 + 794.062 + 1011.5 + + + + 2 + 533.75 + 329 + + + + 2 + 1238.12 + 700.875 + + + + 2 + 398.125 + 556.5 + + + + 1 + 111.762 + -379.884 + + + + 1 + 599.375 + 749 + + + + 2 + 815.938 + 766.5 + + + + 1 + 111.738 + -379.893 + + + + 1 + 428.75 + 272.125 + + + + 1 + 625.625 + 692.125 + + + + 1 + 535.938 + 705.25 + + + + 1 + 111.766 + -379.886 + + + + 1 + 557.812 + 722.75 + + + + 1 + 980 + 797.125 + + + + 2 + 428.75 + 259 + + + + 1 + 111.737 + -379.891 + + + + 1 + 389.375 + 718.375 + + + + 2 + 815.208 + 1020.25 + + + + 2 + 138.016 + -379.886 + + + + 2 + 541.042 + 757.75 + + + + 1 + 544.688 + 280.875 + + + + 1 + 473.958 + 819 + + + + 2 + 138.001 + -379.885 + + + + 1 + 1220.62 + 425.25 + + + + 2 + 544.688 + 757.75 + + + + 2 + 444.792 + 1011.5 + + + + 1 + 512.75 + 114.625 + + + + 2 + 138.016 + -379.886 + + + + 1 + 541.042 + 184.625 + + + + 2 + 280 + 884.625 + + + + 2 + 137.993 + -379.886 + + + + 1 + 1106.88 + 399 + + + + 2 + 1087.19 + 757.75 + + + + 2 + 507.5 + 114.625 + + + + 1 + 179.375 + 910.875 + + + + 1 + 111.739 + -379.88 + + + + 1 + 481.25 + 788.375 + + + + 1 + 280 + 897.75 + + + + 2 + 137.999 + -379.881 + + + + 2 + 465.938 + 49 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 945 + 840.875 + + + + 2 + 411.25 + 819 + + + + 1 + 111.762 + -379.886 + + + + 1 + 233.333 + 875.875 + + + + 2 + 627.812 + 810.25 + + + + 1 + 111.743 + -379.891 + + + + 2 + 833.438 + 1020.25 + + + + 1 + 507.5 + 53.375 + + + + 1 + 654.792 + 486.5 + + + + 2 + 138.012 + -379.886 + + + + 2 + 157.5 + 893.375 + + + + 1 + 710.208 + 530.25 + + + + 2 + 473.958 + 805.875 + + + + 1 + 111.743 + -379.889 + + + + 2 + 775.833 + 1011.5 + + + + 2 + 507.5 + 40.25 + + + + 1 + 111.768 + -379.885 + + + + 1 + 328.125 + 989.625 + + + + 2 + 631.458 + 810.25 + + + + 1 + 850.938 + 609 + + + + 1 + 1071 + 534.625 + + + + 1 + 1136.04 + 604.625 + + + + 1 + 111.742 + -379.886 + + + + 1 + 680.312 + 110.25 + + + + 2 + 402.5 + 687.75 + + + + 1 + 284.375 + 775.25 + + + + 1 + 904.167 + 1011.5 + + + + 1 + 541.042 + 311.5 + + + + 2 + 770 + 224 + + + + 1 + 488.542 + 429.625 + + + + 2 + 138.003 + -379.889 + + + + 1 + 1181.25 + 735.875 + + + + 1 + 822.5 + 1033.38 + + + + 3 + 1146.25 + 434 + + + + 1 + 319.375 + 1072.75 + + + + 1 + 418.542 + 700.875 + + + + 1 + 656.25 + 644 + + + + 1 + 111.75 + -379.898 + + + + 1 + 1203.12 + 403.375 + + + + 2 + 138.016 + -379.882 + + + + 1 + 544.688 + 215.25 + + + + 2 + 969.062 + 784 + + + + 2 + 437.5 + 854 + + + + 1 + 328.125 + 1059.62 + + + + 1 + 546.875 + 718.375 + + + + 1 + 469.583 + 31.5 + + + + 1 + 380.625 + 945.875 + + + + 1 + 111.752 + -379.879 + + + + 1 + 508.958 + 547.75 + + + + 2 + 638.75 + 810.25 + + + + 1 + 428.75 + 862.75 + + + + 1 + 180.833 + 762.125 + + + + 1 + 931.875 + 827.75 + + + + 1 + 1231.56 + 442.75 + + + + 1 + 457.917 + 333.375 + + + + 2 + 138.002 + -379.879 + + + + 2 + 1146.25 + 727.125 + + + + 2 + 877.188 + 460.25 + + + + 1 + 163.333 + 302.75 + + + + 1 + 700 + 119 + + + + 2 + 546.875 + 705.25 + + + + 2 + 137.989 + -379.88 + + + + 1 + 253.75 + 189 + + + + 1 + 111.749 + -379.887 + + + + 1 + 638.75 + 823.375 + + + + 1 + 610.312 + 731.5 + + + + 1 + 320.833 + 1024.62 + + + + 2 + 398.125 + 775.25 + + + + 2 + 1181.25 + 718.375 + + + + 1 + 111.759 + -379.867 + + + + 1 + 928.958 + 407.75 + + + + 1 + 111.741 + -379.888 + + + + 2 + 822.5 + 1020.25 + + + + 2 + 328.125 + 775.25 + + + + 1 + 732.812 + 359.625 + + + + 1 + 1216.25 + 714 + + + + 2 + 138.017 + -379.879 + + + + 1 + 111.749 + -379.884 + + + + 1 + 956.667 + 941.5 + + + + 1 + 1194.38 + 700.875 + + + + 2 + 516.25 + 114.625 + + + + 2 + 1071 + 521.5 + + + + 2 + 138.001 + -379.881 + + + + 2 + 137.988 + -379.893 + + + + 1 + 438.958 + 49 + + + + 1 + 581.875 + 565.25 + + + + 1 + 234.062 + 232.75 + + + + 1 + 770 + 237.125 + + + + 2 + 137.986 + -379.885 + + + + 2 + 137.987 + -379.892 + + + + 2 + 625.625 + 565.25 + + + + 1 + 1093.75 + 429.625 + + + + 2 + 234.062 + 219.625 + + + + 2 + 931.875 + 840.875 + + + + 2 + 137.998 + -379.865 + + + + 2 + 363.125 + 1072.75 + + + + 1 + 111.752 + -379.884 + + + + 2 + 181.562 + 320.25 + + + + 1 + 1124.38 + 473.375 + + + + 2 + 1216.25 + 700.875 + + + + 1 + 111.736 + -379.885 + + + + 2 + 472.5 + 862.75 + + + + 1 + 111.754 + -379.88 + + + + 1 + 280 + 902.125 + + + + 1 + 529.375 + 167.125 + + + + 1 + 1305.94 + 582.75 + + + + 2 + 980 + 784 + + + + 2 + 1316.88 + 565.25 + + + + 2 + 137.999 + -379.884 + + + + 1 + 111.751 + -379.878 + + + + 1 + 538.125 + 412.125 + + + + 1 + 714.583 + 324.625 + + + + 1 + 300.417 + 202.125 + + + + 1 + 651.875 + 679 + + + + 1 + 1216.25 + 670.25 + + + + 1 + 111.762 + -379.88 + + + + 2 + 137.987 + -379.891 + + + + 1 + 402.5 + 700.875 + + + + 1 + 385 + 574 + + + + 3 + 850.938 + 1020.25 + + + + 1 + 627.812 + 823.375 + + + + 1 + 111.75 + -379.877 + + + + 1 + 111.748 + -379.869 + + + + 1 + 387.917 + 228.375 + + + + 2 + 708.75 + 932.75 + + + + 1 + 1173.96 + 700.875 + + + + 1 + 686.875 + 425.25 + + + + 2 + 138 + -379.877 + + + + 1 + 111.76 + -379.882 + + + + 1 + 658.438 + 504 + + + + 1 + 920.208 + 972.125 + + + + 2 + 538.125 + 399 + + + + 2 + 686.875 + 412.125 + + + + 1 + 730.625 + 613.375 + + + + 2 + 138.009 + -379.867 + + + + 2 + 138.013 + -379.886 + + + + 1 + 382.083 + 801.5 + + + + 1 + 431.667 + 110.25 + + + + 1 + 516.25 + 127.75 + + + + 2 + 651.875 + 692.125 + + + + 1 + 1159.38 + 718.375 + + + + 2 + 138.012 + -379.884 + + + + 2 + 138.01 + -379.882 + + + + 1 + 182.292 + 350.875 + + + + 1 + 551.76 + 650.436 + + + + 2 + 529.375 + 154 + + + + 2 + 949.375 + 959 + + + + 2 + 138.009 + -379.865 + + + + 2 + 138.002 + -379.884 + + + + 1 + 1249.06 + 687.75 + + + + 1 + 367.5 + 819 + + + + 2 + 544.688 + 202.125 + + + + 1 + 949.375 + 932.75 + + + + 1 + 111.753 + -379.86 + + + + 2 + 138 + -379.898 + + + + 2 + 1102.5 + 521.5 + + + + 1 + 646.042 + 792.75 + + + + 2 + 892.5 + 792.75 + + + + 1 + 111.748 + -379.884 + + + + 2 + 138.014 + -379.879 + + + + 2 + 459.375 + 1011.5 + + + + 1 + 745.208 + 595.875 + + + + 2 + 520.625 + 114.625 + + + + 1 + 111.768 + -379.879 + + + + 1 + 111.753 + -379.882 + + + + 1 + 975.625 + 399 + + + + 1 + 527.188 + 814.625 + + + + 1 + 124.688 + 906.5 + + + + 1 + 111.748 + -379.894 + + + + 1 + 770 + 241.5 + + + + 1 + 877.188 + 473.375 + + + + 1 + 1109.06 + 775.25 + + + + 2 + 1203.12 + 718.375 + + + + 1 + 759.062 + 976.5 + + + + 2 + 124.688 + 893.375 + + + + 1 + 111.749 + -379.896 + + + + 1 + 505.312 + 565.25 + + + + 1 + 487.812 + 66.5 + + + + 1 + 354.375 + 775.25 + + + + 1 + 430.208 + 994 + + + + 1 + 708.75 + 945.875 + + + + 2 + 137.995 + -379.885 + + + + 2 + 770 + 180.25 + + + + 1 + 717.5 + 565.25 + + + + 1 + 391.562 + 945.875 + + + + 1 + 1133.12 + 434 + + + + 1 + 505.312 + 797.125 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 111.749 + -379.89 + + + + 1 + 640.938 + 79.625 + + + + 1 + 927.5 + 587.125 + + + + 1 + 135.625 + 910.875 + + + + 2 + 669.375 + 486.5 + + + + 2 + 505.312 + 797.125 + + + + 2 + 181.562 + 245.875 + + + + 1 + 111.752 + -379.883 + + + + 1 + 446.25 + 959 + + + + 1 + 201.25 + 928.375 + + + + 1 + 167.708 + 263.375 + + + + 1 + 490 + 40.25 + + + + 1 + 1293.54 + 469 + + + + 2 + 230.417 + 219.625 + + + + 1 + 111.737 + -379.892 + + + + 1 + 520.625 + 101.5 + + + + 1 + 752.5 + 298.375 + + + + 1 + 437.5 + 696.5 + + + + 2 + 1316.88 + 525.875 + + + + 4 + 918.75 + 840.875 + + + + 2 + 544.688 + 329 + + + + 2 + 138.005 + -379.884 + + + + 2 + 640.938 + 66.5 + + + + 1 + 531.562 + 495.25 + + + + 1 + 905.625 + 775.25 + + + + 2 + 350 + 1042.12 + + + + 1 + 1146.25 + 416.5 + + + + 1 + 555.189 + 644.017 + + + + 2 + 137.998 + -379.869 + + + + 2 + 990.208 + 399 + + + + 1 + 531.562 + 62.125 + + + + 2 + 678.125 + 692.125 + + + + 1 + 167.708 + 368.375 + + + + 1 + 459.375 + 189 + + + + 2 + 759.062 + 224 + + + + 1 + 111.748 + -379.871 + + + + 2 + 927.5 + 569.625 + + + + 1 + 638.75 + 709.625 + + + + 1 + 549.792 + 460.25 + + + + 1 + 1230.83 + 652.75 + + + + 1 + 1297.19 + 486.5 + + + + 2 + 137.993 + -379.889 + + + + 1 + 588.438 + 744.625 + + + + 1 + 350 + 1007.12 + + + + 1 + 1029.58 + 749 + + + + 1 + 522.083 + 154 + + + + 2 + 479.062 + 600.25 + + + + 1 + 111.741 + -379.888 + + + + 1 + 770 + 193.375 + + + + 1 + 258.125 + 224 + + + + 1 + 321.562 + 245.875 + + + + 1 + 453.542 + 66.5 + + + + 2 + 137.998 + -379.884 + + + + 2 + 553.438 + 477.75 + + + + 1 + 927.5 + 582.75 + + + + 1 + 417.812 + 1107.75 + + + + 1 + 192.5 + 263.375 + + + + 1 + 339.792 + 210.875 + + + + 1 + 111.751 + -379.885 + + + + 1 + 557.665 + 652.251 + + + + 1 + 1273.12 + 525.875 + + + + 1 + 956.667 + 902.125 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 167.125 + + + + 2 + 503.125 + 683.375 + + + + 2 + 138.003 + -379.882 + + + + 1 + 943.542 + 425.25 + + + + 1 + 1085 + 569.625 + + + + 1 + 500.5 + 132.125 + + + + 1 + 1093.75 + 399 + + + + 1 + 446.25 + 84 + + + + 1 + 938.438 + 919.625 + + + + 1 + 111.749 + -379.881 + + + + 2 + 986.562 + 399 + + + + 2 + 371.875 + 989.625 + + + + 1 + 315 + 525.875 + + + + 1 + 154.583 + 928.375 + + + + 1 + 927.5 + 1007.12 + + + + 2 + 535.208 + 44.625 + + + + 1 + 111.763 + -379.886 + + + + 1 + 113.75 + 893.375 + + + + 2 + 190.312 + 910.875 + + + + 1 + 199.062 + 797.125 + + + + 2 + 710.938 + 119 + + + + 1 + 188.125 + 797.125 + + + + 2 + 549.062 + 399 + + + + 2 + 137.991 + -379.888 + + + + 1 + 415.625 + 1011.5 + + + + 4 + 172.812 + 915.25 + + + + 1 + 450.625 + 740.25 + + + + 1 + 710.938 + 132.125 + + + + 1 + 470.312 + 464.625 + + + + 2 + 138.004 + -379.88 + + + + 1 + 649.688 + 810.25 + + + + 2 + 223.125 + 910.875 + + + + 1 + 159.688 + 810.25 + + + + 1 + 468.125 + 617.75 + + + + 1 + 990.208 + 385.875 + + + + 2 + 137.998 + -379.871 + + + + 1 + 484.167 + 49 + + + + 1 + 1161.56 + 692.125 + + + + 1 + 1273.12 + 565.25 + + + + 1 + 342.708 + 972.125 + + + + 1 + 541.042 + 245.875 + + + + 2 + 138.004 + -379.896 + + + + 1 + 393.75 + 854 + + + + 1 + 755.417 + 959 + + + + 1 + 137.812 + 792.75 + + + + 1 + 525 + 40.25 + + + + 1 + 111.746 + -379.88 + + + + 2 + 533.75 + 40.25 + + + + 1 + 339.062 + 875.875 + + + + 2 + 125.417 + 823.375 + + + + 1 + 428.75 + 679 + + + + 1 + 111.752 + -379.875 + + + + 1 + 748.125 + 224 + + + + 1 + 691.25 + 110.25 + + + + 1 + 422.188 + 718.375 + + + + 1 + 389.375 + 836.5 + + + + 1 + 476.875 + 683.375 + + + + 1 + 840 + 604.625 + + + + 1 + 111.751 + -379.872 + + + + 1 + 554.029 + 644.296 + + + + 1 + 450.625 + 368.375 + + + + 1 + 175 + 298.375 + + + + 1 + 533.75 + 280.875 + + + + 1 + 987.292 + 784 + + + + 2 + 840 + 591.5 + + + + 1 + 111.743 + -379.88 + + + + 2 + 437.5 + 722.75 + + + + 1 + 481.25 + 464.625 + + + + 1 + 415.625 + 276.5 + + + + 1 + 159.688 + 337.75 + + + + 2 + 949.375 + 919.625 + + + + 2 + 522.812 + 202.125 + + + + 1 + 111.759 + -379.866 + + + + 1 + 317.188 + 858.375 + + + + 1 + 936.25 + 897.75 + + + + 1 + 1275.31 + 504 + + + + 1 + 1159.38 + 451.5 + + + + 2 + 446.25 + 945.875 + + + + 2 + 138.002 + -379.869 + + + + 2 + 785.312 + 504 + + + + 2 + 645.312 + 630.875 + + + + 1 + 960.312 + 976.5 + + + + 1 + 516.25 + 57.75 + + + + 1 + 490 + 700.875 + + + + 1 + 339.792 + 215.25 + + + + 1 + 551.787 + 646.264 + + + + 2 + 461.562 + 350.875 + + + + 1 + 111.748 + -379.866 + + + + 1 + 599.375 + 75.25 + + + + 1 + 391.562 + 705.25 + + + + 2 + 140 + 858.375 + + + + 1 + 892.5 + 805.875 + + + + 2 + 592.083 + 731.5 + + + + 1 + 111.768 + -379.883 + + + + 2 + 1080.62 + 412.125 + + + + 1 + 253.75 + 482.125 + + + + 1 + 446.25 + 189 + + + + 1 + 242.812 + 482.125 + + + + 2 + 154.583 + 915.25 + + + + 2 + 892.5 + 792.75 + + + + 1 + 684.688 + 875.875 + + + + 2 + 138.009 + -379.866 + + + + 1 + 508.958 + 779.625 + + + + 1 + 918.75 + 858.375 + + + + 1 + 737.188 + 994 + + + + 2 + 339.792 + 228.375 + + + + 1 + 240.625 + 206.5 + + + + 2 + 138.008 + -379.869 + + + + 1 + 539.583 + 687.75 + + + + 2 + 498.75 + 40.25 + + + + 1 + 640.938 + 84 + + + + 1 + 717.5 + 731.5 + + + + 2 + 588.438 + 731.5 + + + + 2 + 928.958 + 880.25 + + + + 2 + 138 + -379.881 + + + + 1 + 203.438 + 263.375 + + + + 2 + 701.458 + 932.75 + + + + 1 + 662.812 + 893.375 + + + + 2 + 1172.5 + 674.625 + + + + 1 + 949.375 + 972.125 + + + + 1 + 762.708 + 224 + + + + 1 + 450.625 + 705.25 + + + + 2 + 138.004 + -379.881 + + + + 1 + 694.167 + 412.125 + + + + 1 + 936.25 + 442.75 + + + + 1 + 413.438 + 145.25 + + + + 2 + 631.458 + 595.875 + + + + 2 + 942.083 + 919.625 + + + + 1 + 205.625 + 434 + + + + 2 + 455 + 679 + + + + 1 + 111.753 + -379.88 + + + + 1 + 476.875 + 66.5 + + + + 2 + 761.25 + 731.5 + + + + 1 + 603.75 + 44.625 + + + + 2 + 759.062 + 180.25 + + + + 1 + 739.375 + 749 + + + + 2 + 335.417 + 1042.12 + + + + 1 + 111.756 + -379.861 + + + + 1 + 439.688 + 368.375 + + + + 1 + 905.625 + 840.875 + + + + 2 + 777.292 + 180.25 + + + + 2 + 287.292 + 884.625 + + + + 1 + 790.417 + 994 + + + + 2 + 540.312 + 154 + + + + 1 + 111.736 + -379.884 + + + + 1 + 603.75 + 582.75 + + + + 2 + 1312.5 + 604.625 + + + + 1 + 1305.94 + 543.375 + + + + 3 + 172.812 + 915.25 + + + + 2 + 737.188 + 149.625 + + + + 1 + 536.667 + 136.5 + + + + 1 + 111.755 + -379.868 + + + + 1 + 796.25 + 521.5 + + + + 1 + 665 + 412.125 + + + + 1 + 905.625 + 810.25 + + + + 2 + 185.208 + 245.875 + + + + 1 + 1092 + 521.5 + + + + 1 + 111.761 + -379.881 + + + + 1 + 745.208 + 263.375 + + + + 1 + 428.75 + 1085.88 + + + + 1 + 960.312 + 937.125 + + + + 1 + 164.062 + 385.875 + + + + 1 + 111.763 + -379.879 + + + + 2 + 317.188 + 1042.12 + + + + 2 + 196.875 + 280.875 + + + + 2 + 958.125 + 840.875 + + + + 1 + 457.188 + 84 + + + + 1 + 858.958 + 447.125 + + + + 1 + 1117.81 + 639.625 + + + + 1 + 420 + 110.25 + + + + 1 + 669.375 + 92.75 + + + + 1 + 317.188 + 1055.25 + + + + 1 + 459.375 + 805.875 + + + + 1 + 1067.5 + 504 + + + + 1 + 665 + 674.625 + + + + 1 + 371.875 + 574 + + + + 2 + 858.958 + 460.25 + + + + 1 + 223.125 + 237.125 + + + + 1 + 542.5 + 62.125 + + + + 1 + 177.917 + 320.25 + + + + 1 + 638.75 + 613.375 + + + + 1 + 380.625 + 941.5 + + + + 1 + 947.188 + 442.75 + + + + 1 + 330.312 + 1090.25 + + + + 1 + 947.188 + 880.25 + + + + 1 + 339.062 + 989.625 + + + + 1 + 1251.25 + 639.625 + + + + 1 + 596.458 + 552.125 + + + + 1 + 1054.38 + 407.75 + + + + 2 + 503.125 + 805.875 + + + + 2 + 1099.58 + 569.625 + + + + 2 + 170.625 + 792.75 + + + + 2 + 596.458 + 565.25 + + + + 2 + 819.583 + 766.5 + + + + 1 + 295.312 + 792.75 + + + + 1 + 175 + 385.875 + + + + 2 + 408.333 + 854 + + + + 1 + 634.375 + 630.875 + + + + 1 + 1208.96 + 687.75 + + + + 1 + 282.188 + 237.125 + + + + 2 + 1208.96 + 700.875 + + + + 1 + 1302.29 + 547.75 + + + + 1 + 1133.12 + 714 + + + + 2 + 1133.12 + 727.125 + + + + 2 + 666.458 + 875.875 + + + + 1 + 525 + 132.125 + + + + 1 + 631.458 + 582.75 + + + + 1 + 526.458 + 263.375 + + + + 2 + 678.125 + 630.875 + + + + 1 + 408.333 + 840.875 + + + + 1 + 829.792 + 1002.75 + + + + 1 + 914.375 + 880.25 + + + + 1 + 285.833 + 219.625 + + + + 1 + 1095.94 + 582.75 + + + + 1 + 1128.75 + 674.625 + + + + 1 + 415.625 + 259 + + + + 2 + 1050 + 390.25 + + + + 2 + 958.125 + 880.25 + + + + 1 + 488.542 + 823.375 + + + + 2 + 391.562 + 245.875 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 518.438 + 171.5 + + + + 1 + 446.25 + 154 + + + + 2 + 380.625 + 928.375 + + + + 1 + 1047.81 + 784 + + + + 2 + 708.75 + 412.125 + + + + 1 + 526.458 + 202.125 + + + + 2 + 603.75 + 57.75 + + + + 1 + 544.688 + 775.25 + + + + 1 + 409.062 + 110.25 + + + + 1 + 1114.17 + 552.125 + + + + 1 + 777.292 + 167.125 + + + + 1 + 293.125 + 237.125 + + + + 2 + 183.75 + 915.25 + + + + 1 + 111.751 + -379.873 + + + + 2 + 916.562 + 569.625 + + + + 1 + 737.188 + 162.75 + + + + 1 + 938.438 + 1007.12 + + + + 1 + 96.25 + 823.375 + + + + 1 + 559.328 + 646.036 + + + + 1 + 1050 + 377.125 + + + + 1 + 847.292 + 591.5 + + + + 2 + 1295 + 639.625 + + + + 1 + 411.25 + 735.875 + + + + 1 + 185.208 + 232.75 + + + + 2 + 627.812 + 595.875 + + + + 1 + 385 + 1090.25 + + + + 2 + 1095.94 + 569.625 + + + + 1 + 322.292 + 490.875 + + + + 1 + 199.792 + 245.875 + + + + 1 + 126.875 + 792.75 + + + + 1 + 1111.25 + 447.125 + + + + 1 + 945 + 823.375 + + + + 2 + 1025.94 + 766.5 + + + + 1 + 927.5 + 919.625 + + + + 1 + 148.75 + 805.875 + + + + 1 + 826.875 + 784 + + + + 1 + 473.958 + 447.125 + + + + 2 + 138.001 + -379.86 + + + + 2 + 227.5 + 416.5 + + + + 2 + 971.25 + 919.625 + + + + 2 + 148.75 + 792.75 + + + + 4 + 492.188 + 805.875 + + + + 1 + 990.938 + 801.5 + + + + 2 + 137.993 + -379.88 + + + + 1 + 958.125 + 784 + + + + 2 + 710.938 + 342.125 + + + + 1 + 249.375 + 224 + + + + 2 + 745.208 + 613.375 + + + + 1 + 212.917 + 399 + + + + 1 + 111.758 + -379.869 + + + + 2 + 1001.88 + 784 + + + + 1 + 1146.25 + 744.625 + + + + 1 + 141.458 + 775.25 + + + + 1 + 457.188 + 959 + + + + 1 + 1017.19 + 560.875 + + + + 2 + 138.002 + -379.875 + + + + 1 + 772.188 + 1029 + + + + 2 + 212.188 + 219.625 + + + + 1 + 679.583 + 399 + + + + 1 + 516.25 + 565.25 + + + + 1 + 183.75 + 416.5 + + + + 1 + 111.754 + -379.881 + + + + 1 + 1295 + 543.375 + + + + 1 + 535.208 + 477.75 + + + + 1 + 834.167 + 753.375 + + + + 2 + 538.125 + 797.125 + + + + 2 + 138.018 + -379.883 + + + + 1 + 896.875 + 1029 + + + + 1 + 421.458 + 1050.88 + + + + 2 + 412.708 + 92.75 + + + + 1 + 525 + 560.875 + + + + 2 + 138.017 + -379.884 + + + + 2 + 861.875 + 591.5 + + + + 1 + 215.833 + 202.125 + + + + 1 + 170.625 + 337.75 + + + + 2 + 834.167 + 766.5 + + + + 1 + 415.625 + 871.5 + + + + 2 + 138.001 + -379.878 + + + + 1 + 522.812 + 346.5 + + + + 2 + 164.062 + 280.875 + + + + 1 + 1172.5 + 434 + + + + 1 + 807.188 + 521.5 + + + + 2 + 443.333 + 862.75 + + + + 2 + 428.75 + 1090.25 + + + + 2 + 138.006 + -379.861 + + + + 1 + 533.75 + 219.625 + + + + 2 + 266.875 + 206.5 + + + + 1 + 1157.92 + 657.125 + + + + 1 + 1198.75 + 438.375 + + + + 2 + 426.562 + 854 + + + + 1 + 997.5 + 416.5 + + + + 2 + 138.001 + -379.871 + + + + 1 + 245 + 784 + + + + 1 + 545.417 + 381.5 + + + + 1 + 332.5 + 245.875 + + + + 2 + 780.938 + 180.25 + + + + 1 + 805 + 766.5 + + + + 2 + 325.938 + 508.375 + + + + 2 + 138.001 + -379.873 + + + + 1 + 194.688 + 434 + + + + 1 + 438.958 + 928.375 + + + + 1 + 544.688 + 219.625 + + + + 2 + 729.167 + 119 + + + + 1 + 1045.62 + 407.75 + + + + 2 + 304.062 + 219.625 + + + + 2 + 138.011 + -379.881 + + + + 2 + 245 + 219.625 + + + + 1 + 371.875 + 1077.12 + + + + 1 + 380.625 + 263.375 + + + + 2 + 1185.62 + 434 + + + + 2 + 638.75 + 692.125 + + + + 1 + 111.748 + -379.867 + + + + 1 + 201.25 + 219.625 + + + + 1 + 559.94 + 647.625 + + + + 1 + 507.5 + 57.75 + + + + 2 + 713.125 + 92.75 + + + + 1 + 640.208 + 469 + + + + 1 + 494.375 + 797.125 + + + + 1 + 111.765 + -379.882 + + + + 1 + 750.312 + 731.5 + + + + 1 + 412.708 + 79.625 + + + + 1 + 428.75 + 276.5 + + + + 1 + 866.25 + 477.75 + + + + 2 + 435.312 + 127.75 + + + + 1 + 298.958 + 775.25 + + + + 1 + 745.208 + 600.25 + + + + 1 + 638.75 + 827.75 + + + + 1 + 96.25 + 858.375 + + + + 2 + 435.312 + 66.5 + + + + 1 + 1273.12 + 657.125 + + + + 1 + 398.125 + 539 + + + + 1 + 1106.88 + 582.75 + + + + 2 + 140 + 823.375 + + + + 2 + 436.042 + 1068.38 + + + + 2 + 568.75 + 560.875 + + + + 1 + 748.125 + 994 + + + + 2 + 1106.88 + 569.625 + + + + 2 + 557.812 + 560.875 + + + + 1 + 304.062 + 525.875 + + + + 1 + 708.75 + 950.25 + + + + 2 + 679.583 + 412.125 + + + + 2 + 527.188 + 547.75 + + + + 1 + 437.5 + 740.25 + + + + 1 + 1264.38 + 469 + + + + 1 + 780.938 + 193.375 + + + + 1 + 1207.5 + 438.375 + + + + 1 + 559.612 + 650.188 + + + + 1 + 1253.44 + 469 + + + + 1 + 533.75 + 346.5 + + + + 1 + 426.562 + 867.125 + + + + 1 + 161.875 + 897.75 + + + + 2 + 848.75 + 766.5 + + + + 1 + 721.875 + 359.625 + + + + 1 + 728.438 + 565.25 + + + + 1 + 443.333 + 849.625 + + + + 1 + 530.833 + 399 + + + + 1 + 140 + 915.25 + + + + 1 + 376.25 + 792.75 + + + + 1 + 783.125 + 1029 + + + + 2 + 1227.19 + 700.875 + + + + 2 + 1287.71 + 525.875 + + + + 1 + 697.812 + 950.25 + + + + 1 + 234.062 + 237.125 + + + + 1 + 488.25 + 132.125 + + + + 2 + 457.188 + 945.875 + + + + 1 + 1268.75 + 604.625 + + + + 1 + 371.875 + 556.5 + + + + 1 + 1159.38 + 416.5 + + + + 1 + 153.125 + 280.875 + + + + 1 + 614.688 + 578.375 + + + + 1 + 811.562 + 1037.75 + + + + 1 + 759.792 + 280.875 + + + + 1 + 446.25 + 696.5 + + + + 1 + 714.583 + 329 + + + + 1 + 1111.25 + 477.75 + + + + 1 + 426.562 + 1011.5 + + + + 1 + 479.062 + 97.125 + + + + 1 + 457.188 + 617.75 + + + + 2 + 714.583 + 342.125 + + + + 1 + 1124.38 + 477.75 + + + + 1 + 190.312 + 910.875 + + + + 1 + 1006.25 + 560.875 + + + + 1 + 818.125 + 591.5 + + + + 1 + 1227.19 + 714 + + + + 1 + 125.417 + 840.875 + + + + 1 + 1071 + 539 + + + + 1 + 673.75 + 893.375 + + + + 1 + 980 + 801.5 + + + + 1 + 837.812 + 766.5 + + + + 1 + 546.875 + 92.75 + + + + 1 + 494.375 + 97.125 + + + + 2 + 1190 + 420.875 + + + + 1 + 1008.44 + 416.5 + + + + 1 + 527.188 + 416.5 + + + + 1 + 182.292 + 280.875 + + + + 1 + 1242.5 + 442.75 + + + + 1 + 686.875 + 429.625 + + + + 1 + 780.938 + 237.125 + + + + 1 + 325.208 + 228.375 + + + + 1 + 535.938 + 578.375 + + + + 2 + 780.938 + 224 + + + + 1 + 539.583 + 560.875 + + + + 1 + 1305.94 + 578.375 + + + + 1 + 107.188 + 875.875 + + + + 1 + 111.751 + -379.86 + + + + 1 + 724.792 + 547.75 + + + + 2 + 1305.94 + 565.25 + + + + 1 + 111.752 + -379.869 + + + + 1 + 433.125 + 171.5 + + + + 1 + 387.188 + 788.375 + + + + 1 + 1106.88 + 394.625 + + + + 2 + 137.996 + -379.88 + + + + 1 + 427.292 + 92.75 + + + + 2 + 614.688 + 565.25 + + + + 1 + 1080.62 + 429.625 + + + + 2 + 138.001 + -379.872 + + + + 1 + 649.688 + 613.375 + + + + 2 + 387.188 + 775.25 + + + + 1 + 395.938 + 1090.25 + + + + 2 + 138.015 + -379.882 + + + + 1 + 400.312 + 735.875 + + + + 1 + 907.812 + 1029 + + + + 1 + 404.688 + 854 + + + + 1 + 729.167 + 105.875 + + + + 1 + 111.766 + -379.879 + + + + 1 + 503.125 + 700.875 + + + + 1 + 454.792 + 775.25 + + + + 1 + 448.438 + 1024.62 + + + + 2 + 138.013 + -379.884 + + + + 1 + 402.5 + 705.25 + + + + 1 + 107.188 + 823.375 + + + + 1 + 1238.12 + 687.75 + + + + 2 + 253.75 + 766.5 + + + + 1 + 111.763 + -379.884 + + + + 1 + 872.812 + 1037.75 + + + + 2 + 457.917 + 862.75 + + + + 1 + 1284.06 + 652.75 + + + + 1 + 111.768 + -379.882 + + + + 2 + 110.833 + 858.375 + + + + 2 + 918.75 + 840.875 + + + + 2 + 667.188 + 630.875 + + + + 2 + 138.018 + -379.882 + + + + 2 + 387.917 + 928.375 + + + + 1 + 201.25 + 924 + + + + 2 + 698.542 + 92.75 + + + + 2 + 424.375 + 687.75 + + + + 1 + 111.749 + -379.874 + + + + 4 + 382.812 + 1094.62 + + + + 1 + 667.188 + 644 + + + + 2 + 472.5 + 171.5 + + + + 2 + 249.375 + 206.5 + + + + 2 + 138.013 + -379.879 + + + + 2 + 395.938 + 1090.25 + + + + 1 + 535.938 + 574 + + + + 2 + 110.833 + 823.375 + + + + 1 + 420 + 679 + + + + 2 + 138.003 + -379.88 + + + + 2 + 150.938 + 915.25 + + + + 1 + 1238.12 + 683.375 + + + + 1 + 938.438 + 582.75 + + + + 1 + 875 + 1011.5 + + + + 1 + 111.76 + -379.883 + + + + 3 + 146.562 + 893.375 + + + + 2 + 938.438 + 569.625 + + + + 2 + 1238.12 + 670.25 + + + + 2 + 468.125 + 66.5 + + + + 2 + 137.998 + -379.866 + + + + 1 + 553.438 + 44.625 + + + + 2 + 448.438 + 1011.5 + + + + 2 + 1006.25 + 543.375 + + + + 1 + 577.5 + 731.5 + + + + 1 + 111.75 + -379.881 + + + + 3 + 382.812 + 1094.62 + + + + 2 + 125.417 + 858.375 + + + + 2 + 428.75 + 1068.38 + + + + 2 + 555.625 + 263.375 + + + + 1 + 111.751 + -379.878 + + + + 2 + 533.75 + 75.25 + + + + 1 + 1172.5 + 447.125 + + + + 2 + 936.25 + 425.25 + + + + 1 + 148.75 + 320.25 + + + + 2 + 138.016 + -379.879 + + + + 3 + 463.75 + 722.75 + + + + 2 + 1172.5 + 434 + + + + 1 + 822.5 + 1037.75 + + + + 1 + 420 + 171.5 + + + + 2 + 137.986 + -379.884 + + + + 1 + 159.688 + 805.875 + + + + 2 + 1278.96 + 486.5 + + + + 2 + 535.938 + 560.875 + + + + 2 + 463.75 + 679 + + + + 1 + 111.751 + -379.871 + + + + 4 + 146.562 + 893.375 + + + + 2 + 341.25 + 1072.75 + + + + 1 + 350 + 1002.75 + + + + 1 + 446.25 + 600.25 + + + + 2 + 138.005 + -379.868 + + + + 2 + 476.875 + 683.375 + + + + 1 + 125.417 + 845.25 + + + + 1 + 488.25 + 127.75 + + + + 2 + 551.25 + 154 + + + + 2 + 137.998 + -379.867 + + + + 2 + 1121.46 + 622.125 + + + + 1 + 446.25 + 692.125 + + + + 2 + 193.958 + 910.875 + + + + 2 + 192.5 + 320.25 + + + + 1 + 111.767 + -379.884 + + + + 1 + 1223.54 + 700.875 + + + + 2 + 201.25 + 910.875 + + + + 2 + 1081.5 + 521.5 + + + + 2 + 336.875 + 508.375 + + + + 2 + 138.01 + -379.883 + + + + 2 + 1227.19 + 670.25 + + + + 1 + 476.875 + 62.125 + + + + 1 + 1081.5 + 534.625 + + + + 1 + 380.625 + 687.75 + + + + 1 + 111.767 + -379.879 + + + + 2 + 759.062 + 149.625 + + + + 2 + 752.5 + 280.875 + + + + 1 + 358.75 + 245.875 + + + + 1 + 111.757 + -379.87 + + + + 1 + 150.938 + 915.25 + + + + 1 + 249.375 + 219.625 + + + + 2 + 490 + 600.25 + + + + 2 + 137.997 + -379.88 + + + + 1 + 1275.31 + 451.5 + + + + 2 + 350 + 989.625 + + + + 1 + 511.875 + 263.375 + + + + 2 + 137.999 + -379.862 + + + + 4 + 463.75 + 722.75 + + + + 2 + 488.25 + 114.625 + + + + 2 + 516.25 + 683.375 + + + + 2 + 138.007 + -379.87 + + + + 1 + 1117.81 + 569.625 + + + + 1 + 698.542 + 79.625 + + + + 2 + 918.75 + 1011.5 + + + + 2 + 796.25 + 504 + + + + 1 + 111.749 + -379.862 + + + + 1 + 1105.42 + 757.75 + + + + 1 + 507.5 + 154 + + + + 2 + 159.688 + 792.75 + + + + 1 + 223.125 + 232.75 + + + + 1 + 111.76 + -379.883 + + + + 1 + 476.875 + 683.375 + + + + 1 + 424.375 + 66.5 + + + + 1 + 348.542 + 1059.62 + + + + 1 + 546.875 + 578.375 + + + + 1 + 762.708 + 180.25 + + + + 2 + 138.01 + -379.883 + + + + 1 + 463.75 + 683.375 + + + + 2 + 348.542 + 1072.75 + + + + 1 + 603.75 + 578.375 + + + + 2 + 1133.12 + 727.125 + + + + 1 + 111.76 + -379.884 + + + + 1 + 253.75 + 779.625 + + + + 2 + 621.25 + 731.5 + + + + 2 + 446.25 + 679 + + + + 2 + 137.991 + -379.88 + + + + 1 + 1188.54 + 718.375 + + + + 2 + 402.5 + 245.875 + + + + 1 + 382.083 + 805.875 + + + + 1 + 446.25 + 79.625 + + + + 2 + 138.01 + -379.884 + + + + 2 + 1205.31 + 700.875 + + + + 1 + 398.125 + 92.75 + + + + 2 + 1284.06 + 639.625 + + + + 2 + 137.999 + -379.874 + + + + 1 + 683.958 + 92.75 + + + + 1 + 110.833 + 810.25 + + + + 2 + 441.875 + 92.75 + + + + 1 + 111.741 + -379.88 + + + + 3 + 1098.12 + 460.25 + + + + 1 + 118.125 + 871.5 + + + + 1 + 341.25 + 1085.88 + + + + 1 + 1106.88 + 412.125 + + + + 1 + 111.747 + -379.88 + + + + 1 + 293.125 + 508.375 + + + + 1 + 193.958 + 897.75 + + + + 4 + 1098.12 + 460.25 + + + + 2 + 956.667 + 919.625 + + + + 2 + 382.083 + 819 + + + + 1 + 651.875 + 875.875 + + + + 1 + 441.875 + 259 + + + + 2 + 167.708 + 280.875 + + + + 2 + 272.708 + 884.625 + + + + 2 + 695.625 + 875.875 + + + + 1 + 354.367 + 775.25 + + + + 1 + 889.583 + 998.375 + + + + 1 + 1286.25 + 499.625 + + + + 2 + 555.625 + 202.125 + + + + 2 + 328.133 + 775.25 + + + + 1 + 328.125 + 1055.25 + + + + 2 + 1128.75 + 622.125 + + + + 1 + 520.625 + 477.75 + + + + 3 + 360.938 + 1094.62 + + + + 1 + 1192.19 + 731.5 + + + + 1 + 261.042 + 451.5 + + + + 2 + 564.375 + 477.75 + + + + 4 + 360.938 + 1094.62 + + + + 2 + 161.875 + 915.25 + + + + 1 + 931.875 + 854 + + + + 1 + 455 + 770.875 + + + + 1 + 616.875 + 57.75 + + + + 1 + 697.812 + 425.25 + + + + 1 + 546.875 + 62.125 + + + + 1 + 170.625 + 245.875 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 1128.75 + 635.25 + + + + 2 + 546.875 + 75.25 + + + + 2 + 214.375 + 245.875 + + + + 2 + 441.875 + 259 + + + + 1 + 180.833 + 766.5 + + + + 1 + 732.812 + 355.25 + + + + 2 + 1085 + 521.5 + + + + 1 + 659.167 + 53.375 + + + + 2 + 746.667 + 731.5 + + + + 3 + 433.125 + 171.5 + + + + 1 + 313.542 + 762.125 + + + + 1 + 651.875 + 705.25 + + + + 1 + 1245.42 + 670.25 + + + + 1 + 763.438 + 294 + + + + 1 + 972.708 + 770.875 + + + + 2 + 644.583 + 66.5 + + + + 1 + 310.625 + 228.375 + + + + 2 + 118.125 + 858.375 + + + + 1 + 1253.44 + 425.25 + + + + 1 + 167.708 + 267.75 + + + + 1 + 511.875 + 202.125 + + + + 2 + 169.167 + 915.25 + + + + 1 + 352.188 + 1072.75 + + + + 2 + 850.938 + 591.5 + + + + 1 + 520.625 + 44.625 + + + + 2 + 313.542 + 775.25 + + + + 1 + 1013.54 + 543.375 + + + + 1 + 395.208 + 674.625 + + + + 2 + 564.375 + 44.625 + + + + 2 + 763.438 + 280.875 + + + + 2 + 1262.19 + 639.625 + + + + 2 + 972.708 + 784 + + + + 2 + 730.625 + 932.75 + + + + 1 + 1301.56 + 617.75 + + + + 2 + 1143.33 + 674.625 + + + + 2 + 854.583 + 1020.25 + + + + 1 + 169.167 + 928.375 + + + + 2 + 455 + 259 + + + + 4 + 433.125 + 171.5 + + + + 2 + 732.812 + 342.125 + + + + 1 + 161.875 + 902.125 + + + + 2 + 844.375 + 1020.25 + + + + 1 + 1098.12 + 460.25 + + + + 2 + 651.875 + 692.125 + + + + 1 + 249.375 + 753.375 + + + + 1 + 686.875 + 932.75 + + + + 1 + 417.812 + 1068.38 + + + + 2 + 395.208 + 687.75 + + + + 2 + 249.375 + 766.5 + + + + 1 + 1076.25 + 757.75 + + + + 2 + 414.167 + 1090.25 + + + + 1 + 1157.92 + 661.5 + + + + 1 + 774.375 + 504 + + + + 2 + 1060.5 + 521.5 + + + + 2 + 1157.92 + 674.625 + + + + 1 + 231.875 + 206.5 + + + + 2 + 352.188 + 1072.75 + + + + 2 + 697.812 + 412.125 + + + + 1 + 844.375 + 460.25 + + + + 1 + 1139.69 + 622.125 + + + + 2 + 1286.25 + 486.5 + + + + 2 + 354.375 + 228.375 + + + + 1 + 541.042 + 189 + + + + 2 + 1257.08 + 451.5 + + + + 1 + 272.708 + 871.5 + + + + 1 + 630 + 66.5 + + + + 2 + 662.812 + 66.5 + + + + 2 + 1192.19 + 718.375 + + + + 2 + 888.125 + 460.25 + + + + 2 + 541.042 + 202.125 + + + + 2 + 1301.56 + 604.625 + + + + 2 + 411.25 + 556.5 + + + + 2 + 889.583 + 1011.5 + + + + 2 + 180.833 + 779.625 + + + + 2 + 503.125 + 447.125 + + + + 2 + 328.125 + 1042.12 + + + + 2 + 659.167 + 66.5 + + + + 2 + 196.875 + 368.375 + + + + 2 + 400.312 + 819 + + + + 1 + 142.917 + 880.25 + + + + 1 + 927.5 + 959 + + + + 2 + 931.875 + 840.875 + + + + 2 + 195.417 + 779.625 + + + + 2 + 142.917 + 893.375 + + + + 2 + 476.875 + 722.75 + + + + 1 + 182.292 + 355.25 + + + + 1 + 934.792 + 569.625 + + + + 1 + 832.708 + 578.375 + + + + 1 + 424.375 + 722.75 + + + + 1 + 691.25 + 105.875 + + + + 2 + 129.062 + 858.375 + + + + 2 + 832.708 + 591.5 + + + + 1 + 494.375 + 547.75 + + + + 1 + 854.583 + 1007.12 + + + + 1 + 128.333 + 893.375 + + + + 1 + 1159.38 + 740.25 + + + + 2 + 660.625 + 595.875 + + + + 2 + 691.25 + 92.75 + + + + 1 + 934.792 + 989.625 + + + + 1 + 320.833 + 845.25 + + + + 2 + 568.75 + 705.25 + + + + 1 + 956.667 + 906.5 + + + + 2 + 938.438 + 959 + + + + 2 + 399.583 + 1090.25 + + + + 1 + 455 + 49 + + + + 1 + 400.312 + 832.125 + + + + 2 + 290.938 + 884.625 + + + + 1 + 616.875 + 810.25 + + + + 1 + 500.5 + 127.75 + + + + 1 + 461.562 + 875.875 + + + + 2 + 660.625 + 810.25 + + + + 1 + 1284.06 + 565.25 + + + + 1 + 850.938 + 604.625 + + + + 2 + 805 + 1011.5 + + + + 1 + 998.958 + 530.25 + + + + 2 + 1297.92 + 604.625 + + + + 2 + 182.292 + 368.375 + + + + 1 + 360.938 + 1002.75 + + + + 1 + 616.875 + 595.875 + + + + 1 + 236.25 + 766.5 + + + + 2 + 500.5 + 114.625 + + + + 2 + 373.333 + 928.375 + + + + 1 + 525 + 705.25 + + + + 1 + 729.167 + 342.125 + + + + 1 + 746.667 + 718.375 + + + + 2 + 439.688 + 1068.38 + + + + 1 + 231.875 + 464.625 + + + + 2 + 261.042 + 464.625 + + + + 1 + 451.468 + 773.465 + + + + 2 + 461.562 + 862.75 + + + + 2 + 555.625 + 329 + + + + 1 + 385 + 569.625 + + + + 1 + 369.688 + 928.375 + + + + 1 + 306.25 + 788.375 + + + + 2 + 971.25 + 959 + + + + 2 + 315 + 508.375 + + + + 2 + 741.562 + 280.875 + + + + 2 + 748.125 + 149.625 + + + + 2 + 560 + 399 + + + + 1 + 1264.38 + 464.625 + + + + 2 + 333.958 + 1072.75 + + + + 1 + 290.938 + 897.75 + + + + 1 + 800.625 + 1020.25 + + + + 1 + 1284.06 + 525.875 + + + + 1 + 761.25 + 1011.5 + + + + 1 + 1249.06 + 683.375 + + + + 2 + 1280.42 + 639.625 + + + + 1 + 511.875 + 329 + + + + 2 + 360.938 + 989.625 + + + + 2 + 396.667 + 819 + + + + 2 + 315 + 219.625 + + + + 1 + 379.167 + 1107.75 + + + + 1 + 450.627 + 771.118 + + + + 2 + 739.375 + 547.75 + + + + 2 + 379.167 + 1094.62 + + + + 2 + 383.542 + 775.25 + + + + 2 + 387.917 + 245.875 + + + + 1 + 498.75 + 114.625 + + + + 2 + 1302.29 + 525.875 + + + + 2 + 457.78 + 767.49 + + + + 2 + 649.688 + 595.875 + + + + 1 + 402.5 + 259 + + + + 1 + 368.958 + 762.125 + + + + 2 + 995.312 + 543.375 + + + + 2 + 936.25 + 880.25 + + + + 1 + 516.25 + 399 + + + + 2 + 998.958 + 543.375 + + + + 1 + 1216.25 + 420.875 + + + + 2 + 539.583 + 705.25 + + + + 2 + 538.125 + 547.75 + + + + 2 + 233.333 + 893.375 + + + + 2 + 1235.21 + 425.25 + + + + 2 + 428.75 + 259 + + + + 1 + 905.625 + 989.625 + + + + 2 + 573.125 + 75.25 + + + + 2 + 943.542 + 880.25 + + + + 2 + 1249.06 + 670.25 + + + + 1 + 463.75 + 722.75 + + + + 2 + 542.5 + 114.625 + + + + 1 + 936.25 + 893.375 + + + + 1 + 399.583 + 1077.12 + + + + 2 + 1287.71 + 565.25 + + + + 1 + 914.375 + 425.25 + + + + 1 + 748.125 + 989.625 + + + + 1 + 1302.29 + 512.75 + + + + 2 + 454.603 + 766.513 + + + + 1 + 358.75 + 556.5 + + + + 1 + 807.188 + 517.125 + + + + 1 + 439.688 + 1081.5 + + + + 1 + 269.062 + 884.625 + + + + 2 + 1120 + 757.75 + + + + 2 + 807.188 + 504 + + + + 2 + 1159.38 + 727.125 + + + + 2 + 247.917 + 893.375 + + + + 2 + 498.75 + 49 + + + + 1 + 380.625 + 259 + + + + 1 + 373.333 + 915.25 + + + + 1 + 509.688 + 114.625 + + + + 1 + 153.125 + 368.375 + + + + 1 + 428.75 + 245.875 + + + + 2 + 368.958 + 775.25 + + + + 2 + 533.75 + 75.25 + + + + 2 + 818.125 + 504 + + + + 2 + 385 + 556.5 + + + + 2 + 320.833 + 858.375 + + + + 1 + 557.82 + 644.584 + + + + 2 + 770 + 976.5 + + + + 2 + 380.625 + 245.875 + + + + 1 + 233.333 + 880.25 + + + + 2 + 592.812 + 565.25 + + + + 2 + 673.75 + 66.5 + + + + 1 + 315 + 521.5 + + + + 1 + 748.125 + 162.75 + + + + 1 + 459.375 + 447.125 + + + + 1 + 872.812 + 1033.38 + + + + 2 + 212.917 + 416.5 + + + + 2 + 958.125 + 425.25 + + + + 2 + 658.438 + 486.5 + + + + 1 + 212.917 + 403.375 + + + + 2 + 949.375 + 989.625 + + + + 1 + 554.167 + 547.75 + + + + 1 + 526.458 + 744.625 + + + + 1 + 726.25 + 976.5 + + + + 2 + 606.667 + 731.5 + + + + 2 + 526.458 + 757.75 + + + + 1 + 271.25 + 219.625 + + + + 1 + 488.542 + 819 + + + + 1 + 788.958 + 490.875 + + + + 1 + 520.625 + 75.25 + + + + 1 + 755.417 + 963.375 + + + + 2 + 320.833 + 1042.12 + + + + 2 + 275.625 + 464.625 + + + + 1 + 716.042 + 919.625 + + + + 1 + 695.625 + 547.75 + + + + 1 + 549.792 + 31.5 + + + + 2 + 275.625 + 206.5 + + + + 2 + 554.167 + 560.875 + + + + 1 + 1015 + 766.5 + + + + 1 + 640.208 + 473.375 + + + + 2 + 1058.75 + 766.5 + + + + 2 + 710.208 + 547.75 + + + + 2 + 549.792 + 44.625 + + + + 2 + 716.042 + 932.75 + + + + 2 + 418.542 + 718.375 + + + + 1 + 511.875 + 757.75 + + + + 2 + 640.208 + 486.5 + + + + 1 + 253.75 + 477.75 + + + + 2 + 791.875 + 180.25 + + + + 2 + 417.812 + 1090.25 + + + + 1 + 135.625 + 906.5 + + + + 2 + 472.5 + 350.875 + + + + 1 + 320.833 + 1029 + + + + 2 + 450.625 + 722.75 + + + + 2 + 555.625 + 757.75 + + + + 1 + 763.438 + 626.5 + + + + 2 + 646.042 + 810.25 + + + + 1 + 402.5 + 127.75 + + + + 2 + 523.542 + 547.75 + + + + 1 + 606.667 + 718.375 + + + + 1 + 1264.38 + 486.5 + + + + 1 + 523.542 + 534.625 + + + + 1 + 710.208 + 534.625 + + + + 1 + 428.75 + 350.875 + + + + 1 + 163.333 + 307.125 + + + + 1 + 748.125 + 180.25 + + + + 1 + 387.917 + 232.75 + + + + 2 + 774.375 + 280.875 + + + + 1 + 542.5 + 57.75 + + + + 2 + 301.875 + 884.625 + + + + 2 + 542.5 + 44.625 + + + + 1 + 1085 + 460.25 + + + + 1 + 907.812 + 1024.62 + + + + 1 + 322.292 + 495.25 + + + + 1 + 258.125 + 884.625 + + + + 1 + 649.688 + 609 + + + + 2 + 763.438 + 613.375 + + + + 2 + 446.25 + 127.75 + + + + 2 + 907.812 + 1011.5 + + + + 1 + 342.708 + 976.5 + + + + 1 + 166.25 + 779.625 + + + + 2 + 488.542 + 805.875 + + + + 1 + 199.062 + 792.75 + + + + 2 + 129.062 + 823.375 + + + + 2 + 306.25 + 775.25 + + + + 1 + 840 + 1020.25 + + + + 1 + 943.542 + 867.125 + + + + 2 + 199.062 + 779.625 + + + + 2 + 1286.25 + 451.5 + + + + 1 + 646.042 + 797.125 + + + + 2 + 475.417 + 600.25 + + + + 1 + 700 + 342.125 + + + + 1 + 990.938 + 797.125 + + + + 2 + 651.875 + 66.5 + + + + 2 + 743.75 + 342.125 + + + + 2 + 990.938 + 784 + + + + 1 + 417.812 + 1103.38 + + + + 1 + 905.625 + 569.625 + + + + 2 + 748.125 + 976.5 + + + + 2 + 322.292 + 508.375 + + + + 2 + 949.375 + 569.625 + + + + 1 + 129.062 + 836.5 + + + + 2 + 339.062 + 858.375 + + + + 2 + 1172.5 + 727.125 + + + + 1 + 475.417 + 587.125 + + + + 1 + 527.188 + 810.25 + + + + 1 + 581.875 + 57.75 + + + + 2 + 342.708 + 989.625 + + + + 2 + 527.188 + 797.125 + + + + 2 + 625.625 + 57.75 + + + + 1 + 651.875 + 79.625 + + + + 1 + 599.375 + 70.875 + + + + 1 + 1242.5 + 451.5 + + + + 1 + 339.062 + 871.5 + + + + 2 + 755.417 + 976.5 + + + + 2 + 525 + 114.625 + + + + 1 + 251.562 + 906.5 + + + + 2 + 253.75 + 464.625 + + + + 2 + 883.75 + 1020.25 + + + + 2 + 1161.56 + 674.625 + + + + 1 + 1008.44 + 412.125 + + + + 2 + 508.958 + 797.125 + + + + 2 + 1008.44 + 399 + + + + 2 + 681.042 + 875.875 + + + + 2 + 163.333 + 320.25 + + + + 2 + 135.625 + 893.375 + + + + 1 + 549.792 + 464.625 + + + + 2 + 790.417 + 1011.5 + + + + 1 + 418.542 + 705.25 + + + + 1 + 681.042 + 862.75 + + + + 1 + 539.583 + 692.125 + + + + 2 + 549.792 + 477.75 + + + + 1 + 450.625 + 709.625 + + + + 1 + 905.625 + 779.625 + + + + 2 + 599.375 + 57.75 + + + + 1 + 391.562 + 941.5 + + + + 2 + 1264.38 + 451.5 + + + + 2 + 391.562 + 928.375 + + + + 1 + 658.438 + 499.625 + + + + 1 + 541.042 + 315.875 + + + + 1 + 728.438 + 560.875 + + + + 2 + 481.25 + 805.875 + + + + 2 + 872.812 + 1020.25 + + + + 1 + 1029.58 + 753.375 + + + + 1 + 557.812 + 718.375 + + + + 2 + 210 + 779.625 + + + + 1 + 212.188 + 924 + + + + 2 + 960.312 + 959 + + + + 2 + 212.188 + 910.875 + + + + 2 + 262.5 + 893.375 + + + + 2 + 826.875 + 766.5 + + + + 2 + 541.042 + 329 + + + + 1 + 984.375 + 543.375 + + + + 2 + 487.812 + 49 + + + + 1 + 1305.94 + 539 + + + + 2 + 1137.5 + 460.25 + + + + 1 + 1109.06 + 770.875 + + + + 2 + 788.958 + 504 + + + + 1 + 1120 + 727.125 + + + + 1 + 960.312 + 932.75 + + + + 2 + 251.562 + 893.375 + + + + 1 + 1181.25 + 420.875 + + + + 2 + 1305.94 + 525.875 + + + + 1 + 463.75 + 114.625 + + + + 1 + 1161.56 + 687.75 + + + + 2 + 1225 + 420.875 + + + + 1 + 481.25 + 792.75 + + + + 2 + 1308.12 + 486.5 + + + + 2 + 721.875 + 119 + + + + 1 + 730.625 + 280.875 + + + + 1 + 508.958 + 784 + + + + 1 + 218.75 + 893.375 + + + + 2 + 905.625 + 792.75 + + + + 1 + 424.375 + 945.875 + + + + 1 + 790.417 + 998.375 + + + + 2 + 1028.12 + 543.375 + + + + 1 + 721.875 + 132.125 + + + + 1 + 227.5 + 766.5 + + + + 2 + 1029.58 + 766.5 + + + + 2 + 468.125 + 945.875 + + + + 2 + 1017.19 + 543.375 + + + + 1 + 111.759 + -379.89 + + + + 1 + 1017.19 + 556.5 + + + + 2 + 138.009 + -379.89 + + + + 2 + 1159.38 + 434 + + + + 1 + 111.756 + -379.878 + + + + 2 + 861.875 + 1020.25 + + + + 2 + 138.013 + -379.878 + + + + 1 + 175 + 294 + + + + 2 + 137.988 + -379.888 + + + + 1 + 518.438 + 167.125 + + + + 2 + 137.987 + -379.887 + + + + 2 + 518.438 + 154 + + + + 2 + 138.006 + -379.881 + + + + 1 + 111.739 + -379.888 + + + + 1 + 111.763 + -379.878 + + + + 1 + 242.812 + 477.75 + + + + 1 + 111.757 + -379.874 + + + + 2 + 1207.5 + 420.875 + + + + 1 + 124.884 + -379.882 + + + + 1 + 369.688 + 259 + + + + 1 + 111.756 + -379.879 + + + + 2 + 369.688 + 245.875 + + + + 2 + 138.007 + -379.876 + + + + 1 + 371.875 + 569.625 + + + + 1 + 1111.25 + 473.375 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 1207.5 + 434 + + + + 1 + 1159.38 + 447.125 + + + + 1 + 415.625 + 272.125 + + + + 2 + 415.625 + 259 + + + + 1 + 533.75 + 215.25 + + + + 2 + 533.75 + 202.125 + + + + 2 + 457.188 + 600.25 + + + + 1 + 164.062 + 381.5 + + + + 1 + 282.188 + 232.75 + + + + 2 + 371.875 + 556.5 + + + + 2 + 282.188 + 219.625 + + + + 2 + 1295 + 525.875 + + + + 2 + 522.812 + 329 + + + + 2 + 164.062 + 368.375 + + + + 1 + 1295 + 539 + + + + 2 + 997.5 + 399 + + + + 1 + 638.75 + 609 + + + + 2 + 159.688 + 320.25 + + + + ab063f40-f3ec-400f-8488-7b04a098b563 + 1-MV-urban--2-sw(1) + + + + a8b0a932-6403-494e-b8df-38f83714db37 + 1-MV-urban--2-sw + + + + + 26111a19-719c-40e1-be0a-a1ee137b2198 + Grafisches Netzelement184 + + + + + aeb9f5fd-f602-7618-0197-7679c03b43d8 + Grafisches Netzelement198 + + + + + cf07c21c-3f8e-5143-9d7c-84853878a9c3 + Grafisches Netzelement161 + + + + + 469f8a82-9bc1-f7e7-70da-9e4ea1eca653 + Grafisches Netzelement183 + + + + + 0a2a751a-4636-9957-82dd-e9a6a052900b + Grafisches Netzelement199 + + + + + 27fed0db-e39d-8669-8915-bdaecbfb8ef3 + Grafisches Netzelement142 + + + + + e06ce811-7a5d-3e53-9f17-f2146cab2f47 + Grafisches Netzelement156 + + + + + bc482d13-7e23-0d1a-c49d-0f124cddf4d3 + Grafisches Netzelement175 + + + + + 4181177c-e483-645f-5dee-03dae27f825f + Grafisches Netzelement160 + + + + + 65b490ba-6d32-6d21-75aa-a33bfa6d5782 + Grafisches Netzelement177 + + + + + a967ba93-b1a0-40d0-c29b-896f2be5983b + Grafisches Netzelement150 + + + + + 351b6e43-c62a-bf02-2ab5-14bda451c03c + Grafisches Netzelement197 + + + + + d9acf335-7127-703e-5fdd-99f3aa86d644 + Grafisches Netzelement157 + + + + + 52952418-bbc9-502e-7f59-06a66d5effdb + Grafisches Netzelement179 + + + + + f9d362ed-88d5-8053-920e-59d23b41de4b + MV3.101 Bus 98 + + + + + c7d77a7c-5946-2cac-5953-15f8efcddf8f + MV3.101 Bus 92 + + + + + 9f65800e-ad15-4a8f-0758-cc1847eb508c + MV3.101 Bus 93 + + + + + b2a18259-a376-11c8-cd0e-3060c3f8f795 + MV3.101 Bus 86 + + + + + bacffe1c-be4f-6ce5-7a87-bbb9954f7617 + MV3.101 Bus 89 + + + + + cfeb4ae1-cbec-e729-0b93-7d71c6357ee0 + MV3.101 Bus 97 + + + + + ba9992c4-9b2b-2b6e-ad2f-c01f70f66199 + MV3.101 Bus 130 + + + + + d4f15a15-935f-3c58-46a9-c5545a2df205 + MV3.101 Bus 88 + + + + + 0311b751-0361-8467-642e-8340a9855616 + MV3.101_Base_Station + + + + + 70c964ee-0327-6e9d-6608-1bc86f7991c5 + MV3.101 Bus 87 + + + + + f1f168d3-e450-a714-ecf6-eaf627b6a061 + MV3.101 Bus 90 + + + + + 6feed50d-d914-243b-7171-8efd7f940ffa + HV1_MV3.101_Substation + + + + + 49f5885f-e43f-71f1-a6a1-6b92afdcf205 + MV3.101 Bus 114 + + + + + b727361d-ac27-03a1-b497-930769d1be49 + MV3.101 Bus 91 + + + + + 79a35081-43dc-818f-73a0-335f24cfeb45 + MV3.101 Bus 96 + + + + + 35600a29-383d-667f-9043-98f03a16bb3f + MV3.101 Bus 95 + + + + + 0f480935-d450-d9fb-fc49-be6d04d4d885 + MV3.101 Bus 94 + + + + + 4d59b354-7a54-01ff-bb38-9424019ed6b0 + MV3.101 Bus 133 + + + + + c5060975-e600-f479-1eb6-8635e309ec63 + MV3.101 Bus 100 + + + + + b05d7d30-a774-e6d5-ab10-f68189d982cc + MV3.101 Bus 127 + + + + + 91c33abc-03ca-9478-2f9e-551eedb002a0 + MV3.101 Bus 109 + + + + + 0223b6b3-6808-3f2e-1770-6fa229590dbf + MV3.101 Bus 111 + + + + + 5a370c51-dc0c-2faf-7a3d-f56e4bcfcb14 + MV3.101 Bus 128 + + + + + 344a6249-3d73-c175-4aa1-3af5182de0c6 + MV3.101 Bus 131 + + + + + 86fc0b77-7028-7372-fb53-234b7623950f + MV3.101 Bus 125 + + + + + 5e46dc58-5e53-c5ef-6d25-defaab3a8ed6 + MV3.101 Bus 140 + + + + + e03339f3-14e4-a4b7-f9c1-0a3527e69748 + MV3.101 Bus 142 + + + + + 31762f72-bdfd-487d-de99-526adfed7e5e + MV3.101 Bus 24 + + + + + f999dfdd-5e69-bcac-365e-e227f2c300d9 + MV3.101 Bus 16 + + + + + f7134b06-b98a-f36d-98bf-f416b5cf14ff + MV3.101 Bus 26 + + + + + 77af9066-e089-19a0-4a52-3e853dbd5613 + MV3.101 Bus 20 + + + + + 6be65a0f-e949-b2a5-09e9-4d0011e18366 + MV3.101 Bus 32 + + + + + 66a0c803-ea5e-9c8c-635f-e7100ca1ea4f + MV3.101 Bus 33 + + + + + 5847325b-a287-25ad-39d9-44ebf8ae3f50 + MV3.101 Bus 34 + + + + + 225d1727-7cf1-1459-c53b-e253a74070dc + MV3.101 Bus 49 + + + + + f3120a72-792f-3d90-d19c-1c420bbcf157 + MV3.101 Bus 50 + + + + + 9b7b19d2-e53a-b02b-71c4-043fc5f717e5 + MV3.101 Bus 39 + + + + + a840d449-645d-0b7f-ade1-f28f178cd945 + MV3.101 Bus 38 + + + + + 1c47b817-fecf-8b08-836e-0f1862643024 + MV3.101 Bus 54 + + + + + ef748f3c-31af-721d-09b4-3ad13246531b + MV3.101 Bus 102_Graph + + + + + a9badc9a-6204-1f38-ba1d-ef571b654cde + MV3.101 Bus 47 + + + + + 4575d804-09de-2afa-678f-945492febe9b + MV3.101 Bus 120_Graph + + + + + f8d3b15b-c343-4874-73b7-f018766d75fa + MV3.101 Bus 40 + + + + + 53fc0885-f419-6582-cff8-6be4a8fb61fd + MV3.101 Bus 118_Graph + + + + + 384c63e0-d9de-acef-e0e4-d16a7b095eb9 + MV3.101 Bus 55 + + + + + 827c5f97-237c-c263-61ab-7538eac1a972 + MV3.101 Bus 100_Graph + + + + + f90dbfaa-4206-2039-aac7-e609582ece6f + MV3.101 Bus 42 + + + + + 337d9a73-e821-f053-cec9-789f376e70fd + MV3.101 Bus 134_Graph + + + + + 808b7bf0-ef4d-21bb-b025-43c9e179cd61 + MV3.101 Bus 41 + + + + + a2cd2a78-225d-3a48-2b1e-8f7aaa06c6a0 + MV3.101 Bus 139_Graph + + + + + 8f63b313-31ec-daaf-fee5-a3642b523506 + MV3.101 Bus 22 + + + + + 4b9569f0-e9bc-6ccd-51c2-ad31cd0bbb8e + MV3.101 Bus 138_Graph + + + + + e283313b-49ce-1fcf-11d1-5ae4249e811c + MV3.101 Bus 27 + + + + + 78c5f594-6a0a-d9bc-efb1-829c080e559a + MV3.101 Bus 132_Graph + + + + + abb9362b-db64-a149-44cc-246d61e666e2 + MV3.101 Bus 135_Graph + + + + + 3267853e-91d4-0dc6-f598-861b068d6b53 + MV3.101 Bus 108_Graph + + + + + c2f10add-7831-7f88-1618-78a97c115e8d + MV3.101 Bus 143 + + + + + 180 + 98b5cccd-7270-ead3-95b6-18508e668fe6 + Grafisches Netzelement260 + + + + + 8a9e890b-0c4d-5545-f6b4-29e8d2751a68 + MV3.101 Bus 143_Graph + + + + + bda9e7cb-e63e-a9b5-ece7-113bcac03afc + MV3.101 Bus 112 + + + + + 3e7d08b2-f43c-9864-3a7a-f8ce161c3958 + MV3.101 Bus 21 + + + + + 34044b80-5d25-cc1b-b7c4-5d8518a54b41 + MV3.101 Bus 106 + + + + + 7e63afa9-a84f-ebea-639b-6514f8a8d643 + MV3.101 Bus 106_Graph + + + + + 9402bdf9-4a26-2672-bea2-b77928b44074 + MV3.101 Bus 51 + + + + + f0e4b4be-f9cc-ca31-0c5a-0dda78ba1c0c + MV3.101 Bus 111_Graph + + + + + 5d7ea668-37d0-308f-073d-fc81701624ba + MV3.101 Bus 103 + + + + + 8311568f-8fd4-b7bf-fe70-c154b8dc6a77 + MV3.101 Bus 48 + + + + + 7a4b8068-09aa-86ff-6a29-b6ded6dce462 + MV3.101 Bus 125_Graph + + + + + ac815d94-1dab-a712-7baa-241b7d57e6ef + MV3.101 Bus 28 + + + + + 9b28ccfa-d91f-c655-c46b-acc2c8bbfd42 + MV3.101 Bus 126_Graph + + + + + dcb24ecd-5929-8b7d-6067-bb5b3b7fc92d + MV3.101 Bus 30 + + + + + 566baf18-ed22-2aec-bcb8-0b87f018abaa + MV3.101 Bus 122 + + + + + 0b03269a-408e-0244-a9d1-29db53c6ba59 + MV3.101 Bus 115_Graph + + + + + 1f70277a-320a-4138-3154-dc9aafda05df + MV3.101 Bus 74 + + + + + 75826f14-0dbe-eec2-a3d9-51b4f377aed0 + MV3.101 Bus 126 + + + + + 536433e5-6363-0925-a7d7-f91d00f77591 + MV3.101 Bus 60 + + + + + b473f167-fd49-8a8a-6691-f6e5ca7f63f2 + MV3.101 Bus 118 + + + + + e90303ea-f91d-8f08-de9c-453e30edcd11 + MV3.101 Bus 85 + + + + + 3cfc769f-cfa4-adf9-3838-f0bd27247bd4 + MV3.101 Bus 113 + + + + + b8cefe72-e57b-cd59-8e51-796d866ecdc9 + MV3.101 Bus 104 + + + + + f2316bb5-8bd8-81fc-6deb-e23e5aae7b33 + MV3.101 Bus 58 + + + + + bacc99d9-cf09-f50e-ba33-abb0a4fa10a9 + MV3.101 Bus 140_Graph + + + + + 491c2334-ba93-46ad-9b03-2aad63acf4f2 + MV3.101 Bus 101 + + + + + 5c013df1-4de2-6970-2d65-e1a85c3702d3 + MV3.101 Bus 70 + + + + + b1612711-b789-020a-42fc-05c5f745e38a + MV3.101 Bus 104_Graph + + + + + 1b530302-ac88-165e-1ae4-2bb0bd6018ee + MV3.101 Bus 102 + + + + + 64729074-c7a9-a5fb-a043-61fd12ad6c41 + MV3.101 Bus 84 + + + + + ddf11b20-97ed-563d-2add-1e8ece3426ac + MV3.101 Bus 120 + + + + + 451c20a9-ae8e-c3c2-c080-d872557615ab + MV3.101 Bus 79 + + + + + 296cd807-e1e6-6783-1658-3cff5d2f0ada + MV3.101 Bus 137 + + + + + eeeaae5e-dc0f-db62-a421-a37be3dda0b3 + Grafisches Netzelement195 + + + + + 99a12654-4763-27f3-612e-e33c3c0f9569 + MV3.101 Bus 59 + + + + + 75564fea-26aa-7f6b-5d00-23eb623a2532 + MV3.101 Bus 135 + + + + + 299548f3-bbe4-dca1-e8d5-4b72fbca3c0f + Grafisches Netzelement143 + + + + + f769d9a6-e839-51cd-0e30-890954c4d0d5 + MV3.101 Bus 75 + + + + + 0b13a633-94f8-ea25-c2b4-59483d7581a0 + MV3.101 Bus 116 + + + + + 495bb9bf-6de0-694a-0ff9-b0c8c05c4c99 + MV3.101 Bus 66 + + + + + e62d6f89-4f56-27b8-0234-0481f7c4d276 + Grafisches Netzelement155 + + + + + 2291343e-0918-d4f8-365d-00c29e0f282b + MV3.101 Bus 136 + + + + + ff7d16f9-e419-0112-c701-1a503d1f5ccb + MV3.101 Bus 69 + + + + + 8d830770-23d1-a013-3420-836f963433d2 + MV3.101 Bus 107 + + + + + 0bf7abbb-f90e-8c19-5ff8-1603ecee0787 + Grafisches Netzelement263 + + + + + 510bbca2-2a1b-8297-29cd-368d061096ed + MV3.101 Bus 71 + + + + + 77e7ba48-f7e6-b0eb-c10d-f96810d3f0ab + MV3.101 Bus 119 + + + + + dab413d9-6668-e809-6158-ac1906a1e40a + Grafisches Netzelement269 + + + + + 2b661050-a9d8-5718-1a21-6e6c5af8d8b8 + MV3.101 Bus 77 + + + + + 655d8fbc-1698-c4a8-c006-1163eeffee67 + Grafisches Netzelement265 + + + + + 9b14358a-1407-1eeb-4caa-b70e613cf449 + MV3.101 Bus 121 + + + + + 505131b0-4f2f-37c1-3df4-12c63283459b + MV3.101 Bus 76 + + + + + bd687e6e-c563-8ec3-4fc6-d54ca9ed141a + Grafisches Netzelement273 + + + + + 2ad597f1-218f-b986-b142-c7585d359a09 + MV3.101 Bus 129 + + + + + 9d9e41f0-a609-1e30-a740-1db9bfea2866 + MV3.101 Bus 64 + + + + + 751b2492-ef99-d46c-1f21-d0015019cf95 + MV3.101 Bus 124 + + + + + 093f39b9-f8aa-2a97-de47-81fa9a0e0d13 + Grafisches Netzelement264 + + + + + 2cab2d62-aeef-d607-c62b-6eb2b5851c43 + MV3.101 Bus 62 + + + + + 04098dbe-e836-a736-4b7e-b6c99ffb492d + Grafisches Netzelement148 + + + + + 2d7f70bd-d8a9-c76a-9022-3ef1ba2aa132 + MV3.101 Bus 99 + + + + + 7d05df38-6e9e-f04a-c497-94361b593e4b + MV3.101 Bus 67 + + + + + f21395c8-32a4-d121-9cf0-48e2ebac79ac + Grafisches Netzelement190 + + + + + 04368e4c-c433-ba17-a21a-2b263edb7b1e + MV3.101 Bus 141 + + + + + 90f0fb83-cbfa-b464-37cb-6e7716e17462 + Grafisches Netzelement628 + + + + + 6af68c48-b7a6-d33f-0ab2-18a1c9ab23f3 + MV3.101 Bus 61 + + + + + cb6a7d3a-ed48-4ae0-ed61-3c1ad884a0a6 + Grafisches Netzelement154 + + + + + 3bd7ab40-3dfa-9842-e3d7-4480ebca13f8 + MV3.101 Bus 105 + + + + + 237f6244-4cb2-33b9-c6fc-32f1c6222daf + MV3.101 Bus 82 + + + + + 6958da76-31f3-b265-dee2-614bda091243 + Grafisches Netzelement639 + + + + + 0d2336df-89c8-6674-feed-3732c7222d0a + Grafisches Netzelement233 + + + + + 16dcab2c-2b8d-061b-0515-0761437456dd + MV3.101 Bus 63 + + + + + 77965e12-7fbc-5519-3695-cc0a8d3d00df + Grafisches Netzelement647 + + + + + 39cc1e3b-bc87-2363-9f07-c348c811f85d + Grafisches Netzelement180 + + + + + a0412404-3b91-e8a6-b47c-d89ae85dcd98 + MV3.101 Bus 81 + + + + + 7d6f0371-05d2-3be1-210e-291ea1b5d30b + Grafisches Netzelement650 + + + + + c80ad40e-60d1-003b-860f-25f9b984ae9f + Grafisches Netzelement243 + + + + + 6570f659-056b-1c07-827f-7bc0438f6ee7 + MV3.101 Bus 139 + + + + + 81baeccd-fb5b-12cc-2639-ff830b87ec49 + Grafisches Netzelement686 + + + + + 6b302d3d-3465-32ce-2f72-158f131da820 + Grafisches Netzelement222 + + + + + 8b4b8452-a43c-b9b6-5bab-148186143966 + MV3.101 Bus 134 + + + + + 248a453e-beae-6bdb-2785-17a5509297d3 + Grafisches Netzelement671 + + + + + 438ed6b7-ff8e-b941-ce16-7e8d8baa83d0 + Grafisches Netzelement231 + + + + + bf987bb9-fb7d-8127-a585-b593e5fa83d8 + MV3.101 Bus 78 + + + + + 5a19bca7-2933-9d9a-04e1-7d2be5c0c72b + MV3.101 Bus 123 + + + + + 5718c4b0-ecaa-1029-829f-a0a8cde2c028 + Grafisches Netzelement631 + + + + + c7c9e614-466b-3382-d7cc-9a39f16607de + Grafisches Netzelement226 + + + + + 3b694924-8e6e-9bcc-a16c-22db51397621 + MV3.101 Bus 80 + + + + + 30b5455c-061b-a730-d4a8-d38ea43dcd55 + MV3.101 Bus 110 + + + + + 98118a77-eb2d-f86e-39e1-a3a6f8a41348 + Grafisches Netzelement669 + + + + + 141367ed-407d-1bc5-3d84-cbc557c3381e + Grafisches Netzelement256 + + + + + a5ad1214-e804-306d-b6c7-8132968a3761 + MV3.101 Bus 83 + + + + + bc0177eb-7bda-3268-1173-579764d2c9ca + MV3.101 Bus 115 + + + + + cc5ecece-8094-e08b-4273-202f273a6d81 + Grafisches Netzelement511 + + + + + a299319f-82f1-fab8-80fa-f46c88f6edc3 + Grafisches Netzelement189 + + + + + c116c016-d068-68ed-f5ff-bc744a6b1ac5 + MV3.101 Bus 65 + + + + + c8da12d5-d0f9-a477-51d0-3a95f3cf3173 + MV3.101 Bus 57 + + + + + 58111bf7-e5d6-6c46-184b-e6973849e74b + Grafisches Netzelement675 + + + + + 522ad6ab-37ac-739c-6fac-74a28b415464 + Grafisches Netzelement227 + + + + + 03e2a738-6b0b-c3f2-277e-14e773d32fb0 + MV3.101 Bus 68 + + + + + 2f9929ce-e091-0771-b1b2-4c4735dc59f5 + MV3.101 Bus 11 + + + + + 3ce3607c-7f95-0e20-871c-ff6625d750bf + Grafisches Netzelement648 + + + + + 836b1cf4-0617-4593-82bc-e4afeffe4922 + Grafisches Netzelement252 + + + + + d59f3e40-991b-a0db-7c93-4252e4d5d8ef + Grafisches Netzelement267 + + + + + fb063c03-500d-c000-5e95-042e4196bd29 + MV3.101 Bus 29 + + + + + bf8d9906-222e-9eaa-9625-da7f6e2d588e + Grafisches Netzelement223 + + + + + 180 + 63ea48dc-dc5a-b6b5-e7ea-c66c69a20506 + Grafisches Netzelement673 + + + + + a2fe6ed0-8a0c-2692-de77-7b812fd02c91 + MV3.101 Bus 96_Graph + + + + + e828ff16-afb3-0be7-62fa-edc9a2b2b257 + MV3.101 Bus 138 + + + + + ba176128-91e4-985f-6f9a-710aaba495f0 + Grafisches Netzelement228 + + + + + 4660f331-2e84-8723-faab-9dc546062516 + Grafisches Netzelement672 + + + + + 5ca782a7-04bb-3708-9f30-3005520ce145 + Grafisches Netzelement270 + + + + + 45718fd3-edf1-c310-153f-2dd18cb1f6e7 + MV3.101 Bus 56 + + + + + 3d1ff8c3-3e5f-54af-13c7-76c8e48dfd74 + Grafisches Netzelement244 + + + + + 019f99d1-9d75-e7fd-4adb-db87e684ca66 + Grafisches Netzelement536 + + + + + 0b33e47b-2712-df44-165d-986e4f9f6ff1 + MV3.101 Bus 92_Graph + + + + + 5094369e-88bb-497a-dd6b-53e08371364a + MV3.101 Bus 43 + + + + + f2ddb85b-d1a1-0558-5409-7435e9257565 + Grafisches Netzelement249 + + + + + 731d08c9-0e93-a288-7248-3ce515746bd9 + Grafisches Netzelement489 + + + + + 0294e2b7-334a-2fad-0230-3a8b5f4c723a + MV3.101 Bus 97_Graph + + + + + 17636d7a-cb42-3bfe-27fd-8b2995a07a66 + MV3.101 Bus 108 + + + + + fe0f2719-be6e-f942-9efe-216eb99254cb + Grafisches Netzelement207 + + + + + 8b300875-8d9a-7d56-92a3-7cc8b22422fe + MV3.101 Bus 72 + + + + + 180 + e0465254-ee85-5ebb-f00e-5b902734fe8e + Grafisches Netzelement658 + + + + + 49e961fe-a808-c247-e7bb-54e993961e35 + MV3.101 Bus 117 + + + + + 6ffc46b8-e7c3-55cf-2ca0-af70322a30e4 + Grafisches Netzelement255 + + + + + 3aa70dbb-a8a0-3e3d-2819-c171e8f75b78 + Grafisches Netzelement268 + + + + + becf21fd-0514-4708-bd3f-21b04c360a24 + MV3.101 Bus 132 + + + + + d8bc79be-3750-49dc-76d3-bfc1faf71bcf + Grafisches Netzelement681 + + + + + 0f92b429-b55c-2338-6aac-cff45fb4ddb3 + Grafisches Netzelement203 + + + + + 92b53559-1691-2c5e-6839-22354f7bd4bf + MV3.101 Bus 14 + + + + + c0fde7ba-31ca-9448-4df3-268da5357486 + MV3.101 Bus 98_Graph + + + + + 180 + 43037352-6373-4133-de24-c3fa7fafa111 + Grafisches Netzelement509 + + + + + 3753da32-462c-a8a2-5d3e-a85aa8b656f3 + Grafisches Netzelement224 + + + + + c49b3b13-fc09-73b1-1c7d-d5d1f9d2bbc5 + MV3.101 Bus 53 + + + + + 7680f98f-cad2-4f45-0532-bc001ec38cda + MV3.101 Bus 94_Graph + + + + + 9ab38a0f-6c3b-e8d5-2a3c-57fab67b093e + Grafisches Netzelement627 + + + + + 22c07c24-242f-9a5a-139a-c67678be640e + Grafisches Netzelement225 + + + + + ef2fc0c6-15fc-da86-fdd2-040305ccacb1 + MV3.101 Bus 17 + + + + + d2ff9788-e5b0-f907-1c3e-f0b94e6f74c3 + Grafisches Netzelement266 + + + + + b2f31f3e-6bcc-ecb6-e592-65a138f99744 + Grafisches Netzelement684 + + + + + fdcea267-8008-bd87-d021-47d400d47898 + Grafisches Netzelement214 + + + + + d750f5fb-21f8-daea-1d01-bb3c7393f8ef + MV3.101 Bus 45 + + + + + 8d26f401-d45e-8990-4246-6cb82cdf5677 + MV3.101 Bus 87_Graph + + + + + 137772b0-815d-4395-0d9d-04a0dd75a00b + Grafisches Netzelement653 + + + + + 54989a27-d522-8bf5-795b-023828434c43 + Grafisches Netzelement245 + + + + + 3754b845-aef9-c6b5-8924-293f724310f7 + MV3.101 Bus 44 + + + + + 0760f6e9-f68f-299c-1581-a1af91b933f7 + MV3.101 Bus 73 + + + + + 8553065b-fd9b-38c2-55a8-7fe3d6eabd35 + Grafisches Netzelement543 + + + + + 1c46b664-6365-6030-7725-29ef816f2fe6 + Grafisches Netzelement253 + + + + + 264b2641-a209-0117-4105-9fb8a0e85007 + MV3.101 Bus 12 + + + + + c9e897c3-507f-e8e1-f78e-930ed1a38e91 + Grafisches Netzelement271 + + + + + 424ba598-8a1b-433f-cced-84c0c20f28d4 + Grafisches Netzelement505 + + + + + b6d4eac7-8bf2-1edc-f70f-3b1c33c146c9 + Grafisches Netzelement250 + + + + + 8fcb3cdd-fd6f-9754-1f6c-e17b4c10f2b3 + MV3.101 Bus 37 + + + + + d3872e67-d97a-f22d-3ef7-537840e7012f + MV3.101 Bus 86_Graph + + + + + 180 + 8877a6f6-ae86-35a4-2242-643cd40004da + Grafisches Netzelement524 + + + + + 148aba49-3a1c-cc4c-ab74-fb060dcc933f + Grafisches Netzelement208 + + + + + 02b907bc-e000-fc97-69fa-c0b73aa9b745 + MV3.101 Bus 36 + + + + + 1d02e29a-54ab-c029-fcfa-f388e56d7165 + MV3.101 Bus 90_Graph + + + + + 001c22a1-1e2e-08ec-facd-7a0a8d0bbb08 + Grafisches Netzelement508 + + + + + 9b69aed0-1d61-34b1-8610-d8dbd1e13c70 + Grafisches Netzelement206 + + + + + 9e7d301e-d6c3-68a7-1701-ba93b55c3f98 + MV3.101 Bus 31 + + + + + 37d2481f-e5e6-6247-4238-c9bacf2700e7 + MV3.101 Bus 91_Graph + + + + + 13fb8c7c-9966-96aa-9f56-54818368359c + Grafisches Netzelement493 + + + + + 092edb43-b86a-e7b7-fcd9-87add8dbe1b1 + Grafisches Netzelement216 + + + + + 8a5f914a-6fd3-1c59-d183-5eca8ee81c7a + MV3.101 Bus 95_Graph + + + + + c40afc2e-dc34-dccf-1df8-f17dc632f3d9 + MV3.101 Bus 15 + + + + + 33f97ab0-9038-2530-d807-2002d2d0839d + Grafisches Netzelement232 + + + + + 180 + 6c3a960a-66c0-55b8-6c00-9debcc17a025 + Grafisches Netzelement545 + + + + + 735e19a0-bd66-7e9b-56fe-1453696d5efa + MV3.101 Bus 89_Graph + + + + + 91f5d4e1-655e-4a72-12b3-565682ccd63f + MV3.101 Bus 25 + + + + + 62a11df0-d1d1-eac0-9bce-9b2a108471dc + Grafisches Netzelement209 + + + + + 180 + 4e06601f-b9c9-2540-b6e3-1205f56fea17 + Grafisches Netzelement544 + + + + + 9f653e8f-71c3-e8a7-92ab-237e176898d0 + Grafisches Netzelement679 + + + + + c0330605-c70b-2de5-358c-fc42f2080f36 + MV3.101 Bus 19 + + + + + 96f77337-a19f-537d-4683-e48f9c10dbd4 + Grafisches Netzelement230 + + + + + 180 + bf27093b-f8f9-d1eb-2c24-a88df768c005 + Grafisches Netzelement487 + + + + + 1284cfe3-0202-5dbc-8355-b3ca79fc52fa + Grafisches Netzelement257 + + + + + fc5b4e58-3e60-34b6-d595-c01b1df5ce98 + MV3.101 Bus 46 + + + + + abe826cc-8fa9-77e9-cace-b1880cd65b53 + Grafisches Netzelement220 + + + + + 45954f66-dad6-21bd-6393-51fc62a3d34c + Grafisches Netzelement510 + + + + + d7d3516c-4f7f-b123-d9df-6c818101a7e6 + MV3.101 Bus 93_Graph + + + + + 4daba093-91fa-47c1-d8eb-08d65d80af90 + MV3.101 Bus 35 + + + + + 49677c65-845a-99be-42f3-892ebc7af72a + Grafisches Netzelement240 + + + + + 81e89427-7639-05ad-283c-26ac729aa779 + MV3.101 Bus 88_Graph + + + + + 74df4add-7654-2fa1-0a0f-28ee56ea3e64 + MV3.101 Bus 13 + + + + + 180 + f88d18b4-3095-72ec-6b63-23dbeceab2e1 + Grafisches Netzelement527 + + + + + afbc0ae3-3c60-7f15-90c2-e6feddd1da6a + Grafisches Netzelement215 + + + + + 36a98b3a-b140-4972-4805-cf5ddb9a916d + MV3.101 Bus 52 + + + + + 9 + a4f84b8e-b664-6206-b260-e69f766297f2 + Grafisches Netzelement343 + + + + + b5cdaf7b-9d63-aee5-8007-e745798f4b61 + Grafisches Netzelement533 + + + + + 26c39e2f-3abc-f3d0-7c50-3c0bc8084eed + Grafisches Netzelement211 + + + + + 14772357-d4cc-6755-3736-a5c79a4a299c + MV3.101 Bus 18 + + + + + 64acd934-d71d-baea-a8d0-25e30e69e55a + Grafisches Netzelement659 + + + + + 180 + 36674708-1e7b-0b16-5274-a51b7b868d0c + Grafisches Netzelement496 + + + + + de611c33-5657-3e98-f1ae-9c7b90b931a6 + Grafisches Netzelement212 + + + + + d5e37442-ce82-4a7d-020a-7615247c177a + MV3.101 Bus 23 + + + + + 28b560de-531c-53c4-ba8d-eb6c8c6f3fb4 + Grafisches Netzelement486 + + + + + 3abe65be-145a-66a6-5ff0-6e26023dbfa9 + Grafisches Netzelement666 + + + + + 2fb4c2ec-8d00-2e55-5545-b05b2eff4a74 + Grafisches Netzelement210 + + + + + 729735da-d9c2-2fa7-979f-7685aa549f4a + Grafisches Netzelement578 + + + + + f735574f-d41b-7737-3564-b55b5a38fe24 + Grafisches Netzelement506 + + + + + 2e3c3128-8bfe-9e50-a7cc-70eaa9619ea2 + Grafisches Netzelement213 + + + + + 263 + 839f1990-e9b4-55a7-073d-30f13608a8f3 + Grafisches Netzelement379 + + + + + 180 + ec662df4-7fe1-bc04-8df3-814cdea4751a + Grafisches Netzelement587 + + + + + f8e019a7-ff39-be13-1472-3cefbb5bf2be + Grafisches Netzelement540 + + + + + fa7f63b0-f22b-0263-c125-426c56622108 + Grafisches Netzelement217 + + + + + 9ad9d119-cac4-aa2b-6834-df1ad5609ac0 + Grafisches Netzelement638 + + + + + 180 + 27633569-6a0b-b912-95d0-e4ee072b0385 + Grafisches Netzelement570 + + + + + 0c1c92d3-a3c9-3690-2871-9d5ee7424ae2 + Grafisches Netzelement248 + + + + + 180 + 2b98c783-cba4-1d89-b9ee-61f85c22ba30 + Grafisches Netzelement513 + + + + + 329b9bf0-f52e-1a0b-c657-76114f3cc1b4 + Grafisches Netzelement665 + + + + + 180 + 7776b288-ea1e-307a-a218-dc3519d5143a + Grafisches Netzelement565 + + + + + 4659aad7-eadd-cc58-84de-3eca6205dcf7 + Grafisches Netzelement516 + + + + + 346181f3-4d61-96a5-b406-4b0ea52938cb + Grafisches Netzelement229 + + + + + 14 + da82d55f-4cc1-a30b-d343-0ad68e534462 + Grafisches Netzelement342 + + + + + 1e148676-677c-d432-0e01-47700b6c6f4b + Grafisches Netzelement584 + + + + + fde8f43d-1195-fb0b-abe8-2a06895285ad + Grafisches Netzelement202 + + + + + 2871d1a5-e292-2829-f27d-b7bbc50dbfe5 + Grafisches Netzelement538 + + + + + 331 + bfe118e8-b20a-c420-58b9-16eb22513a41 + Grafisches Netzelement358 + + + + + ac4ac2d6-4865-ce3b-d08a-0ea1a4788822 + Grafisches Netzelement246 + + + + + e7f390dc-b5b9-9a7d-02f4-0560a22e53bc + Grafisches Netzelement603 + + + + + 180 + abfa8ae4-0bc3-045e-a97a-cc610a5e8916 + Grafisches Netzelement548 + + + + + 253 + 16a8cb8d-3da6-dcf9-200a-a1bb8bb9031b + Grafisches Netzelement371 + + + + + 4ce42eb1-64f7-cd5d-d21a-790b1c63f832 + Grafisches Netzelement218 + + + + + 180 + 08300a7c-f434-3d5c-9e7a-053733e52ba7 + Grafisches Netzelement575 + + + + + 180 + d97fe2a2-a120-dc1e-3133-9818a0cae674 + Grafisches Netzelement525 + + + + + 342 + 4b959433-cf39-6623-cecc-ac4a12a29f26 + Grafisches Netzelement361 + + + + + e834f64f-2a5d-5674-c88f-b0a07974d2df + Grafisches Netzelement236 + + + + + 3f11ec36-66cf-6bcc-0f1b-b3c0c5aaf1ff + Grafisches Netzelement569 + + + + + 180 + b677a860-d154-6b29-63b0-eb9a004918b8 + Grafisches Netzelement554 + + + + + 262 + 4f25b390-c16f-25c6-12cd-aba383409fef + Grafisches Netzelement373 + + + + + 180 + 99b9dde5-d7fa-b74d-2594-d5b5c8c90a97 + Grafisches Netzelement242 + + + + + b0e0e097-1831-5bf9-5f58-bf6d5f879b15 + Grafisches Netzelement537 + + + + + 180 + ae5712ff-5a73-4641-aadd-fe25a835dfac + Grafisches Netzelement572 + + + + + 89b936d0-30dd-2c6c-d835-400de78f84d3 + Grafisches Netzelement241 + + + + + 180 + d24a9884-efbc-0f4a-506b-fe7134b2c0d6 + Grafisches Netzelement551 + + + + + 180 + 905de88b-89f4-21c5-eda0-56fee8f60a93 + Grafisches Netzelement547 + + + + + bafcccfa-e2cf-ccf9-41d4-3514fa2f0415 + Grafisches Netzelement247 + + + + + 1b584aa5-f2c2-efb8-a01b-53e562661f86 + Grafisches Netzelement501 + + + + + 180 + 88f0e3c8-aa56-2195-8e28-36524c2afc52 + Grafisches Netzelement567 + + + + + 62010212-2ba4-cd7f-5317-162bdcdb14b2 + Grafisches Netzelement205 + + + + + 3067ebf7-bae2-12bf-c371-2b08b364f05b + Grafisches Netzelement362 + + + + + d3ec0c62-0429-9776-4a73-82af8531fdeb + Grafisches Netzelement595 + + + + + 180 + fbe75a1a-761c-651d-d53d-6ecfda999c1b + Grafisches Netzelement528 + + + + + a1818c28-96b4-7b4c-10b2-485f8428cd55 + Grafisches Netzelement219 + + + + + 24 + 12796f7f-ef61-e67e-4e6e-cddbd1483636 + Grafisches Netzelement372 + + + + + 180 + 4d620a37-410a-fabf-225f-44c061ed2577 + Grafisches Netzelement300 + + + + + 00e3b457-a712-1695-d26c-8c3b3ecb1f2e + Grafisches Netzelement237 + + + + + 226cc18e-a81e-8b87-afab-59fac524e3df + Grafisches Netzelement612 + + + + + 180 + 703abf37-cf97-8b9a-0603-87ff19522379 + Grafisches Netzelement297 + + + + + ee6adb3e-d510-6c17-df21-f46090e619f1 + Grafisches Netzelement235 + + + + + 05406271-75d6-e612-f20b-7dc36de44876 + Grafisches Netzelement560 + + + + + e71bcd70-3341-67c0-85ab-f8fd16e37149 + Grafisches Netzelement234 + + + + + 294 + 3a8b0dc4-1a94-a0f2-9d13-243fdd64e433 + Grafisches Netzelement355 + + + + + b8f0a35d-3af6-57ed-2d55-e2e8be0ee854 + Grafisches Netzelement667 + + + + + a2c96217-d958-86f3-3fcf-d9db4b707d7a + Grafisches Netzelement490 + + + + + 180 + a9fedd39-5cde-3976-6619-8440b24342a3 + Grafisches Netzelement275 + + + + + 180 + fe42f3ed-694b-ef31-3200-3783508812dc + Grafisches Netzelement201 + + + + + cada3ac3-0111-b1ef-9888-6b4b34dd1b5f + Grafisches Netzelement614 + + + + + 180 + 88288e53-941d-afdd-80ef-b98126e183ef + Grafisches Netzelement290 + + + + + 180 + 17638fce-82e6-e854-eb4b-b71bc8b670c1 + Grafisches Netzelement598 + + + + + 44877611-7f5d-6ab2-7f59-c60e02efacf9 + Grafisches Netzelement676 + + + + + ea0928c7-d0c0-fefe-bc22-09428755d73d + Grafisches Netzelement553 + + + + + 03a46213-4b0d-fb55-cf87-a76c65b97897 + Grafisches Netzelement623 + + + + + 180 + d0a33c0a-b787-9609-541e-aea35a098b3b + Grafisches Netzelement329 + + + + + 66ff264c-055f-6c3e-28ee-b6c7821b0302 + Grafisches Netzelement200 + + + + + 180 + cb155cfc-b2bf-e066-135c-c0ea4a569e2e + Grafisches Netzelement484 + + + + + 354 + f5897cd9-8064-5529-49fa-e5a8ab071933 + Grafisches Netzelement393 + + + + + 9d40d321-6833-9962-3976-3ba7a33b486f + Grafisches Netzelement251 + + + + + 180 + e69c3ff5-dc40-1151-693d-84a4b20ebd84 + Grafisches Netzelement589 + + + + + 7f137455-0b0c-f3e9-e316-5efc37e56ade + Grafisches Netzelement624 + + + + + 90b23a2f-f49e-b2b6-9e14-857bf2c9b20e + Grafisches Netzelement221 + + + + + 180 + c06b3468-04c1-c551-430e-69f40dc1d5a0 + Grafisches Netzelement530 + + + + + 6ed2896c-4142-7617-0ad7-cc766c49b232 + HV1_MV3.101_Substation_Graph + + + + + 90b9434b-39c2-49d1-b21c-dea3fc7cd264 + Grafisches Netzelement238 + + + + + 180 + 7bbfd663-ab51-381f-9026-dd7a4e21bf40 + Grafisches Netzelement619 + + + + + 180 + c253df62-5c02-fd8b-f163-7ecc592ffec9 + Grafisches Netzelement239 + + + + + 180 + 25629811-d6e0-c226-045e-fddf1a3462aa + Grafisches Netzelement284 + + + + + 288 + 4d0568d4-85de-d044-5b7b-955b066cb5ea + Grafisches Netzelement394 + + + + + 6db3d510-64ed-15ae-d8aa-32ecbeb772f7 + Grafisches Netzelement635 + + + + + 73e9c36b-5e3a-f91a-1607-c8a4e8164477 + Grafisches Netzelement618 + + + + + 06dce961-0b75-8dcd-d242-8d5b312283a3 + MV3.101 Bus 16_Graph + + + + + 180 + ec9d1ea6-6572-0c0a-2046-7751ecf334d6 + Grafisches Netzelement294 + + + + + 4d7b2239-9bc6-186d-8151-6fb2ffc7d8b5 + Grafisches Netzelement204 + + + + + 180 + 83f488fc-1245-9302-f90f-653cb49be9a0 + Grafisches Netzelement291 + + + + + 292 + 5dd974b9-5ee1-b0a2-a4ec-3ecf787f04bb + Grafisches Netzelement337 + + + + + 82958d9e-e17a-4219-5ccc-6505954989ee + MV3.101 Bus 48_Graph + + + + + 70e80634-634d-a029-6bf4-d67fa6df27e5 + Grafisches Netzelement254 + + + + + 180 + 689d5d94-ddce-ccf8-6812-541e2331f53e + Grafisches Netzelement592 + + + + + 477d7f1d-6f3d-044a-3883-8cb2ae87305c + Grafisches Netzelement664 + + + + + 7e126f59-6dc3-15d7-11b0-7002b253ad9e + MV3.101 Bus 32_Graph + + + + + 180 + f9831fbe-d8af-1e3b-c15b-735269637e3f + Grafisches Netzelement324 + + + + + ad61be80-f000-0750-0c70-a3b90b6d13f6 + Grafisches Netzelement644 + + + + + 180 + 187dde81-328b-11b4-389c-e23c63754541 + Grafisches Netzelement517 + + + + + 180 + 3e0fb4a3-2bee-f3c0-60dc-55eb59027446 + Grafisches Netzelement621 + + + + + a773b03a-a64f-7008-b338-a2bac64e4eea + MV3.101 Bus 31_Graph + + + + + 775adb3c-8ddc-fe0d-4d71-8a06d30c3785 + Grafisches Netzelement642 + + + + + 180 + ba4f4069-0c50-ad56-31cb-dc4477fa86b8 + Grafisches Netzelement280 + + + + + 180 + 7c7639aa-d1e9-62f5-548e-1e64a19d0566 + Grafisches Netzelement499 + + + + + 34ad6b1f-33bd-7f83-8490-26fb4b1232a1 + Grafisches Netzelement652 + + + + + 294 + 55ffddbd-e14b-58cc-a9cf-0e0a98cd9273 + Grafisches Netzelement481 + + + + + 7a879c9f-50cd-64b3-e1eb-93f0f1e84600 + MV3.101 Bus 54_Graph + + + + + 180 + 19eedfdb-dff5-ff40-3440-76c5092949d4 + Grafisches Netzelement289 + + + + + a8222759-fc24-8602-2d42-42629a461f96 + Grafisches Netzelement498 + + + + + 24b50e5d-09e2-598f-2275-7e5b5c3eab76 + Grafisches Netzelement633 + + + + + 7bbdf5d0-b38f-25b4-d482-aaf43ffaef3d + MV3.101_Base_Station_Graph + + + + + cd8a216b-58d8-3cc9-681e-db59425a99a4 + MV3.101 Bus 60_Graph + + + + + 180 + d63a4a43-ef81-ac6b-49f7-ea9f2e47438a + Grafisches Netzelement307 + + + + + 180 + 791cfa4b-36d6-751b-90a1-54e74c5b531a + Grafisches Netzelement488 + + + + + ed9d630b-19ed-1d3b-bbd6-eb04f1cd855c + Grafisches Netzelement622 + + + + + f16bc53a-f0a8-cea3-a400-12429b89f1b5 + MV3.101 Bus 13_Graph + + + + + 8ee8a240-a7bd-1a33-a3be-2366aa89cb17 + Grafisches Netzelement674 + + + + + 180 + fafd9156-d5f4-1aa7-4412-675553f92d5d + Grafisches Netzelement325 + + + + + 5f1588a3-1699-ec60-4b78-96b6c5f1a8ee + Grafisches Netzelement636 + + + + + b4ab1d15-cbcb-14ba-beab-f5ef3ae04af2 + Grafisches Netzelement620 + + + + + f92690d8-06d3-8781-e449-f34789e62c9f + MV3.101 Bus 77_Graph + + + + + 180 + 6169b6be-a449-f0fd-173c-cc1237e58208 + Grafisches Netzelement491 + + + + + 180 + cd546a63-65a3-f7d2-484d-062f451f4b15 + Grafisches Netzelement332 + + + + + e043b65c-2de6-7ee5-468e-c18673654b91 + Grafisches Netzelement632 + + + + + f2d5806e-9e5a-f57f-ba8c-93d697dd5d3c + MV3.101 Bus 69_Graph + + + + + 180 + feff9f86-9eed-6010-016d-8c2e1c80c45d + Grafisches Netzelement485 + + + + + 180 + cc51b982-0405-a363-6a34-e3c365bfb226 + Grafisches Netzelement285 + + + + + e5b035da-82cc-468f-78c3-783a56b4cc94 + Grafisches Netzelement683 + + + + + 93f293f3-82d6-53b5-a0c6-a366351fe69e + MV3.101 Bus 34_Graph + + + + + 723d0172-1c0a-f376-63cf-b2c36986765b + Grafisches Netzelement591 + + + + + 180 + a6b9aa35-5ed7-6262-b475-cb13467cec55 + Grafisches Netzelement318 + + + + + a6cf30f4-8739-67c1-1045-3cb0d237ae1e + Grafisches Netzelement661 + + + + + bf200125-ff88-9e8d-a9e3-da8758103f87 + MV3.101 Bus 51_Graph + + + + + 101de6cb-6605-e85c-82a8-c3d271efbaae + Grafisches Netzelement585 + + + + + 180 + 93cffcc6-4751-8b9d-e75f-4662695578f9 + Grafisches Netzelement298 + + + + + 7e84d074-182c-425b-d3c9-e43b8b559c39 + Grafisches Netzelement643 + + + + + ce60ed79-ddfc-c93a-8549-d9433b1e58f1 + MV3.101 Bus 28_Graph + + + + + c9963761-63e6-7fe3-2dc5-91988a50fc2d + Grafisches Netzelement610 + + + + + b47f581e-9ae8-4fa8-8d2b-9bebaec70239 + Grafisches Netzelement556 + + + + + 180 + fb0fbda4-5a85-c222-9ffd-706c3c55b1d2 + Grafisches Netzelement286 + + + + + 016c2731-733f-c5a4-aeb1-55c846b04987 + MV3.101 Bus 55_Graph + + + + + 1dcf0228-3b54-8375-b6d5-06cb22bdb5cc + Grafisches Netzelement670 + + + + + 180 + 3819a6a9-2b3f-cdd2-35f8-13f07011a817 + Grafisches Netzelement531 + + + + + 4a2a9218-2c61-c0cc-9102-f8a1abb8c34f + MV3.101 Bus 21_Graph + + + + + 180 + 6ee41e77-cc19-c08b-4418-81985f65c9f0 + Grafisches Netzelement302 + + + + + f8f1b2ee-c664-6eb0-3845-12deb1ec10cc + Grafisches Netzelement687 + + + + + 180 + 8561f25c-5340-954a-ea45-a630eddd87ba + Grafisches Netzelement562 + + + + + f93f9d94-3720-e5f5-8a15-c225895a450f + MV3.101 Bus 63_Graph + + + + + 180 + 8e07462e-c830-ddaa-1ab0-1a3b9cd2208a + Grafisches Netzelement274 + + + + + 14df2b22-848a-b51b-7e3d-27a4378953e8 + Grafisches Netzelement616 + + + + + 70dde681-4ac9-d962-10e3-fbf85755cb9e + Grafisches Netzelement495 + + + + + 11d70613-a0dc-2a99-8fe6-728e8143d048 + MV3.101 Bus 62_Graph + + + + + 180 + c7716a3a-9ec0-2466-bbf3-b3551978f4c5 + Grafisches Netzelement319 + + + + + d991809a-e06c-3034-794a-a0b2ccd44221 + Grafisches Netzelement611 + + + + + 91be716a-0d82-e7f6-1aed-d15ad5e7d760 + Grafisches Netzelement655 + + + + + 347d0fb3-4fe1-2abe-347b-36d870455fe7 + Grafisches Netzelement558 + + + + + e34b5cea-f4f6-6860-6214-a71dbaae5ac2 + MV3.101 Bus 19_Graph + + + + + f295cf0e-cdf1-5418-f796-5caf61ba2d84 + Grafisches Netzelement677 + + + + + 180 + d77978ae-1d8d-8051-5627-4f6550f86b60 + Grafisches Netzelement278 + + + + + 93da9f31-86de-b867-8a3d-7d37bfccc1f3 + Grafisches Netzelement649 + + + + + 430ba48f-7725-f7fd-f053-2ff2ff2747e9 + Grafisches Netzelement494 + + + + + 9b1263a6-a4ec-d90d-0018-bc91786e49c7 + MV3.101 Bus 38_Graph + + + + + 827f0a69-c095-a99f-80c4-e18943467673 + Grafisches Netzelement609 + + + + + 1ac00c3d-336d-f2cb-0e49-0622be0fd253 + Grafisches Netzelement645 + + + + + 180 + 336f9595-1327-a171-0c6b-cb6b868cd455 + Grafisches Netzelement328 + + + + + c66e9950-740e-6d46-79f4-a807ed0cb5dc + MV3.101 Bus 70_Graph + + + + + b9d68e73-19fe-2ffb-0dfd-2676a26547e0 + Grafisches Netzelement497 + + + + + 59be3db6-cc09-cb8a-2b7b-ca9306cc19ac + Grafisches Netzelement613 + + + + + 180 + f5be370f-4741-b8e8-cae2-e3d26295d91a + Grafisches Netzelement299 + + + + + 604b11bf-763d-ebf8-7e0b-74d4fdc74b13 + MV3.101 Bus 59_Graph + + + + + 8cd82045-e076-a79e-f3f1-78edcb8ce7c4 + Grafisches Netzelement617 + + + + + 180 + 34b2ffb8-dbdf-2566-843a-3a852e56d59e + Grafisches Netzelement555 + + + + + e10b0393-1a78-3cd7-4cb4-4fbc77b99bb0 + Grafisches Netzelement654 + + + + + 180 + e92d74f8-529f-2397-ec72-4b12b6045aa3 + Grafisches Netzelement312 + + + + + 43a6bf46-0e83-1ff0-07c7-41128c2aaf5e + Grafisches Netzelement615 + + + + + 2ec72583-a764-9b33-c544-c11f4a4bd0e2 + MV3.101 Bus 79_Graph + + + + + 180 + bd30b287-d449-1db5-b3e2-aa25e6f4161f + Grafisches Netzelement514 + + + + + feb3eaa0-4ab2-4a6f-ca32-2246d64df354 + Grafisches Netzelement625 + + + + + 923d4bc8-12fb-4716-3293-a5fe2a184418 + MV3.101 Bus 137_Graph + + + + + 4ad3eb3d-ff09-0f92-0416-17573dfaf8b5 + MV3.101 Bus 68_Graph + + + + + 180 + 8aa294a9-262a-e19c-999b-68acf866c150 + Grafisches Netzelement317 + + + + + 87156411-1f84-dbd6-9d32-6d6f1bb9f852 + Grafisches Netzelement662 + + + + + 180 + 381b2e8c-6b46-f1d7-127e-1cfe7734c0a8 + Grafisches Netzelement546 + + + + + f903abe9-5646-cc0f-7e4f-0228bb629936 + MV3.101 Bus 122_Graph + + + + + e7f8ee85-72ab-95f4-6cf4-2fa238ff9357 + MV3.101 Bus 25_Graph + + + + + 1cdda964-b260-9dab-e5fc-c74a97d305af + Grafisches Netzelement651 + + + + + 180 + 88f0821f-8a88-511f-4bfa-fad1edcb834c + Grafisches Netzelement303 + + + + + f2134025-55a7-7d7d-5347-61ce4c760382 + MV3.101 Bus 110_Graph + + + + + d68af646-bd81-a0e7-9af8-367081b00f37 + MV3.101 Bus 61_Graph + + + + + a4f107f8-0eae-c2be-1522-188b32daa42e + Grafisches Netzelement630 + + + + + 180 + 82da611a-f0ee-38c9-f5ed-545e1d396de6 + Grafisches Netzelement310 + + + + + e15d0971-3adf-2158-78be-002d2f3b8036 + MV3.101 Bus 117_Graph + + + + + 33d06a10-ba26-7699-0c76-1315cd1d2dae + MV3.101 Bus 29_Graph + + + + + 30c31e3b-54ef-ef4d-e368-cec726ef28fd + Grafisches Netzelement646 + + + + + 180 + c7c2829e-b059-5c41-c050-c5244d4cc0f9 + Grafisches Netzelement561 + + + + + 625a1d40-5483-0a9d-ff04-b75c6db0e372 + MV3.101 Bus 130_Graph + + + + + dd512405-bfcc-0c86-dfe1-d0fe5b406bba + MV3.101 Bus 11_Graph + + + + + 180 + d6130e0e-9c95-921e-25b7-7aaff603858b + Grafisches Netzelement331 + + + + + d6252ecc-cd6d-bddf-9681-1dd40f1a8029 + Grafisches Netzelement637 + + + + + 75571004-565a-f1e1-7de6-19cce58b5480 + MV3.101 Bus 112_Graph + + + + + 180 + e6ec3ed4-21bb-1427-8089-2722ffef2cff + Grafisches Netzelement599 + + + + + 16e4580c-0784-98c2-0c81-668f63a63a96 + MV3.101 Bus 50_Graph + + + + + 180 + 75b29adf-6445-8c6e-b29a-04c4f2f1cef3 + Grafisches Netzelement301 + + + + + 46f6c438-1230-6b32-bbaa-90a6f8418c30 + Grafisches Netzelement678 + + + + + 95c59ab8-03a3-5f27-7a04-b7c1ac1d4b82 + MV3.101 Bus 114_Graph + + + + + 1cd538f4-4f28-3c61-5f46-9d312550a9e5 + MV3.101 Bus 23_Graph + + + + + 180 + 6ce4ec9d-a754-f5e9-991c-944ff0985a41 + Grafisches Netzelement308 + + + + + 180 + f5c776c0-d5a5-0c4d-b774-a6533221de45 + Grafisches Netzelement576 + + + + + 180 + 1820ca4a-3001-2142-ed79-703ff9153850 + Grafisches Netzelement660 + + + + + eda9ecc3-f55d-826e-1dc8-48c01dc218de + MV3.101 Bus 136_Graph + + + + + 9ce59668-463a-8f66-cb8b-2a0ec1b81a18 + MV3.101 Bus 42_Graph + + + + + 180 + 1599d5ce-9f6f-2253-6886-b2351306f983 + Grafisches Netzelement277 + + + + + 180 + abb101bb-9836-68ca-b6d8-d14a10526f1b + Grafisches Netzelement573 + + + + + d813f038-b0d4-729d-d108-94998d4b86bd + Grafisches Netzelement680 + + + + + b65197b0-a796-af02-b098-7d66f62ffb8e + MV3.101 Bus 58_Graph + + + + + 180 + 89f65626-4c40-7753-051a-a4f783134671 + Grafisches Netzelement262 + + + + + 180 + a4f31104-a113-e4ad-6659-8c06844e7241 + Grafisches Netzelement304 + + + + + a9ccc62e-d1d4-52e5-4c53-627cde1222f0 + Grafisches Netzelement640 + + + + + 180 + 87ba2fac-f166-4d0c-9e75-aa322aa95cee + Grafisches Netzelement588 + + + + + d2b74e5a-eb3b-229f-18e7-4a0023854235 + MV3.101 Bus 74_Graph + + + + + 3bcbd2c7-1713-644a-f8d8-50ea86b36cf0 + Grafisches Netzelement258 + + + + + 98ee8dfd-a538-ec44-625b-78561a79d71e + Grafisches Netzelement626 + + + + + 180 + 01b2229c-1cac-a4a1-5d9d-d3c385611d2a + Grafisches Netzelement320 + + + + + 28766426-ec78-b464-5adc-6524489dc9a1 + Grafisches Netzelement606 + + + + + 8619c22c-7a1c-ecef-88c5-d7eef7bddbf0 + MV3.101 Bus 80_Graph + + + + + 64db2fcc-218d-f226-8c63-f5dff5ebf202 + MV3.101 Bus 124_Graph + + + + + e1267b28-5b38-8079-da6a-008cec528bbc + Grafisches Netzelement641 + + + + + 9f345166-d245-fbb7-cd12-aabea26ca8b9 + Grafisches Netzelement586 + + + + + 180 + 4c988d63-54f3-f1f1-c881-b93e96bfdbf3 + Grafisches Netzelement296 + + + + + d5ab7ad3-2fb9-7c75-5b10-05432fe45d7c + MV3.101 Bus 81_Graph + + + + + 2bc52478-7c8f-1a3c-0375-f48d89846a2b + Grafisches Netzelement272 + + + + + 180 + 97f300f4-a3d5-bcb7-eb99-8cca7a99a3d7 + Grafisches Netzelement668 + + + + + 4f5c8558-668e-4591-52f2-10e142b42805 + MV3.101 Bus 43_Graph + + + + + 180 + 10730965-9e12-240c-0e5a-7a1f80ac097f + Grafisches Netzelement597 + + + + + 180 + 01484643-9876-83e6-fb35-a56d23c6f517 + Grafisches Netzelement295 + + + + + 20236ee9-e5be-15ef-d326-c430b10b60d8 + MV3.101 Bus 128_Graph + + + + + c9825376-b886-c40f-a912-fc924e2cbd32 + MV3.101 Bus 33_Graph + + + + + d58ed532-817c-2eac-d2bb-f080c19d2815 + Grafisches Netzelement685 + + + + + 180 + 72642c34-21ae-f793-ed91-9c90f394c2b0 + Grafisches Netzelement601 + + + + + 180 + 1e6f5695-b729-736b-368c-ccd1ae09caa4 + Grafisches Netzelement330 + + + + + e1cd8ee6-b564-6682-1fd3-6793b13ce7d8 + MV3.101 Bus 39_Graph + + + + + c35a27ba-b1cb-cd15-666a-df8f907ab40c + Grafisches Netzelement663 + + + + + 180 + cda8ca79-fdee-cc7a-c6db-aa8a91ce8821 + Grafisches Netzelement549 + + + + + 180 + 9c384ea0-ccfd-3006-cfc5-0103693b8117 + Grafisches Netzelement279 + + + + + 7c72c963-06a8-614c-5026-fbc4cd6c70fd + MV3.101 Bus 41_Graph + + + + + fe52d1ec-4cd5-7ee6-f711-4729b438c91f + Grafisches Netzelement682 + + + + + 180 + aabb1f92-90d1-0588-41d4-1b639b861ae9 + Grafisches Netzelement583 + + + + + 46294077-3c0a-970e-59c8-a61942afb83f + MV3.101 Bus 22_Graph + + + + + 180 + e6471ee8-544a-6a13-a1e1-462bfc0eb548 + Grafisches Netzelement313 + + + + + e2e8b3b7-7df4-39a3-fb92-96605dbea26a + MV3.101 Bus 131_Graph + + + + + 4bfb7ae1-9fe5-d684-87a5-3ac488192181 + Grafisches Netzelement629 + + + + + 94a78de7-bd88-c545-d3c2-38b5bae6d90d + MV3.101 Bus 76_Graph + + + + + 535a5ffd-9535-d758-50a6-03920fbdb2ed + Grafisches Netzelement557 + + + + + 8b885c6a-44d9-c05c-ad73-28750e950946 + MV3.101 Bus 107_Graph + + + + + 180 + 1308bc8b-917a-0254-a018-20f304e9359d + Grafisches Netzelement327 + + + + + ef1a1ae0-9cc8-2158-5003-1488d42b114f + Grafisches Netzelement634 + + + + + cc5918d0-7b63-e9d7-13d3-55d242b1e09d + Grafisches Netzelement529 + + + + + 180 + 0a322ef1-a369-f653-0a1e-19083c7d5834 + Grafisches Netzelement571 + + + + + db20bbbe-bbb2-e191-a75c-475b98b16f1e + MV3.101 Bus 99_Graph + + + + + 180 + 16c728cc-77af-bf73-89ba-c96c1bbafcb1 + Grafisches Netzelement293 + + + + + 77 + 8352312a-3652-1162-476b-9f3b8c321cd1 + Grafisches Netzelement350 + + + + + 180 + 90cd631b-f6d0-5720-2d52-adb617e60966 + Grafisches Netzelement539 + + + + + 56de7834-d5b3-f387-c0ea-e16e5ed4f913 + MV3.101 Bus 127_Graph + + + + + 180 + 1051404d-072b-c463-b7f2-5c259a2044b1 + Grafisches Netzelement305 + + + + + 26a3bd2d-a3c7-afe6-7ed8-77e594ad01f4 + Grafisches Netzelement158 + + + + + 180 + 28289985-9789-3756-a9d0-66b2eb85d9ce + Grafisches Netzelement522 + + + + + f0d4b31a-cefd-a713-0fac-6ee31dfbc782 + MV3.101 Bus 129_Graph + + + + + 180 + 799796c9-65a4-0b65-29a8-b78607b9969f + Grafisches Netzelement600 + + + + + 180 + 37cd28e8-e538-3020-314b-3a00dfbd6d7f + Grafisches Netzelement314 + + + + + fc56243e-7182-8a26-fa95-2dc529e0709a + Grafisches Netzelement502 + + + + + 8e0e51b3-7bf7-0b1d-ab1a-f62af9ebf12f + Grafisches Netzelement167 + + + + + b1fc20b3-cf04-f7a3-fa1f-6a27cd7bb0f4 + MV3.101 Bus 103_Graph + + + + + 430f248c-8d7c-41cc-783e-6fe15e12f8fc + MV3.101 Bus 45_Graph + + + + + 9867ee7b-a78b-d379-397b-7b1176d8c301 + MV3.101 Bus 73_Graph + + + + + a55c7b66-e8d5-b6e1-a017-751b7d3d1010 + Grafisches Netzelement194 + + + + + 10127de1-282b-a13f-e103-8d30286336c7 + MV3.101 Bus 56_Graph + + + + + 73bad8bd-d0ae-01b6-41f6-be212a0325fc + MV3.101 Bus 116_Graph + + + + + e06d2292-c433-50eb-7552-788b535bc1ea + Grafisches Netzelement504 + + + + + cfcef23e-4f83-ab64-4466-7318e36de39d + MV3.101 Bus 53_Graph + + + + + d646c942-d11a-5e82-997f-67fafa175412 + Grafisches Netzelement136 + + + + + e487db45-bea2-789c-0a58-ac0bc99cacbd + MV3.101 Bus 133_Graph + + + + + 180 + 3b038469-4e65-7768-9c4e-d6142845ad7e + Grafisches Netzelement492 + + + + + 3d9cd71c-1aa3-8b38-73b7-5d29f49e5647 + MV3.101 Bus 57_Graph + + + + + 9a99fc09-29bc-da5e-9f1f-dc34f91bfb7e + Grafisches Netzelement145 + + + + + 9a6bb444-6ccf-2387-937c-ce919719e00b + MV3.101 Bus 113_Graph + + + + + 7a233747-2403-e49a-2109-2c6ae560434c + MV3.101 Bus 14_Graph + + + + + ed703001-1935-e166-0aba-f33778813d74 + MV3.101 Bus 82_Graph + + + + + a1fc778e-3c73-d331-0783-6927f0a9e4bb + Grafisches Netzelement149 + + + + + 174469c8-bb6c-ffdf-4762-dc4c098aa87d + MV3.101 Bus 119_Graph + + + + + 180 + 59b7147c-3351-597f-0f25-cdd22f6ceb62 + Grafisches Netzelement306 + + + + + 271328cd-e680-ba58-6afa-8448d2281026 + MV3.101 Bus 72_Graph + + + + + f2e6478f-097a-2daa-9547-3396954e768b + Grafisches Netzelement144 + + + + + 331e4a86-caae-15dd-327a-07975a4b0ab6 + MV3.101 Bus 109_Graph + + + + + 8375cec0-3717-98a1-23e9-ec6d526950b5 + Grafisches Netzelement321 + + + + + faf420a7-8e1b-5c8c-5aff-d4b00b06f8dc + MV3.101 Bus 83_Graph + + + + + 50caf5ae-0339-d687-e66d-d50dd9c07b0a + Grafisches Netzelement191 + + + + + 2843a9fb-ceba-c2d1-fcff-b880b3f562ba + MV3.101 Bus 101_Graph + + + + + 180 + 1e57b6a0-5bc9-2f2e-cc33-cef88ccb5ffe + Grafisches Netzelement276 + + + + + 131 + 434b68b9-15fc-c684-d5a5-0d22947c5761 + Grafisches Netzelement445 + + + + + 180 + 6d46aa0d-e55b-e8da-0fb6-dd13dccee0db + Grafisches Netzelement521 + + + + + 38133b35-8a6d-783b-5059-5e1f140eb56c + Grafisches Netzelement196 + + + + + 455fcfdd-42d2-5512-28e7-5a7dcbe1a5a1 + MV3.101 Bus 123_Graph + + + + + 180 + 734f5079-20fa-df0a-172e-519fb002a417 + Grafisches Netzelement309 + + + + + d04e9d6a-cc5a-aa2c-b1ef-7ac536e405d9 + Grafisches Netzelement519 + + + + + 256 + 65133344-b0fb-9c0a-2fc3-919a3d414ae0 + Grafisches Netzelement340 + + + + + 5fde958b-a8ef-d81b-0a8f-b31779346784 + Grafisches Netzelement137 + + + + + 180 + a17fb573-7878-992e-56af-d930a9771321 + Grafisches Netzelement608 + + + + + 8f6754a3-496a-6127-af55-84dc85334b3b + MV3.101 Bus 105_Graph + + + + + 180 + cfb69834-8ab8-2c47-e7f4-561b2463113d + Grafisches Netzelement315 + + + + + 1840eee2-d1a6-431f-1fc2-473a090274dc + MV3.101 Bus 64_Graph + + + + + 144 + ec7f6c95-0472-6f45-9a15-0b25ee16ad23 + Grafisches Netzelement439 + + + + + 332 + 1a2c74d8-5db1-2596-0556-6051a717aa95 + Grafisches Netzelement346 + + + + + 180 + 593ee2a0-8734-8a85-ef0e-599d3e9b9cc7 + Grafisches Netzelement568 + + + + + 94ad604d-0dec-0c35-acd2-37dd24778803 + MV3.101 Bus 121_Graph + + + + + 180 + dc53cfc1-af12-bacd-07a9-c96cc0f2d0be + Grafisches Netzelement323 + + + + + 5cda247b-69f9-61cb-1687-138c2b354af8 + MV3.101 Bus 65_Graph + + + + + 62 + 7782c218-f0b4-8579-894c-f7b7a67a2fea + Grafisches Netzelement345 + + + + + 2862e516-b022-a0cf-a4ca-a0d18dc3f804 + MV3.101 Bus 141_Graph + + + + + 180 + b9dcc999-3d0a-ff2d-6052-7c54666cb051 + Grafisches Netzelement550 + + + + + 180 + 09b27c13-1d37-cbf6-7e8c-7e84a3a6f761 + Grafisches Netzelement292 + + + + + e7704378-4108-ec65-48ab-a2c156fb97a7 + Grafisches Netzelement507 + + + + + 333 + be073bef-0752-e428-c842-3864ff8ac303 + Grafisches Netzelement360 + + + + + d5049a89-409e-3071-f168-b41761b8f4eb + MV3.101 Bus 142_Graph + + + + + 180 + c5fb79e5-9715-1bdd-748d-40eb6c3f450a + Grafisches Netzelement563 + + + + + 210 + 979b8973-abb8-8b02-8559-0ecb973d6c2e + Grafisches Netzelement436 + + + + + 861e78d0-71f7-a891-e65a-c4a21c39e380 + Grafisches Netzelement541 + + + + + 180 + 6bea2d28-454f-07a1-035a-d2c4ba910c35 + Grafisches Netzelement316 + + + + + 318 + 111849c2-066e-40d8-1320-b705520a06a0 + Grafisches Netzelement392 + + + + + 99 + dbc92563-9f5b-8777-93d1-65bb88948cb5 + Grafisches Netzelement422 + + + + + 4b94956e-0b10-c4fc-8d84-d658af5793a9 + Grafisches Netzelement534 + + + + + 180 + 029f36ce-12a9-dff2-c410-36ca7085b7d7 + Grafisches Netzelement579 + + + + + 180 + 66e7d7f4-6b0a-e07c-023e-6f033903dec4 + Grafisches Netzelement322 + + + + + 320 + 92e17710-4857-2d69-4df7-5822d9c4c4be + Grafisches Netzelement435 + + + + + 344 + 6672667c-0413-d614-c39e-5a3884f160a8 + Grafisches Netzelement388 + + + + + 355 + de6d5a49-84a0-8cd6-19bd-6615e7a1b6a4 + Grafisches Netzelement466 + + + + + 9f126bdb-d491-1287-7631-a0c9d73998d2 + Grafisches Netzelement581 + + + + + cedb4d4c-73f4-88d1-f979-ac25dfb2cd90 + MV3.101 Bus 78_Graph + + + + + 180 + 9e1c2e97-168a-95ce-1432-68fb07237b0f + Grafisches Netzelement417 + + + + + 76 + 292e15d7-890b-3107-8e21-71bda740173d + Grafisches Netzelement336 + + + + + d05f3cbb-ae24-02ae-7ab8-2e1fe5f3a34e + Grafisches Netzelement140 + + + + + e7536900-a2d1-301e-7f32-90a97fb5ce06 + MV3.101 Bus 67_Graph + + + + + 6 + ee54ccf7-3a74-ae16-5e60-a5cbfc123942 + Grafisches Netzelement442 + + + + + fc0f70ef-21d3-004c-bc15-d81d8a7ae6ce + Grafisches Netzelement182 + + + + + f6919f5a-701a-9a40-b773-3fd8cc3db153 + MV3.101 Bus 71_Graph + + + + + 276 + 5776c00e-e1d7-2a19-636b-8f70075f8289 + Grafisches Netzelement396 + + + + + 139 + 65e6f7b2-7a5b-1a2e-9150-4857b1d576d7 + Grafisches Netzelement428 + + + + + d919618b-312a-4573-da88-59827b1c1804 + Grafisches Netzelement169 + + + + + ab5d1174-87f5-817c-5a4b-f27e79bb6b00 + MV3.101 Bus 37_Graph + + + + + 315 + 3fcc19b4-e3c3-f1ed-2d47-cd598879a01b + Grafisches Netzelement344 + + + + + 328 + ae32a008-55b3-6b6f-681f-db06119bbf9d + Grafisches Netzelement447 + + + + + 15b6b04d-5209-d407-768f-a0af17c4c7f0 + MV3.101 Bus 12_Graph + + + + + a8d945ac-54ab-14c4-1481-b3a3b7c686d6 + Grafisches Netzelement152 + + + + + f38cf2b1-5501-6bb9-e230-618ae489ef4f + Grafisches Netzelement656 + + + + + 256 + aa585588-c811-ed38-d038-6c2e26b07240 + Grafisches Netzelement359 + + + + + 1f785479-3717-cb71-e148-25bf0fcf5320 + Grafisches Netzelement433 + + + + + 76296a56-8fb3-a815-c6a2-529762ceb001 + MV3.101 Bus 46_Graph + + + + + 97f33e84-7f7e-5d37-5f9a-86889125625a + Grafisches Netzelement178 + + + + + c846eab0-69e4-db1c-955f-3cce657533b9 + Grafisches Netzelement526 + + + + + 328 + eebe2aff-bac2-14f5-a2a0-6941ddb536f4 + Grafisches Netzelement363 + + + + + bdb87190-41d5-e403-7c67-7e4d8189334e + MV3.101 Bus 84_Graph + + + + + 209 + e3f4e028-8a93-70dd-eefa-d8afc072b46b + Grafisches Netzelement399 + + + + + 180 + 86c9d862-16f7-879a-b588-b6e3c1884d4b + Grafisches Netzelement483 + + + + + 6705d267-8e38-66fc-dcb5-91e064c7cb8c + MV3.101 Bus 36_Graph + + + + + 234 + 2259cbb8-33b0-f3e6-bc47-1b49ccf2965b + Grafisches Netzelement365 + + + + + 208 + ab3bb073-fe8e-6b36-8ce7-a91bc7789d59 + Grafisches Netzelement402 + + + + + 180 + 28beb6f6-3e57-23ab-16c2-fee02fcfef5a + Grafisches Netzelement532 + + + + + 6cd99e19-7c8e-68e5-df79-4e790f1ec873 + MV3.101 Bus 52_Graph + + + + + 39 + 0a78fdf9-bfb9-f026-d53a-2d93667a4811 + Grafisches Netzelement467 + + + + + 283 + b714d575-4511-0826-878e-92291591841f + Grafisches Netzelement385 + + + + + 347 + 0bc08f88-36c8-aaf3-b2f1-5e32bc8e92d0 + Grafisches Netzelement401 + + + + + 1ec4dfe7-d15b-4d3b-78d3-8e3808280c93 + MV3.101 Bus 26_Graph + + + + + 180 + a5ad6376-5059-10d3-1c48-9ed2d8a88a55 + Grafisches Netzelement500 + + + + + 8a919003-9dac-51ea-523a-621502597e9b + Grafisches Netzelement186 + + + + + 95 + a3bd6dc1-8845-0dde-fad1-f149fbf1b23d + Grafisches Netzelement352 + + + + + 207 + fee9a2b9-0ad0-ad11-3675-53b787cb8874 + Grafisches Netzelement403 + + + + + 7638ae4a-1dc0-56a4-dd86-d6810dc5fff7 + MV3.101 Bus 18_Graph + + + + + d0b3aa58-d465-9bb0-9ebf-bd9285774055 + Grafisches Netzelement523 + + + + + 40dd88cb-2c39-9219-481f-1fbe247a1561 + Grafisches Netzelement174 + + + + + 270 + 0b56f783-698b-63b9-6932-9ac2d1599aa8 + Grafisches Netzelement348 + + + + + 337 + f7991075-102d-ea27-d518-a66bd53f61e5 + Grafisches Netzelement426 + + + + + 29efd5de-70fd-acf1-69dc-febae95f66d7 + MV3.101 Bus 24_Graph + + + + + d40829e9-9ab5-e621-f808-8ab24afd8fe6 + Grafisches Netzelement503 + + + + + 7426f249-e569-ce10-de2e-d15dce64bca2 + Grafisches Netzelement162 + + + + + d83622e9-649d-4ff4-2a42-659ef858f33f + MV3.101 Bus 49_Graph + + + + + 180 + e5eddb6a-cb01-f341-ee49-ae82244989f3 + Grafisches Netzelement380 + + + + + 7bc83ba5-8919-c133-2ad1-b4159d917f0b + Grafisches Netzelement535 + + + + + 260 + 7593bc79-f1a8-a5d5-87ef-10b92000a5ae + Grafisches Netzelement418 + + + + + 22e93d58-0b8b-938a-7899-7b742e10dce5 + Grafisches Netzelement181 + + + + + ec31c235-5633-14c9-cbbc-f8b5f9c696ff + MV3.101 Bus 44_Graph + + + + + adc208a5-f1b9-6056-49e2-ac7d94158eb1 + Grafisches Netzelement542 + + + + + 175 + 38a36a0c-5983-e1d1-e745-ad24c31e4dfe + Grafisches Netzelement382 + + + + + 5d37a826-d0da-e2c6-4f7b-47cda79a68ae + Grafisches Netzelement185 + + + + + 252 + 9cf6b114-d21f-1ab0-ad3b-51ff78bfb869 + Grafisches Netzelement424 + + + + + e5fdfeff-0c2f-55e4-6bde-e2ea89ce128c + MV3.101 Bus 27_Graph + + + + + c52a1f17-c688-16ae-2490-fa11eb4a0276 + GCO_1 + + + + + 180 + 11261b21-b8db-6799-3567-9f1c835f8fa1 + Grafisches Netzelement518 + + + + + 176 + c088b93a-8130-dac8-e9d5-5039ddab8e73 + Grafisches Netzelement368 + + + + + b02ed78e-e030-11e8-23ea-f5b04f1956f5 + Grafisches Netzelement151 + + + + + 337 + 3be9f096-9a21-45cf-9565-e83b01129536 + Grafisches Netzelement440 + + + + + fc03d103-b90d-1f27-dddf-b763bae37cde + MV3.101 Bus 47_Graph + + + + + aac2c862-fc76-8a08-2a2f-bbf638ad3c85 + GCO_1 + + + + + 180 + 361b0924-bfd1-c020-f913-1fab5eb4bd2d + Grafisches Netzelement482 + + + + + b7d0f363-51bc-3986-9e85-0f941add7a99 + Grafisches Netzelement173 + + + + + 180 + 8f597db7-8d1f-f223-cc99-1f89d4ab1d43 + Grafisches Netzelement351 + + + + + e4f8aac2-5eb3-8597-f66d-0465b5eaef80 + MV3.101 Bus 40_Graph + + + + + 256 + d8dc586b-bc23-0265-0b27-bb96c051ca69 + Grafisches Netzelement419 + + + + + b24da85d-fe2c-5b59-e4a4-ed53f45bd2ae + Grafisches Netzelement564 + + + + + ba85d0e2-b161-4147-bf32-77bebb42b435 + GCO_1 + + + + + 7fac11e9-c55f-7d51-25bd-ff7e061d5210 + Grafisches Netzelement512 + + + + + 41c43300-b21d-c0d8-a854-6e637aaa71db + Grafisches Netzelement192 + + + + + 177 + a3565092-c698-e9a2-b439-eb2296f38c61 + Grafisches Netzelement338 + + + + + 4529c09a-26a2-745d-7840-d401d7e1c3f8 + MV3.101 Bus 30_Graph + + + + + ef1e6caf-e301-0b2b-5375-d7da038d34e1 + Grafisches Netzelement593 + + + + + 7a846e63-34e7-a1a3-243f-2bd4061856ab + GCO_1 + + + + + 7afb0be5-5516-d212-c0b8-9d2b427f75e9 + Grafisches Netzelement520 + + + + + 6d009921-a4c4-ad65-01ec-0b39261b55da + Grafisches Netzelement159 + + + + + 240 + f4687cd8-a770-6ab8-d082-0a0329942970 + Grafisches Netzelement339 + + + + + 58c248c6-30b2-7f74-72a4-391aef227c93 + MV3.101 Bus 75_Graph + + + + + 180 + 81b396d0-b798-0af4-da7b-bb46002785a0 + Grafisches Netzelement580 + + + + + 9ab585a6-bb94-ab75-68ab-0d4423480299 + GCO_1 + + + + + 28d3c859-1cf7-5208-e33d-0812452d6a20 + Grafisches Netzelement657 + + + + + 05a64faf-823a-045c-b7c9-1d1c28b9d4f4 + Grafisches Netzelement166 + + + + + 173 + 422ee789-d6ff-9790-2852-0da66e1788f8 + Grafisches Netzelement369 + + + + + e60c612d-75d4-98f2-1306-cf8442eba22c + MV3.101 Bus 85_Graph + + + + + 180 + 8277651a-8dd9-19b8-0dc1-be68fb3b0812 + Grafisches Netzelement596 + + + + + 3b480b90-38f4-9fdf-0510-7217a378572e + Grafisches Netzelement165 + + + + + 1c605967-d7e9-a209-eb2b-94028a75f419 + GCO_1 + + + + + 8a15d479-27e5-babf-519a-35f8528e8990 + Grafisches Netzelement168 + + + + + 253 + 7a30bf46-afd0-f0db-788e-3760b3c7aff6 + Grafisches Netzelement443 + + + + + 332 + 3bef817f-7a8b-9fd5-5644-3ce2e6c21946 + Grafisches Netzelement366 + + + + + cab1ea01-07ca-ad83-5021-16ad03a0c00d + MV3.101 Bus 66_Graph + + + + + 180 + 0c5a0e8e-ea5c-1231-bf2f-990fa2d94904 + Grafisches Netzelement602 + + + + + c081f815-41ff-a46c-4e48-4ce5f0608cda + GCO_1 + + + + + 1c18e257-7f95-3a57-0506-d69e132e2939 + Grafisches Netzelement146 + + + + + 3174690c-eb3b-8df8-ba64-a59934b3a64a + Grafisches Netzelement170 + + + + + a2fdae49-5cb9-e92f-17c3-744b1cab4025 + MV3.101 Bus 17_Graph + + + + + 177 + bb3ec6cb-b0db-2fa2-4135-157e860b2eb0 + Grafisches Netzelement390 + + + + + 32ae9929-f57a-8892-edc3-c50d19d8f179 + GCO_1 + + + + + 180 + b7a35ab1-59fc-1bfe-d295-24afaf3efbfa + Grafisches Netzelement311 + + + + + 5f6ac04d-0f2f-cd6c-417e-91cbda5411c5 + Grafisches Netzelement171 + + + + + 21ddebf8-af17-f781-eb86-3c379c98a87b + Grafisches Netzelement187 + + + + + 04b6ba39-b81e-f7d5-dcad-21a4dbf43cde + MV3.101 Bus 15_Graph + + + + + 103 + 845849aa-119b-3c26-a60d-6dd16475e5b4 + Grafisches Netzelement367 + + + + + 1d2c3855-fd5c-1c02-e136-1aaf785ded39 + GCO_1 + + + + + 2628c19f-6c31-8008-e824-f9a4e367c296 + Grafisches Netzelement590 + + + + + e8cbccdb-e124-38da-cb83-0aae43980e1b + Grafisches Netzelement188 + + + + + 12780fbb-efe4-97db-7838-ea294eb3db4d + Grafisches Netzelement193 + + + + + 256 + 2ef843e9-6040-4e42-143c-421ffc16ff72 + Grafisches Netzelement405 + + + + + 19455237-a1a3-11d6-cf7b-2223b7f68b41 + MV3.101 Bus 35_Graph + + + + + 153 + 95cecb0f-ee04-c9fe-0cf7-b2411eb1341d + Grafisches Netzelement384 + + + + + 02478020-1fcd-d0d0-7a31-96f9469ecd45 + GCO_1 + + + + + 1e1b1da3-9ee1-1c5c-17ea-1f8166620cb3 + Grafisches Netzelement261 + + + + + 180 + 97ebc341-7f06-b267-a060-fa32e702bae8 + Grafisches Netzelement574 + + + + + 167 + 43076051-64ab-6897-cc8e-a44770f6dfde + Grafisches Netzelement389 + + + + + 256 + 50fde168-cb49-a8c1-8a26-13f0ef001d38 + Grafisches Netzelement406 + + + + + dbcab6f7-081f-78ff-3529-834bc948850b + Grafisches Netzelement138 + + + + + ab942d39-e616-b1d9-e6f3-a9137a5db715 + GCO_1 + + + + + 174 + ddb2a399-a342-6c0b-c954-bd8a083644f1 + Grafisches Netzelement387 + + + + + 503b03da-c02c-075e-885b-26c5c7199b5f + Grafisches Netzelement559 + + + + + 126 + 0f737195-16e9-a049-b584-03e2ff7de67d + Grafisches Netzelement370 + + + + + 5 + 0334f921-1bad-e866-4301-946f009d18dd + Grafisches Netzelement423 + + + + + 2db0d43d-7f7a-2f9c-d781-89b0290ec10c + Grafisches Netzelement259 + + + + + bb69c1d9-3b62-e8eb-1d4a-b2da40fd3c3e + GCO_1 + + + + + 40 + 0550ab49-71c9-27f0-c2e0-c445085dff24 + Grafisches Netzelement383 + + + + + 180 + efc0d999-5af7-6198-e934-8e22e8803f8d + Grafisches Netzelement577 + + + + + 798baa77-db17-3b9f-b181-1b9fd08f92d8 + Grafisches Netzelement172 + + + + + 260 + d74e241d-ae6c-5e5a-2a9e-bd1d183bbf5e + Grafisches Netzelement404 + + + + + b6d3bc03-259e-8aa7-41a1-94ad22a0787e + Grafisches Netzelement176 + + + + + 71514ae6-dfb0-e6f4-deff-23d5ca7972c2 + GCO_1 + + + + + 108 + bc064fe2-fcc5-54f5-8858-4b5c39a711f2 + Grafisches Netzelement349 + + + + + 439efbe9-7f8b-77d6-db1a-b679142b5a8c + Grafisches Netzelement582 + + + + + 432a391b-a857-02a0-5ee2-cab2cd79a359 + Grafisches Netzelement141 + + + + + 2499adea-6593-cacf-6b40-6784e1b179c3 + MV3.101 Bus 20_Graph + + + + + 90 + 552274a0-723c-a939-d058-4df287d58d55 + Grafisches Netzelement432 + + + + + 9db0660e-c02e-ba8d-e538-dcb10a17b4d6 + Grafisches Netzelement163 + + + + + 1d9934f7-bbc8-a1a7-e6e0-e8a727d0215d + Grafisches Netzelement605 + + + + + dcbe62fd-112c-efee-8433-49df987b1b66 + Grafisches Netzelement147 + + + + + 380c4b44-d926-c7c1-088e-1d35ee7fa934 + GCO_1 + + + + + 340 + 793e44e5-7253-bd85-f170-f3b2ac1dea9e + Grafisches Netzelement458 + + + + + 9c09a71e-d803-1e47-560a-38d5a630bf00 + GCO_1 + + + + + 229 + 2cf6d2ab-f068-1a4b-e410-c71e51074960 + Grafisches Netzelement431 + + + + + 180 + 19ece575-359d-8297-42ab-eac2ef3c98fd + Grafisches Netzelement515 + + + + + 009d19a9-b066-0c8c-1cf3-4d545ca6edad + Grafisches Netzelement604 + + + + + f9315997-d0b6-a240-3819-49672cc1eba3 + GCO_1 + + + + + 175 + e4295646-6e7f-97d9-8a47-52faafdf4243 + Grafisches Netzelement353 + + + + + 276 + 7ebbcd5a-d845-412c-d4f9-7e82ad00d286 + Grafisches Netzelement441 + + + + + c755be90-29b9-986e-bb69-fd1edf6b1d61 + GCO_1 + + + + + 207f386f-501d-b33c-a736-c612a32782d0 + Grafisches Netzelement164 + + + + + 243 + 5ee27373-bc9c-4481-2493-e448e10e203e + Grafisches Netzelement429 + + + + + ee7ec4fe-34e0-be3d-6dfc-aecce518d5c3 + GCO_1 + + + + + 180 + 95a0014e-f76f-ec31-4f57-3df381d1676b + Grafisches Netzelement566 + + + + + 159 + 8536fd8e-f2bd-6b5a-4fa8-b19f3e8cfdbc + Grafisches Netzelement395 + + + + + 167 + 8057984d-3110-f0a2-151a-1a84e494d8be + Grafisches Netzelement357 + + + + + d45d24ca-c60b-fa95-b8af-1bb7e7e32cad + GCO_1 + + + + + 0851624b-73cd-2f18-31af-fb5deff4fe5b + Grafisches Netzelement153 + + + + + 8 + 71b3b8ff-6931-39d0-a638-b6e4c026b865 + Grafisches Netzelement410 + + + + + d5e02112-a549-0c3a-342c-ade231cd5066 + GCO_1 + + + + + 180 + 527dc39d-3d19-9bd0-14f0-9ced1ae924a5 + Grafisches Netzelement607 + + + + + 162 + 8ae6646b-5d0d-2869-1ab4-c3d86ac42f93 + Grafisches Netzelement378 + + + + + 9e2d66d1-c75f-4e3a-6b66-33161637079c + GCO_1 + + + + + 253 + 9db6ed1b-5767-77ec-1925-3ffe2f455148 + Grafisches Netzelement414 + + + + + 3f5d9eff-874f-3ffa-c488-7fd525a03334 + Grafisches Netzelement139 + + + + + 4c831559-958d-1662-4fca-4cd4b26f0b6d + GCO_1 + + + + + 45 + 00e9d7ed-fc77-ebf2-87e7-0af9e9d85c98 + Grafisches Netzelement450 + + + + + d9dcc0ec-1a4a-cf22-02fe-1762703d9c8d + GCO_1 + + + + + d9c35df1-6122-5668-30e6-c9c60f4abe83 + Grafisches Netzelement552 + + + + + e2187b1d-00e3-daa9-65e0-8345922918e8 + GCO_1 + + + + + 15a279d7-91e5-a2bb-b21b-9eb3a5c2425f + GCO_1 + + + + + 148 + 7a056685-10d8-a339-44ad-5225a08f974c + Grafisches Netzelement364 + + + + + 246033ba-0eea-a7d5-177a-1277146410ae + GCO_1 + + + + + 4e041c4e-45db-1088-8136-811f82747e82 + GCO_1 + + + + + 093a08be-a86c-bc01-eba4-00bb3fa18439 + Grafisches Netzelement594 + + + + + 216 + a0e2e305-38ff-8bdd-00c4-4e20b92583ff + Grafisches Netzelement444 + + + + + 87522461-c0c2-e0b9-eeb2-1e2840ae5f0a + GCO_1 + + + + + a258c16f-1ffc-ebd7-5ccc-7a8e9a0a892d + GCO_1 + + + + + 118 + 43bb3dec-bc76-47bf-42c8-a0a75848c907 + Grafisches Netzelement356 + + + + + b7773f83-1258-8388-f0a3-0a7a6c51884e + GCO_1 + + + + + c79dd5c5-1a0e-985d-f811-b04aea2aedb1 + GCO_1 + + + + + 78 + 2212260e-4a87-5306-6317-eb71a077bb1c + Grafisches Netzelement425 + + + + + 0ebba5fd-bc4d-5800-ce2d-122d916ddc65 + GCO_1 + + + + + e3d8770d-3066-c37c-d266-386ba04a06a5 + GCO_1 + + + + + 238 + 6764c290-9056-28be-5db6-0ca75670c626 + Grafisches Netzelement409 + + + + + b3430abf-a800-2d53-463e-5568f903a9f2 + GCO_1 + + + + + 110 + 3e9ca4db-ab0b-5d19-3073-41e2f5d2aa1a + Grafisches Netzelement397 + + + + + 8863f5bd-de39-c101-f741-c974b1ed0291 + GCO_1 + + + + + c864398a-7358-b95c-4da1-827bda185ba0 + GCO_1 + + + + + 87 + 62c29592-87c0-4293-3f3c-baf9dd7208dd + Grafisches Netzelement446 + + + + + 48c8e757-ffac-0a72-c119-094df399ac7f + GCO_1 + + + + + 4a6dd3c7-1c40-416c-d60e-0b0d7268a8bc + GCO_1 + + + + + efee5082-227d-30c5-0f89-5e2ad851bc69 + GCO_1 + + + + + 261 + 5240f959-6c38-d5fc-5bf0-4cad66e8382d + Grafisches Netzelement427 + + + + + 5f300a24-8591-83af-b110-36102adb6b15 + GCO_1 + + + + + 119 + 889f189f-9e65-030d-d791-391731c31263 + Grafisches Netzelement391 + + + + + 37a49993-b728-7c4d-9d48-277137e95fd6 + GCO_1 + + + + + 8850900a-3f17-4c9a-eea7-be47afe6cfbb + GCO_1 + + + + + 337 + 70686fcd-bbb3-eef6-e4d0-8fab6e4b3aa1 + Grafisches Netzelement456 + + + + + b1cfd87b-39e1-8eb1-4577-551ce9fc739d + GCO_1 + + + + + 039d5a54-2078-fab3-6273-152565cc6908 + GCO_1 + + + + + edd7f2d0-135d-1aec-c54b-b923ff820026 + GCO_1 + + + + + 297 + 35c994b7-d637-791a-b2e5-01a24150f0af + Grafisches Netzelement421 + + + + + b60415b2-eaa2-9dff-c837-9ac1d6f36423 + GCO_1 + + + + + 186 + 60b62eeb-8375-843a-21bf-c75094bb5e6a + Grafisches Netzelement347 + + + + + 22f85d47-4593-ed7d-7c9f-13fdac0caa32 + GCO_1 + + + + + 5fa2dc96-f10c-6c78-253d-bcbdf913dfcb + GCO_1 + + + + + 28232438-5f8c-0e38-95d6-4e88ee531f3c + GCO_1 + + + + + 216 + 38d98476-cd03-286a-cc80-bc939caba0d0 + Grafisches Netzelement473 + + + + + 27d446fa-ff26-6355-47f1-4a74651b6ab6 + GCO_1 + + + + + 90 + eb1692f5-2d58-7cae-90fb-5b792cd68600 + Grafisches Netzelement335 + + + + + f650c26d-278d-68cb-ea4b-1ab507ec81aa + GCO_1 + + + + + 125 + 7e981c19-db54-5010-b5cd-060c5be082a8 + Grafisches Netzelement377 + + + + + 78063407-499f-4bcb-682a-cf09ffcb2d7f + GCO_1 + + + + + 237d2a30-981d-745d-6e63-60eb44cbe7a4 + GCO_1 + + + + + c9721d6d-7567-254d-189c-ece9bcc5394a + GCO_1 + + + + + 66 + 2ab38423-8ae4-e775-d0eb-941698c266bc + Grafisches Netzelement470 + + + + + 28ee1fb2-ee2d-39a2-2caa-c63cfe04a61d + GCO_1 + + + + + 225 + 54f05bb3-073e-0c8a-2436-989f02b85f9c + Grafisches Netzelement386 + + + + + a5e1b732-e5a8-cf32-55ec-5248e8440f95 + GCO_1 + + + + + 78584edd-d481-46fc-d0d7-55f64a2bba16 + GCO_1 + + + + + 135 + d42e389a-f112-d4df-3800-aa49fc4fab2c + Grafisches Netzelement375 + + + + + 60bc053e-7e24-2f6b-c1ce-859521120167 + GCO_1 + + + + + 4e3bdcf0-c729-3757-1257-207fc889a0dd + GCO_1 + + + + + 47ab0734-393f-d2d3-e5cc-7a1d53f20a08 + GCO_1 + + + + + 54 + 7fc9a01e-11e7-a183-20e6-60352bc0643d + Grafisches Netzelement472 + + + + + f79b2dff-a808-4350-3087-646163c2bfb4 + GCO_1 + + + + + 247 + 4e7791d0-4047-c7d4-51ce-0e6635033b76 + Grafisches Netzelement437 + + + + + f3468bfe-a05b-726b-2643-68c7f4a2aebd + GCO_1 + + + + + 105 + c09a89dc-d26e-ff9d-d23f-d0b20e410171 + Grafisches Netzelement354 + + + + + 8970037a-4f8c-9312-8eef-77ba05531a24 + GCO_1 + + + + + 3c828776-9ef0-9d00-cafb-bab8d22c002b + GCO_1 + + + + + b88b7f7f-aac7-a6f5-5768-14f13586b5bf + GCO_1 + + + + + 25 + e69c82cb-e294-1acf-3691-9ec058efdafb + Grafisches Netzelement452 + + + + + 91008c71-ce93-3dd2-15e6-61f9f30a7efa + GCO_1 + + + + + 449b91ce-d056-fa85-7025-25baaa5e239f + GCO_1 + + + + + e1ecb8ab-8c96-3ded-8358-89dc2e6a9dcc + GCO_1 + + + + + dbda7c76-c0bd-adde-016c-25d6f70f2558 + GCO_1 + + + + + a8bd8612-9e74-24a1-3aa1-8b1ccf1dd3e6 + GCO_1 + + + + + 161 + 62f9ea20-2630-82e4-9534-e8586d1e17c5 + Grafisches Netzelement374 + + + + + 8af993a6-db95-0f37-5822-38f3e5146d14 + GCO_1 + + + + + 328 + 8a419a59-4e32-f861-1c5f-ea8e688a91db + Grafisches Netzelement408 + + + + + b6330441-3cbc-7e21-2f4d-9dc52292b1b9 + GCO_1 + + + + + d92acd52-f83b-cf55-292f-c423aad5c0a0 + GCO_1 + + + + + 730ec781-b8ae-ca01-b71e-abb4f2322efa + GCO_1 + + + + + 8c711b43-c3ff-a446-9fca-810df952796c + GCO_1 + + + + + cc20dbd6-36c4-6b0d-7a19-6b399c6ef258 + GCO_1 + + + + + 229 + e3033a98-c4a9-e7b3-7ef5-312adbf10c05 + Grafisches Netzelement376 + + + + + 46b13e52-407c-d0e4-f7f4-692908809575 + GCO_1 + + + + + a21442df-1786-7304-46e4-22761f143748 + GCO_1 + + + + + e5d2ae85-66be-b038-9ecb-fe2a8c1b6143 + GCO_1 + + + + + 70e62232-7c00-ab60-0c7e-6743c1cb6cd3 + GCO_1 + + + + + 43d72f35-c360-fe31-f14e-af7b2c92f05f + GCO_1 + + + + + f71d07a6-675c-2b6b-7fbf-67167fa5c3be + GCO_1 + + + + + 29e801e0-31ef-b32f-3f9a-bca4cac03997 + GCO_1 + + + + + 9c0ba0dd-d0e6-1b7c-12f8-9f3077293d1b + GCO_1 + + + + + 6cd32d15-5548-0be0-6a57-0a6a8b78806a + GCO_1 + + + + + e7c3fa37-db03-02b4-b9c7-d64e9744740d + GCO_1 + + + + + a3f0344b-a578-1e85-24c2-7c40ed386d6d + GCO_1 + + + + + 9893dee9-e121-52b2-83f5-7838f5361782 + GCO_1 + + + + + 27 + 6371bb96-57a4-7678-b5c4-ced2126d0a77 + Grafisches Netzelement455 + + + + + c8d5bd65-c0dc-dfd9-470c-e2f2433cd35b + GCO_1 + + + + + 4afc4855-84f3-2503-b05a-295d724efaf9 + GCO_1 + + + + + b4509737-b83b-c4a3-b83d-904ccaefe27d + GCO_1 + + + + + 21402b58-a720-e67f-16e0-290fe390a149 + GCO_1 + + + + + a26994dc-23c2-7610-9549-d10bb0f372ae + GCO_1 + + + + + 123b7856-c134-fb90-88d3-a348a82f2e3f + GCO_1 + + + + + 31805bef-a47d-d455-106c-7276e2226145 + GCO_1 + + + + + 25 + 459cfc1a-26ca-4ca2-4571-ee88e65341db + Grafisches Netzelement454 + + + + + 5ffb9a68-1b29-7616-8119-7e2403874023 + GCO_1 + + + + + a62484c0-f0ac-2894-6d89-7e62ca837900 + GCO_1 + + + + + 1dad68c5-2fe9-c4aa-c5dc-247e4ba45382 + GCO_1 + + + + + 46fd3328-919a-cca6-a9e6-5e8e15dd4ac8 + GCO_1 + + + + + 27 + a7d1565e-c966-c9df-37a7-73d09bacdf82 + Grafisches Netzelement463 + + + + + 36c2dd4e-aa54-4325-4a1f-57bce6bd551a + GCO_1 + + + + + 74519a92-6321-cb1e-d3d9-5d8a7d11ae9b + GCO_1 + + + + + 177f368f-4a23-038b-317f-76f08dd0133e + GCO_1 + + + + + cfaf9c76-c1f1-3ddd-a922-1b78091faaec + GCO_1 + + + + + 8e905576-a15d-a25e-699b-f3bdbb482ca9 + GCO_1 + + + + + 130 + db0253d6-5395-7a32-5443-c8cbc26ffa43 + Grafisches Netzelement461 + + + + + 180 + 76810ee5-4880-701a-9f6d-d2b72f3af882 + Grafisches Netzelement333 + + + + + 7481f875-8a30-6494-db8e-f04c0845eea1 + GCO_1 + + + + + 01f963ee-5f5f-6539-9ef7-f235d9ee1437 + GCO_1 + + + + + 2256626d-2e6b-ae24-f881-22aa234f12fd + GCO_1 + + + + + 350d3b56-37f4-f8b3-1d70-035ed262b15d + GCO_1 + + + + + 0d49fefc-057a-9293-687f-4b1ce606ab64 + Grafisches Netzelement459 + + + + + e0cdfc89-baf6-5874-c3d3-cd1c31846124 + GCO_1 + + + + + 180 + 9394655a-79fa-4a86-4c3c-a49fdcbc907a + Grafisches Netzelement288 + + + + + 420e0dcd-c897-e093-9de4-723398e67c75 + GCO_1 + + + + + fe065f19-8c5e-aa6f-1095-c4f2e4645367 + GCO_1 + + + + + 017d8395-83c2-0735-a17b-d49390b6644c + GCO_1 + + + + + 75adfd5c-90d3-3917-e9ae-07063d86a0e5 + GCO_1 + + + + + 83 + 192de97d-e940-31e7-15c0-70761246e9c7 + Grafisches Netzelement460 + + + + + 180 + b3e3269a-bee7-f287-049a-d2e3e7c3ed03 + Grafisches Netzelement334 + + + + + 066e2aa0-5540-af7b-15ee-2fccd7553c77 + GCO_1 + + + + + 06ed5053-b27a-36f1-ff39-33259fd1a2cd + GCO_1 + + + + + d132d6b4-7786-c901-ad6c-94784fcee0ba + GCO_1 + + + + + 2bb9769b-3bc5-f51e-3eb8-858dab0b3f36 + GCO_1 + + + + + 84 + 262c3b48-79fc-65f4-0ca8-99e69845c115 + Grafisches Netzelement480 + + + + + a09ef301-6b45-f83d-a15a-54d71720bb83 + GCO_1 + + + + + bc9f99c7-050b-e674-fc83-08ef48349edd + GCO_1 + + + + + 180 + 29713c3a-ad66-71ec-98a1-71ca2767746c + Grafisches Netzelement287 + + + + + f4f19e03-cc0a-3eff-0a4b-77eceb782813 + GCO_1 + + + + + 1609fc45-ccc9-2499-090d-2cdb6dd22cdd + GCO_1 + + + + + 61 + 3674655b-5cbd-8759-d06b-555c0de49a88 + Grafisches Netzelement474 + + + + + a1bccacc-851e-fc88-784a-b71cfeaff9d9 + GCO_1 + + + + + 5acb383b-e469-1ccb-f4a2-c0839f85c5eb + GCO_1 + + + + + de515879-e112-4267-1b45-e3dd484b43b0 + GCO_1 + + + + + 180 + 45b212a2-d69c-1dcf-e314-c0dd72063430 + Grafisches Netzelement283 + + + + + b9c3d6d7-854f-285d-c41c-e55405060cc3 + GCO_1 + + + + + 804cdc6f-3f35-aceb-7ec4-637827c933f8 + GCO_1 + + + + + 9c1d3407-1562-f65f-f09d-bb35e2ef9fef + GCO_1 + + + + + 3b63ebe4-17fa-af13-893e-dcf2ecb0cb59 + GCO_1 + + + + + 280 + c35d8504-b79d-4931-7d31-888c0312b6df + Grafisches Netzelement479 + + + + + 9d00fed9-984e-45d8-fb06-6c3cbba0593b + GCO_1 + + + + + ca6d72e7-6010-cd68-22a3-75e02fbe6798 + GCO_1 + + + + + 180 + be13c5c3-576e-a6a1-aa79-073f20d7f436 + Grafisches Netzelement281 + + + + + 721aeb99-d383-ad0c-b7d1-dddd2ca5114d + GCO_1 + + + + + 7f30ce21-849d-434f-a93f-1e9ecdffa4e8 + GCO_1 + + + + + 5f285835-ee05-f3fa-bbfe-fa791eb37ed4 + GCO_1 + + + + + 4e821239-4e5e-88d9-8648-766fc5717841 + GCO_1 + + + + + 306 + 8b10cbf6-f584-5b49-e5ef-589b6de04571 + Grafisches Netzelement457 + + + + + c1a54363-949e-b714-6ecf-4864ba4a0461 + GCO_1 + + + + + f0042762-98c6-8458-387c-39489705907d + GCO_1 + + + + + db3cd148-7743-cd9b-4eed-a0abe3016338 + GCO_1 + + + + + 1790d636-c7de-5856-5a05-2ddc686deda1 + GCO_1 + + + + + fb1cd3aa-6392-f406-2b23-b1c567dfa4c2 + GCO_1 + + + + + 72472dd3-70c8-cc48-6a86-0801aa8a111c + GCO_1 + + + + + 3 + 18257ac4-8619-33c5-a290-a4ee7bc9f680 + Grafisches Netzelement449 + + + + + bc8e84cd-6053-0c46-5a83-a0331132ffe0 + GCO_1 + + + + + 207 + b2882fa1-c0d4-b06f-3ba4-dd0048fde27f + Grafisches Netzelement381 + + + + + d7cff906-e951-e7bb-69d3-7deb3b685bc1 + GCO_1 + + + + + df236470-83d2-4316-ab73-8082e11c5335 + GCO_1 + + + + + a7a55a37-79ec-ef06-502f-78e2f6f18beb + GCO_1 + + + + + 9511f07f-ceb1-a82b-fc1d-35526c723351 + GCO_1 + + + + + acf8122f-68ae-d534-2b9d-d327aa48baf4 + GCO_1 + + + + + 238 + 81a8042a-3499-d880-cfcb-17404c933395 + Grafisches Netzelement478 + + + + + f5d138d9-4f15-388e-d606-1e59446e9af7 + GCO_1 + + + + + 8d9be6c4-893f-ef1c-ae3c-f8e9fc76d1f8 + GCO_1 + + + + + 5252c7c0-025a-6794-a8a6-400253788f93 + GCO_1 + + + + + 78eca523-fa86-b7ab-7b23-04bb41355cab + GCO_1 + + + + + b299b248-1840-f258-c442-647cd7157a4a + GCO_1 + + + + + 06bd6a1f-9ec0-1a69-954f-0b4b181f3313 + GCO_1 + + + + + 4c8cd9b9-7b75-8e8e-44ed-a02f741884b1 + GCO_1 + + + + + 23 + 4b22d160-6fc6-d1ac-90f8-cfc1e792cc53 + Grafisches Netzelement412 + + + + + f9111711-5b2f-0f55-0f72-4f4e6a1c562a + GCO_1 + + + + + 04318b1d-ad46-44e2-3483-303b08c7b8e2 + GCO_1 + + + + + 24cac968-ab82-4ef2-a437-7dfc655b3fc6 + GCO_1 + + + + + 258cd841-6b08-380b-9843-a526f1bd03e8 + GCO_1 + + + + + 207 + b6427d24-77bf-f907-3db2-bcea6e55f674 + Grafisches Netzelement438 + + + + + 180 + 0cdb1c01-0132-956b-c7b1-db023dba3d04 + Grafisches Netzelement282 + + + + + 91c737bf-2176-3709-6bdd-fd6e088260fa + GCO_1 + + + + + 77 + 7983e727-cd73-6bea-a673-91868802c146 + Grafisches Netzelement465 + + + + + c47c959a-fc10-16fd-ea8b-10a4241a997f + GCO_1 + + + + + 1a9425a1-83b7-972c-157d-6b46d7539144 + GCO_1 + + + + + 83dde677-f94b-9767-2690-e7f9ed8ed6c8 + GCO_1 + + + + + 352 + 7ceca749-3ffd-b346-91fd-bbbbe9bb1d8b + Grafisches Netzelement434 + + + + + c1d7ccad-3db2-2d28-7404-06ef5d39085a + GCO_1 + + + + + 180 + ad633bbb-5f10-2acd-1a78-813f529600df + Grafisches Netzelement326 + + + + + 57 + 690580a4-54b3-121a-f311-0a4349a3e508 + Grafisches Netzelement471 + + + + + 84b45eae-a9f4-b3ec-b369-5ae790cd5716 + GCO_1 + + + + + b0c1fcde-204c-2e60-1503-2e4a1c24cc3e + GCO_1 + + + + + a135d142-d148-bf2d-367a-3a730a62bf7a + GCO_1 + + + + + 1fdec8b9-75f5-eac3-f991-dd1aff61f847 + GCO_1 + + + + + 253 + 6a43a0e8-91d5-10e4-5738-9acbb68370ba + Grafisches Netzelement453 + + + + + c875848c-cd3c-92b5-bb36-f4e7a96bbaa4 + GCO_1 + + + + + 6d346b68-356a-c85a-5622-581540901842 + GCO_1 + + + + + 143 + e33a6785-40f2-e533-deb8-a236b2fdb5e3 + Grafisches Netzelement475 + + + + + 7e28b223-b0bd-f5b4-346a-16d36fffdebf + GCO_1 + + + + + 59c40286-a3ac-887c-8dd1-7a1d5712f71e + GCO_1 + + + + + 8cb5b84a-dcec-7a43-c12b-cffb586c1438 + GCO_1 + + + + + a4fea0a7-0271-b378-edb3-4212c13bae9f + GCO_1 + + + + + e845002f-9c05-1028-a9e0-df0e81bcd2ed + GCO_1 + + + + + 124 + 3fce5d96-77b4-9eda-b073-ffa2d9200eeb + Grafisches Netzelement451 + + + + + 9dc9fca1-4d77-4c39-b7dc-35349b786791 + GCO_1 + + + + + 5f76b0d2-da58-98e7-e6fc-4a1b29a3cf58 + GCO_1 + + + + + 30 + 6cb1b4c6-55be-9a43-637d-625a92537845 + Grafisches Netzelement462 + + + + + 6eea0564-85c4-dda4-b3c0-06e099853df4 + GCO_1 + + + + + 837dd4dd-cf33-bdd3-3ff9-31920823d11e + GCO_1 + + + + + 05513653-7f6f-a154-f5b9-1dfc56aef155 + GCO_1 + + + + + 62571880-8a15-2299-cc88-48ca8be96179 + GCO_1 + + + + + c59fa4c7-a90f-71f9-f08b-5fb80bcf5d28 + GCO_1 + + + + + 197 + f420670e-a5bb-1785-456a-f2955dd8ea2a + Grafisches Netzelement415 + + + + + a3784ac3-d08d-800a-2de4-7d2b93f7577c + GCO_1 + + + + + cbd5b7df-7a10-4d79-f6c3-05882dfb962e + GCO_1 + + + + + ffe80690-a0a8-570b-59a9-8229849dac5e + GCO_1 + + + + + 35c03969-f87a-b192-8527-2e1c2a7a8237 + GCO_1 + + + + + 3 + 541b38d1-1a3f-da3e-71f6-36b4fda840c8 + Grafisches Netzelement448 + + + + + 60aa7597-aae0-1c93-54da-1b079e781015 + GCO_1 + + + + + 6343a4a3-e635-006a-377b-a3047dde37f9 + GCO_1 + + + + + 50376ebb-8e37-4ef8-c1b6-a40937cbf3d5 + GCO_1 + + + + + bda880c0-a57a-165c-ba8c-9186166fc832 + GCO_1 + + + + + dc62804c-47fb-4eea-4fc2-2316ae0e1816 + GCO_1 + + + + + 238 + 54144aeb-623f-e28d-48f4-33b76060a44a + Grafisches Netzelement420 + + + + + 233 + 898265dc-a056-4dfd-dfd3-95efc4f6caec + Grafisches Netzelement468 + + + + + a167f8ae-6246-6690-5fc8-a4bcf444f540 + GCO_1 + + + + + 5da71637-c523-ec25-c170-086b5a03ec39 + GCO_1 + + + + + f4ad0d8c-ab6e-d6b9-0c57-7ebdff9a8578 + GCO_1 + + + + + be5dcb58-216b-989b-36a4-9ceaf8a48778 + GCO_1 + + + + + fce1f53e-4631-1cca-1048-34ed172abb93 + GCO_1 + + + + + 241 + f26ddedf-9d38-9957-d221-99e0632a1d82 + Grafisches Netzelement398 + + + + + 9 + 8f7356c7-46df-2ea1-25f4-155f20c63ca9 + Grafisches Netzelement411 + + + + + 4b20e1cf-a3b2-e9ed-9725-1ef7afec1a4f + GCO_1 + + + + + f5a2a1aa-fad1-1ff3-7a7b-1debe6013522 + GCO_1 + + + + + 2d287d21-70d4-79c5-984b-eef9f8e44a53 + GCO_1 + + + + + 2ca5433e-73ce-0680-b668-abca8adf2640 + GCO_1 + + + + + ee1c9465-7c15-b8c4-8b6e-291838ab5d7f + GCO_1 + + + + + 239 + cf5180b5-feb5-682f-fb6e-5ae585ebac3e + Grafisches Netzelement400 + + + + + c9ece65e-740c-ee21-91f0-4ffd51f8a4f6 + GCO_1 + + + + + 45 + 5819d873-3fb7-0b8a-867f-a50cfceae8f2 + Grafisches Netzelement477 + + + + + 03e81cbe-9f39-293f-797f-f423f65534df + GCO_1 + + + + + 74192b65-e4f0-c2b4-5f70-5bae848be419 + GCO_1 + + + + + a10c33b6-7ed4-4076-a8dd-044831a855bb + GCO_1 + + + + + 935b2cce-ddaf-e505-3abf-56ae90c4ab37 + GCO_1 + + + + + 38d5d9ce-5bf9-3add-33ce-bafd15e0bff9 + GCO_1 + + + + + e6046db5-0d89-1c0b-39a8-191af81b5c6a + GCO_1 + + + + + 278 + def612a2-57de-a3a3-9272-cb572dc11e39 + Grafisches Netzelement341 + + + + + 7ed94c91-ee74-92f1-c106-0ba5ed9cf697 + GCO_1 + + + + + 191 + a127cb84-ee4c-06eb-b97c-417f81e93b0e + Grafisches Netzelement469 + + + + + 0d6b4c17-0583-f225-c3c2-68d109306fa1 + GCO_1 + + + + + 948ea29e-223b-f10e-4a7e-c83af18f2223 + GCO_1 + + + + + a4fef77f-b9d8-e341-6151-78a382022777 + GCO_1 + + + + + acd00178-e731-f68c-4f60-572276461700 + GCO_1 + + + + + f10af65d-54a0-b1db-7539-544164763438 + GCO_1 + + + + + 243 + b436db9f-a48d-935b-f9f3-653b993a98ed + Grafisches Netzelement413 + + + + + 4c58919b-5d91-2c3f-a6b5-bcb555f48e1b + GCO_1 + + + + + 153 + da6edf7f-8a9d-2eb0-14a5-6bd491f019f4 + Grafisches Netzelement464 + + + + + 2e3abc14-c6bc-c152-6684-1a7b13e2ada3 + GCO_1 + + + + + a3529014-76f8-6cd7-0e88-71a14ff51200 + GCO_1 + + + + + 1afcfc7b-8b6c-b396-8978-ebd3268a1cbe + GCO_1 + + + + + c9d1c81d-402f-2bee-7ec6-596dcd6d5626 + GCO_1 + + + + + 945d184e-1513-e09b-12a3-470aebb10cf6 + GCO_1 + + + + + 2470b3c1-f884-4ce5-8d3b-796e1e2871cc + GCO_1 + + + + + 241 + 2f674407-bdd2-158f-fe00-434369e57e26 + Grafisches Netzelement416 + + + + + 982041d3-8f2d-3a4f-0fa0-2a05fa835de1 + GCO_1 + + + + + 67 + 9771adf0-d124-3a6e-a877-1017def3c073 + Grafisches Netzelement476 + + + + + d5e4d092-f4c9-d060-ca98-8dfc833bd97e + GCO_1 + + + + + 5822ee13-effb-96fc-f613-87fbaedd7b59 + GCO_1 + + + + + 83f5f6e8-66e8-6c34-6ed4-57c318858650 + GCO_1 + + + + + 2c737172-967c-8ee0-dcfa-91255622142e + GCO_1 + + + + + 8939ad5c-4139-bbfb-5e3e-ea843fba8d15 + GCO_1 + + + + + e84485da-c6f6-cdb9-7d42-9128a64f6fb8 + GCO_1 + + + + + 45 + b0cc5984-49b1-7624-a49b-33e2fe1e5129 + Grafisches Netzelement430 + + + + + e10d5f1f-b759-bb88-e45b-64e5b11b1bac + GCO_1 + + + + + d39e1cdc-6e12-902f-b4b7-a6bec2f76d5f + GCO_1 + + + + + e747e502-082b-0f87-7733-dc0287e6ede2 + GCO_1 + + + + + c30bfadd-44c0-ac00-85ee-8e1ced6c53c0 + GCO_1 + + + + + a0df7bc5-98b2-ab0e-9693-a2eaa4a4ec59 + GCO_1 + + + + + 72 + d877bec6-d806-ab76-207e-48df15217ad8 + Grafisches Netzelement407 + + + + + 62d782ae-f7b6-fdb6-c0f9-50d01254e4d6 + GCO_1 + + + + + 2e27987c-c765-dd84-1161-29d8fb538678 + GCO_1 + + + + + 476b7634-7a69-eba1-c71e-22fc9ef2c608 + GCO_1 + + + + + a5ff5ed4-4960-40c5-28fd-0032cb6a0773 + GCO_1 + + + + + 84d4fedc-aef7-3c32-97c9-e2eb4637c38a + GCO_1 + + + + + 378e0b22-353d-4140-ecff-0c3ac6fb90e0 + GCO_1 + + + + + 64eea0e9-48f5-15f6-ac63-64974c03e743 + GCO_1 + + + + + 4a9d33cc-cad0-5916-c560-b994636a160f + GCO_1 + + + + + 1f6c42ca-dd3a-f43f-75f2-ff4a88874738 + GCO_1 + + + + + 78078d42-68dc-05ba-0c52-f79cae7f7830 + GCO_1 + + + + + 85e60ef2-557e-f394-43d0-1eb6aec3bca1 + GCO_1 + + + + + b3835e46-bb4d-2ba0-f135-ae338213f7c5 + GCO_1 + + + + + f44dc973-5719-e7d9-90a0-094bc46bafbc + GCO_1 + + + + + 9ea6db50-f618-9ae0-593b-90f04b27a031 + GCO_1 + + + + + f909b2e0-75d4-65b6-c13e-d417c690d6fe + GCO_1 + + + + + 0e950d11-1c49-4cd9-7697-80424d01d071 + GCO_1 + + + + + ceb381c5-dc28-6572-2e6b-2a24d0dd1e5f + GCO_1 + + + + + ddae8322-9a52-2dfe-b76b-cb21a5aacb08 + GCO_1 + + + + + cb7eef77-3969-c4c9-8493-a4cf92f5495b + GCO_1 + + + + + c4bced24-6ec2-76d4-e2b1-a6b7d2970b2e + GCO_1 + + + + + 4d0eaeef-076b-bfa8-4da7-209961ad4707 + GCO_1 + + + + + 5dc93e0c-934b-7672-30b0-eb87f565a613 + GCO_1 + + + + + 822c5187-1d5c-adc1-ac80-235ad240b57e + GCO_1 + + + + + 7076b153-4593-5fa3-592d-1f02d02e5d5b + GCO_1 + + + + + ef21af11-d0de-cc4b-771d-9e29c872a8af + GCO_1 + + + + + cf5b51fd-56a1-af60-c55a-7ad59724f24e + GCO_1 + + + + + e4a805c4-a0ac-ff27-f08b-7d278cf211ed + GCO_1 + + + + + eb58aeaf-fbc1-fe3e-bd77-72b97e7cc114 + GCO_1 + + + + + 2a59354c-7e48-344a-e81a-4c886697c96f + GCO_1 + + + + + 3879f3b0-206e-f457-3580-3dc1bf9d8ab6 + GCO_1 + + + + + 4cd45450-6190-fd51-418e-a60e7c228166 + GCO_1 + + + + + 95eb90c5-78ab-66ec-fad0-d9484f4c019c + GCO_1 + + + + + 6e3a6482-7f80-191f-0604-abe2cffe761f + GCO_1 + + + + + 3cda323a-1463-ffb0-8190-3b4efb0161a1 + GCO_1 + + + + + 8f3cea25-3dc4-dea7-779c-19e0ddb65948 + GCO_1 + + + + + 0584b00f-01f2-2cfb-c3ab-6fce1cedbc33 + GCO_1 + + + + + 24abb9b8-1e94-866f-ac63-aca9ad22721d + GCO_1 + + + + + db464ae1-70f0-925e-190c-63fe0d3ecf74 + GCO_1 + + + + + 39f9e510-24dc-d422-01e0-e08cecd8490f + GCO_1 + + + + + c4f200af-1f59-4ffd-a9be-233c77a577a5 + GCO_1 + + + + + 5df0af43-dc1c-c3c6-c798-8f485445919e + GCO_1 + + + + + 122855b6-8fb1-3048-46c0-22c5f1cc08a8 + GCO_1 + + + + + 4565cf07-44ba-1b6f-3110-eeb25d964377 + GCO_1 + + + + + 2fd642b8-ced1-2cd3-e328-55d89e4afdb5 + GCO_1 + + + + + 27eb6813-26bf-0ddb-68bb-a7d6575ee371 + GCO_1 + + + + + bca25a38-d2a6-199c-f475-64f0a506a04e + GCO_1 + + + + + 82c3e583-677d-3d92-7245-9e02b00f229c + GCO_1 + + + + + 9ac9a3d2-c150-d6fa-688e-8615c92dc0ed + GCO_1 + + + + + c1f3f59e-49d6-960d-bb78-ce43c195230f + GCO_1 + + + + + 85d0d332-3d62-947e-14a1-1f7ffa130fc9 + GCO_1 + + + + + 9bdc172e-29a5-953b-355a-77c4310ca573 + GCO_1 + + + + + f37d583c-0374-852d-5646-fdf7e71dad62 + GCO_1 + + + + + d760bbf2-528d-1d6a-94e5-a4484263a26d + GCO_1 + + + + + 0cdaff78-7835-600b-1285-61b83e97e10a + GCO_1 + + + + + 97c0db46-1901-686f-5649-3207be786347 + GCO_1 + + + + + 855001b6-3abb-718c-eca3-ddbbadd44f9f + GCO_1 + + + + + 9d0dcd40-a574-ac8d-9423-00e09a7f2a15 + GCO_1 + + + + + 0bceb7fb-1310-31da-ac51-967c1ffc23cf + GCO_1 + + + + + 8fa23a08-c31f-51f4-a96a-70012e281a48 + GCO_1 + + + + + ea78982c-3a39-72ac-e9fb-89623b8912a0 + GCO_1 + + + + + 6dcbf0ff-4341-4c16-a4d2-ae5c4b2c46ef + GCO_1 + + + + + 1e28e6c8-4431-5ded-e35d-449ab6632f5c + GCO_1 + + + + + 914d6d5b-3252-9c60-43db-8058c5b25ca0 + GCO_1 + + + + + 54e4b8f9-c14b-f755-4154-f9a21ee732cf + GCO_1 + + + + + 5d576ab2-5b17-4022-8eeb-cce60272f781 + GCO_1 + + + + + c0bca73e-b49b-1e93-1f6c-a2b29775c020 + GCO_1 + + + + + 45951fb3-2ab1-f446-c59a-b38c06311ebd + GCO_1 + + + + + edc7c74a-8276-6dae-5feb-e3098021f732 + GCO_1 + + + + + bbeedc22-d46e-8095-80dd-0f6a861f7461 + GCO_1 + + + + + 53d5c0c1-9a0d-6489-2dcf-adac751ae552 + GCO_1 + + + + + febc7555-920d-9b9d-7249-8b4fc6d6641f + GCO_1 + + + + + fc219f70-7aa2-1e19-cc77-82992f64a8c1 + GCO_1 + + + + + d6432547-0d34-e4d5-a4c4-eeb60f7102f9 + GCO_1 + + + + + 8482f61f-1093-782a-d92c-cab7fac2602d + GCO_1 + + + + + eab1f291-b9d3-0463-e4e1-51dde71f15bd + GCO_1 + + + + + aad330c6-9cd8-4c1c-ccd8-00099074f891 + GCO_1 + + + + + 0a91b267-1eed-46ac-38f3-63803295e6eb + GCO_1 + + + + + 5f72678d-b290-5853-7943-33e0878b8e43 + GCO_1 + + + + + bb89b676-0be4-8de8-14a2-b2066fa56fa3 + GCO_1 + + + + + 3181b35e-dc42-a725-61a6-28d586605d72 + GCO_1 + + + + + e778d54a-6cf2-46a8-c89c-8c9e0fb3be89 + GCO_1 + + + + + 7f07febb-fb62-97b8-4424-1c173feb8c33 + GCO_1 + + + + + a16260cd-3d23-935c-8b86-36cc8a01e1f2 + GCO_1 + + + + + 2f1a3a43-d001-bb24-ba98-d9a9bbf87b7c + GCO_1 + + + + + 4538fb34-3cf2-e1ba-0eed-8ac1e66ff9bb + GCO_1 + + + + + 17ed6bd7-b6c7-5ca9-8e92-b4af9c533bf1 + GCO_1 + + + + + 6a8aef8f-300b-6072-5b16-f078e9842af5 + GCO_1 + + + + + 9d877a23-2526-d563-474b-8e6c37c94dcd + GCO_1 + + + + + cfa81819-f8cd-b510-25df-e532c60eb425 + GCO_1 + + + + + 6f3763f2-1c50-b287-f3fe-e68d3aa815f2 + GCO_1 + + + + + 0c410f96-d764-7b09-53fb-472cf41d259e + GCO_1 + + + + + 2f43f795-7f80-45d3-5104-a085c92d00ea + GCO_1 + + + + + 72ef4143-8129-0aa0-9ef7-ad25ad55c067 + GCO_1 + + + + + e684f1a5-ade5-ff06-7faf-2f1612bf2eb2 + GCO_1 + + + + + 0f88b663-a5ef-e844-e4d0-0e1d40dc3c08 + GCO_1 + + + + + 1f0e4e71-8e26-c794-55e1-68b59a652de5 + GCO_1 + + + + + 1e49433b-f0ed-c67f-fb24-6b3af2e99876 + GCO_1 + + + + + e47f6b66-6a5b-89ae-7bf2-a5018d37caba + GCO_1 + + + + + 7b9ddf17-0b41-766b-5b36-51abfc9182f5 + GCO_1 + + + + + 5c3357ae-050c-fab5-aa34-d6ccc00105cb + GCO_1 + + + + + 853e2ba1-f421-3fde-2d1d-5448c53546ed + GCO_1 + + + + + a36c3ff6-6eeb-5e13-972e-5eeb9724e12b + GCO_1 + + + + + cfff3ec6-df7b-26ac-e15b-3fb1002dec51 + GCO_1 + + + + + eeb98d71-4adf-6073-c341-a2b8b8f586da + GCO_1 + + + + + 71e887d2-f09f-f9cb-5756-2eb8b7b6bcd6 + GCO_1 + + + + + 41de1277-682f-6d13-7752-7fc393735063 + GCO_1 + + + + + f054716c-ee2b-c94c-3198-f3b3792579fb + GCO_1 + + + + + 86cf1542-1834-7501-9058-9f874911ba81 + GCO_1 + + + + + 54520f13-f32d-5210-fb10-e7d06d14f95a + GCO_1 + + + + + d0e34ae1-6bac-2408-35ae-f8ac4ec32a11 + GCO_1 + + + + + 4f144bb4-16b3-b8cb-ba30-91e8bbf02ce1 + GCO_1 + + + + + 861b11d2-c799-69f6-6df0-fbe7d1996c30 + GCO_1 + + + + + 154b2171-4de2-cb51-d9a0-f7545b1ac20f + GCO_1 + + + + + 36431d74-f41f-c54c-d4d1-63ff705bcd2f + GCO_1 + + + + + 86358910-7bec-7304-9ebd-2a7a6d8a6dc1 + GCO_1 + + + + + 7d574e77-1fd7-5492-112f-e960da98072d + GCO_1 + + + + + 925e9949-f6c7-4849-bcbd-256c42b8ef52 + GCO_1 + + + + + 1c67c7a9-3d40-c0c3-5d68-d504867a36c1 + GCO_1 + + + + + 1df12894-d423-8d97-6343-047bce430aab + GCO_1 + + + + + 36ef43b1-da47-eab1-e489-cbaefb63a06a + GCO_1 + + + + + 1440df2f-9588-c2f7-dfda-2657e1065ad0 + GCO_1 + + + + + 4bd215d0-924a-dfaa-c656-b8dac81e3698 + GCO_1 + + + + + 0adbd1d7-49bb-77e4-7b81-03ca7d4ccfec + GCO_1 + + + + + 5b15390d-70e0-cc39-886c-351cd977f6b1 + GCO_1 + + + + + 795a0e36-2f33-a7c0-7717-a7a97b69c71c + GCO_1 + + + + + 1a8d7372-ce82-6ec9-5fdc-664621bafb1f + GCO_1 + + + + + 937b6a19-1fd5-1004-5e11-bfaa6ce900c3 + GCO_1 + + + + + ffc7b48d-641e-93e3-6a32-72c98901645f + GCO_1 + + + + + 3fe4ae52-5756-5df4-40db-2a46e2bc2b3a + GCO_1 + + + + + c094a2f6-16d6-4b9f-9fa4-3b959aadc103 + GCO_1 + + + + + 0c2b6cf7-5551-2f56-bf3b-cf01e55eba56 + GCO_1 + + + + + 7c1413cf-dbf7-a480-9726-415f5f3246c0 + GCO_1 + + + + + 2e87d2db-9780-5e70-5a28-db9a2976840b + GCO_1 + + + + + 41d9694b-d0d7-fc8a-13fb-417deefa7d79 + GCO_1 + + + + + 67afcdf4-3c23-1f7d-ddf1-d6a9e143a58b + GCO_1 + + + + + 12a190a9-35e1-aaa8-5373-42fbe2639a59 + GCO_1 + + + + + c58c7623-6859-30fe-817a-39c6ffe399cc + GCO_1 + + + + + 21b5e234-51fe-f8b1-95b8-0407ec364773 + GCO_1 + + + + + a0d776b7-ae5a-6c56-a1aa-07efd6dff3cd + GCO_1 + + + + + e3c8318f-c113-6364-8c4b-b36381e864a2 + GCO_1 + + + + + e567e7e9-4081-701d-a022-ad89687513a8 + GCO_1 + + + + + f71cf0b3-f439-3b2d-fe24-f21a316c2a43 + GCO_1 + + + + + 77ab20e6-7b5c-70a1-d1cb-644f2897eb0a + GCO_1 + + + + + aee719d6-7a4c-110b-52ae-d5f483c9fa3a + GCO_1 + + + + + 6f5fe750-b1ad-b5eb-752a-76aeff543016 + GCO_1 + + + + + a191c6f3-1eea-ba18-4260-80085bb81fc2 + GCO_1 + + + + + 3ba70fd2-bf0e-f1d1-1eec-c01a09d56564 + GCO_1 + + + + + a6b5af98-0bc4-0f26-53be-232478aa387f + GCO_1 + + + + + 405faa5d-2b1c-f24e-9458-54c25c6199b0 + GCO_1 + + + + + 866bb796-b654-531c-8a4a-9f756e8c87b1 + GCO_1 + + + + + 924b4910-6642-eaf7-5e2b-cfa90803f619 + GCO_1 + + + + + 10e8d4eb-9dc9-26f4-9754-1dc41b395452 + GCO_1 + + + + + c074303a-3502-11f8-77b9-d66f1f524013 + GCO_1 + + + + + e506e599-ab36-ee80-8676-b79b3192802c + GCO_1 + + + + + ee9d24b8-e8cc-b3b9-5e79-7629fd6f3834 + GCO_1 + + + + + 0d43ed28-b8cd-1993-ac15-3d864c705665 + GCO_1 + + + + + 791aa896-d3ec-c209-e758-a31fb400ad9e + GCO_1 + + + + + 504b2288-48df-23ea-cc40-21fd73d5ca54 + GCO_1 + + + + + 186f41e0-8403-8602-2812-f6e94268f81a + GCO_1 + + + + + 50d1ad72-59d0-e222-23df-c4bbd9178fd2 + GCO_1 + + + + + 7a85bbf3-34e9-bbf3-2734-fb908cf89370 + GCO_1 + + + + + caa95b68-cc79-8efd-78a1-ba70d039bf1f + GCO_1 + + + + + 071188f4-46c7-9101-d90f-1971c504f7f2 + GCO_1 + + + + + 25759da5-0fb0-2b15-72ee-3478cbc2900e + GCO_1 + + + + + 38541af1-9c60-a1d0-d3f3-1a083a0e50df + GCO_1 + + + + + 50050772-9aae-4e23-d49d-6bbaceb76ee0 + GCO_1 + + + + + b918d3c3-c485-c186-3cb3-72cbe6f231eb + GCO_1 + + + + + d28ff873-2e71-b9db-6654-a2892348b8d8 + GCO_1 + + + + + fd0aa7ea-2636-e32a-cdd5-c00c5cbc6527 + GCO_1 + + + + + 600d5921-fb63-d3f1-5f3d-34134ee31430 + GCO_1 + + + + + 775ffd5c-0c2e-7887-ae94-6030670472c2 + GCO_1 + + + + + 9210dbb2-a1d3-fcba-5027-dc3edd81ee8c + GCO_1 + + + + + 354adff7-8725-b2bd-362d-1b15950ff076 + GCO_1 + + + + + c625b9c4-269c-42fc-b590-07060ac65adf + GCO_1 + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml new file mode 100644 index 00000000..61cbc2d9 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_DY_.xml @@ -0,0 +1,508 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9580ded4-2610-cdde-c06c-92e6008fd3e5 + + + 2fe06fa7-29c3-ee86-535c-d831ff5e69d6 + + + 800237d8-085b-92fa-e814-37c5be10e172 + + + 3e8fe6cf-279f-7d5e-c0e5-677498c27f09 + + + fe7bf1da-d10f-12af-a38e-ed185ced3ae7 + + + c7d69d8c-b4b2-5e7e-cd15-b18f0f3b3a13 + + + 035a95be-d075-eebb-d1f3-faca3e836009 + + + 31fca2f6-3a3f-c726-fa92-3c0861888e91 + + + 7eba9e6c-a91f-eda0-147c-7b41b871dfe3 + + + a4d84081-d1a9-7b75-fda9-0018ef77f43d + + + 90ca9176-f7fe-ebe1-a76b-018d27071f04 + + + + + 42131467-4c38-728c-278e-296c9cd7a9d7 + + + + + fd4df1e4-2082-81e2-4b89-c9a52004a6e8 + + + + + 1e2c8fcf-a5cf-c956-ec76-9dcf5790bde4 + + + + + 4edaa0cc-0f96-d6c1-aec7-fd338cd88e5a + + + + + cbef61bc-eb90-bf24-3d93-a2755e5a79b5 + + + + + afeeb4e5-d1b5-dbbb-2942-8c6224f17127 + + + + + de3742c4-fe90-d84e-8485-6258ac7578bf + + + + + b0570d85-f676-d7af-91ca-dadf3bdec32d + + + + + 39357cda-0389-bdab-0379-384cb1cfe04a + + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml new file mode 100644 index 00000000..61f08600 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_GL_.xml @@ -0,0 +1,1545 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0 + 2015-12-31T23:00:00Z + + + b483760a-b9d2-ddbb-d4ff-41b2d7bedca2 + Location + + + + + 362ca732-c347-2af9-4442-4306293fec9c + Location + + + + + 0a2f1508-9a82-9abb-40b4-7bcc79ab9658 + Location + + + + + a2078538-84bd-4a30-b25f-bc91f93dd1c6 + Location + + + + + b5220bc0-8a64-b8a2-20bd-a8a95f1e6b01 + Location + + + + + 138ec99f-c9ad-e5da-a521-9ab2276e924c + Location + + + + + 44910478-a89d-a460-b88b-f04da23d5837 + Location + + + + + c484c629-efde-0ef0-0333-a569f240e193 + Location + + + + + 2dfdf23f-2d47-de35-fd7e-4e9e8da7c529 + Location + + + + + f81a777b-4a7c-0bee-b109-bcb7987014bc + Location + + + + + e5b2911e-17e9-86f2-1577-aec5cfce34f9 + Location + + + + + 6937ad0a-2c4e-2b30-93a5-1d6363315f8c + Location + + + + + 2ba3e2d5-5e93-fbc6-7829-7e2f02fdf1f7 + Location + + + + + 5b496714-e60d-0f5f-bc98-44b39326abf5 + Location + + + + + 603aa808-ef90-54e0-79c8-42acf47c2b9c + Location + + + + + bcceb79a-06d3-4d74-e541-50c47b243539 + Location + + + + + a5eddd74-cd54-d3cf-459b-892c205eb3aa + Location + + + + + fd245b24-c27a-37c0-25a2-747b929f64cd + Location + + + + + 7cccc335-4ee4-a858-d29e-79364486994d + Location + + + + + fea462e6-125a-2833-b450-632258eb61e6 + Location + + + + + 35b209fc-b4f2-405b-d5d6-d2698f1705ca + Location + + + + + 7f865305-b00e-ef96-6a89-cb39b74548fc + Location + + + + + ffa2da78-132b-20a7-0014-3e2852a871a5 + Location + + + + + fa0776fa-031b-5e62-3143-6df9b7b223e6 + Location + + + + + b7431b59-e267-0f1c-b9e0-1087c8c6e51c + Location + + + + + 696c3de4-cc29-b361-a1e1-f764dd80b4f5 + Location + + + + + dcfb5390-9378-2353-5c7f-1915b393c86e + Location + + + + + 038813d0-d1b6-7db0-7407-a69f934ff70d + Location + + + + + 32ba8c96-9b1a-5b46-a849-82aec653d530 + Location + + + + + 2b5104bc-6a01-447a-0627-ab9c44c69d66 + Location + + + + + 6c36b8ad-6cc8-4032-59f5-a6ade9cf1dc9 + Location + + + + + cf747a79-acd6-2363-08a1-e7d18b8bb8ac + Location + + + + + 29ec11d4-d72d-e85b-d24e-db5987098ea9 + Location + + + + + ceb20ac9-d833-f9cf-a13d-fcf65aa91a68 + Location + + + + + 3dc54270-d435-b571-48f9-8bae0dc84535 + Location + + + + + 91f7d3e2-42b2-895c-4895-f721cd520661 + Location + + + + + 07218b68-f6d1-148f-6749-126502cbf5e9 + Location + + + + + 8fe2160c-03d3-2b3b-0e95-2f3e1d3d1e7f + Location + + + + + 2b8a580a-b963-47e3-c422-c00f045377ea + Location + + + + + 29a3942b-6910-6661-cad0-473cf2d8f2da + Location + + + + + 7ae82203-1087-5274-cd6d-34a72e1b582b + Location + + + + + 5be7069a-457c-b2da-50c5-6c4798db5457 + Location + + + + + 62ac9090-4cda-b7f2-1779-c85714489a90 + Location + + + + + 43289421-d85a-c463-7680-59c02b094f49 + Location + + + + + 9ea87fb0-2a3d-8d00-af75-67a5f8caec87 + Location + + + + + e98b38de-8428-ab11-396b-4a69060d839e + Location + + + + + 3d900742-73f1-3a77-cbb9-9a3e45ca3ecb + Location + + + + + dfd575fd-93e1-963b-de6f-a3b0b15bf655 + Location + + + + + a3b7c5bd-d507-a2a4-9ee3-53b9d07754ed + Location + + + + + eb1411f1-f5a9-cefe-0275-68d055baf6a9 + Location + + + + + 771ff1d0-7e6b-5ea3-3fe5-2b56291a792f + Location + + + + + 01cba879-efa5-f613-d565-6e9e622f1e46 + Location + + + + + 3d1e2ceb-9bef-698f-4cca-a32537403849 + Location + + + + + 3adae4f3-3c02-8e37-423a-e9758346fb5b + Location + + + + + 45bc16b3-2dc7-a118-27e7-89da6d8f2ead + Location + + + + + 0c1d205f-7607-e785-a06e-947591632a52 + Location + + + + + 82ef487c-9279-985d-f465-7f0d73de3e17 + Location + + + + + 92331800-ed68-cec0-ecd8-973ac5563fcb + Location + + + + + aa75a039-e889-0f45-c3bb-eef3a9c2385e + Location + + + + + 3eaf2c1f-171d-8c0a-d124-e39480997902 + Location + + + + + 7374faef-1d72-3146-15b1-d3604350c161 + Location + + + + + 080e77f2-25e8-7a52-e452-03419954bbe7 + Location + + + + + ac66a67f-a46d-9aa6-28a9-9067f5b186b4 + Location + + + + + 89891d29-4c84-5907-8116-86c25384cc6d + Location + + + + + 7b4bbbfe-6645-3b65-1ef0-6c7ae0931fe4 + Location + + + + + a69b467c-00ba-4505-4951-71b7180d7dab + Location + + + + + aed85988-4a10-07bf-9ea9-ea2f886acbd5 + Location + + + + + a62488c2-f94e-ef6d-e621-5be0d30b1bd3 + Location + + + + + 73cea814-5ad5-2d9c-fb2d-07392a78ca3a + Location + + + + + aa9c9ff3-a0b8-8882-b07d-515bb6a74f28 + Location + + + + + 8fb3be36-2241-b491-4098-a37fd88a16ec + Location + + + + + 5ce675d6-3db1-0bda-660d-4dec9e8b496a + Location + + + + + 054fab60-e5c1-c33a-85a8-b189c78c9369 + Location + + + + + a073f4db-2514-4803-5bd3-88328170d8e8 + Location + + + + + f1748a57-610b-b373-2dc7-28e279d71c50 + Location + + + + + e00b629e-ce4f-70c8-b020-4057d4b578a6 + Location + + + + + 9fc4b6a4-14a0-4153-da54-f29c35426356 + Location + + + + + 8c4e57ab-a7cb-f7c7-2764-e5ed2b7aa929 + Location + + + + + ed43e28c-b111-05c8-d487-fe46697afc0e + Location + + + + + c5178fa4-8652-0f7f-4cfc-d42bba1d5c79 + Location + + + + + 2915729d-898f-294b-f6b9-74fa84b26d66 + Location + + + + + 05a47cec-081e-d37a-3ed6-6b6f7740fa57 + Location + + + + + 909bd61e-3def-af8e-77e7-311fae590984 + Location + + + + + e7f7e0a5-cca2-b130-ed13-d6439f2de843 + Location + + + + + eb4c8eed-a91a-79b6-beb0-6bf583cd3286 + Location + + + + + dbe66f01-8f41-197d-8d7a-131eb330682d + Location + + + + + d23d3663-75c8-e05c-0e57-1c5e94d48427 + Location + + + + + bcbe9133-ccba-e907-532e-72284e294f7b + Location + + + + + aa3b924c-d82a-9a41-0bbd-77e54bcddfc3 + Location + + + + + 208f969a-3ce2-82a8-0951-8ecf2e14b431 + Location + + + + + 025dae75-17fe-6eec-fa46-ffeeacc53c78 + Location + + + + + 8fda584f-6499-2c0f-a8a8-3a894faf6abb + Location + + + + + 8127120f-8781-067a-5c2a-43f71bc3eafb + Location + + + + + 55a76554-f141-b546-9898-1cd025537299 + Location + + + + + 8a8b742e-a1e4-356a-78c9-4b170c395e6d + Location + + + + + 51a8ef06-b276-adff-5c33-803f52df013a + Location + + + + + 4a8e7844-4134-bfad-eed5-4a89511c9924 + Location + + + + + d9acab16-9356-fe4e-6416-7c72e83d459e + Location + + + + + a7580b49-a461-4991-6184-1b7e729abbd7 + Location + + + + + 8f08f06d-b49d-d457-7261-3ad8b26e84dd + Location + + + + + 2260678f-8856-344a-368f-c71d1e36c025 + Location + + + + + 51c960a0-d158-b7df-f44c-3d1b9edcb57b + Location + + + + + 593628b8-4ceb-1539-9cbc-bd9401691ad5 + Location + + + + + e756834f-a710-7a19-2527-632669abb984 + Location + + + + + c6d4de32-5998-41fe-2e7b-f44f7a6d2e05 + Location + + + + + f5d7484f-edd1-e4f1-b479-0a632ec0690a + Location + + + + + 0a02ba87-4b30-c552-4d1b-e8a9dec20c34 + Location + + + + + 822fd9bc-32b5-cf15-22ba-27f41c055046 + Location + + + + + 97f6a093-5f8c-435a-3e36-562f8241aaf5 + Location + + + + + 6a0e1b12-1f58-a0d3-2ad2-cb46ab0c9c87 + Location + + + + + 077d7424-f1b0-050f-c5f6-0fbd5beb4142 + Location + + + + + 236dcfdd-8da7-a191-8798-29501314eb03 + Location + + + + + 61afb8ff-e58b-ab64-3314-c09d89e6e8a5 + Location + + + + + 907a6b9f-6564-8d02-77c6-91f05a7dcb74 + Location + + + + + b3a4b2d4-e9dd-c853-6979-b1d38f11c57b + Location + + + + + 4c41d6aa-7e54-156b-73e0-5a3a7dac3e5e + Location + + + + + 4e968fe5-a33d-64ba-26d2-e407b7353402 + Location + + + + + dbc71e81-313f-a2f6-86a3-a489334973fc + Location + + + + + 47f752b1-5c7f-7144-cecf-2cd29b329337 + Location + + + + + fe0cbd36-7e9d-24bf-4f69-7b35e6acdd54 + Location + + + + + d722af41-9945-2f94-49cc-86fcb0b1cd23 + Location + + + + + e838e801-ae05-cb60-e912-71e76aa35b4a + Location + + + + + e6ee13da-1c44-ca62-6fb8-f69656d4de20 + Location + + + + + 3b811ac8-ee08-84f6-fca5-69cedc554fae + Location + + + + + 60ca97a2-28f5-9e69-c19c-4874067b3eb8 + Location + + + + + 905a2de4-e5ff-9112-556f-5be349bfbf90 + Location + + + + + 8374d116-5b8e-6281-595a-8d7d9c44e032 + Location + + + + + ee5448b7-b8a6-8efc-9658-8986fd7a0ade + Location + + + + + 5bdd9eb0-7e38-b80e-d240-307480a8c0d5 + Location + + + + + d9ccdf50-99be-93dd-b9dc-90a564e40666 + Location + + + + + aab3db61-a513-6a09-409d-00174c12cd82 + Location + + + + + 8134b1d2-2dcb-5ff6-ed11-e0b5a715441f + Location + + + + + 14c68856-1c0a-03d4-9950-3f1d4ef0626a + Location + + + + + 1113a0ec-923f-9941-aaf3-4cea5b269a82 + Location + + + + + 4bbc2b00-4a69-1929-849c-5d0f4ff1b746 + Location + + + + + 01fe9beb-1385-a55e-b951-0dbd62cd2b31 + Location + + + + + 042a39db-80e0-d5ca-2e02-f31fd1e8276c + Location + + + + + 072e9f3d-e283-22e4-2ec5-4f88ed5e1190 + Location + + + + + 89e61139-ad6c-1cf3-ab99-67b34a29d340 + Location + + + + + + 11.3762 + 53.6454 + + + + 11.3751 + 53.6543 + + + + 11.3773 + 53.6479 + + + + 11.3746 + 53.6469 + + + + 11.3692 + 53.6456 + + + + 11.3669 + 53.6389 + + + + 11.3692 + 53.6456 + + + + 11.368 + 53.6417 + + + + 11.3578 + 53.6498 + + + + 11.3632 + 53.6353 + + + + 11.3732 + 53.6454 + + + + 11.3685 + 53.6598 + + + + 11.3805 + 53.6502 + + + + 11.3794 + 53.6534 + + + + 11.357 + 53.6504 + + + + 11.3668 + 53.633 + + + + 11.3721 + 53.6371 + + + + 11.3682 + 53.6511 + + + + 11.3674 + 53.6434 + + + + 11.3683 + 53.6445 + + + + 11.3707 + 53.6425 + + + + 11.3686 + 53.6436 + + + + 11.3752 + 53.6481 + + + + 11.3686 + 53.6572 + + + + 11.3682 + 53.6457 + + + + 11.3745 + 53.6464 + + + + 11.3784 + 53.6422 + + + + 11.3638 + 53.6261 + + + + 11.3584 + 53.6531 + + + + 11.3524 + 53.6537 + + + + 11.372 + 53.6492 + + + + 11.3519 + 53.6559 + + + + 11.3783 + 53.6431 + + + + 11.3529 + 53.6567 + + + + 11.3692 + 53.6456 + + + + 11.3708 + 53.6421 + + + + 11.372 + 53.6453 + + + + 11.3715 + 53.6411 + + + + 11.3719 + 53.638 + + + + 11.3724 + 53.6341 + + + + 11.3561 + 53.6516 + + + + 11.3773 + 53.6499 + + + + 11.3692 + 53.6456 + + + + 11.3776 + 53.6415 + + + + 11.3739 + 53.6297 + + + + 11.3626 + 53.6303 + + + + 11.3739 + 53.6306 + + + + 11.3535 + 53.6521 + + + + 11.364 + 53.6448 + + + + 11.3738 + 53.6456 + + + + 11.3661 + 53.6363 + + + + 11.3649 + 53.645 + + + + 11.3819 + 53.6481 + + + + 11.3664 + 53.637 + + + + 11.3511 + 53.6477 + + + + 11.3561 + 53.6524 + + + + 11.3737 + 53.6286 + + + + 11.3683 + 53.6236 + + + + 11.3581 + 53.6545 + + + + 11.3733 + 53.6328 + + + + 11.3833 + 53.6488 + + + + 11.3767 + 53.641 + + + + 11.3701 + 53.647 + + + + 11.351 + 53.6494 + + + + 11.3634 + 53.6579 + + + + 11.3798 + 53.6455 + + + + 11.374 + 53.6538 + + + + 11.3609 + 53.6441 + + + + 11.3686 + 53.6592 + + + + 11.3755 + 53.6467 + + + + 11.3697 + 53.6457 + + + + 11.3748 + 53.6475 + + + + 11.3518 + 53.655 + + + + 11.3521 + 53.6508 + + + + 11.3724 + 53.6525 + + + + 11.3702 + 53.6321 + + + + 11.366 + 53.6416 + + + + 11.3815 + 53.6429 + + + + 11.3767 + 53.6438 + + + + 11.369 + 53.6451 + + + + 11.3683 + 53.6489 + + + + 11.3809 + 53.6455 + + + + 11.3776 + 53.6454 + + + + 11.3667 + 53.648 + + + + 11.3682 + 53.6541 + + + + 11.3714 + 53.6252 + + + + 11.3811 + 53.6501 + + + + 11.3561 + 53.6568 + + + + 11.3656 + 53.6346 + + + + 11.3638 + 53.6514 + + + + 11.3665 + 53.6453 + + + + 11.3627 + 53.6482 + + + + 11.3637 + 53.6544 + + + + 11.3833 + 53.6472 + + + + 11.3715 + 53.6397 + + + + 11.3627 + 53.6312 + + + + 11.3733 + 53.6409 + + + + 11.3544 + 53.6443 + + + + 11.3692 + 53.6456 + + + + 11.3604 + 53.6489 + + + + 11.3691 + 53.6462 + + + + 11.3636 + 53.634 + + + + 11.3641 + 53.6477 + + + + 11.3682 + 53.6531 + + + + 11.3706 + 53.6454 + + + + 11.3687 + 53.6585 + + + + 11.3627 + 53.6285 + + + + 11.3721 + 53.6464 + + + + 11.3701 + 53.6477 + + + + 11.3669 + 53.6465 + + + + 11.3708 + 53.6505 + + + + 11.3688 + 53.6469 + + + + 11.366 + 53.624 + + + + 11.3521 + 53.6461 + + + + 11.3656 + 53.6492 + + + + 11.3633 + 53.6332 + + + + 11.3699 + 53.6441 + + + + 11.3832 + 53.6464 + + + + 11.3698 + 53.6485 + + + + 11.364 + 53.6384 + + + + 11.381 + 53.6428 + + + + 11.3789 + 53.6429 + + + + 11.3784 + 53.6481 + + + + 11.3646 + 53.662 + + + + 11.3558 + 53.6439 + + + + 11.3779 + 53.6501 + + + + 11.3619 + 53.6443 + + + + 11.3777 + 53.6544 + + + + 11.3654 + 53.6406 + + + + 11.3692 + 53.6315 + + + + 11.3663 + 53.642 + + + + 11.3687 + 53.6459 + + + + 11.3577 + 53.6437 + + + + 11.3825 + 53.6434 + + + + 11.3756 + 53.6545 + + + + 11.3805 + 53.6519 + + + + 11.3752 + 53.6456 + + + + 11.3807 + 53.651 + + + + 11.3636 + 53.6603 + + + urn:ogc:def:crs:EPSG::4326 + 85076d64-282b-1436-47f5-2881bf558ac9 + WGS-84 + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml new file mode 100644 index 00000000..b8ed873e --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SSH_.xml @@ -0,0 +1,8289 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/SteadyStateHypothesis-EU/3.0 + 2015-12-31T23:00:00Z + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 99 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 99 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 416 + + + 416 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 416 + + + 416 + + + 358 + + + 315 + + + 416 + + + 315 + + + 535 + + + 535 + + + 358 + + + 535 + + + 535 + + + 471 + + + 471 + + + 471 + + + 416 + + + 471 + + + 358 + + + 535 + + + 416 + + + 535 + + + 535 + + + 315 + + + 416 + + + 535 + + + 416 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 535 + + + 358 + + + 471 + + + 535 + + + 471 + + + 416 + + + 471 + + + 358 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 535 + + + 416 + + + 471 + + + 416 + + + 535 + + + 471 + + + 471 + + + 358 + + + 535 + + + 471 + + + 535 + + + 358 + + + 535 + + + 471 + + + 535 + + + 471 + + + 358 + + + 358 + + + 315 + + + 535 + + + 471 + + + 471 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 471 + + + 471 + + + 535 + + + 416 + + + 471 + + + 535 + + + 416 + + + 315 + + + 315 + + + 416 + + + 315 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 535 + + + 416 + + + 535 + + + 358 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 416 + + + 315 + + + 315 + + + 315 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 535 + + + 535 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 416 + + + 471 + + + 471 + + + 471 + + + 471 + + + 416 + + + 315 + + + 358 + + + 315 + + + 358 + + + 416 + + + 358 + + + 358 + + + 471 + + + 535 + + + 535 + + + 471 + + + 416 + + + 416 + + + 416 + + + 471 + + + 471 + + + 416 + + + 471 + + + 535 + + + 471 + + + 471 + + + 471 + + + 471 + + + 471 + + + 535 + + + 358 + + + 416 + + + 358 + + + 471 + + + 416 + + + 471 + + + 535 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 330.664 + + + 535 + + + 3637.31 + + + 535 + + + 535 + + + 358 + + + 535 + + + 358 + + + 416 + + + 471 + + + 315 + + + 535 + + + 315 + + + 471 + + + 416 + + + 535 + + + 315 + + + 416 + + + 416 + + + 358 + + + 416 + + + 358 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 471 + + + 416 + + + 416 + + + 315 + + + 471 + + + 471 + + + 416 + + + 358 + + + 535 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 3637.31 + + + 416 + + + 330.664 + + + 416 + + + 471 + + + 416 + + + 416 + + + 535 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 471 + + + 471 + + + 315 + + + 416 + + + 416 + + + 416 + + + 315 + + + 416 + + + 416 + + + 358 + + + 535 + + + 535 + + + 358 + + + 416 + + + 358 + + + 358 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 416 + + + 471 + + + 416 + + + 416 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 471 + + + 416 + + + 535 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 358 + + + 358 + + + 416 + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3826 + 0.1512 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.4219 + 0.1667 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.4611 + 0.1823 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5528 + 0.2201 + true + + + 0.5528 + 0.2201 + true + + + 0.2649 + 0.1047 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.1864 + 0.0737 + true + + + 0.6206 + 0.2471 + true + + + 0.2061 + 0.0815 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + true + -1 + + + true + -1 + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -2.9 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + false + true + 112.75 + + + + true + false + false + + + true + false + true + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + true + + + true + true + 0.2 + 10 + + + + true + true + 0.2 + 10 + + + + true + false + true + + + true + false + true + + + true + 0 + 0 + 1 + true + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml new file mode 100644 index 00000000..25adbb21 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_SV_.xml @@ -0,0 +1,7374 @@ + + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/StateVariables-EU/3.0 + 2015-12-31T23:00:00Z + + + + -0.1722 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -1.26861 + -0.785977 + + + + 0.4611 + 0.1823 + + + + 3.34243 + 2.26549 + + + + 4.13229 + 2.37866 + + + + -3.20481 + -2.01962 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 4.11991 + 2.9469 + + + + 0 + 0 + + + + 1.68323 + 1.06831 + + + + -1.43282 + -0.827912 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.668152 + -0.43973 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 3.49047 + 2.02278 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 3.50242 + 2.06568 + + + + 2.70683 + 1.53544 + + + + 5.02707 + 3.44131 + + + + 0 + 0 + + + + 1.39924 + 1.04876 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 1.35 + 0.719431 + + + + 8.53352 + 5.27119 + + + + 0.5528 + 0.2201 + + + + -11.7292 + -7.48603 + + + + 0.5523 + 0.221 + + + + -0.54236 + -1.97174 + + + + 2.99403 + 1.63627 + + + + -4.24952 + -2.84279 + + + + -4.95431 + -2.84923 + + + + 0.863438 + 0.607626 + + + + 0 + 0 + + + + 0.17476 + 1.75472 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.78805 + -1.64889 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + -1.60097 + -1.13279 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -6.23469 + -3.64602 + + + + -0.1712 + 0 + + + + 7.75339 + 4.80529 + + + + 0 + -0.00542031 + + + + 0.901009 + 0.564977 + + + + 3.1762 + 2.13167 + + + + -6.05374 + -3.49943 + + + + 0.6206 + 0.2471 + + + + -2.53988 + -1.50045 + + + + 3.21017 + 2.01901 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + 0 + -0.00776921 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -3.49938 + -2.06615 + + + + 2.58788 + 1.63968 + + + + -0.1847 + 0 + + + + 0.3373 + 0.134 + + + + -0.4494 + -0.24144 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + 0.367652 + 0.21963 + + + + 0.7667 + 0.565985 + + + + 4.58671 + 2.62823 + + + + 0 + 0 + + + + 25.5067 + 19.7782 + + + + -0.2523 + 0 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 3.99904 + 2.42726 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -2.54016 + -1.49695 + + + + 0.449495 + 0.234241 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 2.91613 + 1.71514 + + + + 0.5523 + 0.221 + + + + 3.72334 + 3.79498 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -0.89883 + -0.492988 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -3.45343 + -2.07035 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 1.67087 + 1.13699 + + + + -0.1847 + 0 + + + + -2.25261 + -1.29009 + + + + 2.13401 + 1.31599 + + + + 0.698276 + 0.475689 + + + + 0.3373 + 0.134 + + + + -3.36163 + -1.85727 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -41.835 + -30.8956 + + + + 0.780028 + 0.501718 + + + + 0.5523 + 0.221 + + + + 2.7904 + 1.64822 + + + + 4.16911 + 2.5626 + + + + 0.5523 + 0.221 + + + + 0.817288 + 0.456181 + + + + 0.2649 + 0.1047 + + + + 0 + -0.00894734 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + -3.67461 + -2.12876 + + + + 1.51617 + 0.940017 + + + + -0.69788 + -0.478547 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 2.91433 + 1.71984 + + + + -0.1722 + 0 + + + + -2.05083 + -1.28931 + + + + -0.1847 + 0 + + + + -2.17116 + -1.27731 + + + + 0.465724 + 0.349327 + + + + 4.54322 + 2.78629 + + + + 0 + 0 + + + + 1.30047 + 0.912694 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + -3.3336 + -1.93236 + + + + -1.18482 + -0.685304 + + + + 0.982787 + 0.587219 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.4219 + 0.1667 + + + + 5.43175 + 3.11287 + + + + 0.6206 + 0.2471 + + + + 4.96845 + 2.85713 + + + + -0.1722 + 0 + + + + -0.779824 + -0.504596 + + + + 0 + -0.00734936 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -3.82339 + -2.29166 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -1.29958 + -0.914913 + + + + -8.53352 + -5.27119 + + + + -3.01363 + -3.30247 + + + + -1.7176 + -0.940431 + + + + -13.7061 + -9.53355 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.56499 + 1.18199 + + + + 1.96722 + 1.18413 + + + + 0.3826 + 0.1512 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.31361 + 0.85164 + + + + -3.3413 + -2.26567 + + + + 25.5067 + 19.7782 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + -0.0100601 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -1.63469 + -0.931424 + + + + 0 + 0 + + + + 1.26709 + 0.710424 + + + + 0 + 0 + + + + 13.7061 + 9.53355 + + + + 1.30204 + 0.91734 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 2.54045 + 1.39023 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.33428 + 1.93215 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.19394 + -2.83506 + + + + -4.53671 + -2.7836 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.998776 + -0.695789 + + + + -0.1712 + 0 + + + + -5.0247 + -3.43977 + + + + -1.66964 + -1.13834 + + + + 0 + 0 + + + + 2.33865 + 1.40179 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 2.75541 + 1.77252 + + + + 0.6206 + 0.2471 + + + + 2.17228 + 1.27945 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.3005 + -0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.49537 + -0.394721 + + + + -0.982388 + -0.590181 + + + + 2.00509 + 1.14725 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.735365 + 0.437754 + + + + -0.174431 + -1.75644 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1712 + 0 + + + + -0.9318 + -0.699985 + + + + -1.30076 + -0.92012 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.817043 + -0.458999 + + + + 0 + 0 + + + + -25.4353 + -17.0196 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 1.14789 + 0.72115 + + + + 0 + -0.0135983 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.165114 + 0.128077 + + + + 0 + 0 + + + + 6.61943 + 3.88129 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.3676 + -0.221 + + + + 0.495554 + 0.389408 + + + + 0 + 0 + + + + -4.58169 + -2.62576 + + + + -1.34873 + -0.724268 + + + + 0.834496 + 0.567395 + + + + 0.3373 + 0.134 + + + + -3.48803 + -2.02234 + + + + 0 + 0 + + + + -2.21706 + -1.42197 + + + + -0.1712 + 0 + + + + -2.669 + -1.66884 + + + + 0 + -0.00331697 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 3.3633 + 1.85728 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -5.41785 + -3.10423 + + + + -1.18477 + -0.684854 + + + + 4.08442 + 2.70879 + + + + -2.5632 + -3.05544 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.58658 + -1.64056 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.999079 + 0.694813 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.60342 + 1.12932 + + + + -1.68121 + -1.07264 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.09823 + 0.829533 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.91223 + -1.71579 + + + + 0.3373 + 0.134 + + + + 2.00606 + 1.14331 + + + + -4.16414 + -2.56126 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.28373 + -1.93614 + + + + -0.4494 + -0.240175 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.899329 + 0.477168 + + + + 3.82754 + 2.29205 + + + + 0.3373 + 0.134 + + + + -1.09711 + -0.833031 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.73522 + 0.964081 + + + + 0.66847 + 0.437425 + + + + 1.80119 + 1.0517 + + + + 2.67186 + 1.66753 + + + + -1.37171 + -2.37272 + + + + -0.898895 + -0.481341 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.9457 + -2.80962 + + + + 25.5067 + 19.7782 + + + + 0 + 0 + + + + 0.33027 + 0.260721 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + 1.63648 + 0.927454 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.85392 + -2.27338 + + + + 3.95233 + 2.81188 + + + + -0.1722 + 0 + + + + 3.35393 + 3.57312 + + + + 0.367638 + 0.218627 + + + + 1.57053 + 1.00305 + + + + 0 + 0 + + + + -0.614533 + -0.373486 + + + + -2.88283 + -1.68636 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.982509 + 0.588278 + + + + -0.4494 + -0.238153 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.165114 + 0.124421 + + + + 0.449543 + 0.234456 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.71003 + -2.48649 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + -6.61237 + -3.87524 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + 0.1864 + 0.0737 + + + + 0.898977 + 0.491601 + + + + 2.08915 + 1.14449 + + + + -1.73009 + -1.31599 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + -0.00398495 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + -1.82354 + -2.61624 + + + + 6.24477 + 3.65424 + + + + -2.70313 + -1.53637 + + + + -0.1722 + 0 + + + + 0.61465 + 0.370084 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 3.24461 + 1.89548 + + + + 0.614724 + 0.370596 + + + + 0 + -0.00566049 + + + + -16.2869 + -10.0765 + + + + -0.1847 + 0 + + + + 0.2061 + 0.0815 + + + + -3.99264 + -2.42605 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + -4.11743 + -2.94588 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -5.59685 + -3.24687 + + + + 0.6206 + 0.2471 + + + + -0.898943 + -0.481556 + + + + 0.543006 + 1.96942 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -1.88345 + -1.0713 + + + + -2.08709 + -1.1476 + + + + 2.84161 + 1.80018 + + + + 0 + 0 + + + + -0.766224 + -0.569427 + + + + -0.1712 + 0 + + + + 2.05196 + 1.28797 + + + + 0.449433 + 0.239486 + + + + 0.449443 + 0.237999 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.3676 + -0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.55397 + 0.899723 + + + + 0 + 0 + + + + -3.18259 + -3.43719 + + + + -1.73371 + -0.966158 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 6.06959 + 3.51202 + + + + 0.5523 + 0.221 + + + + -2.00408 + -1.14845 + + + + 3.40589 + 2.45273 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -2.29911 + -1.44999 + + + + -4.08055 + -2.70774 + + + + -0.2523 + 0 + + + + -0.1722 + 0 + + + + 16.3283 + 11.1174 + + + + 3.18594 + 3.43811 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 1.82634 + 2.61406 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.06522 + 0.606912 + + + + -0.817039 + -0.465854 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.532946 + 0.346011 + + + + 2.21898 + 1.41956 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.98985 + -1.63733 + + + + -0.1722 + 0 + + + + -2.75298 + -1.77368 + + + + 1.88598 + 1.15728 + + + + 0.89937 + 0.477573 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.300572 + 0.216385 + + + + 2.8842 + 1.68526 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -1.135 + -0.787495 + + + + -0.863154 + -0.610408 + + + + 3.85729 + 2.27365 + + + + 0 + -0.00410906 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -2.00337 + -1.14682 + + + + -0.465672 + -0.350385 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.45579 + 2.07066 + + + + -1.56964 + -1.00451 + + + + 2.1956 + 2.83444 + + + + -0.614573 + -0.374222 + + + + 0.817222 + 0.464304 + + + + 0.6206 + 0.2471 + + + + -1.55306 + -0.9022 + + + + 1.88501 + 1.06909 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + 3.28833 + 1.93635 + + + + -0.532714 + -0.349077 + + + + -0.1712 + 0 + + + + -1.26658 + -0.712601 + + + + -7.75339 + -4.80529 + + + + 0 + 0 + + + + -1.88377 + -1.16102 + + + + 0 + 0 + + + + -0.330214 + -0.264415 + + + + -1.31284 + -0.854726 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.532714 + -0.345421 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.85807 + -2.24378 + + + + -2.33538 + -1.40438 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -1.56434 + -1.18276 + + + + 0 + 0 + + + + -0.1651 + -0.134 + + + + -3.35104 + -3.57211 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.51549 + -0.94215 + + + + 2.17256 + 1.27595 + + + + -0.4494 + -0.2471 + + + + -4.56931 + -3.194 + + + + -0.1722 + 0 + + + + -3.2398 + -1.89532 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.39873 + -1.04963 + + + + 0.165114 + 0.130415 + + + + 0.5528 + 0.2201 + + + + -2.17019 + -1.28125 + + + + -0.1722 + 0 + + + + 2.25373 + 1.28927 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0.6206 + 0.2471 + + + + -0.900546 + -0.567011 + + + + 1.43405 + 0.824195 + + + + 0.5523 + 0.221 + + + + 3.7806 + 2.67562 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.43219 + -0.834319 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1651 + -0.126231 + + + + 0 + 0 + + + + -3.77349 + -2.67373 + + + + 1.26914 + 0.78441 + + + + 0 + 0 + + + + 1.73072 + 1.31544 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + -2.13232 + -1.31813 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -2.53855 + -1.39159 + + + + 0.6206 + 0.2471 + + + + -4.12651 + -2.37645 + + + + -0.1712 + 0 + + + + 0.53278 + 0.344547 + + + + 11.7292 + 7.48603 + + + + -0.1722 + 0 + + + + 2.56423 + 3.05537 + + + + 0 + 0 + + + + 0 + -0.00460465 + + + + -3.72153 + -3.79412 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 2.54463 + 1.49479 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -0.98225 + -0.591084 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1722 + 0 + + + + 3.01749 + 3.30319 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 2.54284 + 1.49926 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + -0.00692537 + + + + 0.449473 + 0.240222 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.4494 + -0.239751 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + 0.932007 + 0.699031 + + + + 5.60434 + 3.25233 + + + + 3.71295 + 2.48674 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.4494 + -0.2471 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.9 + 0 + + + + -2.91044 + -1.72026 + + + + 0 + 0 + + + + -0.1651 + -0.129891 + + + + -0.1722 + 0 + + + + -0.735238 + -0.439627 + + + + -1.14763 + -0.722718 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + 0.44943 + 0.245888 + + + + -0.4494 + -0.243783 + + + + -0.1722 + 0 + + + + 1.18601 + 0.680958 + + + + 0 + 0 + + + + 0 + 0 + + + + -16.3283 + -11.1174 + + + + 1.43309 + 0.831512 + + + + 16.3283 + 11.1174 + + + + -1.80069 + -1.05251 + + + + -3.4016 + -2.45243 + + + + -0.1847 + 0 + + + + 3.86057 + 2.24453 + + + + 3.67711 + 2.12935 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 4.5753 + 3.19727 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.17395 + -2.13238 + + + + -1.06447 + -0.611573 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 1.71949 + 0.936662 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.83357 + -0.571425 + + + + -0.1847 + 0 + + + + 1.13566 + 0.78612 + + + + 2.3014 + 1.44784 + + + + -0.1722 + 0 + + + + -1.96629 + -1.1857 + + + + -0.1847 + 0 + + + + 4.25432 + 2.84444 + + + + 0 + 0 + + + + -2.83696 + -1.80153 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.449439 + 0.244854 + + + + -0.1712 + 0 + + + + 1.18546 + 0.6812 + + + + 1.37414 + 2.36914 + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + + + + false + + + + false + + + + false + + + + false + + + + false + + + + true + + + + true + + + + false + + + + true + + + + -1 + + + + -1 + + + + -154.432 + 9.62371 + + + + -154 + 9.7983 + + + + -152.575 + 10.0693 + + + + -154.298 + 9.71759 + + + + -152.591 + 10.0336 + + + + -154.084 + 9.80434 + + + + -154.053 + 9.8326 + + + + -154.014 + 9.86069 + + + + -152.589 + 10.0214 + + + + -154.412 + 9.63875 + + + + -152.744 + 9.93874 + + + + -152.57 + 10.0511 + + + + -152.734 + 9.94833 + + + + -154.279 + 9.73008 + + + + -154.372 + 9.6676 + + + + -154.092 + 9.79809 + + + + -152.584 + 10.052 + + + + -152.615 + 10.0489 + + + + -152.553 + 10.0673 + + + + -154.093 + 9.79735 + + + + -154.429 + 9.62557 + + + + -154.23 + 9.76264 + + + + -154.145 + 9.77072 + + + + -154.02 + 9.82524 + + + + -152.651 + 10.0274 + + + + -152.592 + 10.0344 + + + + -154.145 + 9.78026 + + + + -152.586 + 10.0314 + + + + -152.71 + 9.96992 + + + + -154.14 + 9.76705 + + + + -154.046 + 9.8442 + + + + -154.043 + 9.85322 + + + + -154.003 + 9.77098 + + + + -154.334 + 9.69395 + + + + -152.533 + 10.0916 + + + + -154.06 + 9.83288 + + + + -154.018 + 9.84966 + + + + -154.033 + 9.74473 + + + + -154.021 + 9.83237 + + + + -154.421 + 9.63121 + + + + -152.587 + 10.0235 + + + + -153.989 + 9.79388 + + + + -152.546 + 10.0845 + + + + -154.122 + 9.80271 + + + + -152.588 + 10.0278 + + + + -152.581 + 10.0664 + + + + -154.09 + 9.80847 + + + + -152.585 + 10.0496 + + + + -152.643 + 10.0351 + + + + -152.564 + 10.0573 + + + + -152.589 + 10.0222 + + + + -152.583 + 10.0655 + + + + -153.979 + 9.7915 + + + + -152.667 + 10.0118 + + + + -154.031 + 9.85641 + + + + -154.079 + 9.8414 + + + + -154.016 + 9.86788 + + + + -152.59 + 10.0287 + + + + -152.594 + 10.0385 + + + + -152.592 + 10.0316 + + + + -154.024 + 9.86012 + + + + -154.064 + 9.82203 + + + + -152.587 + 10.0486 + + + + -152.579 + 10.0625 + + + + -154.076 + 9.8329 + + + + -154.115 + 9.80239 + + + + -154.044 + 9.85299 + + + + -154.358 + 9.67714 + + + + -154.141 + 9.76548 + + + + -152.592 + 10.0384 + + + + -152.683 + 9.99677 + + + + -154.138 + 9.75906 + + + + -154.132 + 9.74967 + + + + -154.058 + 9.8443 + + + + -154.008 + 9.87503 + + + + -152.581 + 10.0378 + + + + -154.186 + 9.79203 + + + + -152.556 + 10.0805 + + + + -152.574 + 10.0717 + + + + -154.017 + 9.86927 + + + + -152.555 + 10.0766 + + + + -154.044 + 9.73595 + + + + -152.586 + 10.0223 + + + + -154.139 + 9.76496 + + + + -152.511 + 10.1029 + + + + -152.578 + 10.0686 + + + + -154.095 + 9.80402 + + + + -154.021 + 9.83634 + + + + -154.142 + 9.77666 + + + + -154.013 + 9.76187 + + + + -154.132 + 9.751 + + + + -152.703 + 9.97712 + + + + -154.086 + 9.82555 + + + + -154.15 + 9.80871 + + + + -154.014 + 9.81178 + + + + -154.079 + 9.81845 + + + + -154.04 + 9.73947 + + + + -154.394 + 9.65188 + + + + -154.083 + 9.81542 + + + + -152.743 + 9.9399 + + + + -154.143 + 9.78014 + + + + -152.595 + 10.0478 + + + + -152.596 + 10.0435 + + + + -154.072 + 9.82385 + + + + -154.1 + 9.79965 + + + + -154.144 + 9.78405 + + + + -152.727 + 9.9549 + + + + -154.07 + 9.81646 + + + + -152.585 + 10.0215 + + + + -154.425 + 9.62831 + + + + -152.594 + 10.0536 + + + + -152.579 + 10.0626 + + + + -152.741 + 9.94181 + + + + -154.322 + 9.70166 + + + + -152.534 + 10.0886 + + + + -152.546 + 10.0731 + + + + -152.534 + 10.0833 + + + + -152.51 + 10.1028 + + + + -154.09 + 9.7999 + + + + 0 + 112.75 + + + + -153.997 + 9.77644 + + + + -152.572 + 10.0667 + + + + -154.04 + 9.84543 + + + + -154.418 + 9.63371 + + + + -154.091 + 9.82066 + + + + -154.135 + 9.75539 + + + + -154.011 + 9.86979 + + + + -154.024 + 9.75248 + + + + -152.589 + 10.024 + + + + -154.105 + 9.81013 + + + + -154.055 + 9.84593 + + + + -154.036 + 9.86164 + + + + -154.137 + 9.75801 + + + + -152.562 + 10.0778 + + + + -154.145 + 9.78751 + + + + -154.018 + 9.86923 + + + + -154.137 + 9.75571 + + + + -154.099 + 9.80071 + + + + -154.112 + 9.80475 + + + d8a8ae1b-f7b4-484f-95b2-4cbe47c6f13c + Island_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml new file mode 100644 index 00000000..42d70808 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_XX_YYY_TP_.xml @@ -0,0 +1,3890 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Topology-EU/3.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7ad1e20d-1a25-5de9-9cb7-2bc0fda801c7 + MV3.101 Bus 124 + + + + + 3e5c26a9-64d6-a95e-d136-6d338a3413a5 + MV3.101 Bus 140 + + + + + 9ee3ec6f-01a5-9446-c9e9-87f0ea888022 + MV3.101 Bus 107 + + + + + 274ab182-95bd-4935-a939-be514f32cd14 + MV3.101 Bus 132 + + + + + 20d965d4-547f-ef79-120b-b656e048a56e + MV3.101 Bus 115 + + + + + e5af3d7f-6ae1-7397-e0b7-8237b69b9a10 + MV3.101 Bus 142 + + + + + a16f7dd0-7f98-857f-db89-a4982579e9f0 + MV3.101 BS busbar1A + + + + + 81a99107-4386-39a9-28bf-98490bcb620e + MV3.101 Bus 118 + + + + + c3f045c0-97a7-ea96-5793-88d28e3370dc + MV3.101 Bus 121 + + + + + 16092c18-9fe5-c62e-eb16-9cc5a7b8857a + MV3.101 Bus 117 + + + + + 10f66351-9f7b-9796-9050-7e150a33774f + MV3.101 Bus 128 + + + + + 860ef470-20a2-b265-0227-78ae2a413177 + MV3.101 Bus 130 + + + + + e9193243-8915-51cd-1412-d681773ba481 + MV3.101 Bus 102 + + + + + 7e0612a8-1400-9dc2-a8f4-534440d6d6e9 + MV3.101 Bus 103 + + + + + f07355ed-b22f-0df8-5eb6-de698051abb2 + MV3.101 Bus 100 + + + + + e5c2b140-dd88-395a-e27d-e805c5df923f + MV3.101 Bus 133 + + + + + 705901ec-60fe-4b0c-5e99-9992625a04f6 + MV3.101 Bus 135 + + + + + 61cbb0fe-826f-8581-6d93-5b837cf07bf3 + MV3.101 Bus 137 + + + + + 6f9bd2f6-550a-d37a-a809-2f4f7d13f4ce + MV3.101 Bus 141 + + + + + adbe4a49-1ca1-95a9-da27-52d9d7367390 + MV3.101 Bus 143 + + + + + dd6112b5-4418-6832-721e-3e1cb2f0d6b6 + MV3.101 Bus 134 + + + + + 1ef40479-1002-8c72-74ff-bef8c7258f4e + MV3.101 Bus 123 + + + + + eee1182e-8812-ff35-2903-b816329321a5 + MV3.101 Bus 15 + + + + + 587e8ed2-530b-bec2-8669-fb7bb0f8dbef + MV3.101 Bus 12 + + + + + f9000bee-c959-4676-1d29-2f3a0ce95685 + MV3.101 Bus 33 + + + + + 33585175-2bb8-f709-27cd-236ad4d9e56d + MV3.101 Bus 18 + + + + + 9a645299-fd8b-38a2-c4b2-3f2e04cd4443 + MV3.101 Bus 13 + + + + + ce2891be-ec57-1f2f-fcba-09db40600346 + MV3.101 Bus 138 + + + + + 6dedca80-8d5a-0c24-aae6-93e6831180ab + MV3.101 Bus 125 + + + + + f66a5dc6-18f0-6950-401f-44386aba252f + HV1 Bus 25 + + + + + b03b2b2a-5c69-8b1a-8f8e-092cbf20a907 + MV3.101 Bus 120 + + + + + fda27f50-ab53-288d-8e5c-b03e4fa019eb + MV3.101 Bus 131 + + + + + 50125f3f-c855-c5e4-4e70-eefa978206a8 + MV3.101 Bus 16 + + + + + 750c16c1-5d7d-435a-c8d6-b1454173b4bd + MV3.101 busbar1A + + + + + a796e6b9-35ce-96f3-18ce-2f88758344b7 + MV3.101 Bus 14 + + + + + 4e5e5370-fad2-16ac-5608-410f5461d5d9 + MV3.101 Bus 139 + + + + + 08cdf98a-c831-3c79-7882-0076d9ae8c94 + MV3.101 Bus 106 + + + + + 9722fc63-dcfe-bdd2-f8fb-048c6f7c7f9c + MV3.101 Bus 23 + + + + + 5df9864f-72eb-305a-29ae-b3bc2c60c4a0 + MV3.101 Bus 20 + + + + + 19746bc7-ae5f-1fa1-0ca6-3c0154cccf88 + MV3.101 Bus 126 + + + + + 54822be9-7b18-395d-3421-594966e5ea96 + MV3.101 Bus 119 + + + + + a79d2154-3198-c3a5-d23b-17c8b863d012 + MV3.101 Bus 25 + + + + + aea946ac-9d89-6cd4-d1a9-defea9c4ba22 + MV3.101 Bus 21 + + + + + 5cfb155e-a4f1-7813-0b59-2f091574e4e2 + MV3.101 Bus 127 + + + + + 19f6f5b6-b5e4-c323-f92e-b67587c57eaa + MV3.101 Bus 24 + + + + + e00f21a7-bcf7-091c-8ae4-a348a6c9437c + MV3.101 BS busbar1B + + + + + 553427ff-c6cc-c01c-f0bf-1d500fded0e7 + MV3.101 Bus 27 + + + + + 28aa69aa-fabf-3c95-c671-44b5c6f0a3e4 + MV3.101 Bus 19 + + + + + 364abc8b-32dc-b709-aff1-f0d984f6e4de + MV3.101 Bus 116 + + + + + d17d8bf4-5fd3-9434-2ff5-34fda953baa2 + MV3.101 Bus 122 + + + + + edbac2a9-769a-0e8c-1b93-32c1577b6b2b + MV3.101 Bus 108 + + + + + ff235fd7-7728-639e-991d-68ffb1485a83 + MV3.101 Bus 101 + + + + + f22cef26-370e-c785-5624-090e87bfc8d1 + MV3.101 BS busbar1C + + + + + ee0a237b-0e0b-78de-535a-9b53cb53ea2d + MV3.101 Bus 136 + + + + + 09d549e6-ebdd-2c0d-086d-a96b1152667e + MV3.101 busbar1B + + + + + 40adbcc7-f8fa-7388-891e-7c147bf45023 + MV3.101 Bus 105 + + + + + b6170f00-2c57-2451-d575-01bb519075fb + MV3.101 Bus 129 + + + + + 213a2f02-f50a-1660-908c-914f3cce8c0c + MV3.101 Bus 104 + + + + + 0de42932-e0b1-22a6-bf8b-73b379b7377d + MV3.101 Bus 44 + + + + + b1d53dca-5f33-72af-3b2b-5ec36ad07954 + MV3.101 Bus 65 + + + + + ad51de78-3702-0b14-0735-784662894e69 + MV3.101 Bus 40 + + + + + ec6489ca-edb2-b300-d607-b02b8a2750fb + MV3.101 Bus 112 + + + + + 1aab9b43-6c21-902f-44ab-4d10d0b893e2 + MV3.101 Bus 67 + + + + + 2b510655-88d6-ae18-b58e-2330e133c2df + MV3.101 Bus 68 + + + + + 49f2ded1-15a3-7a3b-cf3f-bad9b01f3546 + MV3.101 Bus 69 + + + + + 5413fa98-ec7b-20ef-b6c7-e1286f8e1737 + MV3.101 Bus 80 + + + + + 12070c64-6818-ea18-5f5a-83d6d441d549 + MV3.101 Bus 79 + + + + + 9c6fc31a-c773-7390-f8eb-5e30dab03f83 + MV3.101 Bus 29 + + + + + 539dd97f-a501-0529-2ee2-a2bbf63c79d4 + MV3.101 Bus 38 + + + + + d66a6ade-7f1b-97c0-0017-9a6cf47c9bda + MV3.101 Bus 49 + + + + + 9906db9c-e3ed-6a2f-e0a2-d1fccb763605 + MV3.101 Bus 61 + + + + + acf4451f-2bbb-a754-b495-4654468f4052 + MV3.101 Bus 63 + + + + + 396d4836-ccc1-74f5-146a-2b6847f7ac7c + MV3.101 Bus 85 + + + + + 133d74c7-98d7-e422-c3d8-1ae37b04026f + MV3.101 Bus 30 + + + + + 03a0251b-1ed0-2fe8-0eb6-459bbee9b0a8 + MV3.101 Bus 34 + + + + + bd27ffe1-aada-4d7c-72df-40e9fa6b56a7 + MV3.101 Bus 41 + + + + + 5c2a0840-9b2c-152d-4772-73d9533c61e8 + MV3.101 Bus 55 + + + + + 98acd6c4-8f82-6b8e-6c34-5f3a98d5b892 + MV3.101 Bus 37 + + + + + 98834ca7-0a8c-6bb4-fd89-2747b4526f6e + MV3.101 Bus 72 + + + + + e70d1212-dd40-bddf-8f33-bb2b638444d3 + MV3.101 Bus 75 + + + + + 87279821-a0ab-830a-22db-b856f71c39a1 + MV3.101 Bus 83 + + + + + 16f0828e-9754-c9ed-9ba0-9489b64c0899 + MV3.101 Bus 114 + + + + + 9bfef8b9-7087-4040-646d-3c837a796ac3 + MV3.101 Bus 26 + + + + + e54fa85a-b795-481c-cded-83f7eaa6b9cc + MV3.101 Bus 35 + + + + + ec9ff049-fed0-586c-7784-3b70ff307e2a + MV3.101 Bus 43 + + + + + d641a8da-1790-3996-ac01-ba4b42f5babc + MV3.101 Bus 11 + + + + + 7910e4fc-60ae-7e08-f374-3e4f2ae03f1c + MV3.101 Bus 59 + + + + + 3d6249b9-b039-bd8c-944e-1ca40eb7e8e7 + MV3.101 Bus 66 + + + + + 28f58cfd-0e6f-61a1-dc04-74835353f5f3 + MV3.101 Bus 31 + + + + + b8acc88e-d9f2-3ff7-62cb-c29bf9f5d807 + MV3.101 Bus 58 + + + + + 1838f7d2-cca9-d294-ec30-fdc944aaa2d0 + MV3.101 Bus 57 + + + + + c6a917d7-b457-5409-6f8d-7fed5ef541bc + MV3.101 Bus 82 + + + + + ebf5c214-df25-6593-96e5-b7c7c0b66dc4 + MV3.101 Bus 39 + + + + + a4b59bf2-0563-2429-efc2-f5aefbfdc18e + MV3.101 Bus 42 + + + + + 0fe6123d-546b-fa84-46c6-19ea3ce4efb3 + MV3.101 Bus 53 + + + + + a870c968-0f0e-d146-9074-29b610cb7ace + MV3.101 Bus 48 + + + + + 0c3ccdb5-7ef2-c076-c7ca-214b4aa2d108 + MV3.101 Bus 86 + + + + + 0ad17a43-29b4-73f6-935f-036a64570db9 + MV3.101 Bus 71 + + + + + 9ca17508-d1bd-711c-af9e-32613ff9ff43 + MV3.101 Bus 87 + + + + + 0a9a2164-403a-b34c-6e4d-0f82ebda0623 + MV3.101 Bus 110 + + + + + 48c0500d-2e1e-927e-9421-bd5aadd56450 + MV3.101 Bus 46 + + + + + 018a79c3-b918-686e-26ee-01a36d1267c9 + MV3.101 Bus 50 + + + + + dc6d8bbb-a674-93db-b9ef-b3658e8b3646 + MV3.101 Bus 84 + + + + + 5f6cbebc-71c2-1d04-9950-8aa580206a7d + MV3.101 Bus 22 + + + + + cd269e1f-c319-47b9-07fd-7a7a8aa4a793 + MV3.101 Bus 60 + + + + + dba63795-5ec4-0d09-345f-c707f2a5d2e6 + MV3.101 Bus 56 + + + + + 62ad74cb-3898-1103-070b-22c1bdd9b8c8 + MV3.101 Bus 70 + + + + + be9c219b-5b2c-119e-3e1e-271cb6223331 + MV3.101 Bus 74 + + + + + 409457ac-b8c9-ea43-15a7-ecb239f7de3e + MV3.101 Bus 111 + + + + + 10fbcf81-7bad-c502-34f9-73f68d8360f6 + MV3.101 Bus 45 + + + + + adfbfd04-8fe4-4e5e-c8d8-e277243baf82 + MV3.101 Bus 109 + + + + + bc013bbd-a734-3be2-c021-195caef49f29 + MV3.101 Bus 113 + + + + + b551b24e-44e7-f6ef-2e55-ffab04bedc9c + MV3.101 Bus 51 + + + + + 2ac28fdb-440e-c7e9-2b26-07e9c0ad000d + MV3.101 Bus 36 + + + + + 25006734-7941-2a7d-6502-548d25beaa5c + MV3.101 Bus 62 + + + + + 1b0a571f-c9c3-bbf1-2247-61a3e30f6d1a + MV3.101 Bus 47 + + + + + 5e3924be-5aa1-7a33-51b6-0a9b74b5bb94 + MV3.101 Bus 28 + + + + + 4bb5886a-11b5-54a3-0c37-d62089df3378 + MV3.101 Bus 54 + + + + + e5b39655-db54-61cd-7245-552ea4e3da55 + MV3.101 Bus 52 + + + + + d5faa2b0-6504-7be2-11f7-2dacc8b39e5b + MV3.101 Bus 17 + + + + + 71aaa328-31fa-2e71-6708-c9319a76f9e3 + MV3.101 Bus 64 + + + + + 155a8215-77be-f9de-1ff6-f7b7fbd38a11 + MV3.101 Bus 32 + + + + + 9e03ccbb-d548-a42f-8164-c2310ea3cd0d + MV3.101 Bus 92 + + + + + c0a04f8a-5e75-5d4d-3464-bc746255ac0e + MV3.101 Bus 81 + + + + + 25ae9883-c5e3-a702-b9b7-7cbad30e682f + MV3.101 Bus 94 + + + + + b3482888-a476-ee31-72b5-98631931a20b + MV3.101 Bus 78 + + + + + d7baf6d9-8a12-0b03-1e9d-153dc754eb05 + MV3.101 Bus 76 + + + + + 45d7e093-b6c0-7bbc-f3d7-94f1f4d00f7b + MV3.101 Bus 77 + + + + + 2dca6748-8f7c-a569-f5a4-3b583b95f323 + MV3.101 Bus 91 + + + + + 8d445f23-0301-8c82-d817-cb580d7d4870 + MV3.101 Bus 99 + + + + + 58e61fcf-10cf-1872-c660-d511fecbfad3 + MV3.101 Bus 96 + + + + + 0719bb8f-b06f-a985-9e7e-7fe9b920df13 + MV3.101 Bus 97 + + + + + bf04f4ea-e882-de84-a7f4-249406e6aa42 + MV3.101 Bus 93 + + + + + a1affc43-2921-48d3-0b48-8fa028ffe673 + MV3.101 Bus 98 + + + + + 9df05979-9863-aacc-49d2-9adc8d02dc46 + MV3.101 Bus 73 + + + + + fcde5dda-8657-c106-b2ae-b56124172a78 + MV3.101 Bus 90 + + + + + 940c4c60-3e96-9c4a-0d5c-0834645d95f4 + MV3.101 Bus 95 + + + + + f9c34ee0-3927-a9ac-0e2f-2e3c9b84c1ee + MV3.101 Bus 89 + + + + + 1bacc330-79ba-2553-ac05-e397c6e0af7b + MV3.101 Bus 88 + + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml new file mode 100644 index 00000000..668fd4b6 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/20151231T2300Z_YYY_EQ_.xml @@ -0,0 +1,22667 @@ + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + 2015-12-31T23:00:00Z + + + 355c012c-df56-d45e-dd89-635138d85707 + Current rating for MV3.101 Line 78 + + + + 96b62661-c9fe-6092-f667-728c50442b30 + Voltage limits for MV3.101 Bus 103 + + + + 3944f1ac-fc82-50dd-30d2-913464ccf749 + Current rating for MV3.101 Line 45 + + + + 5a4dad5d-9062-b8b8-ba21-57f8531ddae1 + Current rating for MV3.101 Line 89 + + + + e58fa489-d42c-5519-0f55-c903698dc300 + Current rating for MV3.101 Line 45 + + + + 8e39b518-c46a-5a8e-529f-7f915cc051eb + Current rating for MV3.101 loop_line 10 + + + + 9f1e45f5-728c-83d7-e8a6-c7d8e3b2bb82 + Current rating for MV3.101 loop_line 6 + + + + 1b04e0b8-56a0-995f-1910-38d65666ad31 + Current rating for MV3.101 Line 121 + + + + fdc8a1a4-7aad-d5bc-bb4c-64b0c7f016e9 + Current rating for MV3.101 Line 18 + + + + 020d8b4f-b32e-d2f4-1edd-b0c5f86f6a83 + Current rating for MV3.101 Line 116 + + + + 9933608a-f454-3482-32f3-6284b0b3c1c9 + Current rating for MV3.101 Line 82 + + + + 512c2d8e-ded4-887f-6bc6-8aa0c3e84883 + Voltage limits for MV3.101 Bus 88 + + + + e84cc9e8-2bcc-c7e4-1da8-f615f8db9c7f + Current rating for MV3.101 Line 23 + + + + 427b864d-e716-d29b-e556-6da453365ce1 + Current rating for MV3.101 Line 18 + + + + 66571b87-8fbe-6f7d-9972-26f5af49d996 + Voltage limits for MV3.101 Bus 109 + + + + 187d9069-e99c-c5e6-2380-16e78b48a9ce + Current rating for MV3.101 Line 67 + + + + e4c056c5-bbaf-1ba5-54c8-b28f622a253a + Current rating for MV3.101 Line 82 + + + + 7166d57d-c710-0903-ba9d-35272c6e46a2 + Current rating for MV3.101 Line 23 + + + + 7154e3c3-1f64-52c7-5272-e6015fbfc466 + Current rating for MV3.101 loop_line 10 + + + + a5c53bf3-04f5-9ff4-6491-a9833465cd2c + Current rating for MV3.101 Line 121 + + + + b4cb2782-6e1d-85c5-d82e-579f9db54635 + Voltage limits for MV3.101 Bus 17 + + + + 0a5273ef-72ad-ad2f-a553-d91f3f3bcada + Current rating for MV3.101 Line 75 + + + + 7294cdf8-43c1-f2a7-34a7-b452e7574c00 + Voltage limits for MV3.101 Bus 110 + + + + 34d7f217-01c1-e168-2483-285829f5c1c0 + Voltage limits for MV3.101 Bus 41 + + + + 13eca1fc-64a0-2d49-ef5c-48b24b5b8de9 + Current rating for MV3.101 Line 75 + + + + b9a84c3f-41f8-4a89-48a2-4f3d82ba80b7 + Current rating for MV3.101 Line 26 + + + + cca47c08-adf6-e452-2299-e2cbcf2ff1ec + Current rating for MV3.101 Line 26 + + + + 1b06b2fd-4654-6ece-fae6-b7d1bd87b0d0 + Current rating for MV3.101 Line 67 + + + + 16f821b2-df81-2ef1-2ce8-6d19f071e619 + Current rating for MV3.101 Line 133 + + + + 549bf0dc-5ba4-c77d-811d-11b9b23d7bdc + Current rating for MV3.101 Line 42 + + + + 9a86308a-3c00-ff4e-d931-97f8cf3932ba + Current rating for MV3.101 Line 119 + + + + 8723dc98-04bd-1d03-2869-855a43f96c02 + Current rating for MV3.101 Line 10 + + + + b9eb1e5e-99db-4943-9871-92a676bdb5a2 + Current rating for MV3.101 Line 119 + + + + 190f0d41-3cd2-7283-69d0-4dfbb873ced4 + Current rating for MV3.101 Line 133 + + + + 256c00fe-1a9e-e045-8707-5bb7cdd90873 + Current rating for MV3.101 Line 42 + + + + b2117c42-259d-76c8-d628-8c0e792cb888 + Voltage limits for MV3.101 Bus 85 + + + + 8ce4eca6-70ae-bf2a-0c0a-b23eb62e3556 + Current rating for MV3.101 Line 10 + + + + 5dce530a-1126-56c3-4fa5-1e33fb157602 + Current rating for MV3.101 Line 111 + + + + 622e730a-d11d-74a6-3d9d-b5f73f84f90b + Current rating for MV3.101 BS-Feeder3_line + + + + 0f9228d9-bc50-1dab-90e3-09a220e222f4 + Current rating for MV3.101 loop_line 11 + + + + c97a8129-6b06-6c66-4277-95007e506758 + Voltage limits for MV3.101 Bus 81 + + + + 64594a0e-b1d3-15dc-9a5a-42eb53f75540 + Current rating for MV3.101 Line 111 + + + + f637ca45-dc35-d7d3-39fb-89bbd74e47c0 + Current rating for MV3.101 Line 105 + + + + 21627028-14d5-767e-7e7c-84bdb0a0a246 + Current rating for MV3.101 loop_line 11 + + + + adfc1f6c-732d-41ce-8ac3-410475a305b0 + Voltage limits for MV3.101 Bus 70 + + + + cfa6599b-799d-0a56-9212-082ee0d01202 + Current rating for MV3.101 Line 12 + + + + 0f781553-6bae-944a-92aa-45f397841751 + Current rating for MV3.101 loop_line 3 + + + + de8bb789-db9b-a0eb-dbab-a4192ba6d8dd + Voltage limits for MV3.101 Bus 101 + + + + 751e14d3-1a01-f738-7241-26969c78b3f0 + Voltage limits for MV3.101 Bus 130 + + + + 130ccc47-b2c0-c8cd-505a-ab756a2ca313 + Current rating for MV3.101 Line 12 + + + + f36b00c9-0ddf-0f86-c397-6dfd1e1138f2 + Voltage limits for MV3.101 Bus 28 + + + + 080de163-276c-530a-b9c5-acd592be08c3 + Current rating for MV3.101 loop_line 3 + + + + b5f2d6bd-4354-645d-1a2e-cf15ff19ab6e + Current rating for MV3.101 BS-Feeder3_line + + + + 47fe5674-5914-42d3-ff37-2c501f56d01f + Current rating for MV3.101 Line 64 + + + + 5329cb35-66dc-f2d5-f02a-56722f9100a7 + Current rating for MV3.101 Line 105 + + + + 8b770895-ab59-56b5-f1cc-e1b6b451c515 + Voltage limits for MV3.101 Bus 137 + + + + e36cb878-3d3e-2cac-ca6c-1542f76f6baf + Current rating for MV3.101 Line 19 + + + + 05e0c967-7831-88a1-25ea-dc013cd44188 + Voltage limits for MV3.101 Bus 46 + + + + 25d14211-a369-90f4-84cc-feca9ef9f3d9 + Current rating for MV3.101 Line 61 + + + + 29f010b2-54c9-c0d0-6ba3-647ca9e6b4d6 + Current rating for MV3.101 Line 27 + + + + 0220ebce-1fa9-a6e6-21dc-ab466468a769 + Current rating for MV3.101 Line 27 + + + + ebc30937-429e-7530-a7a3-8483524f3f8a + Current rating for MV3.101 Line 102 + + + + bea2aba0-1ce9-6712-c3f5-822b8969b927 + Current rating for MV3.101 Line 132 + + + + 047f0e38-b376-d68e-e800-5e269e710131 + Current rating for MV3.101 Line 44 + + + + d0b6a4c8-702f-d95f-e10f-9f647bf4c1b3 + Voltage limits for MV3.101 Bus 119 + + + + acec1c2b-469f-bfcf-f665-c51e56911d01 + Current rating for MV3.101 Line 64 + + + + f36a4264-c547-5059-c0c7-c405ce32344c + Voltage limits for MV3.101 Bus 42 + + + + 35316be2-b88b-d56f-ea65-746143787bba + Current rating for MV3.101 Line 19 + + + + 97cb72f5-08eb-928a-ce68-338f690601c7 + Current rating for MV3.101 Line 102 + + + + 89c36618-c938-44e5-da26-32d3843780a5 + Current rating for MV3.101 Line 44 + + + + e57353bc-857a-bb5b-26ff-5c913758a692 + Current rating for MV3.101 Line 132 + + + + 7747c803-ca50-929d-4b70-663f618a7d1c + Current rating for MV3.101 Line 61 + + + + 56fd8f3b-97f7-b555-2402-872bde2a2b5b + Voltage limits for MV3.101 Bus 89 + + + + edcdcd6f-de68-7f38-1864-144c8857f0bc + Current rating for MV3.101 Line 98 + + + + 395d71b6-c42e-1c4c-b32b-645b3ed86beb + Current rating for MV3.101 Line 9 + + + + 738e7a05-3d8c-6b5e-2ca7-0e5cd2c88151 + Voltage limits for MV3.101 Bus 54 + + + + 33323605-1d07-c40b-ea73-b0142b0f268a + Current rating for MV3.101 Line 58 + + + + c0579821-bfa8-3f5b-a950-ccfc3556e162 + Current rating for MV3.101 Line 33 + + + + b1477f1f-f26d-bbf1-0f22-1a3ea6d878a6 + Voltage limits for MV3.101 Bus 29 + + + + 80466e70-e800-5342-dddd-4439eaa27c92 + Current rating for MV3.101 Line 33 + + + + b159f4c1-8336-d6b7-4863-a59227f72062 + Current rating for MV3.101 Line 76 + + + + 626e29f1-6ecd-0529-3d31-eb4636b15e22 + Voltage limits for MV3.101 Bus 19 + + + + f3ec894c-4089-596d-e752-a4562883e858 + Current rating for MV3.101 Line 129 + + + + 96c515a3-6715-60b1-d090-a29962d1ca0d + Current rating for MV3.101 Line 17 + + + + ce572762-050c-0304-67cc-30ab98068368 + Current rating for MV3.101 Line 76 + + + + 0b7cc13a-d272-25e8-2d19-4b12da15defd + Current rating for MV3.101 Line 9 + + + + 7f1d1a1c-8239-4d69-8bc5-5c91a4bddda4 + Current rating for MV3.101 Line 58 + + + + 5cc3da29-7741-3a11-7832-6eb70b9136ec + Current rating for MV3.101 Line 17 + + + + 2815ff03-e192-7321-8364-5c0fee404e15 + Current rating for MV3.101 Line 98 + + + + 0dd6eed9-b9d7-c1db-0a9b-1210acc93b64 + Current rating for MV3.101 Line 60 + + + + a83caaf7-0bc7-32bb-8cc9-fa67130c5bff + Current rating for MV3.101 Line 131 + + + + 6b352450-963a-65c9-431d-f40504aedf70 + Voltage limits for MV3.101 Bus 53 + + + + 8dbd02f3-9c7d-d21b-f33e-1240d2544561 + Current rating for MV3.101 Line 90 + + + + 0b93d426-5bbe-37b2-3b07-97c3fc77ef23 + Current rating for MV3.101 Line 1 + + + + 7c2b3b48-0f1b-5e9f-be54-1cdc296af5aa + Current rating for MV3.101 Line 123 + + + + 610fb60d-6e5e-453b-b742-2cef2416c320 + Voltage limits for MV3.101 Bus 62 + + + + cb4207c2-f3ae-c6a4-b29b-f5ad7b17ef8a + Current rating for MV3.101 Line 95 + + + + b6ea8fbb-09d1-2ac0-e2b7-e9947dcc3fe6 + Current rating for MV3.101 Line 123 + + + + ebe0b924-c687-9d3f-8d61-4c6973c98931 + Voltage limits for MV3.101 Bus 61 + + + + 662bd746-db1c-47da-324e-707c79f01bef + Current rating for MV3.101 Line 95 + + + + d3ca0415-44e6-35a5-4ac5-ea41942af7e0 + Current rating for MV3.101 Line 1 + + + + ad779108-535a-b0d1-c366-da0ac0ef9df9 + Current rating for MV3.101 Line 131 + + + + 2d6a0c30-2e90-d3e7-4233-18b2b024dc26 + Current rating for MV3.101 Line 90 + + + + 7096b701-b525-048b-72c3-fcc3bbca863b + Current rating for MV3.101 Line 11 + + + + 2adaa4ce-650a-00eb-6430-1a2f805b8bc5 + Current rating for MV3.101 Line 129 + + + + 410d451a-3cbe-c0fd-1681-853ae7d07017 + Current rating for MV3.101 Line 92 + + + + 8fdc66fb-8140-7d27-5ad2-41ca531fb224 + Voltage limits for MV3.101 Bus 15 + + + + 03753fc3-def6-77a2-ba11-6961c348b729 + Current rating for MV3.101 Line 83 + + + + 5e1baf18-8c8d-6acf-068e-90d36bd2cd6c + Current rating for MV3.101 Line 92 + + + + ee37d667-69b1-cf99-98bf-297fc7288aa8 + Current rating for MV3.101 Line 68 + + + + 8313c766-75f0-6bd6-71e6-e8531cfc4685 + Current rating for MV3.101 Line 68 + + + + b5f6073f-9248-25a0-c27a-e85c7247c30a + Current rating for MV3.101 Line 60 + + + + ddba99aa-2b4f-de98-83d8-081dc2dcf2c6 + Current rating for MV3.101 Line 11 + + + + 4c78dcb8-385a-57a5-d258-64b2ab0ef2ac + Current rating for MV3.101 Line 83 + + + + cd616df2-3bff-9a31-9831-01e5938302d6 + Current rating for MV3.101 Line 8 + + + + a2d726d9-84d3-1d57-937b-9f3ec884cd24 + Voltage limits for MV3.101 Bus 77 + + + + 453a5a09-bcf4-fc93-e4f4-8e52bc8c9c05 + Current rating for MV3.101 Line 8 + + + + 8b3e009e-818c-27a9-0378-dbb227b04548 + Current rating for MV3.101 Line 69 + + + + 027cf39a-e911-fbeb-877a-c55c84515d57 + Voltage limits for MV3.101 Bus 63 + + + + 4e0aaf56-2340-8548-8748-a9bd88bad2e2 + Current rating for MV3.101 Line 69 + + + + 8378f103-9f78-cd15-4c2c-3bd74dee6b17 + Current rating for MV3.101 Line 101 + + + + 7b017297-fe98-d992-d012-bd6a89a590ee + Current rating for MV3.101 Line 124 + + + + 36de8472-32bc-85f3-b0dd-08efb20a90ba + Current rating for MV3.101 Line 36 + + + + 7672828e-adf9-5266-20ff-a44133decf17 + Current rating for MV3.101 Line 40 + + + + 2e49aa09-379d-27e1-dc4d-d322f4fec4ec + Voltage limits for MV3.101 Bus 93 + + + + 781488d4-cc72-e90f-4a41-64441941bc53 + Voltage limits for MV3.101 Bus 94 + + + + d86e8a6d-159b-dcad-c79f-35e930984a33 + Current rating for MV3.101 Line 40 + + + + ee39f535-ae7f-fdc2-8077-2c9faf3559ee + Current rating for MV3.101 Line 74 + + + + 62c4585c-8c6c-f475-c452-eab852afb7b4 + Current rating for MV3.101 Line 74 + + + + a62a1b75-bdcf-a554-040b-7aeaff5c1d9c + Voltage limits for MV3.101 Bus 38 + + + + 3a254ad3-8c2a-b55c-f93e-a0a63be6e014 + Voltage limits for HV1 Bus 26 + + + + 01db0bf8-d8f1-8bff-42df-05593db35e4d + Voltage limits for MV3.101 Bus 22 + + + + fc4f5e43-fba6-6f36-1e83-d45bedf1ff16 + Current rating for MV3.101 Line 124 + + + + cd24b586-dcd2-e60e-cfbd-ecdd5cd262dd + Voltage limits for MV3.101 Bus 87 + + + + 11b4173f-7165-ec17-7c6d-6aa7ed75176e + Current rating for MV3.101 Line 101 + + + + 36df57d1-cf28-40a5-3f47-f51f656b4cb3 + Voltage limits for MV3.101 Bus 48 + + + + af152fd9-5d32-4631-34b9-ee6b1c3fc47c + Current rating for MV3.101 Line 28 + + + + 633a8930-1886-f812-4106-0bb6a078935a + Current rating for MV3.101 Line 28 + + + + f4cf95f2-d840-549c-7761-0aee670b0465 + Current rating for MV3.101 Line 122 + + + + a8304359-fb7f-c5ed-f5e7-e414e9821702 + Voltage limits for MV3.101 Bus 55 + + + + 534a5b54-261f-af5e-c03d-a0c1d100863d + Current rating for MV3.101 Line 50 + + + + de23831c-370f-d592-5452-220960a90506 + Current rating for MV3.101 Line 122 + + + + d3848db2-7e35-fe44-5267-ee89e339962b + Voltage limits for MV3.101 Bus 142 + + + + d670ba56-021c-04fe-fae4-8512912327f0 + Current rating for MV3.101 Line 127 + + + + e828f47e-41a0-7bd0-5040-9bcf02e9624a + Current rating for MV3.101 Line 24 + + + + 379bd81d-ca9b-bc61-80a9-f95462c452c1 + Current rating for MV3.101 Line 24 + + + + bb9157d6-10da-68ae-5380-1fc9b6d6589b + Current rating for MV3.101 Line 36 + + + + e7239107-72e6-13bc-897c-0edc0317668b + Current rating for MV3.101 Line 50 + + + + e313d400-3c93-5439-acb5-9f0583a3df8a + Current rating for MV3.101 Line 7 + + + + 94cddd99-b5be-7d66-a326-00a4f76d648b + Current rating for MV3.101 Line 118 + + + + 775411a9-d1da-1cbb-e22f-765b4948efbe + Current rating for MV3.101 Line 51 + + + + da10cf94-f532-13a7-5beb-05c9bc220d70 + Current rating for MV3.101 Line 118 + + + + 0f9138f3-616b-4c20-0dc8-858164cae413 + Voltage limits for MV3.101 Bus 122 + + + + 6255afd2-dacb-6ddb-a151-df09b76d2075 + Current rating for MV3.101 Line 31 + + + + 2cc235b2-4a81-78a8-fbef-fa26fcb3ab35 + Current rating for MV3.101 Line 51 + + + + e02d7037-7599-b9f9-c636-019d10dd9a9e + Current rating for MV3.101 Line 7 + + + + 7598a31f-fbeb-71ab-b7f1-f17045835017 + Voltage limits for MV3.101 busbar1A + + + + 2b845e83-75d1-04b5-40ea-b7228ddb99e6 + Current rating for MV3.101 Line 93 + + + + 5c67340e-217b-14db-363e-c314a83b0f98 + Current rating for MV3.101 Line 93 + + + + 2465f20b-8bdf-00b8-9ce8-63ca2a1bc95f + Current rating for MV3.101 Line 48 + + + + fcb008bc-31c4-cc34-1d95-54fe1b5c1987 + Current rating for MV3.101 Line 20 + + + + 0a965372-6e86-0684-26db-e0fba57983c5 + Voltage limits for MV3.101 Bus 91 + + + + 72167bf8-d341-a340-04d1-40d60e6d6968 + Current rating for MV3.101 Line 48 + + + + 3240753e-0b1b-0665-7918-55c66c0beca7 + Current rating for MV3.101 Line 91 + + + + 22bcd436-ec9e-490c-45dd-e898a5ff0006 + Voltage limits for MV3.101 BS busbar1C + + + + 85748eb1-3db7-449f-cab8-abf8d3f39bc9 + Current rating for MV3.101 Line 31 + + + + 8eab24be-ed55-f3a2-bb46-e8ac0c501818 + Current rating for MV3.101 Line 2 + + + + 46496d7e-16cb-dd1d-3366-81cf6928ae41 + Current rating for MV3.101 Line 91 + + + + 4cbf2ac3-ed2d-89dc-1eae-2280a05e7e6e + Voltage limits for MV3.101 Bus 43 + + + + 39e0bda7-8098-d98d-ed33-e2f07d3a8715 + Current rating for MV3.101 Line 127 + + + + 1172ebea-f9c8-f1f5-dc2e-c4ac7cf091e1 + Current rating for MV3.101 Line 126 + + + + 01109808-dc89-ad35-da6d-dac07012fc65 + Voltage limits for MV3.101 Bus 102 + + + + 07dd8f1a-c6d2-4ef9-0b88-8328ad8d3117 + Current rating for MV3.101 Line 126 + + + + c5a50134-53f1-0a65-c049-d10b4fa65e28 + Current rating for MV3.101 Line 20 + + + + 3eb820c3-b197-6fbf-a755-0fe5714ae4da + Voltage limits for MV3.101 Bus 45 + + + + a087cf0b-5829-bd1a-1a23-575b01d846b8 + Current rating for MV3.101 Line 106 + + + + f8a5a5d0-a726-ce5d-7dcd-1e67cc2e28f5 + Current rating for MV3.101 Line 106 + + + + 46412c92-6e3e-11bf-e425-7a95df6a193d + Current rating for MV3.101 Line 84 + + + + 0f4b71ce-42ea-2098-2c23-5e12b113074a + Current rating for MV3.101 Line 103 + + + + 45398877-c1b4-3847-5cec-1db5b219b05a + Voltage limits for MV3.101 Bus 82 + + + + ed841921-3851-2f26-7c7f-8813a8468fc2 + Current rating for MV3.101 Line 2 + + + + 9e870c9b-3fc3-59e7-3af6-0207f61dc875 + Voltage limits for MV3.101 Bus 32 + + + + 29853083-665f-b1a4-77ae-b1c50d9571b6 + Current rating for MV3.101 Line 53 + + + + efc725d8-028e-3940-05ad-ab81c295627f + Current rating for MV3.101 Line 84 + + + + 7939b768-21be-ac0d-fffa-0a97259b38a8 + Current rating for MV3.101 Line 53 + + + + 44022006-789b-4362-ad19-c6f372185655 + Voltage limits for MV3.101 Bus 86 + + + + c9558f25-558a-457f-c4a5-462326485453 + Voltage limits for MV3.101 Bus 40 + + + + d1b1117b-194b-10a1-37a4-b670060f8026 + Voltage limits for MV3.101 Bus 27 + + + + daf4cd1e-d1c3-9658-5192-68345d6ca1b5 + Current rating for MV3.101 Line 35 + + + + 564db986-a4fc-8e5f-fe56-ad7be1edba24 + Current rating for MV3.101 Line 114 + + + + df62ff11-cd23-e9f9-3c8a-5f0896f4f2c6 + Current rating for MV3.101 Line 130 + + + + 1f33a146-01c5-cfdb-0f0c-ae462a3487e1 + Voltage limits for MV3.101 Bus 100 + + + + d0f3922b-a944-3511-782d-789de0d8fd42 + Current rating for MV3.101 Line 114 + + + + 0cf171aa-803c-5310-0947-4bd8ebd5a632 + Current rating for MV3.101 Line 130 + + + + 48a5bd71-c6dd-7215-dd76-7d56ee43e0e5 + Current rating for MV3.101 Line 35 + + + + f619d2dc-9a66-5a0c-ee9a-0e841efea336 + Current rating for MV3.101 Line 103 + + + + 32a81a99-90f8-1227-b68f-b0257b1e959d + Voltage limits for MV3.101 Bus 26 + + + + b3759915-4412-a8b7-883b-ac5c9cfa9149 + Voltage limits for MV3.101 Bus 97 + + + + f75ab98c-d6a6-cc59-048c-001a26e0fee6 + Voltage limits for MV3.101 Bus 11 + + + + 0af6c7f3-eb10-40d6-e56b-69fb780eafe0 + Voltage limits for MV3.101 Bus 121 + + + + 7d7260b9-d434-1236-0148-1738c9ba6d33 + Current rating for MV3.101 Line 128 + + + + ad015f74-73ae-93a2-b50c-4d5359aea4ef + Current rating for MV3.101 Line 128 + + + + 6a8dcf9e-3055-5ee7-d58d-b43d45a3b328 + Voltage limits for MV3.101 Bus 132 + + + + 083dd117-593c-cf51-35e9-3a64318cc9b2 + Current rating for MV3.101 BS-Feeder4_line + + + + 24379419-f405-b1b7-c5bd-a949cf00a45d + Voltage limits for MV3.101 Bus 58 + + + + aeda32d2-e694-5cb5-5c55-220535334568 + Current rating for MV3.101 Line 43 + + + + f672a5e8-bbe8-059d-298d-9ebaed1dad4c + Voltage limits for MV3.101 Bus 83 + + + + 5965a769-830b-ffa3-697b-bc872228d480 + Voltage limits for MV3.101 Bus 135 + + + + fb8f565c-859c-8553-0d4b-60a45897a303 + Current rating for MV3.101 Line 43 + + + + 741fd07a-7253-248e-4626-ba54d1178605 + Current rating for MV3.101 BS-Feeder4_line + + + + 12f8a61e-1220-503b-fd4f-43e43c75b4e0 + Current rating for MV3.101 Line 80 + + + + 22ca0617-6068-ee1f-8d4d-656599a703c1 + Current rating for MV3.101 Line 38 + + + + 7d7ef6b0-e4b1-5b8d-c231-4b5ec30ccea0 + Current rating for MV3.101 Line 41 + + + + e559da4d-9b64-9d40-aaf7-95d1981b8056 + Voltage limits for MV3.101 Bus 80 + + + + c1fa32c4-3290-41e9-4dec-9a73188550b1 + Voltage limits for MV3.101 Bus 140 + + + + 48ec2e92-800f-9e53-5e54-1468db919604 + Current rating for MV3.101 Line 41 + + + + 78bfbcc1-d3fe-b11f-2c3c-251ce94cfd34 + Current rating for MV3.101 Line 80 + + + + a991ab08-7a3c-038b-83ce-9c3bd28a050a + Current rating for MV3.101 Line 38 + + + + da9dd5c8-3f54-73d4-f100-218c2ca58d5a + Current rating for MV3.101 Line 29 + + + + 6165ce69-e579-4940-3a45-c4aae639e525 + Current rating for MV3.101 Line 66 + + + + 21cfedbd-42b1-94c3-ef5a-c32df89422ca + Voltage limits for MV3.101 Bus 124 + + + + b3cc1e79-6ae5-c756-7cc6-816085124e53 + Current rating for MV3.101 Line 62 + + + + 8778a5e1-2245-0b64-c660-1bb0c603c1d7 + Voltage limits for MV3.101 Bus 99 + + + + 8997d6b1-f706-7333-be67-4506d3fd22d2 + Voltage limits for MV3.101 Bus 125 + + + + a1a67b2f-91c9-3938-5e23-0f449d931238 + Voltage limits for MV3.101 Bus 31 + + + + 8a27f3e6-24fe-c8ec-a122-7825633ac892 + Current rating for MV3.101 Line 62 + + + + 6bff8085-42b4-4d51-3630-5d684d60ecc8 + Voltage limits for MV3.101 Bus 51 + + + + e4cb4ba3-4269-44d6-f78b-9d8e7f184a26 + Current rating for MV3.101 Line 65 + + + + 3f89a3d4-4d9b-6c87-9148-6434c25648ae + Current rating for MV3.101 Line 29 + + + + e6e6c7f1-230f-0fd8-7d45-374d17deef05 + Voltage limits for MV3.101 Bus 112 + + + + 3fd6ae4e-e5dd-6632-66b5-2697bcbc7f02 + Current rating for MV3.101 Line 65 + + + + ef39fa12-962a-51a7-0908-87302da400ab + Current rating for MV3.101 Line 120 + + + + c386c84b-6a6f-bc9d-b81e-a4027fb39a19 + Current rating for HV1-MV3.101-Trafo2 + + + + a15f300e-4270-8a24-6adf-f1550e423d32 + Current rating for MV3.101 Line 47 + + + + cc4e6f63-1c6c-b483-08af-c4e9e33f3fbc + Voltage limits for MV3.101 Bus 57 + + + + 3e0ce633-22bf-a129-9ec4-b8429382f580 + Current rating for MV3.101 Line 120 + + + + 52b8b23c-eddf-3810-28e0-fae8ae9ef87f + Current rating for MV3.101 Line 66 + + + + 05be2db8-759c-2c36-0804-075b9852e05c + Current rating for MV3.101 Line 113 + + + + 54753b37-f21c-a6a8-3054-a37eece19b54 + Current rating for MV3.101 Line 16 + + + + ea579124-fc09-bce1-9cac-63e35d27ab31 + Voltage limits for MV3.101 Bus 35 + + + + 40535328-a451-b966-aa1d-1fd98fcaa67e + Current rating for MV3.101 Line 47 + + + + 3a95a6a1-ff3e-4115-d7bf-74fd4131460c + Current rating for MV3.101 Reserve line + + + + ecadf16f-b15e-d480-3920-2466d5be4718 + Current rating for MV3.101 Reserve line + + + + 8dda3650-5e15-96b3-3c0b-f3b4747774b9 + Current rating for MV3.101 Line 30 + + + + bc569062-87c9-815e-ba65-f1e793050083 + Current rating for MV3.101 Line 113 + + + + 9e7373b3-52bc-3359-f46b-be71a82aab86 + Voltage limits for MV3.101 Bus 34 + + + + 4609ca44-c67e-add8-e280-324651d57e29 + Current rating for MV3.101 Line 16 + + + + 2270ba3c-46a7-12b6-1434-f4f27ab3ab3e + Current rating for MV3.101 Line 39 + + + + 51d93546-6cb1-3425-9747-db044d438d72 + Current rating for MV3.101 Line 30 + + + + 37f1b04e-010e-5ad0-f4e9-07a72eb707f3 + Current rating for MV3.101 Line 100 + + + + 8c9ceff0-3000-827e-90ab-6fc2adb42b72 + Current rating for MV3.101 Line 125 + + + + da57f874-4b58-09f4-89c4-f57974364cbe + Current rating for MV3.101 Line 70 + + + + eef7c3de-3558-9dc1-55fc-069d1cadc0a1 + Current rating for MV3.101 Line 70 + + + + 2575618a-7bdf-16f7-5445-2f9acae35485 + Current rating for MV3.101 Line 97 + + + + d1514e5e-33a9-1b8d-7d59-f5e395103a23 + Voltage limits for MV3.101 Bus 12 + + + + 87bb22d5-98ce-d2a6-8720-b37804654d5a + Current rating for HV1-MV3.101-Trafo2 + + + + 2505f54e-ec7b-e4e0-14b8-a3edcdef584f + Current rating for MV3.101 Line 125 + + + + a1db3c2e-6c4c-99bb-745e-8fdc2b218dfe + Voltage limits for MV3.101 Bus 138 + + + + 6b24cebd-3962-6e2b-11f1-f9aeed6c8118 + Current rating for MV3.101 Line 39 + + + + fdb979e7-a817-b3ee-89bb-2493807f44ec + Current rating for MV3.101 Line 97 + + + + b6b473d4-4373-78ca-414f-f133fd2240c5 + Current rating for MV3.101 loop_line 1 + + + + 7a31943d-7862-3f39-b035-89aafc4c8ab0 + Current rating for MV3.101 Line 49 + + + + 162fd53f-beb6-f21c-6b0e-6e32f802a31e + Current rating for MV3.101 Line 87 + + + + 672433cb-93be-f656-8bef-04be5ec71297 + Voltage limits for MV3.101 Bus 23 + + + + b10364e1-dd23-bdfb-c842-3e48b874fc19 + Current rating for MV3.101 Line 87 + + + + 244086f7-c6fd-03f8-8e76-27926470c3ba + Current rating for MV3.101 Line 49 + + + + f7ae91f4-1b4a-66b6-ad81-2fdb44dff514 + Current rating for MV3.101 Line 77 + + + + af1bdaa9-d5dc-3ac5-878f-11af9eb0a793 + Current rating for MV3.101 loop_line 1 + + + + 543366d0-1cd3-79e0-0c6c-3c46905d5263 + Current rating for MV3.101 Line 77 + + + + 99de7373-d641-81cd-772f-4e24eef51a39 + Current rating for MV3.101 Line 59 + + + + 07da1f20-0bb8-f7ce-91c1-d802d3e693e6 + Voltage limits for MV3.101 BS busbar1B + + + + e80b7f2e-d93d-057a-8010-a06dfdfcbd66 + Current rating for MV3.101 Line 108 + + + + b62f0201-dc29-f8fa-b97f-938f3a10970e + Current rating for MV3.101 Line 117 + + + + 9172538f-fd17-c6dd-d7ce-843ed9aaca46 + Current rating for MV3.101 Line 96 + + + + d8e34920-c68f-8fc0-be33-f6a40d80ebd2 + Current rating for MV3.101 Line 100 + + + + 3e53cf99-00ff-d1bc-598d-75b24c76ff7d + Current rating for MV3.101 Line 96 + + + + 900e328f-6f4e-3e87-f55d-81996db8d4b7 + Voltage limits for MV3.101 Bus 141 + + + + 33c5ebbd-d9c0-3577-9522-030fb981badd + Voltage limits for MV3.101 Bus 39 + + + + e93b997b-fa13-4d7a-97c1-a85df0942d4f + Current rating for MV3.101 Line 117 + + + + d709656a-d291-723c-7792-f6eea069a191 + Current rating for MV3.101 Line 108 + + + + ae6d6fee-a7d1-31c1-402b-d85a05f0e7d7 + Current rating for MV3.101 Line 59 + + + + d00c7b9b-37ae-d00d-2cfd-197482a556fe + Voltage limits for MV3.101 Bus 120 + + + + ac7ac6f1-6fc2-3407-7ad0-b70369fc1cb8 + Voltage limits for MV3.101 Bus 92 + + + + aef12411-24a6-cd0f-27f9-42c314237751 + Current rating for MV3.101 Line 73 + + + + 0e98b549-ea6f-1983-21fc-585eb57385a6 + Current rating for MV3.101 Line 32 + + + + 1c948908-2ae7-a3d5-7e0a-4dbf9c9ab844 + Current rating for MV3.101 Line 32 + + + + a5038981-59d2-2a20-a55c-50e231e231df + Current rating for MV3.101 Line 110 + + + + b42ca62c-3721-a6e8-4ba2-1c3b96e24eda + Current rating for MV3.101 loop_line 9 + + + + 2b333d58-669f-7dfd-a7f6-914b2bbb9a90 + Voltage limits for MV3.101 Bus 25 + + + + 39768659-f562-bdce-44cd-de55cb1703a5 + Current rating for MV3.101 Line 15 + + + + bc4c9d83-d8b9-8d13-744e-b7852ece78b5 + Current rating for MV3.101 Line 110 + + + + 12f19435-1d0b-42c5-c4f8-4df89ae24362 + Voltage limits for MV3.101 Bus 68 + + + + 91aa2d18-4552-1604-0a18-dcc90dd99206 + Current rating for MV3.101 Line 73 + + + + 4628c68b-74d5-3593-168c-274bf7b23de6 + Current rating for MV3.101 Line 15 + + + + cfa9f7db-8fd5-48a6-1276-42403bdf0196 + Current rating for MV3.101 loop_line 9 + + + + a2e8f855-1784-7c8a-107f-5bebee99507c + Voltage limits for MV3.101 Bus 114 + + + + 6e7673aa-f5ce-69b2-6c53-25ce2ee70829 + Current rating for MV3.101 loop_line 2 + + + + 22a44364-fccf-3164-46f5-e0c1715b73de + Current rating for MV3.101 Line 34 + + + + 45abfcc9-b6ca-9781-17af-b3fc832b19a4 + Current rating for MV3.101 Line 3 + + + + 5d1e1f51-221f-4a36-8381-31190a75c9f0 + Current rating for MV3.101 Line 34 + + + + 8a897861-e827-65a7-abe0-ea8c9569c97c + Current rating for MV3.101 Line 81 + + + + 0387a864-329d-ac29-7e0a-597476e1c3f9 + Current rating for MV3.101 loop_line 4 + + + + 1e91cbe5-8672-6475-585c-0a508a3fe32c + Current rating for MV3.101 loop_line 4 + + + + 87013eed-8813-10fc-fcb4-bc4a8de9ee3c + Voltage limits for HV1 Bus 25 + + + + 7aa8220a-45f7-cdd4-09e7-30e6dcbe5c46 + Current rating for MV3.101 loop_line 2 + + + + 8eac3744-aee6-339d-6e00-33c679c715e4 + Voltage limits for MV3.101 Bus 133 + + + + 82ba5660-298b-0bf6-b21b-9f932739961a + Current rating for MV3.101 Line 81 + + + + 9589c9c3-f8fc-d8e3-f6d7-588461f8e77b + Voltage limits for MV3.101 Bus 95 + + + + 43063a7d-735e-4cff-4965-8c1c5ca060b3 + Current rating for MV3.101 Line 86 + + + + 61aa9ae0-de30-8399-9fb7-71a82f2cffe1 + Current rating for MV3.101 Line 115 + + + + 0b0b3cee-1ecc-392f-4e62-c4b8bd781eca + Current rating for MV3.101 Line 79 + + + + 13a9c4db-147c-fa83-2b9d-719dcd64e508 + Current rating for MV3.101 Line 79 + + + + 12a19d3a-3899-633e-8cf4-53b305f0029a + Current rating for MV3.101 Line 3 + + + + 7f7bf3e9-97cb-0abd-4994-856a2bf3cff3 + Current rating for MV3.101 Line 55 + + + + 13089b81-e477-1131-b9f5-e5bcd79a3627 + Voltage limits for MV3.101 Bus 24 + + + + 46a68ae9-25e0-a736-0a3d-cf7a97b34824 + Voltage limits for MV3.101 busbar2A + + + + 3cb67754-f8cb-70cf-8df2-33302dac6a32 + Current rating for MV3.101 Line 14 + + + + ce68b489-e13a-5756-1d64-e80cff9a8e22 + Current rating for MV3.101 Line 86 + + + + 2c27331f-4661-bc48-35ff-f55a100b299a + Voltage limits for MV3.101 BS busbar1A + + + + c71ac476-2030-678c-4de0-dfaa7a79bee6 + Current rating for MV3.101 Line 21 + + + + b852858f-6f20-ac0a-8d63-93da564deee0 + Current rating for MV3.101 Line 115 + + + + d6b7c786-e40b-8c8f-29a4-dc6e9f56817c + Current rating for MV3.101 Line 52 + + + + b51d6ab4-3291-6e09-eadb-a50cd1a6c718 + Voltage limits for MV3.101 Bus 66 + + + + 54ddcd6c-25ed-5537-cbf7-b2d86d50cb71 + Current rating for MV3.101 Line 14 + + + + 997cc9db-1214-6659-3976-9d0b8497d15e + Current rating for MV3.101 Line 5 + + + + 57ff7dde-dea7-bfe7-5d9d-2ee19560793a + Current rating for MV3.101 Line 55 + + + + cab466ce-25a8-6332-7939-d7458173a124 + Current rating for MV3.101 Line 21 + + + + a34089de-96d5-3937-4ada-7a47c5088b82 + Current rating for MV3.101 Line 112 + + + + c4336f55-cf05-c750-d5ca-f35eceb68726 + Current rating for MV3.101 Line 112 + + + + 3b43b93e-8548-c723-e53c-e1e3f98fefc9 + Current rating for MV3.101 Line 5 + + + + 7babe0c2-0a1b-e1a6-e12a-fd0baba359ed + Current rating for MV3.101 Line 46 + + + + 273c9ad4-a0cb-cbad-1ac9-3022a6a8f8b7 + Voltage limits for MV3.101 Bus 59 + + + + bd29ce9e-dd8e-e64c-88a5-e236fc54b4f3 + Current rating for MV3.101 Line 46 + + + + cef12e5c-c775-4b0d-f243-ebf3c10f66a5 + Voltage limits for MV3.101 Bus 72 + + + + 1ec9b5e4-155b-bd48-46e5-33ce42c930cd + Current rating for MV3.101 Line 52 + + + + 031a8dda-eb99-097a-3bdb-9d714c5029de + Current rating for MV3.101 Line 107 + + + + 342d708a-b97d-112b-6a9e-7e7e70fb7068 + Voltage limits for MV3.101 Bus 56 + + + + 85a5bc91-e83c-6dad-01fa-bba6909545b8 + Voltage limits for MV3.101 Bus 90 + + + + d2c93ef1-9ad8-d4e5-473c-97d257f5fa57 + Current rating for MV3.101 Line 54 + + + + f35dd31c-f5df-008e-cc88-7b65a936d3ea + Voltage limits for MV3.101 Bus 13 + + + + 27142e73-e4cc-2159-5416-1bfe70a44387 + Current rating for MV3.101 Line 107 + + + + a76e9562-3555-6246-d767-680225111740 + Current rating for HV1-MV3.101-Trafo1 + + + + af9f414e-d0d8-9f16-0b66-f0d0d24711bd + Current rating for MV3.101 loop_line 8 + + + + 0552f35c-9215-666d-8bf8-1df5782e35ff + Current rating for MV3.101 Line 54 + + + + bf80ab80-32a8-6b11-e07d-2ca59771da9a + Current rating for MV3.101 loop_line 5 + + + + 34915a9b-7742-4763-3d6d-0455b3f95369 + Voltage limits for MV3.101 Bus 143 + + + + a38e6ad9-7b9e-beca-b6ac-e93b103d57dc + Current rating for MV3.101 Line 109 + + + + 9e6ab5a8-63e0-9e2b-54f8-5273ce20ea5e + Current rating for HV1-MV3.101-Trafo1 + + + + 11ebba20-74c4-ce89-3547-d127af52215d + Voltage limits for MV3.101 Bus 76 + + + + 334b9bbc-5a7d-8683-bdde-d2b068c558f2 + Voltage limits for MV3.101 Bus 104 + + + + 80c83515-31d4-a417-3ed9-0b610ef5daed + Current rating for MV3.101 Line 6 + + + + ed0ca8bc-f4e4-a998-5ca9-3324212e9dad + Current rating for MV3.101 Line 72 + + + + 1fccd53c-52ec-5b28-cf24-144416a33c85 + Current rating for MV3.101 Line 6 + + + + ddd3601c-0680-c492-cbb6-b72aa0e61941 + Current rating for MV3.101 loop_line 8 + + + + 03e48a3e-b99d-239d-3210-46c256437128 + Current rating for MV3.101 loop_line 5 + + + + c9531043-45e0-46f3-f59b-319fd770e188 + Current rating for MV3.101 Line 94 + + + + 5124d288-d570-a2e9-861d-c3b0fa4db5d6 + Voltage limits for MV3.101 Bus 36 + + + + f30eb91a-e78e-b332-5169-294490bf97e8 + Current rating for MV3.101 Line 4 + + + + 4f581338-45c9-300d-f8f1-fa7ae410c02c + Current rating for MV3.101 Line 22 + + + + fa9034bf-6f77-f713-5de5-31f4bdd3312b + Current rating for MV3.101 Line 94 + + + + c04d20ee-10f5-a3a1-0ed7-dd6b4c4d46e9 + Current rating for MV3.101 Line 4 + + + + f4aaded2-6ce5-c860-1f99-e29dd6546d7b + Current rating for MV3.101 Line 109 + + + + c4777082-f51c-22ee-9121-44109bebe447 + Current rating for MV3.101 Line 22 + + + + a9d39c2b-557f-1d77-52bf-9e0c9f34c927 + Current rating for MV3.101 Line 99 + + + + 70db3bba-e278-c04a-6883-97e11ddb1856 + Voltage limits for MV3.101 Bus 129 + + + + 2cc59a87-11a3-e078-95f1-dffaae574f93 + Current rating for MV3.101 Line 37 + + + + 7d9ebd93-4e5b-cd07-ce59-915c08b780db + Voltage limits for MV3.101 Bus 106 + + + + 27ff7060-b78b-bdeb-ac9c-a6ca843d2a48 + Current rating for MV3.101 Line 63 + + + + 114e47ce-f47d-d853-3aa8-1f93643df25f + Current rating for MV3.101 Line 37 + + + + 084a2acf-de4d-d332-d46f-5f6d319d5207 + Voltage limits for MV3.101 Bus 78 + + + + 71fbd01d-bbe7-52c4-9366-e6ce208a0abc + Current rating for MV3.101 Line 63 + + + + f8028ed3-b03a-f37f-6275-81ef7e15cac6 + Current rating for MV3.101 Line 72 + + + + ece1bb4c-2f3e-7fa5-3e93-60fbf6c1341d + Voltage limits for MV3.101 Bus 44 + + + + c00dfd15-8042-ff09-a015-bb7f8e961e7c + Voltage limits for MV3.101 Bus 47 + + + + 2c91168a-0d49-0483-54dd-0de063d2b052 + Voltage limits for MV3.101 Bus 84 + + + + face5e74-e265-2aa4-ede8-d200cbac8337 + Voltage limits for MV3.101 Bus 65 + + + + 361fd923-62a2-4820-152a-ca179077fe27 + Current rating for MV3.101 Line 104 + + + + 80234a9b-00b8-66ab-be46-91ce993e2664 + Current rating for MV3.101 Line 104 + + + + 21389a70-02b0-78be-0baa-c98f857f1d80 + Current rating for MV3.101 Line 99 + + + + c71a9b85-20c0-6c47-6ff8-97c5e919fe07 + Current rating for MV3.101 Line 57 + + + + 15c0d2b3-f2f4-8a61-6922-807968a7f222 + Voltage limits for MV3.101 Bus 16 + + + + 203d33bc-d365-3ffe-d632-7731b75b2999 + Current rating for MV3.101 Line 88 + + + + eb0045e2-43af-614e-33d4-ead6de3766c1 + Current rating for MV3.101 Line 88 + + + + 747cc1b0-b9d8-ecde-5ae0-78c80c988bae + Voltage limits for MV3.101 Bus 49 + + + + 1d0dbf6c-bf96-f8fc-91f1-db9fe8eb4e3f + Current rating for MV3.101 Line 57 + + + + 5a55c12e-8993-03de-5457-fba9f536f749 + Voltage limits for MV3.101 Bus 108 + + + + b3336147-4a7d-7d97-e6f1-afbd213f7bcf + Voltage limits for MV3.101 Bus 20 + + + + 428e7e4d-33f2-1508-0125-438940be2575 + Current rating for MV3.101 Line 56 + + + + a58cb104-7040-f687-dfc4-7c7da4e6cdfb + Voltage limits for MV3.101 Bus 37 + + + + a9d3bbc6-08f0-6a64-67ab-4496e8175c74 + Current rating for MV3.101 Line 13 + + + + e84587c7-d69c-da8b-5d39-299300ebe264 + Current rating for MV3.101 Line 85 + + + + 6b2bd2a5-18f5-cede-8b54-27d5ecd7afe2 + Current rating for MV3.101 Line 85 + + + + ed7b783e-6b21-f034-5ac3-b5e7a6f7116c + Voltage limits for MV3.101 Bus 128 + + + + 7fa7ebad-e23f-b70f-2864-64fe193b534d + Current rating for MV3.101 Line 13 + + + + 7386d575-57c6-1596-46b0-d2d1927f2f53 + Current rating for MV3.101 Line 56 + + + + c8cc631f-437c-1463-06c9-3a9aeb123aa0 + Current rating for MV3.101 loop_line 7 + + + + 084e8e95-19d1-cb3d-d5d9-005e502cf391 + Current rating for MV3.101 Line 71 + + + + 3fe864f3-82ee-d972-76b7-72da75ffcbc5 + Voltage limits for MV3.101 Bus 79 + + + + dca49c43-d8f1-4e05-9f8d-72aaa0fd883f + Current rating for MV3.101 Line 25 + + + + 39f3e9d8-529a-fac7-8b4c-c176d1e2857c + Voltage limits for MV3.101 Bus 113 + + + + ea725bf4-cdb8-20f2-fc9c-511bceddbabb + Current rating for MV3.101 Line 71 + + + + 260d9196-c187-532a-385a-5460aa58867c + Voltage limits for MV3.101 Bus 73 + + + + 27fabc55-aae1-1530-49cd-7beef8facc35 + Current rating for MV3.101 loop_line 7 + + + + 25c14872-ed64-d8b3-a4f1-138df56010a1 + Voltage limits for MV3.101 Bus 67 + + + + cbf4dd6a-d468-2ae3-c190-4db555ad6378 + Current rating for MV3.101 Line 25 + + + + 05eca5fc-d0a8-146b-f0b8-7710a24fe991 + Voltage limits for MV3.101 Bus 98 + + + + 947172df-8f94-70e5-aa23-483e713c6a72 + Current rating for MV3.101 loop_line 6 + + + + f5a2af4e-a673-c42d-53e5-8acd3f4f21f1 + Current rating for MV3.101 Line 78 + + + + bfed264e-a667-eb7a-eb15-455de7e0b936 + Voltage limits for MV3.101 Bus 64 + + + + 1ba7e721-a331-f882-5834-6773004f0257 + Current rating for MV3.101 Line 89 + + + + 41888b8f-918e-fba9-e5ca-67ef693a01b8 + Current rating for MV3.101 Line 116 + + + + ec028bd5-1bb5-bcad-2493-bf5db912d3c3 + Voltage limits for MV3.101 Bus 52 + + + + fe1a260e-0406-461d-02ea-9fe2c12ce813 + Voltage limits for MV3.101 Bus 21 + + + + 61c7abff-7042-50ed-0a23-77b0e928cd06 + Voltage limits for MV3.101 Bus 123 + + + + e54fe18e-e3ba-4396-7ba5-3c1fc9e976f5 + Voltage limits for MV3.101 Bus 60 + + + + 1faf503f-96d3-d2ce-6dc2-845911116a08 + Voltage limits for MV3.101 Bus 105 + + + + d02d8f64-1541-0616-7cd0-9a825f3b4130 + Voltage limits for MV3.101 Bus 111 + + + + 5ff1e634-5970-7a7b-90c0-2827ea4862e2 + Voltage limits for MV3.101 busbar2B + + + + 31367694-d1f1-cdbe-aed3-2890aba91f08 + Voltage limits for MV3.101 Bus 127 + + + + 752154a7-e362-90c4-0cd1-d8c960f1de6e + Voltage limits for MV3.101 Bus 117 + + + + 00c7c455-3623-28d1-a1a6-5a79cdb37149 + Voltage limits for MV3.101 Bus 18 + + + + 1d5a9e14-be05-572e-b074-0644694e0cea + Voltage limits for MV3.101 Bus 134 + + + + f67adcb0-400b-3d5f-d927-99dbcb470aeb + Voltage limits for MV3.101 busbar1B + + + + c7b5ee8e-06cc-a7b9-8b2b-0ddddcc08a2c + Voltage limits for MV3.101 Bus 33 + + + + a21d2fa1-c80f-1ee7-b635-a7f058f8c0ab + Voltage limits for MV3.101 Bus 14 + + + + 8a6a8066-837d-0bd9-d6ca-7cbc800c7881 + Voltage limits for MV3.101 Bus 30 + + + + e4417893-cc5a-2d11-461b-20666304d08e + Voltage limits for MV3.101 Bus 136 + + + + fea4a4ab-1645-58f7-36c4-901f80799d00 + Voltage limits for MV3.101 Bus 50 + + + + 8157c987-7f8f-08dd-dfe4-66dc798dd979 + Voltage limits for MV3.101 Bus 116 + + + + e04cc820-8e37-3b28-cf6a-91358ba515c6 + Voltage limits for MV3.101 Bus 126 + + + + 179a7c30-6e9a-7436-9b43-88427a5ecf82 + Voltage limits for MV3.101 Bus 131 + + + + 7c955645-4fb0-7d93-c657-786d94de6da1 + Voltage limits for MV3.101 Bus 107 + + + + 2dec4804-70b6-b64a-eb56-8543895334d6 + Voltage limits for MV3.101 Bus 74 + + + + 0d5f5fa1-11e1-58c7-2608-db8feea37dd8 + Voltage limits for MV3.101 Bus 71 + + + + e4a87fd7-3436-881e-d2e3-e4b72cc27396 + Voltage limits for MV3.101 Bus 75 + + + + e3414f94-e4ee-8488-170d-8c4632f6281e + Voltage limits for MV3.101 Bus 139 + + + + 5ad4c2ed-d8a5-b3d8-0644-599a296b76d1 + Voltage limits for MV3.101 Bus 118 + + + + 44f96f0f-cbe1-d5d9-caef-774e915ac3c4 + Voltage limits for MV3.101 Bus 96 + + + + 11b40b86-b6d8-8da8-0051-242306924077 + Voltage limits for MV3.101 Bus 115 + + + + 2756ba25-aa49-94a5-77f9-bafe4cbbddc4 + Voltage limits for MV3.101 Bus 69 + + + + + + + af34d989-7f9a-4b08-9649-18ca5be9ffbe + MV3.101 Load 69 + + + + + + f8387be2-73a3-49a0-880d-1fb142f5acfe + MV3.101 Load 56 + + + + + + fbb51ce0-09e3-48f2-87ca-30ce9c7f5d60 + MV3.101 Load 43 + + + + + + b6304302-6309-45ff-bd09-67fb5b9d8d4e + MV3.101 Load 131 + + + + + + e50c0f4b-3238-45a9-9d39-1b7ef71e3022 + MV3.101 Load 96 + + + + + + fda83017-c3ae-43db-8617-b367868e53b4 + MV3.101 Load 24 + + + + + + a8515958-e2f2-473d-b9c8-d2f7ff5c473c + MV3.101 Load 120 + + + + + + e1235b77-d537-4b1c-aa15-240a008ace12 + MV3.101 Load 124 + + + + + + d6509bd3-35c3-4f3d-badb-86a473f3aad3 + MV3.101 Load 64 + + + + + + c4c2ae36-e4a6-4c63-87fd-623956877845 + MV3.101 Load 115 + + + + + + 9eb86ce5-a02a-4741-91d1-b6229b0efcfd + MV3.101 Load 60 + + + + + + 8fe0b17d-1756-4d3c-9b98-86e62b761336 + MV3.101 Load 113 + + + + + + 989d982e-b378-4b25-adef-6967c40a0a89 + MV3.101 Load 94 + + + + + + c25f6082-0c63-4dbc-83f1-d8c1c4c21e56 + MV3.101 Load 98 + + + + + + 89c85288-a2e0-4830-a141-72c61ed888ba + MV3.101 Load 97 + + + + + + da263309-7e40-4d53-b008-138542978ab8 + MV3.101 Load 71 + + + + + + cb87cadb-2d2a-4559-befc-e5636be50ca1 + MV3.101 Load 25 + + + + + + a565170b-9a94-4197-a8f9-d51682bac1d1 + MV3.101 Load 57 + + + + + + cd193d8a-bffc-4dd8-9e13-526aca22c680 + MV3.101 Load 23 + + + + + + cf7c4fee-8d6f-4c22-b094-95725e26547e + MV3.101 MV Load 3 + + + + + + debe1d7c-3a64-47aa-b93b-d3ad09e2937a + MV3.101 Load 21 + + + + + + ff25488f-c91c-4d56-bb7f-7b9ac91fc3f6 + MV3.101 Load 117 + + + + + + 0fb2059a-f914-4cce-af89-0a745b79d034 + MV3.101 Load 126 + + + + + + 136bde33-9b40-46e6-85ef-9a5fb96bc21d + MV3.101 Load 7 + + + + + + 02ad2253-ced9-4ddb-a07e-38e408e86443 + MV3.101 Load 103 + + + + + + 0578050d-f290-4415-95f1-b1c7769efce7 + MV3.101 Load 53 + + + + + + 05904465-b4a6-4750-9b08-cff55a7bab97 + MV3.101 Load 108 + + + + + + 08bee9e8-d4e4-4c8c-b9cc-92c0a874bac7 + MV3.101 Load 8 + + + + + + 0194e2ed-16ba-4f78-9906-154e1bc8db67 + MV3.101 Load 51 + + + + + + 034df634-1e0d-4157-87cb-ee77bbe644e9 + MV3.101 Load 44 + + + + + + 08d016c8-f365-4885-b92b-5e78a041fcf6 + MV3.101 Load 118 + + + + + + 09dfe9c3-89a7-4620-bd51-59593bfddbd3 + MV3.101 Load 109 + + + + + + 0b8ae7ff-127f-40a4-8f9a-3d75eba7eb87 + MV3.101 Load 105 + + + + + + 175a2917-cedb-404b-b01b-457245296cf4 + MV3.101 Load 85 + + + + + + 1bcaec57-c06d-442a-980d-0055858dd798 + MV3.101 Load 84 + + + + + + 2335d39b-4fc8-4f5c-98f8-075b8d73831d + MV3.101 Load 47 + + + + + + 40b19e0b-c111-4029-a60a-78f7ec1be682 + MV3.101 Load 119 + + + + + + 51d848a2-b03b-4ef7-9434-872447f96c50 + MV3.101 Load 46 + + + + + + 5ad6d656-b6aa-433a-9203-f3fe44b7747f + HV1_MV3.101_load + + + + + + 6492264b-bbab-4ea7-875c-e9eff6d2a45f + MV3.101 Load 13 + + + + + + 67bd2d15-0713-43ba-8552-1aa23cf360de + MV3.101 Load 75 + + + + + + 4177a2b0-cba5-4d3e-8e96-bc3c8a335c19 + MV3.101 Load 66 + + + + + + 4323f761-de16-414a-a310-243f37ddb16c + MV3.101 Load 3 + + + + + + 1d9c0962-917a-425b-9a66-d91427b2a6ff + MV3.101 Load 41 + + + + + + 747ff172-a2cb-4c34-bf32-e52b514b3182 + MV3.101 Load 83 + + + + + + 66a0c91e-4a44-4936-a112-9e26c89e2eb7 + MV3.101 Load 87 + + + + + + 77920c6f-1288-45be-b23c-a9662318c0a4 + MV3.101 Load 18 + + + + + + 797e10a1-c473-4d18-916f-1377e752e490 + MV3.101 Load 42 + + + + + + 31666e66-34d5-4061-bec0-ff2b2c9a8d00 + MV3.101 Load 5 + + + + + + 238d9da9-d29e-444d-b742-7aa1a2759946 + MV3.101 Load 95 + + + + + + 2d194b08-9197-4c22-a9db-5ca9dc4b37c1 + MV3.101 Load 104 + + + + + + 55106cbf-3bd4-4745-8a1d-3d3701e3fc01 + MV3.101 MV Load 1 + + + + + + 7ac464e2-98f4-444f-a2f0-86fb296557cd + MV3.101 Load 81 + + + + + + 5b6a8fc9-aa2e-4e68-ba73-d969580b610e + MV3.101 Load 111 + + + + + + 60090924-1b8e-48d5-aba5-4bd34cbb812b + MV3.101 Load 33 + + + + + + 7ae476f5-839f-4b3b-9b28-e162efd9716e + MV3.101 Load 26 + + + + + + 1a12623f-b493-4acd-a9b6-c5388a2d504f + MV3.101 Load 89 + + + + + + 33454ba1-d5d4-4514-89fd-7f3e260b621f + MV3.101 Load 2 + + + + + + 7bfb75d0-122b-4e72-b175-92672696701b + MV3.101 Load 100 + + + + + + 50296e9d-57a4-4fb2-9560-ac34fdb0da42 + MV3.101 Load 28 + + + + + + 1a92e783-651f-474d-aa03-94429502945f + MV3.101 Load 40 + + + + + + 20e2d6a5-2953-4306-bf78-0c435472a32c + MV3.101 Load 45 + + + + + + 220268a7-fd5c-4c36-aa2d-5025b76cee6a + MV3.101 Load 36 + + + + + + 2dfd2553-9fa9-440e-bb1b-34fe96d56998 + MV3.101 Load 50 + + + + + + 4d4754f1-df5a-4920-a1cd-84d490a438c1 + MV3.101 Load 125 + + + + + + 6a1ef2c9-8df8-43e9-b003-d6dffc8df34a + MV3.101 Load 101 + + + + + + 2728ccc2-f7b2-46a1-a9db-f7b753d5fa88 + MV3.101 Load 114 + + + + + + 3336865f-8b71-4356-bcf5-86cfd5dbbc59 + MV3.101 Load 106 + + + + + + 72d94938-3a57-4713-8fa0-4e27ed1112de + MV3.101 Load 63 + + + + + + 30194020-9dd8-4368-94bd-61f881c53b01 + MV3.101 Load 48 + + + + + + 810eaebc-aec6-4d86-8707-8165fe91a640 + MV3.101 Load 78 + + + + + + 84221564-dddf-4879-9a4b-c70204904247 + MV3.101 Load 122 + + + + + + 8123190e-caff-4281-9e9e-ebea24b23709 + MV3.101 Load 102 + + + + + + 7c54539a-2e04-4a0d-9176-dd2493fea36d + MV3.101 Load 10 + + + + + + 85203ef2-7ca6-4b8c-bc1e-4026c46de1ce + MV3.101 Load 15 + + + + + + 87f7b180-8599-4421-b92d-89d2a589c997 + MV3.101 Load 127 + + + + + + 1bb71236-281b-40ea-9bfd-2009d24bbbf1 + MV3.101 Load 16 + + + + + + 339c68f8-e19a-4028-9150-5190c11641fe + MV3.101 Load 130 + + + + + + 75c9614a-a691-4e9f-b02b-658918358581 + MV3.101 Load 32 + + + + + + 883c56eb-3bec-4738-927e-1928f3b39fde + MV3.101 Load 134 + + + + + + 88ec97a2-6e0a-4ba8-9e60-e7c5afad31ad + MV3.101 Load 86 + + + + + + 3f1e5f2b-8776-4ae4-a2a0-b809618e74c9 + MV3.101 Load 30 + + + + + + 17090226-c11d-4036-a001-4355d114d8ae + MV3.101 Load 74 + + + + + + 3459ae84-00c6-4828-8ef6-35eef2cb6e65 + MV3.101 Load 49 + + + + + + 32c19c31-980a-4329-a0a6-b15da71c1a39 + MV3.101 Load 132 + + + + + + 35b7a5bc-89e4-4233-a9a3-40bf7c750f2d + MV3.101 Load 112 + + + + + + 3e4858a5-53c8-4953-8024-45e78214c70e + MV3.101 MV Load 2 + + + + + + 305456eb-2097-4bc0-b2e2-ffe0ce9a28ca + MV3.101 Load 123 + + + + + + 3fe104cd-bb4b-4ba3-90e4-5b021edc087d + MV3.101 Load 14 + + + + + + 45360327-29cd-4642-81d2-437b1ab1dee4 + MV3.101 Load 107 + + + + + + 463a1b6b-0307-490d-9d5f-c241f9508500 + MV3.101 Load 6 + + + + + + 55a69b60-0d58-49c8-8594-863c4d43d13a + MV3.101 Load 121 + + + + + + 6862b495-7672-43d8-9050-001fb633247e + MV3.101 Load 62 + + + + + + 6b5a98f9-8789-4502-92dc-09902afeae26 + MV3.101 Load 72 + + + + + + 6cffcfe4-2b15-4bc0-8a3f-a3b48e7ff112 + MV3.101 Load 34 + + + + + + 6eb2bb56-54ed-41fb-b38d-ac0a914ce623 + MV3.101 Load 58 + + + + + + d68bd0b8-ae1e-4ba9-ac7c-4128b1c6388c + MV3.101 Load 59 + + + + + + bedad604-9fe9-483b-801f-0f0a914ff68b + MV3.101 Load 37 + + + + + + ed454cad-f6e3-4bf0-a192-5157adee2aae + MV3.101 Load 116 + + + + + + f305039b-6dde-4423-a04d-977f791cf573 + MV3.101 Load 29 + + + + + + a0fea60d-07e5-49c7-86b9-42d2736d0924 + MV3.101 Load 92 + + + + + + c0669001-e84d-4c9d-ad4a-74ea32c53f28 + MV3.101 Load 27 + + + + + + cfb20189-d0a5-4bbc-b130-2e60d0367b17 + MV3.101 Load 67 + + + + + + 918a4ceb-dc59-4def-b480-dc00e2ec884e + MV3.101 Load 12 + + + + + + 9f72ed37-ba84-4fbb-9999-f587ca4a8586 + MV3.101 Load 61 + + + + + + 99edffcb-d168-4c22-b048-ee56ea13d78e + MV3.101 Load 99 + + + + + + 9f1013db-1992-4ab5-9942-ad5d91f7002f + MV3.101 Load 19 + + + + + + a7fdbed4-f699-4ec8-acdd-4e716b0ddb60 + MV3.101 Load 91 + + + + + + af09f9c2-12ec-4980-9d8d-afb76cd85195 + MV3.101 Load 20 + + + + + + b0247fd9-c2d7-4708-aed4-c3c401d5848e + MV3.101 Load 133 + + + + + + b4a560cf-7fe9-4ab6-bb9f-8ee2c2fb5ec8 + MV3.101 Load 128 + + + + + + c634b905-a4bb-4e64-8f2f-d54f36fed161 + MV3.101 Load 110 + + + + + + c6d6601c-fe6a-489c-b885-65d3d1667067 + MV3.101 Load 22 + + + + + + cffbff32-e1f5-430b-a960-b413f713f7d4 + MV3.101 Load 31 + + + + + + a0f874dd-47a1-4a3b-a3f5-e515b554a147 + MV3.101 Load 82 + + + + + + bc169467-6ffe-4a5c-93f0-a8d09d5d5cba + MV3.101 Load 4 + + + + + + d66d703f-1872-42ad-80b6-8bc1e696147e + MV3.101 Load 17 + + + + + + b54247e5-1d24-4684-9351-234462928b07 + MV3.101 Load 93 + + + + + + 8e357c58-e39b-496f-8d3d-4514bb13125a + MV3.101 Load 90 + + + + + + 92629f37-01e5-4808-a43a-924c7699ecf9 + MV3.101 Load 9 + + + + + + d90769fd-c43f-4f4b-af03-6efab100d19d + MV3.101 Load 52 + + + + + + dbe659d4-8acc-498b-83fd-aa0a5a4d975f + MV3.101 Load 39 + + + + + + de545db3-a9a9-425d-8211-47f41c2a69b8 + MV3.101 Load 79 + + + + + + 8df7d387-b81e-4d68-8cb8-5fc06c70d424 + MV3.101 Load 129 + + + + + + def5abc5-a3a3-4e2e-8575-0d435e7ac605 + MV3.101 Load 35 + + + + + + cfe06713-0b52-4945-a111-0895fa57c83a + MV3.101 Load 76 + + + + + + e2da336c-28a7-4530-9b32-053e4dc51cfc + MV3.101 Load 70 + + + + + + e776e743-102d-47cc-98b1-41c02fcc087b + MV3.101 Load 73 + + + + + + edf2ccef-97a3-4197-87cf-571655f2cd62 + MV3.101 Load 38 + + + + + + f3d2ecf1-4c7e-4cf2-b5d4-8a3c14622cf6 + MV3.101 Load 77 + + + + + + f46ac8b4-eb1f-45c2-9ae9-4f79d53ff0f2 + MV3.101 Load 80 + + + + + + f5ff961a-3056-45b7-82d6-7280a0220b08 + MV3.101 MV Load 4 + + + + + + f79a0290-7fb7-4a9d-b52a-b3bb5fadcfac + MV3.101 Load 54 + + + + + + 923864dd-c980-4796-af8f-bbd0bc1ca9d2 + MV3.101 MV Load 5 + + + + + + 9a5f9bc2-a753-401c-8c93-b36346247680 + MV3.101 Load 68 + + + + + + c240179c-f455-48bb-867c-bf6c72c1d58a + MV3.101 Load 11 + + + + + + d9aa66e2-a923-4695-a027-9c47fe453d21 + MV3.101 Load 88 + + + + + + b995f333-2825-44ce-a723-8b5f1cc90ba9 + MV3.101 Load 65 + + + + + + a9bcd737-c945-4573-83b3-466206af01ae + MV3.101 Load 55 + + + 416 + 68548979-03f1-f7a9-2f13-3d3bca952dc9 + patl for MV3.101 Line 89 + + + + + 358 + 847757c2-457e-e671-5dab-7b13ef30c37a + patl for MV3.101 loop_line 6 + + + + + 416 + a545cdde-ab24-196b-4feb-7373a7902611 + patl for MV3.101 Line 45 + + + + + 416 + 0c4b41cf-5479-1a27-d7e9-77cf9bed2a71 + patl for MV3.101 Line 78 + + + + + 471 + ebe7af55-4d6c-6ef0-8194-a2f9455b291f + patl for MV3.101 Line 18 + + + + + 416 + 6656b7bc-0268-565e-9bd6-ab1a333493f2 + patl for MV3.101 Line 23 + + + + + 358 + 2efabcd2-25da-6b73-7f52-9e40a993d1fd + patl for MV3.101 Line 121 + + + + + 535 + 3456811b-83a6-1477-fe8f-befc320b53ed + patl for MV3.101 Line 67 + + + + + 535 + e66a149c-49f5-9313-2cf4-c14b610945b5 + patl for MV3.101 Line 67 + + + + + 416 + 035f5c37-8e99-a8ce-658a-49289261514d + patl for MV3.101 loop_line 10 + + + + + 416 + 634da840-6052-9286-bf03-38141137be8b + patl for MV3.101 Line 82 + + + + + 471 + fd6b70d3-b56b-c46b-f820-d203748dc86b + patl for MV3.101 Line 18 + + + + + 416 + 0a3adaab-096f-3551-aa01-0c4d8d1485ea + patl for MV3.101 Line 23 + + + + + 358 + cf6b8458-be8a-5728-239a-2db825141aa6 + patl for MV3.101 Line 121 + + + + + 416 + abb5a10b-3509-283f-d3ca-ceee0ff2ff85 + patl for MV3.101 loop_line 10 + + + + + 416 + 119f5115-a525-06f6-c912-6072055bedca + patl for MV3.101 Line 82 + + + + + 535 + 674b42dd-5d73-7eea-e5de-5fb350c6fce9 + patl for MV3.101 Line 26 + + + + + 315 + d55630b0-808c-6ce3-37cb-4f3a5f9eb24e + patl for MV3.101 Line 119 + + + + + 315 + a6b0a44a-cc75-2438-944c-cab8c24b609c + patl for MV3.101 Line 119 + + + + + 358 + 5d69a5e1-4e7c-986d-7e1e-486377aef40f + patl for MV3.101 Line 133 + + + + + 535 + 010bfd23-d634-e744-dde6-88e7bb9885f9 + patl for MV3.101 Line 26 + + + + + 535 + ff3a3adc-1efc-5ecf-9ea7-f42bcf61d758 + patl for MV3.101 Line 75 + + + + + 535 + 7ac1dc27-8cd9-69e6-a463-8bc185124d85 + patl for MV3.101 Line 75 + + + + + 471 + ceb0d2f0-f810-e7c3-b19a-a2500261f717 + patl for MV3.101 Line 10 + + + + + 471 + acd16c9e-6303-f510-b8e9-a963e1b22060 + patl for MV3.101 Line 42 + + + + + 471 + 87c82b95-e5a6-703a-5f4e-efdb15328d5b + patl for MV3.101 Line 10 + + + + + 471 + 47408603-0023-e4ea-2388-743248d8fbff + patl for MV3.101 Line 42 + + + + + 358 + 32fb9598-ef55-3401-f421-351b2e4a1c9e + patl for MV3.101 Line 133 + + + + + 416 + 38a3d3e3-0432-85c9-d172-bc9031a7fc8e + patl for MV3.101 Line 105 + + + + + 535 + 9a7b11c6-b4fc-a7f5-01ee-ccd7e848117c + patl for MV3.101 BS-Feeder3_line + + + + + 315 + e96bc929-830c-b845-4371-07a9c0aa77b9 + patl for MV3.101 Line 111 + + + + + 535 + ab6f3295-5655-b2db-f531-af41b1c2e22a + patl for MV3.101 Line 12 + + + + + 416 + 5d776a79-bbd6-332d-b215-a572d1913730 + patl for MV3.101 loop_line 3 + + + + + 416 + be9648b8-d4fe-c4c5-bef6-1dce36345644 + patl for MV3.101 Line 105 + + + + + 315 + 8dd74490-ad99-575a-02bd-ff45fd14f728 + patl for MV3.101 Line 111 + + + + + 535 + 00ff4fb8-04e9-0cbe-e3db-835485f702c2 + patl for MV3.101 Line 12 + + + + + 416 + 664ee000-9c3e-29c3-8314-8434f8f374ad + patl for MV3.101 loop_line 3 + + + + + 416 + 1e20f755-4f23-55ea-c1e1-7d7a32d3b45f + patl for MV3.101 Line 102 + + + + + 535 + 3dba24b7-fb42-4baa-aa43-7047a8530058 + patl for MV3.101 BS-Feeder3_line + + + + + 535 + 4ee816a6-505d-99ab-1245-e01a0123ce10 + patl for MV3.101 loop_line 11 + + + + + 535 + 54f50303-0399-b504-5a53-0233c3103a69 + patl for MV3.101 loop_line 11 + + + + + 471 + 5ee3b900-5427-d077-e566-ca47f74410a8 + patl for MV3.101 Line 61 + + + + + 471 + cee2d815-6843-d21d-41f4-58eca1dc26f5 + patl for MV3.101 Line 61 + + + + + 471 + b744e643-9f6f-9832-1ed6-a1375cae5f2c + patl for MV3.101 Line 19 + + + + + 358 + 4b203954-fac1-4662-a412-282fbf5033de + patl for MV3.101 Line 132 + + + + + 535 + 11fed0b2-c970-cf90-c7be-683e2460ee1e + patl for MV3.101 Line 27 + + + + + 471 + ea160919-914e-63cb-aa42-67f4c4c415be + patl for MV3.101 Line 19 + + + + + 471 + e28a0662-72cf-566e-9ca0-bff30875bc55 + patl for MV3.101 Line 64 + + + + + 471 + cf41502a-3d7f-d6cb-0918-12764dba261b + patl for MV3.101 Line 44 + + + + + 471 + 2315943e-1854-e82f-c8be-9bf5a1520c16 + patl for MV3.101 Line 64 + + + + + 416 + 851864ca-8df7-75ed-cb58-cc3b434161a6 + patl for MV3.101 Line 102 + + + + + 358 + e54d7a5f-b93f-f5f8-5220-99de24aee592 + patl for MV3.101 Line 132 + + + + + 471 + 04bf654d-7ace-4e7a-f72b-42809b24eb50 + patl for MV3.101 Line 44 + + + + + 416 + 5ae68e46-2eae-c2bf-076f-8936ace0aa12 + patl for MV3.101 Line 33 + + + + + 535 + de6c1ace-fe15-f174-22cf-1cfeea1afdf8 + patl for MV3.101 Line 27 + + + + + 416 + cba57f31-73ec-a902-e015-524203f56e11 + patl for MV3.101 Line 33 + + + + + 535 + dca70216-a20e-29f9-b961-8d4c0c360d17 + patl for MV3.101 Line 76 + + + + + 471 + 5865b3f0-b3f7-1769-4d49-4fdbc33edcaa + patl for MV3.101 Line 9 + + + + + 535 + 6c6479bb-1aff-04af-312c-58cb9da2d391 + patl for MV3.101 Line 98 + + + + + 358 + 32b60c0a-71e8-bfc3-b7f3-226fb9825ab8 + patl for MV3.101 Line 129 + + + + + 471 + b7433510-4316-be0d-1563-fa8ec44e3c73 + patl for MV3.101 Line 58 + + + + + 471 + c9fae2a7-1b6e-f4ad-4870-7a050df7835f + patl for MV3.101 Line 17 + + + + + 535 + 13b4676e-70e0-81a3-d48f-1cd74e0ab052 + patl for MV3.101 Line 76 + + + + + 358 + 33179045-e52d-a1db-e7ec-7fe1f9a6562f + patl for MV3.101 Line 129 + + + + + 471 + 7eadc758-a656-3021-164d-c92424c71a89 + patl for MV3.101 Line 58 + + + + + 535 + 67983e75-3ebe-23ef-355d-14bf1b0245ae + patl for MV3.101 Line 98 + + + + + 471 + 79828215-4b9f-61a7-9e2d-63bab0024e98 + patl for MV3.101 Line 17 + + + + + 471 + edb134a3-5fb1-e75b-ed67-7036135ca9cf + patl for MV3.101 Line 9 + + + + + 535 + bb42e577-97c8-a002-e0ca-4d16ac6812e8 + patl for MV3.101 Line 95 + + + + + 535 + 702a44d8-4a00-5b6f-601a-dc4b61e68218 + patl for MV3.101 Line 1 + + + + + 535 + ee8b913f-ac06-bcfd-7a28-6a28032859c3 + patl for MV3.101 Line 95 + + + + + 315 + 39df22c1-d8ec-b0ba-7d5c-f9594ac4b25c + patl for MV3.101 Line 123 + + + + + 471 + 7544bbe4-b319-7257-5897-7edcd672d05d + patl for MV3.101 Line 60 + + + + + 358 + cf33a06a-0c83-f26e-b21f-9ec071799536 + patl for MV3.101 Line 131 + + + + + 416 + 1c6487d7-9b23-c5eb-8095-58d412320a01 + patl for MV3.101 Line 90 + + + + + 358 + 8593ca59-4298-6934-b3de-d8ccb8bf6584 + patl for MV3.101 Line 131 + + + + + 416 + e5d76626-0225-bc3c-d368-b9a17b62dd67 + patl for MV3.101 Line 90 + + + + + 315 + 3aa74c0f-fd4d-0c22-d686-276a668f43ab + patl for MV3.101 Line 123 + + + + + 471 + c3aec13b-74e3-9e96-c05c-99bf13b004ba + patl for MV3.101 Line 60 + + + + + 535 + a6b5c07a-52bf-7ff9-ebd8-ed4af3a5e126 + patl for MV3.101 Line 1 + + + + + 471 + 708de55a-e9d2-c748-b81b-c007b329b44a + patl for MV3.101 Line 8 + + + + + 471 + 2d4b18f6-5a8f-486c-5872-431bb6ff0ccf + patl for MV3.101 Line 8 + + + + + 416 + d0885a58-23d3-1b74-60a6-5fa9f59e657d + patl for MV3.101 Line 83 + + + + + 535 + c5200375-1559-0889-6259-d73db72dc22b + patl for MV3.101 Line 68 + + + + + 535 + 5d2773ba-eb6e-9cc4-c1c4-1ac3e244f7d9 + patl for MV3.101 Line 69 + + + + + 416 + 187d7c8c-e21c-bc6e-7dc9-89288cc387d5 + patl for MV3.101 Line 83 + + + + + 471 + 34a1eaff-78ab-12fe-c93f-ccb97749a3f9 + patl for MV3.101 Line 11 + + + + + 535 + 6e68c643-b867-5a89-6bde-eeab405c0312 + patl for MV3.101 Line 68 + + + + + 416 + 2923eb14-9383-01fa-4499-5e29e15c230a + patl for MV3.101 Line 92 + + + + + 535 + ba09fabf-5199-cf20-38e0-2d953070e556 + patl for MV3.101 Line 69 + + + + + 471 + 0045241c-9179-e12d-7c90-964f074b4b33 + patl for MV3.101 Line 11 + + + + + 416 + a2921fdd-c8a0-70fd-4849-a882ba465c09 + patl for MV3.101 Line 92 + + + + + 535 + 0b8b5c74-d835-87e2-b7a9-0b6a0dec62c0 + patl for MV3.101 Line 74 + + + + + 315 + d1aa0e14-4e1c-ff0d-e3a2-6995a94cb5c4 + patl for MV3.101 Line 122 + + + + + 315 + 30562875-8a5a-372b-8b34-b9032fb66177 + patl for MV3.101 Line 124 + + + + + 535 + 88c3a310-5cf4-c238-ac8b-f6c8cce37286 + patl for MV3.101 Line 28 + + + + + 315 + cee3297c-a62a-3124-c54e-a6bc47245472 + patl for MV3.101 Line 124 + + + + + 416 + a760844c-baa3-1cf7-5440-dafa30b16566 + patl for MV3.101 Line 101 + + + + + 416 + d9f5fec8-05a6-887f-98ad-4b42c4bca9bb + patl for MV3.101 Line 40 + + + + + 416 + 3313c29a-11b4-a5f3-fc7b-2003e11a6974 + patl for MV3.101 Line 40 + + + + + 416 + 4843a283-7f1c-1c00-0838-3ed68e17e31e + patl for MV3.101 Line 101 + + + + + 535 + f88cf389-4526-4453-7f43-02b994d3549f + patl for MV3.101 Line 28 + + + + + 416 + 93776c11-94ac-8f3d-9506-9af9573ade7a + patl for MV3.101 Line 24 + + + + + 416 + 107e5750-1f4f-9893-251d-8668f5388902 + patl for MV3.101 Line 36 + + + + + 358 + 53144086-6973-157b-4522-f79ba24db4e4 + patl for MV3.101 Line 127 + + + + + 535 + 5003f821-695a-dd56-6e38-e0b569632aed + patl for MV3.101 Line 74 + + + + + 416 + 2b2dc39d-0ca7-656e-5af3-90a129be7d43 + patl for MV3.101 Line 36 + + + + + 535 + 74de4c2b-5507-e581-b05e-9292c6ad99f5 + patl for MV3.101 Line 50 + + + + + 358 + 32d369fc-e792-224c-d2da-d9bceea5230f + patl for MV3.101 Line 7 + + + + + 535 + 38e26fb2-d2d3-3f26-7402-76c1f0118210 + patl for MV3.101 Line 50 + + + + + 535 + 8779a028-298a-42d4-9c87-b22f7340df15 + patl for MV3.101 Line 51 + + + + + 315 + f0e39b7f-3f27-6b46-3aed-81918d51c1e2 + patl for MV3.101 Line 118 + + + + + 358 + 6dfca2da-ace5-3780-3b8f-7740655e46b1 + patl for MV3.101 Line 127 + + + + + 315 + 1da2478d-c2fe-4b78-9c4e-815d2b34f862 + patl for MV3.101 Line 118 + + + + + 416 + 259ef640-939c-cf9f-bd94-48ead3865f4f + patl for MV3.101 Line 24 + + + + + 315 + 8aee9870-24ea-cc97-d3df-b6eacd1e0de1 + patl for MV3.101 Line 122 + + + + + 535 + fd575539-57e8-11a2-e62e-90b141296688 + patl for MV3.101 Line 51 + + + + + 416 + 3e589fe0-154a-fd34-8146-ecebb35b3b20 + patl for MV3.101 Line 91 + + + + + 416 + d7fa1959-ae0e-e212-d75e-f29f51d40147 + patl for MV3.101 Line 48 + + + + + 416 + d7aa825a-8910-30f2-7e4c-e99f65bcccc4 + patl for MV3.101 Line 31 + + + + + 358 + 571d6d8d-1667-b84f-e699-c453ff4c88a0 + patl for MV3.101 Line 7 + + + + + 416 + 2ccfe0b5-a577-b705-ce3d-441d8d459470 + patl for MV3.101 Line 31 + + + + + 416 + b08542cb-d3b1-ee95-e2e3-e8a48fe366dd + patl for MV3.101 Line 93 + + + + + 416 + 49e558ee-a2c4-0d2a-6211-3535042c6114 + patl for MV3.101 Line 48 + + + + + 416 + ca50bfd9-909c-cd58-9792-b7e869f59bc6 + patl for MV3.101 Line 91 + + + + + 471 + b5535597-9d55-cf5a-8267-4d3b3ee46c12 + patl for MV3.101 Line 20 + + + + + 535 + 5c8495fb-2584-8385-1bd6-9254fcf862af + patl for MV3.101 Line 2 + + + + + 535 + 3f66c908-faaa-cd50-81a3-1ec2a0942ab0 + patl for MV3.101 Line 2 + + + + + 358 + f349461a-c46d-7eeb-761e-d323e0ca9131 + patl for MV3.101 Line 126 + + + + + 416 + f2447f27-e76a-06f8-850f-118d4519c222 + patl for MV3.101 Line 106 + + + + + 471 + 77a71c55-c697-3251-5de1-041ef5027b91 + patl for MV3.101 Line 20 + + + + + 416 + 6555cbc6-a206-39e0-e5c1-691b91e263d4 + patl for MV3.101 Line 93 + + + + + 358 + 7d61c28f-1680-9ba0-b013-373690c0ae7f + patl for MV3.101 Line 126 + + + + + 416 + 958bf28d-3f35-fcb1-146c-0a25045fc160 + patl for MV3.101 Line 103 + + + + + 416 + 62d175f1-258a-698e-78c7-0dff460de082 + patl for MV3.101 Line 103 + + + + + 416 + b0730628-2c77-c33c-666c-08667289de73 + patl for MV3.101 Line 106 + + + + + 471 + 718f7407-b369-4775-ba3e-0f02bba9d4e9 + patl for MV3.101 Line 84 + + + + + 471 + 1c7d63bf-ad75-e1f4-8dba-1a7e5a6de7f2 + patl for MV3.101 Line 53 + + + + + 471 + 842d0998-473c-c11a-c297-050874c48956 + patl for MV3.101 Line 53 + + + + + 471 + 1675f393-c222-b714-8fe2-957126e49177 + patl for MV3.101 Line 84 + + + + + 416 + 10c4a445-823e-729b-0591-a1475a6562dd + patl for MV3.101 Line 35 + + + + + 315 + 39bb7b74-4b8f-3203-bad9-93bacf6ffe9e + patl for MV3.101 Line 114 + + + + + 358 + 02bc89d6-fb28-2d88-f45e-582fba000934 + patl for MV3.101 Line 130 + + + + + 315 + d5d48df7-df43-9034-5288-a14c4c984194 + patl for MV3.101 Line 114 + + + + + 358 + da82d3f0-f1ef-5171-aaf5-58cde4002a47 + patl for MV3.101 Line 130 + + + + + 416 + b3c3d100-a27c-2b0c-14ca-935cb1ecd66b + patl for MV3.101 Line 35 + + + + + 358 + f5d011f3-8481-9f7b-eb9c-81808090bed0 + patl for MV3.101 Line 128 + + + + + 358 + da944c6c-8afb-7646-10f8-28e088447a66 + patl for MV3.101 Line 128 + + + + + 471 + 4c1ccd33-529e-0a97-20ad-b637a2f73002 + patl for MV3.101 Line 43 + + + + + 535 + b8082cd3-5ff6-4687-db5b-6503cefdbece + patl for MV3.101 BS-Feeder4_line + + + + + 535 + a31e3c1e-34e0-17e8-4d8d-b92e2f62b7ff + patl for MV3.101 BS-Feeder4_line + + + + + 471 + 21c21280-1064-00bd-f475-928896722de9 + patl for MV3.101 Line 43 + + + + + 416 + 07c6e876-99a5-5f19-c50f-b01311c389a4 + patl for MV3.101 Line 38 + + + + + 416 + 1922b3b8-d2f3-a633-0f34-d855c3032274 + patl for MV3.101 Line 80 + + + + + 416 + 014591e2-50f5-8de0-6efc-a114258aa3c3 + patl for MV3.101 Line 80 + + + + + 471 + 7c986399-4846-dfe2-c2c9-9e2c6f68b569 + patl for MV3.101 Line 41 + + + + + 471 + 7fa60de9-fd2c-1329-f6ff-d4d4378205d9 + patl for MV3.101 Line 41 + + + + + 416 + 70fa6f17-c112-bec0-6989-e5cbb22af2d2 + patl for MV3.101 Line 38 + + + + + 471 + 10dc6e17-5dca-a9dc-e057-9003af4fa5bf + patl for MV3.101 Line 66 + + + + + 535 + 03c86e46-b200-db79-e096-e2bad97b47d6 + patl for MV3.101 Line 29 + + + + + 471 + 14965a6c-8abb-c2a7-214f-4c3eb091af6e + patl for MV3.101 Line 62 + + + + + 471 + 9ff32d55-dbb0-a082-0d7e-c4ccb0fd8c1d + patl for MV3.101 Line 66 + + + + + 471 + 16434079-af02-2fb2-b3c6-9e96ec0a8c0c + patl for MV3.101 Line 65 + + + + + 471 + ceda5ff6-bb4e-c5a7-e62a-efbd8e7d2c20 + patl for MV3.101 Line 65 + + + + + 471 + e91807b1-2b60-9d30-5e76-c5e24392e598 + patl for MV3.101 Line 62 + + + + + 535 + eec2107e-ab88-ad7c-03e0-e463650d6ff9 + patl for MV3.101 Line 29 + + + + + 330.664 + ce02c5e0-9844-7e9e-bf99-8e3926e47b41 + patl for HV1-MV3.101-Trafo2 + + + + + 358 + c90dae7f-0560-fa76-ea77-fd35ad887e50 + patl for MV3.101 Line 120 + + + + + 3637.31 + 0d57bc7e-bf09-6a33-c44c-2b3915a21a7a + patl for HV1-MV3.101-Trafo2 + + + + + 416 + c2cc83b7-c206-854b-ee4e-0c2b42ed63fa + patl for MV3.101 Line 47 + + + + + 358 + ddf006a0-74c9-d68c-461a-eb21bba63ab5 + patl for MV3.101 Line 120 + + + + + 471 + d40acf2e-2f3e-7537-4d0d-746ef69697b7 + patl for MV3.101 Line 16 + + + + + 416 + 5239afd7-8ad6-1d83-aa30-89d213b2d04d + patl for MV3.101 Line 47 + + + + + 471 + ff6ed00c-55c8-08df-37a0-40d77e357a1b + patl for MV3.101 Line 16 + + + + + 315 + 1e9e05c8-3ee0-547a-55ca-60e98e82e72a + patl for MV3.101 Line 113 + + + + + 535 + 49e91796-fa20-0480-9c96-aa772dfc58ad + patl for MV3.101 Line 30 + + + + + 315 + 2ff2880f-21b3-c6ca-dac4-e3f9215bb4ee + patl for MV3.101 Line 113 + + + + + 535 + b0a53a3a-fa68-ff52-8459-a4971c4cf448 + patl for MV3.101 Line 30 + + + + + 315 + 636ee73b-3d2c-5526-0fe4-5a8b51e6cff0 + patl for MV3.101 Line 125 + + + + + 535 + bfcc7ec8-b580-3d75-d277-ad53ffc1139a + patl for MV3.101 Line 70 + + + + + 416 + a94b5a7f-2ec8-fb58-8aa1-28e9f9e49780 + patl for MV3.101 Line 100 + + + + + 416 + 2bb68204-7b5d-eab7-dd58-37dd3c308ebf + patl for MV3.101 Reserve line + + + + + 535 + f4850999-51ef-abd2-2f1d-db0a943506e6 + patl for MV3.101 Line 70 + + + + + 416 + 31987ad9-e616-71e1-a967-281e6487ddbd + patl for MV3.101 Line 39 + + + + + 416 + e270ee05-5808-3b5b-63dc-3242685bbe16 + patl for MV3.101 Reserve line + + + + + 416 + 43018fe6-5ee1-d2eb-671c-1badd29cca69 + patl for MV3.101 Line 100 + + + + + 416 + 76bf4fb4-e64b-bdb4-3b15-10cd1d4b80c4 + patl for MV3.101 Line 39 + + + + + 535 + 3d21b0ba-9923-cbbf-50a2-9b44ce6308f1 + patl for MV3.101 Line 97 + + + + + 315 + cfbb9031-4aef-2281-c2e5-fef033791efc + patl for MV3.101 Line 125 + + + + + 535 + 20f56e81-c123-b508-580d-a2750e4196e3 + patl for MV3.101 Line 49 + + + + + 535 + 9f7023d1-7ab9-0ab0-5a74-f2579c98b103 + patl for MV3.101 Line 49 + + + + + 358 + 4319fa20-842b-a7b3-30e8-955f821048bb + patl for MV3.101 loop_line 1 + + + + + 315 + 74dc14d1-b4a6-d470-c44f-5d975ef60933 + patl for MV3.101 Line 117 + + + + + 471 + abe10340-f30d-ccdf-1783-b7752152a60d + patl for MV3.101 Line 87 + + + + + 535 + fc0f4e68-60d3-2ce7-9ca3-98b68bf46491 + patl for MV3.101 Line 97 + + + + + 358 + 2c996ac6-0e8a-b9ef-ed1f-32dd021a89a8 + patl for MV3.101 loop_line 1 + + + + + 416 + db3cb7ed-4469-7911-0d8d-1ea51ed80771 + patl for MV3.101 Line 77 + + + + + 416 + 8ca375f4-187f-91f8-eaa4-4e5cfe333c78 + patl for MV3.101 Line 108 + + + + + 416 + 4105cb24-a0d3-31b3-9855-80f22a61ba20 + patl for MV3.101 Line 77 + + + + + 315 + f3dc88bb-5644-517a-b808-e365923f77a0 + patl for MV3.101 Line 117 + + + + + 471 + 8fea6af6-cd04-98a1-8eff-6f5cb2698ce0 + patl for MV3.101 Line 59 + + + + + 471 + 511d1511-b5c7-662f-7556-07d2459cdc25 + patl for MV3.101 Line 87 + + + + + 535 + 1398142a-d3d2-94c6-6b50-c0f4b2dc3fa0 + patl for MV3.101 Line 96 + + + + + 416 + 8bbcf180-a02c-20a1-e9ed-455a94a0c064 + patl for MV3.101 Line 32 + + + + + 471 + 0d20c496-a395-9066-91f7-b5baa07f5a09 + patl for MV3.101 Line 59 + + + + + 535 + 651555d1-86a3-f362-c3e1-d8e19917738e + patl for MV3.101 Line 15 + + + + + 416 + ff29cb18-dadb-103d-4d8c-3328a0e127e0 + patl for MV3.101 Line 108 + + + + + 535 + 94420f64-0e32-b303-11d1-846912a14df6 + patl for MV3.101 Line 73 + + + + + 535 + ddea4dfb-7400-f38e-5bc0-03d4f2a85356 + patl for MV3.101 Line 96 + + + + + 416 + 70b065db-345e-c65f-f75e-0d51dcb9dba4 + patl for MV3.101 loop_line 4 + + + + + 535 + 299f0474-8fdc-38a8-d567-4844c65306c0 + patl for MV3.101 Line 73 + + + + + 358 + b853129b-247e-6821-6e7d-3e3eecb88ee7 + patl for MV3.101 Line 110 + + + + + 535 + 1115e9ae-22e5-44ac-b30d-6c9b18b035d6 + patl for MV3.101 Line 15 + + + + + 416 + 95d855e4-d410-4f96-9b64-a9cf35bf8e8e + patl for MV3.101 Line 32 + + + + + 358 + d6e3ba4e-6490-bd0c-9579-7a5ab0370a0b + patl for MV3.101 Line 110 + + + + + 471 + be029a05-a3b1-e01e-f65c-50653a3f0fdc + patl for MV3.101 loop_line 9 + + + + + 416 + 17aec372-1f90-5d11-861b-db0356b6505e + patl for MV3.101 loop_line 2 + + + + + 535 + 9cf6cf25-6163-f658-8875-509e6375b1a1 + patl for MV3.101 Line 3 + + + + + 416 + 794fe990-496e-b5ba-2ad9-674b95de173e + patl for MV3.101 Line 81 + + + + + 535 + 24acd60a-3048-988b-93f0-9ba357dfccec + patl for MV3.101 Line 3 + + + + + 416 + d38404a4-ef0f-b7c3-83fd-599860f0f836 + patl for MV3.101 loop_line 4 + + + + + 416 + 92b05c9e-7d97-a840-9029-6bdffb100815 + patl for MV3.101 Line 34 + + + + + 471 + d76bfda7-959c-a3c1-ca7b-cecd005ff23a + patl for MV3.101 loop_line 9 + + + + + 416 + 04a61a67-fa0e-27b7-49af-9322702ced97 + patl for MV3.101 loop_line 2 + + + + + 416 + 3d826c88-ef02-0e29-a942-04cae108272a + patl for MV3.101 Line 81 + + + + + 416 + 8740ee69-b0cb-38fc-0dd1-15135a5be140 + patl for MV3.101 Line 79 + + + + + 416 + 75e8dcf4-c191-8355-2001-50f71e0ecaf5 + patl for MV3.101 Line 34 + + + + + 471 + 77382549-5f6d-2c8a-d689-914cf9cfe6a9 + patl for MV3.101 Line 86 + + + + + 416 + a4ed313a-5619-23e9-8db6-c67ad1aa07d6 + patl for MV3.101 Line 79 + + + + + 535 + 38ea6064-1d4a-8c92-23ab-a2850bd3bbb9 + patl for MV3.101 Line 14 + + + + + 358 + fac8d782-507a-c874-ec07-59ee057f4272 + patl for MV3.101 Line 115 + + + + + 358 + 639038a7-2f35-259d-3bba-7d0ab3188210 + patl for MV3.101 Line 115 + + + + + 471 + 32b3cf0f-f770-cb07-30db-5d5eada2c08c + patl for MV3.101 Line 86 + + + + + 535 + db814b25-11bc-15f5-2540-4f702cff24f1 + patl for MV3.101 Line 14 + + + + + 358 + f3134f17-781d-a5c5-ed89-73ddbc53e7e9 + patl for MV3.101 Line 5 + + + + + 471 + 234ebf55-9691-d611-5e85-133cacf228d8 + patl for MV3.101 Line 55 + + + + + 471 + 62e07eaf-b6d2-a07c-35e5-c68e09aa3914 + patl for MV3.101 Line 55 + + + + + 416 + ea0946ab-4a59-9fb9-f045-01d40faa61fa + patl for MV3.101 Line 21 + + + + + 471 + 1ca49901-7048-1aa9-6f3d-a30b1a49d485 + patl for MV3.101 Line 54 + + + + + 315 + e6e85bfc-e1d9-39cc-05f2-b7e20fd05b70 + patl for MV3.101 Line 112 + + + + + 416 + 292f4f80-c067-c3a3-1223-daa6a1562bb7 + patl for MV3.101 Line 21 + + + + + 416 + 410fa6bc-7763-5de4-63ed-e1de9183bb51 + patl for MV3.101 Line 46 + + + + + 535 + 61a8b5cf-b562-6507-28cf-6258ac1c3193 + patl for MV3.101 Line 52 + + + + + 535 + 670ffe3a-b822-b418-2fa8-25eedd64c0a2 + patl for MV3.101 Line 52 + + + + + 416 + 429a29d2-79f8-7971-6126-ba5b20ab30fe + patl for MV3.101 Line 107 + + + + + 358 + 97064177-a4d7-4f47-81ad-972ac156a7c1 + patl for MV3.101 Line 5 + + + + + 416 + ef6bee5c-c0da-7c60-7836-94cd33d02ff4 + patl for MV3.101 Line 107 + + + + + 416 + 6446ace5-6867-c604-ac4e-6e514707f53b + patl for MV3.101 loop_line 8 + + + + + 315 + 33dd4a3e-2904-e81f-075a-4d0d24eb2b11 + patl for MV3.101 Line 112 + + + + + 3637.31 + 64d20b69-b224-ba96-186b-c6b23a694c3a + patl for HV1-MV3.101-Trafo1 + + + + + 416 + 62f4cdf4-c204-9c09-4cb0-17aaae8b4a0e + patl for MV3.101 Line 46 + + + + + 416 + 59c461a6-778a-9ea8-2d75-158bd08a1656 + patl for MV3.101 loop_line 5 + + + + + 330.664 + 713ef67a-bf48-2eb6-8999-b6cd4840991a + patl for HV1-MV3.101-Trafo1 + + + + + 358 + 03924d09-c8b3-db02-2cff-50d7b3ab2e86 + patl for MV3.101 Line 6 + + + + + 416 + 3f0eed97-897e-0fa6-0654-9c754ab2a430 + patl for MV3.101 Line 94 + + + + + 535 + 83837f6a-494a-699f-28d9-2e13ecfb3a63 + patl for MV3.101 Line 72 + + + + + 471 + 28eab3fb-e805-d27a-cd77-888ae49ca354 + patl for MV3.101 Line 54 + + + + + 535 + 75e1401e-304c-76a4-1a78-2d01e913532b + patl for MV3.101 Line 72 + + + + + 416 + dc64f61e-6621-99f2-fd99-ed75435bb71d + patl for MV3.101 Line 94 + + + + + 416 + 62e78154-55cb-7841-d4d3-9ee4d4f0bb45 + patl for MV3.101 loop_line 8 + + + + + 358 + 2acb159c-b9d1-2dec-409c-b5fcdfe0ea29 + patl for MV3.101 Line 6 + + + + + 535 + 6fc65f3c-7bcb-25a4-0b2d-573cb17ca764 + patl for MV3.101 Line 4 + + + + + 416 + 0960d816-4eea-40a0-0cce-6294b2a7d70b + patl for MV3.101 loop_line 5 + + + + + 358 + 23c332a2-0e01-5976-3950-ebcceb80f012 + patl for MV3.101 Line 109 + + + + + 358 + 1cae7fa1-eb9b-284a-5e07-1610d8030292 + patl for MV3.101 Line 109 + + + + + 535 + 43463522-16e5-5967-1ea8-30c0dfc590cd + patl for MV3.101 Line 4 + + + + + 416 + 04dee7f8-7fcf-046c-b531-695cdeff2e7c + patl for MV3.101 Line 37 + + + + + 416 + 253db37e-088a-c262-581a-abbb50497708 + patl for MV3.101 Line 22 + + + + + 416 + 82d2372a-af56-9daf-e4a5-763d60a1e8cc + patl for MV3.101 Line 22 + + + + + 416 + 387e39e4-e3c0-21fa-d3aa-4a50cfa64526 + patl for MV3.101 Line 45 + + + + + 471 + fa7a914f-2af9-75a9-ac08-b7f4ba4b45d2 + patl for MV3.101 Line 63 + + + + + 471 + 606090f2-de73-01a9-ac75-30c889a83a01 + patl for MV3.101 Line 63 + + + + + 416 + 144a1fe6-f719-39dc-1b73-2eed38e2a7eb + patl for MV3.101 Line 99 + + + + + 416 + 24e8fc8f-9ffe-01f3-f63d-4d2083cf8ece + patl for MV3.101 Line 37 + + + + + 416 + c77de751-ad64-edf5-c17b-d0d230c7c69f + patl for MV3.101 Line 99 + + + + + 416 + c36f7c32-a4e3-7f65-e061-931129b7511e + patl for MV3.101 Line 88 + + + + + 471 + fb019aa3-c842-4efd-9705-0210d8b877fe + patl for MV3.101 Line 57 + + + + + 416 + 2d984b2f-93e7-f5d1-3399-55a6a20ee8ee + patl for MV3.101 Line 88 + + + + + 471 + 397dca8b-28da-58a9-c186-5668b0fb33a0 + patl for MV3.101 Line 57 + + + + + 416 + 727c5aea-7498-c97e-3801-344408a7e282 + patl for MV3.101 Line 104 + + + + + 416 + a18477ea-701f-01cf-8a5c-255badb9b806 + patl for MV3.101 Line 104 + + + + + 471 + 889c9789-4f27-cfe2-1b19-db242a8c5d42 + patl for MV3.101 Line 85 + + + + + 471 + 6e0f709f-7044-af0e-02bf-bddadb93fb7b + patl for MV3.101 Line 56 + + + + + 535 + 8d33ffef-2ea4-02d5-e3ab-2e9a6ffe54fa + patl for MV3.101 Line 13 + + + + + 535 + ed7eba68-91fc-3a51-ca2b-c94c274c9fdf + patl for MV3.101 Line 13 + + + + + 471 + 3a27ac81-3e5c-c9a3-dad0-39c17756bb08 + patl for MV3.101 Line 56 + + + + + 471 + 3e2d050b-88c1-dd90-28ad-4486fb66ff6d + patl for MV3.101 Line 85 + + + + + 416 + 75734baf-ad4c-8334-98de-af7f88eac938 + patl for MV3.101 loop_line 7 + + + + + 535 + 3630a4f4-9d96-7993-85db-99b797f45a45 + patl for MV3.101 Line 71 + + + + + 416 + 9ff0a5ab-2c32-1e4b-9eca-08fc26ab0e2a + patl for MV3.101 loop_line 7 + + + + + 416 + bfc644ad-b1bc-ef76-cf24-5e4509c440af + patl for MV3.101 Line 25 + + + + + 416 + 1db0907a-e0ec-3cc1-62d4-12351eb88838 + patl for MV3.101 Line 25 + + + + + 535 + 83a224a9-2a47-960b-67e9-8204b9147458 + patl for MV3.101 Line 71 + + + + + 416 + c3218948-ec17-8527-5754-bb1824d615d4 + patl for MV3.101 Line 89 + + + + + 358 + da48d8e6-60b6-4cff-c344-5aeae956030d + patl for MV3.101 Line 116 + + + + + 358 + f9c475ee-6808-a52a-5c73-26e1e2d86ae5 + patl for MV3.101 Line 116 + + + + + 358 + 6740eb4a-3241-bb4c-fea1-7f036bfea07c + patl for MV3.101 loop_line 6 + + + + + 416 + 364fca36-ac7b-33f2-ace2-c63789f38e5b + patl for MV3.101 Line 78 + + + + + + 738a86f3-4efd-4990-6cc5-23703a8bd620 + MV3.101 Bus 122 + + + + 8e937d9a-23ed-17d3-93f5-4812252d5ef6 + MV3.101 Bus 102 + + + + cc9e3505-0275-122e-dfb0-40455cf4471d + MV3.101 busbar1A + + + + 1353d5ca-6772-fab0-5d77-7999c54246d6 + MV3.101 BS busbar1C + + + + 5d19946d-fd8a-3980-fbd4-4622227bc7ab + MV3.101 Bus 48 + + + + 9a2976a4-1ebf-ca61-001d-2bcb6e37f5fc + MV3.101 Bus 40 + + + + 8a434f6d-c0ab-9299-fea2-322552458fb7 + MV3.101 Bus 45 + + + + 216f8e0e-f904-6436-a3b5-6b88c4c47ed3 + MV3.101 Bus 27 + + + + cdb6eaba-4dac-0ccb-af68-577f713de24c + MV3.101 Bus 86 + + + + f86f6351-fa22-4cd2-daa3-97b9f7789da3 + MV3.101 Bus 82 + + + + c883fc36-16d0-a0fd-e07c-2a1a81b14b5c + MV3.101 Bus 32 + + + + a59a7752-2107-d5c3-c0d0-6c0a5bdbf8cf + MV3.101 Bus 26 + + + + a78fe215-77cc-d77b-82da-928d57f9b64d + MV3.101 Bus 11 + + + + 2003fec4-4314-71c6-4d44-b012cebdad9e + MV3.101 Bus 58 + + + + e2f6cf39-25ed-f200-e96e-1f98a6736c73 + MV3.101 Bus 121 + + + + 698729d4-7c73-a924-aacc-51d06cb5e909 + MV3.101 Bus 100 + + + + c8173fdc-538e-0583-83b2-67c6486a1ab8 + MV3.101 Bus 97 + + + + 7cd8d5cb-82eb-2a8b-4a0f-82f57568bac5 + MV3.101 Bus 135 + + + + 496bd271-43c6-9e08-0aca-654e2e0ad6d4 + MV3.101 Bus 99 + + + + 4575e8a2-82a5-0c2c-d397-a305ccfdaa67 + MV3.101 Bus 80 + + + + 0676fe9d-c314-812c-5c3a-8957f2e69139 + MV3.101 Bus 124 + + + + cc1bc810-8951-607d-36bd-4e980e614ad0 + MV3.101 Bus 140 + + + + 9a46efca-f2aa-de01-9be7-0ab9d3c7f94d + MV3.101 Bus 83 + + + + 9fa73bfd-b236-f5f2-751f-503ab076a895 + MV3.101 Bus 132 + + + + fcc1f8ab-5050-6542-6970-5dd5cd1071fd + MV3.101 Bus 57 + + + + 68990147-1b4f-7fd8-6a68-86f8021873da + MV3.101 Bus 125 + + + + e3861bf2-31ad-7a3a-aade-28998b919d71 + MV3.101 Bus 112 + + + + 91e7eef0-1a5e-a54f-ea32-8f655653bc2c + MV3.101 Bus 51 + + + + 8a0f599b-08a3-eb57-a681-886bf2231c69 + MV3.101 Bus 35 + + + + 7f3b6ec0-d223-2530-3bda-209cf4b8e074 + MV3.101 Bus 31 + + + + 4022137f-5e80-a642-b920-ba2e5426f7ab + MV3.101 Bus 34 + + + + da9ebbb8-9c83-b12c-ff32-48777704eedf + MV3.101 Bus 138 + + + + db5a4f51-55ed-9ad4-39db-5e90cd8e77d2 + MV3.101 Bus 23 + + + + 93a6167e-84d8-4b18-3eb5-bae378bac290 + MV3.101 Bus 39 + + + + 58457082-22da-78cd-ecbe-cc2154bbc08b + MV3.101 Bus 12 + + + + 742909e0-e6b2-1a42-6499-e1dde74f20c7 + MV3.101 BS busbar1B + + + + a65ae067-3e5c-e823-0ccb-1a64bc18364e + MV3.101 Bus 114 + + + + 2fba9afc-ab63-bb8b-1ea6-1be8c6e784f5 + MV3.101 Bus 141 + + + + bc79619f-5d1c-b404-010f-e1cabdbf433f + MV3.101 Bus 68 + + + + 2791dab6-805f-698a-e0a0-6a24e694d550 + HV1 Bus 25 + + + + 30e1b0d7-87e8-3b9c-a777-3112634f4b90 + MV3.101 Bus 120 + + + + 24173c72-814d-4833-ba70-150bc24db40f + MV3.101 busbar2A + + + + 25aa04be-e7a6-81d1-3c90-6dd70a93ab67 + MV3.101 Bus 25 + + + + 71cd900b-22fe-6e0d-1e54-f0aa943a6b42 + MV3.101 Bus 92 + + + + a712b943-b0f7-2ed6-d5c2-666d898becc7 + MV3.101 Bus 133 + + + + 428d8181-a885-a107-fd8d-0b0ed9912234 + MV3.101 BS busbar1A + + + + b34430cb-d98e-3789-34ad-3e31ab6a5747 + MV3.101 Bus 24 + + + + 52c287b7-d0dc-64c3-481a-feebe46bf7d8 + MV3.101 Bus 95 + + + + d5a7ef0e-24a4-4bdd-ac77-8a96bbdf4106 + MV3.101 Bus 59 + + + + 1c08b14d-9574-bdcf-7215-37b8262ec65a + MV3.101 Bus 90 + + + + 7e5e74c2-afe3-ec6e-48bc-790bdadb0940 + MV3.101 Bus 66 + + + + 0b235c60-ef5a-caae-90cc-51d974285804 + MV3.101 Bus 143 + + + + dc790200-b36a-194b-a1a6-e1181e500993 + MV3.101 Bus 36 + + + + f9ac8018-5f71-d097-f3d4-1c201dcf9f01 + MV3.101 Bus 104 + + + + a8de6c97-d93b-0f60-6015-037118e5d19d + MV3.101 Bus 72 + + + + 392beab5-f5b8-182d-fe9c-1b3a72e938d2 + MV3.101 Bus 56 + + + + 6f7aa9e7-c3d0-e45b-e0eb-b36fca9ecc72 + MV3.101 Bus 13 + + + + da409541-0772-fa5e-519c-efca34cda195 + MV3.101 Bus 106 + + + + d11098ac-58fe-3a7e-39db-a8966b9fc7e8 + MV3.101 Bus 47 + + + + e61b4ea9-2975-2b18-2a51-79800efd0a1b + MV3.101 Bus 65 + + + + 2ba2741d-7599-a570-f4e5-857046d96ce8 + MV3.101 Bus 44 + + + + e189598e-a43a-b718-2d9d-d612d6326b53 + MV3.101 Bus 78 + + + + c8a011fa-a243-a66c-0aef-c63eff6ade24 + MV3.101 Bus 129 + + + + fe9e8a42-9825-3135-8e52-3edec21df0d2 + MV3.101 Bus 76 + + + + baaa668e-1ca2-d2a6-68e9-6b9371794880 + MV3.101 Bus 84 + + + + 9944e00b-953b-67de-2425-2e870405e572 + MV3.101 Bus 20 + + + + 37f92665-7ce1-922f-3dd6-9f23a21847c3 + MV3.101 Bus 37 + + + + 17f6de20-a733-3481-4662-f00b93429793 + MV3.101 Bus 128 + + + + d56642bb-588d-c8c4-1955-27000c11f7f7 + MV3.101 Bus 16 + + + + 7890739e-e2dc-6b42-3121-09216b25098e + MV3.101 Bus 49 + + + + 398c030a-3a49-2e9e-5482-124a9d82ee99 + MV3.101 Bus 98 + + + + 257c474e-db5b-1b30-e17c-a8cd21168ab3 + MV3.101 Bus 73 + + + + 67e5c109-bf9e-e6be-2a0d-9623282497d1 + MV3.101 Bus 113 + + + + 21fe2650-b75e-39e6-8965-58ea687fcdc5 + MV3.101 Bus 67 + + + + c82d4262-d36d-04d4-e49e-e2b2480c0565 + MV3.101 Bus 108 + + + + fe108591-54c9-acb6-0634-f5fdb3d0811b + MV3.101 Bus 79 + + + + 3504a4c2-7867-f246-afec-9a1e9fce414f + MV3.101 Bus 123 + + + + 6106d42f-efbb-36de-e320-b9d950b8fe1c + MV3.101 Bus 21 + + + + ede08803-42e6-6c8b-7a1c-754b59b0731c + MV3.101 Bus 60 + + + + 8a1ece07-f6dd-be8f-f603-8744e8267fb0 + MV3.101 Bus 52 + + + + 5cf420a3-cb56-c7e3-cfdf-cceb771ee798 + MV3.101 Bus 64 + + + + 96793c96-6b18-4ecf-a2e3-b17997eb7730 + MV3.101 Bus 105 + + + + 32b21a70-a414-0262-51da-3410b53bba70 + MV3.101 Bus 111 + + + + 861dcc4f-0ad9-ebf3-fcbc-73295fe50272 + MV3.101 busbar2B + + + + dcf7f1a6-7a20-8cc8-60a2-41296f1db6e7 + MV3.101 Bus 18 + + + + 3f5340ba-706a-8f26-9b76-c2d711a072ef + MV3.101 busbar1B + + + + 274f7524-9dfa-e67c-f747-28c0dd5013af + MV3.101 Bus 134 + + + + 411a7538-8861-ff58-4bae-85ffc6052b11 + MV3.101 Bus 117 + + + + b316ad67-4757-542a-efa9-ccb501fa0f9d + MV3.101 Bus 127 + + + + 900b4313-1427-f56d-3aa0-0634c1654cbe + MV3.101 Bus 126 + + + + 9feb3442-d290-22fe-d8e9-c356c81cb700 + MV3.101 Bus 50 + + + + cecc599c-8259-03f7-cb81-f258a0978a53 + MV3.101 Bus 33 + + + + 0a7ff38b-a968-200e-5381-7b4444f9182d + MV3.101 Bus 131 + + + + 7d567811-65f7-dba4-9292-d7f9a1b82627 + MV3.101 Bus 136 + + + + 86446e3b-a038-89a9-9c36-f1936543ac63 + MV3.101 Bus 30 + + + + 85c9068e-abea-84da-a779-8119b8a8eaca + MV3.101 Bus 14 + + + + a47242e3-fd2b-0644-f939-fee9c262de86 + MV3.101 Bus 71 + + + + 2f6e9402-dd71-bf78-016a-c104443eed27 + MV3.101 Bus 74 + + + + 4dad0264-ee43-6bd9-3aaf-f9f3305a4331 + MV3.101 Bus 116 + + + + 2837f35a-7bb2-6f7f-c049-2627654e8a80 + MV3.101 Bus 118 + + + + 8e6e062a-9f3f-c40f-42c4-12351350e3c7 + MV3.101 Bus 69 + + + + 8218ffcc-d5d8-cc64-c332-c3f731871af8 + MV3.101 Bus 107 + + + + cd59c981-6595-e04f-d200-53d88c60724f + MV3.101 Bus 96 + + + + aed2479b-f7ea-28cd-285d-d9ca8a541ffa + MV3.101 Bus 139 + + + + cfca33e7-6158-f4d7-fca6-5676f88360aa + MV3.101 Bus 75 + + + + fb56e2f0-585c-e471-734c-e39be4de9077 + MV3.101 Bus 115 + + + + 93b1287f-ffd4-4e5d-cb3f-12890943c1bd + MV3.101 Bus 103 + + + + 2983ccd2-e2de-eb72-ae50-f5b62877232e + MV3.101 Bus 85 + + + + d23ea011-85e0-3acd-10b5-b50d76d9cb01 + MV3.101 Bus 17 + + + + 2c202a31-415d-9350-5136-33875d2ad3a8 + MV3.101 Bus 28 + + + + 1883a64d-a11b-eb39-61a1-1c52d271ce9c + MV3.101 Bus 110 + + + + dfb27b54-6339-fba3-27fd-4399cf6d22ef + MV3.101 Bus 88 + + + + 8086fee5-d541-e20a-5862-49c9106c425d + MV3.101 Bus 41 + + + + 27b58e18-ea2e-2d26-c12d-4661998a63a3 + MV3.101 Bus 109 + + + + 99947ec1-98a6-9ee5-335f-ae2d76b19d14 + MV3.101 Bus 42 + + + + 83656aa0-613e-d62b-76f2-5fc3c539ee3a + MV3.101 Bus 130 + + + + 9fd17cbd-66fc-c041-8836-bcbb9888e379 + MV3.101 Bus 119 + + + + 239be8ee-1ed3-079b-1e79-3008a74ab43c + MV3.101 Bus 101 + + + + 10266c49-589f-73d5-e883-ff3d5f25057b + MV3.101 Bus 81 + + + + 9ed6117a-8d30-8b31-1287-04ad48a07f5d + MV3.101 Bus 70 + + + + b4b0680e-cf54-0824-23c2-d7cbb7065f5e + MV3.101 Bus 89 + + + + f518bb28-521b-8beb-655c-bdc3969fa330 + MV3.101 Bus 46 + + + + afaaf557-7240-eb82-76a5-bed619cffec1 + MV3.101 Bus 54 + + + + 9650681b-f781-d012-a340-da97b65af08b + MV3.101 Bus 53 + + + + 97f6348c-4954-472b-2020-f0d894f23299 + MV3.101 Bus 29 + + + + 0e256a9d-d999-14ce-7f17-e9bbbd838ed3 + MV3.101 Bus 61 + + + + 7dbc0e56-448b-5415-f16b-cedd1f436e6f + MV3.101 Bus 137 + + + + 86593c2b-d8c7-e41d-ce2e-7818cd0410c7 + MV3.101 Bus 38 + + + + b08382b1-ebcb-da17-a7b4-a1001451a108 + MV3.101 Bus 19 + + + + 64493248-a946-4cba-09e4-9aca2ff64fb7 + MV3.101 Bus 62 + + + + 30c890d8-aaed-292e-aae7-208eda9270be + MV3.101 Bus 93 + + + + 0fb8f2fe-9e60-6e20-d87b-7d2177006495 + MV3.101 Bus 63 + + + + 577272bf-ab76-ad32-b54d-feee3733351d + MV3.101 Bus 77 + + + + b03050e3-8693-e18e-afdd-4bd106bfcf08 + MV3.101 Bus 15 + + + + 41ab8b3d-6d6e-d32f-a70f-3f4e06064250 + MV3.101 Bus 22 + + + + c75aa309-22fb-612e-c2fa-8e148a33a753 + MV3.101 Bus 142 + + + + 64df2fb6-63ed-f6e3-d423-bd94d71a4cc4 + MV3.101 Bus 94 + + + + a62b82bb-9de0-b26a-0637-cba3df1bcd95 + MV3.101 Bus 55 + + + + 00f951d2-5ad8-79b9-9b5b-2f29d52fbb4e + MV3.101 Bus 87 + + + + f527943d-0766-97c0-7596-adb1addf3198 + MV3.101 Bus 43 + + + + 7c9fd30a-eed6-a171-5a7f-90b40f0d8f17 + HV1 Bus 26 + + + + 8de0feab-7a38-91c8-a97d-16fdf6f67ad5 + MV3.101 Bus 91 + + + 1 + 4915a083-7f2b-67e4-9959-e389a0f3fd22 + Cubicle_MV3.101 SGen 40 + + + + + + 1 + 9387fec3-11ca-9b4b-ab4f-9e8de2fe91c0 + MV3.101 Bus 120_2 + + + + + + 1 + 08e16802-44d6-49a1-136a-f8bc30f20731 + HV1 Bus 26 + + + + + 2 + fab05411-1cdf-7a73-872e-eefd7899b9ec + MV3.101 Bus 62_1 + + + + + + 1 + 94a2d7af-59ac-0efe-f5eb-e9f9f05d1fc7 + MV3.101 Bus 133_2 + + + + + + 1 + ff2da168-c394-e1a5-fcfc-34bf6f4710c0 + HV1 Bus 25_1 + + + + + + 1 + 0a9eb766-459a-6fbe-4682-d1f7e1056602 + MV3.101 Bus 43 + + + + + 1 + 8f62ee0f-b9ab-544c-f8b5-41fb64cd51b2 + Cubicle_MV3.101 MV Storage 124 + + + + + + 1 + ff47b9a7-bb2b-d759-daad-b3aa8f31eb85 + Cubicle_MV3.101 MV Storage 27 + + + + + + 1 + cc4dd121-b371-be6f-94d6-7312d2d684c5 + MV3.101 busbar1A + + + + + 2 + ffb45ef3-0c00-78df-48fd-b7730f716314 + MV3.101 Bus 46_1 + + + + + + 1 + 8e66d57e-a0f0-38ec-f5fe-66806452ab67 + Cubicle_MV3.101 SGen 110 + + + + + + 1 + c3f385b5-cb55-b9dc-5773-e7f100cc5fb8 + MV3.101 Bus 91 + + + + + 1 + a4326289-67da-8fd6-4a6d-0c187f3bc164 + MV3.101 BS busbar1C + + + + + 1 + 88e658bc-abec-beb9-d3a9-965ca35607db + Cubicle_HV1 grid at MV3.101 + + + + + + 1 + 49066ed8-50df-f609-43d4-c3d1b7d3e8ab + MV3.101 Bus 14_2 + + + + + + 1 + 8bc77a47-8999-e7e8-b709-4ac3383bcc0b + MV3.101 Bus 141_2 + + + + + + 1 + ffdb8ee7-9643-4787-35d0-dc4694741fc1 + MV3.101 Bus 70_2 + + + + + + 2 + 8dc4a79b-9b97-2e8a-49b9-97d13eed32bf + MV3.101 Bus 98_1 + + + + + + 1 + 05f7a717-279c-50c7-c30d-95fe551add38 + MV3.101 Bus 86 + + + + + 1 + fff7eec5-15c2-14ff-fc8c-fed32573fddf + Cubicle_MV3.101 SGen 50 + + + + + + 1 + 99561e5b-0ac5-aa79-c2c0-2edf735d94bf + MV3.101 Bus 40 + + + + + 2 + 8e40625f-cdfc-29be-89ba-d910e4ff7481 + MV3.101 Bus 140_1 + + + + + + 1 + fa25896a-35d4-665a-4fda-73cf81f692e8 + MV3.101 Bus 20_2 + + + + + + 1 + 8a7b29c5-1edc-9f0d-b8bd-06e0a2b6ce88 + MV3.101 Bus 54_3 + + + + + + 1 + ab436ec8-b9e8-5aa6-a656-1e01e4084eb3 + MV3.101 Bus 32 + + + + + 2 + f951b3d9-cc2f-38e9-b845-4c0d33867a70 + MV3.101 Bus 118_1 + + + + + + 1 + 825acc88-2a76-64ee-f694-034edc3c296d + MV3.101 Bus 45 + + + + + 2 + 48977695-e7b3-0b81-3249-afd796f2f3ba + MV3.101 Bus 57_1 + + + + + + 1 + 891e4200-475f-26b3-eb7a-ba661d23df38 + MV3.101 Bus 28_2 + + + + + + 2 + 8db404ba-57d2-e8c0-64e3-84dad831f53b + MV3.101 Bus 25_1 + + + + + + 2 + 018ca385-1e6f-1f3b-d15d-7b3a01bc1dab + MV3.101 Bus 13_1 + + + + + + 1 + 572d7570-7368-50ab-9336-c81bab743e1b + MV3.101 Bus 27 + + + + + 2 + 90ae4993-943d-142f-197a-50b9cad968f9 + MV3.101 Bus 86_1 + + + + + + 2 + fb70e597-6750-de90-eac9-5708aebe0ca6 + MV3.101 Bus 17_1 + + + + + + 1 + 00677160-362e-94e9-9154-9f4e6f38e38a + Cubicle_MV3.101 SGen 120 + + + + + + 1 + 6a644969-54cd-eeae-720d-2dc3edee727a + MV3.101 Bus 122 + + + + + 2 + 912135e8-c2c9-29e5-cd97-707ab7dd6cab + MV3.101 Bus 97_1 + + + + + + 1 + fd6929c7-a2f8-449c-32e3-476f6be4739c + Cubicle_MV3.101 MV Storage 67 + + + + + + 1 + 919dc7a4-69fa-1500-8a60-831b88dfbeb4 + Cubicle_MV3.101 MV Storage 84 + + + + + + 1 + 04d73cfb-6b01-e153-3533-296025a65fc4 + MV3.101 busbar2B_MV3.101 node2 + + + + + + 1 + f5417c93-a11d-585c-44ff-b51f0e8adf81 + MV3.101 Bus 53_2 + + + + + + 1 + 91acc724-9a07-c204-55a3-d85b3dafcd34 + MV3.101 Bus 72_2 + + + + + + 1 + 3d33f0c4-9a84-4581-c3e7-c41f877f3b1c + MV3.101 Bus 82 + + + + + 1 + 8ade4ed1-5ec4-f669-a191-3fe7414e0bae + MV3.101 Bus 119_2 + + + + + + 1 + 04fc7f7a-8b7b-14d5-49b7-adbbc38ae0cd + Cubicle_MV3.101 SGen 126 + + + + + + 1 + 81018bcd-9c3b-7a82-719e-2c94b432b95c + MV3.101 Bus 121 + + + + + 1 + e2253692-2a52-76ce-d7fa-03c73dc9d04e + MV3.101 Bus 26 + + + + + 1 + 8d27ced8-a892-aec4-1953-f60776f30677 + Cubicle_MV3.101 MV Storage 36 + + + + + + 1 + ef77aa85-7417-1d87-041d-fa0f00f1eae0 + MV3.101 Bus 58 + + + + + 1 + 8dbece1c-c2fc-4366-c093-0d26b8d58d41 + MV3.101 Bus 71_2 + + + + + + 1 + b59bed20-1724-b217-857f-e14f2b68631d + MV3.101 Bus 11 + + + + + 1 + 8109b69e-9eac-9a12-5008-4d5e80d37748 + MV3.101 Bus 100 + + + + + 1 + 8f06f51c-269d-2b4e-3b17-32b8b511efb7 + Cubicle_MV3.101 SGen 37 + + + + + + 2 + 8e44b7f8-475b-d54a-d5c7-6deb0a2e4e58 + MV3.101 Bus 135_1 + + + + + + 1 + 02f20913-b93b-2703-1202-33c86ff1d284 + Cubicle_MV3.101 SGen 32 + + + + + + 1 + 95b1d4ea-214b-75be-7f14-243db3684ca1 + Cubicle_MV3.101 MV Storage 64 + + + + + + 2 + 0248518b-a20c-ed62-ab09-340dde965940 + MV3.101 Bus 67_1 + + + + + + 1 + 97c27500-1466-f150-2ede-d3c935027429 + MV3.101 Bus 14_3 + + + + + + 1 + b9fd2cbd-42a1-2caa-b5cc-d72f1128000b + MV3.101 Bus 97 + + + + + 2 + 029cb89c-8330-1d5d-3257-7cf263322fc5 + MV3.101 Bus 122_1 + + + + + + 1 + 0300e4c5-f31a-6fbe-f27b-7eee1be7f50c + Cubicle_MV3.101 Load 25 + + + + + 1 + 03f4996c-eedb-8d78-69f8-0fbad5009c11 + MV3.101 Bus 135 + + + + + 1 + 04ab5a97-fd19-3ac2-703c-a2c9f23588f1 + MV3.101 Bus 62_2 + + + + + + 1 + 0ed81728-97e3-94f6-7966-f899da21c5cd + Cubicle_MV3.101 Load 87 + + + + + 1 + 036f10e0-8fad-91e4-7695-9c1d11d47cd5 + MV3.101 Bus 99_2 + + + + + + 1 + 9ae3b800-5627-2daf-d0a0-1d55b11c4b53 + Cubicle_MV3.101 SGen 113 + + + + + + 1 + 61fc7502-a8ad-58ab-c5da-af475ffc6e99 + MV3.101 Bus 132 + + + + + 1 + 1669ed7c-1f1e-1ab5-5cc2-921eb76a13fd + Cubicle_MV3.101 Load 127 + + + + + 1 + 9ddeed7e-fad6-b50b-31e1-9cfb90e1b230 + Cubicle_MV3.101 SGen 68 + + + + + + 1 + 95027fdd-8f9b-4d15-c89f-253f997f5e6e + MV3.101 Bus 140 + + + + + 1 + 04f84a1b-e2fa-1aea-af37-395ca62ab917 + Cubicle_MV3.101 SGen 38 + + + + + + 1 + 1671c485-e3a4-ee89-bdc7-2e5d6f24f1ad + Cubicle_MV3.101 Load 71 + + + + + 1 + 1d37e576-ba8e-60ba-6945-a1b755d159c0 + Cubicle_MV3.101 Load 7 + + + + + 1 + 1020a29d-ced9-f6a6-2fda-757ff88cc9cf + MV3.101 Bus 124 + + + + + 2 + 9547dea4-23cc-a074-31a8-bb6c76809ca4 + MV3.101 busbar2B + + + + + + 1 + 1edc1df3-64a0-60b0-a80c-d46a54161ded + Cubicle_MV3.101 Load 8 + + + + + 1 + ac38d5c1-6306-5452-22bf-ace4f16e2feb + MV3.101 Bus 99 + + + + + 1 + 9e94afc4-0d2b-7036-b82d-01246c211c92 + Cubicle_MV3.101 SGen 109 + + + + + + 1 + 1fcaeaaa-245b-3a71-7526-2de69fe199cd + Cubicle_MV3.101 MV Load 1 + + + + + 1 + 9ea2c7a3-d036-bd5c-2058-2b1ad2e3f895 + Cubicle_MV3.101 MV Storage 56 + + + + + + 1 + 20dbceb5-b494-6c14-b76f-540694367409 + Cubicle_MV3.101 Load 42 + + + + + 1 + 04b27bc0-a8ef-b56d-92dc-d7f7ac0cf4d0 + Cubicle_MV3.101 Load 104 + + + + + 1 + f957a159-52f2-cd00-4f72-ec6adfedb5d2 + MV3.101 Bus 83 + + + + + 1 + 98a4c8f6-393e-b2a4-9993-64559e93c761 + Cubicle_MV3.101 SGen 84 + + + + + + 1 + 05ee633f-e916-ab47-9c08-a5951c584acd + Cubicle_MV3.101 Load 118 + + + + + 1 + 02d43afc-df69-f245-d1be-3503fc3e197a + MV3.101 Bus 42_2 + + + + + + 1 + 205ebc92-bd1b-4384-15c0-801843766362 + Cubicle_MV3.101 Load 46 + + + + + 1 + d829a544-3531-ccc6-b140-8cd4ba62b7ec + MV3.101 Bus 80 + + + + + 1 + 96b27aff-972d-8432-4705-90ec3f56acb4 + MV3.101 Bus 22_2 + + + + + + 1 + 0571e64d-bafe-c010-c084-9c9349d54631 + MV3.101 Bus 35_2 + + + + + + 1 + 21f9337a-6428-2849-7e16-98644f252c28 + Cubicle_MV3.101 Load 94 + + + + + 1 + 22f25546-54ff-fb8f-777e-471f138b0d98 + Cubicle_MV3.101 Load 63 + + + + + 1 + d5f2b206-ab87-2d00-35ec-54bb0c530aeb + MV3.101 Bus 57 + + + + + 1 + 007a7393-90a8-2c52-21d5-b8450822d259 + Cubicle_MV3.101 MV Load 2 + + + + + 1 + 27eab934-c8d1-ca92-08e6-6d645dfade68 + MV3.101 Bus 51 + + + + + 1 + 9774dde3-3e46-20a9-e9cc-b5d86da401e0 + Cubicle_MV3.101 SGen 17 + + + + + + 1 + a4a0589a-6c75-fe69-ffb6-afb650f2d990 + MV3.101 Bus 125 + + + + + 1 + 2613e2da-d53d-416a-e53d-b906bc993537 + Cubicle_MV3.101 Load 129 + + + + + 1 + 97844f99-074a-055b-2e46-d2a1c3bad7f3 + MV3.101 Bus 77_2 + + + + + + 1 + 06718343-3abf-1b20-6e43-64ae7fb159aa + Cubicle_MV3.101 MV Load 3 + + + + + 1 + 97be5354-b921-0283-9dd3-81bafcc1e309 + MV3.101 Bus 102_2 + + + + + + 1 + 0d751a21-fae7-8677-2259-806413f2d660 + Cubicle_MV3.101 Load 33 + + + + + 1 + 0342db0a-7246-0573-32f0-bffb2ebcde73 + MV3.101 Bus 63_2 + + + + + + 1 + 0e4b8d3a-a0b8-32b8-ed93-0fe24e7006f2 + Cubicle_MV3.101 Load 12 + + + + + 1 + 983b5949-00e4-6fde-6134-ec51aa343079 + Cubicle_MV3.101 SGen 54 + + + + + + 1 + c5e03fd4-ae33-062d-494f-543764def7be + MV3.101 Bus 112 + + + + + 1 + 0288af2c-e87f-6454-6f24-ab69e3152fec + MV3.101 busbar2A_2 + + + + + + 1 + 115b496e-e53b-2428-dfa7-5d93a8503e0c + Cubicle_MV3.101 Load 86 + + + + + 1 + 9a6d6131-cfc1-ae33-057a-b10a97d3eae3 + MV3.101 Bus 67_2 + + + + + + 2 + 9519939d-290d-46a2-17d0-695211c55542 + MV3.101 Bus 104_2 + + + + + + 1 + 1831fb25-8001-dcc0-0d41-31fc119e78ea + Cubicle_MV3.101 Load 50 + + + + + 1 + 4692df47-fae3-ecd7-3080-f9eac670c4b8 + MV3.101 Bus 31 + + + + + 1 + 02211b4a-b4c8-861c-87a0-f7e364967a9e + Cubicle_MV3.101 Load 82 + + + + + 1 + 96c32a96-46cf-a8ef-5be9-43d40aa76886 + MV3.101 BS busbar1A_1 + + + + + + 1 + 68d30259-13d6-b659-6971-c4ccd5dc3e80 + MV3.101 Bus 35 + + + + + 1 + 00def159-2290-375a-eb27-3980e6624992 + Cubicle_MV3.101 Load 19 + + + + + 2 + 9a94999f-c4c2-adb5-4a10-1fcfdb87fd8c + MV3.101 BS busbar1B_1 + + + + + + 1 + 1927bece-72f3-9473-abc2-879d83ffc2c9 + Cubicle_MV3.101 Load 110 + + + + + 2 + 9ac366ef-941f-2716-5b7a-94e571cfe818 + MV3.101 node1 + + + + + + 1 + 9b4e01ae-9167-43cd-f5f3-a8f91c774995 + MV3.101 Bus 19_2 + + + + + + 1 + 9099eb7b-34a4-2138-7829-46d328bfe922 + Cubicle_MV3.101 Load 107 + + + + + 1 + 03fcf5f8-7c4c-17bf-0ee3-843d90ceb9a3 + Cubicle_MV3.101 SGen 103 + + + + + + 1 + 9b506d81-d79c-0088-a371-aa63f76d25ee + Cubicle_MV3.101 SGen 122 + + + + + + 1 + 4f71117d-2696-0416-11c0-e688fe0a8844 + Cubicle_MV3.101 Load 100 + + + + + 1 + 9a5eaef9-543f-636b-cc2e-2875711749ac + Cubicle_MV3.101 Load 9 + + + + + 2 + 97d21d38-2dad-8f1a-599f-87d6503545d2 + MV3.101 Bus 84_1 + + + + + + 1 + 680e26a5-02ad-574f-6013-ff0c80c575cb + Cubicle_MV3.101 Load 38 + + + + + 1 + 44c63523-2686-79a8-3f7b-ed3a9afa5ae2 + Cubicle_MV3.101 Load 54 + + + + + 1 + 4874818b-0abf-b121-80c0-c990776a882b + Cubicle_MV3.101 Load 5 + + + + + 1 + 59f5efd4-a570-5d4c-2d76-94a65d3a6c7b + Cubicle_MV3.101 Load 31 + + + + + 2 + 12899a07-8e25-666d-3ccf-91ddfb4fe1a5 + MV3.101 Bus 34_1 + + + + + + 1 + 7cba4f28-9548-bbe4-9027-41da0fa97ea1 + Cubicle_MV3.101 Load 23 + + + + + 1 + 07a3a8f9-f357-de64-748f-b71f9ff300ae + MV3.101 Bus 47_2 + + + + + + 1 + 96bc6e0c-9172-abe1-bc52-906ef6026517 + Cubicle_MV3.101 MV Storage 61 + + + + + + 1 + 78295307-ae39-9447-bd14-53f5e80f3318 + Cubicle_MV3.101 Load 52 + + + + + 1 + 809c04ea-b058-7377-6545-5e583effbea4 + Cubicle_MV3.101 Load 26 + + + + + 1 + 99208a43-0d20-8f88-2d60-bbdb7e828ecc + MV3.101 Bus 59_2 + + + + + + 2 + 06fdb6f5-5eb4-f139-6275-8f08861d4b63 + MV3.101 Bus 47_1 + + + + + + 1 + 5e64b94c-fe09-b907-2575-4af6c285701c + Cubicle_MV3.101 Load 74 + + + + + 2 + 9c0172c5-e569-23f2-add7-b7fe3c391d5b + MV3.101 Bus 136_1 + + + + + + 1 + 12ad8ad5-9c0c-a45f-943e-0de6e15b4b35 + MV3.101 Bus 116_2 + + + + + + 1 + 9274bb5e-b381-77e6-a66f-046e88de50a9 + Cubicle_MV3.101 Load 59 + + + + + 2 + 0edfb974-623f-c3f4-add7-4d328d0f7c4b + MV3.101 Bus 102_1 + + + + + + 1 + 9c66c65a-85ce-043c-c47d-dde9faf41811 + Cubicle_MV3.101 SGen 10 + + + + + + 1 + 0a9c55eb-e281-efcd-5db3-d52e5f7fb494 + MV3.101 Bus 94_2 + + + + + + 1 + 64cc440e-ad81-d1d6-48e4-179cdca2b42e + Cubicle_MV3.101 Load 21 + + + + + 2 + 95424b44-4029-4a91-f8f7-c24e3a1905aa + MV3.101 Bus 111_1 + + + + + + 1 + 368fb83d-6b9c-9835-79b5-c00c24be8fd9 + Cubicle_MV3.101 Load 111 + + + + + 1 + 0b8b7f9c-8150-ad2a-5a57-fd04760a3907 + Cubicle_MV3.101 MV Storage 37 + + + + + + 1 + 9661c8c1-9790-61a3-8050-4ecf0dbd16a7 + Cubicle_MV3.101 MV Storage 35 + + + + + + 1 + 2c81eb67-40b1-c683-eabf-7a6bbec32e9d + Cubicle_MV3.101 Load 29 + + + + + 1 + 490797fb-393a-6694-350d-6726b98090d8 + Cubicle_MV3.101 Load 75 + + + + + 2 + 97fd8dca-536b-2ec5-8870-3a521c99cdfe + MV3.101 Bus 118_2 + + + + + + 1 + 0ffb2e85-141c-032c-2e31-de342b1360e2 + MV3.101 Bus 45_2 + + + + + + 1 + 7017e869-b894-72e4-775f-ae17448e0a6e + Cubicle_MV3.101 Load 85 + + + + + 2 + 9a5b3f6d-0724-357e-1a6b-d13878172da5 + MV3.101 Bus 107_1 + + + + + + 1 + 87d8ae57-2399-2ea3-475d-3997118c2555 + Cubicle_MV3.101 Load 109 + + + + + 1 + 454b6e30-0470-297f-7fb4-5b56b221f438 + Cubicle_MV3.101 Load 11 + + + + + 1 + 9cb2f1c4-5069-6338-68d3-e19227d2aa1f + Cubicle_MV3.101 SGen 104 + + + + + + 1 + 0858c979-39eb-8d57-3f8b-24d3f2d8aadc + Cubicle_MV3.101 MV Storage 77 + + + + + + 1 + 94c4b7e9-8c50-385a-ec09-600d39fc0e0b + Cubicle_MV3.101 Load 89 + + + + + 1 + 972ba56b-cf6d-4ab5-4182-d1f59eb2ec77 + Cubicle_MV3.101 MV Storage 12 + + + + + + 1 + 95eab691-70fa-e233-d747-4dc4d56bb4ac + Cubicle_MV3.101 Load 95 + + + + + 2 + 9749cf02-cd41-326c-88b4-1ff64c05dcae + MV3.101 Bus 20_1 + + + + + + 1 + 4a940535-82b9-a971-3fb8-cc967b678ecf + Cubicle_MV3.101 Load 112 + + + + + 1 + a209bb7a-e044-f39e-ee69-cabf129fb19a + Cubicle_MV3.101 MV Storage 71 + + + + + + 1 + 8ab2198f-f107-a938-ce60-8d8405b337fc + Cubicle_MV3.101 Load 24 + + + + + 1 + 884150a3-477a-79db-9f68-e148675caffe + Cubicle_MV3.101 Load 35 + + + + + 1 + a2b99001-6968-a8fd-a3ff-e187adddbbd9 + Cubicle_MV3.101 SGen 73 + + + + + + 1 + 4f0e317c-db8c-5781-6d6c-e135225e19dd + Cubicle_MV3.101 Load 68 + + + + + 1 + 96e6a3f5-b902-057a-5d3b-8555cce7ea0e + Cubicle_MV3.101 Load 36 + + + + + 1 + 38ae6667-dc6a-44d3-8be4-08838c57e128 + Cubicle_MV3.101 Load 47 + + + + + 1 + 10a8b98b-80cd-0d6a-48a1-96f29b6ffcd7 + Cubicle_MV3.101 MV Storage 13 + + + + + + 1 + 40899bc5-6401-21d9-241a-a75de0455420 + Cubicle_MV3.101 Load 105 + + + + + 1 + 10d76fb1-5577-91fe-a929-82129277abbe + Cubicle_MV3.101 MV Storage 110 + + + + + + 1 + 9794e42a-3237-11e2-ba30-775b558cfefd + Cubicle_MV3.101 Load 61 + + + + + 1 + a03d4994-b7d6-b7a3-59e1-3bacb4bd586e + MV3.101 busbar1B_1 + + + + + + 2 + 07ba26af-51f8-1057-5875-54ce96269366 + MV3.101 Bus 36_1 + + + + + + 1 + 9aa52263-fe4b-455b-7505-f287245292ab + Cubicle_MV3.101 MV Load 4 + + + + + 1 + a38478ec-d41d-86f7-4014-bc4f12465392 + MV3.101 Bus 78_2 + + + + + + 1 + 0b74682b-449d-5dc6-cabb-2409ff0d45f3 + Cubicle_MV3.101 SGen 100 + + + + + + 1 + 2bccc3c4-81b0-90fd-2b12-5a9a7d9aad1c + Cubicle_MV3.101 Load 57 + + + + + 2 + a42056c3-0e8c-e214-fc7b-7227b07ccba1 + MV3.101 Bus 52_1 + + + + + + 1 + 0621c61b-3009-874a-0aef-a3042590e411 + MV3.101 busbar1A_MV3.101 node1 + + + + + + 1 + 08afb8fb-ce59-f002-e7c9-74cd553bbf2e + MV3.101 Bus 69_2 + + + + + + 2 + a7b88f10-6f58-e769-146b-07da85018be8 + MV3.101 Bus 95_1 + + + + + + 2 + a73129f4-ec73-93e6-fcef-479f3e22d5ae + MV3.101 Bus 132_1 + + + + + + 1 + 08aca091-72b3-d217-688e-fab73937af5d + Cubicle_MV3.101 MV Storage 99 + + + + + + 1 + 0b010ca4-7a3b-8d36-bcb9-85d7ee4dc07e + Cubicle_MV3.101 SGen 39 + + + + + + 1 + a2a37953-e3d3-8bd2-aef3-76c56013f7de + Cubicle_MV3.101 SGen 116 + + + + + + 1 + a2d55e2f-7dc6-8ee2-cbd5-384fb5a8063c + MV3.101 Bus 40_3 + + + + + + 2 + a2e834fc-60be-1f9e-7543-8f8260d9be33 + MV3.101 BS busbar1C + + + + + + 1 + 545fb0fc-4a85-adbe-5ad1-472f2d4392ad + Cubicle_MV3.101 Load 70 + + + + + 1 + a44f3a94-6ec2-5a4b-1929-1c6bfb2963ed + Cubicle_MV3.101 MV Storage 55 + + + + + + 1 + 365b9b49-bf30-ec9b-ee17-f108fbec17f6 + Cubicle_MV3.101 Load 20 + + + + + 1 + 9f61edfe-6b74-f0bc-3da6-1de93603d114 + Cubicle_MV3.101 MV Storage 70 + + + + + + 1 + 6cd06c3b-aaae-fc15-784f-68014f2cda38 + Cubicle_MV3.101 Load 121 + + + + + 1 + 2ea70caf-1856-f399-0013-4afad3b868d8 + Cubicle_MV3.101 Load 81 + + + + + 1 + 4145c738-4573-a5c7-05c4-eec4b2874810 + Cubicle_MV3.101 Load 113 + + + + + 1 + a24a43e4-9055-2fe5-6961-87b86e8d2c39 + Cubicle_MV3.101 MV Storage 88 + + + + + + 1 + 4f211504-2251-0af3-9a57-4802370b1fdf + Cubicle_MV3.101 Load 41 + + + + + 2 + a3b7b3fc-abed-888b-be60-610c80fc3ef0 + MV3.101 Bus 114_1 + + + + + + 1 + 538ad3b7-850d-f311-86c1-369b0b550d40 + Cubicle_MV3.101 Load 27 + + + + + 1 + a0bdf978-cfa7-30d2-c581-0b9814a7c92f + Cubicle_MV3.101 MV Storage 8 + + + + + + 1 + 6a90ebf9-1138-7147-8b85-2fb549b54953 + Cubicle_MV3.101 Load 133 + + + + + 1 + a282f91d-a612-091a-7803-26377a0bc51a + Cubicle_MV3.101 MV Storage 29 + + + + + + 1 + 6b20d152-1968-ba0a-a716-0c21294e95db + Cubicle_MV3.101 Load 103 + + + + + 1 + 35e4a8ee-9187-845d-da14-e9c7658a0890 + Cubicle_MV3.101 Load 62 + + + + + 1 + a137c5f5-a24b-9ea2-1358-b36471a21933 + MV3.101 Bus 34_2 + + + + + + 1 + 61bdc6da-55a3-d355-7827-c2b134180d91 + Cubicle_MV3.101 Load 125 + + + + + 1 + a146f4e3-e8cf-2c9d-7a2a-3caed65869a8 + MV3.101 Bus 82_2 + + + + + + 1 + 6cfe6f9f-cd11-d72c-ce96-7f132cf6791c + Cubicle_MV3.101 Load 92 + + + + + 1 + 76d33462-c09f-6a85-d082-1b6ecba786df + Cubicle_MV3.101 Load 79 + + + + + 1 + a13b84da-fff1-8af3-dd12-9a64a4432cdd + Cubicle_MV3.101 SGen 31 + + + + + + 1 + 8702d598-ae53-bb6f-186e-844bb23a1c53 + Cubicle_MV3.101 Load 93 + + + + + 1 + a24de886-f31e-c494-2b17-46394ca04b20 + Cubicle_MV3.101 SGen 131 + + + + + + 1 + 6a2f87df-e2cc-a926-cd77-94111e371eba + Cubicle_MV3.101 Load 72 + + + + + 1 + 48b7648a-7802-7766-cfca-750647ca2e56 + Cubicle_MV3.101 Load 51 + + + + + 1 + a2644dc5-1ee8-aa1d-829d-0240f4a068c3 + MV3.101 Bus 96_2 + + + + + + 1 + 88aa7a6e-f987-78a0-edc1-9e9d6292ebd2 + Cubicle_MV3.101 Load 124 + + + + + 1 + 44f9daba-551f-9257-ae3a-4cad4974333e + Cubicle_MV3.101 Load 115 + + + + + 1 + 54a2dc1c-7d45-eee8-d81b-22927f2e7e09 + Cubicle_MV3.101 Load 76 + + + + + 1 + 2e03cf3b-3ed7-3e06-8640-a947706ded2a + Cubicle_MV3.101 Load 37 + + + + + 1 + a46d7b81-83d0-608e-8662-66eb5ce1fa4a + MV3.101 Bus 91_2 + + + + + + 1 + 3b328934-63ec-79fc-1784-f51103e3fccf + Cubicle_MV3.101 Load 73 + + + + + 1 + 61746524-4feb-25cf-a019-ba2cdec47c58 + Cubicle_MV3.101 Load 2 + + + + + 1 + a2b5a248-c16a-be08-c73f-81d2003d046b + MV3.101 Bus 60_2 + + + + + + 1 + 852a36b5-501c-ae69-a5d4-e6810d6296b5 + Cubicle_MV3.101 Load 119 + + + + + 1 + 3600990a-4e1d-3706-f3c6-961eef77c831 + Cubicle_MV3.101 Load 91 + + + + + 1 + 13924410-528f-2332-7414-3e4f67deea13 + MV3.101 Bus 34 + + + + + 1 + a62bf0b8-920e-e1a8-c721-dcf829a518c7 + Cubicle_MV3.101 SGen 71 + + + + + + 1 + 8396d8f7-be55-630e-adb6-ee5bcf4d3cb8 + Cubicle_MV3.101 Load 55 + + + + + 1 + 8961e3f9-16a9-86ef-1967-067638caf2c6 + Cubicle_MV3.101 Load 123 + + + + + 1 + 7f23acea-e74e-d344-cb65-e295058d12c5 + Cubicle_MV3.101 Load 34 + + + + + 1 + 35bf5669-6821-6b97-c0be-9b6eebdfeaf0 + Cubicle_HV1_MV3.101_load + + + + + 1 + 6d6df280-ef3f-b5de-ecf1-865cc5d1d04a + Cubicle_MV3.101 Load 106 + + + + + 1 + a58b61df-2123-ef28-036c-4ca5eb5c5839 + MV3.101 busbar1A_1 + + + + + + 1 + 6ddf2a49-f16f-c451-9dfe-68f23e6602ba + Cubicle_MV3.101 Load 83 + + + + + 1 + 8ae94f4d-0d89-be19-964a-966c455c2049 + Cubicle_MV3.101 Load 6 + + + + + 1 + 83c4cb5d-f181-dfb2-4188-d2bec8426f44 + Cubicle_MV3.101 Load 28 + + + + + 1 + a117e19a-459a-021d-7d30-3d5817c999a2 + Cubicle_MV3.101 MV Storage 18 + + + + + + 1 + 549f6b38-adfb-fe62-91a4-bf4b7fee9bc2 + Cubicle_MV3.101 Load 3 + + + + + 1 + b1f94f9a-0829-b997-e2ac-c14adcc2c3a0 + Cubicle_MV3.101 MV Storage 17 + + + + + + 1 + 0de63770-b4dd-92c6-2155-5f0214acd11a + Cubicle_MV3.101 MV Storage 117 + + + + + + 1 + b26f9f2f-d5c3-ed4c-6866-6118fb539b1f + MV3.101 Bus 12_2 + + + + + + 1 + 0c9b4146-f96e-3a7b-8279-4a097418b430 + Cubicle_MV3.101 MV Storage 75 + + + + + + 1 + ac163ddc-0321-ceef-3c11-121acd457cba + Cubicle_MV3.101 SGen 34 + + + + + + 1 + d3db5cf7-2e95-7f81-5df7-c2441da898e2 + Cubicle_MV3.101 Load 134 + + + + + 1 + 0b1a2968-ab32-ac76-7f8b-a0110a103eba + MV3.101 Bus 52_2 + + + + + + 1 + d3fe9be3-586c-21a0-92bd-79d3e6801f6d + Cubicle_MV3.101 Load 130 + + + + + 2 + ae703e17-b56e-905c-8add-537b808e8205 + MV3.101 Bus 104_1 + + + + + + 1 + ebfcecd3-6a33-0a53-7a13-6ab18ab14220 + Cubicle_MV3.101 Load 78 + + + + + 2 + 0c547651-346d-e353-1125-978aefd1404e + MV3.101 Bus 110_3 + + + + + + 1 + ee7bbfb8-074b-1318-9fb6-357400c29ae0 + Cubicle_MV3.101 Load 88 + + + + + 1 + b28d8c2e-bcc4-b2d4-2654-52d753396cf7 + Cubicle_MV3.101 SGen 78 + + + + + + 1 + f105d592-f9a3-defd-3b62-e00ca54c407f + Cubicle_MV3.101 Load 4 + + + + + 1 + b03dcf9b-9ff4-3d5c-cb9a-cf5fc85b2732 + Cubicle_MV3.101 MV Storage 58 + + + + + + 1 + b0ea343c-e6f9-c92b-fbb6-6b46669f9ed0 + Cubicle_MV3.101 Load 66 + + + + + 1 + f5847c91-91c3-9b0b-a25c-b2f4fb0c78fb + Cubicle_MV3.101 Load 22 + + + + + 2 + b2a859c9-9619-3f92-3ffb-421c1771cc21 + MV3.101 Bus 80_1 + + + + + + 1 + f9b66697-92ef-29e1-dd47-28b6ee022515 + Cubicle_MV3.101 Load 132 + + + + + 2 + adb03142-c99d-3cbf-b87d-1b6bf6743e8c + MV3.101 Bus 103_1 + + + + + + 1 + 9d5d3d22-d3e7-5c80-77cc-f419afacd090 + Cubicle_MV3.101 Load 58 + + + + + 1 + a0c7bbe3-75f0-0375-5504-a2454a686ec9 + Cubicle_MV3.101 Load 67 + + + + + 1 + ae3370b3-1e76-bb8f-d355-69f1afe04fb6 + Cubicle_MV3.101 Load 126 + + + + + 1 + a810befe-c1b5-91fe-28aa-45f4249d5026 + MV3.101 Bus 13_2 + + + + + + 1 + b78cfad5-520a-5811-04a9-53d530926441 + Cubicle_MV3.101 Load 131 + + + + + 1 + b2e8eb27-d981-8978-2785-f03f88f71174 + MV3.101 Bus 136_2 + + + + + + 1 + d3677fc4-65c9-24de-d1ab-b71ed126d925 + Cubicle_MV3.101 Load 53 + + + + + 1 + b2e9699a-b63c-7d4f-1fbc-86996a3efa77 + Cubicle_MV3.101 SGen 95 + + + + + + 1 + 9fc4d6dd-c38e-e956-4882-caf7c7a264e8 + Cubicle_MV3.101 Load 80 + + + + + 1 + aa6b35bf-40e1-b2da-87c7-26cc1644a3ab + Cubicle_MV3.101 MV Storage 23 + + + + + + 1 + a5f2bc81-39da-e2cb-99fc-690c5fcd1d67 + Cubicle_MV3.101 Load 98 + + + + + 1 + d72722b0-d703-3e2c-a59f-bd1fbcec216a + Cubicle_MV3.101 Load 60 + + + + + 2 + af9c7475-f578-44f2-7c85-f9839a377334 + MV3.101 Bus 100_1 + + + + + + 1 + d8e1c146-11df-226d-452a-159e422cb286 + Cubicle_MV3.101 Load 15 + + + + + 2 + aab02919-d337-86a0-4f59-65139c74d4c6 + MV3.101 Bus 125_1 + + + + + + 1 + e1522ce8-99c6-484f-c389-605c12e04ab8 + Cubicle_MV3.101 Load 96 + + + + + 1 + e2947a86-caa1-1538-a764-659cd37e6807 + Cubicle_MV3.101 Load 30 + + + + + 1 + aff6da21-2e75-a18f-51a2-631c089c00b7 + Cubicle_MV3.101 MV Storage 53 + + + + + + 1 + ca256fbb-b7fe-4afa-2163-abd110a368eb + Cubicle_MV3.101 Load 108 + + + + + 1 + a91c686d-3462-cf1a-3125-a25ca89ce270 + Cubicle_MV3.101 MV Storage 46 + + + + + + 1 + be4c8e7e-5b4c-dd23-570a-53bb600edfab + Cubicle_MV3.101 Load 97 + + + + + 1 + a800c666-a829-b353-179c-7c078485109f + MV3.101 Bus 142_2 + + + + + + 1 + e2ffab25-2f52-a836-ab10-bdfe99c597c4 + Cubicle_MV3.101 Load 120 + + + + + 1 + aa0a5631-38fb-fe83-b0bb-92f737cafc5a + Cubicle_MV3.101 SGen 115 + + + + + + 1 + f1ad1a87-f1d8-7497-07c0-36be6b73b75b + Cubicle_MV3.101 Load 14 + + + + + 2 + a98b2aa6-cd14-7740-f6f0-8afb4f1a3486 + MV3.101 Bus 128_1 + + + + + + 1 + d8cfeab2-907e-a192-4462-b7587ab6e26d + Cubicle_MV3.101 Load 99 + + + + + 1 + f3bba606-c003-58f5-97ab-f1642db89a84 + Cubicle_MV3.101 Load 69 + + + + + 1 + ad0a924f-ac7a-e2dc-2964-f8ca3311c250 + Cubicle_MV3.101 Load 116 + + + + + 1 + f55fc2fc-2353-683b-ed22-475dbb50b658 + Cubicle_MV3.101 MV Load 5 + + + + + 1 + a83e7cd3-7409-f162-f0b7-95788cb7b042 + Cubicle_MV3.101 MV Storage 105 + + + + + + 1 + f6415ebe-4850-7ab7-b33a-74717534883e + Cubicle_MV3.101 Load 101 + + + + + 1 + ac56fef9-8728-0f07-b9e2-5c62cb2d7f3f + Cubicle_MV3.101 MV Storage 10 + + + + + + 1 + f9e530cc-0571-2ecf-fe91-8d85ce6641e9 + Cubicle_MV3.101 Load 65 + + + + + 2 + ad110288-6a16-a35d-4632-4656d703ff05 + MV3.101 Bus 41_1 + + + + + + 1 + b9386e69-33b9-884b-56b1-ca7ba51dbce1 + Cubicle_MV3.101 Load 122 + + + + + 1 + a821eb93-c8c8-dc1b-28fa-e78e4a789959 + MV3.101 busbar1A + + + + + + 1 + fa9f747d-65cc-b4ce-f48c-d541b345216c + Cubicle_MV3.101 Load 13 + + + + + 1 + a0ae5938-f47a-13a5-b9ff-0565c3a29ea1 + Cubicle_MV3.101 Load 49 + + + + + 2 + aa398d79-68f7-1a0c-f9b1-7de9d214e48c + MV3.101 Bus 48_1 + + + + + + 1 + b4c51675-4b97-c2f2-3714-5838b4e8f6e9 + Cubicle_MV3.101 Load 90 + + + + + 1 + 5fd0f26b-7f17-bab3-8a63-2c6a1d8a587d + MV3.101 Bus 39 + + + + + 1 + 9c0e802c-81db-03ae-8f5a-112693231a46 + Cubicle_MV3.101 Load 77 + + + + + 1 + c053f78c-56e7-e039-f352-83708c635e40 + Cubicle_MV3.101 Load 128 + + + + + 1 + ab0179b5-a3b2-fde3-70da-6b830dfc1ba9 + Cubicle_MV3.101 MV Storage 22 + + + + + + 1 + cc1eeb86-41eb-116e-4d3c-5c7f9631f374 + Cubicle_MV3.101 Load 32 + + + + + 1 + 7e6fe179-e756-f09d-594f-ca61419352e3 + MV3.101 Bus 23 + + + + + 1 + c0804960-63ca-3c22-8a7e-bf442092523e + Cubicle_MV3.101 Load 84 + + + + + 1 + b46a8641-2bec-2c69-6ed1-4161c6a0b563 + Cubicle_MV3.101 Load 43 + + + + + 1 + 3e87fd5a-67f4-200a-acf3-367a539e49fd + MV3.101 Bus 12 + + + + + 1 + ecf1ba17-262d-bfa6-ca1f-3c6eb8073352 + Cubicle_MV3.101 Load 40 + + + + + 1 + 2db140a6-a155-2169-d7b3-fa2bb2dd807f + MV3.101 Bus 114 + + + + + 1 + e75a7093-bb38-7280-de39-930eb8e1bc63 + Cubicle_MV3.101 Load 114 + + + + + 1 + af9e308e-04b9-08d5-1509-b39a516483e6 + Cubicle_MV3.101 SGen 69 + + + + + + 1 + 151b156e-693b-5e2d-e3df-364c741f16ac + Cubicle_MV3.101 SGen 82 + + + + + + 1 + fc79316f-aeb1-6a2c-847f-b226f302fcef + Cubicle_MV3.101 Load 39 + + + + + 1 + f7a5425d-669f-d81a-21ba-35d0d463231d + MV3.101 Bus 138 + + + + + 2 + a81bd693-ec3e-ead8-08c7-c0ad11d537e2 + MV3.101 Bus 75_1 + + + + + + 1 + ff721484-64d9-a7e4-d100-acd9d26532ba + Cubicle_MV3.101 Load 45 + + + + + 1 + d9fabad0-2ff8-7cbc-dc6d-b1074500b944 + MV3.101 BS busbar1B + + + + + 2 + af5b7a43-e845-c083-6a04-a1a9888c75b6 + MV3.101 Bus 108_1 + + + + + + 2 + af26c5e8-b662-0832-ed3b-42f9291ae9f2 + MV3.101 Bus 137_1 + + + + + + 1 + d40fe62c-fbc8-e68d-e324-02a80b81a57b + Cubicle_MV3.101 Load 64 + + + + + 2 + a906ba88-06b1-6483-444a-37b841c47970 + MV3.101 Bus 71_1 + + + + + + 1 + 19d57e79-d4c1-e55b-6b08-6d4b95ab7dbb + MV3.101 Bus 46_2 + + + + + + 1 + a97a7489-4071-d13f-5ab7-98d5c0c9b763 + MV3.101 Bus 25 + + + + + 1 + e6176c90-e5db-600a-c2dd-f0608cd9853a + Cubicle_MV3.101 Load 16 + + + + + 2 + ac28f3b5-f578-6b4d-dde7-da006e0540ac + MV3.101 Bus 74_1 + + + + + + 1 + ac2cef91-b3dd-9c10-e9d3-2bce566f1192 + Cubicle_MV3.101 Load 10 + + + + + 2 + b1df3ac4-f43c-6918-b232-1f73aea255ed + MV3.101 Bus 105_1 + + + + + + 1 + a75331a3-d027-e1ab-3fb4-1264bc42cfdb + Cubicle_MV3.101 Load 117 + + + + + 1 + fd786bc6-4c8a-7bc9-69d7-afe6d7303bb7 + MV3.101 Bus 92 + + + + + 1 + 14f37736-c3fe-a517-9440-9542ff9c3067 + Cubicle_MV3.101 SGen 91 + + + + + + 1 + b33644c6-deca-fda6-972e-187d2a8d2a43 + Cubicle_MV3.101 MV Storage 19 + + + + + + 1 + a85d03ef-05e6-945c-3ec5-b01208330025 + Cubicle_MV3.101 Load 56 + + + + + 1 + badd8c47-605b-7ee3-0e14-ef51c8613781 + HV1 Bus 25 + + + + + 1 + 1bdb6a5c-9d7c-90d1-3a09-12388cd7aa3f + Cubicle_MV3.101 MV Storage 43 + + + + + + 1 + c82ef986-a492-fc03-3282-a42a29fc1fea + Cubicle_MV3.101 Load 44 + + + + + 2 + b73bcccf-cacf-b8f6-39e2-39ee03d9d8eb + MV3.101 Bus 130_1 + + + + + + 2 + 18ee2b6a-b980-d3cc-581e-ff8c21620404 + MV3.101 Bus 39_1 + + + + + + 1 + d9928094-97b7-b85d-46a1-e08c9ec1b6c8 + Cubicle_MV3.101 Load 17 + + + + + 1 + 1c82d10b-730c-1a09-7aec-51fb866ec943 + Cubicle_MV3.101 SGen 53 + + + + + + 1 + 9236b46c-bda1-36a3-8589-3f9b20a049e0 + MV3.101 busbar2A + + + + + 1 + b76e58bb-d6cd-4c28-48fe-1f9d57c3f886 + Cubicle_MV3.101 SGen 108 + + + + + + 1 + b857a0bb-a06a-9e1c-c6b1-d2da6da4100d + Cubicle_MV3.101 Load 18 + + + + + 1 + 13ed859b-5c2a-456c-23de-6641519dbefe + MV3.101 Bus 138_2 + + + + + + 1 + a8d6c3b6-edd3-8dd7-b55e-5e7dcbac1bac + Cubicle_MV3.101 Load 102 + + + + + 1 + b6043756-ffb8-f0ad-7fa8-f197b5b3ea19 + Cubicle_MV3.101 MV Storage 14 + + + + + + 1 + be0f6fd3-86f9-0cfb-69d0-3c98bc483083 + MV3.101 Bus 68 + + + + + 1 + a6aa6261-f233-e89a-aa69-8713b38926a8 + Cubicle_MV3.101 Load 48 + + + + + 1 + 7a3e51bd-7e42-2195-acbd-04bd6410c267 + MV3.101 Bus 141 + + + + + 1 + be25010f-0aea-aba4-e3a0-13138855061e + Cubicle_MV3.101 MV Storage 102 + + + + + + 2 + 136dbedb-cea4-6aba-1c06-2bb7c58a26ca + MV3.101 Bus 131_1 + + + + + + 1 + bec3c344-3a84-d68c-a5cb-53128802f742 + Cubicle_MV3.101 MV Storage 57 + + + + + + 1 + a12099ef-4f84-d95a-47b0-7b385e62deb9 + MV3.101 Bus 120 + + + + + 1 + 1d2224a6-b9c5-f549-8d02-8c58035d22c9 + MV3.101 Bus 30_2 + + + + + + 1 + 662849a3-1ec5-2b35-0f2b-7a76dcdfdc3a + MV3.101 BS busbar1A + + + + + 2 + baa23566-6c3e-df49-c260-b551cb482dd2 + MV3.101 Bus 63_1 + + + + + + 2 + 1ce852ad-2317-8883-ad8c-90e48ccce8f6 + MV3.101 Bus 139_1 + + + + + + 1 + fcfa7de9-ab63-316b-5c85-b39864409410 + MV3.101 Bus 24 + + + + + 1 + 1d22488d-6ead-0147-abac-e7084448171a + Cubicle_MV3.101 SGen 67 + + + + + + 1 + 63483ece-ac9f-7e79-7ec3-df65f3ed5074 + MV3.101 Bus 66 + + + + + 2 + 149b4df2-56fa-602c-05f9-2917a57e6be6 + MV3.101 Bus 110_1 + + + + + + 1 + bef5f20c-1984-cf51-6fed-e5bfec045048 + MV3.101 Bus 76_2 + + + + + + 1 + ce446b4e-99d9-4431-1fa8-b5ced2a728f3 + MV3.101 Bus 95 + + + + + 1 + 18b8c1cb-6a39-54a5-a6de-dfb2400208a0 + Cubicle_MV3.101 SGen 16 + + + + + + 1 + b9d1e048-5cbf-bc89-ffc8-f9580a46ee74 + MV3.101 busbar1A_3 + + + + + + 1 + 140782b4-048b-3a82-3c56-6fd0ca5ccd28 + MV3.101 Bus 59 + + + + + 1 + 137a75e6-3a5f-0abe-5586-99bc0d3a5d2c + Cubicle_MV3.101 MV Storage 25 + + + + + + 2 + b6df29b2-ba60-4e5a-b1be-469e801529de + MV3.101 Bus 143_1 + + + + + + 1 + ef54ef26-f27c-5ec5-9140-76da782886f7 + MV3.101 Bus 133 + + + + + 2 + bf3d195e-0ab8-c159-8aa7-da966af6f071 + MV3.101 busbar1B + + + + + + 1 + 1666bf8a-7b80-e7d6-14ac-9a72ae3fc675 + Cubicle_MV3.101 MV Storage 79 + + + + + + 1 + 1482b11c-f865-7a5c-a49d-a4f9d9d5473c + Cubicle_MV3.101 MV Storage 123 + + + + + + 1 + 6d05eb94-db0a-340f-d02d-85ee79cb24ee + MV3.101 Bus 90 + + + + + 2 + b6ce6ab7-2840-7bd6-df3a-e3e8fb828559 + MV3.101 Bus 33_1 + + + + + + 2 + 16a6791b-a4d3-b705-bd2b-c6af196fa2a5 + MV3.101 Bus 116_1 + + + + + + 1 + bf809f04-113a-dfc4-62b7-8201e792c352 + Cubicle_MV3.101 SGen 49 + + + + + + 1 + ad54010f-c971-67ac-671a-cc3fc42dc837 + MV3.101 Bus 13 + + + + + 1 + b3e84f6c-ba19-7fc5-b93e-179ac89eccd9 + Cubicle_MV3.101 SGen 41 + + + + + + 1 + f60cad91-49d2-906a-dac1-7a174647699e + MV3.101 Bus 72 + + + + + 1 + b934ab91-2be2-e013-403a-b102aa957b79 + MV3.101 Bus 101_2 + + + + + + 1 + d3933ab6-4d6d-79e0-af12-446fb177fe2c + MV3.101 Bus 104 + + + + + 1 + 7da0e516-120a-44dc-3f48-2974e680bc94 + MV3.101 Bus 36 + + + + + 1 + b676d233-c9f6-87c7-276e-29eeb847447e + Cubicle_MV3.101 SGen 27 + + + + + + 2 + 1a0a331e-de2b-80ca-a4d0-39a3db37afe1 + MV3.101 Bus 75_3 + + + + + + 1 + b96511d6-4c37-c979-4689-9818644c25c8 + Cubicle_MV3.101 MV Storage 38 + + + + + + 1 + 819fd909-7d08-d4de-49d3-b6414f5e954c + MV3.101 Bus 56 + + + + + 1 + 610ec2d8-491d-41e4-211e-51b453a7cd8e + MV3.101 Bus 143 + + + + + 1 + b8303b63-853e-3e32-b235-073b1c3f220c + Cubicle_MV3.101 MV Storage 126 + + + + + + 2 + b58c294b-7ee9-caea-afbe-c0883d59a949 + MV3.101 BS busbar1B + + + + + + 1 + 1410eb9c-96e2-6d59-2cbc-046bff836b84 + MV3.101 BS busbar1A + + + + + + 1 + b67bc910-84ec-3d96-7710-79fe651bbd00 + Cubicle_MV3.101 MV Storage 54 + + + + + + 1 + 80b2620b-ec2b-f749-077d-095dd5958749 + MV3.101 Bus 65 + + + + + 2 + 15bda8dc-161e-7035-6795-6d099decc9ba + MV3.101 Bus 114_3 + + + + + + 1 + f2c2876d-0c22-e0c1-cf7d-c3b388fa5138 + MV3.101 Bus 76 + + + + + 1 + 15eebc25-ed84-c7c4-29b4-411187c77516 + Cubicle_MV3.101 SGen 66 + + + + + + 1 + ebc136ee-175d-f7da-9367-a9ab6aba0078 + MV3.101 Bus 44 + + + + + 1 + bec4eeb4-f0b8-254a-a01c-9f683540626b + MV3.101 Bus 128_2 + + + + + + 1 + b154c456-eebb-3110-19b0-ba94e4de1a31 + MV3.101 Bus 129 + + + + + 1 + bf06d848-373e-a20d-9c70-bd0a26f0a3a3 + MV3.101 BS busbar1B(1) + + + + + + 1 + 17ae8b16-c9e6-7a13-5cde-051db43d801c + Cubicle_MV3.101 MV Storage 59 + + + + + + 1 + 2d0ab85a-9378-7f3c-8a6b-7e92458df46e + MV3.101 Bus 47 + + + + + 1 + b8f6cb31-c37e-5eb6-0dfe-8c0543aaac3e + Cubicle_MV3.101 MV Storage 98 + + + + + + 1 + 2234f854-6c74-fb8c-e2ae-0fa3426ed7e5 + MV3.101 Bus 55_2 + + + + + + 1 + 6cfc7636-fcbd-248f-9d5c-ffc83408302d + MV3.101 Bus 106 + + + + + 1 + bb73adcd-693a-708a-a7f4-32313305341a + MV3.101 Bus 132_2 + + + + + + 1 + ca6ea31a-3693-c809-1873-9ed19180bccf + MV3.101 Bus 84 + + + + + 2 + 228fc3c1-f140-da71-bb17-3161c75021ac + MV3.101 Bus 85_1 + + + + + + 1 + be2be0aa-97c5-9cb1-32f0-0d1f12d5568a + Cubicle_MV3.101 MV Storage 65 + + + + + + 1 + dafa5dea-24ab-e4c8-b004-279411642ce3 + MV3.101 Bus 78 + + + + + 1 + c1a4ce37-aba2-d21f-666c-d34716a79b1d + MV3.101 Bus 87_2 + + + + + + 2 + 22ca7319-c12d-34c0-2ca2-64984b407efe + MV3.101 Bus 22_1 + + + + + + 1 + 1db9d96d-e0e5-5b97-19cd-8f88f34de06a + MV3.101 Bus 16 + + + + + 1 + 1f88087e-af63-5f45-4adf-4117809bf9ff + MV3.101 Bus 37_2 + + + + + + 1 + e3f8f5aa-e54c-609b-5943-0c5ccd3d6358 + MV3.101 Bus 49 + + + + + 1 + 0e00ba8e-6863-6d35-b85a-bddfec8270fd + MV3.101 Bus 128 + + + + + 1 + 20e6bb73-af0a-f9ee-f06d-a5489f102c00 + Cubicle_MV3.101 MV Storage 74 + + + + + + 1 + 9bf26516-f1f6-1e93-6e82-5d874e06326c + MV3.101 Bus 20 + + + + + 1 + c0fec04d-bcdf-ce60-6e3a-d0468259ae83 + Cubicle_MV3.101 SGen 93 + + + + + + 1 + 2554e791-56ee-da0b-af16-4a7c6ca93c42 + MV3.101 Bus 86_2 + + + + + + 1 + 8649a8bc-5027-5722-1ae1-a693a924ab8d + MV3.101 Bus 37 + + + + + 2 + 26eb21be-57bc-298d-94aa-1e37506b49ec + HV1 Bus 26_1_HV1 Bus 26 + + + + + + 1 + 50282697-e50e-4c86-af83-cddaa0460e4e + MV3.101 Bus 79 + + + + + 2 + c1cf73cf-9f49-71a7-161e-0aedc96b1e97 + MV3.101 Bus 53_1 + + + + + + 1 + c3ce9e3e-22a7-5615-baed-1191e35b900a + Cubicle_MV3.101 SGen 11 + + + + + + 1 + 7720e010-029a-02d7-af61-945e4ced4924 + MV3.101 Bus 113 + + + + + 1 + ca6e8d22-eb1f-d18c-7ac3-a6b7f6456925 + Cubicle_MV3.101 SGen 1 + + + + + + 1 + 1e7febc6-c5dc-340d-4013-912aa1ce3ae0 + Cubicle_MV3.101 MV Storage 122 + + + + + + 1 + ca87492f-9fad-3760-1157-72a7a9fc2e7b + Cubicle_MV3.101 SGen 87 + + + + + + 1 + 237049c5-ca19-8ffc-10b7-f602b647f4ef + MV3.101 Bus 100_2 + + + + + + 1 + 5f4ddddb-0051-7432-a3db-8fe341a1e6e6 + MV3.101 Bus 73 + + + + + 1 + cc378adf-b258-7512-19ab-27e42df91175 + MV3.101 Bus 36_3 + + + + + + 1 + edaa6cb8-56d9-4787-efad-866e02142798 + MV3.101 Bus 108 + + + + + 1 + 62b75864-9b4b-6112-c19e-1245736199d0 + MV3.101 Bus 67 + + + + + 1 + a8d09bcd-0383-6432-8817-afb00584bf9b + MV3.101 Bus 98 + + + + + 1 + 1fe6840d-18d5-4bbc-71be-b9182fcfdcea + MV3.101 Bus 65_2 + + + + + + 1 + 2087412a-9cdc-23ad-955b-bd32920403bb + Cubicle_MV3.101 SGen 76 + + + + + + 1 + 61125399-5b1f-6a03-048a-e78041e4fa99 + MV3.101 Bus 52 + + + + + 1 + c17afb68-6b90-a0c6-f6af-e1418214c3ee + Cubicle_MV3.101 SGen 57 + + + + + + 1 + 1e973e0c-2411-d22b-23ad-cf1feca2d762 + MV3.101 Bus 98_2 + + + + + + 2 + c132ff92-730b-b9a9-ca79-0636dbc67fb8 + MV3.101 Bus 93_1 + + + + + + 1 + f62a80ee-0aae-d5cb-da77-1449cede565a + MV3.101 Bus 60 + + + + + 2 + c21d6f5d-b3b5-900a-6b33-137f0c336fb8 + MV3.101 Bus 66_1 + + + + + + 1 + e8e56620-9e72-062a-9809-0b93242378fd + MV3.101 Bus 123 + + + + + 1 + ecfa8ebc-b069-a04a-4eb0-a24eff3cf89f + MV3.101 Bus 21 + + + + + 1 + c2eb5912-5a6f-05a1-7558-71ffae95fa54 + MV3.101 Bus 89_2 + + + + + + 1 + c1138890-9de1-13e1-385d-b1520277ee03 + MV3.101 Bus 105 + + + + + 1 + 1f9cbb0e-52ae-a750-1eb3-13082d025ed7 + Cubicle_MV3.101 MV Storage 66 + + + + + + 1 + c40b328b-c7ad-cf3b-2699-a9768882856f + Cubicle_MV3.101 MV Storage 4 + + + + + + 1 + 25570de3-ba35-dd7d-e5d4-6a0f258e559b + MV3.101 Bus 85_2 + + + + + + 1 + dcd2e3ee-6b3a-8509-f1cd-bddb66ac4439 + MV3.101 Bus 64 + + + + + 1 + 39c7675e-107f-d2a1-e7d9-ed3d15822d06 + MV3.101 Bus 111 + + + + + 1 + 25f069c4-055f-6f65-765a-9d7dd8bb358b + Cubicle_MV3.101 MV Storage 69 + + + + + + 1 + e8bd1193-5423-10cc-3ddf-4b93504e697c + MV3.101 Bus 134 + + + + + 1 + 1d993990-255d-cf4b-6621-8f1863cd4c59 + Cubicle_MV3.101 MV Storage 32 + + + + + + 1 + 35e863c2-6291-5063-4af8-9cb83b8b34e7 + MV3.101 Bus 117 + + + + + 1 + c38210ae-9a95-58d2-e250-4d7dd689cc3f + MV3.101 Bus 39_2 + + + + + + 1 + a9cc61ad-183b-2fbc-5471-2c0d345e7c2e + MV3.101 busbar1B + + + + + 1 + 210de821-3e75-d2e9-2385-6f0bda3bacb9 + Cubicle_MV3.101 SGen 70 + + + + + + 1 + cb398ca9-c669-ce08-7c83-f09c07ab2f42 + MV3.101 busbar2B + + + + + 1 + 267d534f-9f9f-c59c-c69f-a41c929351b5 + Cubicle_MV3.101 MV Storage 92 + + + + + + 1 + c13ba9b0-fde3-43a3-369a-782e0851d801 + MV3.101 Bus 113_2 + + + + + + 1 + 2c359592-4150-808d-36e9-9f1b0bcb373f + MV3.101 Bus 18 + + + + + 2 + c69ec5b0-69b5-f118-1bf8-5e6033d9c3b5 + MV3.101 Bus 124_1 + + + + + + 1 + 21aacf95-55af-e87e-094f-56d3f8a4bf78 + MV3.101 busbar2A + + + + + + 1 + 4cc151bc-5630-0733-85b3-6ac73d40bafe + MV3.101 Bus 127 + + + + + 1 + bf905eba-6831-523c-0ecf-0931fadc51ed + Cubicle_MV3.101 MV Storage 11 + + + + + + 1 + 988cddbf-adc0-424c-02d5-72b086946625 + MV3.101 Bus 30 + + + + + 2 + 20b01619-35ac-1bbf-b5c7-912e3af627c7 + MV3.101 Bus 134_1 + + + + + + 1 + 29ced2f2-1714-f49f-1ed3-297ea682d95a + Cubicle_MV3.101 SGen 8 + + + + + + 1 + b2bdffa9-6f21-e19b-0a3d-5103bb240665 + MV3.101 Bus 14 + + + + + 2 + 283dfa94-9aaa-1ef1-007e-f9d5fa368581 + HV1 Bus 26 + + + + + + 1 + 64c7b804-11a0-b517-82b2-4c61edd37b3a + MV3.101 Bus 33 + + + + + 1 + c99295c9-1f88-8576-0398-10b9b592eeac + Cubicle_MV3.101 SGen 81 + + + + + + 1 + 2a62f122-94f6-6cc9-32f0-4c2e5ccd2eed + MV3.101 Bus 64_2 + + + + + + 1 + 19c4bef4-efa9-3875-300c-060518163c81 + MV3.101 Bus 136 + + + + + 1 + ca47c1ec-c2b3-55d3-cf0d-89ac5ff0fd0d + Cubicle_MV3.101 SGen 102 + + + + + + 1 + 2d74a056-0c8b-3ff2-7ae3-22dd2a056ee4 + MV3.101 Bus 134_2 + + + + + + 1 + d42adf23-3bad-9d68-0c53-eb22d9c808e7 + MV3.101 Bus 126 + + + + + 1 + ca62a5be-f2e4-c07c-f9e3-fa86691cd9e5 + Cubicle_MV3.101 MV Storage 3 + + + + + + 1 + 2dbe165a-50a2-05a2-c4ab-a67a8a0de05a + MV3.101 Bus 106_2 + + + + + + 1 + c1b5bd15-d1b1-aa6c-ed24-70ec89381e9c + Cubicle_MV3.101 MV Storage 20 + + + + + + 1 + c558ed04-5f97-c3b4-9863-71114d02c4e8 + MV3.101 Bus 50 + + + + + 1 + 2bd09a90-f0bb-0afa-e324-629c1649766f + MV3.101 Bus 57_2 + + + + + + 1 + 2f2d9b9d-b650-c7c4-3745-22bf7630b942 + Cubicle_MV3.101 MV Storage 112 + + + + + + 1 + cae249ed-46d8-a27e-0303-4f20a2618792 + MV3.101 Bus 80_2 + + + + + + 1 + e5fe6f71-8ee0-8c67-78b9-84cdee636138 + MV3.101 Bus 71 + + + + + 1 + c6c5ae8a-98d3-e69b-1d7d-427a70f994cb + Cubicle_MV3.101 SGen 15 + + + + + + 1 + fa525567-5fd1-99c3-1cbf-af3109df892c + MV3.101 Bus 69 + + + + + 1 + c0bcf9bd-3d6d-bcbe-b316-7339813fd877 + Cubicle_MV3.101 MV Storage 115 + + + + + + 1 + c5634055-2305-cde4-0bfe-2430dbd96855 + Cubicle_MV3.101 MV Storage 62 + + + + + + 1 + 9effa9c0-e398-21bb-d047-ce6805332095 + MV3.101 Bus 131 + + + + + 1 + 2030e960-240d-59fa-13f1-87a86a0c7058 + MV3.101 Bus 74 + + + + + 1 + 2f35f267-c642-42f2-57d6-6bcb6d5d4978 + MV3.101 Bus 73_2 + + + + + + 1 + 80158d5d-fbdb-dadd-26a7-6e055ef120e1 + MV3.101 Bus 118 + + + + + 2 + c7a6fe1f-7fe3-a253-e059-84c5893435ef + MV3.101 Bus 40_1 + + + + + + 1 + a98296d7-c850-d184-2e58-a4f538d85793 + MV3.101 Bus 107 + + + + + 1 + 28e1e605-8f19-3598-5955-524afce12c6b + Cubicle_MV3.101 SGen 44 + + + + + + 1 + 0e1d4efa-7376-0e12-c762-d2555be84ea8 + MV3.101 Bus 116 + + + + + 1 + 2ab39c54-feb5-4820-2a12-b7c4224083b2 + Cubicle_MV3.101 MV Storage 73 + + + + + + 1 + c5b108c0-0f33-b792-1054-a7efdde80be6 + MV3.101 Bus 122_2 + + + + + + 1 + d27ad437-af77-4621-3e64-ae4c1da74a3c + Cubicle_MV3.101 SGen 24 + + + + + + 1 + 30afa392-a2a6-63ef-b556-5de5961fc6b3 + Cubicle_MV3.101 MV Storage 85 + + + + + + 1 + ba40642e-054f-175c-c46b-396ae9012a38 + MV3.101 Bus 96 + + + + + 1 + ce041802-10cc-857e-bffe-c84a218f0a26 + Cubicle_MV3.101 SGen 130 + + + + + + 1 + d1932c69-2db3-cee7-ea26-7999a7f1e37b + MV3.101 Bus 79_2 + + + + + + 1 + c78cfc96-20b9-9283-af5d-3dfd1f61a3f8 + MV3.101 Bus 75 + + + + + 1 + 08b391f0-3a13-d3eb-d457-1e0a4850cbba + MV3.101 Bus 139 + + + + + 1 + 2a551891-f767-69f1-09a2-d504707035c6 + MV3.101 Bus 95_2 + + + + + + 1 + c92c22fa-4260-7f18-d9c4-73c38363bbd9 + MV3.101 Bus 103 + + + + + 1 + adde697f-c1fc-a6fc-6229-3d833c292e85 + MV3.101 Bus 115 + + + + + 2 + 289686ec-da58-4f27-6a79-e8f428856385 + MV3.101 Bus 61_1 + + + + + + 1 + 50ea8607-0875-83b0-f109-eae71324655b + MV3.101 Bus 88 + + + + + 1 + 029aa67f-2527-1c66-719b-2dc175e0cc66 + MV3.101 Bus 109 + + + + + 1 + d3748491-4ec0-af0a-6847-f465b8f4906b + Cubicle_MV3.101 SGen 2 + + + + + + 1 + 30497b95-49c7-df79-1e46-4e92505f81c6 + MV3.101 Bus 121_2 + + + + + + 1 + d3a2f0a7-9261-c238-9f96-312f0fd7d394 + MV3.101 Bus 43_2 + + + + + + 2 + d47faf47-8d1f-ec02-3d48-3c9ec21a70bd + MV3.101 Bus 50_2 + + + + + + 1 + 18453b7a-5895-8993-8911-f302722c3ffc + MV3.101 Bus 17 + + + + + 1 + 2afb1092-3bc1-4c64-b874-c3870c76d38f + HV1 Bus 26_HV1 Bus 26_1 + + + + + + 1 + 25593f17-d2be-60fc-3680-4f93e21c33bf + MV3.101 Bus 28 + + + + + 2 + cd394f80-fca8-3acc-e728-1038c33ee0fe + MV3.101 Bus 77_1 + + + + + + 1 + e10f84fb-7870-4f3c-6d9f-18a4c91a6c44 + MV3.101 Bus 85 + + + + + 1 + d0832a98-a91e-08e4-3fcb-51cc167a1833 + Cubicle_MV3.101 SGen 33 + + + + + + 2 + 3251f8eb-a375-1404-1872-46806e705e6b + MV3.101 Bus 51_1 + + + + + + 1 + 1c68e2b1-b319-8c45-42b0-91e21cc62c76 + MV3.101 Bus 110 + + + + + 2 + d555b26b-1a9b-8068-45b8-db6606015922 + MV3.101 Bus 35_1 + + + + + + 1 + facc8cea-da8a-7fe1-4dae-58fd868f7a8e + MV3.101 Bus 41 + + + + + 1 + cf542360-c5c7-ba4c-1d11-92896c657c37 + Cubicle_MV3.101 SGen 94 + + + + + + 1 + d06c3d53-144c-9846-1a65-aa1135f69e32 + Cubicle_MV3.101 MV Storage 97 + + + + + + 1 + 4fb81c35-89ba-99d3-73dd-3571ffa1c6b1 + MV3.101 Bus 101 + + + + + 1 + 28f77713-0a43-4313-a0e0-b6f9bbb78f33 + Cubicle_MV3.101 MV Storage 132 + + + + + + 1 + d08f48e3-1322-a96f-c0cf-486b5248e41f + Cubicle_MV3.101 SGen 60 + + + + + + 1 + d06d0be5-29d0-06b1-5a9c-c8c435830c90 + Cubicle_MV3.101 MV Storage 40 + + + + + + 2 + cd364419-731d-38b8-5905-20c9f79511c4 + MV3.101 node2_MV3.101 busbar1B + + + + + + 2 + 27fa06f3-79fb-3a68-f4c3-187c6f1bdbba + MV3.101 Bus 69_1 + + + + + + 1 + 9bcd1c43-4890-432b-eef3-ae0afecaa630 + MV3.101 Bus 42 + + + + + 1 + cf52d80b-e2b3-d965-e552-7a0c6cf95a4e + Cubicle_MV3.101 MV Storage 83 + + + + + + 1 + 2d7980ae-9ef1-ac8d-179e-090e7cf43fba + Cubicle_MV3.101 MV Storage 21 + + + + + + 1 + 9fc1c345-f312-79e6-5c12-8d289864d42a + MV3.101 Bus 130 + + + + + 1 + a5e42825-ae34-80e0-9055-46c20a2dbf62 + MV3.101 Bus 119 + + + + + 1 + 2e37a314-3847-34cf-c37b-a108903e62e7 + MV3.101 Bus 68_2 + + + + + + 1 + 438ea5ae-e0c9-81f9-b221-d450353e4c7e + MV3.101 Bus 70 + + + + + 1 + d0cafec8-765f-2beb-7926-76044b91466d + Cubicle_MV3.101 SGen 12 + + + + + + 2 + 281fed85-cbb3-edac-61cf-f6e26f23cb82 + MV3.101 Bus 60_1 + + + + + + 1 + 7c339274-48f4-610e-854d-113b70719246 + MV3.101 Bus 81 + + + + + 1 + e9dd3f8c-c947-22cf-8a48-5249f7b6f928 + MV3.101 Bus 53 + + + + + 1 + e6a2bb3f-90d3-f097-608d-2ed33ead4ee6 + MV3.101 Bus 137 + + + + + 1 + 8fe53187-71c9-e212-9c8b-0d2d2b39718d + MV3.101 Bus 54 + + + + + 1 + 0f0c23ce-5bb7-158a-82e9-e99d13035727 + MV3.101 Bus 46 + + + + + 2 + 298f4692-7d47-57b8-8f5e-57c910633621 + MV3.101 Bus 44_1 + + + + + + 1 + 1d971927-703d-bd8d-d8c2-12bd716a2848 + MV3.101 Bus 61 + + + + + 1 + 2c2d818b-e214-d9dd-c1d0-8467c383825e + Cubicle_MV3.101 SGen 43 + + + + + + 1 + 2749092d-d2f2-866e-0428-f068696f3d9e + MV3.101 Bus 126_2 + + + + + + 1 + 797d147c-cf32-3a96-78e4-bb74601e8c00 + MV3.101 Bus 89 + + + + + 1 + 2a87e787-2be6-3cad-01b7-27f0d4689952 + Cubicle_MV3.101 SGen 101 + + + + + + 1 + d5d14602-a1dd-c614-cf8f-d96703513618 + MV3.101 Bus 61_2 + + + + + + 2 + 29a2dd0f-f591-ca08-961d-2e096fb0a1f1 + MV3.101 node1_MV3.101 busbar2A + + + + + + 1 + fda9cd97-be02-a3e7-184e-0ab797d9766c + MV3.101 Bus 38 + + + + + 1 + d3eeae39-bf9d-c0ea-dd45-2bdd5e8aa356 + MV3.101 Bus 75_2 + + + + + + 1 + 27875b17-4c58-b63d-cb40-710deb947c15 + Cubicle_MV3.101 MV Storage 106 + + + + + + 1 + cd8f3842-6b74-3d92-ee6e-1ba7484feeac + Cubicle_MV3.101 SGen 88 + + + + + + 1 + 161ed45c-957f-5b48-c793-d067d493d9ee + MV3.101 Bus 19 + + + + + 1 + cd61baac-dd69-d8cf-78fb-545b22012430 + MV3.101 Bus 29 + + + + + 1 + d58d96ae-cd2f-4dc4-c546-bf8ee44564b5 + MV3.101 Bus 93_2 + + + + + + 1 + 2776127b-a2bd-8eed-ca73-f213b8fb6495 + Cubicle_MV3.101 MV Storage 114 + + + + + + 1 + 0d1f6ca3-b0fd-2174-032b-c3da93e40afd + MV3.101 Bus 77 + + + + + 2 + 33ac2b71-8962-fd54-28f8-3da7680ac71f + MV3.101 Bus 143_2 + + + + + + 1 + ee5b4e4a-d34e-2a08-f8f4-61a1e1efd939 + MV3.101 Bus 62 + + + + + 1 + d492da0a-a35e-f265-ae9c-af33cd0a917d + Cubicle_MV3.101 MV Storage 78 + + + + + + 1 + e1aeee38-162a-e89e-72e3-d6150c0e31b5 + MV3.101 Bus 93 + + + + + 1 + 36508147-9404-4e27-495c-6907329e78e8 + MV3.101 Bus 58_2 + + + + + + 1 + d6596382-39e4-cb39-dd80-ad9f3f1de18c + Cubicle_MV3.101 MV Storage 108 + + + + + + 1 + 19bf2623-3362-a92c-2812-caf1c8123285 + MV3.101 Bus 63 + + + + + 1 + 39c886c3-329a-9572-b28d-9f80a9382e35 + Cubicle_MV3.101 SGen 63 + + + + + + 1 + 4e929881-4893-9f7e-1c38-5a59bbba6eda + MV3.101 Bus 55 + + + + + 1 + 3c179143-d5ee-26d3-5416-b8dbf7c0d1cf + Cubicle_MV3.101 SGen 9 + + + + + + 1 + d6dff019-93d6-11b6-1f62-bdfb54cb8b19 + MV3.101 Bus 23_2 + + + + + + 1 + 2ce74ee9-2cf4-d9f2-e6f8-398e03a13e2a + MV3.101 Bus 94 + + + + + 2 + 3ad3b5f4-835c-c156-7a72-c0c485eac57a + MV3.101 Bus 55_1 + + + + + + 1 + d00410aa-65f2-7305-8be8-fb28fa416125 + Cubicle_MV3.101 MV Storage 129 + + + + + + 2 + 34192bfa-ab37-2156-9705-1ffcc837a1d3 + MV3.101 Bus 88_1 + + + + + + 1 + d9acc72f-2ddc-be4f-8cac-80e2692f6da7 + Cubicle_MV3.101 MV Storage 48 + + + + + + 1 + c80ce1c9-09ab-2311-3954-a0dd7d8d9dea + MV3.101 Bus 15 + + + + + 1 + 36342de4-c9cb-320b-8767-4f5f92e86499 + Cubicle_MV3.101 SGen 97 + + + + + + 1 + d8823c65-491d-803e-c026-c0f1dac4ccee + Cubicle_MV3.101 MV Storage 80 + + + + + + 2 + 39208d16-c902-c75a-ca0c-c7a240365bc7 + MV3.101 Bus 16_1 + + + + + + 1 + dbdeb82d-4104-0634-cf75-1958847b6113 + Cubicle_MV3.101 SGen 112 + + + + + + 1 + dc7ff8a2-f147-8ef1-3da7-752f522f81a6 + MV3.101 Bus 49_2 + + + + + + 1 + 3c51700a-35d8-2c84-7505-b661fae68ccc + Cubicle_MV3.101 SGen 123 + + + + + + 2 + db0f47c7-3488-8e4c-ca66-acb541181faa + MV3.101 Bus 129_1 + + + + + + 1 + 2c08b81a-9188-ce5f-acf6-30c82281051f + MV3.101 Bus 142 + + + + + 1 + 3ad01e74-e616-31e4-3649-9cf7ba331d64 + Cubicle_MV3.101 SGen 56 + + + + + + 1 + db649623-02ab-1fcc-f8f1-5024980762ec + Cubicle_MV3.101 MV SGen 1 + + + + + + 1 + 70640f50-73dc-ed53-1683-40399de170f8 + MV3.101 Bus 22 + + + + + 1 + 606777b8-9bd8-2e12-b65c-cb7b5c59a40a + MV3.101 Bus 87 + + + + + 1 + 9ca21680-9cd0-7920-eeda-93acf03391c1 + MV3.101 Bus 102 + + + + + 1 + 3cf82f87-69a3-c0d6-a737-81ebae6b4582 + Cubicle_MV3.101 MV Storage 45 + + + + + + 1 + 8740357d-eb7e-1be5-dbd0-59bc675f4396 + MV3.101 Bus 48 + + + + + 2 + 3d3b7dab-3fac-c6d5-660f-fe23e1ecedd0 + MV3.101 Bus 120_1 + + + + + + 2 + de1aadc8-0136-ddbd-cae7-7c26f617de26 + MV3.101 Bus 31_1 + + + + + + 2 + 33e0ceca-c1b6-7a63-fc49-53ccb3171b62 + MV3.101 Bus 49_1 + + + + + + 1 + d833746c-1e93-db44-2094-e92e3fa90b26 + Cubicle_MV3.101 SGen 28 + + + + + + 1 + 350f447a-20c3-c013-d65b-09316163b8f3 + Cubicle_MV3.101 MV Storage 49 + + + + + + 2 + dc8298e7-63d9-1135-83ea-3342b27b87d6 + MV3.101 Bus 76_1 + + + + + + 1 + 3c1b5201-36dc-080b-0c1e-1902d99aae44 + Cubicle_MV3.101 SGen 117 + + + + + + 1 + d8614517-68f6-f4f2-ad9a-13076c3c7738 + Cubicle_MV3.101 SGen 118 + + + + + + 1 + 3dafbbca-ef93-2f28-565b-d29e06e24565 + Cubicle_MV3.101 MV Storage 133 + + + + + + 1 + d8780ed5-02d3-76dc-d4b8-46263cc71b79 + Cubicle_MV3.101 MV Storage 101 + + + + + + 2 + 3e58e523-683b-7749-7285-fadda3bb3565 + MV3.101 Bus 121_1 + + + + + + 1 + 3e7435b9-cd8d-b915-65af-e88ec3ca7d8b + MV3.101 Bus 44_2 + + + + + + 1 + ddd602d4-3759-453e-8dba-54c84baa627e + Cubicle_MV3.101 SGen 64 + + + + + + 2 + 3e7a486f-1912-7439-e843-bf4e8c19d581 + MV3.101 node2_MV3.101 busbar2B + + + + + + 1 + dae0813f-43b5-5201-bd76-4519d7d20314 + Cubicle_MV3.101 SGen 83 + + + + + + 1 + 395921fd-b78e-a1a2-b07f-4a8a7e06e2b3 + HV1 Bus 25 + + + + + + 1 + dacccbdf-ddf0-9642-3777-81c12941dc37 + Cubicle_MV3.101 SGen 4 + + + + + + 1 + 339f4cdb-2610-50a0-860c-6dfc8becf4ad + Cubicle_MV3.101 MV Storage 1 + + + + + + 1 + 3d700036-22d9-6ad8-6d89-6d8f1a762c63 + MV3.101 Bus 29_2 + + + + + + 2 + 3541f01e-347c-6577-c888-af353a06ab44 + MV3.101 Bus 113_1 + + + + + + 1 + defcde90-3da8-3e54-ce5a-a0a641661a81 + MV3.101 busbar1B_3 + + + + + + 1 + 37ed3433-29c9-c6ae-fa9f-a2e0f9cd88b4 + Cubicle_MV3.101 MV Storage 33 + + + + + + 1 + 3a836b65-eee1-976c-bcae-cf9ca0c0e40c + Cubicle_MV3.101 SGen 55 + + + + + + 2 + 33ec5672-4727-af7b-4bd0-5a1db319b4b7 + MV3.101 Bus 18_2 + + + + + + 2 + da6fe4d6-b2da-67e9-c556-3105f429eb40 + MV3.101 Bus 18_1 + + + + + + 1 + dc4c7f79-851b-77a0-129e-810d8f86835c + Cubicle_MV3.101 MV Storage 94 + + + + + + 1 + 36109f7c-12e5-dcad-1ce7-bc5403b2016d + Cubicle_MV3.101 SGen 29 + + + + + + 2 + dc797da0-9553-8e59-f989-068bd31d4d0f + MV3.101 Bus 43_1 + + + + + + 2 + dd5244b8-0787-4a3f-343a-90319065b3dc + MV3.101 Bus 73_1 + + + + + + 1 + db01a6bc-3ed5-f993-2ccc-fed66df8cd91 + Cubicle_MV3.101 MV Storage 131 + + + + + + 2 + ddda976e-d5c8-3d6b-b26a-de6e699615e0 + MV3.101 Bus 117_1 + + + + + + 1 + d8a1267b-6bb6-88a1-12a4-177ab3971736 + Cubicle_MV3.101 MV Storage 109 + + + + + + 1 + d948fb37-fae0-d98e-6c09-338a92256a48 + Cubicle_MV3.101 SGen 98 + + + + + + 1 + 458454b1-c554-03dd-b67c-6b09d6d62868 + Cubicle_MV3.101 SGen 30 + + + + + + 1 + 460663d2-79f5-4ba4-aa8a-f7a2d79b3cb2 + Cubicle_MV3.101 SGen 5 + + + + + + 2 + 4244e9de-295d-7198-bebc-85432b8b261c + MV3.101 Bus 27_1 + + + + + + 1 + d7caae19-aa31-6c48-f586-546fe3b3ebc5 + MV3.101 Bus 139_2 + + + + + + 1 + 46466fc8-7395-6c35-8072-e823a8eac7cc + Cubicle_MV3.101 SGen 85 + + + + + + 1 + ddfbc53e-7dfa-4b7d-e500-b0554a8298b5 + HV1 Bus 25_HV1 Bus 25_1 + + + + + + 1 + de0a515c-3324-2584-8b81-9ceb36063599 + MV3.101 Bus 15_2 + + + + + + 1 + 46df6cc7-811f-fd88-edc1-18bf0c96ece4 + MV3.101 BS busbar1A_2 + + + + + + 1 + 47141f82-1577-9e7a-f5a0-446dc0246e6c + MV3.101 Bus 56_2 + + + + + + 1 + d98b3a20-570c-143b-0d73-b2ab498adf5c + Cubicle_MV3.101 MV Storage 96 + + + + + + 1 + 41b49ad4-fcdb-9bdf-42c8-bbd57e9d277b + Cubicle_MV3.101 MV Storage 103 + + + + + + 2 + e432fae8-8a01-52b9-63a1-14dfcf08abac + MV3.101 Bus 133_1 + + + + + + 2 + 438fc965-0fca-e8f7-c264-cef633fadbc4 + MV3.101 Bus 106_1 + + + + + + 1 + e2dbdb9c-b48f-242c-c55a-d38bd2d5bba6 + Cubicle_MV3.101 SGen 6 + + + + + + 1 + e1cfe29b-6024-f2c0-d8ed-c6b23c5bcfe8 + Cubicle_MV3.101 MV Storage 89 + + + + + + 2 + 43a85767-744c-86a4-e94c-a1cd90ff68b3 + MV3.101 Bus 65_1 + + + + + + 1 + 460470ba-9946-d3b9-a52e-d5404188ecf2 + Cubicle_MV3.101 MV Storage 15 + + + + + + 2 + 47aae71c-3507-4543-9450-c336dcf0d50b + MV3.101 Bus 11_1 + + + + + + 1 + e41f2e0d-3a8f-1aa2-f29d-085a1d89eb89 + Cubicle_MV3.101 SGen 22 + + + + + + 2 + 4198c9dc-0bc1-c398-e8e9-3180d49c3fe3 + MV3.101 Bus 40_2 + + + + + + 1 + 41b7a038-4169-db67-cc75-7c06343df655 + Cubicle_MV3.101 MV Storage 130 + + + + + + 1 + e8e04abf-5d4d-4346-54aa-a1c6977e8ca7 + Cubicle_MV3.101 MV Storage 68 + + + + + + 2 + e263722d-6d34-c35c-84e1-e5f46071475a + HV1 Bus 25_1_HV1 Bus 25 + + + + + + 1 + e7806651-14fb-8c26-712e-e302e9a0d1fb + MV3.101 Bus 131_2 + + + + + + 1 + e2972b74-9939-a016-1044-724b138782f7 + Cubicle_MV3.101 MV Storage 44 + + + + + + 1 + 3f6f2be5-0960-3df4-31a9-ea60ea9b5a44 + Cubicle_MV3.101 SGen 58 + + + + + + 1 + e4e680f2-475b-4c37-36be-e84d298457a4 + Cubicle_MV3.101 SGen 59 + + + + + + 1 + 45a265e3-4c01-24bf-7777-88806cc6c36f + Cubicle_MV3.101 SGen 107 + + + + + + 1 + e5568350-8764-aa43-e3f7-6b728a19e552 + MV3.101 Bus 54_2 + + + + + + 1 + 3f037cee-2a90-b293-d5ce-65ea666566cc + Cubicle_MV3.101 SGen 99 + + + + + + 1 + 42021e28-1126-35c2-96d3-d98ba156e76d + Cubicle_MV3.101 MV Storage 113 + + + + + + 1 + e8f71633-ba16-e09a-7096-b343af738fe7 + MV3.101 Bus 17_2 + + + + + + 2 + e9370aeb-c944-d85f-1610-784ea8a9081c + MV3.101 Bus 26_1 + + + + + + 1 + e4736606-14e7-e05e-d048-4f31394ac247 + Cubicle_MV3.101 SGen 42 + + + + + + 1 + 40e2e60a-77b1-a8be-af31-58d00af64a5f + Cubicle_MV3.101 MV Storage 125 + + + + + + 1 + e9322be5-78c9-4b93-f24c-1335e0f9c482 + Cubicle_MV3.101 MV Storage 41 + + + + + + 1 + e9af8037-a11e-afbd-9fdd-36d0b9dedbab + Cubicle_MV3.101 SGen 114 + + + + + + 1 + 4296a1da-05a0-a52b-9c10-3d22f9d0c964 + Cubicle_MV3.101 SGen 45 + + + + + + 2 + 445bfea2-3e03-afb7-09de-83b94bbc3454 + MV3.101 Bus 42_1 + + + + + + 2 + 41925e5c-38f2-fdb4-3e81-4637a03f23db + MV3.101 Bus 82_1 + + + + + + 2 + ea1766d3-802b-bd12-6b19-6bacde5f4dc0 + MV3.101 Bus 30_1 + + + + + + 1 + 4e7cb5ad-99a0-74fd-c7c0-9fdb61a52b3f + MV3.101 Bus 92_2 + + + + + + 1 + e8086e53-d780-4329-cf0b-25d7107ea101 + Cubicle_MV3.101 SGen 75 + + + + + + 2 + 53506186-0aef-e22b-dd61-9261dd693b36 + MV3.101 Bus 15_1 + + + + + + 1 + e926ccb9-db42-4369-8c84-e8f367f1bb5c + Cubicle_MV3.101 MV Storage 76 + + + + + + 2 + 51a36fd5-738c-8b00-1e3f-714d1d231091 + MV3.101 Bus 38_1 + + + + + + 1 + ea19ea16-6357-ae18-3cba-544ceb87d543 + MV3.101 Bus 27_2 + + + + + + 1 + 523e0713-bdd9-2f80-8ea5-9eb0d6e7509d + Cubicle_MV3.101 SGen 132 + + + + + + 2 + e39a8c43-2a91-4085-810a-37483a374410 + MV3.101 BS busbar1A_3 + + + + + + 1 + 4adde88c-8a27-3a93-f4cc-e6c7a9803264 + Cubicle_MV3.101 MV Storage 87 + + + + + + 1 + e3b0c5e9-32b4-9089-f7b4-957d8108fd5c + MV3.101 Bus 36_2 + + + + + + 1 + 5379ac02-fa9a-caa9-37b2-6f86a0fe6ec4 + Cubicle_MV3.101 SGen 119 + + + + + + 1 + 4b5aa8a8-b41a-74fb-c680-ee34e0125431 + Cubicle_MV3.101 MV Storage 52 + + + + + + 2 + e7023644-7a2b-7f27-7ecc-3ca66aba14e6 + MV3.101 Bus 91_1 + + + + + + 1 + 50d674ce-b7dd-049a-0529-7823ba5e9cc5 + Cubicle_MV3.101 SGen 21 + + + + + + 2 + e186a641-48ce-8461-bc0d-25bbb17329d6 + MV3.101 BS busbar1C_3 + + + + + + 1 + 50c135cb-06f2-af5f-beb1-ee44f82a1565 + Cubicle_MV3.101 SGen 105 + + + + + + 1 + e36ae6ea-8b95-d2f6-2ba3-29c1cf3c7d55 + Cubicle_MV3.101 SGen 61 + + + + + + 1 + 51267b66-f7ba-31ab-a299-58154d715504 + Cubicle_MV3.101 SGen 111 + + + + + + 1 + 558551f1-138c-f9c5-a3b5-81e06621a030 + MV3.101 Bus 97_2 + + + + + + 1 + 5086012f-7a73-da3b-0c13-269d33af91bf + Cubicle_MV3.101 SGen 3 + + + + + + 1 + e66123c8-fae6-0621-fb70-0e7c9e0fc835 + Cubicle_MV3.101 MV Storage 7 + + + + + + 2 + 5612e3f9-ebf8-8a8c-69ac-68348191bf5e + MV3.101 Bus 28_1 + + + + + + 1 + e17bd05d-fc36-9706-d176-33644c9a83fb + MV3.101 Bus 66_2 + + + + + + 1 + 56630f49-6666-94a5-7a3c-e6ad90394261 + Cubicle_MV3.101 MV Storage 90 + + + + + + 1 + 5671ab5e-c40c-92ec-969e-46f564a7da91 + MV3.101 Bus 114_2 + + + + + + 1 + e8d5abbf-04e2-c9a1-8d4b-a9e0d9b810ad + Cubicle_MV3.101 SGen 13 + + + + + + 2 + 4d09cb1a-a571-e0fa-fbf1-2be6afd4c0fd + MV3.101 Bus 87_1 + + + + + + 2 + 4d2530ae-9141-258f-8333-3968a892add4 + MV3.101 Bus 24_1 + + + + + + 1 + e2c8bd5f-1292-18c8-4afa-6c3dcd9fa205 + MV3.101 Bus 31_2 + + + + + + 1 + f033757d-5443-808f-ec99-df930cd53c02 + MV3.101 Bus 38_2 + + + + + + 1 + ee13e771-f413-39a4-0cae-f26c3dc991ea + Cubicle_MV3.101 SGen 47 + + + + + + 1 + 53f8230c-d6e8-81d5-bbcb-44cec6830092 + Cubicle_MV3.101 SGen 62 + + + + + + 1 + edad674c-222c-51c1-2368-86ad82017cc9 + HV1 Bus 26_1 + + + + + + 1 + f02aa75a-2f65-9a12-ce4d-96d7cb3a6a37 + MV3.101 Bus 107_2 + + + + + + 1 + effac11e-7daa-d5f4-00d1-2b303b7263cd + Cubicle_MV3.101 MV Storage 86 + + + + + + 1 + eb9e60d4-793a-63c1-bdb8-e6930306c2aa + MV3.101 Bus 115_2 + + + + + + 1 + 4f0fd920-bc17-d741-cdc2-dc848fa08805 + Cubicle_MV3.101 MV Storage 50 + + + + + + 1 + f351d380-adba-f37c-6c87-1dac92ee7640 + Cubicle_MV3.101 SGen 96 + + + + + + 1 + ec278fd1-f75d-436a-7ffc-88b5187f9374 + Cubicle_MV3.101 SGen 25 + + + + + + 2 + 4d0cb209-22ed-a098-6de1-de0dbe6220e2 + MV3.101 Bus 59_1 + + + + + + 1 + ead0c11d-041a-e0e4-36e2-086896e6dbcc + MV3.101 busbar1A_2 + + + + + + 1 + 552a20d9-5f29-8a61-114c-218dbd3411af + Cubicle_MV3.101 MV Storage 28 + + + + + + 1 + ec11da23-a919-304a-685b-5186c5ac6d6a + Cubicle_MV3.101 MV Storage 34 + + + + + + 1 + 5177ffa7-f78d-57c6-bf33-814e83a0aebb + Cubicle_MV3.101 SGen 7 + + + + + + 1 + f3a192a2-e537-e212-d07f-257a485c79b9 + MV3.101 Bus 21_2 + + + + + + 1 + 4c32dc06-26fc-cdcf-28ac-ddf2edd810a3 + Cubicle_MV3.101 MV Storage 47 + + + + + + 1 + eb7ec44a-04ca-fd5a-c660-65be488df4ca + MV3.101 Bus 83_2 + + + + + + 1 + 5077b926-58b2-8b71-e0c5-9fce7df50664 + Cubicle_MV3.101 SGen 65 + + + + + + 2 + f0be6870-9c28-5746-f796-aec663759e63 + MV3.101 Bus 58_1 + + + + + + 1 + 4dce3fcb-e1a2-197e-6fa9-d8d451c7a817 + Cubicle_MV3.101 MV Storage 24 + + + + + + 2 + eb3d13c1-2d7e-b826-10fc-8d024cc99f93 + MV3.101 Bus 96_1 + + + + + + 1 + 4f14fd02-9716-e8d0-4dc7-c74255de0f3b + MV3.101 Bus 85_3 + + + + + + 1 + f0b185be-ba1f-98c9-7d2c-7b428fc7cef2 + Cubicle_MV3.101 MV Storage 120 + + + + + + 1 + 4abc4189-b38b-a529-683c-e4e79c403865 + MV3.101 Bus 26_2 + + + + + + 1 + eafa99af-6107-c071-3b10-45679aef4aff + Cubicle_MV3.101 MV Storage 128 + + + + + + 1 + 4c46194e-530c-3e07-9e85-0977417c8149 + Cubicle_MV3.101 SGen 92 + + + + + + 2 + 4f9c0aa8-8c16-248f-6468-7e212566a75b + MV3.101 Bus 92_1 + + + + + + 1 + f407b46b-8b76-fe81-3737-4fdc1b867c1b + Cubicle_MV3.101 SGen 77 + + + + + + 1 + eabec60d-606d-979c-335a-4d0b7a64b1db + Cubicle_MV3.101 SGen 20 + + + + + + 1 + 52198e84-cc3d-3507-a09b-b3f3eede126a + Cubicle_MV3.101 MV Storage 5 + + + + + + 2 + ecdc5aa9-5e2b-7df8-4201-219e1c69005e + MV3.101 Bus 81_1 + + + + + + 2 + 50a20b18-8aa8-94d1-51a5-0ed5dfba02a5 + MV3.101 Bus 89_1 + + + + + + 1 + 4e26d90a-e1f8-f0f2-e2ac-18e68110ed67 + MV3.101 Bus 48_2 + + + + + + 1 + efeed631-f4ee-6345-badc-dc842de9b51a + Cubicle_MV3.101 MV Storage 104 + + + + + + 1 + ebc0faf7-fc01-71a2-e88b-1eea06fb2c76 + Cubicle_MV3.101 MV Storage 6 + + + + + + 2 + ef6123cb-1c2b-734b-abe0-c0076dfa43a9 + MV3.101 Bus 14_1 + + + + + + 1 + 521b7282-05ec-2465-ada1-f519e187b460 + MV3.101 Bus 74_2 + + + + + + 1 + 5c75408c-79b8-0d04-4ef4-5db88e68b5ff + Cubicle_MV3.101 SGen 128 + + + + + + 1 + efd2e61d-14ed-0a40-5302-bfcef9395fed + MV3.101 Bus 123_2 + + + + + + 1 + 5cfc6a0b-b774-6037-e64c-9f553c3e78ac + Cubicle_MV3.101 MV Storage 31 + + + + + + 1 + 625596bf-26e8-d577-92b0-6b14ecdb2d51 + Cubicle_MV3.101 SGen 121 + + + + + + 1 + 5d27f329-5b02-c853-6b56-79bba11182c5 + Cubicle_MV3.101 SGen 90 + + + + + + 1 + ec034c8f-80b8-7b15-fba4-0384070851de + MV3.101 Bus 130_2 + + + + + + 1 + 56c46b9a-35cb-1042-9467-c352621ebf06 + MV3.101 Bus 108_2 + + + + + + 1 + 59ddc28d-1040-0dbc-70f1-2fe7cb7e1244 + Cubicle_MV3.101 SGen 51 + + + + + + 1 + 5e252f4c-4be9-7eb1-195b-901c3ac8b4a5 + Cubicle_MV3.101 SGen 26 + + + + + + 1 + ee3755d1-65d6-7927-eb97-82230d9cb39e + MV3.101 Bus 117_2 + + + + + + 1 + 5929303b-9988-31c6-8b5c-270cfe0fd064 + MV3.101 Bus 90_2 + + + + + + 2 + eae8bf41-ae54-7be1-6f9b-6e7127b98cff + MV3.101 Bus 99_1 + + + + + + 1 + ec71893a-1894-0b24-cd4b-3c7ef30b85a2 + MV3.101 busbar2B_1 + + + + + + 1 + 5a4dcab9-ca92-4285-7b7a-321996526b8e + Cubicle_MV3.101 MV Storage 91 + + + + + + 1 + 5b423404-d35b-02b1-6e03-8bd8ecfb9be5 + MV3.101 Bus 129_2 + + + + + + 2 + f6be7cea-e825-5794-fbdb-52ee3d8e4ff2 + MV3.101 Bus 79_1 + + + + + + 1 + fa34cb7f-e229-075a-cd96-8a6006cedfb6 + MV3.101 Bus 84_2 + + + + + + 1 + fb7ab1b9-2328-5d33-c61d-ce3431b812e2 + Cubicle_MV3.101 MV Storage 2 + + + + + + 1 + 5ce1d5c5-a335-a1f1-d8a8-a8bc7b3ad76d + Cubicle_MV3.101 MV Storage 82 + + + + + + 1 + 5d3649f8-338d-d563-ad8e-5bf4a82f5eef + MV3.101 busbar2A_MV3.101 node1 + + + + + + 2 + faf4fb9c-4dbe-0356-3335-8e66e300fc83 + MV3.101 Bus 54_1 + + + + + + 2 + 5796f54f-1622-3540-9f11-c60b04b8183f + MV3.101 Bus 101_1 + + + + + + 1 + 57f26f6b-f93a-4a6e-24ef-3e194a4f7bfd + Cubicle_MV3.101 MV Storage 39 + + + + + + 1 + 5dc4216f-29fa-b442-86bf-4d9cac41a527 + MV3.101 Bus 88_2 + + + + + + 1 + 5ff5c6df-4769-e09d-c545-b63be0412ba5 + Cubicle_MV3.101 MV Storage 93 + + + + + + 1 + fddfed37-c910-a7dd-4d2a-6bdfd231665d + MV3.101 Bus 127_2 + + + + + + 2 + fe377b24-18b0-5988-f91c-6730861b65fa + MV3.101 Bus 23_1 + + + + + + 2 + 5e75803e-d898-c17c-9d04-3c39a76eb877 + MV3.101 Bus 70_1 + + + + + + 2 + f62f7367-5e46-1709-6462-63a5d9df8b6d + MV3.101 Bus 83_1 + + + + + + 2 + 6006a2fd-ff7a-8385-d2b0-72463e08e880 + MV3.101 Bus 138_1 + + + + + + 1 + feca40e7-16e8-1edc-8143-3579218da502 + Cubicle_MV3.101 MV Storage 26 + + + + + + 2 + 60c3060a-f75f-c2ba-bb95-83f0fa4658ac + MV3.101 Bus 72_1 + + + + + + 2 + f8c6a4ae-208f-9a9f-5746-357f24da9ee4 + MV3.101 Bus 141_1 + + + + + + 1 + f9fcebca-6781-2671-4321-df570db95e62 + Cubicle_MV3.101 SGen 89 + + + + + + 2 + 60022443-7906-ea5d-823a-848184ab1c2d + MV3.101 Bus 123_1 + + + + + + 1 + f52dadf3-53b3-f635-eb91-4fb51a693654 + Cubicle_MV3.101 SGen 129 + + + + + + 2 + 5ebf562c-c528-61f5-3f75-8933e1643cdd + MV3.101 Bus 115_1 + + + + + + 1 + fa5957cd-5c42-5fd5-78da-447a4848709d + Cubicle_MV3.101 SGen 125 + + + + + + 1 + 572ede0e-22e2-0ccf-7788-5fa6a71c7510 + MV3.101 Bus 16_2 + + + + + + 1 + f514ae87-6a05-7d9b-16f6-b986610692b0 + Cubicle_MV3.101 MV Storage 111 + + + + + + 1 + fb294655-07c9-a829-e871-0411fcbcb4d8 + Cubicle_MV3.101 MV Storage 42 + + + + + + 1 + fbc1a15e-3adb-cfec-e11a-2aa3e1f67b54 + Cubicle_MV3.101 MV Storage 72 + + + + + + 1 + 58345b40-ff3d-a96f-5f5d-0542691382e7 + Cubicle_MV3.101 MV Storage 81 + + + + + + 1 + 6124ae12-71f5-8666-dce2-f48b3fa31db6 + Cubicle_MV3.101 MV Storage 16 + + + + + + 1 + f94d5312-2b2f-4aba-717d-6b4a8e1013b3 + Cubicle_MV3.101 SGen 74 + + + + + + 1 + 589bf9e9-f356-dd35-b293-1381354e8ad4 + Cubicle_MV3.101 MV Storage 63 + + + + + + 1 + 5d049c7c-c967-3aa4-f86b-5af77fb6b14a + MV3.101 Bus 109_2 + + + + + + 2 + 619fe5d1-dff6-c2d1-1048-65cb6f70af85 + MV3.101 Bus 37_1 + + + + + + 2 + 5a51f296-8d87-2217-9521-70a5896aedb3 + MV3.101 Bus 142_1 + + + + + + 1 + 62113284-a3bd-1eee-ad24-aeaf4e8a71cf + MV3.101 Bus 103_2 + + + + + + 1 + 5bb22438-ed7b-07f1-e6b4-513f590e7713 + MV3.101 Bus 81_2 + + + + + + 1 + 6abc5275-4eca-d998-7044-2cdd3a90c2c1 + Cubicle_MV3.101 MV Storage 107 + + + + + + 1 + 696da7b5-ca29-6467-d398-0ddc7c143459 + Cubicle_MV3.101 SGen 106 + + + + + + 1 + 6ae12780-467b-0ed4-b236-ba9553918f4d + MV3.101 Bus 125_2 + + + + + + 1 + 661a5ae9-9fb6-a305-ed90-ca3cb78eb17c + MV3.101 Bus 112_2 + + + + + + 2 + 6e16a0da-00e3-0511-743b-34e2efa5d610 + MV3.101 Bus 19_1 + + + + + + 2 + 6e98590b-2586-c0d5-fae8-0d80486f45db + MV3.101 Bus 135_2 + + + + + + 2 + 6774f972-6045-8a2b-ecc7-2ae7d12d107b + MV3.101 Bus 32_1 + + + + + + 2 + 67b59be0-1831-b720-9279-39acea193f94 + MV3.101 Bus 45_1 + + + + + + 2 + 62e534b9-d9bb-a25e-1838-7c819b6f14f9 + MV3.101 Bus 50_1 + + + + + + 2 + 631262ca-49bf-6f37-a7fd-af13a408732a + MV3.101 Bus 78_1 + + + + + + 1 + 6e1b6a10-a29e-e73e-732f-e26423e4eed7 + Cubicle_MV3.101 SGen 127 + + + + + + 1 + 6f2127d9-2e12-7a6f-0259-6694fe792550 + MV3.101 BS busbar1C_2 + + + + + + 2 + 6294a60e-ff31-25ab-9015-5a33ebd795c5 + MV3.101 Bus 68_1 + + + + + + 1 + 66284338-8e75-5139-b390-2c1cf896d3a9 + Cubicle_MV3.101 MV Storage 100 + + + + + + 2 + 6bda133e-6ace-df6b-2be3-a6cacb462cbf + MV3.101 Bus 127_1 + + + + + + 1 + 6f760755-28d3-2f21-fe2a-42c557cf2122 + Cubicle_MV3.101 SGen 79 + + + + + + 1 + 6d40eeee-7c12-aaf8-c664-c6960c09022f + Cubicle_MV3.101 SGen 19 + + + + + + 1 + 6be4a7cd-c583-d004-f46b-2ffc59b419e0 + Cubicle_MV3.101 SGen 18 + + + + + + 1 + 78fcbc1c-cad3-92ff-f0c4-d8c7ec60c7f6 + MV3.101 busbar1B_MV3.101 node2 + + + + + + 1 + 7a6872c5-f4f5-65b8-e437-5457bd3b7881 + Cubicle_MV3.101 SGen 48 + + + + + + 2 + 7a85f179-806a-2908-1860-e450dee1edfa + MV3.101 Bus 21_1 + + + + + + 1 + 709ae4ba-d916-e93d-407a-6b0c6c191227 + MV3.101 Bus 24_2 + + + + + + 1 + 7a8f1ed3-4d2c-b966-7d47-3cbd6f9b192a + Cubicle_MV3.101 MV Storage 127 + + + + + + 2 + 7009e443-496d-e780-eaab-eee30daa5c02 + MV3.101 Bus 29_1 + + + + + + 1 + 7afa1273-5023-4175-4a75-eb250327243e + MV3.101 Bus 67_3 + + + + + + 1 + 7b441529-d7a2-bc2a-f047-d670172e9905 + Cubicle_MV3.101 SGen 36 + + + + + + 2 + 758f1c57-ab13-972a-3cc4-5d0d071f2224 + MV3.101 node1_MV3.101 busbar1A + + + + + + 1 + 73b0011b-6895-3ee7-7595-9eb88011e51d + Cubicle_MV3.101 MV Storage 30 + + + + + + 1 + 74453759-fd32-e807-ca73-1095d79b9849 + Cubicle_MV3.101 MV Storage 51 + + + + + + 1 + 74b73927-5cdc-02f9-1aa1-ad084b18fbb1 + Cubicle_MV3.101 SGen 23 + + + + + + 1 + 72c406aa-941e-f89a-e9c9-4b9d913a62bb + Cubicle_MV3.101 MV Storage 60 + + + + + + 2 + 72e31efe-6f1b-3114-f4e4-e621fa3f0aa8 + MV3.101 Bus 68_3 + + + + + + 1 + 7724f13e-6acd-3924-fa87-d18e2d13925c + Cubicle_MV3.101 MV Storage 116 + + + + + + 1 + 79100914-c98f-d364-683d-a56837a2655b + MV3.101 Bus 137_2 + + + + + + 1 + 79a41143-2ca6-5bb2-1694-89b3f742cd62 + MV3.101 Bus 51_2 + + + + + + 1 + 729dfaa1-02f8-c914-68cd-e3875936aeb2 + Cubicle_MV3.101 MV Storage 121 + + + + + + 1 + 6fdb16f7-c337-d409-7667-1033e00228f8 + MV3.101 Bus 111_2 + + + + + + 1 + 71f96e96-edc4-78d9-1a09-7a32320224e3 + MV3.101 Bus 41_2 + + + + + + 1 + 7049e950-39c1-86fd-3fad-d4e2b43534a7 + MV3.101 busbar1B_2 + + + + + + 1 + 719f2b5f-63c3-d24e-b54f-16c659ca46d1 + MV3.101 Bus 11_2 + + + + + + 1 + 708384cb-c90a-c2c4-5ea5-df48b666ac92 + Cubicle_MV3.101 MV Storage 119 + + + + + + 2 + 74640d3f-7adc-0445-6138-5199d147b086 + MV3.101 Bus 90_1 + + + + + + 2 + 78b24674-3196-020a-1933-b9de61288962 + MV3.101 Bus 119_1 + + + + + + 2 + 7a1d47d2-6950-6f87-8536-dc2a84e5d8c1 + MV3.101 Bus 64_1 + + + + + + 2 + 70c35b5b-345b-2f58-6040-1a99ad0674a8 + MV3.101 Bus 126_1 + + + + + + 1 + 75165eca-aca4-0386-a412-7af941fe1613 + Cubicle_MV3.101 SGen 35 + + + + + + 2 + 742037f3-2622-b8c0-0237-206bbce78c26 + MV3.101 Bus 94_1 + + + + + + 1 + 7711bb4f-2f3b-bdc3-3696-3ac21f2cca2a + Cubicle_MV3.101 MV Storage 9 + + + + + + 1 + 789dfa92-d536-dc87-8786-fadd154cec2f + Cubicle_MV3.101 SGen 46 + + + + + + 2 + 7dc1d91a-34cf-fcef-ba62-a9cf5dd09061 + MV3.101 Bus 12_1 + + + + + + 1 + 7c3878ba-30ab-fde9-5de2-bff179af8a7c + MV3.101 Bus 25_2 + + + + + + 1 + 7bbc2c08-a072-6a6e-29c1-7a7b70975db5 + Cubicle_MV3.101 MV Storage 118 + + + + + + 1 + 7f5a4492-f628-1650-4b00-ae15ccef71fa + MV3.101 Bus 140_2 + + + + + + 1 + 8310887d-021f-33ae-9ccd-2cbdef83d633 + Cubicle_MV3.101 SGen 80 + + + + + + 1 + 83658c0c-1653-af60-7d75-89c07c4f15a5 + Cubicle_MV3.101 MV Storage 95 + + + + + + 1 + 8266266a-00ba-231b-6729-dc8ac4884fdd + Cubicle_MV3.101 SGen 124 + + + + + + 1 + 82c24c4c-e467-a8e7-e352-0b6169399ac2 + MV3.101 busbar2B_3 + + + + + + 1 + 842b691e-534f-c220-fe9b-78ec26471b16 + Cubicle_MV3.101 SGen 72 + + + + + + 2 + 8530d66c-3b7a-4930-f26b-db35d1d10759 + MV3.101 Bus 109_1 + + + + + + 1 + 85379848-4c28-5a02-da84-3cfb4959e86e + Cubicle_MV3.101 SGen 86 + + + + + + 1 + 8732f982-a57b-bf82-7793-614c181487be + MV3.101 BS busbar1C_1 + + + + + + 1 + 7c80b102-e9b7-78bc-1cd1-1de5f426877a + MV3.101 Bus 124_2 + + + + + + 2 + 806a7664-54cf-9102-e892-01b55d285997 + MV3.101 Bus 112_1 + + + + + + 1 + 87d1ac1b-db59-9631-5382-4a09e91d61a6 + MV3.101 Bus 33_2 + + + + + + 1 + 7f366279-fc9c-847a-d116-c25acb9254fb + Cubicle_MV3.101 SGen 14 + + + + + + 1 + 81e58b3f-9d63-7ace-b81e-d4e4486c4c91 + Cubicle_MV3.101 SGen 52 + + + + + + 1 + 86c2d9fc-c0c5-3fe2-fb2d-dc6d6668dc80 + MV3.101 Bus 105_2 + + + + + + 1 + 7eae793c-cd0d-ac0c-c443-09f6f1d5754c + MV3.101 busbar2A_1 + + + + + + 1 + 8297cb19-10e5-c9e6-0e2d-4aadf5b3f44c + MV3.101 Bus 110_2 + + + + + + 1 + 841f3746-5e53-cabf-81e3-f6592774695d + Cubicle_MV3.101 SGen 133 + + + + + + 2 + 8f8c3714-55a3-2ebe-14ac-4df1ab821b8e + MV3.101 node2 + + + + + + 2 + 908cb193-fe44-3a73-2a16-669019d9a925 + MV3.101 Bus 56_1 + + + + + + 1 + 92696597-d7c9-a888-1129-832a4182485f + MV3.101 busbar2B_2 + + + + + + 1 + 8b2991ca-6a98-d6a6-0600-f9eb734b10ee + MV3.101 Bus 32_2 + + + + + + + f850238c-f84f-4897-bdeb-771b7df05859 + MV3.101 Bus 57 + + + + 9419011d-c734-4215-8f34-1a3078929efa + MV3.101 Bus 139 + + + + 8ad2eb76-0d91-4e4e-8879-5e90719a3d66 + MV3.101 Bus 71 + + + + 8b651b2b-b9ad-4a66-a172-e780f899e3ec + MV3.101 Bus 69 + + + + 493809de-7e08-40ff-be99-47f53ce3f878 + MV3.101 Bus 108 + + + + 8eafe60f-b54d-4afe-8f95-cf99b45c7661 + MV3.101 Bus 96 + + + + 8ea3f854-e9d0-4bce-8ca5-72765ae6e0a4 + MV3.101 Bus 115 + + + + f9a540c7-6530-42e7-ba69-08471c52ba2e + MV3.101 Bus 34 + + + + 91f567cf-7015-44df-98d9-290cf8577fa4 + MV3.101 Bus 75 + + + + 88fb3857-642b-4385-b79f-413b9a22c113 + MV3.101 Bus 107 + + + + 8a8fe016-455c-4e83-9536-3b8ece50b1f2 + MV3.101 Bus 74 + + + + 05fc49b1-4624-4f62-8cfc-92ba254b4c2f + MV3.101 Bus 39 + + + + 01bf6446-353d-4bfd-9dde-c4013ae4908f + MV3.101 Bus 138 + + + + 99499d7e-14be-48a4-a73d-409dad804407 + MV3.101 Bus 41 + + + + 99829bfc-e0c0-4281-87b8-0638d4d596da + MV3.101 Bus 85 + + + + 98e941d7-e2a3-4221-b2d1-d2d2f678837e + MV3.101 Bus 17 + + + + 94ef1d6f-c935-454c-bbd7-7428f97e1967 + MV3.101 Bus 103 + + + + 05148239-d1a3-422e-b6e1-2c94587b1bb0 + MV3.101 Bus 12 + + + + 98dcb55f-0324-4f63-ab3c-7832f551c1e9 + MV3.101 Bus 109 + + + + 9929a35c-44bc-42cd-bee3-7fa097b38385 + MV3.101 Bus 110 + + + + 0eb36c8b-ad4a-4665-b58f-7514e0743ffa + MV3.101 Bus 25 + + + + 96be00af-612c-409a-9ee6-9f25173b7276 + MV3.101 Bus 88 + + + + 9b2cb1af-9c63-4bc6-8496-1461b2b368bd + MV3.101 Bus 28 + + + + 9db30325-f94d-4805-9f4b-46ec89ad2908 + MV3.101 Bus 81 + + + + 08854483-a14a-4c60-9580-b498bb808e63 + MV3.101 BS busbar1B + + + + 9fc00385-f75f-42ae-94a5-3213189f07cd + MV3.101 Bus 101 + + + + a3b19e75-095d-48d8-b3eb-97e584f61ace + MV3.101 Bus 46 + + + + 0dd37da7-4bab-4469-9fe3-6f856758d6c2 + MV3.101 Bus 120 + + + + 0f00fa13-830c-4ead-82fb-6dc4d43f7f56 + MV3.101 Bus 68 + + + + 083a20a8-0749-4dc5-9d67-61feb3b01a66 + MV3.101 Bus 23 + + + + 0ac3aef6-e7eb-4b1b-a756-20df24046052 + MV3.101 Bus 114 + + + + a3268f7b-ce16-47e7-bd5c-846bcb30bc32 + MV3.101 Bus 42 + + + + 100b2786-91d0-435a-8d07-6e66f8840a48 + MV3.101 Bus 141 + + + + a4169edc-4f74-4e6a-b281-39b3501be261 + MV3.101 Bus 89 + + + + a42054f8-4cd0-4413-961b-68c55408da72 + MV3.101 Bus 54 + + + + a1dd8fe8-853c-4687-808b-85785734f2d7 + MV3.101 Bus 119 + + + + 9ff7aa88-4227-4372-a4b6-3bce5e3b5375 + MV3.101 Bus 130 + + + + a394393e-e53c-4582-b6a4-ed44f0f3d303 + HV1 Bus 26_1 + + + + a60f0fae-5f99-484c-8e87-0f8a7df10af3 + MV3.101 Bus 53 + + + + a5ee946d-deca-4bc1-b650-35f63814155e + MV3.101 Bus 137 + + + + a72bbf9c-ca8c-4b6a-8fb4-da105abd820b + MV3.101 Bus 61 + + + + a057799b-5fe0-4fde-aa9e-0b7cef3dd98c + MV3.101 Bus 70 + + + + aafccde9-9868-4c9c-8aae-e96eac154c7f + MV3.101 Bus 19 + + + + 1b99a885-38ce-4320-bdf7-bf47d06425e4 + MV3.101 Bus 24 + + + + a859096f-f201-4c92-a431-a3c53379e127 + MV3.101 Bus 29 + + + + a94dde67-c5ab-48d6-8f58-6ee48e374917 + MV3.101 node2 + + + + ac4abc49-1649-466f-9336-1afde32eb18e + MV3.101 Bus 62 + + + + 13786f3b-0907-4a12-8f70-be134cc454cc + MV3.101 Bus 92 + + + + 1658c1f6-15f0-41e1-85a4-f100c4a9d5ae + HV1 Bus 25 + + + + bacb25bd-aed7-4d83-b7d9-adad69f3640a + MV3.101 Bus 63 + + + + bf30f9ad-836f-4922-be9c-c20780ff8766 + MV3.101 Bus 94 + + + + bb637b39-6e2c-40cc-81a4-c88c0bf6858f + MV3.101 Bus 38 + + + + 17d0bd8d-5774-4924-9dd6-db13fd44e437 + MV3.101 busbar2A + + + + 198f5e74-85b7-4d57-aad8-dc6061db7fda + MV3.101 Bus 133 + + + + bab55e0f-ec86-435e-b7e7-a8fb457ce5c6 + MV3.101 Bus 77 + + + + ba47c0c6-d29a-4909-bcc6-17334ebf95e3 + MV3.101 Bus 93 + + + + c005bdba-9e17-4736-91ea-6f0fa9d224f6 + MV3.101 Bus 15 + + + + 1f2f2ce0-31a4-4501-b2b4-3b500e889bc3 + HV1 Bus 25_1 + + + + ca187211-ddc3-491f-ab63-9342b429be25 + MV3.101 Bus 87 + + + + 20e4c2cb-e6ef-4f52-bb0b-30f2101d2a45 + MV3.101 Bus 13 + + + + 2394558f-c996-4dba-97bb-b2a993ff6f6a + MV3.101 Bus 72 + + + + 1f854102-0b31-43fc-b1f9-ab20b026df79 + MV3.101 Bus 66 + + + + 20b18083-b918-4a86-b48a-9837a1e57c3d + MV3.101 Bus 59 + + + + c3bc99b2-717f-4998-a319-fbd5f50b3c0e + MV3.101 Bus 142 + + + + 1d97b37b-63c2-4b9b-b699-c90a35d6b2b2 + MV3.101 BS busbar1A + + + + 1e3be0a0-2b67-4fbc-aef8-42a7cf41ae53 + MV3.101 Bus 95 + + + + 20e37a82-c74d-4e55-8428-133232a1b080 + MV3.101 Bus 90 + + + + c6cd3fbd-932d-4a90-b6db-8dda8c77376a + MV3.101 Bus 55 + + + + 25e10699-f9cf-48aa-9021-6c4efd5ebadf + MV3.101 Bus 56 + + + + 2a87f20e-a5f7-46c1-bd28-a7f511617cc7 + MV3.101 Bus 143 + + + + 2d609811-bd6b-479f-847e-62b279b15799 + MV3.101 Bus 129 + + + + 2a0fad9f-bce6-40da-a6a3-439b936327e0 + MV3.101 Bus 104 + + + + c0e13d93-d2fb-425c-bd2a-dd7aabb5b151 + MV3.101 Bus 22 + + + + 2d4da6a1-dd22-4bb8-b3d6-d1e566616a3c + MV3.101 Bus 76 + + + + 2a120d9a-b238-45d1-9211-d8e13775b300 + MV3.101 Bus 36 + + + + 2f6da21b-fe2c-48fa-b69b-857ffa003159 + MV3.101 node1 + + + + 30f2fc8b-dc4a-4c3b-92bf-7e937f533754 + MV3.101 Bus 65 + + + + 30f991b8-5e7f-451c-ae1d-6c5766cfaca1 + MV3.101 Bus 47 + + + + d42c837b-242d-4b46-a5c9-ff6b1b535994 + MV3.101 Bus 43 + + + + 2ab3daee-4c3e-4d47-bf33-267425641fb1 + MV3.101 Bus 106 + + + + d596185f-800c-4602-a2ac-372a7b670292 + MV3.101 BS busbar1C + + + + d1ca8b4f-b34f-4920-87ec-89558b26943b + MV3.101 Bus 48 + + + + d2ddc782-b15c-43c3-ab1d-dce619a6632c + HV1 Bus 26 + + + + 3a11123d-6f23-4592-bf45-a291e18d2e91 + MV3.101 Bus 84 + + + + 3d558efa-1400-4bf7-9c84-6f647b950138 + MV3.101 Bus 16 + + + + dbee21f7-48fa-4775-be96-b0c244dad683 + MV3.101 Bus 40 + + + + 3a8c8be0-a5d5-4c3e-afa3-f49ad03d5952 + MV3.101 Bus 20 + + + + deb849a9-523a-4893-b204-c081f291415a + MV3.101 Bus 45 + + + + d9297530-a740-4f1b-94d7-a98889d80cad + MV3.101 busbar1A + + + + 38e4dbc9-c8bb-4c6e-858b-9362ba073945 + MV3.101 Bus 78 + + + + dab46b6b-7a9e-407b-9313-7a88167a6e72 + MV3.101 Bus 91 + + + + 36807b95-dd41-49b6-bb9a-f54e1844cb1b + MV3.101 Bus 44 + + + + ddc0bc00-5914-4554-9dc3-d5adf531b51e + MV3.101 Bus 32 + + + + dbe86e42-89c7-4a9e-ab23-d4c7969ae622 + MV3.101 Bus 122 + + + + 469053b3-c972-4e80-823d-143e1f0d21db + MV3.101 Bus 49 + + + + 46e293d1-067e-4b3a-90e3-ca7126eaef94 + MV3.101 Bus 128 + + + + dab0c089-e8c6-4180-86ea-a134cce6dfc3 + MV3.101 Bus 102 + + + + deece471-37ad-4cf6-958c-27a76eaaf900 + MV3.101 Bus 27 + + + + e5e01892-57a7-4ac7-b611-e260e29e5294 + MV3.101 Bus 82 + + + + 48567f53-6bc4-4c3f-b768-2b609dccb4eb + MV3.101 Bus 37 + + + + e7e4a362-7ded-4e55-b3c4-90058eab52de + MV3.101 Bus 97 + + + + e8f3e0ea-ae0e-4aee-9321-1179b3c5df5d + MV3.101 Bus 121 + + + + e6eb554e-a499-474b-b7cd-60906fe882f4 + MV3.101 Bus 11 + + + + e8d3fd3d-b628-4b9c-9c72-a5538702b839 + MV3.101 Bus 26 + + + + e96916bc-3c5c-464f-808e-8cf0fd6af8e3 + MV3.101 Bus 100 + + + + e21e87dc-5b81-4caa-8990-35936b9828b8 + MV3.101 Bus 86 + + + + 52685ea1-8e94-480d-b652-3229a99265fe + MV3.101 Bus 113 + + + + 4c7e4de2-004a-40de-b457-e442fdecc544 + MV3.101 Bus 67 + + + + 4cf234a3-d7d0-41b6-9128-343f64a22edd + MV3.101 Bus 79 + + + + ea1b7d5f-c078-47a0-82f5-8c667c5bbe42 + MV3.101 Bus 58 + + + + eabb7d88-4945-4d1c-9594-01b06149afa4 + MV3.101 Bus 132 + + + + f18e8cf0-cd6e-46a0-ba80-4e2a74d960d2 + MV3.101 Bus 124 + + + + f0f29e04-7a02-4552-8e44-796e82a521fc + MV3.101 Bus 140 + + + + f223b98b-9fa9-411f-bc29-4b8ac596f469 + MV3.101 Bus 99 + + + + 51d44ca5-8fcf-4f39-bbba-c6753a9a5fc9 + MV3.101 Bus 98 + + + + eeb342f7-599b-4007-beda-c6c120869a7e + MV3.101 Bus 83 + + + + 4c7b3e60-9cc4-414d-937f-77cde7aa1b87 + MV3.101 Bus 73 + + + + f184c6eb-0413-4e65-8fc1-0974fb145da7 + MV3.101 Bus 80 + + + + f24b1f30-a37d-4dab-bcc4-02e032f5a426 + MV3.101 Bus 125 + + + + ee658230-42c4-48b3-a552-6bd8c85ae825 + MV3.101 Bus 135 + + + + 5727c59c-5686-4f80-ba0e-9a2075951c2e + MV3.101 Bus 64 + + + + f4cb2904-c462-4970-92e0-957588878bf3 + MV3.101 Bus 112 + + + + f3a12af4-d249-4473-b1e2-4be79c9fd09f + MV3.101 Bus 51 + + + + 5757b833-2dc6-4aad-bd6a-baeed16a08c3 + MV3.101 Bus 105 + + + + 5c312ef4-0dc6-4505-be0a-fcb5a64d2107 + MV3.101 Bus 123 + + + + 5c1d93eb-3f1e-4d2f-a873-e6e601b65eb5 + MV3.101 Bus 52 + + + + 57e9812d-8adf-4555-b53e-7b011d6822e3 + MV3.101 Bus 21 + + + + f59f8fd7-d0ed-448b-8fff-8229ec31113a + MV3.101 Bus 31 + + + + f7e7edbe-6da0-41ce-8e06-5f428bbe2e11 + MV3.101 Bus 35 + + + + 5abadde9-feca-4004-a41d-f8b3f46b58f0 + MV3.101 Bus 111 + + + + 6a85b34e-8c3a-40a3-bffa-2db0e2b3931a + MV3.101 Bus 117 + + + + 646289ac-d642-4555-bf82-2d7ee2d3c14e + MV3.101 Bus 127 + + + + 63c3a42f-485d-46fe-9018-a8a5e973c5f5 + MV3.101 Bus 134 + + + + 63063958-ef0f-49d3-b30e-12d95d551664 + MV3.101 Bus 60 + + + + 6e31ecd6-4293-4632-bd05-8dd831d48f1f + MV3.101 busbar2B + + + + 697d3134-684b-4bea-99c4-55451fe2d77d + MV3.101 busbar1B + + + + 723f0678-cc8a-44c6-a7a5-6e42d11d2b20 + MV3.101 Bus 18 + + + + 78b74d38-bee6-4cb1-9237-2ad48849aa73 + MV3.101 Bus 14 + + + + 7b476a15-4f7d-4188-8e77-6986db123157 + MV3.101 Bus 33 + + + + 7ecda507-933c-48ac-9f1e-9da76137d19c + MV3.101 Bus 136 + + + + 7f74da1d-ed25-4065-9d78-e5e3d7059dbf + MV3.101 Bus 126 + + + + 7be1a845-3cee-4db0-9b39-06ae853af02f + MV3.101 Bus 30 + + + + 81827045-e0d8-47fb-a232-617b1a3f663f + MV3.101 Bus 131 + + + + 7c3650d3-57bd-4fde-80ea-720b5d09efdd + MV3.101 Bus 50 + + + + 8a0319ae-a0a3-435a-b096-4c8099c94c52 + MV3.101 Bus 116 + + + + 8c1b77e0-9de9-4c53-a9c7-f4de788fe765 + MV3.101 Bus 118 + + + 9b06547c-12fa-8e54-92b1-fadbe466f554 + high limit for MV3.101 Bus 109 + + + 10.55 + + + 82a921e4-a89e-32e5-600b-bf817bafbdfd + high limit for MV3.101 Bus 17 + + + 10.55 + + + 6f7200c4-9be9-06c5-1829-600d04445323 + low limit for MV3.101 Bus 88 + + + 9.65 + + + a99d1c99-cb8e-d372-d2c9-03a58d423497 + high limit for MV3.101 Bus 110 + + + 10.55 + + + 19bbcf92-6bd7-6d06-c91e-944f473a0b6e + low limit for MV3.101 Bus 110 + + + 9.65 + + + 2d1ef18b-14e7-cb3d-06d4-7de217dac9aa + low limit for MV3.101 Bus 17 + + + 9.65 + + + af114445-f28a-0b0f-1425-54c71524f353 + high limit for MV3.101 Bus 41 + + + 10.55 + + + 8a929a02-5b88-6cdb-2184-47a2e98dbf30 + low limit for MV3.101 Bus 109 + + + 9.65 + + + 505f30fd-dd82-bdd5-c616-686d976ede5b + low limit for MV3.101 Bus 103 + + + 9.65 + + + 9ab6a83c-6011-1541-639c-3b7288663387 + low limit for MV3.101 Bus 41 + + + 9.65 + + + 2f323c50-3af9-2662-fcfd-59d3932bc08d + high limit for MV3.101 Bus 81 + + + 10.55 + + + e75528a7-7274-a292-5681-137cdde6564f + low limit for MV3.101 Bus 70 + + + 9.65 + + + 4e3e7958-f361-00d3-9fcc-7072941db481 + high limit for MV3.101 Bus 70 + + + 10.55 + + + 14ec198e-a82f-7c93-44c9-4873e727e7be + low limit for MV3.101 Bus 85 + + + 9.65 + + + 793be1eb-ef56-1b71-a53c-f1110f2ab862 + low limit for MV3.101 Bus 81 + + + 9.65 + + + a31f46d7-caea-2518-bd77-09ee71f343b4 + low limit for MV3.101 Bus 130 + + + 9.65 + + + b9946b41-4342-cab1-b116-42f309598134 + high limit for MV3.101 Bus 28 + + + 10.55 + + + 4c9b13a4-2928-bd17-5d23-5c27a3e58eae + low limit for MV3.101 Bus 28 + + + 9.65 + + + bf4f36ca-d17f-a535-66c1-cb10fb6c8198 + low limit for MV3.101 Bus 101 + + + 9.65 + + + bab20dce-2c59-ef2f-8edb-11b6e41b77d5 + high limit for MV3.101 Bus 130 + + + 10.55 + + + b747e665-9221-4ba6-1ad8-8ebbc005c293 + high limit for MV3.101 Bus 101 + + + 10.55 + + + d9ea9a75-8676-4771-0883-6ff7772ba640 + high limit for MV3.101 Bus 85 + + + 10.55 + + + 05a28e11-3b3b-b439-1f4e-efd3bb3a36cf + high limit for MV3.101 Bus 137 + + + 10.55 + + + 4820682a-5513-0273-d137-b0f340ae7c98 + low limit for MV3.101 Bus 137 + + + 9.65 + + + d7f0dd3d-43f1-a86a-fd4d-496c1f7362a5 + low limit for MV3.101 Bus 46 + + + 9.65 + + + 8c05daa9-97c9-6adc-4fb3-0a7cdb52272c + high limit for MV3.101 Bus 89 + + + 10.55 + + + b03f86b1-681f-57f2-8202-7c7d77ef2e28 + low limit for MV3.101 Bus 119 + + + 9.65 + + + 2f3c7b47-e064-6dd3-0ff9-e318ed2c13f2 + high limit for MV3.101 Bus 119 + + + 10.55 + + + a9c5cb8c-2ba9-0e0f-0749-ec89338eaf2b + high limit for MV3.101 Bus 42 + + + 10.55 + + + 4c2b26e1-ad18-540b-c0a6-18a2c7b56679 + low limit for MV3.101 Bus 89 + + + 9.65 + + + 716df6e0-b92e-4b5d-f069-9a80be1d2656 + high limit for MV3.101 Bus 54 + + + 10.55 + + + 122c046f-3512-10bf-4c31-1af43f50c469 + low limit for MV3.101 Bus 54 + + + 9.65 + + + c3a385d2-1208-e069-1e73-c3aabd1f1767 + low limit for MV3.101 Bus 42 + + + 9.65 + + + 51b3615f-4194-cbd6-43cf-b1fe1e91ca1c + high limit for MV3.101 Bus 46 + + + 10.55 + + + afca703a-6264-ba65-b31b-0b4e555bb0db + low limit for MV3.101 Bus 19 + + + 9.65 + + + 3756362c-04fa-f5d8-38f2-31a6c3544f42 + high limit for MV3.101 Bus 53 + + + 10.55 + + + dccf705b-329f-58b7-37b3-58a5e8cdd8fd + low limit for MV3.101 Bus 62 + + + 9.65 + + + 4e14cbf1-c2b2-4a68-8f72-04f7596ca729 + high limit for MV3.101 Bus 93 + + + 10.55 + + + ab82e5e6-0f75-6c62-0922-1909963aac0d + high limit for MV3.101 Bus 61 + + + 10.55 + + + fc37a282-5a1d-98d1-9206-8587963e1e32 + low limit for MV3.101 Bus 53 + + + 9.65 + + + ed54a94d-500c-a29d-dfe6-6e68d95d7138 + low limit for MV3.101 Bus 61 + + + 9.65 + + + b3e93cbb-6566-dc6c-fb14-4307bed0c765 + high limit for MV3.101 Bus 29 + + + 10.55 + + + 65dbadb1-41c5-1562-b0ae-5bb94199559a + high limit for MV3.101 Bus 19 + + + 10.55 + + + 3035d52d-85a2-8e0c-3da4-d74d40960b7c + high limit for MV3.101 Bus 62 + + + 10.55 + + + 8347ea73-ac40-37fd-dadd-1cbf6ffc2c58 + low limit for MV3.101 Bus 29 + + + 9.65 + + + 17c3c15e-e219-9381-ef53-5e0c2315d1ec + low limit for MV3.101 Bus 15 + + + 9.65 + + + ebcc2b7e-7380-c563-c948-a727444313fc + high limit for MV3.101 Bus 94 + + + 10.55 + + + 8f46a40c-a014-4798-c85c-540c9fe5b7dd + high limit for MV3.101 Bus 63 + + + 10.55 + + + 3097a0bc-5b35-5dae-8eb4-325eac27f12f + high limit for MV3.101 Bus 38 + + + 10.55 + + + 339f49b8-ab47-369a-05bf-da94c6435d9c + low limit for MV3.101 Bus 63 + + + 9.65 + + + 15f3920c-1b89-1ce5-92b2-e2608817ba36 + low limit for MV3.101 Bus 77 + + + 9.65 + + + df24bd69-03e9-22d2-6c2f-c688c0e7d68c + low limit for MV3.101 Bus 38 + + + 9.65 + + + 7471d44c-f383-8e8c-40d2-e803ab470826 + low limit for MV3.101 Bus 93 + + + 9.65 + + + e575b46d-5858-8aac-6a2a-95aeedb3da1c + high limit for MV3.101 Bus 15 + + + 10.55 + + + b713b194-f468-7a21-1340-3987b30a27a5 + low limit for MV3.101 Bus 94 + + + 9.65 + + + e62a5020-f3ad-b626-7531-50f04bbd1396 + high limit for MV3.101 Bus 77 + + + 10.55 + + + 96cbdfda-68ad-5d74-5754-7424ecb09a5e + low limit for MV3.101 Bus 87 + + + 9.65 + + + 499af853-0b79-9419-112b-952e63894d8c + high limit for HV1 Bus 26 + + + 121 + + + 6e2572f5-1e8e-00f2-6dc7-9b312017bc2f + high limit for MV3.101 Bus 22 + + + 10.55 + + + 3a7cc0f2-7c45-6eb2-c78a-fa701a24227b + low limit for HV1 Bus 26 + + + 99 + + + 05dd0646-35ef-7cee-3fc3-65e0cdce93e7 + low limit for MV3.101 Bus 142 + + + 9.65 + + + 1ddab489-0cc3-9a5e-c472-f906527b1b81 + high limit for MV3.101 Bus 87 + + + 10.55 + + + 3b1afaaa-4741-9477-9776-91918a08abd7 + low limit for MV3.101 Bus 55 + + + 9.65 + + + cf1839f0-40f3-e1ee-108c-887df0e86dad + high limit for MV3.101 Bus 48 + + + 10.55 + + + e0e8f9c7-7f14-7bfa-1845-026010117842 + low limit for MV3.101 Bus 48 + + + 9.65 + + + 94c42d52-9feb-2a71-cd84-8a02ce888051 + low limit for MV3.101 Bus 22 + + + 9.65 + + + f6853508-f9be-719a-f3c1-d357c164c932 + high limit for MV3.101 Bus 142 + + + 10.55 + + + 0b4b6e1f-3e98-9a7d-4995-9fb4f0344026 + high limit for MV3.101 Bus 55 + + + 10.55 + + + cb01bce7-35bf-c54a-0983-a3d17866de9d + low limit for MV3.101 Bus 91 + + + 9.65 + + + e4f8e8d1-d530-373b-1149-4258ccc33b57 + low limit for MV3.101 Bus 122 + + + 9.65 + + + 5565b696-1d2c-14ca-26dc-13b566cd97ae + high limit for MV3.101 busbar1A + + + 10.55 + + + 37e14be2-9cdb-3ecf-715d-ab0394d2f523 + low limit for MV3.101 Bus 43 + + + 9.65 + + + 25d193a9-3314-e1fd-6e57-40e359e16013 + low limit for MV3.101 Bus 102 + + + 9.65 + + + 68cf3556-caae-bb17-42c6-898a6e32c94c + high limit for MV3.101 Bus 43 + + + 10.55 + + + c2bbdc4d-c87e-072f-bc33-40138bc33bb9 + low limit for MV3.101 BS busbar1C + + + 9.65 + + + 3b46c403-b2d6-c041-7d74-88033d15ca75 + high limit for MV3.101 BS busbar1C + + + 10.55 + + + 5a9fb237-f1f1-2360-e70e-c4651fcfa86a + low limit for MV3.101 busbar1A + + + 9.65 + + + d75ddd32-c589-3477-5916-f90b6d7e3e9d + high limit for MV3.101 Bus 102 + + + 10.55 + + + 5fe5286c-8713-48cd-5bf2-16f3955fbe20 + high limit for MV3.101 Bus 91 + + + 10.55 + + + 2baf3e6b-acb4-50d5-f13e-331a8149dfa8 + high limit for MV3.101 Bus 122 + + + 10.55 + + + 1d6508aa-a3b8-41a4-a685-a6d075902091 + high limit for MV3.101 Bus 86 + + + 10.55 + + + f882a38e-6cb4-212b-8c76-aba346ed2146 + low limit for MV3.101 Bus 86 + + + 9.65 + + + c646a185-eabc-fa4b-4701-ccba6c0b5e9d + high limit for MV3.101 Bus 32 + + + 10.55 + + + 0756c90a-2cb4-4481-efa7-b3929b8c49de + low limit for MV3.101 Bus 40 + + + 9.65 + + + 8cd69db9-1e6f-688d-e1e8-c754e8102cb1 + high limit for MV3.101 Bus 82 + + + 10.55 + + + 665b2297-c12e-92ad-6bc2-fba6a4d04ca1 + low limit for MV3.101 Bus 82 + + + 9.65 + + + d1bec58b-1557-2a80-89c1-d30d0f88065c + high limit for MV3.101 Bus 27 + + + 10.55 + + + f6423488-9c56-617e-3d3e-a8c680688712 + low limit for MV3.101 Bus 32 + + + 9.65 + + + 1a8cce79-0076-27fe-90d5-39ac9d305ce6 + high limit for MV3.101 Bus 40 + + + 10.55 + + + 45f273a6-0019-0dc7-dee1-890e51bd52f5 + low limit for MV3.101 Bus 45 + + + 9.65 + + + 03b51c06-bbdc-de9e-85b2-ef72dbab5829 + high limit for MV3.101 Bus 45 + + + 10.55 + + + f3afc4f5-7e3d-64fc-80da-34da24f6d6c0 + low limit for MV3.101 Bus 27 + + + 9.65 + + + 7d46e357-739a-c385-2918-ec415cb17eb6 + low limit for MV3.101 Bus 26 + + + 9.65 + + + 92f045f8-3ff6-0e98-bd8a-fb1b6a307c2d + high limit for MV3.101 Bus 100 + + + 10.55 + + + 32b7ff7c-0ebb-a331-95a0-b1551ecf6214 + low limit for MV3.101 Bus 97 + + + 9.65 + + + 5fc2cae6-2140-8f00-28b2-db3b1e8ab9d3 + low limit for MV3.101 Bus 121 + + + 9.65 + + + 81deeb7a-05fa-d39f-ad1c-b40f109b0a31 + high limit for MV3.101 Bus 11 + + + 10.55 + + + 06d2f1d3-75f4-e651-eb4e-89589fd47a02 + low limit for MV3.101 Bus 11 + + + 9.65 + + + 32b47826-3b06-ec57-b688-950d012776e7 + low limit for MV3.101 Bus 100 + + + 9.65 + + + a1f5a778-6351-12ca-9d02-12b9bc7ad128 + high limit for MV3.101 Bus 58 + + + 10.55 + + + a4a3696e-c1d0-b762-a9fa-d943bd0a4617 + low limit for MV3.101 Bus 58 + + + 9.65 + + + af112c1f-5108-2d17-59c4-1c096d95f120 + high limit for MV3.101 Bus 97 + + + 10.55 + + + aabd08d1-3379-69f2-1089-6dc089209fb8 + high limit for MV3.101 Bus 121 + + + 10.55 + + + a0aec1d0-b882-0a86-7af6-552b399cee90 + high limit for MV3.101 Bus 26 + + + 10.55 + + + 7ed630e6-5983-7655-a554-02c8a82d9436 + high limit for MV3.101 Bus 140 + + + 10.55 + + + ded8fcbd-fd55-ddcc-6d61-96f46843f433 + low limit for MV3.101 Bus 80 + + + 9.65 + + + 83a20fbf-9af9-3538-b442-ea3e7dd36891 + low limit for MV3.101 Bus 135 + + + 9.65 + + + e7976699-228c-f48a-c87b-7a253a2a8b45 + low limit for MV3.101 Bus 140 + + + 9.65 + + + 5a48a5ba-49c3-b62e-a747-9e1a6dbaceb5 + low limit for MV3.101 Bus 132 + + + 9.65 + + + 7e8d77de-e3ba-3b0f-9fb6-9af7e7ea175e + high limit for MV3.101 Bus 80 + + + 10.55 + + + a4ea99b6-ea09-dc1a-5a18-24c0f5deda93 + high limit for MV3.101 Bus 83 + + + 10.55 + + + 6977890d-efe8-533d-fbba-4558e1481237 + high limit for MV3.101 Bus 135 + + + 10.55 + + + 45c99f8d-528a-75eb-af46-8777a6ed7b51 + low limit for MV3.101 Bus 83 + + + 9.65 + + + 726244fc-5122-1d7c-6a81-43ac654aff56 + high limit for MV3.101 Bus 132 + + + 10.55 + + + c7839b29-889a-8c70-86d7-37ee8777e68a + high limit for MV3.101 Bus 31 + + + 10.55 + + + 0df8b0b5-8ada-41c3-63f0-6b6a6f07be10 + low limit for MV3.101 Bus 31 + + + 9.65 + + + aacd5d27-bea6-8430-ba08-a65fdaf94f04 + low limit for MV3.101 Bus 124 + + + 9.65 + + + 31691e10-5eeb-80af-66a8-cc97a1393348 + low limit for MV3.101 Bus 51 + + + 9.65 + + + 898e9782-a8f0-b76e-43c1-3ccbe519c7df + high limit for MV3.101 Bus 51 + + + 10.55 + + + 91e6e67c-409c-3221-0d31-dc472dce6be9 + low limit for MV3.101 Bus 125 + + + 9.65 + + + 50c92aac-5dbf-619d-d1bf-94e3e6f383bf + high limit for MV3.101 Bus 112 + + + 10.55 + + + e6c7e9a9-917f-3078-d33c-4caad85c545f + low limit for MV3.101 Bus 112 + + + 9.65 + + + df87cc9d-874d-e649-65f7-fda1b094fed4 + high limit for MV3.101 Bus 125 + + + 10.55 + + + 6e63d03a-f1f8-3983-7bb1-0f8d3d57ccb2 + high limit for MV3.101 Bus 99 + + + 10.55 + + + d53d522e-22d5-c647-951d-0ed3bbf9f9fd + low limit for MV3.101 Bus 99 + + + 9.65 + + + 3d53142c-00db-e36f-40c6-40cdc746ad49 + high limit for MV3.101 Bus 124 + + + 10.55 + + + 7fd3c91d-6a57-737b-1eab-2b5fb99a58f5 + high limit for MV3.101 Bus 35 + + + 10.55 + + + b817fcac-2513-9baa-218e-bc220fed7a09 + low limit for MV3.101 Bus 57 + + + 9.65 + + + dc1f505f-e502-f113-c761-62cff854f049 + low limit for MV3.101 Bus 35 + + + 9.65 + + + 87bee9bd-ff04-930f-6b33-f4e7ffb67320 + high limit for MV3.101 Bus 138 + + + 10.55 + + + f7db3077-01b0-a9e5-6e46-529c75047fa5 + low limit for MV3.101 Bus 34 + + + 9.65 + + + 1d72edf5-0895-6363-8d72-f4bb906f1777 + low limit for MV3.101 Bus 138 + + + 9.65 + + + d4afc2da-0637-f7b1-9ca1-1bd3bec3a05d + high limit for MV3.101 Bus 34 + + + 10.55 + + + c17544d9-7ddf-2816-e101-9ecf745797b8 + high limit for MV3.101 Bus 57 + + + 10.55 + + + 86cb5b3d-6fae-279d-9d5a-201041d0d50e + low limit for MV3.101 Bus 23 + + + 9.65 + + + 0b6c4952-85b8-6c5a-ca6d-d3987903c472 + high limit for MV3.101 Bus 141 + + + 10.55 + + + 55fcfe6a-7b12-0b13-58d4-f68825a4fb1d + high limit for MV3.101 Bus 39 + + + 10.55 + + + ab7dc914-40da-456f-6932-2494ec8d8bf5 + low limit for MV3.101 Bus 141 + + + 9.65 + + + 9e84bf50-4ebe-d5ab-9000-a6821fba29df + high limit for MV3.101 Bus 23 + + + 10.55 + + + 64ec9d2d-0ae1-3276-f5a1-1a277e1b7ebf + high limit for MV3.101 Bus 12 + + + 10.55 + + + 32206a6b-a6eb-3292-92e9-e0e134645fed + low limit for MV3.101 Bus 39 + + + 9.65 + + + 6a946910-1ab6-5ed9-0da5-657efd0f0af8 + low limit for MV3.101 Bus 12 + + + 9.65 + + + 5b8bf26f-077f-9fc8-6444-e11e2418d447 + high limit for MV3.101 BS busbar1B + + + 10.55 + + + 536749ac-f272-86ca-6840-0e43bfd70448 + low limit for MV3.101 BS busbar1B + + + 9.65 + + + 798564b8-6137-389e-842d-38f864086c81 + low limit for MV3.101 Bus 68 + + + 9.65 + + + 1a4e2a4a-860a-b19d-0885-2e3bfc3d4d53 + high limit for MV3.101 Bus 120 + + + 10.55 + + + 829e7398-1576-e1b7-0379-cbbd2f90e42c + low limit for MV3.101 Bus 120 + + + 9.65 + + + 81b52a91-e643-b473-d0ba-c1c131ca6cea + high limit for MV3.101 Bus 92 + + + 10.55 + + + c6dab436-4d96-88ae-a743-0042fea95f57 + low limit for MV3.101 Bus 92 + + + 9.65 + + + 30030e50-a0e8-6af5-372d-37d58ae7f9b3 + high limit for MV3.101 Bus 68 + + + 10.55 + + + 69d5b75c-f740-f78b-f02c-083ae4ac0430 + low limit for MV3.101 Bus 25 + + + 9.65 + + + d77ce4d9-d628-9fda-d898-1b0bbd00ada3 + high limit for MV3.101 Bus 25 + + + 10.55 + + + 9114da2e-0800-3a1a-437c-120fffc4cde2 + high limit for MV3.101 Bus 114 + + + 10.55 + + + 5af4e9c5-39bb-23f6-1126-d14a760eec69 + low limit for MV3.101 Bus 114 + + + 9.65 + + + c81fffed-af99-4205-2a87-58ea3ea4fd51 + low limit for MV3.101 Bus 24 + + + 9.65 + + + a521ac6f-c5a8-6107-7e78-47578eb4868e + high limit for MV3.101 BS busbar1A + + + 10.55 + + + d7144a71-e42f-065b-da68-812c3c017cd9 + high limit for MV3.101 busbar2A + + + 10.55 + + + 1ad46e7d-7056-0599-4e19-0a905b39b3d9 + low limit for HV1 Bus 25 + + + 99 + + + ed1917e7-f5c9-64a6-7ef3-f0eb0d4a4a2f + low limit for MV3.101 Bus 133 + + + 9.65 + + + bd78eb14-9cf8-9fe9-38f6-981a16ef8a57 + low limit for MV3.101 Bus 95 + + + 9.65 + + + 70295e32-7a22-7dc9-5118-b45e4bbd873f + high limit for MV3.101 Bus 95 + + + 10.55 + + + c1510e10-ab2c-0775-8235-6e0a5a951653 + low limit for MV3.101 BS busbar1A + + + 9.65 + + + 6f4e07b7-ebb6-a25a-1157-8fdb02fd6adb + high limit for HV1 Bus 25 + + + 121 + + + d850430f-f8ec-9f1c-8039-988b7606b531 + high limit for MV3.101 Bus 133 + + + 10.55 + + + efcfcee3-3123-dc8e-ecbc-4514327b0d49 + low limit for MV3.101 busbar2A + + + 9.65 + + + 8afeef58-86b9-5521-5340-9db59a918942 + high limit for MV3.101 Bus 24 + + + 10.55 + + + 54656fca-b691-c6b8-04a5-bff1cdbf792d + high limit for MV3.101 Bus 56 + + + 10.55 + + + 417769d4-db11-0152-4c79-4a802374180d + low limit for MV3.101 Bus 56 + + + 9.65 + + + b29c2310-9c9c-2806-5e4c-cba7398bf843 + high limit for MV3.101 Bus 13 + + + 10.55 + + + 834bba3d-6276-ee63-1f5d-4f0a006b6f35 + low limit for MV3.101 Bus 13 + + + 9.65 + + + 55eda48e-88aa-8f87-2775-65257fa32ecb + high limit for MV3.101 Bus 90 + + + 10.55 + + + 8b2c6028-94bc-08d6-efd4-ed2b18d53fb7 + low limit for MV3.101 Bus 66 + + + 9.65 + + + f1d2f2f6-e438-be3d-a2f1-de0be660621b + high limit for MV3.101 Bus 59 + + + 10.55 + + + e9816e85-6374-a2ce-b67b-c71d582ae1cf + high limit for MV3.101 Bus 72 + + + 10.55 + + + 179fae4c-42c9-69a9-36ee-209c0bbfb718 + low limit for MV3.101 Bus 59 + + + 9.65 + + + 8286319a-0f1a-8250-f5a6-9ac57b266976 + low limit for MV3.101 Bus 90 + + + 9.65 + + + 1a8442ce-7376-d004-efda-493766b4156d + low limit for MV3.101 Bus 72 + + + 9.65 + + + fa1530de-8d99-4555-d0eb-e21ff6f47e19 + high limit for MV3.101 Bus 66 + + + 10.55 + + + 186efb24-597c-0b73-bf81-470dfd84efb3 + high limit for MV3.101 Bus 106 + + + 10.55 + + + 8d124882-8961-6a42-dbdc-f264fd3541f4 + low limit for MV3.101 Bus 76 + + + 9.65 + + + 024d7162-beb6-3206-c7d5-c39fbbab1d14 + low limit for MV3.101 Bus 104 + + + 9.65 + + + a06ebd41-4364-b449-7861-afe88e574391 + low limit for MV3.101 Bus 106 + + + 9.65 + + + 40ae48ac-d1e8-c02e-9c16-03701d6c9061 + low limit for MV3.101 Bus 143 + + + 9.65 + + + 90c297f5-fb86-e5fc-ba4e-0b00c8185f73 + high limit for MV3.101 Bus 76 + + + 10.55 + + + 111ad55f-2538-1a7a-4a73-24a90a0510cd + high limit for MV3.101 Bus 129 + + + 10.55 + + + 5110c003-58db-76c6-df93-1d130a1f2601 + high limit for MV3.101 Bus 143 + + + 10.55 + + + 406d495b-1e29-fc41-a5ee-1d7c837cbe61 + low limit for MV3.101 Bus 129 + + + 9.65 + + + f7a9317c-890b-eab7-1e19-94f91b1c033e + high limit for MV3.101 Bus 36 + + + 10.55 + + + 83b794bf-9cae-f5ea-a973-2c1089cb4721 + low limit for MV3.101 Bus 36 + + + 9.65 + + + 1d51e5b3-8ff1-895f-7bb3-14d15e06ca21 + high limit for MV3.101 Bus 104 + + + 10.55 + + + dd94e128-955d-1b16-be3f-4f2c8f7dd843 + high limit for MV3.101 Bus 20 + + + 10.55 + + + 5d80cbe7-b51e-6b1c-620a-543b6d36b49b + low limit for MV3.101 Bus 47 + + + 9.65 + + + ac60702b-030a-c790-872c-020e18e5a5e2 + high limit for MV3.101 Bus 78 + + + 10.55 + + + d2e74773-570d-3caa-a71f-e1352ccea0c7 + high limit for MV3.101 Bus 65 + + + 10.55 + + + b688d118-9f42-2528-6854-432c69a9d034 + high limit for MV3.101 Bus 44 + + + 10.55 + + + 9bfafeec-186b-259a-7632-d1a4410f152f + low limit for MV3.101 Bus 78 + + + 9.65 + + + c07fac83-f45f-4bdc-f4de-0226b63cb9ef + high limit for MV3.101 Bus 84 + + + 10.55 + + + da8790ff-706c-e2b8-4e01-33e2ddbd048f + low limit for MV3.101 Bus 44 + + + 9.65 + + + 4398e07e-0dde-e253-6b5f-ce0781c78af8 + low limit for MV3.101 Bus 65 + + + 9.65 + + + 3eb20f21-c752-ac9a-4b13-faf750436b58 + high limit for MV3.101 Bus 47 + + + 10.55 + + + 2fd05813-90f6-06b2-205b-388117cbfc1a + low limit for MV3.101 Bus 84 + + + 9.65 + + + 25919b80-a461-7636-efae-8ad08767d60a + high limit for MV3.101 Bus 16 + + + 10.55 + + + d57dd4d6-e383-b5f0-e32c-1c8e09063ee6 + low limit for MV3.101 Bus 49 + + + 9.65 + + + da163aef-5ecb-3ede-9639-57bdce767822 + low limit for MV3.101 Bus 108 + + + 9.65 + + + a1d80f74-eb88-7e9b-0cee-13d0866ee871 + low limit for MV3.101 Bus 16 + + + 9.65 + + + 3f445b42-5002-b8f0-ee99-980a1455c5fb + high limit for MV3.101 Bus 49 + + + 10.55 + + + 11c8dab9-2a07-4fbc-2044-ae9b579c3d2c + high limit for MV3.101 Bus 128 + + + 10.55 + + + 916902a2-9087-72e6-cf6a-f23012872793 + low limit for MV3.101 Bus 128 + + + 9.65 + + + 454af780-db18-1198-2d0e-88a318f1713a + high limit for MV3.101 Bus 37 + + + 10.55 + + + ee4fe061-2e73-c1e0-8bef-674c486152ad + low limit for MV3.101 Bus 37 + + + 9.65 + + + 0bb48d3b-f875-4c9b-5e1f-42927b66d6a8 + low limit for MV3.101 Bus 20 + + + 9.65 + + + b0f041f2-8b41-72f2-51f9-5f18aab67b00 + high limit for MV3.101 Bus 108 + + + 10.55 + + + a40e520d-bee9-3616-7862-113fbacf8a59 + high limit for MV3.101 Bus 73 + + + 10.55 + + + 6ca921fd-65c9-8a23-5840-363c4c2696ee + high limit for MV3.101 Bus 67 + + + 10.55 + + + 77f95408-e0cb-6cc3-270d-a833314cc0fd + low limit for MV3.101 Bus 79 + + + 9.65 + + + ae877719-9de5-29f0-3a13-2de21d0381a0 + high limit for MV3.101 Bus 64 + + + 10.55 + + + 87edcee0-5276-fe6b-93e0-4a84a4636d9d + high limit for MV3.101 Bus 98 + + + 10.55 + + + de0be2c5-3cb3-8316-6d1b-dfe31a69eafd + low limit for MV3.101 Bus 67 + + + 9.65 + + + 44e9a00c-624a-6470-76c4-48941e7799ad + high limit for MV3.101 Bus 79 + + + 10.55 + + + 6e1b194d-078e-c866-6ef7-6463a9e453ad + high limit for MV3.101 Bus 113 + + + 10.55 + + + 4ce52ca5-8da4-ae4a-389f-0aae24314e92 + low limit for MV3.101 Bus 113 + + + 9.65 + + + 2be635ff-975b-1799-3d61-261eeacf1eb6 + low limit for MV3.101 Bus 64 + + + 9.65 + + + ebddb1e6-476c-2eb0-655a-2a15966cc807 + low limit for MV3.101 Bus 73 + + + 9.65 + + + c484a470-8319-c88a-9399-aefb3d2dcd11 + low limit for MV3.101 Bus 98 + + + 9.65 + + + 434a8e48-d159-afa4-1c16-ae0df440b01a + low limit for MV3.101 Bus 52 + + + 9.65 + + + aca00b3a-579e-f9a2-e6fc-e43de0776939 + high limit for MV3.101 Bus 123 + + + 10.55 + + + 09c76f4c-2998-3628-547e-6c4cb4b08d31 + low limit for MV3.101 Bus 111 + + + 9.65 + + + d8f6aeb0-0f25-f1dc-63ae-dce1aaf213c1 + low limit for MV3.101 Bus 123 + + + 9.65 + + + 3e46b5c2-a182-eb73-0804-e9ff09c740a8 + high limit for MV3.101 Bus 111 + + + 10.55 + + + 01e27545-425e-19bd-47aa-ae20093240d7 + low limit for MV3.101 Bus 105 + + + 9.65 + + + 5a838147-91d5-50f2-3d22-ba88017b283d + high limit for MV3.101 Bus 60 + + + 10.55 + + + b510f5ac-56a3-0b83-e47c-a4b7313843d5 + low limit for MV3.101 Bus 60 + + + 9.65 + + + 31172334-529f-75f7-6d71-0e1f16ddcc9e + high limit for MV3.101 Bus 21 + + + 10.55 + + + b21fa059-f9d2-43cf-c495-098ec2b4f870 + high limit for MV3.101 Bus 52 + + + 10.55 + + + 48780771-a880-d0f9-c626-157132f283f8 + high limit for MV3.101 Bus 105 + + + 10.55 + + + fb9c435a-2d56-26fd-ca4f-cacedba6696a + low limit for MV3.101 Bus 21 + + + 9.65 + + + 5dc7cbef-5424-3416-8b1e-e996cb695d01 + high limit for MV3.101 Bus 18 + + + 10.55 + + + 9bd1adcf-6047-0110-3868-9b6769794115 + low limit for MV3.101 Bus 18 + + + 9.65 + + + 164d821b-42aa-eba8-2202-eb065681f817 + low limit for MV3.101 Bus 127 + + + 9.65 + + + 0a433165-94b0-f4ac-cb88-3fe8f0f2d791 + low limit for MV3.101 Bus 117 + + + 9.65 + + + 92792939-429d-05fe-b3c7-6619142f285a + high limit for MV3.101 Bus 134 + + + 10.55 + + + 7f45389a-6523-f953-55a3-ef77de166781 + high limit for MV3.101 busbar1B + + + 10.55 + + + 287f22ff-8e86-cc65-1f56-6dcbc607af5e + low limit for MV3.101 busbar1B + + + 9.65 + + + 930148ed-201a-a598-6aad-f4ac0a62b440 + high limit for MV3.101 Bus 127 + + + 10.55 + + + a36a2c17-5ed5-7fde-36f3-40313d5f5f59 + low limit for MV3.101 busbar2B + + + 9.65 + + + 236feeb7-21cf-533a-017e-42d31b280b57 + low limit for MV3.101 Bus 134 + + + 9.65 + + + 149ef251-c4b7-97ce-7c1e-5812e30a91e8 + high limit for MV3.101 Bus 117 + + + 10.55 + + + 02d035e7-7462-8c97-25c3-fd443e41ba0b + high limit for MV3.101 busbar2B + + + 10.55 + + + 9b43dac5-8332-378d-6c2e-b9b02e25fa77 + high limit for MV3.101 Bus 126 + + + 10.55 + + + b727d991-2908-93ba-7de4-552a5ada3b87 + low limit for MV3.101 Bus 126 + + + 9.65 + + + f43e65e1-0706-9440-0fed-e725872b9ba8 + high limit for MV3.101 Bus 33 + + + 10.55 + + + 1fd3038e-9872-6b53-b9c1-c02631deb551 + high limit for MV3.101 Bus 30 + + + 10.55 + + + dfaa0a10-f9c9-fe00-9a7e-0d7b55ae21c9 + high limit for MV3.101 Bus 136 + + + 10.55 + + + c345245d-1e49-da1b-9d99-81e49b55b9c5 + high limit for MV3.101 Bus 50 + + + 10.55 + + + f4981d76-ec39-0a59-b486-25fce300df22 + low limit for MV3.101 Bus 50 + + + 9.65 + + + f7d0d48e-b3bc-391b-1f22-e1ce7056ea4a + high limit for MV3.101 Bus 14 + + + 10.55 + + + 344c3442-f7f4-f66a-7d7e-654f67b81d3e + low limit for MV3.101 Bus 33 + + + 9.65 + + + 03012dbd-e966-d320-6ab6-1aeeccffa380 + low limit for MV3.101 Bus 14 + + + 9.65 + + + 377178c2-b6c2-c0be-ea56-6ff2918de221 + low limit for MV3.101 Bus 30 + + + 9.65 + + + b82d4ce4-d1b2-7803-c1f6-50c7da30a7d3 + low limit for MV3.101 Bus 136 + + + 9.65 + + + 9742ac43-7963-7e5b-9fdd-7da4b56c586c + high limit for MV3.101 Bus 74 + + + 10.55 + + + 02539e3e-0465-3bbf-d1f7-625ab7247f6f + low limit for MV3.101 Bus 74 + + + 9.65 + + + fbc98295-1899-23c0-40d1-70f00fac504b + low limit for MV3.101 Bus 131 + + + 9.65 + + + 92b0ce8e-5480-81d8-3c77-ac46c257f67e + high limit for MV3.101 Bus 107 + + + 10.55 + + + 6b5a48f5-620c-19f7-94c3-ab24e76e64b6 + low limit for MV3.101 Bus 116 + + + 9.65 + + + aa90ae91-69cd-0887-da04-96a23e2ea016 + low limit for MV3.101 Bus 107 + + + 9.65 + + + 206410b5-d6ca-7452-9ca4-6c63353fbd15 + high limit for MV3.101 Bus 71 + + + 10.55 + + + ad9304f0-48e9-515b-5abe-6098115b213b + low limit for MV3.101 Bus 71 + + + 9.65 + + + 8cb2834a-0a8c-3336-91d7-fed258ecd903 + high limit for MV3.101 Bus 131 + + + 10.55 + + + af34a658-77e4-a2ae-0213-b70915b35e4b + high limit for MV3.101 Bus 116 + + + 10.55 + + + edf800d0-6ff1-c4bc-137e-cf4f4f0f9743 + low limit for MV3.101 Bus 139 + + + 9.65 + + + ba92b9cf-3639-a543-7a30-54d199ef51be + high limit for MV3.101 Bus 139 + + + 10.55 + + + 3e845e53-e144-04ce-9b83-5a0067e0fc54 + low limit for MV3.101 Bus 75 + + + 9.65 + + + 01633d07-bc14-af3f-e310-4cce67df078c + high limit for MV3.101 Bus 96 + + + 10.55 + + + 6c58c995-bd78-967e-151a-42b1920bdf15 + low limit for MV3.101 Bus 69 + + + 9.65 + + + 0b024807-4a65-fe21-2873-41bad9c8eef5 + low limit for MV3.101 Bus 118 + + + 9.65 + + + e9e65c22-9f17-d3cd-9c0e-73eab73ab46b + high limit for MV3.101 Bus 118 + + + 10.55 + + + 88900b0c-eec0-ef07-8435-caf6035979ce + low limit for MV3.101 Bus 96 + + + 9.65 + + + fce8f8d9-b35c-beaa-a986-308a883f15fd + high limit for MV3.101 Bus 75 + + + 10.55 + + + c684aeb1-b6c9-a3c4-b992-c2257c11104b + high limit for MV3.101 Bus 69 + + + 10.55 + + + 104279ac-0943-ace1-e260-59e2b742fd0a + low limit for MV3.101 Bus 115 + + + 9.65 + + + 03d7e523-b539-6e37-38a8-8609750b5839 + high limit for MV3.101 Bus 115 + + + 10.55 + + + 167de0f7-2478-7065-387c-ef62e80ce5f1 + high limit for MV3.101 Bus 103 + + + 10.55 + + + 2ed849db-3f44-30f1-bbb5-aa54600f65a9 + high limit for MV3.101 Bus 88 + + + 10.55 + + + 0 + 6.03184e-5 + 0 + 0 + 0.04 + 0 + 80 + 0.03896 + 0 + + 0.4 + 8e44668f-3a15-4997-a608-5ed6fac228a2 + MV3.101 Line 16 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + fec8ad1e-3f39-4c1b-aedc-3efcbd2d05fa + MV3.101 Line 106 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + 49c03a3e-3ae4-42f5-8635-3445519c71b3 + MV3.101 Line 44 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + f59db258-a2d7-4650-b12a-9b2fd496c039 + MV3.101 Line 127 + + + 0 + 3.39292e-5 + 0 + 0 + 0.0156 + 0 + 80 + 0.01884 + 0 + + 0.2 + 4886bf39-a1f3-4894-b864-b9600b1d32e8 + MV3.101 BS-Feeder3_line + + + 0 + 9.04776e-6 + 0 + 0 + 0.01648 + 0 + 80 + 0.0088 + 0 + + 0.08 + 00d6d3e0-86bb-4d50-9a3e-f6098bb4e5b4 + MV3.101 Line 113 + + + 0 + 2.29588e-5 + 0 + 0 + 0.02898 + 0 + 80 + 0.0198 + 0 + + 0.18 + 8c51d17d-9a34-4943-988d-d00f3dbc71b1 + MV3.101 Line 120 + + + 0 + 1.47026e-5 + 0 + 0 + 0.02678 + 0 + 80 + 0.0143 + 0 + + 0.13 + 0527ac8c-38bb-4fef-be23-b75598e76250 + MV3.101 Line 125 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 05326d41-f37a-452b-9f5b-9a8b4758c9fd + MV3.101 Line 100 + + + 0 + 1.57583e-5 + 0 + 0 + 0.01342 + 0 + 80 + 0.01155 + 0 + + 0.11 + 03d1abc1-649f-4605-bf17-95722a483186 + MV3.101 Line 39 + + + 0 + 6.95549e-5 + 0 + 0 + 0.03198 + 0 + 80 + 0.038622 + 0 + + 0.41 + 96add4a0-c47c-4a70-9077-944a8c737048 + MV3.101 Line 30 + + + 0 + 1.52681e-5 + 0 + 0 + 0.00702 + 0 + 80 + 0.008478 + 0 + + 0.09 + 0f25e183-1368-43c6-ad46-19b7f20b3a7e + MV3.101 Line 15 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 0f356630-f14f-4923-af92-353810c5f3fd + MV3.101 Line 32 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 9b29f488-6093-4033-82ab-af7079c6b0e9 + MV3.101 Line 70 + + + 0 + 9.31171e-5 + 0 + 0 + 0.0793 + 0 + 80 + 0.06825 + 0 + + 0.65 + 118cce93-fa2e-44d3-937e-ddd4955ac012 + MV3.101 loop_line 2 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 07fd0aec-121a-499a-b63e-835c5cf096c1 + MV3.101 Line 87 + + + 0 + 7.65294e-5 + 0 + 0 + 0.0966 + 0 + 80 + 0.066 + 0 + + 0.6 + a2df1322-75e8-4924-913c-69a201200972 + MV3.101 loop_line 1 + + + 0 + 6.44655e-5 + 0 + 0 + 0.02964 + 0 + 80 + 0.035796 + 0 + + 0.38 + a4dcee7a-e60b-489c-9d64-59ca3753bd5e + MV3.101 Line 97 + + + 0 + 2.26194e-5 + 0 + 0 + 0.0412 + 0 + 80 + 0.022 + 0 + + 0.2 + 06fd1bf0-d73f-4789-acba-f2e38f107cdb + MV3.101 Line 117 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + a64cb6c1-d46e-4f42-bad1-fc50cabe48ee + MV3.101 Line 96 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + 0eb3c957-7cf0-4862-b070-6af9a9c0d8db + MV3.101 Line 73 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + 0dbf2ff0-d27b-4e06-abc3-9f841eb9c9c5 + MV3.101 Line 77 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 0f5cbd35-9238-41f9-918c-1e6013d9892b + MV3.101 Line 81 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + a14148c6-4ff2-4127-9348-952e0a2b473c + MV3.101 Line 49 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 11498a68-3887-439f-91ba-26f8cf25a636 + MV3.101 Line 34 + + + 0 + 7.30611e-5 + 0 + 0 + 0.06222 + 0 + 80 + 0.05355 + 0 + + 0.51 + b2e1339f-b00b-43fc-85c1-ac5518ce3b41 + MV3.101 loop_line 4 + + + 0 + 3.16672e-5 + 0 + 0 + 0.021 + 0 + 80 + 0.020454 + 0 + + 0.21 + abf0fc48-a389-4d6a-8b0e-e76a50e02cad + MV3.101 Line 59 + + + 0 + 2.43537e-5 + 0 + 0 + 0.02074 + 0 + 80 + 0.01785 + 0 + + 0.17 + ad4c71dd-967f-498c-8b69-f96c2fccbc79 + MV3.101 Line 108 + + + 0 + 3.05362e-5 + 0 + 0 + 0.05562 + 0 + 80 + 0.0297 + 0 + + 0.27 + 1853c7b4-61e1-4596-acbe-c08108875e4f + MV3.101 Line 112 + + + 0 + 0.000104049 + 0 + 0 + 0.069 + 0 + 80 + 0.067206 + 0 + + 0.69 + b1be2186-3c84-43c1-a860-729d57b93e7c + MV3.101 loop_line 9 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 1619102e-332c-4ec7-967b-ab42cf9b9b47 + MV3.101 Line 14 + + + 0 + 7.73588e-5 + 0 + 0 + 0.06588 + 0 + 80 + 0.0567 + 0 + + 0.54 + 1901d039-7430-4d58-8cb2-71be26923a41 + MV3.101 loop_line 5 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + be9e1c34-7b0c-4f12-8557-86e9056abbeb + MV3.101 Line 79 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + bf57767a-cabf-4210-ae07-3f8f0d8fe7ad + MV3.101 Line 21 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1b1a0bfb-8777-4623-a39b-0c22d180f334 + MV3.101 Line 6 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 161ce126-ca69-41df-b4ef-aa5eeef61978 + MV3.101 Line 55 + + + 0 + 2.11114e-5 + 0 + 0 + 0.014 + 0 + 80 + 0.013636 + 0 + + 0.14 + bb9f0b0c-f6f0-4f7b-b09c-9f0cab43c1e7 + MV3.101 Line 86 + + + 0 + 2.0056e-5 + 0 + 0 + 0.01708 + 0 + 80 + 0.0147 + 0 + + 0.14 + 18999834-b3d8-43f2-84c0-30aaab348a9b + MV3.101 Line 107 + + + 0 + 1.01788e-5 + 0 + 0 + 0.00468 + 0 + 80 + 0.005652 + 0 + + 0.06 + b9f18a1f-71d9-424d-819a-a1fe697ec02e + MV3.101 Line 3 + + + 0 + 2.04078e-5 + 0 + 0 + 0.02576 + 0 + 80 + 0.0176 + 0 + + 0.16 + 160c0a80-c883-425f-859b-1fc1860b182b + MV3.101 Line 115 + + + 0 + 3.06118e-5 + 0 + 0 + 0.03864 + 0 + 80 + 0.0264 + 0 + + 0.24 + bee7a922-84df-486d-85d2-0a464872a3e2 + MV3.101 Line 5 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 16e7a695-d706-4adc-9a43-01ff12272c70 + MV3.101 Line 46 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + 1e912a0d-8b8f-4f6b-bddc-f5b4cec8c94e + MV3.101 Line 72 + + + 0 + 2.80608e-5 + 0 + 0 + 0.03542 + 0 + 80 + 0.0242 + 0 + + 0.22 + b48506ab-7206-4131-a28f-e8fdf3e1a265 + MV3.101 Line 110 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1e72292b-93fa-47d9-a13a-161bed6ef36f + MV3.101 Line 109 + + + 0 + 4.52388e-5 + 0 + 0 + 0.03 + 0 + 80 + 0.02922 + 0 + + 0.3 + ca86bfb5-7b75-40e1-a557-9ad6e0ceb1e0 + MV3.101 Line 18 + + + 0 + 5.73028e-5 + 0 + 0 + 0.0488 + 0 + 80 + 0.042 + 0 + + 0.4 + 202bdacf-d455-4104-8f9d-37330083f1af + MV3.101 Line 37 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + c2476bcf-77b4-4d15-900a-91cbeb6d79a5 + MV3.101 Line 94 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + c2c7f6e5-195b-4246-b460-a7e8c0336652 + MV3.101 Line 4 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 25dbaa41-e625-45c1-b4d1-fdcc69d46c41 + MV3.101 Line 99 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + c4cfae68-b467-4a09-adce-e14ff6983cd2 + MV3.101 loop_line 10 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 2278df8a-1a52-4b58-832e-9aee56966950 + MV3.101 Line 63 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + c3555abb-1482-4092-833b-a766ec238379 + MV3.101 Line 22 + + + 0 + 2.29211e-5 + 0 + 0 + 0.01952 + 0 + 80 + 0.0168 + 0 + + 0.16 + 26b89e9c-1cf6-42c7-8334-ed6952ce6c10 + MV3.101 Line 88 + + + 0 + 3.43817e-5 + 0 + 0 + 0.02928 + 0 + 80 + 0.0252 + 0 + + 0.24 + c85c13e5-eec8-4d11-bd19-94a8a0d2fcd6 + MV3.101 Line 23 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + c0efc9c9-5d57-49a5-b55c-c81dce24fdc4 + MV3.101 Line 52 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + c47d64b4-3e10-48d2-8639-40e8dfed03ea + MV3.101 Line 45 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 306ff41b-8313-46b6-97bb-a51f567c8f3d + MV3.101 Line 25 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3075b911-f233-44c7-b8c6-67c2cd00238a + MV3.101 Line 71 + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + c128212b-6e7c-4449-b709-8b57755ff051 + MV3.101 loop_line 8 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + c125dd08-cb6f-49b7-9741-c0ff7767f3ed + MV3.101 Line 54 + + + 0 + 3.56257e-5 + 0 + 0 + 0.01638 + 0 + 80 + 0.019782 + 0 + + 0.21 + 29e058f5-a3db-4cba-8d97-54b068b7b78f + MV3.101 Line 13 + + + 0 + 3.6191e-5 + 0 + 0 + 0.024 + 0 + 80 + 0.023376 + 0 + + 0.24 + 2bbd71f9-2357-41f5-acd7-fce0f12a037b + MV3.101 Line 56 + + + 0 + 3.29491e-5 + 0 + 0 + 0.02806 + 0 + 80 + 0.02415 + 0 + + 0.23 + d1c5775f-55e2-4223-b8ed-4706bfbef0f5 + MV3.101 Line 105 + + + 0 + 5.87354e-5 + 0 + 0 + 0.05002 + 0 + 80 + 0.04305 + 0 + + 0.41 + 290f1aca-ff0b-457b-a95d-51e458d50a37 + MV3.101 Line 104 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + ccf930cd-6246-41cf-bcc7-261e8e044c37 + MV3.101 Line 75 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 325de2d8-b070-44fa-9ee5-5c694d7319a2 + MV3.101 loop_line 7 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 28091a55-6ec4-4225-b5d8-b296c7cda4c1 + MV3.101 Line 57 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 2dcb56b7-d753-4f48-86c1-ba352371e7dc + MV3.101 Line 85 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + ccef1487-fac6-4348-bc5a-79c23d5844a0 + MV3.101 Line 42 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + d14ecf82-e719-43a7-bf87-404a052dd2aa + MV3.101 Line 119 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + d57a1212-f877-4c47-ae6c-5b54021af043 + MV3.101 Line 12 + + + 0 + 1.91324e-5 + 0 + 0 + 0.02415 + 0 + 80 + 0.0165 + 0 + + 0.15 + 38aeb869-7ccc-40e6-a4eb-a87d1121ef88 + MV3.101 Line 116 + + + 0 + 4.58422e-5 + 0 + 0 + 0.03904 + 0 + 80 + 0.0336 + 0 + + 0.32 + 3c83d204-dc2d-4a9e-9456-8bf505ad6578 + MV3.101 Line 82 + + + 0 + 3.82647e-5 + 0 + 0 + 0.0483 + 0 + 80 + 0.033 + 0 + + 0.3 + 3df399c5-7a04-4bc1-ad89-9abc28b124cb + MV3.101 Line 121 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + d7f6a330-f420-4391-9d99-887f79c74aed + MV3.101 Line 102 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + dd01385f-87d5-4d7e-a97c-e3542963f6fd + MV3.101 Line 98 + + + 0 + 2.2054e-5 + 0 + 0 + 0.01014 + 0 + 80 + 0.012246 + 0 + + 0.13 + dba77fd1-aaf8-4065-a32f-054807a9f626 + MV3.101 Line 76 + + + 0 + 4.82547e-5 + 0 + 0 + 0.032 + 0 + 80 + 0.031168 + 0 + + 0.32 + df0fd72c-cbee-41f7-81af-700cd564354e + MV3.101 Line 58 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + dfd599da-89b6-4aa9-8b51-b0fba34dee55 + MV3.101 Line 131 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + e11544c7-2d6f-4bce-8e80-a85e7dc44149 + MV3.101 Line 95 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + 3622f0ce-0914-4214-8ff3-87c9c3b4255c + MV3.101 Line 89 + + + 0 + 4.08157e-5 + 0 + 0 + 0.05152 + 0 + 80 + 0.0352 + 0 + + 0.32 + 383208d7-6750-4f2a-82f6-879a29343b75 + MV3.101 loop_line 6 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + db4fcec7-1ea6-44f3-bb14-f7ada6a1a364 + MV3.101 Line 27 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 337bc4a3-850c-4691-9e23-dbf3d10ad992 + MV3.101 Line 78 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + dadbb088-9ed3-4a51-be5c-d7f5e2564059 + MV3.101 Line 132 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 418eb5bd-6a85-410a-9a1f-0e915ad69682 + MV3.101 Line 26 + + + 0 + 6.33343e-5 + 0 + 0 + 0.042 + 0 + 80 + 0.040908 + 0 + + 0.42 + db791626-9bc3-470d-81d0-6f9a7c4ce3a5 + MV3.101 Line 61 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + d78fe5ad-7365-4f56-9740-79be4d72ff78 + MV3.101 loop_line 11 + + + 0 + 2.60123e-5 + 0 + 0 + 0.04738 + 0 + 80 + 0.0253 + 0 + + 0.23 + e59be798-a2f0-409f-9717-afc06aa21b55 + MV3.101 Line 124 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 40dae9aa-d2c7-4596-8d66-97e4cd87eede + MV3.101 Line 10 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + e17c3f71-33fc-49e7-94a1-cdf1bb8a7a4d + MV3.101 Line 1 + + + 0 + 4.0112e-5 + 0 + 0 + 0.03416 + 0 + 80 + 0.0294 + 0 + + 0.28 + e5717912-49e2-4c33-9909-ee6104d9732f + MV3.101 Line 101 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3f499bf7-ebb5-4c3e-84ee-1806c787f8ae + MV3.101 Line 67 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + 42d66142-0c55-482e-a999-25c4f3c1dccc + MV3.101 loop_line 3 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + 417ecd67-e648-42a3-ab41-286013a9404d + MV3.101 Line 133 + + + 0 + 1.13097e-5 + 0 + 0 + 0.0206 + 0 + 80 + 0.011 + 0 + + 0.1 + 433c94bd-0e2a-4f67-8777-bdeb9dd8f69e + MV3.101 Line 111 + + + 0 + 3.15165e-5 + 0 + 0 + 0.02684 + 0 + 80 + 0.0231 + 0 + + 0.22 + ea0336c5-c716-4662-b14d-c31d5b4c7dd3 + MV3.101 Line 24 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 5045533f-6463-4be2-89a9-d322834fc215 + MV3.101 Line 17 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + e28e48b0-9a45-40ff-a048-9bdea00db61c + MV3.101 Line 11 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + e734548e-26d7-4242-b25e-f83a696b36e3 + MV3.101 Line 40 + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 4bb5cfc8-0f97-43d9-b42b-b9337720eb0b + MV3.101 Line 64 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + e4bab5c0-7da9-46c0-9677-86dea0175eae + MV3.101 Line 68 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + e8af0ec2-1712-4f2b-be5d-14b01305dcf6 + MV3.101 Line 122 + + + 0 + 2.26194e-5 + 0 + 0 + 0.015 + 0 + 80 + 0.01461 + 0 + + 0.15 + e38b55fa-db81-4447-b054-15d100b76d05 + MV3.101 Line 8 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 528a73fd-574c-4924-b175-fdd0953ed90c + MV3.101 Line 90 + + + 0 + 4.46422e-5 + 0 + 0 + 0.05635 + 0 + 80 + 0.0385 + 0 + + 0.35 + 51fe2fbf-bece-4e0d-9ba8-a2a06664dbb5 + MV3.101 Line 129 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 5099bbc8-530f-4986-a400-84e327e6abcb + MV3.101 Line 33 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 5096a397-bcf7-42c2-b1b8-34636f1c17b4 + MV3.101 Line 9 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 4ead5e53-a4dc-464b-bc1f-142ed7fb47d7 + MV3.101 Line 19 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + f391ebbe-2777-4e34-a0fc-163177e81fc2 + MV3.101 Line 50 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + 5d81ff25-da65-4c08-9bff-60adc7eacd34 + MV3.101 Line 60 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + f8c4c93e-2f5d-48dc-a09f-7f74d7267ff4 + MV3.101 Line 48 + + + 0 + 1.43257e-5 + 0 + 0 + 0.0122 + 0 + 80 + 0.0105 + 0 + + 0.1 + fd18150d-e044-46d8-a853-64f53e717d39 + MV3.101 Line 31 + + + 0 + 4.75007e-5 + 0 + 0 + 0.08652 + 0 + 80 + 0.0462 + 0 + + 0.42 + 5c9fddda-d1c2-46b9-97e5-cd0ce5b1768c + MV3.101 Line 123 + + + 0 + 5.44377e-5 + 0 + 0 + 0.04636 + 0 + 80 + 0.0399 + 0 + + 0.38 + 6015925c-9d52-443d-90d6-73312ac28f6d + MV3.101 Line 92 + + + 0 + 3.0084e-5 + 0 + 0 + 0.02562 + 0 + 80 + 0.02205 + 0 + + 0.21 + fa7b5dfa-ce1a-4842-b772-444e4ce0741a + MV3.101 Line 91 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 61e6a456-a2af-453f-9a65-7631f9962b00 + MV3.101 Line 83 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 685325eb-a5fc-4245-a5a0-1b2c036612cf + MV3.101 Line 74 + + + 0 + 2.14886e-5 + 0 + 0 + 0.0183 + 0 + 80 + 0.01575 + 0 + + 0.15 + 65ad9953-8ecd-4156-a6b2-755c453e3868 + MV3.101 Line 36 + + + 0 + 2.03575e-5 + 0 + 0 + 0.00936 + 0 + 80 + 0.011304 + 0 + + 0.12 + 6959c6b0-3a55-4f94-9ebf-0e223b3ed035 + MV3.101 Line 28 + + + 0 + 1.65814e-5 + 0 + 0 + 0.02093 + 0 + 80 + 0.0143 + 0 + + 0.13 + 6d537852-3bb0-480f-93f0-fccebcae6f6a + MV3.101 Line 7 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 64f12259-364f-4309-8d13-ad2ee93c4941 + MV3.101 Line 69 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 6a732427-2430-442a-b04f-b84f04c95a67 + MV3.101 Line 51 + + + 0 + 3.16672e-5 + 0 + 0 + 0.05768 + 0 + 80 + 0.0308 + 0 + + 0.28 + 6be3304c-f474-431a-9e34-17328ca655c1 + MV3.101 Line 118 + + + 0 + 1.02039e-5 + 0 + 0 + 0.01288 + 0 + 80 + 0.0088 + 0 + + 0.08 + 6d63bfd2-0008-4b77-8b14-e114e16109aa + MV3.101 Line 126 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 6ebf9c42-bc57-4772-a34d-d02a23966f02 + MV3.101 Line 20 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + 77028944-16e2-4bcd-96dd-11785ca60170 + MV3.101 Line 130 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + 7b2c1a05-06c7-4b40-a323-7fa096029d20 + MV3.101 Line 114 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 71756910-5ed7-4312-b060-bc27c5be1aaf + MV3.101 Line 2 + + + 0 + 5.73025e-5 + 0 + 0 + 0.038 + 0 + 80 + 0.037012 + 0 + + 0.38 + 7197bbb6-2fcb-40ec-bc49-f871c6d42659 + MV3.101 Line 84 + + + 0 + 5.12706e-5 + 0 + 0 + 0.034 + 0 + 80 + 0.033116 + 0 + + 0.34 + 71f546df-b8f7-4430-aadc-0663802fc845 + MV3.101 Line 53 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 70ef17ff-9e17-4ff0-836c-1bcb0b61f3d3 + MV3.101 Line 93 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 75db16e4-2bc3-4144-8e47-9a571f215e87 + MV3.101 Line 35 + + + 0 + 2.57863e-5 + 0 + 0 + 0.02196 + 0 + 80 + 0.0189 + 0 + + 0.18 + 73bd388c-11e3-460f-9f85-ac2c4ec21442 + MV3.101 Line 103 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 81f6eb74-6325-4206-b9fc-62cebe7b9307 + MV3.101 Line 62 + + + 0 + 1.65876e-5 + 0 + 0 + 0.011 + 0 + 80 + 0.010714 + 0 + + 0.11 + 7fafe799-e1b2-453e-a860-b475f7e3ee14 + MV3.101 Line 41 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + 7d7f4add-80d3-46c4-95f1-589385a567e6 + MV3.101 Line 128 + + + 0 + 5.01399e-5 + 0 + 0 + 0.0427 + 0 + 80 + 0.03675 + 0 + + 0.35 + 8043ad13-462b-4693-94a0-38a6f452d0d2 + MV3.101 Line 80 + + + 0 + 4.07149e-5 + 0 + 0 + 0.027 + 0 + 80 + 0.026298 + 0 + + 0.27 + 80dbc165-e7fa-45c9-b700-486d0a967f31 + MV3.101 Line 65 + + + 0 + 5.93761e-5 + 0 + 0 + 0.0273 + 0 + 80 + 0.03297 + 0 + + 0.35 + 84fe5e3a-2325-4593-b14b-ae07922e9fc1 + MV3.101 Line 29 + + + 0 + 2.72188e-5 + 0 + 0 + 0.02318 + 0 + 80 + 0.01995 + 0 + + 0.19 + 80b0d932-279e-4399-af25-03eea5bb4162 + MV3.101 Line 38 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + 7cf0d319-8bcf-459f-9adc-0acd7684de1e + MV3.101 BS-Feeder4_line + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 7c3503e8-dbe4-4eed-8095-8b30e5e883b6 + MV3.101 Line 43 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 85541da1-3ab1-440f-82c0-ff0f8177d93b + MV3.101 Line 66 + + + 0 + 0.000133229 + 0 + 0 + 0.11346 + 0 + 80 + 0.09765 + 0 + + 0.93 + 9174d043-2b17-4ff0-86b2-cf3865df432b + MV3.101 Reserve line + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + 897da234-091f-45ed-9534-eef4b0a6d5cf + MV3.101 Line 47 + + + 86d16297-3c13-8bde-5a28-f06b13fd90ad + G0-A + true + 2 + 2 + + + 7feffc53-3796-439f-4b9e-61878965a0fd + G0-M + true + 2 + 2 + + + c03325c5-14ac-bc27-7149-4457eb2a95e5 + G3-H + true + 2 + 2 + + + d9927a02-2ec6-1bad-9b9e-ee70b6c8e483 + WB-H + true + 2 + 2 + + + 05f2cd73-68a8-5838-eb64-0c9fa161309c + lv_semiurb5 + true + 2 + 2 + + + a1e3eb3e-fef5-521b-0b67-9e1493d8e478 + BL-H + true + 2 + 2 + + + ae730329-c63c-a155-8d12-d5ad6e0da4b4 + G4-M + true + 2 + 2 + + + aeb59b4a-e86f-e50c-128e-742bc5ee3eed + lv_semiurb4 + true + 2 + 2 + + + e5f04ee7-443f-cd0b-25ce-3fca38747430 + lv_urban6 + true + 2 + 2 + + + 2c1b9559-8fc1-c1b7-1fc1-1d13de7cc64a + lv_rural3 + true + 2 + 2 + + + + 0150e4d6-88b2-41aa-aa93-42154fc0bbe7 + HV1-MV3.101-Trafo2 + false + false + + + + c214c8e3-78d2-4580-a066-8ca2d168847e + HV1-MV3.101-Trafo1 + false + false + + + d587ac08-2ef3-5aee-d804-f05aa952b741 + 1-MV-urban--2-sw + + + + 10 + BaseVoltage 10.00 kV + a7cdf97c-c348-a393-3f71-000495c0f66f + 10.00 kV + 10.00 kV + + + 110 + BaseVoltage 110.00 kV + 3f9b0e00-ddcb-e7f0-54c0-4c45abeb7f5b + 110.00 kV + 110.00 kV + + + 17f13142-8a97-6f14-eb0f-5f9690899e04 + 1-MV-urban--2-sw + + + + c391b0d7-7edc-acc1-3e40-e44b367f23f9 + HV1-MV3.101-Trafo2 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + 1ec57857-43da-9017-8638-fb69432c570f + HV1-MV3.101-Trafo2 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + fa5b8a3f-d706-e455-bde0-6fbf098a9357 + HV1-MV3.101-Trafo1 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + 439a0b6a-17c2-9334-68b1-d3603c4bcb7c + HV1-MV3.101-Trafo1 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + b6ee02e0-0c12-7102-373a-0242037b441a + MV3.101 Bus 133 + + + + + cc61045e-56ba-2614-66bf-77e71f4e42e0 + MV3.101 Bus 141 + + + + + e5db80c3-885c-c233-8efe-44c25094aaec + MV3.101 Bus 59 + + + + + c9eb814d-544c-dced-c7e4-7c9cd3795f19 + MV3.101 Bus 92 + + + + + 58a5ba43-d173-c1c1-ba51-fc5b093e0a75 + MV3.101 busbar2A + + + + + 602a26c7-d6d7-79fb-5ca6-0b86442e0e16 + MV3.101 Bus 24 + + + + + 11aada37-7a4c-3c61-aaaf-41e00ac3d747 + MV3.101 Bus 66 + + + + + 47768294-c9a3-7695-295f-37580c57a272 + MV3.101 Bus 95 + + + + + 580dc9bd-c0fb-20ac-b6d7-c319df77f90e + MV3.101 Bus 138 + + + + + f035318d-e522-11f7-1ad6-5c1ed2167ded + MV3.101 Bus 12 + + + + + ab998416-52d8-05ee-6459-459839b11f28 + MV3.101 Bus 114 + + + + + 65d05a4a-8253-a513-13f0-ac7a45197f13 + MV3.101 Bus 120 + + + + + 54c81db0-89b5-ba2e-036a-4fa79fddb4a1 + MV3.101 Bus 25 + + + + + 6dd10276-4498-ea53-b847-bbbc9968baf5 + MV3.101 Bus 23 + + + + + 54543dae-6e27-2218-8d33-f64e84cb1785 + MV3.101 Bus 68 + + + + + 78a28a61-0df5-a916-34b4-7d01974aa8da + MV3.101 Bus 39 + + + + + e355c3ec-9fc7-2792-aab7-2c681ca576e6 + MV3.101 Bus 72 + + + + + 5352c677-45da-9ecf-c1b0-0eac2fff2d22 + MV3.101 Bus 36 + + + + + 54fd3237-c050-39b1-1c1d-072d2a4a7a49 + MV3.101 Bus 13 + + + + + 0dca8cd3-f73c-e4d1-3b8f-9f3b70b222ab + MV3.101 Bus 104 + + + + + f3c2d4e0-d306-68f2-f757-8021334e607b + MV3.101 Bus 143 + + + + + e67f4be2-b617-2b0e-3c0c-0e0e31e0153f + MV3.101 Bus 56 + + + + + d43525fd-6892-c452-2a7c-fd3c36d016ad + MV3.101 Bus 90 + + + + + b604b137-8723-81be-0e85-df1245f89628 + MV3.101 Bus 44 + + + + + 689658ac-5360-d766-8036-3080b446c7b5 + MV3.101 Bus 78 + + + + + 0c06574c-3c9e-4ae1-b7f7-a149371fb0c1 + MV3.101_Base_Station + + + + + 97d87410-badb-0766-360c-8a0b52001919 + MV3.101 node1 + + + + + 47a7e411-4fd8-a259-276f-b9f91ac6d799 + MV3.101 Bus 65 + + + + + a7269b65-b0a4-ee02-6afb-3b71275d3b31 + MV3.101 Bus 106 + + + + + d6736037-3ae8-7edd-b98e-b80770bf4de9 + MV3.101 Bus 129 + + + + + 5dc164b2-0ddd-a0c4-a767-4414f52690da + MV3.101 Bus 47 + + + + + ac3f2425-71a0-4a59-028f-0efb8f0865b4 + MV3.101 Bus 76 + + + + + 6d9c3c72-ba07-f8e3-1cf2-e5027075baf1 + MV3.101 Bus 49 + + + + + 115f9eaf-13e0-94c2-e000-dd4229a8664e + MV3.101 Bus 84 + + + + + dc9c5c7e-05a0-6ef3-52ae-d547189c7229 + MV3.101 Bus 128 + + + + + 9da6e0e9-fc7d-08d3-f362-eea7c5863308 + MV3.101 Bus 20 + + + + + 9f09d15e-215f-34ab-5718-45e9f4f6ac9d + MV3.101 Bus 16 + + + + + 760c7a73-66b4-7030-0fc1-8b4bc887485d + MV3.101 Bus 37 + + + + + 97684c59-0d96-6b35-6c13-661e8d8ba259 + MV3.101 Bus 108 + + + + + 4cba6ff3-ee76-eff3-7a68-e5e605a31b1e + MV3.101 Bus 79 + + + + + c151ce0a-3433-059e-2075-e5535c6f5de9 + MV3.101 Bus 113 + + + + + 526db1d6-3d31-519d-4bcc-e15e4eea0377 + MV3.101 Bus 98 + + + + + 8ad6129c-a88c-2aec-f075-ed9f077db94a + MV3.101 Bus 67 + + + + + e7188310-66e6-7e73-a0f7-f96c0f3d9abf + MV3.101 Bus 64 + + + + + 4e651281-df73-7d31-1c6f-03124536504a + MV3.101 Bus 73 + + + + + efcb79ff-f708-3aee-941a-bbb0c013565c + MV3.101 Bus 105 + + + + + 17b791b7-b205-d275-f973-c1cac10fca23 + MV3.101 Bus 60 + + + + + c8745399-8f49-3d30-a126-8625ef3ff7d8 + MV3.101 Bus 123 + + + + + 7123f74d-2cb3-fbd4-ca0d-c5a7b083aae6 + MV3.101 Bus 21 + + + + + 9b175a79-168a-b364-74dc-4060d49da2c3 + MV3.101 Bus 134 + + + + + 6d5fb603-0c53-6451-9e6a-350d3b470d86 + MV3.101 Bus 52 + + + + + 39445220-1eb6-a202-17e9-fa1ff26d230b + MV3.101 Bus 111 + + + + + 1b8b2d2d-68db-f891-801b-bfc32b6cbb10 + MV3.101 Bus 127 + + + + + 051940d7-5f46-1141-0345-845af73bc61b + MV3.101 Bus 18 + + + + + 58bacb1b-6b97-f35e-9056-f123409ad68d + MV3.101 Bus 14 + + + + + e4cc9c36-d963-b91a-abf2-286732fd4d13 + MV3.101 Bus 117 + + + + + d53e0af4-e39d-a077-24c2-1b9a70ca323a + MV3.101 Bus 33 + + + + + dd27bff6-9756-ba58-8cc9-271384a2db04 + MV3.101 Bus 30 + + + + + 730c8f17-bae4-c7e5-fd4f-ff814461640e + MV3.101 busbar2B + + + + + 08a95d01-c5fe-03aa-dbb0-458f5dabd564 + MV3.101 Bus 50 + + + + + 58605c91-4c45-1448-8a47-baf5166978a6 + MV3.101 busbar1B + + + + + 07407ab0-2b31-e7c7-2495-6eaa23e49b27 + MV3.101 Bus 116 + + + + + f4dcc431-dc24-eb97-45f2-3a128fd5e66d + MV3.101 Bus 126 + + + + + c47fa67e-fcb5-2620-e260-8feeea1f0457 + MV3.101 Bus 136 + + + + + 65e322b3-ae18-927a-0a0a-e4a20194ded8 + MV3.101 Bus 74 + + + + + 76d998be-a8d9-1066-6c86-d51dfcd9ecb9 + MV3.101 Bus 107 + + + + + baeb2c7c-3b75-a823-f2e3-60478164ea08 + MV3.101 Bus 131 + + + + + 1abbbb15-5d86-586a-593e-f219ec0470f4 + MV3.101 Bus 71 + + + + + 2d63de0d-abd9-c608-4b23-27f6fd6788c8 + MV3.101 Bus 139 + + + + + 7d4101ff-b95d-3ba8-9c61-ac4fafdb2a90 + MV3.101 Bus 69 + + + + + 3e9fe49e-3528-5467-1802-3e4f4915815a + MV3.101 Bus 75 + + + + + 60522422-53c2-d7d3-830e-e9e5c44b7e74 + MV3.101 Bus 118 + + + + + c536086b-6882-97c3-e0e9-299d2caee42e + MV3.101 Bus 96 + + + + + 379e69e3-db5a-e85b-35ae-aabe3b87737d + MV3.101 Bus 103 + + + + + ca89565c-a448-5cff-5cc3-7028cf5fb252 + MV3.101 Bus 115 + + + + + 5718a016-b383-8e60-b061-5b99b2ef017d + MV3.101 Bus 85 + + + + + 0b188d0d-6877-d4ea-f9dc-873a54ed4161 + MV3.101 Bus 109 + + + + + 4307efd8-8ff2-163a-56b2-b5803704805e + MV3.101 Bus 110 + + + + + 395f2cc2-76f0-8bb0-1795-3b971208544b + MV3.101 Bus 17 + + + + + e2b983c0-14cc-5594-aa8b-422ef036fca0 + MV3.101 Bus 41 + + + + + 557a023a-d38b-f093-c68a-5e9fa24a9228 + MV3.101 Bus 88 + + + + + 7b686997-745f-a9ea-9e24-60a717ee7969 + MV3.101 Bus 28 + + + + + c48aa952-8ff9-3d3e-a526-b92a68ae5b14 + MV3.101 Bus 70 + + + + + 62a5f875-d066-813f-81c9-797615c95fc7 + MV3.101 Bus 130 + + + + + 387007f2-1b11-5814-104c-2c3815d0698f + MV3.101 Bus 81 + + + + + 9352aa3a-b6e5-623c-85e1-d94be8417c8c + MV3.101 Bus 101 + + + + + b86ea43b-ac52-c894-ba81-8111b00ac85c + MV3.101 Bus 46 + + + + + 247f7ef7-4ef8-9d2a-b058-2c653f49bb2c + MV3.101 Bus 42 + + + + + 70ebd8ad-f2c0-94ed-e659-fa5193bf3c7e + MV3.101 Bus 119 + + + + + d8b2848b-4c9d-2372-3a80-0f2c54090de5 + MV3.101 Bus 61 + + + + + e93bbc88-a718-e5e8-7f4b-5e81522012ff + MV3.101 Bus 29 + + + + + 036a5044-6656-4c3e-2b7c-c44975aa666b + MV3.101 Bus 137 + + + + + 33a1d003-ba4c-3428-14cd-3f68fb165e98 + MV3.101 Bus 53 + + + + + 35f709ca-eb62-b94f-80d3-33f600bab607 + MV3.101 Bus 19 + + + + + 9d15fdb8-8da0-7b78-82e5-f0f1f5ed11cd + MV3.101 Bus 54 + + + + + 3e175583-dccb-c91c-2387-fd3bbecc8a1a + MV3.101 node2 + + + + + 32027039-ed3a-de83-3c5d-c91b8ad64fae + MV3.101 Bus 89 + + + + + 5045c15b-762c-bf1a-bd5d-611bfe7801a2 + MV3.101 Bus 15 + + + + + 5f5af2fe-efec-0a5b-f0f4-1f3778dd7ed5 + MV3.101 Bus 77 + + + + + cc64a710-bc60-8393-1534-67aeae0037ac + MV3.101 Bus 38 + + + + + 8efd3322-c2d9-71d8-fe73-579b71cde32f + MV3.101 Bus 93 + + + + + 14f329fd-ab52-8f13-7f6c-971f9a03fec4 + MV3.101 Bus 63 + + + + + 52462df7-08c3-5d01-7b32-7b605390918d + MV3.101 Bus 62 + + + + + 44a189e2-ec1b-fe81-2817-57addffb09eb + MV3.101 Bus 94 + + + + + 935d2af4-7956-7880-a02b-57b489653dce + MV3.101 Bus 102 + + + + + 7a930359-285b-06b8-9672-18ea41f0958a + MV3.101 Bus 142 + + + + + 94a7ad37-fb23-78af-fe8c-d8c8f26d72e0 + MV3.101 Bus 43 + + + + + d4580c16-00b7-ef82-9cc1-001fd2d51e1d + MV3.101 Bus 22 + + + + + 0850c86c-abab-7768-04a2-e0bb2ad02e9b + MV3.101 Bus 55 + + + + + 256e6ac2-a956-059b-fdb6-813245400f31 + MV3.101 Bus 87 + + + + + 3482e8d7-8ae1-82b0-5763-fef5ba4f54cd + MV3.101 Bus 48 + + + + + 7397c38d-7d07-f2c1-48ab-b833a45f94f3 + MV3.101 busbar1A + + + + + 28bd024f-b497-3bc2-916e-53c309e94e95 + MV3.101 Bus 27 + + + + + bd450768-9c66-bc20-d69d-d10dadf376f6 + MV3.101 Bus 45 + + + + + 0bbad25c-73c2-2ff1-c743-e7ebe4b8d659 + MV3.101 Bus 32 + + + + + bc0876c2-366d-2935-f721-c68ad693d169 + MV3.101 Bus 91 + + + + + 92d70c56-44b9-6a46-91e4-62f5b34bb478 + MV3.101 Bus 86 + + + + + 8cb33678-b00f-6b1b-e5c5-895297997d97 + MV3.101 Bus 40 + + + + + 3261dc3a-e831-fcbd-35ae-e94d260aa6aa + MV3.101 Bus 122 + + + + + a24d1791-8984-4f63-ccc2-1fbce9ffc636 + MV3.101 Bus 82 + + + + + d950c4ac-3587-ff37-d12c-2d76bdf6ad69 + MV3.101 Bus 26 + + + + + 7124a4e1-19b4-de33-d76b-812573026325 + MV3.101 Bus 121 + + + + + 92b24ba3-5137-bd4d-8e19-bf9a2a68ee9b + MV3.101 Bus 11 + + + + + 76cde34d-c93e-25d5-24b7-d14275d1391b + MV3.101 Bus 100 + + + + + 2ba88481-69ec-3ea6-f1f5-0499c7e7fd02 + MV3.101 Bus 97 + + + + + 9a005fe3-3282-5da6-6c1d-1a9a7406db94 + MV3.101 Bus 58 + + + + + ab45297a-e03e-3cc5-d3aa-da843ea91a2e + MV3.101 Bus 83 + + + + + b9d34c1f-d6d1-af76-d959-6484604da4f9 + MV3.101 Bus 124 + + + + + 119fc018-17a5-1d66-9c97-77ce2fcc5238 + MV3.101 Bus 99 + + + + + 2e4f41c0-9317-3505-2bc6-62aade4ed90a + MV3.101 Bus 140 + + + + + 537a4af5-7195-3b72-0557-fdd868ba34be + MV3.101 Bus 80 + + + + + e55c9391-d83d-72e9-4d3e-38e5ad0fec9f + MV3.101 Bus 132 + + + + + f7daf3a7-0f47-9b52-8f23-52d373205dca + MV3.101 Bus 135 + + + + + 04fb1fc4-356a-4c49-d82f-71531342a8fb + MV3.101 Bus 34 + + + + + 0226e00f-bcd7-e1f0-a04c-b918104167da + MV3.101 Bus 31 + + + + + b0b45ac3-cf55-2d3b-718e-9c1d178af3e5 + MV3.101 Bus 35 + + + + + 0ab8cdb3-6d6f-de47-4bc5-918cb7e9de5f + MV3.101 Bus 112 + + + + + 63ee912d-e5f0-d84e-b14b-2ba9982afba7 + MV3.101 Bus 125 + + + + + 2848b881-d889-0a73-8f6e-8891b4aab963 + MV3.101 Bus 51 + + + + + 45fc6f7d-c57b-f5cb-859b-b1c372d46452 + MV3.101 Bus 57 + + + + + 22895fe0-8efa-45e8-832a-37d2757a92ed + HV1_MV3.101_Substation + + + + + 49cfd1e5-c52f-7f87-b853-76c12e21a35c + HV1-MV3.101-Trafo2 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 1a8a5059-b1ba-7f47-4385-c92f303b0d83 + HV1-MV3.101-Trafo1 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 864c19f1-3f36-9ff6-ee01-8146f9ea44b1 + HV1 grid at MV3.101 + + + + + + lv_urban6 + 0dcd000a-f0fa-42f8-b2cd-b6c263af1aed + MV3.101 MV Storage 133 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + 11c0a680-8b5b-42d0-aa62-ae1afe7e8032 + MV3.101 MV Storage 1 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + 12b5ca89-4f47-4f63-9104-9d08bfc277bb + MV3.101 SGen 111 + 0 + 0 + 0.2523 + 10 + + + + lv_urban6 + 10ab3fe5-ca26-444d-a34e-efd33b7fb172 + MV3.101 SGen 84 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 0541fc1f-b8db-45a6-a0fc-fc3d447dea49 + MV3.101 SGen 51 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 132e8803-0582-4699-8e7c-132c0b064fe4 + MV3.101 MV Storage 29 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0c1b63f6-bfcc-488b-8d25-b4bcfe7c3d33 + MV3.101 MV Storage 42 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 163a4786-fc9e-4f67-ae93-5f2302e45970 + MV3.101 SGen 102 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 16b72425-e4c1-4ccc-a9e2-103d312aa031 + MV3.101 MV Storage 117 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 1c3df07f-5859-4336-bea0-04fae2435087 + MV3.101 SGen 100 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 1c5edae2-ee94-4e7e-97b6-96581fb61aa7 + MV3.101 MV Storage 22 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 1cdbe127-3033-4d5f-83b9-15cfeb19aed3 + MV3.101 SGen 88 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 05bdce2a-51a3-4faf-8954-e1f54b917ee9 + MV3.101 SGen 107 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 1d73426e-e96a-4892-ae0f-f51111a2243b + MV3.101 MV Storage 113 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 11ca0788-6f61-465e-ad5b-6243f4da8664 + MV3.101 SGen 119 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 130a00db-4ff7-413b-89e7-b51927e19395 + MV3.101 SGen 47 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 1d816f26-d730-468b-887f-00db324687f8 + MV3.101 SGen 90 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 1ef58b22-db47-497b-8f6c-3cfef81ea7fa + MV3.101 SGen 114 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 1db23e21-1386-435e-b1c4-55438aec0c88 + MV3.101 MV Storage 25 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + 104d524a-0095-4144-905c-bd948ebb21e7 + MV3.101 SGen 128 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 1f054a58-a7a0-42da-b429-57d3b4ad126f + MV3.101 SGen 30 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0da75dee-9fad-48d5-bd83-f9f427cd883c + MV3.101 SGen 120 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 12137f82-6fea-40bd-bc38-55ab9228f3fe + MV3.101 SGen 105 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 13e37822-5633-475c-956c-985cf9c17d3e + MV3.101 MV Storage 9 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 16456899-0ee3-495d-bc9c-7338d500f798 + MV3.101 SGen 125 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 169059b6-1bea-4db5-8f17-3483ae91a1cf + MV3.101 MV Storage 48 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 173dcb34-e3df-41e1-b922-96d83dd53491 + MV3.101 SGen 10 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 0e9e40a1-6993-4833-8275-b4f351a1508e + MV3.101 SGen 28 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 157c4bc7-38f1-476b-9161-7d10aa1b54df + MV3.101 SGen 44 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 17daa0b4-70db-49a5-9695-10331a032af1 + MV3.101 MV Storage 16 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 19210669-5c2d-4f8a-b38a-eb453ed750b7 + MV3.101 MV Storage 66 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 155818af-4a9d-47ca-a4c5-b3492c21df16 + MV3.101 MV Storage 20 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05783df4-d9ea-4ba4-a6ba-6a92d6f962b6 + MV3.101 MV Storage 12 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 165261b4-24f8-4095-ad25-9bda58ae4553 + MV3.101 MV Storage 41 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 1bcd6b30-0eab-463f-afda-dbc5ece904fa + MV3.101 SGen 20 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 037ebd05-9ae4-4576-8d66-1b1b71e7a582 + MV3.101 SGen 32 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0af22853-a576-40fb-9054-28b537f5f7e4 + MV3.101 MV Storage 61 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 11afbbb4-aa6a-4647-a8a5-3ff01d74e7a9 + MV3.101 MV Storage 34 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0a778181-c3ba-4326-a697-1f6a353deff7 + MV3.101 MV Storage 45 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05f82fb7-e9e0-4d85-a235-deeeb8e918a1 + MV3.101 SGen 12 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 2290c230-02d1-4dc8-854b-500474f3dd9c + MV3.101 MV Storage 71 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 22cbd18e-381d-4a12-96be-158669a4f9b5 + MV3.101 MV Storage 54 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 29b2105c-6a0e-49cd-9a6a-d3e7a3e1212b + MV3.101 SGen 21 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 33524a46-4f45-4c7b-842a-d9b6f6f5acdb + MV3.101 SGen 48 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3357d0f3-4f9a-4115-8957-01fca9491d34 + MV3.101 SGen 70 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 3a1f07e9-8c09-44a0-8d3f-0dd9e157c4c8 + MV3.101 MV Storage 80 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 2313a5f3-d454-4088-a8e9-9d63679d5483 + MV3.101 MV Storage 28 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 3f1f3f65-08de-4db3-a1ee-7cf514812b0f + MV3.101 SGen 13 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 331bf763-9b98-458d-91ca-815cf43b72b5 + MV3.101 MV Storage 94 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 3fda2746-f855-4626-a981-1d450b209f65 + MV3.101 MV Storage 121 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 21d2011d-bb05-46f0-842b-d6f300981560 + MV3.101 SGen 3 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3a862fa1-4d3d-4589-874d-d2ee50fc240f + MV3.101 SGen 73 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 33fdf0e6-3966-426c-ae4a-b41d1aea86dc + MV3.101 MV Storage 21 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 406bbd1e-3a1b-4a17-bf2b-c5c838be2832 + MV3.101 MV Storage 108 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 262aa101-1087-42a4-bd64-dcccf6a7c887 + MV3.101 MV Storage 118 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4199355a-6d02-426c-92ac-fe862cbac50f + MV3.101 MV Storage 33 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 41ef6f44-8ea5-4da8-893f-f5d758cdc87a + MV3.101 MV Storage 23 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 4745aaa5-910f-4162-a8e6-9600ba7113b6 + MV3.101 MV Storage 76 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 44e47fb7-0158-45d2-a0c2-13fef9f631ce + MV3.101 MV Storage 81 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 4add3828-7eea-4d77-90a2-dd17f22b2bf0 + MV3.101 SGen 5 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 4cf62559-4d6b-4747-8e02-9cb1c0319a82 + MV3.101 SGen 112 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 23f1d0e3-c234-4138-8ed8-54deda17fd37 + MV3.101 SGen 96 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 453c0b33-7930-4caa-ade0-d40ef682ac80 + MV3.101 MV Storage 111 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 51e62a95-9a31-4b17-8f55-a0c1467c167f + MV3.101 MV Storage 64 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 5337d65e-0d14-406a-8961-c370ec406a07 + MV3.101 MV Storage 128 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5773c9be-c477-445a-97c5-675997ebc67f + MV3.101 SGen 52 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 584b110c-7643-4ed3-8044-196c9aeef167 + MV3.101 MV Storage 8 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + 5d37b09f-ee82-48fb-b852-31ca627ee8f9 + MV3.101 SGen 83 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2cfb222f-ae03-4443-8e0f-5b6ffbb95cb8 + MV3.101 SGen 8 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 2e7b8742-4313-4215-8828-86fbd93e49bc + MV3.101 MV Storage 53 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 2f30be2a-38de-4112-97da-d640068ae463 + MV3.101 SGen 45 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 35a6c90b-cf0b-44dc-82d1-108d5831e515 + MV3.101 SGen 46 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 3eceb2d3-bbd2-4d15-8174-b34e76e5458e + MV3.101 MV Storage 10 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 23d6d9d6-62f3-4334-9ad9-fd342eb762bc + MV3.101 SGen 38 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 24587219-0a2a-47b6-985f-9faa783f7c49 + MV3.101 SGen 59 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2fdb9cc8-d408-483e-8e34-0d668b57f560 + MV3.101 MV Storage 123 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 2285022b-32b6-437f-9cb3-15fc86d452cb + MV3.101 MV Storage 60 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 39b02ca0-0a73-45f2-8519-ae4f584a72db + MV3.101 SGen 34 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 3dc31b4e-bfbc-4621-a4f1-1ce53363ee31 + MV3.101 MV Storage 105 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 42693952-3252-48f8-b537-ba2acbe73401 + MV3.101 MV Storage 63 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 439bc75b-2f9a-4dcf-8c3d-d5d2b98bba65 + MV3.101 MV Storage 99 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 44a70f76-6dc4-42ab-9052-ae77937e0fd1 + MV3.101 MV Storage 36 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 2d5cef5a-e874-4d91-85fa-f0fa7792e203 + MV3.101 MV Storage 11 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 235eb701-c43e-4266-9f3e-44621159f757 + MV3.101 MV Storage 114 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4550ce83-9380-4c2d-ba48-edce4db8db10 + MV3.101 SGen 65 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 49c7e3ea-aba3-44d0-857d-d7ca680da93f + MV3.101 SGen 132 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 4afa186a-de83-4b67-82b5-ea028fbe2123 + MV3.101 MV Storage 91 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 58c7151c-b54a-4bff-825c-c9bca1dd4cc5 + MV3.101 SGen 14 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 4ab8a1ac-c6c8-4507-a0ab-d5157aca026c + MV3.101 SGen 113 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5744b5b5-0ae6-441e-a95e-9e9fe1aa94ea + MV3.101 MV Storage 58 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b0f44c2-9bdc-4bad-815d-e452af177ff5 + MV3.101 MV Storage 89 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b2c7cd7-47e0-411d-9c59-ba266a1b42f4 + MV3.101 SGen 91 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 5d70f316-198e-40a8-88d2-badc16c283a5 + MV3.101 MV Storage 109 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5dd5801d-96ad-4517-8c79-1e0a504ee194 + MV3.101 SGen 29 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 312b6b9a-0654-4476-bbd7-db5fef48f1c4 + MV3.101 SGen 15 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 334b1d66-6caa-44c1-a244-008b46809f2d + MV3.101 MV Storage 103 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 5e36a45c-bef3-4e23-aeca-50bdfa5bbbcc + MV3.101 MV Storage 65 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 5e4ff613-9ba4-41ba-b14d-b886ec3119a8 + MV3.101 MV Storage 35 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 5e69c9a7-4bdf-4f96-9fdd-30b16d75349b + MV3.101 SGen 54 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5ec12e7e-1c9d-412d-8930-307e96bd1373 + MV3.101 MV Storage 57 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + 34245e19-5165-49f1-abb1-b386670b8432 + MV3.101 SGen 122 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 5666380f-2408-4727-80ac-2bf79012dc52 + MV3.101 MV Storage 95 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5f7c9f77-781a-4ed5-be6c-7dd982a48ed7 + MV3.101 SGen 108 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 577335d9-73a7-441d-9312-27376a207ff6 + MV3.101 SGen 123 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 69972b42-c433-45ae-8fb9-ca13e5b38180 + MV3.101 SGen 31 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 8264ac88-3f62-4866-a88a-8033bd49e7ca + MV3.101 MV Storage 19 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 8b3336a5-9d7d-4b6c-a72f-79f5d63c205c + MV3.101 SGen 71 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 77d2308a-bc7e-4a44-90c9-e82d823a03a2 + MV3.101 MV Storage 112 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 765b14df-31e6-4b7d-865a-f4bd38be6318 + MV3.101 SGen 69 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 83127641-d4bb-4b86-8cbc-b55abd050341 + MV3.101 SGen 17 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 87ca3466-bccd-48c1-9a2a-c8985d9e732c + MV3.101 MV Storage 44 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 8962194b-9e19-4334-9083-d66b04add360 + MV3.101 SGen 43 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 8d76bfd5-e0d1-4dbf-b770-14b96d2a4af2 + MV3.101 SGen 53 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 6fa1d2c3-09e4-44d5-8ea5-16940337a520 + MV3.101 MV Storage 130 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 63637818-369e-4c6e-8286-f864bd79458d + MV3.101 MV Storage 27 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 70b41c19-5a00-438b-b35c-d92a24316322 + MV3.101 SGen 2 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 89e911da-5378-47bf-a64a-80042cfe047e + MV3.101 MV Storage 14 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 5fa0db49-2df0-48f3-bb0e-57c03b3ddc06 + MV3.101 SGen 57 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 6a9c52b6-de64-4811-b0a4-27e75acb8fd0 + MV3.101 MV Storage 69 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 792f0b5b-6189-4393-bc36-8bec8535f899 + MV3.101 SGen 126 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 8e9c2499-4077-451b-b284-5698a20ead12 + MV3.101 SGen 95 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 659894fd-e683-4680-ace0-92ad0635cc37 + MV3.101 MV Storage 92 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 8f6cecac-9876-42f8-8c2f-5c6f20a7f9db + MV3.101 MV Storage 73 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 916b7018-e5a1-4aba-b5d4-ffdfed9756e7 + MV3.101 SGen 37 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 9620e818-1fc8-4cee-90f1-a544188c2651 + MV3.101 SGen 97 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 80b1a107-81c3-4e85-b58e-6649f6a8eebf + MV3.101 SGen 75 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 668f5c04-07e3-4b46-b19e-445368b594d2 + MV3.101 MV Storage 110 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 900a7b6d-46c9-4a8f-a09c-f60ef5aa0151 + MV3.101 MV Storage 18 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 77cc5d76-c082-418a-8fc9-87f1c4c08f14 + MV3.101 SGen 129 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 7f07701c-ca7a-4869-85d5-ac97a842f74c + MV3.101 MV Storage 68 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 99493d51-c8a8-4470-ade4-4fe749ee0ddd + MV3.101 SGen 72 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 99b2ffdf-f2bd-4c29-9f9b-432b16c77f4a + MV3.101 SGen 85 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 83a46f9d-3e77-45cb-8be9-f8ed3ad04afb + MV3.101 SGen 109 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 6c7b8dee-acc0-4bf3-957d-1211d4155e15 + MV3.101 SGen 74 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 883ee820-1148-4d32-b356-209746dab4b0 + MV3.101 MV Storage 24 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 74d26114-3d80-47cd-ac0c-e2088dcbc437 + MV3.101 SGen 116 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 9155b04f-d6e4-49b6-97f2-f987c02e618d + MV3.101 SGen 26 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 8ff6c5c8-e0ad-40a3-b399-c9cc2321292d + MV3.101 SGen 23 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 9e3ee225-9109-4b48-a1e3-e195022964ce + MV3.101 MV Storage 120 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 9f366de6-1988-48dd-9841-95159eccbaf0 + MV3.101 MV Storage 124 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 6b6235f1-f478-447d-bf27-ece62e3556de + MV3.101 MV Storage 104 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 74cc8ed7-f010-4f10-83db-82f50586c6ff + MV3.101 MV Storage 131 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 96cdf27c-93b6-4cd3-8de9-5b2bd9e85775 + MV3.101 SGen 40 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 728a3267-0e49-49cb-bf7a-92f4761bcb15 + MV3.101 SGen 50 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 9599d93a-a655-4618-9c6e-0c7336402e96 + MV3.101 MV Storage 100 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 6c30ce7c-4c36-4c69-a099-81d33fcc1d40 + MV3.101 MV Storage 32 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + a097e809-e41b-4d96-9a03-c8a4532594d5 + MV3.101 SGen 106 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 64841da5-a3df-4592-babd-4abf340bde7e + MV3.101 SGen 19 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 67accd57-25ad-4aad-a129-d97ad09f517e + MV3.101 MV Storage 67 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 69d568e0-91a9-40b7-8a2f-e3d546f5632d + MV3.101 MV Storage 13 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 9dc81a53-8430-4f8a-abf4-fc5a6c1663d5 + MV3.101 SGen 39 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 661ad891-cb09-4f91-96a2-87305d4ef08f + MV3.101 SGen 86 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 8aec1d63-4481-4b29-93fe-cdf352e8d76b + MV3.101 SGen 55 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 6fe87550-bc95-4778-8127-2f95401bcdb8 + MV3.101 MV Storage 51 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 736dffa5-dd25-4af5-8bff-9755e5ade175 + MV3.101 MV Storage 98 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 81c9a7eb-2b2e-4f21-bd05-635cbf2edd03 + MV3.101 MV Storage 72 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 89ca11c6-220e-44a2-9c66-343d885f1462 + MV3.101 MV Storage 47 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + a09b1044-83d0-42eb-b5ef-c74793e46924 + MV3.101 MV Storage 6 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + a0b18eab-719a-4c53-b610-b72e89608044 + MV3.101 MV Storage 3 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6f8d90f7-5358-470c-9fc5-975d965245aa + MV3.101 MV Storage 77 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 9deb86d3-6d35-482c-899c-8488c51789e1 + MV3.101 SGen 62 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 9dae6627-4645-4180-8524-59d92cece369 + MV3.101 SGen 115 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + a33117cb-65ca-4f2e-ada4-aee7137bb5ce + MV3.101 SGen 87 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 7ca7c8a0-3e9c-4109-8dd7-e4fe0fe40343 + MV3.101 MV Storage 106 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 74372083-67a9-4aea-a341-70b7a74d7423 + MV3.101 SGen 103 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + a4e507a6-c3f2-4cf2-b5f2-ce8156a8690c + MV3.101 SGen 67 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 616ef04b-932f-49b2-b49a-509cf9e0d85c + MV3.101 MV Storage 5 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6472fcb2-8211-4de2-9aab-3f566fe20ca1 + MV3.101 SGen 76 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + b1bac79c-4e14-450e-9db9-91d6582c84fc + MV3.101 SGen 64 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b7b2bcce-4458-4064-a0b7-a3fd1f51eed5 + MV3.101 MV Storage 38 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + c222b6db-dcdb-4a84-9fd7-6752390e7ce6 + MV3.101 SGen 117 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bd57cf2c-ae28-4a6e-a5d3-4350dadf12a4 + MV3.101 SGen 77 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + a56c0180-d41f-4c54-8557-9990224bcff2 + MV3.101 MV Storage 79 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + c74cee0a-f8f9-4902-bd51-e8f32002dcb5 + MV3.101 SGen 130 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adba62b5-31de-40dd-ba5e-6016817e0b6b + MV3.101 SGen 36 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf7f0f4d-cb0a-44f4-a204-e4d45c45256c + MV3.101 MV Storage 59 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d6007ee7-29c5-4979-aadb-eaf67ec82677 + MV3.101 MV Storage 93 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + a62d5e8e-c850-42a7-bb2e-0d9912370396 + MV3.101 SGen 60 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + b770926c-21c7-4a5b-ab8b-f7118a06dcfb + MV3.101 SGen 58 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + af641d59-7cb4-40af-b59a-274fe8d40012 + MV3.101 MV Storage 116 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ce77bb95-6d0c-4746-b567-1053bf75134c + MV3.101 SGen 6 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf4d009a-15e5-4385-a8f9-06675e2b3cb9 + MV3.101 MV Storage 97 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + cf6e5150-b194-40a4-a374-c52ca2fa7851 + MV3.101 SGen 99 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + d7f17798-671f-48ce-a987-022efe8ea074 + MV3.101 MV Storage 56 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + aee65a47-bf09-4a89-ad43-ff1db74c53e6 + MV3.101 MV Storage 84 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d96ba3ab-0293-4bc6-8bbb-6dc5a26d3421 + MV3.101 SGen 49 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + dc6c3a5c-80da-41f4-b4c5-f36751e73ba3 + MV3.101 SGen 56 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + a9f288b8-ffba-4a9b-989c-2e7c0ce43884 + MV3.101 MV Storage 43 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + cc72a949-f5b0-4024-83cc-2c9b1518fb6a + MV3.101 SGen 121 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + b73138ea-e59d-4add-aefb-0c0e39d45a32 + MV3.101 SGen 89 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + d161600f-ca3b-40f5-a291-22090f00ed8a + MV3.101 SGen 11 + 0 + 0 + 0.1712 + 10 + + + + Hydro3 + d9a7edfd-e7ed-4572-af38-02c1c23ce77f + MV3.101 MV SGen 1 + 0 + 0 + 2.9 + 10 + + + + lv_semiurb5 + e127e90d-70ec-400d-b732-cbba8d74168a + MV3.101 SGen 63 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + e1dd8c5f-59d5-4b0b-9a79-aac238094d6e + MV3.101 MV Storage 126 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + e2f13a8a-76ee-4faf-8016-ecdf87f0bc26 + MV3.101 MV Storage 88 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + b108680b-616b-448c-8147-29d25abec7a4 + MV3.101 MV Storage 82 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + c189aebd-8e65-488c-8bd3-5c94fe4dac7b + MV3.101 SGen 61 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bb7a995b-b646-41cc-9943-b24ef708a1cb + MV3.101 SGen 79 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + a923cfdc-2409-467f-b56e-0fed3d3b2d55 + MV3.101 MV Storage 102 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + bcb34cdb-aea5-466f-8dc7-180eb9b37d2e + MV3.101 SGen 131 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + ccd6c75d-f3b6-4210-a68c-bc31c7cc6bbe + MV3.101 MV Storage 78 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + c1146c39-35b9-4f1e-ab34-5ea518993714 + MV3.101 MV Storage 107 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + b9fde374-4332-4151-b397-011bbfe1ce8a + MV3.101 MV Storage 83 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + ac9e35d7-190e-488a-82b7-f3a0767b96cf + MV3.101 SGen 7 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + c4862ca4-89e9-4d4f-b8d0-2309d9884cd1 + MV3.101 MV Storage 127 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + a6d3f4d6-8fe6-44ee-abc3-c97463efc3d8 + MV3.101 SGen 92 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adf0a6f2-f1e9-4a6c-b8aa-58d563bac0ae + MV3.101 SGen 33 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf3bfaad-c3f7-4c8a-b45a-d093b614cbe5 + MV3.101 MV Storage 75 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + bb6b73e9-2832-4778-89f0-69519c7de317 + MV3.101 SGen 133 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + aa4f9936-1432-4cce-aea7-6d52430cb0d6 + MV3.101 MV Storage 55 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bcc7a28e-b4d0-44d9-91e9-fe7ffe89f7c2 + MV3.101 SGen 78 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + cde19335-3d2e-4251-9c68-b0d23b2958f4 + MV3.101 MV Storage 115 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + b0395b28-b85f-4b3b-809f-9bc2cc66021b + MV3.101 SGen 81 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + ceca9c98-3deb-43aa-83fb-be94940efa9a + MV3.101 MV Storage 17 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + d0bee435-1b3c-40f9-9e60-211149e7d6fc + MV3.101 MV Storage 2 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + d0d3daf6-5062-4a89-ab56-f3218a1f97ad + MV3.101 MV Storage 31 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + d2b31764-56c9-4ed8-9b9e-196865ba9d7c + MV3.101 MV Storage 119 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + d4ea00dc-c67f-4049-b987-0ea403d92039 + MV3.101 SGen 27 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + d658229b-f7e1-448c-8a71-476be4d22fd3 + MV3.101 SGen 18 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + db508db1-32d7-4996-a15c-f426579daf00 + MV3.101 SGen 110 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + c177863c-53e7-4202-be2c-b89f98fcc2e9 + MV3.101 MV Storage 49 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + e0289568-e905-4773-9017-72fd1973e01f + MV3.101 SGen 16 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b8c3feaa-ced5-4ce7-98dd-2c7d80a53f81 + MV3.101 MV Storage 30 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + aa638558-9d26-481f-9828-4e959b1a56aa + MV3.101 MV Storage 40 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + b87e223c-91c4-4299-bad4-0b495266f505 + MV3.101 MV Storage 85 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bb95398d-78d1-4b94-a31d-a9d62d94ab27 + MV3.101 SGen 9 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf658c61-b214-4794-baca-d1ec4f5aac09 + MV3.101 MV Storage 62 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + ccec02d7-bd62-4350-a767-808833d1116f + MV3.101 SGen 93 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d21526e4-7a31-41d6-861b-626f69cd0923 + MV3.101 SGen 35 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + bbbd3c7a-7293-4377-bed1-8f09afb50168 + MV3.101 SGen 41 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ad3769ae-8568-469a-a418-6db01e9dcc3e + MV3.101 SGen 4 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d3b768da-d85d-4e60-9d42-f25c3d31e790 + MV3.101 SGen 127 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + e5909199-409f-4bcf-afe7-91162d27a049 + MV3.101 MV Storage 46 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fd2c013f-91ad-4731-8c05-020966be5c21 + MV3.101 MV Storage 129 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + efaf4560-f7b8-46f3-bf37-c3026fdde8cb + MV3.101 MV Storage 125 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ec6a90a3-baa1-4628-8015-56587c7f066f + MV3.101 MV Storage 90 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + e8ca0274-7972-41d0-81f5-5ce83ddcafa2 + MV3.101 MV Storage 70 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e6b0180c-f587-4b99-b24a-59161892522e + MV3.101 SGen 25 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f50f9b84-4f87-4e7a-a033-3685ba290923 + MV3.101 SGen 101 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + f22bd768-44fa-4f44-9e1a-ada4ecc0c7b6 + MV3.101 MV Storage 39 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + fca529f1-796c-48fb-b96f-e498c9eec06f + MV3.101 SGen 24 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ed174c39-5407-4821-9e5d-a06a29050cf4 + MV3.101 MV Storage 37 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + f4f05b3f-5b4f-4ca4-9ccf-1fead37cfe0b + MV3.101 SGen 22 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f6a1a3f4-2775-4653-8123-5731811db974 + MV3.101 MV Storage 96 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + f4dd0f7f-ac97-4475-94f5-34c861f00f11 + MV3.101 MV Storage 26 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + f98a8df5-ab23-43c0-be13-bf0013c8f242 + MV3.101 MV Storage 74 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + fcc74610-1be7-48d3-9a5a-080a8542907e + MV3.101 MV Storage 7 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + e6180b3b-254b-4b43-a32e-2a7d239aff5a + MV3.101 SGen 104 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + fdf7314e-8cb0-43d2-8a7a-36600525e32c + MV3.101 MV Storage 132 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + fa8012d8-f024-40b1-b931-6a1bb3cb29a7 + MV3.101 SGen 124 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + fd056a2a-40d4-4b2a-9491-7207c5d5ea85 + MV3.101 SGen 118 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + fbe0c20b-da2b-448c-8229-7614a2c4abcf + MV3.101 MV Storage 15 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fa99ba1f-c0e4-4c0e-a6bf-ea6a3a7ee21d + MV3.101 MV Storage 122 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + e7f461ec-44fd-4986-82d1-20a35f20fa49 + MV3.101 SGen 94 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f50e5096-6f24-43e6-84d9-c382e8a5e604 + MV3.101 MV Storage 86 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + ecfcf7a0-65c3-46ba-89f7-ecc79fec1ddf + MV3.101 MV Storage 4 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + f3efdd0e-eaa0-429a-b103-ba4800b3f174 + MV3.101 SGen 1 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f25b840b-3235-442d-a54c-d46cb290a211 + MV3.101 SGen 80 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + ea61d02e-4cf4-450a-8bdf-b4b9ff984a5c + MV3.101 MV Storage 87 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + eb25dab9-2373-4815-95f5-d43bfa5e2e4d + MV3.101 MV Storage 50 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + eb95a6e1-1d97-4757-a3fb-9813cd878298 + MV3.101 MV Storage 52 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e78c7485-dd98-4d70-a4e0-f3d33f93fbee + MV3.101 SGen 66 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ebe52646-d71d-41f0-9135-e39aeeb2e4d9 + MV3.101 SGen 42 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ec15ecc0-78a7-4012-aa47-f4dfbc524474 + MV3.101 SGen 82 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + fc97a6f2-1a84-451a-9fa6-b3d343fe08ff + MV3.101 SGen 68 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + e712dcdc-0a76-44da-8e77-fb20a70e07f9 + MV3.101 SGen 98 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + eef42a51-8e61-4e24-876e-961cb4fd9d9e + MV3.101 MV Storage 101 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + 3de2f8c8-eefb-47d0-3f1f-c7e2e697bf70 + 1-MV-urban--2-sw + + + bd6d8cee-c8f4-7932-c9ee-d9585f5143f7 + HV1-MV3.101-Trafo2 + + + + + 881600c4-d3b4-cab0-050b-08dcbb9ab4bb + HV1-MV3.101-Trafo1 + + + + + + 1bae3fe1-0bc9-46ae-856a-9b5a21af169b + CB MV3.101 Busbar2 + false + false + + + + a6fae133-a560-411b-aca0-3ff83654a736 + CB MV3.101 Busbar5 + false + false + + + + 2ef567ec-21ab-41c8-9b02-90560b261497 + HV1 Switch 319 + false + false + + + + 3e511a23-3e14-4ddd-9e9c-89035d411cc5 + CB MV3.101 Busbar3 + false + false + + + + 0bf73b1b-41ee-4e34-84fd-e63a417008d5 + HV1-MV3.101-Trafo1 CB HV-Side + false + false + + + + 822ca83b-e968-47d6-9066-d5537f84f785 + HV1-MV3.101-Trafo2 CB HV-Side + false + false + + + + b6c2111b-e500-4aba-bb72-7ef14cd3e21b + CB MV3.101 Busbar0 + false + false + + + + d10f2815-3415-4292-9de6-5170fd628217 + CB MV3.101 Busbar1 + false + false + + + + 054dd2d7-a6e2-4c31-a381-d2d2d40bb8a1 + CB MV3.101 Busbar4 + false + false + + + + 78d65f8a-c5b2-44a8-b251-2d296301c0a7 + CB MV3.101 Base Station2 + false + false + + + + 0a7b1590-fa32-4ae4-9b7c-de0f60fd9ffa + CB MV3.101 Base Station1 + false + false + + + 0 + + 48d081ef-ce03-fd6a-4715-e8ab8161d37a + MV3.101 MV Storage 61 + 0 + -0.2477 + + + 0 + + 053810b1-db5b-4888-7e78-a5919d998a7c + MV3.101 MV Storage 45 + 0 + -0.2252 + + + 0 + + 56cd77f1-2e3a-4888-1923-8456d4cc7914 + MV3.101 MV Storage 42 + 0 + -0.2252 + + + 0 + + 23d24471-ac13-d986-71e6-f703e97f9340 + MV3.101 MV Storage 12 + 0 + -0.2252 + + + 0 + + be09a79d-4e12-ed20-9e0e-2c3fe60d8297 + MV3.101 MV Storage 41 + 0 + -0.2252 + + + 0 + + 13707fb0-303d-b42e-fbcf-a5ab31e0cd00 + MV3.101 MV Storage 34 + 0 + -0.2252 + + + 0 + + 699cddf0-80e9-84bb-ca4c-b7679a3f16ee + MV3.101 MV Storage 29 + 0 + -0.2252 + + + 0 + + a794091b-33eb-2a7d-4277-4638019aaa4d + MV3.101 MV Storage 16 + 0 + -0.2252 + + + 0 + + 90742ed4-0f9f-88eb-58aa-ca88be4ca563 + MV3.101 MV Storage 1 + 0 + -0.093 + + + 0 + + 60c01160-1a37-a6a8-730c-c793b141e794 + MV3.101 MV Storage 20 + 0 + -0.2252 + + + 0 + + 549be146-fd5d-71c3-24c0-7e105f705ff6 + MV3.101 MV Storage 133 + 0 + -0.0508 + + + 0 + + 4b2b6f6b-9808-5901-233e-ee9ad9e91499 + MV3.101 MV Storage 48 + 0 + -0.2252 + + + 0 + + 0ea898ed-863c-7c44-1f27-45625efb7d7a + MV3.101 MV Storage 117 + 0 + -0.0508 + + + 0 + + f06f01ac-e73e-9492-915b-52e1ee8969bf + MV3.101 MV Storage 9 + 0 + -0.093 + + + 0 + + 542b86d2-0fed-e06f-0641-315279066e8e + MV3.101 MV Storage 25 + 0 + -0.2252 + + + 0 + + ec39331f-3ad5-a4be-e739-c2e0ecdb3591 + MV3.101 MV Storage 54 + 0 + -0.2477 + + + 0 + + 23545b6c-5dcb-16ca-5a01-1f062632c3bc + MV3.101 MV Storage 114 + 0 + -0.0508 + + + 0 + + f6e4ca34-5434-6803-a199-104617a7577a + MV3.101 MV Storage 60 + 0 + -0.2477 + + + 0 + + c731b59c-8d70-d065-df91-3c31c3262f83 + MV3.101 MV Storage 66 + 0 + -0.2477 + + + 0 + + ee7e53b0-e7e2-0f07-e014-30a8d1a9bf11 + MV3.101 MV Storage 71 + 0 + -0.2477 + + + 0 + + e4018ed4-396f-405e-e02e-e67609a931d2 + MV3.101 MV Storage 22 + 0 + -0.2252 + + + 0 + + 472e84d8-8d5f-6edf-4701-e246a1186c75 + MV3.101 MV Storage 113 + 0 + -0.0508 + + + 0 + + 5a3da016-0f3d-0e31-7f4e-986aefdb9a89 + MV3.101 MV Storage 28 + 0 + -0.2252 + + + 0 + + 4256e716-720f-7dcc-cb73-d5a4a89749eb + MV3.101 MV Storage 21 + 0 + -0.2252 + + + 0 + + 63d2ac6c-0694-fd4c-a230-a6efb7228336 + MV3.101 MV Storage 118 + 0 + -0.0508 + + + 0 + + 07e5f169-40b7-a84c-8225-f2c8ac1387d6 + MV3.101 MV Storage 53 + 0 + -0.2477 + + + 0 + + e30e4dde-f9c4-1677-5820-7981cd549ba1 + MV3.101 MV Storage 105 + 0 + -0.0508 + + + 0 + + 5bb74099-419e-9449-3329-24470b756855 + MV3.101 MV Storage 123 + 0 + -0.0508 + + + 0 + + 74f6fd21-5f16-8cf1-452e-2ab29a55feb9 + MV3.101 MV Storage 94 + 0 + -0.2477 + + + 0 + + 8d582142-08ae-b3e0-f767-45e1718a8e20 + MV3.101 MV Storage 103 + 0 + -0.0508 + + + 0 + + 9f9c3186-819f-b44b-dcbe-111acd5c2c2d + MV3.101 MV Storage 80 + 0 + -0.2477 + + + 0 + + 19b153c3-d5a3-457a-96ae-b64527c80db9 + MV3.101 MV Storage 11 + 0 + -0.2252 + + + 0 + + 25e55bea-bc2a-42aa-0485-910d9fdd5c65 + MV3.101 MV Storage 36 + 0 + -0.2252 + + + 0 + + a35c0e50-f3f3-ea84-1d64-dc524bd580e0 + MV3.101 MV Storage 81 + 0 + -0.2477 + + + 0 + + 857bef1f-3ef8-8e37-48dd-7b3fdb8fece9 + MV3.101 MV Storage 10 + 0 + -0.2252 + + + 0 + + 6948bcf2-3848-31e8-9c7f-31ca04b9f6c3 + MV3.101 MV Storage 33 + 0 + -0.2252 + + + 0 + + 702eff52-7157-b20c-a2eb-89c136318246 + MV3.101 MV Storage 63 + 0 + -0.2477 + + + 0 + + 5dc97ee2-4a2d-3767-1e2f-960218b0f189 + MV3.101 MV Storage 99 + 0 + -0.2477 + + + 0 + + 371981dd-8285-d124-c4d4-78a45d90dd8f + MV3.101 MV Storage 108 + 0 + -0.0508 + + + 0 + + b9c3df42-3139-8919-e5e9-1c02b6804762 + MV3.101 MV Storage 23 + 0 + -0.2252 + + + 0 + + 4e53d518-e264-8bc1-2fc5-05a1499e8ae2 + MV3.101 MV Storage 121 + 0 + -0.0508 + + + 0 + + 3a33b120-3b46-2ee2-d9c3-c9515b53a15c + MV3.101 MV Storage 91 + 0 + -0.2477 + + + 0 + + 3b7d59a9-9574-1c0f-3300-236850caa091 + MV3.101 MV Storage 128 + 0 + -0.0508 + + + 0 + + 46f0aa2a-3ebf-b6e9-26b4-2f2721587d6a + MV3.101 MV Storage 64 + 0 + -0.2477 + + + 0 + + 5e0010b1-4774-de36-3419-aea42e66caf8 + MV3.101 MV Storage 95 + 0 + -0.2477 + + + 0 + + 5e9f3e12-68ad-b543-94cd-527f56067a27 + MV3.101 MV Storage 89 + 0 + -0.2477 + + + 0 + + e98646d6-cc3e-0848-b139-3fd2630459c0 + MV3.101 MV Storage 76 + 0 + -0.2477 + + + 0 + + 508d4ff9-ac1c-a5cd-aaf8-471b583c82b3 + MV3.101 MV Storage 111 + 0 + -0.0508 + + + 0 + + 10952b3a-fbed-9d9e-385a-4bea5762a107 + MV3.101 MV Storage 58 + 0 + -0.2477 + + + 0 + + c07b3094-c4ac-689e-4aa7-7351eba7bad2 + MV3.101 MV Storage 8 + 0 + -0.093 + + + 0 + + 19f0bb21-7885-c6e1-e1cc-1d3ec5cb14c9 + MV3.101 MV Storage 110 + 0 + -0.0508 + + + 0 + + 25f00a1b-9f7f-e682-3834-20cf9d88f6a0 + MV3.101 MV Storage 109 + 0 + -0.0508 + + + 0 + + 994d40bf-17ec-be8c-1537-e14e2e1c1dcc + MV3.101 MV Storage 92 + 0 + -0.2477 + + + 0 + + 5789325f-e960-ab6d-3b10-41ca02e8757e + MV3.101 MV Storage 65 + 0 + -0.2477 + + + 0 + + 2d716c8c-caf6-96e7-159f-62e95b8f0d75 + MV3.101 MV Storage 57 + 0 + -0.2477 + + + 0 + + 75ce967b-a38f-311d-5b79-39124dd1fc4d + MV3.101 MV Storage 27 + 0 + -0.2252 + + + 0 + + c49aec52-e8bc-36dc-6d5c-4822f18b3709 + MV3.101 MV Storage 35 + 0 + -0.2252 + + + 0 + + 88f553be-e02c-760c-b046-1b4a6e532ad2 + MV3.101 MV Storage 67 + 0 + -0.2477 + + + 0 + + f4d16633-6743-8816-e313-0a318adb4ff9 + MV3.101 MV Storage 5 + 0 + -0.093 + + + 0 + + 407daf34-d4d9-cbe2-fdbf-a4b4bcaa2506 + MV3.101 MV Storage 98 + 0 + -0.2477 + + + 0 + + 432dc384-98a8-c7aa-a5be-1da1adc4aac7 + MV3.101 MV Storage 13 + 0 + -0.2252 + + + 0 + + 98223601-32e8-c364-a57f-6df16cef9adb + MV3.101 MV Storage 77 + 0 + -0.2477 + + + 0 + + 4523fcd0-5cd8-f12c-57f1-5a66b1bd9e75 + MV3.101 MV Storage 69 + 0 + -0.2477 + + + 0 + + 59d707d3-a4a8-3bed-5b68-cf8b5654b109 + MV3.101 MV Storage 130 + 0 + -0.0508 + + + 0 + + 2262576f-4e36-6738-267f-ced384f05862 + MV3.101 MV Storage 51 + 0 + -0.2252 + + + 0 + + a3eda602-63f0-3a96-f00f-7e0431f91046 + MV3.101 MV Storage 104 + 0 + -0.0508 + + + 0 + + ff0d6762-05a7-3309-7e7e-bbc32871966d + MV3.101 MV Storage 131 + 0 + -0.0508 + + + 0 + + 698b7ed5-6c74-92ed-7d87-8a23783fe43c + MV3.101 MV Storage 112 + 0 + -0.0508 + + + 0 + + 84937d01-aece-d5b0-c7c0-4e38f752a944 + MV3.101 MV Storage 32 + 0 + -0.2252 + + + 0 + + 293b39ca-96f7-7435-3405-be3052e42c8b + MV3.101 MV Storage 106 + 0 + -0.0508 + + + 0 + + f2214ea0-d311-9f4f-3c0c-460d923092b1 + MV3.101 MV Storage 14 + 0 + -0.2252 + + + 0 + + f941a9f8-3b9a-9b4f-84e2-d0284c761c2e + MV3.101 MV Storage 73 + 0 + -0.2477 + + + 0 + + 9e9a0a67-08a1-1a1a-b9ee-eb8e1654f3f0 + MV3.101 MV Storage 44 + 0 + -0.2252 + + + 0 + + 9ded6486-49f5-4236-4570-81cdfd6c97ae + MV3.101 MV Storage 19 + 0 + -0.2252 + + + 0 + + f514e2fc-4f1f-cc28-2293-90b79c373e5a + MV3.101 MV Storage 72 + 0 + -0.2477 + + + 0 + + 4278455c-fed1-53f7-54ea-dc3e092a1b5a + MV3.101 MV Storage 24 + 0 + -0.2252 + + + 0 + + 7f010f6e-82ca-4f0b-11f6-0542563814e3 + MV3.101 MV Storage 47 + 0 + -0.2252 + + + 0 + + b38b8234-4162-ca63-93aa-b0a690bad8d6 + MV3.101 MV Storage 68 + 0 + -0.2477 + + + 0 + + d52eba40-5b39-1dad-9050-fa6f17615646 + MV3.101 MV Storage 100 + 0 + -0.2477 + + + 0 + + f4e55466-d2a7-1271-6a91-a6099fc61e2d + MV3.101 MV Storage 3 + 0 + -0.093 + + + 0 + + 68175ad0-cb97-ba1d-c734-571f71aee954 + MV3.101 MV Storage 79 + 0 + -0.2477 + + + 0 + + 2ff233f1-9572-f079-e6a1-386c528ed1bc + MV3.101 MV Storage 120 + 0 + -0.0508 + + + 0 + + 745ddb79-ab87-d84e-f211-ebfd73e23c6e + MV3.101 MV Storage 124 + 0 + -0.0508 + + + 0 + + 31e1cc95-c82a-47da-cb48-0d824d0aadcb + MV3.101 MV Storage 102 + 0 + -0.0508 + + + 0 + + c321b46d-3571-fc0a-071f-d9048d919687 + MV3.101 MV Storage 6 + 0 + -0.093 + + + 0 + + de685234-ede0-e71a-f3f1-ed98266a48cc + MV3.101 MV Storage 43 + 0 + -0.2252 + + + 0 + + 708ce2d9-2738-0d8d-f513-9c1e840505cc + MV3.101 MV Storage 18 + 0 + -0.2252 + + + 0 + + 66d1fe3e-526c-18c8-49d1-5c08d389a91b + MV3.101 MV Storage 82 + 0 + -0.2477 + + + 0 + + 45aadf03-db5d-a6f6-6f4e-2a453aa46ea2 + MV3.101 MV Storage 38 + 0 + -0.2252 + + + 0 + + 858b7eb7-cfb2-1b19-0983-2ddc94c1db50 + MV3.101 MV Storage 55 + 0 + -0.2477 + + + 0 + + 7061f85b-e2b5-57f7-f1fb-57891ea917cb + MV3.101 MV Storage 30 + 0 + -0.2252 + + + 0 + + 7bf7cb11-965c-f731-b421-a3b02893abc1 + MV3.101 MV Storage 40 + 0 + -0.2252 + + + 0 + + b6560e79-7ba7-fa67-6556-0cd39c8ec974 + MV3.101 MV Storage 83 + 0 + -0.2477 + + + 0 + + c94e0254-1f04-28ef-90dc-ab3064ef314d + MV3.101 MV Storage 116 + 0 + -0.0508 + + + 0 + + 1af7bb13-800b-6287-3e63-fbc5acd0fcd5 + MV3.101 MV Storage 85 + 0 + -0.2477 + + + 0 + + e9282bde-b493-7b52-70eb-7067949e1d63 + MV3.101 MV Storage 84 + 0 + -0.2477 + + + 0 + + ccb538ca-ca53-62be-e99a-5e255e4bf07f + MV3.101 MV Storage 75 + 0 + -0.2477 + + + 0 + + 5b3d90aa-bdbb-8da8-3011-f14455d3105c + MV3.101 MV Storage 62 + 0 + -0.2477 + + + 0 + + e9b0e6b8-19b7-4106-260c-c233a6d500eb + MV3.101 MV Storage 127 + 0 + -0.0508 + + + 0 + + 7431db48-211d-9a86-f456-7dea996c9337 + MV3.101 MV Storage 97 + 0 + -0.2477 + + + 0 + + ba79311b-f923-1cc8-5b5f-bd76212fac93 + MV3.101 MV Storage 49 + 0 + -0.2252 + + + 0 + + d76061fd-15b2-a4c8-cef8-b8da5d25259d + MV3.101 MV Storage 107 + 0 + -0.0508 + + + 0 + + 222088be-2c19-20b5-0ce0-d19575db6b3b + MV3.101 MV Storage 115 + 0 + -0.0508 + + + 0 + + 9749f017-18e3-8c37-fc9c-fb44161926f8 + MV3.101 MV Storage 17 + 0 + -0.2252 + + + 0 + + 7107f55f-9faf-d0f5-53d6-10595c31f8b0 + MV3.101 MV Storage 78 + 0 + -0.2477 + + + 0 + + 8d1d6e4d-e048-9810-0a64-41a97a9c4821 + MV3.101 MV Storage 126 + 0 + -0.0508 + + + 0 + + faa4ac52-4b9f-f02c-941e-b53224cd74e5 + MV3.101 MV Storage 119 + 0 + -0.0508 + + + 0 + + 610e89e6-de8e-238c-8263-e61894b89c8f + MV3.101 MV Storage 93 + 0 + -0.2477 + + + 0 + + 0715273c-33b1-f8c0-6780-8e4442bdb6ed + MV3.101 MV Storage 56 + 0 + -0.2477 + + + 0 + + 2dab8ff2-0441-ae6c-9f5e-b10733c33446 + MV3.101 MV Storage 2 + 0 + -0.093 + + + 0 + + c630bf8b-6804-c1ef-df04-24100ea8cc9a + MV3.101 MV Storage 31 + 0 + -0.2252 + + + 0 + + 919d88d4-6db2-384f-3d84-d409b6c41c2e + MV3.101 MV Storage 46 + 0 + -0.2252 + + + 0 + + cac8ab2f-2f2d-4070-f4b5-afce965ea858 + MV3.101 MV Storage 88 + 0 + -0.2477 + + + 0 + + 90b46a9c-9fdd-78c6-5f37-8337e4d80d35 + MV3.101 MV Storage 59 + 0 + -0.2477 + + + 0 + + e66ea5a4-fc92-7c5e-aa8b-8145cd896de9 + MV3.101 MV Storage 87 + 0 + -0.2477 + + + 0 + + d4189104-a2f0-6144-b677-032535bf293d + MV3.101 MV Storage 4 + 0 + -0.093 + + + 0 + + 9a241147-d3fc-a173-67f1-da75d001f21a + MV3.101 MV Storage 101 + 0 + -0.2477 + + + 0 + + 36660b52-d735-b8ce-2d2b-5ea70a3a5a57 + MV3.101 MV Storage 37 + 0 + -0.2252 + + + 0 + + 582908bd-60bb-4fe7-8107-ea977653a2e7 + MV3.101 MV Storage 70 + 0 + -0.2477 + + + 0 + + e6857bfc-e08b-d88e-a717-e6fe5338a9e7 + MV3.101 MV Storage 52 + 0 + -0.2477 + + + 0 + + bc660879-fd0e-dff1-5b79-c8aaa13ccf15 + MV3.101 MV Storage 125 + 0 + -0.0508 + + + 0 + + 7623dc11-1511-45c4-5956-ad351514fd27 + MV3.101 MV Storage 50 + 0 + -0.2252 + + + 0 + + fad39011-dc94-374a-e00b-3f7ba472758f + MV3.101 MV Storage 90 + 0 + -0.2477 + + + 0 + + b9253e2b-2496-e4be-9482-0bf3f6d3ad72 + MV3.101 MV Storage 96 + 0 + -0.2477 + + + 0 + + f657fbce-cbbd-ae65-53cc-0e30b71d0ac6 + MV3.101 MV Storage 7 + 0 + -0.093 + + + 0 + + fc2b832a-42a0-1d84-f314-f1deb4a62b65 + MV3.101 MV Storage 39 + 0 + -0.2252 + + + 0 + + e86629bf-49ef-005e-3733-3859be33c0db + MV3.101 MV Storage 74 + 0 + -0.2477 + + + 0 + + 2a53fa1e-3321-ee2a-a5b8-f23ab2df2574 + MV3.101 MV Storage 86 + 0 + -0.2477 + + + 0 + + c4f53510-5208-47ba-2a7e-7c8d512a723e + MV3.101 MV Storage 15 + 0 + -0.2252 + + + 0 + + c2351f23-900d-a5f9-3ac7-caf7ce7ddb29 + MV3.101 MV Storage 129 + 0 + -0.0508 + + + 0 + + 7b1244df-ad19-cc4e-95dd-e68452c14977 + MV3.101 MV Storage 132 + 0 + -0.0508 + + + 0 + + 1f64842d-4062-4c3c-f9df-89627c0327f6 + MV3.101 MV Storage 26 + 0 + -0.2252 + + + 0 + + edeccb4c-b1f0-2125-9d6f-363e768b39dc + MV3.101 MV Storage 122 + 0 + -0.0508 + + + 48b8834d-b984-f8cc-d7d5-2894dd4274af + patl + + true + + + + a0fc8bf8-eb5b-6ea2-78f0-70ca6f768671 + highVoltage + + true + + + + a6847f87-bb8d-42bd-f395-cc837b190037 + lowVoltage + + true + + + + + 0 + 52486.4 + 100000 + 9999 + 0.1 + 0.1 + 1 + 41989.1 + 0 + -9999 + 0.1 + 0.1 + 1 + 38f16956-c45a-489d-8872-b9fff788d254 + HV1 grid at MV3.101 + + + + d3f7bf98-bcea-1f0e-5ce4-93ae1e0e6afe + MV3.101 Load 51 + + + 64b79e2e-0f98-48c1-2a00-887bb03c5b11 + MV3.101 Load 51 + + + + 40795be0-5cd7-2962-a710-bdb75a5c42da + MV3.101 Load 51 + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_DI.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_DI.xml new file mode 100644 index 00000000..1e4d1af0 --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_DI.xml @@ -0,0 +1,1129 @@ + + + + 2018-05-24T13:01:41 + NEPLAN by Busarello + Cott + Partner AG, Switzerland + 2018-05-24T13:01:39 + 7 + + + NEPLAN + FULL + http://iec.ch/TC57/61970-453/DiagramLayout/2 + + + Load6 + + + + 0 + + + + + 1 + + 210.800000 + 252.000000 + + + 2 + + 210.800000 + 246.000000 + + + 0 + + + + + 1 + + 222.800000 + 88.000000 + + + 2 + + 222.800000 + 98.000000 + + + 0 + + + + + 1 + + 230.800000 + 178.000000 + + + 2 + + 230.800000 + 172.000000 + + + 0 + + + + + 1 + + 234.800000 + 142.000000 + + + 2 + + 234.800000 + 138.000000 + + + 0 + + + + + 1 + + 237.100000 + 104.000000 + + + 2 + + 236.800000 + 98.000000 + + + 0 + + + + + 1 + + 130.900000 + 30.000000 + + + 2 + + 130.800000 + 40.000000 + + + 0 + + + + + 1 + + 86.000000 + 46.000000 + + + 2 + + 86.800000 + 40.000000 + + + 0 + + + + + 1 + + 106.800000 + 102.000000 + + + 2 + + 106.800000 + 94.000000 + + + 0 + + + + + 1 + + 94.800000 + 156.000000 + + + 2 + + 94.800000 + 150.500000 + + + 0 + + + + + 1 + + 222.800000 + 48.000000 + + + 2 + + 222.800000 + 40.000000 + + + 0 + + + + + 1 + + 86.000000 + 82.600000 + + + 2 + + 86.800000 + 94.000000 + + + 0 + + + + + 1 + + 108.800000 + 156.000000 + + + 2 + + 108.800000 + 150.500000 + + + 0 + + + + + 1 + + 102.800000 + 224.000000 + + + 2 + + 102.800000 + 216.500000 + + + 0 + + + + + 1 + + 96.000000 + 102.000000 + + + 2 + + 96.800000 + 94.000000 + + + 0 + + + + + 1 + + 242.600000 + 178.000000 + + + 2 + + 242.800000 + 172.000000 + + + 0 + + + + + 1 + + 249.200000 + 104.000000 + + + 2 + + 248.800000 + 98.000000 + + + 0 + + + + + 1 + + 38.000000 + 222.000000 + + + 2 + + 38.000000 + 216.000000 + + + 0 + + + + + 1 + + 58.800000 + 180.700000 + + + 2 + + 58.800000 + 180.000000 + + + 3 + + 58.800000 + 173.800000 + + + 0 + + + + + 1 + + 94.800000 + 198.000000 + + + 2 + + 94.800000 + 192.000000 + + + 0 + + + + + 1 + + 88.800000 + 224.000000 + + + 2 + + 88.800000 + 216.500000 + + + 0 + + + + + 1 + + 112.800000 + 264.000000 + + + 2 + + 102.800000 + 264.000000 + + + 0 + + + + + 1 + + 212.800000 + 274.000000 + + + 2 + + 212.800000 + 280.000000 + + + 0 + + + + + 1 + + 152.800000 + 221.200000 + + + 2 + + 152.800000 + 216.000000 + + + 0 + + + + + 1 + + 204.800000 + 98.000000 + + + 2 + + 254.800000 + 98.000000 + + + 0 + + + + + 1 + + 208.800000 + 138.000000 + + + 2 + + 238.800000 + 138.000000 + + + 0 + + + + + 1 + + 208.800000 + 172.000000 + + + 2 + + 248.800000 + 172.000000 + + + 0 + + + + + 1 + + 60.800000 + 40.000000 + + + 2 + + 246.800000 + 40.000000 + + + 0 + + + + + 1 + + 64.900000 + 94.000000 + + + 2 + + 110.900000 + 94.000000 + + + 0 + + + + + 1 + + 74.800000 + 123.800000 + + + 2 + + 98.800000 + 123.800000 + + + 0 + + + + + 1 + + 42.500000 + 150.500000 + + + 2 + + 142.500000 + 150.500000 + + + 0 + + + + + 1 + + 34.800000 + 173.800000 + + + 2 + + 86.800000 + 173.800000 + + + 0 + + + + + 1 + + 34.800000 + 216.000000 + + + 2 + + 52.800000 + 216.000000 + + + 0 + + + + + 1 + + 68.800000 + 192.000000 + + + 2 + + 100.800000 + 192.000000 + + + 0 + + + + + 1 + + 70.800000 + 216.500000 + + + 2 + + 110.800000 + 216.500000 + + + 0 + + + + + 1 + + 120.800000 + 216.000000 + + + 2 + + 226.800000 + 216.000000 + + + 0 + + + + + 1 + + 182.800000 + 246.000000 + + + 2 + + 214.800000 + 246.000000 + + + 0 + + + + + 1 + + 182.800000 + 274.000000 + + + 2 + + 218.800000 + 274.000000 + + + 0 + + + + + 1 + + 102.800000 + 250.000000 + + + 2 + + 102.800000 + 272.000000 + + + 0 + + + + + 1 + + 222.800000 + 98.000000 + + + 2 + + 222.800000 + 138.000000 + + + 0 + + + + + 1 + + 222.800000 + 138.000000 + + + 2 + + 222.800000 + 172.000000 + + + 0 + + + + + 1 + + 86.800000 + 94.000000 + + + 2 + + 86.500000 + 123.800000 + + + 0 + + + + + 1 + + 86.500000 + 123.800000 + + + 2 + + 86.500000 + 150.500000 + + + 0 + + + + + 1 + + 58.800000 + 150.500000 + + + 2 + + 58.800000 + 173.800000 + + + 0 + + + + + 1 + + 44.800000 + 173.800000 + + + 2 + + 44.800000 + 216.000000 + + + 0 + + + + + 1 + + 44.800000 + 216.000000 + + + 2 + + 44.800000 + 292.000000 + + + 3 + + 194.800000 + 292.000000 + + + 4 + + 194.800000 + 274.000000 + + + 0 + + + + + 1 + + 134.800000 + 216.000000 + + + 2 + + 134.800000 + 150.500000 + + + 0 + + + + + 1 + + 80.800000 + 192.000000 + + + 2 + + 80.800000 + 216.500000 + + + 0 + + + + + 1 + + 74.800000 + 216.500000 + + + 2 + + 74.800000 + 256.000000 + + + 3 + + 102.800000 + 256.000000 + + + 0 + + + + + 1 + + 102.800000 + 256.000000 + + + 2 + + 134.800000 + 256.000000 + + + 3 + + 134.800000 + 216.000000 + + + 0 + + + + + 1 + + 194.800000 + 216.000000 + + + 2 + + 194.800000 + 246.000000 + + + 0 + + + + + 1 + + 86.000000 + 64.300000 + + + 0 + + + + + 1 + + 222.800000 + 68.000000 + + + -90.000000 + + + + + 1 + + 130.900000 + 19.200000 + + + 0 + + + + + 1 + + 210.800000 + 255.800000 + + + 0 + + + + + 1 + + 230.800000 + 181.800000 + + + 0 + + + + + 1 + + 234.800000 + 145.800000 + + + 0 + + + + + 1 + + 237.100000 + 107.800000 + + + 0 + + + + + 1 + + 106.800000 + 105.800000 + + + 0 + + + + + 1 + + 94.800000 + 159.800000 + + + 0 + + + + + 1 + + 108.800000 + 159.800000 + + + 0 + + + + + 1 + + 102.800000 + 227.800000 + + + 0 + + + + + 1 + + 96.000000 + 105.800000 + + + 0 + + + + + 1 + + 249.200000 + 107.800000 + + + 0 + + + + + 1 + + 242.600000 + 181.800000 + + + 0 + + + + + 1 + + 38.000000 + 225.800000 + + + 0 + + + + + 1 + + 58.800000 + 184.500000 + + + 0 + + + + + 1 + + 94.800000 + 201.800000 + + + 0 + + + + + 1 + + 88.800000 + 227.800000 + + + 0 + + + + + 1 + + 112.800000 + 267.800000 + + + 0 + + + + + 1 + + 212.800000 + 283.800000 + + + 0 + + + + + 1 + + 152.800000 + 225.000000 + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_EQ.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_EQ.xml new file mode 100644 index 00000000..ca2d1f6d --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_EQ.xml @@ -0,0 +1,1497 @@ + + + + 2018-05-24T13:01:41 + NEPLAN by Busarello + Cott + Partner AG, Switzerland + 2018-05-24T13:01:39 + 7 + NEPLAN + FULL + http://iec.ch/TC57/61970-452/Equipment/3 + + + description + + + 20.00 + + + 110.00 + + + 189 + + + + + 136 + + + + + 153 + + + + + 145 + + + + + 139 + + + + + 128 + + + + + 112 + + + + + 291 + + + + + 120 + + + + + 83 + + + + + 41 + + + + + 156 + + + + + 297 + + + + + 305 + + + + + 142 + + + + + N0 + + + + N7 + + + + N6 + + + + N9 + + + + N1 + + + + N14 + + + + N2 + + + + N3 + + + + N4 + + + + N5 + + + + N11 + + + + N10 + + + + N8 + + + + N12 + + + + N13 + + + + Area 1 + + + Zone 1 + + + + PATL + 45000 + + + + TATL + 60 + + + + Load7-I + false + + + + Load7-I_0 + 1 + + + + Load14-H + false + + + + Load14-H_0 + 1 + + + + Load13-I + false + + + + Load13-I_0 + 1 + + + + Load12-H + false + + + + Load12-H_0 + 1 + + + + Load1-I + false + + + + Load1-I_0 + 1 + + + + Load3-H + false + + + + Load3-H_0 + 1 + + + + Load3-I + false + + + + Load3-I_0 + 1 + + + + Load10-I + false + + + + Load10-I_0 + 1 + + + + Load1-H + false + + + + Load1-H_0 + 1 + + + + Load12-I + false + + + + Load12-I_0 + 1 + + + + Load14-I + false + + + + Load14-I_0 + 1 + + + + Load5_H + false + + + + Load5_H_0 + 1 + + + + Load4-H + false + + + + Load4-H_0 + 1 + + + + Load11-H + false + + + + Load11-H_0 + 1 + + + + Load10-H + false + + + + Load10-H_0 + 1 + + + + Load9-I + false + + + + Load9-I_0 + 1 + + + + Load6-H + false + + + + Load6-H_0 + 1 + + + + Load8-H + false + + + + Load8-H_0 + 1 + + + + NETWORK-FEEDER: + + + + + HV-Netz + false + + true + 0e+000 + 0e+000 + 0e+000 + 0e+000 + 0e+000 + 0e+000 + 0e+000 + 0e+000 + 1.000000 + 1 + + + HV-Netz_0 + 1 + + + + L12-13 + 1.647930 + 1.750620 + 0.0002502210 + 4.890000 + 0.0 + false + + 4.890000 + 4.890000 + 0.0003902047 + 0.0 + 250.0000000000 + + + L12-13_0 + 1 + + + + L12-13_1 + 2 + + + + Ratings for branch L12-13 + + + + + Ratings + + + + + Ratings for line L12-13 - Normal + + + + + Normal + 320.000000 + + + + + Ratings for line L12-13 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L12-13 - Emergency + + + + + Emergency + 320.000000 + + + + + L13-14 + 0.603980 + 0.364780 + 0.0004493794 + 2.990000 + 0.0 + false + + 2.990000 + 2.990000 + 0.0002385914 + 0.0 + 250.0000000000 + + + L13-14_0 + 1 + + + + L13-14_1 + 2 + + + + Ratings for branch L13-14 + + + + + Ratings + + + + + Ratings for line L13-14 - Normal + + + + + Normal + 410.000000 + + + + + Ratings for line L13-14 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L13-14 - Emergency + + + + + Emergency + 410.000000 + + + + + L1-2 + 1.632780 + 1.034940 + 0.0001407573 + 2.820000 + 0.0 + false + + 2.820000 + 2.820000 + 0.0002250260 + 0.0 + 250.0000000000 + + + L1-2_0 + 1 + + + + L1-2_1 + 2 + + + + Ratings for branch L1-2 + + + + + Ratings + + + + + Ratings for line L1-2 - Normal + + + + + Normal + 320.000000 + + + + + Ratings for line L1-2 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L1-2 - Emergency + + + + + Emergency + 320.000000 + + + + + L2-3 + 0.724880 + 0.499460 + 0.0009175791 + 4.420000 + 0.0 + false + + 4.420000 + 4.420000 + 0.0003249286 + 0.0 + 250.0000000000 + + + L2-3_0 + 1 + + + + L2-3_1 + 2 + + + + Ratings for branch L2-3 + + + + + Ratings + + + + + Ratings for line L2-3 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L2-3 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L2-3 - Emergency + + + + + Emergency + 287.000000 + + + + + L3-4 + 0.159820 + 0.073810 + 0.0001241814 + 0.610000 + 0.0 + false + + 0.610000 + 0.610000 + 0.0000448431 + 0.0 + 250.0000000000 + + + L3-4_0 + 1 + + + + L3-4_1 + 2 + + + + Ratings for branch L3-4 + + + + + Ratings + + + + + Ratings for line L3-4 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L3-4 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L3-4 - Emergency + + + + + Emergency + 287.000000 + + + + + L4-5 + 0.198240 + 0.072240 + 0.0000802239 + 0.560000 + 0.0 + false + + 0.560000 + 0.560000 + 0.0000411674 + 0.0 + 250.0000000000 + + + L4-5_0 + 1 + + + + L4-5_1 + 2 + + + + Ratings for branch L4-5 + + + + + Ratings + + + + + Ratings for line L4-5 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L4-5 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L4-5 - Emergency + + + + + Emergency + 287.000000 + + + + + L5-6 + 0.517440 + 0.194040 + 0.0002655128 + 1.540000 + 0.0 + false + + 1.540000 + 1.540000 + 0.0001132104 + 0.0 + 250.0000000000 + + + L5-6_0 + 1 + + + + L5-6_1 + 2 + + + + Ratings for branch L5-6 + + + + + Ratings + + + + + Ratings for line L5-6 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L5-6 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L5-6 - Emergency + + + + + Emergency + 287.000000 + + + + + L3-8 + 0.223600 + 0.149500 + 0.0002685697 + 1.300000 + 0.0 + false + + 1.300000 + 1.300000 + 0.0000955672 + 0.0 + 250.0000000000 + + + L3-8_0 + 1 + + + + L3-8_1 + 2 + + + + Ratings for branch L3-8 + + + + + Ratings + + + + + Ratings for line L3-8 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L3-8 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L3-8 - Emergency + + + + + Emergency + 287.000000 + + + + + L10-11 + 0.121110 + 0.043890 + 0.0000472748 + 0.330000 + 0.0 + false + + 0.330000 + 0.330000 + 0.0000242594 + 0.0 + 250.0000000000 + + + L10-11_0 + 1 + + + + L10-11_1 + 2 + + + + Ratings for branch L10-11 + + + + + Ratings + + + + + Ratings for line L10-11 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L10-11 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L10-11 - Emergency + + + + + Emergency + 287.000000 + + + + + L9-10 + 0.307230 + 0.102410 + 0.0001168876 + 0.770000 + 0.0 + false + + 0.770000 + 0.770000 + 0.0000566052 + 0.0 + 250.0000000000 + + + L9-10_0 + 1 + + + + L9-10_1 + 2 + + + + Ratings for branch L9-10 + + + + + Ratings + + + + + Ratings for line L9-10 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L9-10 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L9-10 - Emergency + + + + + Emergency + 287.000000 + + + + + L8-9 + 0.108480 + 0.041600 + 0.0000439120 + 0.320000 + 0.0 + false + + 0.320000 + 0.320000 + 0.0000235242 + 0.0 + 250.0000000000 + + + L8-9_0 + 1 + + + + L8-9_1 + 2 + + + + Ratings for branch L8-9 + + + + + Ratings + + + + + Ratings for line L8-9 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L8-9 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L8-9 - Emergency + + + + + Emergency + 287.000000 + + + + + L7-8 + 0.490980 + 0.205410 + 0.0002938033 + 1.670000 + 0.0 + false + + 1.670000 + 1.670000 + 0.0001227672 + 0.0 + 250.0000000000 + + + L7-8_0 + 1 + + + + L7-8_1 + 2 + + + + Ratings for branch L7-8 + + + + + Ratings + + + + + Ratings for line L7-8 - Normal + + + + + Normal + 287.000000 + + + + + Ratings for line L7-8 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line L7-8 - Emergency + + + + + Emergency + 287.000000 + + + + + TR1 + false + + 0e+000 + 0e+000 + 0e+000 + 0e+000 + false + false + + + TR1_0 + 1 + + + + TR1 + 1.905750 + 36.371106 + -0.0000019835 + 0.0 + 1.905750 + 34.432301 + 0.0 + 0.0 + 0e+000 + 0.0 + 40.000000 + 110.000000 + 1 + 0 + true + + + + + + + Ratings for branch TR1 + + + + + Ratings + + + + + Ratings for line TR1 - Normal + + + + + Normal + 0e+000 + + + + + Ratings for line TR1 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line TR1 - Emergency + + + + + Emergency + 0e+000 + + + + + TR1_1 + 2 + + + + TR1 + 0e+000 + 0e+000 + 0.0 + 0.0 + 0e+000 + 0e+000 + 0.0 + 0.0 + 0e+000 + 0.0 + 40.000000 + 20.000000 + 2 + 5 + true + + + + + + + Ratings for branch TR1 + + + + + Ratings + + + + + Ratings for line TR1 - Normal + + + + + Normal + 0e+000 + + + + + Ratings for line TR1 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line TR1 - Emergency + + + + + Emergency + 0e+000 + + + + + TR2 + false + + 0e+000 + 0e+000 + 0e+000 + 0e+000 + false + false + + + TR2_0 + 1 + + + + TR2 + 1.905750 + 36.371106 + -0.0000019835 + 0.0 + 1.905750 + 34.432301 + 0.0 + 0.0 + 0e+000 + 0.0 + 40.000000 + 110.000000 + 1 + 0 + true + + + + + + + Ratings for branch TR2 + + + + + Ratings + + + + + Ratings for line TR2 - Normal + + + + + Normal + 0e+000 + + + + + Ratings for line TR2 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line TR2 - Emergency + + + + + Emergency + 0e+000 + + + + + TR2_1 + 2 + + + + TR2 + 0e+000 + 0e+000 + 0.0 + 0.0 + 0e+000 + 0e+000 + 0.0 + 0.0 + 0e+000 + 0.0 + 40.000000 + 20.000000 + 2 + 5 + true + + + + + + + Ratings for branch TR2 + + + + + Ratings + + + + + Ratings for line TR2 - Normal + + + + + Normal + 0e+000 + + + + + Ratings for line TR2 - ShortTerm + + + + + ShortTerm + 0e+000 + + + + + Ratings for line TR2 - Emergency + + + + + Emergency + 0e+000 + + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_SV.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_SV.xml new file mode 100644 index 00000000..c259dc6c --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_SV.xml @@ -0,0 +1,179 @@ + + + + 2018-05-24T13:01:41 + NEPLAN by Busarello + Cott + Partner AG, Switzerland + 2018-05-24T13:01:39 + 7 + + + NEPLAN + FULL + http://iec.ch/TC57/61970-456/StateVariables/3 + + + 19.605385 + -3.572950 + + + + 19.552150 + -3.707720 + + + + 19.532346 + -3.721580 + + + + 110.000000 + 0e+000 + + + + 19.531205 + -4.268290 + + + + 19.086952 + -4.640280 + + + + 18.882252 + -4.816680 + + + + 18.866670 + -4.829670 + + + + 18.852447 + -4.837760 + + + + 18.825361 + -4.852520 + + + + 18.827665 + -4.851640 + + + + 18.852622 + -4.847080 + + + + 18.850663 + -4.849960 + + + + 18.836402 + -4.847390 + + + + 18.843089 + -4.847440 + + + + 0.077000 + 0.048000 + + + + 0.207000 + 0.052000 + + + + 0.032000 + 0.020000 + + + + 15.000000 + 3.000000 + + + + 5.000000 + 1.000000 + + + + 0.276000 + 0.690000 + + + + 0.224000 + 0.139000 + + + + 0.068000 + 0.042000 + + + + 15.000000 + 3.100000 + + + + 5.000000 + 1.700000 + + + + 0.330000 + 0.205000 + + + + 0.725000 + 0.182000 + + + + 0.432000 + 0.108000 + + + + 0.331000 + 0.083000 + + + + 0.477000 + 0.120000 + + + + 0.574000 + 0.356000 + + + + 0.550000 + 0.138000 + + + + 0.588000 + 0.147000 + + + diff --git a/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_TP.xml b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_TP.xml new file mode 100644 index 00000000..83cb690a --- /dev/null +++ b/cimpy_3/tests/1_MV_urban--2-sw_CIM/1_MV_urban--2-sw_CIM/Rootnet_FULL_NE_24J13h_TP.xml @@ -0,0 +1,279 @@ + + + + 2018-05-24T13:01:41 + NEPLAN by Busarello + Cott + Partner AG, Switzerland + 2018-05-24T13:01:39 + 7 + + NEPLAN + FULL + http://iec.ch/TC57/61970-456/Topology/3 + + + description + + + N12 + + + + + N13 + + + + + N14 + + + + + N0 + + + + + N1 + + + + + N2 + + + + + N3 + + + + + N4 + + + + + N5 + + + + + N11 + + + + + N10 + + + + + N8 + + + + + N7 + + + + + N6 + + + + + N9 + + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + diff --git a/cimpy_3/tests/CIGREMV_import_reference_cgmes_v2_4_15.p b/cimpy_3/tests/CIGREMV_import_reference_cgmes_v2_4_15.p new file mode 100644 index 0000000000000000000000000000000000000000..09a789bd8a10bbdc05bc771663b72b03caf7b850 GIT binary patch literal 179324 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 literal 0 HcmV?d00001 diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml new file mode 100644 index 00000000..325806ea --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_DiagramLayout.xml @@ -0,0 +1,1053 @@ + + + + 29/01/2020 15:09:48 + www.acs.eonerc.rwth-aachen.de + DiagramLayout + + + Load6 + + + + + + + + + 1 + 210.8 + 252.0 + + + + 2 + 210.8 + 246.0 + + + + + + + + 1 + 222.8 + 88.0 + + + + 2 + 222.8 + 98.0 + + + + + + + + 1 + 230.8 + 178.0 + + + + 2 + 230.8 + 172.0 + + + + + + + + 1 + 234.8 + 142.0 + + + + 2 + 234.8 + 138.0 + + + + + + + + 1 + 237.1 + 104.0 + + + + 2 + 236.8 + 98.0 + + + + + + + + 1 + 130.9 + 30.0 + + + + 2 + 130.8 + 40.0 + + + + + + + + 1 + 86.0 + 46.0 + + + + 2 + 86.8 + 40.0 + + + + + + + + 1 + 106.8 + 102.0 + + + + 2 + 106.8 + 94.0 + + + + + + + + 1 + 94.8 + 156.0 + + + + 2 + 94.8 + 150.5 + + + + + + + + 1 + 222.8 + 48.0 + + + + 2 + 222.8 + 40.0 + + + + + + + + 1 + 86.0 + 82.6 + + + + 2 + 86.8 + 94.0 + + + + + + + + 1 + 108.8 + 156.0 + + + + 2 + 108.8 + 150.5 + + + + + + + + 1 + 102.8 + 224.0 + + + + 2 + 102.8 + 216.5 + + + + + + + + 1 + 96.0 + 102.0 + + + + 2 + 96.8 + 94.0 + + + + + + + + 1 + 242.6 + 178.0 + + + + 2 + 242.8 + 172.0 + + + + + + + + 1 + 249.2 + 104.0 + + + + 2 + 248.8 + 98.0 + + + + + + + + 1 + 38.0 + 222.0 + + + + 2 + 38.0 + 216.0 + + + + + + + + 1 + 58.8 + 180.7 + + + + 2 + 58.8 + 180.0 + + + + 3 + 58.8 + 173.8 + + + + + + + + 1 + 94.8 + 198.0 + + + + 2 + 94.8 + 192.0 + + + + + + + + 1 + 88.8 + 224.0 + + + + 2 + 88.8 + 216.5 + + + + + + + + 1 + 112.8 + 264.0 + + + + 2 + 102.8 + 264.0 + + + + + + + + 1 + 212.8 + 274.0 + + + + 2 + 212.8 + 280.0 + + + + + + + + 1 + 152.8 + 221.2 + + + + 2 + 152.8 + 216.0 + + + + + + + + 1 + 204.8 + 98.0 + + + + 2 + 254.8 + 98.0 + + + + + + + + 1 + 208.8 + 138.0 + + + + 2 + 238.8 + 138.0 + + + + + + + + 1 + 208.8 + 172.0 + + + + 2 + 248.8 + 172.0 + + + + + + + + 1 + 60.8 + 40.0 + + + + 2 + 246.8 + 40.0 + + + + + + + + 1 + 64.9 + 94.0 + + + + 2 + 110.9 + 94.0 + + + + + + + + 1 + 74.8 + 123.8 + + + + 2 + 98.8 + 123.8 + + + + + + + + 1 + 42.5 + 150.5 + + + + 2 + 142.5 + 150.5 + + + + + + + + 1 + 34.8 + 173.8 + + + + 2 + 86.8 + 173.8 + + + + + + + + 1 + 34.8 + 216.0 + + + + 2 + 52.8 + 216.0 + + + + + + + + 1 + 68.8 + 192.0 + + + + 2 + 100.8 + 192.0 + + + + + + + + 1 + 70.8 + 216.5 + + + + 2 + 110.8 + 216.5 + + + + + + + + 1 + 120.8 + 216.0 + + + + 2 + 226.8 + 216.0 + + + + + + + + 1 + 182.8 + 246.0 + + + + 2 + 214.8 + 246.0 + + + + + + + + 1 + 182.8 + 274.0 + + + + 2 + 218.8 + 274.0 + + + + + + + + 1 + 102.8 + 250.0 + + + + 2 + 102.8 + 272.0 + + + + + + + + 1 + 222.8 + 98.0 + + + + 2 + 222.8 + 138.0 + + + + + + + + 1 + 222.8 + 138.0 + + + + 2 + 222.8 + 172.0 + + + + + + + + 1 + 86.8 + 94.0 + + + + 2 + 86.5 + 123.8 + + + + + + + + 1 + 86.5 + 123.8 + + + + 2 + 86.5 + 150.5 + + + + + + + + 1 + 58.8 + 150.5 + + + + 2 + 58.8 + 173.8 + + + + + + + + 1 + 44.8 + 173.8 + + + + 2 + 44.8 + 216.0 + + + + + + + + 1 + 44.8 + 216.0 + + + + 2 + 44.8 + 292.0 + + + + 3 + 194.8 + 292.0 + + + + 4 + 194.8 + 274.0 + + + + + + + + 1 + 134.8 + 216.0 + + + + 2 + 134.8 + 150.5 + + + + + + + + 1 + 80.8 + 192.0 + + + + 2 + 80.8 + 216.5 + + + + + + + + 1 + 74.8 + 216.5 + + + + 2 + 74.8 + 256.0 + + + + 3 + 102.8 + 256.0 + + + + + + + + 1 + 102.8 + 256.0 + + + + 2 + 134.8 + 256.0 + + + + 3 + 134.8 + 216.0 + + + + + + + + 1 + 194.8 + 216.0 + + + + 2 + 194.8 + 246.0 + + + + + + + + 1 + 86.0 + 64.3 + + + + + + + + 1 + 222.8 + 68.0 + + + + -90.0 + + + + + 1 + 130.9 + 19.2 + + + + + + + + 1 + 210.8 + 255.8 + + + + + + + + 1 + 230.8 + 181.8 + + + + + + + + 1 + 234.8 + 145.8 + + + + + + + + 1 + 237.1 + 107.8 + + + + + + + + 1 + 106.8 + 105.8 + + + + + + + + 1 + 94.8 + 159.8 + + + + + + + + 1 + 108.8 + 159.8 + + + + + + + + 1 + 102.8 + 227.8 + + + + + + + + 1 + 96.0 + 105.8 + + + + + + + + 1 + 249.2 + 107.8 + + + + + + + + 1 + 242.6 + 181.8 + + + + + + + + 1 + 38.0 + 225.8 + + + + + + + + 1 + 58.8 + 184.5 + + + + + + + + 1 + 94.8 + 201.8 + + + + + + + + 1 + 88.8 + 227.8 + + + + + + + + 1 + 112.8 + 267.8 + + + + + + + + 1 + 212.8 + 283.8 + + + + + + + + 1 + 152.8 + 225.0 + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml new file mode 100644 index 00000000..6b4a679f --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Equipment.xml @@ -0,0 +1,1066 @@ + + + + 29/01/2020 15:09:48 + www.acs.eonerc.rwth-aachen.de + Equipment + + + 20.0 + + + + + + + + + + + + + + + + + 110.0 + + + + 189 + + + + + 136 + + + + + 153 + + + + + 145 + + + + + 139 + + + + + 128 + + + + + 112 + + + + + 291 + + + + + 120 + + + + + 83 + + + + + 41 + + + + + 156 + + + + + 297 + + + + + 305 + + + + + 142 + + + + + N0 + + + + N7 + + + + N6 + + + + N9 + + + + N1 + + + + N14 + + + + N2 + + + + N3 + + + + N4 + + + + N5 + + + + N11 + + + + N10 + + + + N8 + + + + N12 + + + + N13 + + + + Area 1 + + + Zone 1 + + + + PATL + 45000 + + + + TATL + 60 + + + + Load7-I + + + + Load7-I_0 + 1 + + + + Load14-H + + + + Load14-H_0 + 1 + + + + Load13-I + + + + Load13-I_0 + 1 + + + + Load12-H + + + + Load12-H_0 + 1 + + + + Load1-I + + + + Load1-I_0 + 1 + + + + Load3-H + + + + Load3-H_0 + 1 + + + + Load3-I + + + + Load3-I_0 + 1 + + + + Load10-I + + + + Load10-I_0 + 1 + + + + Load1-H + + + + Load1-H_0 + 1 + + + + Load12-I + + + + Load12-I_0 + 1 + + + + Load14-I + + + + Load14-I_0 + 1 + + + + Load5_H + + + + Load5_H_0 + 1 + + + + Load4-H + + + + Load4-H_0 + 1 + + + + Load11-H + + + + Load11-H_0 + 1 + + + + Load10-H + + + + Load10-H_0 + 1 + + + + Load9-I + + + + Load9-I_0 + 1 + + + + Load6-H + + + + Load6-H_0 + 1 + + + + Load8-H + + + + Load8-H_0 + 1 + + + + HV-Netz + + True + 1.0 + + + HV-Netz_0 + 1 + + + + L12-13 + + + 4.89 + 0.000250221 + 1.64793 + 1.75062 + 0.0003902047 + 4.89 + 250.0 + 4.89 + + + L12-13_0 + 1 + + + + + L12-13_1 + 2 + + + + Ratings + + + + + Normal + + + 320.0 + + + ShortTerm + + + + Emergency + + + 320.0 + + + L13-14 + + + 2.99 + 0.0004493794 + 0.60398 + 0.36478 + 0.0002385914 + 2.99 + 250.0 + 2.99 + + + L13-14_0 + 1 + + + + + L13-14_1 + 2 + + + + Ratings + + + + + Normal + + + 410.0 + + + ShortTerm + + + + Emergency + + + 410.0 + + + L1-2 + + + 2.82 + 0.0001407573 + 1.63278 + 1.03494 + 0.000225026 + 2.82 + 250.0 + 2.82 + + + L1-2_0 + 1 + + + + + L1-2_1 + 2 + + + + Ratings + + + + + Normal + + + 320.0 + + + ShortTerm + + + + Emergency + + + 320.0 + + + L2-3 + + + 4.42 + 0.0009175791 + 0.72488 + 0.49946 + 0.0003249286 + 4.42 + 250.0 + 4.42 + + + L2-3_0 + 1 + + + + + L2-3_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L3-4 + + + 0.61 + 0.0001241814 + 0.15982 + 0.07381 + 4.48431e-05 + 0.61 + 250.0 + 0.61 + + + L3-4_0 + 1 + + + + + L3-4_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L4-5 + + + 0.56 + 8.02239e-05 + 0.19824 + 0.07224 + 4.11674e-05 + 0.56 + 250.0 + 0.56 + + + L4-5_0 + 1 + + + + + L4-5_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L5-6 + + + 1.54 + 0.0002655128 + 0.51744 + 0.19404 + 0.0001132104 + 1.54 + 250.0 + 1.54 + + + L5-6_0 + 1 + + + + + L5-6_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L3-8 + + + 1.3 + 0.0002685697 + 0.2236 + 0.1495 + 9.55672e-05 + 1.3 + 250.0 + 1.3 + + + L3-8_0 + 1 + + + + + L3-8_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L10-11 + + + 0.33 + 4.72748e-05 + 0.12111 + 0.04389 + 2.42594e-05 + 0.33 + 250.0 + 0.33 + + + L10-11_0 + 1 + + + + + L10-11_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L9-10 + + + 0.77 + 0.0001168876 + 0.30723 + 0.10241 + 5.66052e-05 + 0.77 + 250.0 + 0.77 + + + L9-10_0 + 1 + + + + + L9-10_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L8-9 + + + 0.32 + 4.3912e-05 + 0.10848 + 0.0416 + 2.35242e-05 + 0.32 + 250.0 + 0.32 + + + L8-9_0 + 1 + + + + + L8-9_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + L7-8 + + + 1.67 + 0.0002938033 + 0.49098 + 0.20541 + 0.0001227672 + 1.67 + 250.0 + 1.67 + + + L7-8_0 + 1 + + + + + L7-8_1 + 2 + + + + Ratings + + + + + Normal + + + 287.0 + + + ShortTerm + + + + Emergency + + + 287.0 + + + TR1 + + + + + + + + TR1_0 + 1 + + + + + TR1 + + + 1 + True + + -1.9835e-06 + + 40.0 + 110.0 + 1.90575 + 36.371106 + 1.90575 + 34.432301 + + + Ratings + + + + + Normal + + + + + ShortTerm + + + + Emergency + + + + + TR1_1 + 2 + + + + + TR1 + + + 2 + True + + + 40.0 + 20.0 + 5 + + + Ratings + + + + + Normal + + + + + ShortTerm + + + + Emergency + + + + + TR2 + + + + + + + + TR2_0 + 1 + + + + + TR2 + + + 1 + True + + -1.9835e-06 + + 40.0 + 110.0 + 1.90575 + 36.371106 + 1.90575 + 34.432301 + + + Ratings + + + + + Normal + + + + + ShortTerm + + + + Emergency + + + + + TR2_1 + 2 + + + + + TR2 + + + 2 + True + + + 40.0 + 20.0 + 5 + + + Ratings + + + + + Normal + + + + + ShortTerm + + + + Emergency + + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml new file mode 100644 index 00000000..fe2203b6 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_StateVariables.xml @@ -0,0 +1,271 @@ + + + + 29/01/2020 15:09:48 + www.acs.eonerc.rwth-aachen.de + StateVariables + + + -3.57295 + 19.605385 + + + + -3.70772 + 19.55215 + + + + -3.72158 + 19.532346 + + + + 110.0 + + + + -4.26829 + 19.531205 + + + + -4.64028 + 19.086952 + + + + -4.81668 + 18.882252 + + + + -4.82967 + 18.86667 + + + + -4.83776 + 18.852447 + + + + -4.85252 + 18.825361 + + + + -4.85164 + 18.827665 + + + + -4.84708 + 18.852622 + + + + -4.84996 + 18.850663 + + + + -4.84739 + 18.836402 + + + + -4.84744 + 18.843089 + + + + + 0.077 + 0.048 + + + + 0.207 + 0.052 + + + + 0.032 + 0.02 + + + + 15.0 + 3.0 + + + + 5.0 + 1.0 + + + + 0.276 + 0.69 + + + + 0.224 + 0.139 + + + + 0.068 + 0.042 + + + + 15.0 + 3.1 + + + + 5.0 + 1.7 + + + + 0.33 + 0.205 + + + + 0.725 + 0.182 + + + + 0.432 + 0.108 + + + + 0.331 + 0.083 + + + + 0.477 + 0.12 + + + + 0.574 + 0.356 + + + + 0.55 + 0.138 + + + + 0.588 + 0.147 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml new file mode 100644 index 00000000..95d1d759 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v2_4_15_Topology.xml @@ -0,0 +1,335 @@ + + + + 29/01/2020 15:09:48 + www.acs.eonerc.rwth-aachen.de + Topology + + + N12 + + + + + + + + + N13 + + + + + + + + N14 + + + + + + + + N0 + + + + + + + + N1 + + + + + + + + + N2 + + + + + + + N3 + + + + + + + + + + N4 + + + + + + + + N5 + + + + + + + + N11 + + + + + + + N10 + + + + + + + + + N8 + + + + + + + + + N7 + + + + + + + N6 + + + + + + + N9 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_DiagramLayout.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_DiagramLayout.xml new file mode 100644 index 00000000..d9be137b --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_DiagramLayout.xml @@ -0,0 +1,20069 @@ + + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/DiagramLayout-EU/3.0 + 2015-12-31T23:00:00Z + + + + 1 + 439.688 + 862.75 + + + + 1 + 437.5 + 735.875 + + + + 2 + 242.812 + 464.625 + + + + 1 + 490 + 670.25 + + + + 1 + 124.688 + 910.875 + + + + 1 + 420 + 105.875 + + + + 2 + 138.008 + -379.877 + + + + 2 + 453.542 + 945.875 + + + + 2 + 446.25 + 66.5 + + + + 2 + 438.958 + 66.5 + + + + 1 + 861.875 + 1033.38 + + + + 1 + 408.333 + 836.5 + + + + 1 + 293.125 + 232.75 + + + + 2 + 138.007 + -379.874 + + + + 1 + 740.833 + 149.625 + + + + 2 + 437.5 + 722.75 + + + + 2 + 648.958 + 630.875 + + + + 1 + 457.188 + 613.375 + + + + 2 + 203.438 + 245.875 + + + + 1 + 588.438 + 749 + + + + 2 + 138.006 + -379.879 + + + + 2 + 732.812 + 119 + + + + 1 + 1253.44 + 464.625 + + + + 2 + 175 + 280.875 + + + + 1 + 541.042 + 250.25 + + + + 1 + 111.757 + -379.877 + + + + 1 + 424.375 + 140.875 + + + + 1 + 473.958 + 823.375 + + + + 1 + 1006.25 + 556.5 + + + + 1 + 552.845 + 651.76 + + + + 1 + 522.812 + 342.125 + + + + 2 + 541.042 + 263.375 + + + + 2 + 138.007 + -379.877 + + + + 1 + 892.5 + 810.25 + + + + 2 + 424.375 + 127.75 + + + + 1 + 453.125 + 774.833 + + + + 2 + 476.875 + 49 + + + + 1 + 997.5 + 412.125 + + + + 1 + 1302.29 + 552.125 + + + + 2 + 138.013 + -379.878 + + + + 1 + 364.583 + 1112.12 + + + + 2 + 728.438 + 547.75 + + + + 2 + 1275.31 + 486.5 + + + + 1 + 1279.69 + 604.625 + + + + 2 + 441.875 + 679 + + + + 2 + 138.008 + -379.881 + + + + 2 + 638.75 + 595.875 + + + + 1 + 815.938 + 784 + + + + 2 + 459.375 + 171.5 + + + + 2 + 357.292 + 989.625 + + + + 2 + 603.75 + 565.25 + + + + 1 + 111.755 + -379.884 + + + + 1 + 896.875 + 1024.62 + + + + 2 + 332.5 + 228.375 + + + + 2 + 755.417 + 149.625 + + + + 1 + 339.062 + 1042.12 + + + + 2 + 107.188 + 858.375 + + + + 2 + 138.005 + -379.884 + + + + 2 + 400.312 + 718.375 + + + + 2 + 1302.29 + 565.25 + + + + 1 + 1302.29 + 508.375 + + + + 2 + 531.562 + 44.625 + + + + 1 + 111.737 + -379.89 + + + + 2 + 421.458 + 1068.38 + + + + 1 + 481.25 + 460.25 + + + + 2 + 321.562 + 228.375 + + + + 1 + 448.438 + 1029 + + + + 2 + 194.688 + 416.5 + + + + 1 + 111.755 + -379.882 + + + + 1 + 1173.96 + 705.25 + + + + 1 + 185.938 + 294 + + + + 1 + 409.062 + 105.875 + + + + 2 + 137.987 + -379.89 + + + + 1 + 516.25 + 132.125 + + + + 2 + 702.188 + 92.75 + + + + 2 + 511.875 + 40.25 + + + + 1 + 124.879 + -379.882 + + + + 1 + 1286.25 + 504 + + + + 1 + 107.188 + 871.5 + + + + 2 + 920.208 + 569.625 + + + + 2 + 947.188 + 425.25 + + + + 1 + 111.763 + -379.878 + + + + 1 + 832.708 + 574 + + + + 1 + 479.062 + 101.5 + + + + 2 + 1146.25 + 434 + + + + 1 + 332.5 + 241.5 + + + + 1 + 111.756 + -379.881 + + + + 2 + 422.917 + 854 + + + + 2 + 479.062 + 114.625 + + + + 1 + 920.208 + 556.5 + + + + 1 + 772.188 + 1024.62 + + + + 1 + 459.375 + 184.625 + + + + 2 + 138.005 + -379.882 + + + + 1 + 721.875 + 355.25 + + + + 2 + 590.625 + 57.75 + + + + 1 + 1146.25 + 420.875 + + + + 1 + 945 + 827.75 + + + + 1 + 400.312 + 731.5 + + + + 1 + 1050 + 372.75 + + + + 1 + 378.438 + 819 + + + + 1 + 538.125 + 416.5 + + + + 1 + 111.757 + -379.876 + + + + 1 + 1090.83 + 744.625 + + + + 1 + 487.812 + 62.125 + + + + 2 + 546.875 + 75.25 + + + + 1 + 560 + 75.25 + + + + 1 + 1231.56 + 438.375 + + + + 2 + 1090.83 + 757.75 + + + + 1 + 603.75 + 40.25 + + + + 1 + 304.062 + 521.5 + + + + 1 + 938.438 + 1002.75 + + + + 1 + 470.312 + 805.875 + + + + 1 + 111.758 + -379.877 + + + + 1 + 936.25 + 438.375 + + + + 1 + 755.417 + 136.5 + + + + 2 + 896.875 + 1011.5 + + + + 2 + 185.938 + 280.875 + + + + 2 + 335.417 + 858.375 + + + + 2 + 721.875 + 342.125 + + + + 1 + 111.757 + -379.881 + + + + 1 + 516.25 + 814.625 + + + + 2 + 1265.83 + 639.625 + + + + 2 + 527.188 + 399 + + + + 1 + 203.438 + 259 + + + + 2 + 457.628 + 774.379 + + + + 1 + 505.312 + 560.875 + + + + 1 + 111.758 + -379.881 + + + + 1 + 745.208 + 267.75 + + + + 2 + 516.25 + 40.25 + + + + 1 + 205.625 + 429.625 + + + + 1 + 385 + 539 + + + + 1 + 1004.79 + 399 + + + + 1 + 111.755 + -379.88 + + + + 1 + 796.25 + 517.125 + + + + 1 + 511.875 + 27.125 + + + + 2 + 413.438 + 127.75 + + + + 2 + 175 + 368.375 + + + + 2 + 1036.88 + 390.25 + + + + 1 + 752.5 + 294 + + + + 1 + 956.667 + 945.875 + + + + 1 + 194.688 + 429.625 + + + + 2 + 772.188 + 1011.5 + + + + 1 + 438.958 + 53.375 + + + + 1 + 389.375 + 832.125 + + + + 1 + 1093.75 + 425.25 + + + + 2 + 525 + 114.625 + + + + 2 + 138.007 + -379.881 + + + + 1 + 229.688 + 893.375 + + + + 2 + 389.375 + 819 + + + + 1 + 441.875 + 665.875 + + + + 2 + 208.542 + 910.875 + + + + 2 + 138.005 + -379.88 + + + + 1 + 1275.31 + 499.625 + + + + 2 + 481.25 + 447.125 + + + + 1 + 531.562 + 490.875 + + + + 1 + 1265.83 + 626.5 + + + + 1 + 714.583 + 119 + + + + 2 + 905.625 + 792.75 + + + + 2 + 1253.44 + 451.5 + + + + 2 + 531.562 + 477.75 + + + + 2 + 490 + 683.375 + + + + 1 + 533.75 + 775.25 + + + + 1 + 193.958 + 893.375 + + + + 2 + 205.625 + 416.5 + + + + 1 + 877.188 + 477.75 + + + + 1 + 111.757 + -379.888 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 989.625 + + + + 2 + 170.625 + 320.25 + + + + 1 + 148.75 + 810.25 + + + + 1 + 1159.38 + 744.625 + + + + 2 + 1231.56 + 425.25 + + + + 2 + 138.007 + -379.888 + + + + 1 + 321.562 + 241.5 + + + + 2 + 745.208 + 280.875 + + + + 2 + 409.792 + 687.75 + + + + 1 + 1159.38 + 420.875 + + + + 1 + 1093.75 + 394.625 + + + + 1 + 529.375 + 171.5 + + + + 1 + 111.737 + -379.887 + + + + 1 + 421.458 + 1055.25 + + + + 1 + 697.812 + 945.875 + + + + 2 + 293.125 + 219.625 + + + + 1 + 1063.12 + 390.25 + + + + 1 + 446.25 + 963.375 + + + + 2 + 505.312 + 547.75 + + + + 2 + 138.009 + -379.882 + + + + 2 + 956.667 + 959 + + + + 1 + 546.875 + 88.375 + + + + 2 + 938.438 + 989.625 + + + + 1 + 752.5 + 630.875 + + + + 2 + 262.5 + 766.5 + + + + 1 + 531.562 + 57.75 + + + + 2 + 138.006 + -379.887 + + + + 2 + 409.062 + 92.75 + + + + 1 + 648.958 + 617.75 + + + + 1 + 1036.88 + 784 + + + + 1 + 947.188 + 438.375 + + + + 2 + 223.125 + 219.625 + + + + 2 + 492.188 + 447.125 + + + + 1 + 111.766 + -379.887 + + + + 1 + 811.562 + 1033.38 + + + + 1 + 371.875 + 1081.5 + + + + 1 + 1208.96 + 683.375 + + + + 1 + 428.75 + 1081.5 + + + + 1 + 175 + 381.5 + + + + 2 + 185.938 + 368.375 + + + + 2 + 138.016 + -379.887 + + + + 1 + 516.25 + 53.375 + + + + 2 + 516.25 + 797.125 + + + + 1 + 918.75 + 854 + + + + 1 + 369.688 + 263.375 + + + + 2 + 420 + 92.75 + + + + 2 + 459.375 + 171.5 + + + + 1 + 111.754 + -379.883 + + + + 1 + 413.438 + 140.875 + + + + 2 + 328.125 + 858.375 + + + + 1 + 253.75 + 784 + + + + 1 + 470.312 + 460.25 + + + + 2 + 931.875 + 792.75 + + + + 1 + 170.625 + 333.375 + + + + 1 + 111.761 + -379.891 + + + + 2 + 304.062 + 508.375 + + + + 1 + 680.312 + 105.875 + + + + 1 + 1284.06 + 657.125 + + + + 2 + 1159.38 + 434 + + + + 2 + 470.312 + 447.125 + + + + 1 + 111.754 + -379.895 + + + + 1 + 525 + 127.75 + + + + 1 + 450.625 + 875.875 + + + + 1 + 560 + 88.375 + + + + 1 + 272.708 + 867.125 + + + + 2 + 1080.62 + 412.125 + + + + 2 + 138.004 + -379.883 + + + + 1 + 527.188 + 412.125 + + + + 2 + 560 + 75.25 + + + + 1 + 545.417 + 385.875 + + + + 1 + 428.75 + 241.5 + + + + 1 + 159.688 + 333.375 + + + + 1 + 111.753 + -379.89 + + + + 2 + 697.812 + 932.75 + + + + 2 + 680.312 + 92.75 + + + + 1 + 118.125 + 875.875 + + + + 2 + 330.312 + 1072.75 + + + + 1 + 111.757 + -379.885 + + + + 2 + 811.562 + 1020.25 + + + + 1 + 647.5 + 499.625 + + + + 1 + 780.938 + 241.5 + + + + 2 + 866.25 + 460.25 + + + + 2 + 138.004 + -379.882 + + + + 2 + 737.188 + 976.5 + + + + 2 + 371.875 + 1094.62 + + + + 1 + 549.792 + 27.125 + + + + 2 + 490 + 683.375 + + + + 2 + 138.007 + -379.882 + + + + 2 + 192.5 + 245.875 + + + + 2 + 647.5 + 486.5 + + + + 2 + 138.003 + -379.89 + + + + 1 + 748.125 + 167.125 + + + + 1 + 866.25 + 473.375 + + + + 2 + 928.958 + 425.25 + + + + 1 + 949.375 + 976.5 + + + + 1 + 1271.67 + 438.375 + + + + 2 + 138.003 + -379.887 + + + + 1 + 391.562 + 700.875 + + + + 1 + 554.167 + 543.375 + + + + 1 + 927.5 + 1002.75 + + + + 1 + 430.208 + 998.375 + + + + 2 + 138.01 + -379.89 + + + + 1 + 648.958 + 613.375 + + + + 1 + 1301.56 + 622.125 + + + + 1 + 536.667 + 140.875 + + + + 1 + 1249.79 + 412.125 + + + + 1 + 111.76 + -379.89 + + + + 1 + 770 + 197.75 + + + + 1 + 373.333 + 910.875 + + + + 1 + 1230.83 + 657.125 + + + + 2 + 545.417 + 399 + + + + 1 + 328.125 + 875.875 + + + + 2 + 138.014 + -379.889 + + + + 1 + 379.167 + 1112.12 + + + + 1 + 739.375 + 744.625 + + + + 1 + 300.417 + 206.5 + + + + 1 + 475.417 + 582.75 + + + + 1 + 488.542 + 434 + + + + 1 + 111.755 + -379.883 + + + + 1 + 990.208 + 381.5 + + + + 2 + 557.812 + 705.25 + + + + 2 + 300.417 + 219.625 + + + + 1 + 943.542 + 862.75 + + + + 2 + 829.792 + 1020.25 + + + + 1 + 111.757 + -379.873 + + + + 1 + 1098.12 + 775.25 + + + + 1 + 960.312 + 972.125 + + + + 1 + 446.25 + 158.375 + + + + 1 + 614.688 + 582.75 + + + + 2 + 138.011 + -379.891 + + + + 1 + 829.792 + 1007.12 + + + + 1 + 608.125 + 75.25 + + + + 1 + 1242.5 + 438.375 + + + + 1 + 1114.17 + 556.5 + + + + 1 + 110.833 + 805.875 + + + + 2 + 138.007 + -379.873 + + + + 2 + 488.542 + 447.125 + + + + 1 + 861.875 + 1037.75 + + + + 1 + 826.875 + 779.625 + + + + 1 + 1128.75 + 639.625 + + + + 2 + 446.25 + 171.5 + + + + 2 + 138.013 + -379.89 + + + + 2 + 430.208 + 1011.5 + + + + 1 + 1111.25 + 442.75 + + + + 1 + 450.625 + 364 + + + + 1 + 443.333 + 845.25 + + + + 2 + 533.75 + 263.375 + + + + 1 + 111.759 + -379.882 + + + + 1 + 215.833 + 206.5 + + + + 1 + 415.625 + 867.125 + + + + 1 + 858.958 + 442.75 + + + + 2 + 1109.06 + 757.75 + + + + 1 + 1172.5 + 451.5 + + + + 1 + 111.762 + -379.877 + + + + 2 + 662.812 + 875.875 + + + + 2 + 1249.79 + 425.25 + + + + 1 + 1080.62 + 425.25 + + + + 1 + 949.375 + 937.125 + + + + 2 + 450.625 + 350.875 + + + + 2 + 138.012 + -379.877 + + + + 1 + 763.438 + 298.375 + + + + 1 + 1136.04 + 609 + + + + 1 + 1293.54 + 473.375 + + + + 1 + 439.688 + 364 + + + + 1 + 118.125 + 840.875 + + + + 2 + 1054.38 + 390.25 + + + + 1 + 111.756 + -379.887 + + + + 1 + 395.208 + 670.25 + + + + 2 + 1271.67 + 451.5 + + + + 1 + 533.75 + 276.5 + + + + 2 + 391.562 + 687.75 + + + + 1 + 1150.62 + 692.125 + + + + 2 + 138.016 + -379.888 + + + + 1 + 698.542 + 75.25 + + + + 1 + 905.625 + 805.875 + + + + 1 + 141.458 + 779.625 + + + + 2 + 1136.04 + 622.125 + + + + 1 + 295.312 + 788.375 + + + + 1 + 1095.94 + 587.125 + + + + 1 + 111.764 + -379.889 + + + + 1 + 1081.5 + 539 + + + + 2 + 141.458 + 792.75 + + + + 2 + 777.292 + 224 + + + + 2 + 415.625 + 854 + + + + 1 + 656.25 + 648.375 + + + + 2 + 138.005 + -379.883 + + + + 1 + 780.938 + 197.75 + + + + 2 + 253.75 + 206.5 + + + + 2 + 1146.25 + 727.125 + + + + 1 + 154.583 + 932.75 + + + + 1 + 651.875 + 709.625 + + + + 1 + 777.292 + 210.875 + + + + 2 + 138.004 + -379.895 + + + + 2 + 376.25 + 775.25 + + + + 1 + 1133.12 + 709.625 + + + + 1 + 169.167 + 932.75 + + + + 1 + 457.917 + 337.75 + + + + 1 + 918.75 + 792.75 + + + + 1 + 490 + 696.5 + + + + 1 + 840 + 609 + + + + 1 + 212.188 + 928.375 + + + + 1 + 608.125 + 70.875 + + + + 1 + 651.875 + 674.625 + + + + 1 + 611.042 + 565.25 + + + + 1 + 1192.19 + 735.875 + + + + 1 + 1054.38 + 403.375 + + + + 2 + 439.688 + 350.875 + + + + 1 + 925.312 + 897.75 + + + + 2 + 706.562 + 547.75 + + + + 1 + 320.833 + 840.875 + + + + 1 + 516.25 + 810.25 + + + + 2 + 945 + 840.875 + + + + 1 + 446.25 + 184.625 + + + + 1 + 777.292 + 162.75 + + + + 2 + 450.625 + 862.75 + + + + 2 + 739.375 + 731.5 + + + + 1 + 426.562 + 871.5 + + + + 2 + 717.5 + 547.75 + + + + 1 + 1216.25 + 718.375 + + + + 2 + 215.833 + 219.625 + + + + 2 + 1242.5 + 425.25 + + + + 1 + 788.958 + 486.5 + + + + 1 + 192.5 + 259 + + + + 2 + 295.312 + 775.25 + + + + 1 + 511.875 + 22.75 + + + + 1 + 328.125 + 871.5 + + + + 2 + 960.312 + 919.625 + + + + 1 + 387.188 + 792.75 + + + + 2 + 927.5 + 989.625 + + + + 1 + 1273.12 + 652.75 + + + + 1 + 755.417 + 132.125 + + + + 2 + 437.5 + 679 + + + + 2 + 1173.96 + 718.375 + + + + 1 + 457.188 + 963.375 + + + + 2 + 942.083 + 959 + + + + 2 + 536.667 + 154 + + + + 1 + 631.458 + 578.375 + + + + 2 + 1273.12 + 639.625 + + + + 2 + 516.25 + 547.75 + + + + 2 + 1293.54 + 486.5 + + + + 1 + 998.958 + 525.875 + + + + 2 + 675.938 + 412.125 + + + + 1 + 185.208 + 228.375 + + + + 2 + 1114.17 + 569.625 + + + + 1 + 717.5 + 560.875 + + + + 2 + 468.125 + 600.25 + + + + 2 + 385 + 556.5 + + + + 1 + 313.542 + 757.75 + + + + 1 + 834.167 + 749 + + + + 1 + 253.75 + 193.375 + + + + 1 + 198.333 + 416.5 + + + + 2 + 245 + 766.5 + + + + 1 + 437.5 + 692.125 + + + + 1 + 341.25 + 1090.25 + + + + 2 + 1117.81 + 622.125 + + + + 1 + 627.812 + 827.75 + + + + 1 + 1159.38 + 727.125 + + + + 1 + 928.958 + 412.125 + + + + 1 + 376.25 + 788.375 + + + + 1 + 938.438 + 587.125 + + + + 1 + 673.75 + 889 + + + + 1 + 1290.62 + 622.125 + + + + 1 + 925.312 + 893.375 + + + + 1 + 177.188 + 779.625 + + + + 1 + 662.812 + 889 + + + + 1 + 330.312 + 1085.88 + + + + 1 + 360.938 + 1007.12 + + + + 1 + 317.188 + 1059.62 + + + + 1 + 599.375 + 744.625 + + + + 2 + 1098.12 + 757.75 + + + + 1 + 417.083 + 127.75 + + + + 2 + 457.917 + 350.875 + + + + 1 + 188.125 + 792.75 + + + + 1 + 523.542 + 530.25 + + + + 1 + 546.875 + 722.75 + + + + 1 + 665 + 679 + + + + 1 + 533.75 + 770.875 + + + + 2 + 430.938 + 92.75 + + + + 2 + 608.125 + 57.75 + + + + 2 + 1230.83 + 670.25 + + + + 1 + 651.875 + 84 + + + + 1 + 437.5 + 1029 + + + + 2 + 1198.75 + 420.875 + + + + 2 + 1203.12 + 420.875 + + + + 1 + 759.792 + 613.375 + + + + 1 + 659.167 + 49 + + + + 1 + 1283.33 + 591.5 + + + + 1 + 1295 + 582.75 + + + + 2 + 1045.62 + 390.25 + + + + 2 + 665 + 692.125 + + + + 2 + 406.875 + 1090.25 + + + + 2 + 636.562 + 486.5 + + + + 1 + 647.5 + 504 + + + + 2 + 1283.33 + 604.625 + + + + 1 + 368.958 + 757.75 + + + + 1 + 245 + 779.625 + + + + 1 + 457.188 + 79.625 + + + + 2 + 752.5 + 613.375 + + + + 1 + 406.875 + 1107.75 + + + + 2 + 855.312 + 460.25 + + + + 1 + 438.958 + 932.75 + + + + 1 + 290.938 + 902.125 + + + + 2 + 446.25 + 171.5 + + + + 1 + 1098.12 + 770.875 + + + + 1 + 111.763 + -379.89 + + + + 1 + 240.625 + 910.875 + + + + 1 + 373.333 + 245.875 + + + + 1 + 920.208 + 976.5 + + + + 1 + 461.562 + 880.25 + + + + 1 + 1146.25 + 740.25 + + + + 1 + 437.5 + 1024.62 + + + + 1 + 710.938 + 136.5 + + + + 2 + 264.688 + 464.625 + + + + 2 + 138.006 + -379.878 + + + + 2 + 431.667 + 127.75 + + + + 1 + 931.875 + 858.375 + + + + 1 + 1045.62 + 403.375 + + + + 1 + 385 + 543.375 + + + + 1 + 307.708 + 508.375 + + + + 2 + 138.004 + -379.895 + + + + 1 + 520.625 + 97.125 + + + + 2 + 438.958 + 945.875 + + + + 2 + 188.125 + 779.625 + + + + 1 + 721.875 + 136.5 + + + + 1 + 638.75 + 705.25 + + + + 1 + 1198.75 + 434 + + + + 2 + 403.958 + 718.375 + + + + 1 + 111.753 + -379.885 + + + + 1 + 728.438 + 749 + + + + 2 + 920.208 + 989.625 + + + + 1 + 972.708 + 766.5 + + + + 2 + 350 + 858.375 + + + + 1 + 1295 + 578.375 + + + + 2 + 457.188 + 66.5 + + + + 2 + 216.562 + 416.5 + + + + 2 + 138.003 + -379.885 + + + + 1 + 879.375 + 792.75 + + + + 1 + 431.667 + 114.625 + + + + 1 + 716.042 + 915.25 + + + + 1 + 1106.88 + 622.125 + + + + 2 + 925.312 + 880.25 + + + + 1 + 258.125 + 219.625 + + + + 1 + 526.458 + 329 + + + + 1 + 931.875 + 823.375 + + + + 1 + 469.583 + 35.875 + + + + 2 + 138.007 + -379.885 + + + + 1 + 763.438 + 630.875 + + + + 2 + 1150.62 + 622.125 + + + + 2 + 1295 + 565.25 + + + + 2 + 258.125 + 206.5 + + + + 2 + 522.812 + 263.375 + + + + 1 + 679.583 + 394.625 + + + + 2 + 469.583 + 49 + + + + 1 + 249.375 + 749 + + + + 1 + 240.625 + 906.5 + + + + 2 + 393.75 + 1094.62 + + + + 1 + 542.5 + 490.875 + + + + 2 + 916.562 + 989.625 + + + + 1 + 1249.79 + 407.75 + + + + 1 + 399.583 + 1072.75 + + + + 1 + 364.583 + 1107.75 + + + + 1 + 1067.5 + 508.375 + + + + 1 + 476 + 114.625 + + + + 1 + 516.25 + 560.875 + + + + 1 + 1067.5 + 412.125 + + + + 3 + 918.75 + 840.875 + + + + 1 + 142.917 + 875.875 + + + + 2 + 364.583 + 1094.62 + + + + 2 + 1067.5 + 521.5 + + + + 1 + 546.875 + 574 + + + + 1 + 1124.38 + 460.25 + + + + 1 + 833.438 + 1020.25 + + + + 2 + 1120 + 412.125 + + + + 1 + 1106.88 + 587.125 + + + + 2 + 118.125 + 823.375 + + + + 1 + 111.737 + -379.882 + + + + 1 + 111.754 + -379.882 + + + + 2 + 546.875 + 560.875 + + + + 1 + 246.458 + 464.625 + + + + 1 + 681.042 + 858.375 + + + + 1 + 350 + 1094.62 + + + + 4 + 850.938 + 1020.25 + + + + 2 + 638.75 + 692.125 + + + + 2 + 138.004 + -379.867 + + + + 1 + 111.754 + -379.893 + + + + 1 + 468.125 + 613.375 + + + + 1 + 803.542 + 504 + + + + 1 + 869.167 + 1020.25 + + + + 2 + 271.25 + 766.5 + + + + 1 + 251.562 + 910.875 + + + + 2 + 437.5 + 1011.5 + + + + 2 + 138.012 + -379.88 + + + + 2 + 138.004 + -379.893 + + + + 2 + 599.375 + 731.5 + + + + 1 + 719.688 + 932.75 + + + + 1 + 596.458 + 547.75 + + + + 2 + 450.625 + 1068.38 + + + + 1 + 697.812 + 429.625 + + + + 2 + 240.625 + 893.375 + + + + 1 + 111.754 + -379.867 + + + + 1 + 111.754 + -379.882 + + + + 2 + 542.5 + 477.75 + + + + 2 + 740.833 + 976.5 + + + + 1 + 554.959 + 652.704 + + + + 1 + 261.042 + 447.125 + + + + 1 + 306.25 + 858.375 + + + + 1 + 118.125 + 836.5 + + + + 1 + 111.753 + -379.878 + + + + 1 + 111.757 + -379.882 + + + + 1 + 450.625 + 735.875 + + + + 1 + 663.542 + 630.875 + + + + 1 + 412.708 + 75.25 + + + + 1 + 406.875 + 1068.38 + + + + 1 + 729.167 + 101.5 + + + + 1 + 752.5 + 626.5 + + + + 1 + 111.749 + -379.87 + + + + 2 + 138.004 + -379.882 + + + + 2 + 450.625 + 722.75 + + + + 1 + 1044.17 + 766.5 + + + + 1 + 439.688 + 1085.88 + + + + 1 + 490 + 665.875 + + + + 2 + 791.875 + 224 + + + + 2 + 728.438 + 731.5 + + + + 1 + 111.763 + -379.881 + + + + 1 + 111.753 + -379.887 + + + + 2 + 741.562 + 613.375 + + + + 1 + 544.688 + 276.5 + + + + 1 + 667.188 + 648.375 + + + + 1 + 920.208 + 552.125 + + + + 2 + 433.125 + 718.375 + + + + 1 + 1117.81 + 635.25 + + + + 1 + 111.754 + -379.895 + + + + 1 + 111.76 + -379.884 + + + + 2 + 1170.31 + 718.375 + + + + 2 + 544.688 + 263.375 + + + + 1 + 306.25 + 792.75 + + + + 1 + 441.875 + 661.5 + + + + 1 + 1036.88 + 779.625 + + + + 1 + 1028.12 + 390.25 + + + + 1 + 111.766 + -379.888 + + + + 1 + 111.752 + -379.881 + + + + 1 + 413.438 + 687.75 + + + + 2 + 673.75 + 875.875 + + + + 1 + 348.542 + 1055.25 + + + + 1 + 777.292 + 206.5 + + + + 1 + 406.875 + 1103.38 + + + + 1 + 555.625 + 648.375 + + + + 2 + 137.999 + -379.896 + + + + 1 + 111.748 + -379.865 + + + + 4 + 1146.25 + 434 + + + + 1 + 411.25 + 731.5 + + + + 1 + 606.667 + 714 + + + + 1 + 1265.83 + 622.125 + + + + 2 + 1036.88 + 766.5 + + + + 2 + 1128.75 + 569.625 + + + + 2 + 137.999 + -379.887 + + + + 2 + 138.003 + -379.86 + + + + 2 + 411.25 + 718.375 + + + + 1 + 1227.19 + 718.375 + + + + 1 + 435.312 + 945.875 + + + + 2 + 533.75 + 757.75 + + + + 3 + 492.188 + 805.875 + + + + 2 + 1019.38 + 399 + + + + 2 + 138.01 + -379.884 + + + + 2 + 137.993 + -379.891 + + + + 1 + 746.667 + 714 + + + + 1 + 503.125 + 696.5 + + + + 1 + 443.333 + 350.875 + + + + 1 + 1203.12 + 407.75 + + + + 1 + 460.833 + 600.25 + + + + 2 + 1264.38 + 425.25 + + + + 2 + 138.018 + -379.885 + + + + 2 + 137.992 + -379.886 + + + + 1 + 546.875 + 57.75 + + + + 2 + 503.125 + 683.375 + + + + 2 + 441.875 + 259 + + + + 1 + 728.438 + 744.625 + + + + 1 + 1283.33 + 587.125 + + + + 1 + 625.625 + 486.5 + + + + 1 + 111.766 + -379.886 + + + + 2 + 137.998 + -379.894 + + + + 1 + 129.062 + 840.875 + + + + 2 + 156.042 + 792.75 + + + + 1 + 398.125 + 543.375 + + + + 2 + 554.167 + 705.25 + + + + 1 + 1181.25 + 731.5 + + + + 1 + 726.25 + 149.625 + + + + 1 + 450.625 + 880.25 + + + + 1 + 526.458 + 740.25 + + + + 1 + 111.743 + -379.886 + + + + 2 + 398.125 + 556.5 + + + + 2 + 925.312 + 425.25 + + + + 1 + 1090.83 + 740.25 + + + + 1 + 306.25 + 1042.12 + + + + 2 + 138.003 + -379.878 + + + + 1 + 400.312 + 836.5 + + + + 2 + 137.999 + -379.89 + + + + 1 + 783.125 + 1024.62 + + + + 1 + 522.812 + 757.75 + + + + 1 + 918.75 + 792.75 + + + + 2 + 743.75 + 119 + + + + 2 + 137.999 + -379.87 + + + + 2 + 783.125 + 1011.5 + + + + 1 + 646.042 + 595.875 + + + + 2 + 885.938 + 1011.5 + + + + 2 + 138.002 + -379.883 + + + + 1 + 424.375 + 145.25 + + + + 2 + 1071.88 + 390.25 + + + + 2 + 138.018 + -379.879 + + + + 2 + 829.062 + 591.5 + + + + 1 + 494.375 + 101.5 + + + + 1 + 111.753 + -379.889 + + + + 1 + 185.938 + 298.375 + + + + 1 + 1271.67 + 434 + + + + 1 + 358.75 + 928.375 + + + + 2 + 138.013 + -379.881 + + + + 2 + 656.25 + 630.875 + + + + 1 + 1139.69 + 674.625 + + + + 1 + 1047.81 + 779.625 + + + + 1 + 111.754 + -379.896 + + + + 1 + 889.583 + 994 + + + + 2 + 402.5 + 928.375 + + + + 2 + 138.001 + -379.878 + + + + 1 + 1290.62 + 617.75 + + + + 1 + 873.542 + 460.25 + + + + 2 + 494.375 + 114.625 + + + + 1 + 111.745 + -379.885 + + + + 1 + 854.583 + 1002.75 + + + + 2 + 533.75 + 114.625 + + + + 2 + 1260 + 670.25 + + + + 2 + 137.987 + -379.882 + + + + 2 + 1150.62 + 674.625 + + + + 2 + 1047.81 + 766.5 + + + + 2 + 523.542 + 797.125 + + + + 2 + 137.991 + -379.888 + + + + 1 + 560 + 92.75 + + + + 2 + 774.375 + 613.375 + + + + 1 + 111.764 + -379.879 + + + + 2 + 918.75 + 792.75 + + + + 1 + 815.938 + 779.625 + + + + 1 + 544.688 + 770.875 + + + + 2 + 343.438 + 228.375 + + + + 1 + 111.741 + -379.893 + + + + 1 + 542.5 + 495.25 + + + + 1 + 1050 + 521.5 + + + + 1 + 111.766 + -379.882 + + + + 2 + 732.083 + 731.5 + + + + 1 + 1150.62 + 687.75 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 533.75 + 342.125 + + + + 2 + 137.991 + -379.893 + + + + 2 + 770 + 149.625 + + + + 1 + 111.759 + -379.865 + + + + 1 + 665 + 692.125 + + + + 2 + 1290.62 + 604.625 + + + + 1 + 111.755 + -379.884 + + + + 1 + 794.062 + 1011.5 + + + + 2 + 533.75 + 329 + + + + 2 + 1238.12 + 700.875 + + + + 2 + 398.125 + 556.5 + + + + 1 + 111.762 + -379.884 + + + + 1 + 599.375 + 749 + + + + 2 + 815.938 + 766.5 + + + + 1 + 111.738 + -379.893 + + + + 1 + 428.75 + 272.125 + + + + 1 + 625.625 + 692.125 + + + + 1 + 535.938 + 705.25 + + + + 1 + 111.766 + -379.886 + + + + 1 + 557.812 + 722.75 + + + + 1 + 980 + 797.125 + + + + 2 + 428.75 + 259 + + + + 1 + 111.737 + -379.891 + + + + 1 + 389.375 + 718.375 + + + + 2 + 815.208 + 1020.25 + + + + 2 + 138.016 + -379.886 + + + + 2 + 541.042 + 757.75 + + + + 1 + 544.688 + 280.875 + + + + 1 + 473.958 + 819 + + + + 2 + 138.001 + -379.885 + + + + 1 + 1220.62 + 425.25 + + + + 2 + 544.688 + 757.75 + + + + 2 + 444.792 + 1011.5 + + + + 1 + 512.75 + 114.625 + + + + 2 + 138.016 + -379.886 + + + + 1 + 541.042 + 184.625 + + + + 2 + 280 + 884.625 + + + + 2 + 137.993 + -379.886 + + + + 1 + 1106.88 + 399 + + + + 2 + 1087.19 + 757.75 + + + + 2 + 507.5 + 114.625 + + + + 1 + 179.375 + 910.875 + + + + 1 + 111.739 + -379.88 + + + + 1 + 481.25 + 788.375 + + + + 1 + 280 + 897.75 + + + + 2 + 137.999 + -379.881 + + + + 2 + 465.938 + 49 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 945 + 840.875 + + + + 2 + 411.25 + 819 + + + + 1 + 111.762 + -379.886 + + + + 1 + 233.333 + 875.875 + + + + 2 + 627.812 + 810.25 + + + + 1 + 111.743 + -379.891 + + + + 2 + 833.438 + 1020.25 + + + + 1 + 507.5 + 53.375 + + + + 1 + 654.792 + 486.5 + + + + 2 + 138.012 + -379.886 + + + + 2 + 157.5 + 893.375 + + + + 1 + 710.208 + 530.25 + + + + 2 + 473.958 + 805.875 + + + + 1 + 111.743 + -379.889 + + + + 2 + 775.833 + 1011.5 + + + + 2 + 507.5 + 40.25 + + + + 1 + 111.768 + -379.885 + + + + 1 + 328.125 + 989.625 + + + + 2 + 631.458 + 810.25 + + + + 1 + 850.938 + 609 + + + + 1 + 1071 + 534.625 + + + + 1 + 1136.04 + 604.625 + + + + 1 + 111.742 + -379.886 + + + + 1 + 680.312 + 110.25 + + + + 2 + 402.5 + 687.75 + + + + 1 + 284.375 + 775.25 + + + + 1 + 904.167 + 1011.5 + + + + 1 + 541.042 + 311.5 + + + + 2 + 770 + 224 + + + + 1 + 488.542 + 429.625 + + + + 2 + 138.003 + -379.889 + + + + 1 + 1181.25 + 735.875 + + + + 1 + 822.5 + 1033.38 + + + + 3 + 1146.25 + 434 + + + + 1 + 319.375 + 1072.75 + + + + 1 + 418.542 + 700.875 + + + + 1 + 656.25 + 644 + + + + 1 + 111.75 + -379.898 + + + + 1 + 1203.12 + 403.375 + + + + 2 + 138.016 + -379.882 + + + + 1 + 544.688 + 215.25 + + + + 2 + 969.062 + 784 + + + + 2 + 437.5 + 854 + + + + 1 + 328.125 + 1059.62 + + + + 1 + 546.875 + 718.375 + + + + 1 + 469.583 + 31.5 + + + + 1 + 380.625 + 945.875 + + + + 1 + 111.752 + -379.879 + + + + 1 + 508.958 + 547.75 + + + + 2 + 638.75 + 810.25 + + + + 1 + 428.75 + 862.75 + + + + 1 + 180.833 + 762.125 + + + + 1 + 931.875 + 827.75 + + + + 1 + 1231.56 + 442.75 + + + + 1 + 457.917 + 333.375 + + + + 2 + 138.002 + -379.879 + + + + 2 + 1146.25 + 727.125 + + + + 2 + 877.188 + 460.25 + + + + 1 + 163.333 + 302.75 + + + + 1 + 700 + 119 + + + + 2 + 546.875 + 705.25 + + + + 2 + 137.989 + -379.88 + + + + 1 + 253.75 + 189 + + + + 1 + 111.749 + -379.887 + + + + 1 + 638.75 + 823.375 + + + + 1 + 610.312 + 731.5 + + + + 1 + 320.833 + 1024.62 + + + + 2 + 398.125 + 775.25 + + + + 2 + 1181.25 + 718.375 + + + + 1 + 111.759 + -379.867 + + + + 1 + 928.958 + 407.75 + + + + 1 + 111.741 + -379.888 + + + + 2 + 822.5 + 1020.25 + + + + 2 + 328.125 + 775.25 + + + + 1 + 732.812 + 359.625 + + + + 1 + 1216.25 + 714 + + + + 2 + 138.017 + -379.879 + + + + 1 + 111.749 + -379.884 + + + + 1 + 956.667 + 941.5 + + + + 1 + 1194.38 + 700.875 + + + + 2 + 516.25 + 114.625 + + + + 2 + 1071 + 521.5 + + + + 2 + 138.001 + -379.881 + + + + 2 + 137.988 + -379.893 + + + + 1 + 438.958 + 49 + + + + 1 + 581.875 + 565.25 + + + + 1 + 234.062 + 232.75 + + + + 1 + 770 + 237.125 + + + + 2 + 137.986 + -379.885 + + + + 2 + 137.987 + -379.892 + + + + 2 + 625.625 + 565.25 + + + + 1 + 1093.75 + 429.625 + + + + 2 + 234.062 + 219.625 + + + + 2 + 931.875 + 840.875 + + + + 2 + 137.998 + -379.865 + + + + 2 + 363.125 + 1072.75 + + + + 1 + 111.752 + -379.884 + + + + 2 + 181.562 + 320.25 + + + + 1 + 1124.38 + 473.375 + + + + 2 + 1216.25 + 700.875 + + + + 1 + 111.736 + -379.885 + + + + 2 + 472.5 + 862.75 + + + + 1 + 111.754 + -379.88 + + + + 1 + 280 + 902.125 + + + + 1 + 529.375 + 167.125 + + + + 1 + 1305.94 + 582.75 + + + + 2 + 980 + 784 + + + + 2 + 1316.88 + 565.25 + + + + 2 + 137.999 + -379.884 + + + + 1 + 111.751 + -379.878 + + + + 1 + 538.125 + 412.125 + + + + 1 + 714.583 + 324.625 + + + + 1 + 300.417 + 202.125 + + + + 1 + 651.875 + 679 + + + + 1 + 1216.25 + 670.25 + + + + 1 + 111.762 + -379.88 + + + + 2 + 137.987 + -379.891 + + + + 1 + 402.5 + 700.875 + + + + 1 + 385 + 574 + + + + 3 + 850.938 + 1020.25 + + + + 1 + 627.812 + 823.375 + + + + 1 + 111.75 + -379.877 + + + + 1 + 111.748 + -379.869 + + + + 1 + 387.917 + 228.375 + + + + 2 + 708.75 + 932.75 + + + + 1 + 1173.96 + 700.875 + + + + 1 + 686.875 + 425.25 + + + + 2 + 138 + -379.877 + + + + 1 + 111.76 + -379.882 + + + + 1 + 658.438 + 504 + + + + 1 + 920.208 + 972.125 + + + + 2 + 538.125 + 399 + + + + 2 + 686.875 + 412.125 + + + + 1 + 730.625 + 613.375 + + + + 2 + 138.009 + -379.867 + + + + 2 + 138.013 + -379.886 + + + + 1 + 382.083 + 801.5 + + + + 1 + 431.667 + 110.25 + + + + 1 + 516.25 + 127.75 + + + + 2 + 651.875 + 692.125 + + + + 1 + 1159.38 + 718.375 + + + + 2 + 138.012 + -379.884 + + + + 2 + 138.01 + -379.882 + + + + 1 + 182.292 + 350.875 + + + + 1 + 551.76 + 650.436 + + + + 2 + 529.375 + 154 + + + + 2 + 949.375 + 959 + + + + 2 + 138.009 + -379.865 + + + + 2 + 138.002 + -379.884 + + + + 1 + 1249.06 + 687.75 + + + + 1 + 367.5 + 819 + + + + 2 + 544.688 + 202.125 + + + + 1 + 949.375 + 932.75 + + + + 1 + 111.753 + -379.86 + + + + 2 + 138 + -379.898 + + + + 2 + 1102.5 + 521.5 + + + + 1 + 646.042 + 792.75 + + + + 2 + 892.5 + 792.75 + + + + 1 + 111.748 + -379.884 + + + + 2 + 138.014 + -379.879 + + + + 2 + 459.375 + 1011.5 + + + + 1 + 745.208 + 595.875 + + + + 2 + 520.625 + 114.625 + + + + 1 + 111.768 + -379.879 + + + + 1 + 111.753 + -379.882 + + + + 1 + 975.625 + 399 + + + + 1 + 527.188 + 814.625 + + + + 1 + 124.688 + 906.5 + + + + 1 + 111.748 + -379.894 + + + + 1 + 770 + 241.5 + + + + 1 + 877.188 + 473.375 + + + + 1 + 1109.06 + 775.25 + + + + 2 + 1203.12 + 718.375 + + + + 1 + 759.062 + 976.5 + + + + 2 + 124.688 + 893.375 + + + + 1 + 111.749 + -379.896 + + + + 1 + 505.312 + 565.25 + + + + 1 + 487.812 + 66.5 + + + + 1 + 354.375 + 775.25 + + + + 1 + 430.208 + 994 + + + + 1 + 708.75 + 945.875 + + + + 2 + 137.995 + -379.885 + + + + 2 + 770 + 180.25 + + + + 1 + 717.5 + 565.25 + + + + 1 + 391.562 + 945.875 + + + + 1 + 1133.12 + 434 + + + + 1 + 505.312 + 797.125 + + + + 2 + 1124.38 + 460.25 + + + + 1 + 111.749 + -379.89 + + + + 1 + 640.938 + 79.625 + + + + 1 + 927.5 + 587.125 + + + + 1 + 135.625 + 910.875 + + + + 2 + 669.375 + 486.5 + + + + 2 + 505.312 + 797.125 + + + + 2 + 181.562 + 245.875 + + + + 1 + 111.752 + -379.883 + + + + 1 + 446.25 + 959 + + + + 1 + 201.25 + 928.375 + + + + 1 + 167.708 + 263.375 + + + + 1 + 490 + 40.25 + + + + 1 + 1293.54 + 469 + + + + 2 + 230.417 + 219.625 + + + + 1 + 111.737 + -379.892 + + + + 1 + 520.625 + 101.5 + + + + 1 + 752.5 + 298.375 + + + + 1 + 437.5 + 696.5 + + + + 2 + 1316.88 + 525.875 + + + + 4 + 918.75 + 840.875 + + + + 2 + 544.688 + 329 + + + + 2 + 138.005 + -379.884 + + + + 2 + 640.938 + 66.5 + + + + 1 + 531.562 + 495.25 + + + + 1 + 905.625 + 775.25 + + + + 2 + 350 + 1042.12 + + + + 1 + 1146.25 + 416.5 + + + + 1 + 555.189 + 644.017 + + + + 2 + 137.998 + -379.869 + + + + 2 + 990.208 + 399 + + + + 1 + 531.562 + 62.125 + + + + 2 + 678.125 + 692.125 + + + + 1 + 167.708 + 368.375 + + + + 1 + 459.375 + 189 + + + + 2 + 759.062 + 224 + + + + 1 + 111.748 + -379.871 + + + + 2 + 927.5 + 569.625 + + + + 1 + 638.75 + 709.625 + + + + 1 + 549.792 + 460.25 + + + + 1 + 1230.83 + 652.75 + + + + 1 + 1297.19 + 486.5 + + + + 2 + 137.993 + -379.889 + + + + 1 + 588.438 + 744.625 + + + + 1 + 350 + 1007.12 + + + + 1 + 1029.58 + 749 + + + + 1 + 522.083 + 154 + + + + 2 + 479.062 + 600.25 + + + + 1 + 111.741 + -379.888 + + + + 1 + 770 + 193.375 + + + + 1 + 258.125 + 224 + + + + 1 + 321.562 + 245.875 + + + + 1 + 453.542 + 66.5 + + + + 2 + 137.998 + -379.884 + + + + 2 + 553.438 + 477.75 + + + + 1 + 927.5 + 582.75 + + + + 1 + 417.812 + 1107.75 + + + + 1 + 192.5 + 263.375 + + + + 1 + 339.792 + 210.875 + + + + 1 + 111.751 + -379.885 + + + + 1 + 557.665 + 652.251 + + + + 1 + 1273.12 + 525.875 + + + + 1 + 956.667 + 902.125 + + + + 2 + 1093.75 + 412.125 + + + + 1 + 737.188 + 167.125 + + + + 2 + 503.125 + 683.375 + + + + 2 + 138.003 + -379.882 + + + + 1 + 943.542 + 425.25 + + + + 1 + 1085 + 569.625 + + + + 1 + 500.5 + 132.125 + + + + 1 + 1093.75 + 399 + + + + 1 + 446.25 + 84 + + + + 1 + 938.438 + 919.625 + + + + 1 + 111.749 + -379.881 + + + + 2 + 986.562 + 399 + + + + 2 + 371.875 + 989.625 + + + + 1 + 315 + 525.875 + + + + 1 + 154.583 + 928.375 + + + + 1 + 927.5 + 1007.12 + + + + 2 + 535.208 + 44.625 + + + + 1 + 111.763 + -379.886 + + + + 1 + 113.75 + 893.375 + + + + 2 + 190.312 + 910.875 + + + + 1 + 199.062 + 797.125 + + + + 2 + 710.938 + 119 + + + + 1 + 188.125 + 797.125 + + + + 2 + 549.062 + 399 + + + + 2 + 137.991 + -379.888 + + + + 1 + 415.625 + 1011.5 + + + + 4 + 172.812 + 915.25 + + + + 1 + 450.625 + 740.25 + + + + 1 + 710.938 + 132.125 + + + + 1 + 470.312 + 464.625 + + + + 2 + 138.004 + -379.88 + + + + 1 + 649.688 + 810.25 + + + + 2 + 223.125 + 910.875 + + + + 1 + 159.688 + 810.25 + + + + 1 + 468.125 + 617.75 + + + + 1 + 990.208 + 385.875 + + + + 2 + 137.998 + -379.871 + + + + 1 + 484.167 + 49 + + + + 1 + 1161.56 + 692.125 + + + + 1 + 1273.12 + 565.25 + + + + 1 + 342.708 + 972.125 + + + + 1 + 541.042 + 245.875 + + + + 2 + 138.004 + -379.896 + + + + 1 + 393.75 + 854 + + + + 1 + 755.417 + 959 + + + + 1 + 137.812 + 792.75 + + + + 1 + 525 + 40.25 + + + + 1 + 111.746 + -379.88 + + + + 2 + 533.75 + 40.25 + + + + 1 + 339.062 + 875.875 + + + + 2 + 125.417 + 823.375 + + + + 1 + 428.75 + 679 + + + + 1 + 111.752 + -379.875 + + + + 1 + 748.125 + 224 + + + + 1 + 691.25 + 110.25 + + + + 1 + 422.188 + 718.375 + + + + 1 + 389.375 + 836.5 + + + + 1 + 476.875 + 683.375 + + + + 1 + 840 + 604.625 + + + + 1 + 111.751 + -379.872 + + + + 1 + 554.029 + 644.296 + + + + 1 + 450.625 + 368.375 + + + + 1 + 175 + 298.375 + + + + 1 + 533.75 + 280.875 + + + + 1 + 987.292 + 784 + + + + 2 + 840 + 591.5 + + + + 1 + 111.743 + -379.88 + + + + 2 + 437.5 + 722.75 + + + + 1 + 481.25 + 464.625 + + + + 1 + 415.625 + 276.5 + + + + 1 + 159.688 + 337.75 + + + + 2 + 949.375 + 919.625 + + + + 2 + 522.812 + 202.125 + + + + 1 + 111.759 + -379.866 + + + + 1 + 317.188 + 858.375 + + + + 1 + 936.25 + 897.75 + + + + 1 + 1275.31 + 504 + + + + 1 + 1159.38 + 451.5 + + + + 2 + 446.25 + 945.875 + + + + 2 + 138.002 + -379.869 + + + + 2 + 785.312 + 504 + + + + 2 + 645.312 + 630.875 + + + + 1 + 960.312 + 976.5 + + + + 1 + 516.25 + 57.75 + + + + 1 + 490 + 700.875 + + + + 1 + 339.792 + 215.25 + + + + 1 + 551.787 + 646.264 + + + + 2 + 461.562 + 350.875 + + + + 1 + 111.748 + -379.866 + + + + 1 + 599.375 + 75.25 + + + + 1 + 391.562 + 705.25 + + + + 2 + 140 + 858.375 + + + + 1 + 892.5 + 805.875 + + + + 2 + 592.083 + 731.5 + + + + 1 + 111.768 + -379.883 + + + + 2 + 1080.62 + 412.125 + + + + 1 + 253.75 + 482.125 + + + + 1 + 446.25 + 189 + + + + 1 + 242.812 + 482.125 + + + + 2 + 154.583 + 915.25 + + + + 2 + 892.5 + 792.75 + + + + 1 + 684.688 + 875.875 + + + + 2 + 138.009 + -379.866 + + + + 1 + 508.958 + 779.625 + + + + 1 + 918.75 + 858.375 + + + + 1 + 737.188 + 994 + + + + 2 + 339.792 + 228.375 + + + + 1 + 240.625 + 206.5 + + + + 2 + 138.008 + -379.869 + + + + 1 + 539.583 + 687.75 + + + + 2 + 498.75 + 40.25 + + + + 1 + 640.938 + 84 + + + + 1 + 717.5 + 731.5 + + + + 2 + 588.438 + 731.5 + + + + 2 + 928.958 + 880.25 + + + + 2 + 138 + -379.881 + + + + 1 + 203.438 + 263.375 + + + + 2 + 701.458 + 932.75 + + + + 1 + 662.812 + 893.375 + + + + 2 + 1172.5 + 674.625 + + + + 1 + 949.375 + 972.125 + + + + 1 + 762.708 + 224 + + + + 1 + 450.625 + 705.25 + + + + 2 + 138.004 + -379.881 + + + + 1 + 694.167 + 412.125 + + + + 1 + 936.25 + 442.75 + + + + 1 + 413.438 + 145.25 + + + + 2 + 631.458 + 595.875 + + + + 2 + 942.083 + 919.625 + + + + 1 + 205.625 + 434 + + + + 2 + 455 + 679 + + + + 1 + 111.753 + -379.88 + + + + 1 + 476.875 + 66.5 + + + + 2 + 761.25 + 731.5 + + + + 1 + 603.75 + 44.625 + + + + 2 + 759.062 + 180.25 + + + + 1 + 739.375 + 749 + + + + 2 + 335.417 + 1042.12 + + + + 1 + 111.756 + -379.861 + + + + 1 + 439.688 + 368.375 + + + + 1 + 905.625 + 840.875 + + + + 2 + 777.292 + 180.25 + + + + 2 + 287.292 + 884.625 + + + + 1 + 790.417 + 994 + + + + 2 + 540.312 + 154 + + + + 1 + 111.736 + -379.884 + + + + 1 + 603.75 + 582.75 + + + + 2 + 1312.5 + 604.625 + + + + 1 + 1305.94 + 543.375 + + + + 3 + 172.812 + 915.25 + + + + 2 + 737.188 + 149.625 + + + + 1 + 536.667 + 136.5 + + + + 1 + 111.755 + -379.868 + + + + 1 + 796.25 + 521.5 + + + + 1 + 665 + 412.125 + + + + 1 + 905.625 + 810.25 + + + + 2 + 185.208 + 245.875 + + + + 1 + 1092 + 521.5 + + + + 1 + 111.761 + -379.881 + + + + 1 + 745.208 + 263.375 + + + + 1 + 428.75 + 1085.88 + + + + 1 + 960.312 + 937.125 + + + + 1 + 164.062 + 385.875 + + + + 1 + 111.763 + -379.879 + + + + 2 + 317.188 + 1042.12 + + + + 2 + 196.875 + 280.875 + + + + 2 + 958.125 + 840.875 + + + + 1 + 457.188 + 84 + + + + 1 + 858.958 + 447.125 + + + + 1 + 1117.81 + 639.625 + + + + 1 + 420 + 110.25 + + + + 1 + 669.375 + 92.75 + + + + 1 + 317.188 + 1055.25 + + + + 1 + 459.375 + 805.875 + + + + 1 + 1067.5 + 504 + + + + 1 + 665 + 674.625 + + + + 1 + 371.875 + 574 + + + + 2 + 858.958 + 460.25 + + + + 1 + 223.125 + 237.125 + + + + 1 + 542.5 + 62.125 + + + + 1 + 177.917 + 320.25 + + + + 1 + 638.75 + 613.375 + + + + 1 + 380.625 + 941.5 + + + + 1 + 947.188 + 442.75 + + + + 1 + 330.312 + 1090.25 + + + + 1 + 947.188 + 880.25 + + + + 1 + 339.062 + 989.625 + + + + 1 + 1251.25 + 639.625 + + + + 1 + 596.458 + 552.125 + + + + 1 + 1054.38 + 407.75 + + + + 2 + 503.125 + 805.875 + + + + 2 + 1099.58 + 569.625 + + + + 2 + 170.625 + 792.75 + + + + 2 + 596.458 + 565.25 + + + + 2 + 819.583 + 766.5 + + + + 1 + 295.312 + 792.75 + + + + 1 + 175 + 385.875 + + + + 2 + 408.333 + 854 + + + + 1 + 634.375 + 630.875 + + + + 1 + 1208.96 + 687.75 + + + + 1 + 282.188 + 237.125 + + + + 2 + 1208.96 + 700.875 + + + + 1 + 1302.29 + 547.75 + + + + 1 + 1133.12 + 714 + + + + 2 + 1133.12 + 727.125 + + + + 2 + 666.458 + 875.875 + + + + 1 + 525 + 132.125 + + + + 1 + 631.458 + 582.75 + + + + 1 + 526.458 + 263.375 + + + + 2 + 678.125 + 630.875 + + + + 1 + 408.333 + 840.875 + + + + 1 + 829.792 + 1002.75 + + + + 1 + 914.375 + 880.25 + + + + 1 + 285.833 + 219.625 + + + + 1 + 1095.94 + 582.75 + + + + 1 + 1128.75 + 674.625 + + + + 1 + 415.625 + 259 + + + + 2 + 1050 + 390.25 + + + + 2 + 958.125 + 880.25 + + + + 1 + 488.542 + 823.375 + + + + 2 + 391.562 + 245.875 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 518.438 + 171.5 + + + + 1 + 446.25 + 154 + + + + 2 + 380.625 + 928.375 + + + + 1 + 1047.81 + 784 + + + + 2 + 708.75 + 412.125 + + + + 1 + 526.458 + 202.125 + + + + 2 + 603.75 + 57.75 + + + + 1 + 544.688 + 775.25 + + + + 1 + 409.062 + 110.25 + + + + 1 + 1114.17 + 552.125 + + + + 1 + 777.292 + 167.125 + + + + 1 + 293.125 + 237.125 + + + + 2 + 183.75 + 915.25 + + + + 1 + 111.751 + -379.873 + + + + 2 + 916.562 + 569.625 + + + + 1 + 737.188 + 162.75 + + + + 1 + 938.438 + 1007.12 + + + + 1 + 96.25 + 823.375 + + + + 1 + 559.328 + 646.036 + + + + 1 + 1050 + 377.125 + + + + 1 + 847.292 + 591.5 + + + + 2 + 1295 + 639.625 + + + + 1 + 411.25 + 735.875 + + + + 1 + 185.208 + 232.75 + + + + 2 + 627.812 + 595.875 + + + + 1 + 385 + 1090.25 + + + + 2 + 1095.94 + 569.625 + + + + 1 + 322.292 + 490.875 + + + + 1 + 199.792 + 245.875 + + + + 1 + 126.875 + 792.75 + + + + 1 + 1111.25 + 447.125 + + + + 1 + 945 + 823.375 + + + + 2 + 1025.94 + 766.5 + + + + 1 + 927.5 + 919.625 + + + + 1 + 148.75 + 805.875 + + + + 1 + 826.875 + 784 + + + + 1 + 473.958 + 447.125 + + + + 2 + 138.001 + -379.86 + + + + 2 + 227.5 + 416.5 + + + + 2 + 971.25 + 919.625 + + + + 2 + 148.75 + 792.75 + + + + 4 + 492.188 + 805.875 + + + + 1 + 990.938 + 801.5 + + + + 2 + 137.993 + -379.88 + + + + 1 + 958.125 + 784 + + + + 2 + 710.938 + 342.125 + + + + 1 + 249.375 + 224 + + + + 2 + 745.208 + 613.375 + + + + 1 + 212.917 + 399 + + + + 1 + 111.758 + -379.869 + + + + 2 + 1001.88 + 784 + + + + 1 + 1146.25 + 744.625 + + + + 1 + 141.458 + 775.25 + + + + 1 + 457.188 + 959 + + + + 1 + 1017.19 + 560.875 + + + + 2 + 138.002 + -379.875 + + + + 1 + 772.188 + 1029 + + + + 2 + 212.188 + 219.625 + + + + 1 + 679.583 + 399 + + + + 1 + 516.25 + 565.25 + + + + 1 + 183.75 + 416.5 + + + + 1 + 111.754 + -379.881 + + + + 1 + 1295 + 543.375 + + + + 1 + 535.208 + 477.75 + + + + 1 + 834.167 + 753.375 + + + + 2 + 538.125 + 797.125 + + + + 2 + 138.018 + -379.883 + + + + 1 + 896.875 + 1029 + + + + 1 + 421.458 + 1050.88 + + + + 2 + 412.708 + 92.75 + + + + 1 + 525 + 560.875 + + + + 2 + 138.017 + -379.884 + + + + 2 + 861.875 + 591.5 + + + + 1 + 215.833 + 202.125 + + + + 1 + 170.625 + 337.75 + + + + 2 + 834.167 + 766.5 + + + + 1 + 415.625 + 871.5 + + + + 2 + 138.001 + -379.878 + + + + 1 + 522.812 + 346.5 + + + + 2 + 164.062 + 280.875 + + + + 1 + 1172.5 + 434 + + + + 1 + 807.188 + 521.5 + + + + 2 + 443.333 + 862.75 + + + + 2 + 428.75 + 1090.25 + + + + 2 + 138.006 + -379.861 + + + + 1 + 533.75 + 219.625 + + + + 2 + 266.875 + 206.5 + + + + 1 + 1157.92 + 657.125 + + + + 1 + 1198.75 + 438.375 + + + + 2 + 426.562 + 854 + + + + 1 + 997.5 + 416.5 + + + + 2 + 138.001 + -379.871 + + + + 1 + 245 + 784 + + + + 1 + 545.417 + 381.5 + + + + 1 + 332.5 + 245.875 + + + + 2 + 780.938 + 180.25 + + + + 1 + 805 + 766.5 + + + + 2 + 325.938 + 508.375 + + + + 2 + 138.001 + -379.873 + + + + 1 + 194.688 + 434 + + + + 1 + 438.958 + 928.375 + + + + 1 + 544.688 + 219.625 + + + + 2 + 729.167 + 119 + + + + 1 + 1045.62 + 407.75 + + + + 2 + 304.062 + 219.625 + + + + 2 + 138.011 + -379.881 + + + + 2 + 245 + 219.625 + + + + 1 + 371.875 + 1077.12 + + + + 1 + 380.625 + 263.375 + + + + 2 + 1185.62 + 434 + + + + 2 + 638.75 + 692.125 + + + + 1 + 111.748 + -379.867 + + + + 1 + 201.25 + 219.625 + + + + 1 + 559.94 + 647.625 + + + + 1 + 507.5 + 57.75 + + + + 2 + 713.125 + 92.75 + + + + 1 + 640.208 + 469 + + + + 1 + 494.375 + 797.125 + + + + 1 + 111.765 + -379.882 + + + + 1 + 750.312 + 731.5 + + + + 1 + 412.708 + 79.625 + + + + 1 + 428.75 + 276.5 + + + + 1 + 866.25 + 477.75 + + + + 2 + 435.312 + 127.75 + + + + 1 + 298.958 + 775.25 + + + + 1 + 745.208 + 600.25 + + + + 1 + 638.75 + 827.75 + + + + 1 + 96.25 + 858.375 + + + + 2 + 435.312 + 66.5 + + + + 1 + 1273.12 + 657.125 + + + + 1 + 398.125 + 539 + + + + 1 + 1106.88 + 582.75 + + + + 2 + 140 + 823.375 + + + + 2 + 436.042 + 1068.38 + + + + 2 + 568.75 + 560.875 + + + + 1 + 748.125 + 994 + + + + 2 + 1106.88 + 569.625 + + + + 2 + 557.812 + 560.875 + + + + 1 + 304.062 + 525.875 + + + + 1 + 708.75 + 950.25 + + + + 2 + 679.583 + 412.125 + + + + 2 + 527.188 + 547.75 + + + + 1 + 437.5 + 740.25 + + + + 1 + 1264.38 + 469 + + + + 1 + 780.938 + 193.375 + + + + 1 + 1207.5 + 438.375 + + + + 1 + 559.612 + 650.188 + + + + 1 + 1253.44 + 469 + + + + 1 + 533.75 + 346.5 + + + + 1 + 426.562 + 867.125 + + + + 1 + 161.875 + 897.75 + + + + 2 + 848.75 + 766.5 + + + + 1 + 721.875 + 359.625 + + + + 1 + 728.438 + 565.25 + + + + 1 + 443.333 + 849.625 + + + + 1 + 530.833 + 399 + + + + 1 + 140 + 915.25 + + + + 1 + 376.25 + 792.75 + + + + 1 + 783.125 + 1029 + + + + 2 + 1227.19 + 700.875 + + + + 2 + 1287.71 + 525.875 + + + + 1 + 697.812 + 950.25 + + + + 1 + 234.062 + 237.125 + + + + 1 + 488.25 + 132.125 + + + + 2 + 457.188 + 945.875 + + + + 1 + 1268.75 + 604.625 + + + + 1 + 371.875 + 556.5 + + + + 1 + 1159.38 + 416.5 + + + + 1 + 153.125 + 280.875 + + + + 1 + 614.688 + 578.375 + + + + 1 + 811.562 + 1037.75 + + + + 1 + 759.792 + 280.875 + + + + 1 + 446.25 + 696.5 + + + + 1 + 714.583 + 329 + + + + 1 + 1111.25 + 477.75 + + + + 1 + 426.562 + 1011.5 + + + + 1 + 479.062 + 97.125 + + + + 1 + 457.188 + 617.75 + + + + 2 + 714.583 + 342.125 + + + + 1 + 1124.38 + 477.75 + + + + 1 + 190.312 + 910.875 + + + + 1 + 1006.25 + 560.875 + + + + 1 + 818.125 + 591.5 + + + + 1 + 1227.19 + 714 + + + + 1 + 125.417 + 840.875 + + + + 1 + 1071 + 539 + + + + 1 + 673.75 + 893.375 + + + + 1 + 980 + 801.5 + + + + 1 + 837.812 + 766.5 + + + + 1 + 546.875 + 92.75 + + + + 1 + 494.375 + 97.125 + + + + 2 + 1190 + 420.875 + + + + 1 + 1008.44 + 416.5 + + + + 1 + 527.188 + 416.5 + + + + 1 + 182.292 + 280.875 + + + + 1 + 1242.5 + 442.75 + + + + 1 + 686.875 + 429.625 + + + + 1 + 780.938 + 237.125 + + + + 1 + 325.208 + 228.375 + + + + 1 + 535.938 + 578.375 + + + + 2 + 780.938 + 224 + + + + 1 + 539.583 + 560.875 + + + + 1 + 1305.94 + 578.375 + + + + 1 + 107.188 + 875.875 + + + + 1 + 111.751 + -379.86 + + + + 1 + 724.792 + 547.75 + + + + 2 + 1305.94 + 565.25 + + + + 1 + 111.752 + -379.869 + + + + 1 + 433.125 + 171.5 + + + + 1 + 387.188 + 788.375 + + + + 1 + 1106.88 + 394.625 + + + + 2 + 137.996 + -379.88 + + + + 1 + 427.292 + 92.75 + + + + 2 + 614.688 + 565.25 + + + + 1 + 1080.62 + 429.625 + + + + 2 + 138.001 + -379.872 + + + + 1 + 649.688 + 613.375 + + + + 2 + 387.188 + 775.25 + + + + 1 + 395.938 + 1090.25 + + + + 2 + 138.015 + -379.882 + + + + 1 + 400.312 + 735.875 + + + + 1 + 907.812 + 1029 + + + + 1 + 404.688 + 854 + + + + 1 + 729.167 + 105.875 + + + + 1 + 111.766 + -379.879 + + + + 1 + 503.125 + 700.875 + + + + 1 + 454.792 + 775.25 + + + + 1 + 448.438 + 1024.62 + + + + 2 + 138.013 + -379.884 + + + + 1 + 402.5 + 705.25 + + + + 1 + 107.188 + 823.375 + + + + 1 + 1238.12 + 687.75 + + + + 2 + 253.75 + 766.5 + + + + 1 + 111.763 + -379.884 + + + + 1 + 872.812 + 1037.75 + + + + 2 + 457.917 + 862.75 + + + + 1 + 1284.06 + 652.75 + + + + 1 + 111.768 + -379.882 + + + + 2 + 110.833 + 858.375 + + + + 2 + 918.75 + 840.875 + + + + 2 + 667.188 + 630.875 + + + + 2 + 138.018 + -379.882 + + + + 2 + 387.917 + 928.375 + + + + 1 + 201.25 + 924 + + + + 2 + 698.542 + 92.75 + + + + 2 + 424.375 + 687.75 + + + + 1 + 111.749 + -379.874 + + + + 4 + 382.812 + 1094.62 + + + + 1 + 667.188 + 644 + + + + 2 + 472.5 + 171.5 + + + + 2 + 249.375 + 206.5 + + + + 2 + 138.013 + -379.879 + + + + 2 + 395.938 + 1090.25 + + + + 1 + 535.938 + 574 + + + + 2 + 110.833 + 823.375 + + + + 1 + 420 + 679 + + + + 2 + 138.003 + -379.88 + + + + 2 + 150.938 + 915.25 + + + + 1 + 1238.12 + 683.375 + + + + 1 + 938.438 + 582.75 + + + + 1 + 875 + 1011.5 + + + + 1 + 111.76 + -379.883 + + + + 3 + 146.562 + 893.375 + + + + 2 + 938.438 + 569.625 + + + + 2 + 1238.12 + 670.25 + + + + 2 + 468.125 + 66.5 + + + + 2 + 137.998 + -379.866 + + + + 1 + 553.438 + 44.625 + + + + 2 + 448.438 + 1011.5 + + + + 2 + 1006.25 + 543.375 + + + + 1 + 577.5 + 731.5 + + + + 1 + 111.75 + -379.881 + + + + 3 + 382.812 + 1094.62 + + + + 2 + 125.417 + 858.375 + + + + 2 + 428.75 + 1068.38 + + + + 2 + 555.625 + 263.375 + + + + 1 + 111.751 + -379.878 + + + + 2 + 533.75 + 75.25 + + + + 1 + 1172.5 + 447.125 + + + + 2 + 936.25 + 425.25 + + + + 1 + 148.75 + 320.25 + + + + 2 + 138.016 + -379.879 + + + + 3 + 463.75 + 722.75 + + + + 2 + 1172.5 + 434 + + + + 1 + 822.5 + 1037.75 + + + + 1 + 420 + 171.5 + + + + 2 + 137.986 + -379.884 + + + + 1 + 159.688 + 805.875 + + + + 2 + 1278.96 + 486.5 + + + + 2 + 535.938 + 560.875 + + + + 2 + 463.75 + 679 + + + + 1 + 111.751 + -379.871 + + + + 4 + 146.562 + 893.375 + + + + 2 + 341.25 + 1072.75 + + + + 1 + 350 + 1002.75 + + + + 1 + 446.25 + 600.25 + + + + 2 + 138.005 + -379.868 + + + + 2 + 476.875 + 683.375 + + + + 1 + 125.417 + 845.25 + + + + 1 + 488.25 + 127.75 + + + + 2 + 551.25 + 154 + + + + 2 + 137.998 + -379.867 + + + + 2 + 1121.46 + 622.125 + + + + 1 + 446.25 + 692.125 + + + + 2 + 193.958 + 910.875 + + + + 2 + 192.5 + 320.25 + + + + 1 + 111.767 + -379.884 + + + + 1 + 1223.54 + 700.875 + + + + 2 + 201.25 + 910.875 + + + + 2 + 1081.5 + 521.5 + + + + 2 + 336.875 + 508.375 + + + + 2 + 138.01 + -379.883 + + + + 2 + 1227.19 + 670.25 + + + + 1 + 476.875 + 62.125 + + + + 1 + 1081.5 + 534.625 + + + + 1 + 380.625 + 687.75 + + + + 1 + 111.767 + -379.879 + + + + 2 + 759.062 + 149.625 + + + + 2 + 752.5 + 280.875 + + + + 1 + 358.75 + 245.875 + + + + 1 + 111.757 + -379.87 + + + + 1 + 150.938 + 915.25 + + + + 1 + 249.375 + 219.625 + + + + 2 + 490 + 600.25 + + + + 2 + 137.997 + -379.88 + + + + 1 + 1275.31 + 451.5 + + + + 2 + 350 + 989.625 + + + + 1 + 511.875 + 263.375 + + + + 2 + 137.999 + -379.862 + + + + 4 + 463.75 + 722.75 + + + + 2 + 488.25 + 114.625 + + + + 2 + 516.25 + 683.375 + + + + 2 + 138.007 + -379.87 + + + + 1 + 1117.81 + 569.625 + + + + 1 + 698.542 + 79.625 + + + + 2 + 918.75 + 1011.5 + + + + 2 + 796.25 + 504 + + + + 1 + 111.749 + -379.862 + + + + 1 + 1105.42 + 757.75 + + + + 1 + 507.5 + 154 + + + + 2 + 159.688 + 792.75 + + + + 1 + 223.125 + 232.75 + + + + 1 + 111.76 + -379.883 + + + + 1 + 476.875 + 683.375 + + + + 1 + 424.375 + 66.5 + + + + 1 + 348.542 + 1059.62 + + + + 1 + 546.875 + 578.375 + + + + 1 + 762.708 + 180.25 + + + + 2 + 138.01 + -379.883 + + + + 1 + 463.75 + 683.375 + + + + 2 + 348.542 + 1072.75 + + + + 1 + 603.75 + 578.375 + + + + 2 + 1133.12 + 727.125 + + + + 1 + 111.76 + -379.884 + + + + 1 + 253.75 + 779.625 + + + + 2 + 621.25 + 731.5 + + + + 2 + 446.25 + 679 + + + + 2 + 137.991 + -379.88 + + + + 1 + 1188.54 + 718.375 + + + + 2 + 402.5 + 245.875 + + + + 1 + 382.083 + 805.875 + + + + 1 + 446.25 + 79.625 + + + + 2 + 138.01 + -379.884 + + + + 2 + 1205.31 + 700.875 + + + + 1 + 398.125 + 92.75 + + + + 2 + 1284.06 + 639.625 + + + + 2 + 137.999 + -379.874 + + + + 1 + 683.958 + 92.75 + + + + 1 + 110.833 + 810.25 + + + + 2 + 441.875 + 92.75 + + + + 1 + 111.741 + -379.88 + + + + 3 + 1098.12 + 460.25 + + + + 1 + 118.125 + 871.5 + + + + 1 + 341.25 + 1085.88 + + + + 1 + 1106.88 + 412.125 + + + + 1 + 111.747 + -379.88 + + + + 1 + 293.125 + 508.375 + + + + 1 + 193.958 + 897.75 + + + + 4 + 1098.12 + 460.25 + + + + 2 + 956.667 + 919.625 + + + + 2 + 382.083 + 819 + + + + 1 + 651.875 + 875.875 + + + + 1 + 441.875 + 259 + + + + 2 + 167.708 + 280.875 + + + + 2 + 272.708 + 884.625 + + + + 2 + 695.625 + 875.875 + + + + 1 + 354.367 + 775.25 + + + + 1 + 889.583 + 998.375 + + + + 1 + 1286.25 + 499.625 + + + + 2 + 555.625 + 202.125 + + + + 2 + 328.133 + 775.25 + + + + 1 + 328.125 + 1055.25 + + + + 2 + 1128.75 + 622.125 + + + + 1 + 520.625 + 477.75 + + + + 3 + 360.938 + 1094.62 + + + + 1 + 1192.19 + 731.5 + + + + 1 + 261.042 + 451.5 + + + + 2 + 564.375 + 477.75 + + + + 4 + 360.938 + 1094.62 + + + + 2 + 161.875 + 915.25 + + + + 1 + 931.875 + 854 + + + + 1 + 455 + 770.875 + + + + 1 + 616.875 + 57.75 + + + + 1 + 697.812 + 425.25 + + + + 1 + 546.875 + 62.125 + + + + 1 + 170.625 + 245.875 + + + + 2 + 1106.88 + 412.125 + + + + 1 + 1128.75 + 635.25 + + + + 2 + 546.875 + 75.25 + + + + 2 + 214.375 + 245.875 + + + + 2 + 441.875 + 259 + + + + 1 + 180.833 + 766.5 + + + + 1 + 732.812 + 355.25 + + + + 2 + 1085 + 521.5 + + + + 1 + 659.167 + 53.375 + + + + 2 + 746.667 + 731.5 + + + + 3 + 433.125 + 171.5 + + + + 1 + 313.542 + 762.125 + + + + 1 + 651.875 + 705.25 + + + + 1 + 1245.42 + 670.25 + + + + 1 + 763.438 + 294 + + + + 1 + 972.708 + 770.875 + + + + 2 + 644.583 + 66.5 + + + + 1 + 310.625 + 228.375 + + + + 2 + 118.125 + 858.375 + + + + 1 + 1253.44 + 425.25 + + + + 1 + 167.708 + 267.75 + + + + 1 + 511.875 + 202.125 + + + + 2 + 169.167 + 915.25 + + + + 1 + 352.188 + 1072.75 + + + + 2 + 850.938 + 591.5 + + + + 1 + 520.625 + 44.625 + + + + 2 + 313.542 + 775.25 + + + + 1 + 1013.54 + 543.375 + + + + 1 + 395.208 + 674.625 + + + + 2 + 564.375 + 44.625 + + + + 2 + 763.438 + 280.875 + + + + 2 + 1262.19 + 639.625 + + + + 2 + 972.708 + 784 + + + + 2 + 730.625 + 932.75 + + + + 1 + 1301.56 + 617.75 + + + + 2 + 1143.33 + 674.625 + + + + 2 + 854.583 + 1020.25 + + + + 1 + 169.167 + 928.375 + + + + 2 + 455 + 259 + + + + 4 + 433.125 + 171.5 + + + + 2 + 732.812 + 342.125 + + + + 1 + 161.875 + 902.125 + + + + 2 + 844.375 + 1020.25 + + + + 1 + 1098.12 + 460.25 + + + + 2 + 651.875 + 692.125 + + + + 1 + 249.375 + 753.375 + + + + 1 + 686.875 + 932.75 + + + + 1 + 417.812 + 1068.38 + + + + 2 + 395.208 + 687.75 + + + + 2 + 249.375 + 766.5 + + + + 1 + 1076.25 + 757.75 + + + + 2 + 414.167 + 1090.25 + + + + 1 + 1157.92 + 661.5 + + + + 1 + 774.375 + 504 + + + + 2 + 1060.5 + 521.5 + + + + 2 + 1157.92 + 674.625 + + + + 1 + 231.875 + 206.5 + + + + 2 + 352.188 + 1072.75 + + + + 2 + 697.812 + 412.125 + + + + 1 + 844.375 + 460.25 + + + + 1 + 1139.69 + 622.125 + + + + 2 + 1286.25 + 486.5 + + + + 2 + 354.375 + 228.375 + + + + 1 + 541.042 + 189 + + + + 2 + 1257.08 + 451.5 + + + + 1 + 272.708 + 871.5 + + + + 1 + 630 + 66.5 + + + + 2 + 662.812 + 66.5 + + + + 2 + 1192.19 + 718.375 + + + + 2 + 888.125 + 460.25 + + + + 2 + 541.042 + 202.125 + + + + 2 + 1301.56 + 604.625 + + + + 2 + 411.25 + 556.5 + + + + 2 + 889.583 + 1011.5 + + + + 2 + 180.833 + 779.625 + + + + 2 + 503.125 + 447.125 + + + + 2 + 328.125 + 1042.12 + + + + 2 + 659.167 + 66.5 + + + + 2 + 196.875 + 368.375 + + + + 2 + 400.312 + 819 + + + + 1 + 142.917 + 880.25 + + + + 1 + 927.5 + 959 + + + + 2 + 931.875 + 840.875 + + + + 2 + 195.417 + 779.625 + + + + 2 + 142.917 + 893.375 + + + + 2 + 476.875 + 722.75 + + + + 1 + 182.292 + 355.25 + + + + 1 + 934.792 + 569.625 + + + + 1 + 832.708 + 578.375 + + + + 1 + 424.375 + 722.75 + + + + 1 + 691.25 + 105.875 + + + + 2 + 129.062 + 858.375 + + + + 2 + 832.708 + 591.5 + + + + 1 + 494.375 + 547.75 + + + + 1 + 854.583 + 1007.12 + + + + 1 + 128.333 + 893.375 + + + + 1 + 1159.38 + 740.25 + + + + 2 + 660.625 + 595.875 + + + + 2 + 691.25 + 92.75 + + + + 1 + 934.792 + 989.625 + + + + 1 + 320.833 + 845.25 + + + + 2 + 568.75 + 705.25 + + + + 1 + 956.667 + 906.5 + + + + 2 + 938.438 + 959 + + + + 2 + 399.583 + 1090.25 + + + + 1 + 455 + 49 + + + + 1 + 400.312 + 832.125 + + + + 2 + 290.938 + 884.625 + + + + 1 + 616.875 + 810.25 + + + + 1 + 500.5 + 127.75 + + + + 1 + 461.562 + 875.875 + + + + 2 + 660.625 + 810.25 + + + + 1 + 1284.06 + 565.25 + + + + 1 + 850.938 + 604.625 + + + + 2 + 805 + 1011.5 + + + + 1 + 998.958 + 530.25 + + + + 2 + 1297.92 + 604.625 + + + + 2 + 182.292 + 368.375 + + + + 1 + 360.938 + 1002.75 + + + + 1 + 616.875 + 595.875 + + + + 1 + 236.25 + 766.5 + + + + 2 + 500.5 + 114.625 + + + + 2 + 373.333 + 928.375 + + + + 1 + 525 + 705.25 + + + + 1 + 729.167 + 342.125 + + + + 1 + 746.667 + 718.375 + + + + 2 + 439.688 + 1068.38 + + + + 1 + 231.875 + 464.625 + + + + 2 + 261.042 + 464.625 + + + + 1 + 451.468 + 773.465 + + + + 2 + 461.562 + 862.75 + + + + 2 + 555.625 + 329 + + + + 1 + 385 + 569.625 + + + + 1 + 369.688 + 928.375 + + + + 1 + 306.25 + 788.375 + + + + 2 + 971.25 + 959 + + + + 2 + 315 + 508.375 + + + + 2 + 741.562 + 280.875 + + + + 2 + 748.125 + 149.625 + + + + 2 + 560 + 399 + + + + 1 + 1264.38 + 464.625 + + + + 2 + 333.958 + 1072.75 + + + + 1 + 290.938 + 897.75 + + + + 1 + 800.625 + 1020.25 + + + + 1 + 1284.06 + 525.875 + + + + 1 + 761.25 + 1011.5 + + + + 1 + 1249.06 + 683.375 + + + + 2 + 1280.42 + 639.625 + + + + 1 + 511.875 + 329 + + + + 2 + 360.938 + 989.625 + + + + 2 + 396.667 + 819 + + + + 2 + 315 + 219.625 + + + + 1 + 379.167 + 1107.75 + + + + 1 + 450.627 + 771.118 + + + + 2 + 739.375 + 547.75 + + + + 2 + 379.167 + 1094.62 + + + + 2 + 383.542 + 775.25 + + + + 2 + 387.917 + 245.875 + + + + 1 + 498.75 + 114.625 + + + + 2 + 1302.29 + 525.875 + + + + 2 + 457.78 + 767.49 + + + + 2 + 649.688 + 595.875 + + + + 1 + 402.5 + 259 + + + + 1 + 368.958 + 762.125 + + + + 2 + 995.312 + 543.375 + + + + 2 + 936.25 + 880.25 + + + + 1 + 516.25 + 399 + + + + 2 + 998.958 + 543.375 + + + + 1 + 1216.25 + 420.875 + + + + 2 + 539.583 + 705.25 + + + + 2 + 538.125 + 547.75 + + + + 2 + 233.333 + 893.375 + + + + 2 + 1235.21 + 425.25 + + + + 2 + 428.75 + 259 + + + + 1 + 905.625 + 989.625 + + + + 2 + 573.125 + 75.25 + + + + 2 + 943.542 + 880.25 + + + + 2 + 1249.06 + 670.25 + + + + 1 + 463.75 + 722.75 + + + + 2 + 542.5 + 114.625 + + + + 1 + 936.25 + 893.375 + + + + 1 + 399.583 + 1077.12 + + + + 2 + 1287.71 + 565.25 + + + + 1 + 914.375 + 425.25 + + + + 1 + 748.125 + 989.625 + + + + 1 + 1302.29 + 512.75 + + + + 2 + 454.603 + 766.513 + + + + 1 + 358.75 + 556.5 + + + + 1 + 807.188 + 517.125 + + + + 1 + 439.688 + 1081.5 + + + + 1 + 269.062 + 884.625 + + + + 2 + 1120 + 757.75 + + + + 2 + 807.188 + 504 + + + + 2 + 1159.38 + 727.125 + + + + 2 + 247.917 + 893.375 + + + + 2 + 498.75 + 49 + + + + 1 + 380.625 + 259 + + + + 1 + 373.333 + 915.25 + + + + 1 + 509.688 + 114.625 + + + + 1 + 153.125 + 368.375 + + + + 1 + 428.75 + 245.875 + + + + 2 + 368.958 + 775.25 + + + + 2 + 533.75 + 75.25 + + + + 2 + 818.125 + 504 + + + + 2 + 385 + 556.5 + + + + 2 + 320.833 + 858.375 + + + + 1 + 557.82 + 644.584 + + + + 2 + 770 + 976.5 + + + + 2 + 380.625 + 245.875 + + + + 1 + 233.333 + 880.25 + + + + 2 + 592.812 + 565.25 + + + + 2 + 673.75 + 66.5 + + + + 1 + 315 + 521.5 + + + + 1 + 748.125 + 162.75 + + + + 1 + 459.375 + 447.125 + + + + 1 + 872.812 + 1033.38 + + + + 2 + 212.917 + 416.5 + + + + 2 + 958.125 + 425.25 + + + + 2 + 658.438 + 486.5 + + + + 1 + 212.917 + 403.375 + + + + 2 + 949.375 + 989.625 + + + + 1 + 554.167 + 547.75 + + + + 1 + 526.458 + 744.625 + + + + 1 + 726.25 + 976.5 + + + + 2 + 606.667 + 731.5 + + + + 2 + 526.458 + 757.75 + + + + 1 + 271.25 + 219.625 + + + + 1 + 488.542 + 819 + + + + 1 + 788.958 + 490.875 + + + + 1 + 520.625 + 75.25 + + + + 1 + 755.417 + 963.375 + + + + 2 + 320.833 + 1042.12 + + + + 2 + 275.625 + 464.625 + + + + 1 + 716.042 + 919.625 + + + + 1 + 695.625 + 547.75 + + + + 1 + 549.792 + 31.5 + + + + 2 + 275.625 + 206.5 + + + + 2 + 554.167 + 560.875 + + + + 1 + 1015 + 766.5 + + + + 1 + 640.208 + 473.375 + + + + 2 + 1058.75 + 766.5 + + + + 2 + 710.208 + 547.75 + + + + 2 + 549.792 + 44.625 + + + + 2 + 716.042 + 932.75 + + + + 2 + 418.542 + 718.375 + + + + 1 + 511.875 + 757.75 + + + + 2 + 640.208 + 486.5 + + + + 1 + 253.75 + 477.75 + + + + 2 + 791.875 + 180.25 + + + + 2 + 417.812 + 1090.25 + + + + 1 + 135.625 + 906.5 + + + + 2 + 472.5 + 350.875 + + + + 1 + 320.833 + 1029 + + + + 2 + 450.625 + 722.75 + + + + 2 + 555.625 + 757.75 + + + + 1 + 763.438 + 626.5 + + + + 2 + 646.042 + 810.25 + + + + 1 + 402.5 + 127.75 + + + + 2 + 523.542 + 547.75 + + + + 1 + 606.667 + 718.375 + + + + 1 + 1264.38 + 486.5 + + + + 1 + 523.542 + 534.625 + + + + 1 + 710.208 + 534.625 + + + + 1 + 428.75 + 350.875 + + + + 1 + 163.333 + 307.125 + + + + 1 + 748.125 + 180.25 + + + + 1 + 387.917 + 232.75 + + + + 2 + 774.375 + 280.875 + + + + 1 + 542.5 + 57.75 + + + + 2 + 301.875 + 884.625 + + + + 2 + 542.5 + 44.625 + + + + 1 + 1085 + 460.25 + + + + 1 + 907.812 + 1024.62 + + + + 1 + 322.292 + 495.25 + + + + 1 + 258.125 + 884.625 + + + + 1 + 649.688 + 609 + + + + 2 + 763.438 + 613.375 + + + + 2 + 446.25 + 127.75 + + + + 2 + 907.812 + 1011.5 + + + + 1 + 342.708 + 976.5 + + + + 1 + 166.25 + 779.625 + + + + 2 + 488.542 + 805.875 + + + + 1 + 199.062 + 792.75 + + + + 2 + 129.062 + 823.375 + + + + 2 + 306.25 + 775.25 + + + + 1 + 840 + 1020.25 + + + + 1 + 943.542 + 867.125 + + + + 2 + 199.062 + 779.625 + + + + 2 + 1286.25 + 451.5 + + + + 1 + 646.042 + 797.125 + + + + 2 + 475.417 + 600.25 + + + + 1 + 700 + 342.125 + + + + 1 + 990.938 + 797.125 + + + + 2 + 651.875 + 66.5 + + + + 2 + 743.75 + 342.125 + + + + 2 + 990.938 + 784 + + + + 1 + 417.812 + 1103.38 + + + + 1 + 905.625 + 569.625 + + + + 2 + 748.125 + 976.5 + + + + 2 + 322.292 + 508.375 + + + + 2 + 949.375 + 569.625 + + + + 1 + 129.062 + 836.5 + + + + 2 + 339.062 + 858.375 + + + + 2 + 1172.5 + 727.125 + + + + 1 + 475.417 + 587.125 + + + + 1 + 527.188 + 810.25 + + + + 1 + 581.875 + 57.75 + + + + 2 + 342.708 + 989.625 + + + + 2 + 527.188 + 797.125 + + + + 2 + 625.625 + 57.75 + + + + 1 + 651.875 + 79.625 + + + + 1 + 599.375 + 70.875 + + + + 1 + 1242.5 + 451.5 + + + + 1 + 339.062 + 871.5 + + + + 2 + 755.417 + 976.5 + + + + 2 + 525 + 114.625 + + + + 1 + 251.562 + 906.5 + + + + 2 + 253.75 + 464.625 + + + + 2 + 883.75 + 1020.25 + + + + 2 + 1161.56 + 674.625 + + + + 1 + 1008.44 + 412.125 + + + + 2 + 508.958 + 797.125 + + + + 2 + 1008.44 + 399 + + + + 2 + 681.042 + 875.875 + + + + 2 + 163.333 + 320.25 + + + + 2 + 135.625 + 893.375 + + + + 1 + 549.792 + 464.625 + + + + 2 + 790.417 + 1011.5 + + + + 1 + 418.542 + 705.25 + + + + 1 + 681.042 + 862.75 + + + + 1 + 539.583 + 692.125 + + + + 2 + 549.792 + 477.75 + + + + 1 + 450.625 + 709.625 + + + + 1 + 905.625 + 779.625 + + + + 2 + 599.375 + 57.75 + + + + 1 + 391.562 + 941.5 + + + + 2 + 1264.38 + 451.5 + + + + 2 + 391.562 + 928.375 + + + + 1 + 658.438 + 499.625 + + + + 1 + 541.042 + 315.875 + + + + 1 + 728.438 + 560.875 + + + + 2 + 481.25 + 805.875 + + + + 2 + 872.812 + 1020.25 + + + + 1 + 1029.58 + 753.375 + + + + 1 + 557.812 + 718.375 + + + + 2 + 210 + 779.625 + + + + 1 + 212.188 + 924 + + + + 2 + 960.312 + 959 + + + + 2 + 212.188 + 910.875 + + + + 2 + 262.5 + 893.375 + + + + 2 + 826.875 + 766.5 + + + + 2 + 541.042 + 329 + + + + 1 + 984.375 + 543.375 + + + + 2 + 487.812 + 49 + + + + 1 + 1305.94 + 539 + + + + 2 + 1137.5 + 460.25 + + + + 1 + 1109.06 + 770.875 + + + + 2 + 788.958 + 504 + + + + 1 + 1120 + 727.125 + + + + 1 + 960.312 + 932.75 + + + + 2 + 251.562 + 893.375 + + + + 1 + 1181.25 + 420.875 + + + + 2 + 1305.94 + 525.875 + + + + 1 + 463.75 + 114.625 + + + + 1 + 1161.56 + 687.75 + + + + 2 + 1225 + 420.875 + + + + 1 + 481.25 + 792.75 + + + + 2 + 1308.12 + 486.5 + + + + 2 + 721.875 + 119 + + + + 1 + 730.625 + 280.875 + + + + 1 + 508.958 + 784 + + + + 1 + 218.75 + 893.375 + + + + 2 + 905.625 + 792.75 + + + + 1 + 424.375 + 945.875 + + + + 1 + 790.417 + 998.375 + + + + 2 + 1028.12 + 543.375 + + + + 1 + 721.875 + 132.125 + + + + 1 + 227.5 + 766.5 + + + + 2 + 1029.58 + 766.5 + + + + 2 + 468.125 + 945.875 + + + + 2 + 1017.19 + 543.375 + + + + 1 + 111.759 + -379.89 + + + + 1 + 1017.19 + 556.5 + + + + 2 + 138.009 + -379.89 + + + + 2 + 1159.38 + 434 + + + + 1 + 111.756 + -379.878 + + + + 2 + 861.875 + 1020.25 + + + + 2 + 138.013 + -379.878 + + + + 1 + 175 + 294 + + + + 2 + 137.988 + -379.888 + + + + 1 + 518.438 + 167.125 + + + + 2 + 137.987 + -379.887 + + + + 2 + 518.438 + 154 + + + + 2 + 138.006 + -379.881 + + + + 1 + 111.739 + -379.888 + + + + 1 + 111.763 + -379.878 + + + + 1 + 242.812 + 477.75 + + + + 1 + 111.757 + -379.874 + + + + 2 + 1207.5 + 420.875 + + + + 1 + 124.884 + -379.882 + + + + 1 + 369.688 + 259 + + + + 1 + 111.756 + -379.879 + + + + 2 + 369.688 + 245.875 + + + + 2 + 138.007 + -379.876 + + + + 1 + 371.875 + 569.625 + + + + 1 + 1111.25 + 473.375 + + + + 2 + 1111.25 + 460.25 + + + + 1 + 1207.5 + 434 + + + + 1 + 1159.38 + 447.125 + + + + 1 + 415.625 + 272.125 + + + + 2 + 415.625 + 259 + + + + 1 + 533.75 + 215.25 + + + + 2 + 533.75 + 202.125 + + + + 2 + 457.188 + 600.25 + + + + 1 + 164.062 + 381.5 + + + + 1 + 282.188 + 232.75 + + + + 2 + 371.875 + 556.5 + + + + 2 + 282.188 + 219.625 + + + + 2 + 1295 + 525.875 + + + + 2 + 522.812 + 329 + + + + 2 + 164.062 + 368.375 + + + + 1 + 1295 + 539 + + + + 2 + 997.5 + 399 + + + + 1 + 638.75 + 609 + + + + 2 + 159.688 + 320.25 + + + + ab063f40-f3ec-400f-8488-7b04a098b563 + 1-MV-urban--2-sw(1) + + + + a8b0a932-6403-494e-b8df-38f83714db37 + 1-MV-urban--2-sw + + + + + 26111a19-719c-40e1-be0a-a1ee137b2198 + Grafisches Netzelement184 + + + + + aeb9f5fd-f602-7618-0197-7679c03b43d8 + Grafisches Netzelement198 + + + + + cf07c21c-3f8e-5143-9d7c-84853878a9c3 + Grafisches Netzelement161 + + + + + 469f8a82-9bc1-f7e7-70da-9e4ea1eca653 + Grafisches Netzelement183 + + + + + 0a2a751a-4636-9957-82dd-e9a6a052900b + Grafisches Netzelement199 + + + + + 27fed0db-e39d-8669-8915-bdaecbfb8ef3 + Grafisches Netzelement142 + + + + + e06ce811-7a5d-3e53-9f17-f2146cab2f47 + Grafisches Netzelement156 + + + + + bc482d13-7e23-0d1a-c49d-0f124cddf4d3 + Grafisches Netzelement175 + + + + + 4181177c-e483-645f-5dee-03dae27f825f + Grafisches Netzelement160 + + + + + 65b490ba-6d32-6d21-75aa-a33bfa6d5782 + Grafisches Netzelement177 + + + + + a967ba93-b1a0-40d0-c29b-896f2be5983b + Grafisches Netzelement150 + + + + + 351b6e43-c62a-bf02-2ab5-14bda451c03c + Grafisches Netzelement197 + + + + + d9acf335-7127-703e-5fdd-99f3aa86d644 + Grafisches Netzelement157 + + + + + 52952418-bbc9-502e-7f59-06a66d5effdb + Grafisches Netzelement179 + + + + + f9d362ed-88d5-8053-920e-59d23b41de4b + MV3.101 Bus 98 + + + + + c7d77a7c-5946-2cac-5953-15f8efcddf8f + MV3.101 Bus 92 + + + + + 9f65800e-ad15-4a8f-0758-cc1847eb508c + MV3.101 Bus 93 + + + + + b2a18259-a376-11c8-cd0e-3060c3f8f795 + MV3.101 Bus 86 + + + + + bacffe1c-be4f-6ce5-7a87-bbb9954f7617 + MV3.101 Bus 89 + + + + + cfeb4ae1-cbec-e729-0b93-7d71c6357ee0 + MV3.101 Bus 97 + + + + + ba9992c4-9b2b-2b6e-ad2f-c01f70f66199 + MV3.101 Bus 130 + + + + + d4f15a15-935f-3c58-46a9-c5545a2df205 + MV3.101 Bus 88 + + + + + 0311b751-0361-8467-642e-8340a9855616 + MV3.101_Base_Station + + + + + 70c964ee-0327-6e9d-6608-1bc86f7991c5 + MV3.101 Bus 87 + + + + + f1f168d3-e450-a714-ecf6-eaf627b6a061 + MV3.101 Bus 90 + + + + + 6feed50d-d914-243b-7171-8efd7f940ffa + HV1_MV3.101_Substation + + + + + 49f5885f-e43f-71f1-a6a1-6b92afdcf205 + MV3.101 Bus 114 + + + + + b727361d-ac27-03a1-b497-930769d1be49 + MV3.101 Bus 91 + + + + + 79a35081-43dc-818f-73a0-335f24cfeb45 + MV3.101 Bus 96 + + + + + 35600a29-383d-667f-9043-98f03a16bb3f + MV3.101 Bus 95 + + + + + 0f480935-d450-d9fb-fc49-be6d04d4d885 + MV3.101 Bus 94 + + + + + 4d59b354-7a54-01ff-bb38-9424019ed6b0 + MV3.101 Bus 133 + + + + + c5060975-e600-f479-1eb6-8635e309ec63 + MV3.101 Bus 100 + + + + + b05d7d30-a774-e6d5-ab10-f68189d982cc + MV3.101 Bus 127 + + + + + 91c33abc-03ca-9478-2f9e-551eedb002a0 + MV3.101 Bus 109 + + + + + 0223b6b3-6808-3f2e-1770-6fa229590dbf + MV3.101 Bus 111 + + + + + 5a370c51-dc0c-2faf-7a3d-f56e4bcfcb14 + MV3.101 Bus 128 + + + + + 344a6249-3d73-c175-4aa1-3af5182de0c6 + MV3.101 Bus 131 + + + + + 86fc0b77-7028-7372-fb53-234b7623950f + MV3.101 Bus 125 + + + + + 5e46dc58-5e53-c5ef-6d25-defaab3a8ed6 + MV3.101 Bus 140 + + + + + e03339f3-14e4-a4b7-f9c1-0a3527e69748 + MV3.101 Bus 142 + + + + + 31762f72-bdfd-487d-de99-526adfed7e5e + MV3.101 Bus 24 + + + + + f999dfdd-5e69-bcac-365e-e227f2c300d9 + MV3.101 Bus 16 + + + + + f7134b06-b98a-f36d-98bf-f416b5cf14ff + MV3.101 Bus 26 + + + + + 77af9066-e089-19a0-4a52-3e853dbd5613 + MV3.101 Bus 20 + + + + + 6be65a0f-e949-b2a5-09e9-4d0011e18366 + MV3.101 Bus 32 + + + + + 66a0c803-ea5e-9c8c-635f-e7100ca1ea4f + MV3.101 Bus 33 + + + + + 5847325b-a287-25ad-39d9-44ebf8ae3f50 + MV3.101 Bus 34 + + + + + 225d1727-7cf1-1459-c53b-e253a74070dc + MV3.101 Bus 49 + + + + + f3120a72-792f-3d90-d19c-1c420bbcf157 + MV3.101 Bus 50 + + + + + 9b7b19d2-e53a-b02b-71c4-043fc5f717e5 + MV3.101 Bus 39 + + + + + a840d449-645d-0b7f-ade1-f28f178cd945 + MV3.101 Bus 38 + + + + + 1c47b817-fecf-8b08-836e-0f1862643024 + MV3.101 Bus 54 + + + + + ef748f3c-31af-721d-09b4-3ad13246531b + MV3.101 Bus 102_Graph + + + + + a9badc9a-6204-1f38-ba1d-ef571b654cde + MV3.101 Bus 47 + + + + + 4575d804-09de-2afa-678f-945492febe9b + MV3.101 Bus 120_Graph + + + + + f8d3b15b-c343-4874-73b7-f018766d75fa + MV3.101 Bus 40 + + + + + 53fc0885-f419-6582-cff8-6be4a8fb61fd + MV3.101 Bus 118_Graph + + + + + 384c63e0-d9de-acef-e0e4-d16a7b095eb9 + MV3.101 Bus 55 + + + + + 827c5f97-237c-c263-61ab-7538eac1a972 + MV3.101 Bus 100_Graph + + + + + f90dbfaa-4206-2039-aac7-e609582ece6f + MV3.101 Bus 42 + + + + + 337d9a73-e821-f053-cec9-789f376e70fd + MV3.101 Bus 134_Graph + + + + + 808b7bf0-ef4d-21bb-b025-43c9e179cd61 + MV3.101 Bus 41 + + + + + a2cd2a78-225d-3a48-2b1e-8f7aaa06c6a0 + MV3.101 Bus 139_Graph + + + + + 8f63b313-31ec-daaf-fee5-a3642b523506 + MV3.101 Bus 22 + + + + + 4b9569f0-e9bc-6ccd-51c2-ad31cd0bbb8e + MV3.101 Bus 138_Graph + + + + + e283313b-49ce-1fcf-11d1-5ae4249e811c + MV3.101 Bus 27 + + + + + 78c5f594-6a0a-d9bc-efb1-829c080e559a + MV3.101 Bus 132_Graph + + + + + abb9362b-db64-a149-44cc-246d61e666e2 + MV3.101 Bus 135_Graph + + + + + 3267853e-91d4-0dc6-f598-861b068d6b53 + MV3.101 Bus 108_Graph + + + + + c2f10add-7831-7f88-1618-78a97c115e8d + MV3.101 Bus 143 + + + + + 180 + 98b5cccd-7270-ead3-95b6-18508e668fe6 + Grafisches Netzelement260 + + + + + 8a9e890b-0c4d-5545-f6b4-29e8d2751a68 + MV3.101 Bus 143_Graph + + + + + bda9e7cb-e63e-a9b5-ece7-113bcac03afc + MV3.101 Bus 112 + + + + + 3e7d08b2-f43c-9864-3a7a-f8ce161c3958 + MV3.101 Bus 21 + + + + + 34044b80-5d25-cc1b-b7c4-5d8518a54b41 + MV3.101 Bus 106 + + + + + 7e63afa9-a84f-ebea-639b-6514f8a8d643 + MV3.101 Bus 106_Graph + + + + + 9402bdf9-4a26-2672-bea2-b77928b44074 + MV3.101 Bus 51 + + + + + f0e4b4be-f9cc-ca31-0c5a-0dda78ba1c0c + MV3.101 Bus 111_Graph + + + + + 5d7ea668-37d0-308f-073d-fc81701624ba + MV3.101 Bus 103 + + + + + 8311568f-8fd4-b7bf-fe70-c154b8dc6a77 + MV3.101 Bus 48 + + + + + 7a4b8068-09aa-86ff-6a29-b6ded6dce462 + MV3.101 Bus 125_Graph + + + + + ac815d94-1dab-a712-7baa-241b7d57e6ef + MV3.101 Bus 28 + + + + + 9b28ccfa-d91f-c655-c46b-acc2c8bbfd42 + MV3.101 Bus 126_Graph + + + + + dcb24ecd-5929-8b7d-6067-bb5b3b7fc92d + MV3.101 Bus 30 + + + + + 566baf18-ed22-2aec-bcb8-0b87f018abaa + MV3.101 Bus 122 + + + + + 0b03269a-408e-0244-a9d1-29db53c6ba59 + MV3.101 Bus 115_Graph + + + + + 1f70277a-320a-4138-3154-dc9aafda05df + MV3.101 Bus 74 + + + + + 75826f14-0dbe-eec2-a3d9-51b4f377aed0 + MV3.101 Bus 126 + + + + + 536433e5-6363-0925-a7d7-f91d00f77591 + MV3.101 Bus 60 + + + + + b473f167-fd49-8a8a-6691-f6e5ca7f63f2 + MV3.101 Bus 118 + + + + + e90303ea-f91d-8f08-de9c-453e30edcd11 + MV3.101 Bus 85 + + + + + 3cfc769f-cfa4-adf9-3838-f0bd27247bd4 + MV3.101 Bus 113 + + + + + b8cefe72-e57b-cd59-8e51-796d866ecdc9 + MV3.101 Bus 104 + + + + + f2316bb5-8bd8-81fc-6deb-e23e5aae7b33 + MV3.101 Bus 58 + + + + + bacc99d9-cf09-f50e-ba33-abb0a4fa10a9 + MV3.101 Bus 140_Graph + + + + + 491c2334-ba93-46ad-9b03-2aad63acf4f2 + MV3.101 Bus 101 + + + + + 5c013df1-4de2-6970-2d65-e1a85c3702d3 + MV3.101 Bus 70 + + + + + b1612711-b789-020a-42fc-05c5f745e38a + MV3.101 Bus 104_Graph + + + + + 1b530302-ac88-165e-1ae4-2bb0bd6018ee + MV3.101 Bus 102 + + + + + 64729074-c7a9-a5fb-a043-61fd12ad6c41 + MV3.101 Bus 84 + + + + + ddf11b20-97ed-563d-2add-1e8ece3426ac + MV3.101 Bus 120 + + + + + 451c20a9-ae8e-c3c2-c080-d872557615ab + MV3.101 Bus 79 + + + + + 296cd807-e1e6-6783-1658-3cff5d2f0ada + MV3.101 Bus 137 + + + + + eeeaae5e-dc0f-db62-a421-a37be3dda0b3 + Grafisches Netzelement195 + + + + + 99a12654-4763-27f3-612e-e33c3c0f9569 + MV3.101 Bus 59 + + + + + 75564fea-26aa-7f6b-5d00-23eb623a2532 + MV3.101 Bus 135 + + + + + 299548f3-bbe4-dca1-e8d5-4b72fbca3c0f + Grafisches Netzelement143 + + + + + f769d9a6-e839-51cd-0e30-890954c4d0d5 + MV3.101 Bus 75 + + + + + 0b13a633-94f8-ea25-c2b4-59483d7581a0 + MV3.101 Bus 116 + + + + + 495bb9bf-6de0-694a-0ff9-b0c8c05c4c99 + MV3.101 Bus 66 + + + + + e62d6f89-4f56-27b8-0234-0481f7c4d276 + Grafisches Netzelement155 + + + + + 2291343e-0918-d4f8-365d-00c29e0f282b + MV3.101 Bus 136 + + + + + ff7d16f9-e419-0112-c701-1a503d1f5ccb + MV3.101 Bus 69 + + + + + 8d830770-23d1-a013-3420-836f963433d2 + MV3.101 Bus 107 + + + + + 0bf7abbb-f90e-8c19-5ff8-1603ecee0787 + Grafisches Netzelement263 + + + + + 510bbca2-2a1b-8297-29cd-368d061096ed + MV3.101 Bus 71 + + + + + 77e7ba48-f7e6-b0eb-c10d-f96810d3f0ab + MV3.101 Bus 119 + + + + + dab413d9-6668-e809-6158-ac1906a1e40a + Grafisches Netzelement269 + + + + + 2b661050-a9d8-5718-1a21-6e6c5af8d8b8 + MV3.101 Bus 77 + + + + + 655d8fbc-1698-c4a8-c006-1163eeffee67 + Grafisches Netzelement265 + + + + + 9b14358a-1407-1eeb-4caa-b70e613cf449 + MV3.101 Bus 121 + + + + + 505131b0-4f2f-37c1-3df4-12c63283459b + MV3.101 Bus 76 + + + + + bd687e6e-c563-8ec3-4fc6-d54ca9ed141a + Grafisches Netzelement273 + + + + + 2ad597f1-218f-b986-b142-c7585d359a09 + MV3.101 Bus 129 + + + + + 9d9e41f0-a609-1e30-a740-1db9bfea2866 + MV3.101 Bus 64 + + + + + 751b2492-ef99-d46c-1f21-d0015019cf95 + MV3.101 Bus 124 + + + + + 093f39b9-f8aa-2a97-de47-81fa9a0e0d13 + Grafisches Netzelement264 + + + + + 2cab2d62-aeef-d607-c62b-6eb2b5851c43 + MV3.101 Bus 62 + + + + + 04098dbe-e836-a736-4b7e-b6c99ffb492d + Grafisches Netzelement148 + + + + + 2d7f70bd-d8a9-c76a-9022-3ef1ba2aa132 + MV3.101 Bus 99 + + + + + 7d05df38-6e9e-f04a-c497-94361b593e4b + MV3.101 Bus 67 + + + + + f21395c8-32a4-d121-9cf0-48e2ebac79ac + Grafisches Netzelement190 + + + + + 04368e4c-c433-ba17-a21a-2b263edb7b1e + MV3.101 Bus 141 + + + + + 90f0fb83-cbfa-b464-37cb-6e7716e17462 + Grafisches Netzelement628 + + + + + 6af68c48-b7a6-d33f-0ab2-18a1c9ab23f3 + MV3.101 Bus 61 + + + + + cb6a7d3a-ed48-4ae0-ed61-3c1ad884a0a6 + Grafisches Netzelement154 + + + + + 3bd7ab40-3dfa-9842-e3d7-4480ebca13f8 + MV3.101 Bus 105 + + + + + 237f6244-4cb2-33b9-c6fc-32f1c6222daf + MV3.101 Bus 82 + + + + + 6958da76-31f3-b265-dee2-614bda091243 + Grafisches Netzelement639 + + + + + 0d2336df-89c8-6674-feed-3732c7222d0a + Grafisches Netzelement233 + + + + + 16dcab2c-2b8d-061b-0515-0761437456dd + MV3.101 Bus 63 + + + + + 77965e12-7fbc-5519-3695-cc0a8d3d00df + Grafisches Netzelement647 + + + + + 39cc1e3b-bc87-2363-9f07-c348c811f85d + Grafisches Netzelement180 + + + + + a0412404-3b91-e8a6-b47c-d89ae85dcd98 + MV3.101 Bus 81 + + + + + 7d6f0371-05d2-3be1-210e-291ea1b5d30b + Grafisches Netzelement650 + + + + + c80ad40e-60d1-003b-860f-25f9b984ae9f + Grafisches Netzelement243 + + + + + 6570f659-056b-1c07-827f-7bc0438f6ee7 + MV3.101 Bus 139 + + + + + 81baeccd-fb5b-12cc-2639-ff830b87ec49 + Grafisches Netzelement686 + + + + + 6b302d3d-3465-32ce-2f72-158f131da820 + Grafisches Netzelement222 + + + + + 8b4b8452-a43c-b9b6-5bab-148186143966 + MV3.101 Bus 134 + + + + + 248a453e-beae-6bdb-2785-17a5509297d3 + Grafisches Netzelement671 + + + + + 438ed6b7-ff8e-b941-ce16-7e8d8baa83d0 + Grafisches Netzelement231 + + + + + bf987bb9-fb7d-8127-a585-b593e5fa83d8 + MV3.101 Bus 78 + + + + + 5a19bca7-2933-9d9a-04e1-7d2be5c0c72b + MV3.101 Bus 123 + + + + + 5718c4b0-ecaa-1029-829f-a0a8cde2c028 + Grafisches Netzelement631 + + + + + c7c9e614-466b-3382-d7cc-9a39f16607de + Grafisches Netzelement226 + + + + + 3b694924-8e6e-9bcc-a16c-22db51397621 + MV3.101 Bus 80 + + + + + 30b5455c-061b-a730-d4a8-d38ea43dcd55 + MV3.101 Bus 110 + + + + + 98118a77-eb2d-f86e-39e1-a3a6f8a41348 + Grafisches Netzelement669 + + + + + 141367ed-407d-1bc5-3d84-cbc557c3381e + Grafisches Netzelement256 + + + + + a5ad1214-e804-306d-b6c7-8132968a3761 + MV3.101 Bus 83 + + + + + bc0177eb-7bda-3268-1173-579764d2c9ca + MV3.101 Bus 115 + + + + + cc5ecece-8094-e08b-4273-202f273a6d81 + Grafisches Netzelement511 + + + + + a299319f-82f1-fab8-80fa-f46c88f6edc3 + Grafisches Netzelement189 + + + + + c116c016-d068-68ed-f5ff-bc744a6b1ac5 + MV3.101 Bus 65 + + + + + c8da12d5-d0f9-a477-51d0-3a95f3cf3173 + MV3.101 Bus 57 + + + + + 58111bf7-e5d6-6c46-184b-e6973849e74b + Grafisches Netzelement675 + + + + + 522ad6ab-37ac-739c-6fac-74a28b415464 + Grafisches Netzelement227 + + + + + 03e2a738-6b0b-c3f2-277e-14e773d32fb0 + MV3.101 Bus 68 + + + + + 2f9929ce-e091-0771-b1b2-4c4735dc59f5 + MV3.101 Bus 11 + + + + + 3ce3607c-7f95-0e20-871c-ff6625d750bf + Grafisches Netzelement648 + + + + + 836b1cf4-0617-4593-82bc-e4afeffe4922 + Grafisches Netzelement252 + + + + + d59f3e40-991b-a0db-7c93-4252e4d5d8ef + Grafisches Netzelement267 + + + + + fb063c03-500d-c000-5e95-042e4196bd29 + MV3.101 Bus 29 + + + + + bf8d9906-222e-9eaa-9625-da7f6e2d588e + Grafisches Netzelement223 + + + + + 180 + 63ea48dc-dc5a-b6b5-e7ea-c66c69a20506 + Grafisches Netzelement673 + + + + + a2fe6ed0-8a0c-2692-de77-7b812fd02c91 + MV3.101 Bus 96_Graph + + + + + e828ff16-afb3-0be7-62fa-edc9a2b2b257 + MV3.101 Bus 138 + + + + + ba176128-91e4-985f-6f9a-710aaba495f0 + Grafisches Netzelement228 + + + + + 4660f331-2e84-8723-faab-9dc546062516 + Grafisches Netzelement672 + + + + + 5ca782a7-04bb-3708-9f30-3005520ce145 + Grafisches Netzelement270 + + + + + 45718fd3-edf1-c310-153f-2dd18cb1f6e7 + MV3.101 Bus 56 + + + + + 3d1ff8c3-3e5f-54af-13c7-76c8e48dfd74 + Grafisches Netzelement244 + + + + + 019f99d1-9d75-e7fd-4adb-db87e684ca66 + Grafisches Netzelement536 + + + + + 0b33e47b-2712-df44-165d-986e4f9f6ff1 + MV3.101 Bus 92_Graph + + + + + 5094369e-88bb-497a-dd6b-53e08371364a + MV3.101 Bus 43 + + + + + f2ddb85b-d1a1-0558-5409-7435e9257565 + Grafisches Netzelement249 + + + + + 731d08c9-0e93-a288-7248-3ce515746bd9 + Grafisches Netzelement489 + + + + + 0294e2b7-334a-2fad-0230-3a8b5f4c723a + MV3.101 Bus 97_Graph + + + + + 17636d7a-cb42-3bfe-27fd-8b2995a07a66 + MV3.101 Bus 108 + + + + + fe0f2719-be6e-f942-9efe-216eb99254cb + Grafisches Netzelement207 + + + + + 8b300875-8d9a-7d56-92a3-7cc8b22422fe + MV3.101 Bus 72 + + + + + 180 + e0465254-ee85-5ebb-f00e-5b902734fe8e + Grafisches Netzelement658 + + + + + 49e961fe-a808-c247-e7bb-54e993961e35 + MV3.101 Bus 117 + + + + + 6ffc46b8-e7c3-55cf-2ca0-af70322a30e4 + Grafisches Netzelement255 + + + + + 3aa70dbb-a8a0-3e3d-2819-c171e8f75b78 + Grafisches Netzelement268 + + + + + becf21fd-0514-4708-bd3f-21b04c360a24 + MV3.101 Bus 132 + + + + + d8bc79be-3750-49dc-76d3-bfc1faf71bcf + Grafisches Netzelement681 + + + + + 0f92b429-b55c-2338-6aac-cff45fb4ddb3 + Grafisches Netzelement203 + + + + + 92b53559-1691-2c5e-6839-22354f7bd4bf + MV3.101 Bus 14 + + + + + c0fde7ba-31ca-9448-4df3-268da5357486 + MV3.101 Bus 98_Graph + + + + + 180 + 43037352-6373-4133-de24-c3fa7fafa111 + Grafisches Netzelement509 + + + + + 3753da32-462c-a8a2-5d3e-a85aa8b656f3 + Grafisches Netzelement224 + + + + + c49b3b13-fc09-73b1-1c7d-d5d1f9d2bbc5 + MV3.101 Bus 53 + + + + + 7680f98f-cad2-4f45-0532-bc001ec38cda + MV3.101 Bus 94_Graph + + + + + 9ab38a0f-6c3b-e8d5-2a3c-57fab67b093e + Grafisches Netzelement627 + + + + + 22c07c24-242f-9a5a-139a-c67678be640e + Grafisches Netzelement225 + + + + + ef2fc0c6-15fc-da86-fdd2-040305ccacb1 + MV3.101 Bus 17 + + + + + d2ff9788-e5b0-f907-1c3e-f0b94e6f74c3 + Grafisches Netzelement266 + + + + + b2f31f3e-6bcc-ecb6-e592-65a138f99744 + Grafisches Netzelement684 + + + + + fdcea267-8008-bd87-d021-47d400d47898 + Grafisches Netzelement214 + + + + + d750f5fb-21f8-daea-1d01-bb3c7393f8ef + MV3.101 Bus 45 + + + + + 8d26f401-d45e-8990-4246-6cb82cdf5677 + MV3.101 Bus 87_Graph + + + + + 137772b0-815d-4395-0d9d-04a0dd75a00b + Grafisches Netzelement653 + + + + + 54989a27-d522-8bf5-795b-023828434c43 + Grafisches Netzelement245 + + + + + 3754b845-aef9-c6b5-8924-293f724310f7 + MV3.101 Bus 44 + + + + + 0760f6e9-f68f-299c-1581-a1af91b933f7 + MV3.101 Bus 73 + + + + + 8553065b-fd9b-38c2-55a8-7fe3d6eabd35 + Grafisches Netzelement543 + + + + + 1c46b664-6365-6030-7725-29ef816f2fe6 + Grafisches Netzelement253 + + + + + 264b2641-a209-0117-4105-9fb8a0e85007 + MV3.101 Bus 12 + + + + + c9e897c3-507f-e8e1-f78e-930ed1a38e91 + Grafisches Netzelement271 + + + + + 424ba598-8a1b-433f-cced-84c0c20f28d4 + Grafisches Netzelement505 + + + + + b6d4eac7-8bf2-1edc-f70f-3b1c33c146c9 + Grafisches Netzelement250 + + + + + 8fcb3cdd-fd6f-9754-1f6c-e17b4c10f2b3 + MV3.101 Bus 37 + + + + + d3872e67-d97a-f22d-3ef7-537840e7012f + MV3.101 Bus 86_Graph + + + + + 180 + 8877a6f6-ae86-35a4-2242-643cd40004da + Grafisches Netzelement524 + + + + + 148aba49-3a1c-cc4c-ab74-fb060dcc933f + Grafisches Netzelement208 + + + + + 02b907bc-e000-fc97-69fa-c0b73aa9b745 + MV3.101 Bus 36 + + + + + 1d02e29a-54ab-c029-fcfa-f388e56d7165 + MV3.101 Bus 90_Graph + + + + + 001c22a1-1e2e-08ec-facd-7a0a8d0bbb08 + Grafisches Netzelement508 + + + + + 9b69aed0-1d61-34b1-8610-d8dbd1e13c70 + Grafisches Netzelement206 + + + + + 9e7d301e-d6c3-68a7-1701-ba93b55c3f98 + MV3.101 Bus 31 + + + + + 37d2481f-e5e6-6247-4238-c9bacf2700e7 + MV3.101 Bus 91_Graph + + + + + 13fb8c7c-9966-96aa-9f56-54818368359c + Grafisches Netzelement493 + + + + + 092edb43-b86a-e7b7-fcd9-87add8dbe1b1 + Grafisches Netzelement216 + + + + + 8a5f914a-6fd3-1c59-d183-5eca8ee81c7a + MV3.101 Bus 95_Graph + + + + + c40afc2e-dc34-dccf-1df8-f17dc632f3d9 + MV3.101 Bus 15 + + + + + 33f97ab0-9038-2530-d807-2002d2d0839d + Grafisches Netzelement232 + + + + + 180 + 6c3a960a-66c0-55b8-6c00-9debcc17a025 + Grafisches Netzelement545 + + + + + 735e19a0-bd66-7e9b-56fe-1453696d5efa + MV3.101 Bus 89_Graph + + + + + 91f5d4e1-655e-4a72-12b3-565682ccd63f + MV3.101 Bus 25 + + + + + 62a11df0-d1d1-eac0-9bce-9b2a108471dc + Grafisches Netzelement209 + + + + + 180 + 4e06601f-b9c9-2540-b6e3-1205f56fea17 + Grafisches Netzelement544 + + + + + 9f653e8f-71c3-e8a7-92ab-237e176898d0 + Grafisches Netzelement679 + + + + + c0330605-c70b-2de5-358c-fc42f2080f36 + MV3.101 Bus 19 + + + + + 96f77337-a19f-537d-4683-e48f9c10dbd4 + Grafisches Netzelement230 + + + + + 180 + bf27093b-f8f9-d1eb-2c24-a88df768c005 + Grafisches Netzelement487 + + + + + 1284cfe3-0202-5dbc-8355-b3ca79fc52fa + Grafisches Netzelement257 + + + + + fc5b4e58-3e60-34b6-d595-c01b1df5ce98 + MV3.101 Bus 46 + + + + + abe826cc-8fa9-77e9-cace-b1880cd65b53 + Grafisches Netzelement220 + + + + + 45954f66-dad6-21bd-6393-51fc62a3d34c + Grafisches Netzelement510 + + + + + d7d3516c-4f7f-b123-d9df-6c818101a7e6 + MV3.101 Bus 93_Graph + + + + + 4daba093-91fa-47c1-d8eb-08d65d80af90 + MV3.101 Bus 35 + + + + + 49677c65-845a-99be-42f3-892ebc7af72a + Grafisches Netzelement240 + + + + + 81e89427-7639-05ad-283c-26ac729aa779 + MV3.101 Bus 88_Graph + + + + + 74df4add-7654-2fa1-0a0f-28ee56ea3e64 + MV3.101 Bus 13 + + + + + 180 + f88d18b4-3095-72ec-6b63-23dbeceab2e1 + Grafisches Netzelement527 + + + + + afbc0ae3-3c60-7f15-90c2-e6feddd1da6a + Grafisches Netzelement215 + + + + + 36a98b3a-b140-4972-4805-cf5ddb9a916d + MV3.101 Bus 52 + + + + + 9 + a4f84b8e-b664-6206-b260-e69f766297f2 + Grafisches Netzelement343 + + + + + b5cdaf7b-9d63-aee5-8007-e745798f4b61 + Grafisches Netzelement533 + + + + + 26c39e2f-3abc-f3d0-7c50-3c0bc8084eed + Grafisches Netzelement211 + + + + + 14772357-d4cc-6755-3736-a5c79a4a299c + MV3.101 Bus 18 + + + + + 64acd934-d71d-baea-a8d0-25e30e69e55a + Grafisches Netzelement659 + + + + + 180 + 36674708-1e7b-0b16-5274-a51b7b868d0c + Grafisches Netzelement496 + + + + + de611c33-5657-3e98-f1ae-9c7b90b931a6 + Grafisches Netzelement212 + + + + + d5e37442-ce82-4a7d-020a-7615247c177a + MV3.101 Bus 23 + + + + + 28b560de-531c-53c4-ba8d-eb6c8c6f3fb4 + Grafisches Netzelement486 + + + + + 3abe65be-145a-66a6-5ff0-6e26023dbfa9 + Grafisches Netzelement666 + + + + + 2fb4c2ec-8d00-2e55-5545-b05b2eff4a74 + Grafisches Netzelement210 + + + + + 729735da-d9c2-2fa7-979f-7685aa549f4a + Grafisches Netzelement578 + + + + + f735574f-d41b-7737-3564-b55b5a38fe24 + Grafisches Netzelement506 + + + + + 2e3c3128-8bfe-9e50-a7cc-70eaa9619ea2 + Grafisches Netzelement213 + + + + + 263 + 839f1990-e9b4-55a7-073d-30f13608a8f3 + Grafisches Netzelement379 + + + + + 180 + ec662df4-7fe1-bc04-8df3-814cdea4751a + Grafisches Netzelement587 + + + + + f8e019a7-ff39-be13-1472-3cefbb5bf2be + Grafisches Netzelement540 + + + + + fa7f63b0-f22b-0263-c125-426c56622108 + Grafisches Netzelement217 + + + + + 9ad9d119-cac4-aa2b-6834-df1ad5609ac0 + Grafisches Netzelement638 + + + + + 180 + 27633569-6a0b-b912-95d0-e4ee072b0385 + Grafisches Netzelement570 + + + + + 0c1c92d3-a3c9-3690-2871-9d5ee7424ae2 + Grafisches Netzelement248 + + + + + 180 + 2b98c783-cba4-1d89-b9ee-61f85c22ba30 + Grafisches Netzelement513 + + + + + 329b9bf0-f52e-1a0b-c657-76114f3cc1b4 + Grafisches Netzelement665 + + + + + 180 + 7776b288-ea1e-307a-a218-dc3519d5143a + Grafisches Netzelement565 + + + + + 4659aad7-eadd-cc58-84de-3eca6205dcf7 + Grafisches Netzelement516 + + + + + 346181f3-4d61-96a5-b406-4b0ea52938cb + Grafisches Netzelement229 + + + + + 14 + da82d55f-4cc1-a30b-d343-0ad68e534462 + Grafisches Netzelement342 + + + + + 1e148676-677c-d432-0e01-47700b6c6f4b + Grafisches Netzelement584 + + + + + fde8f43d-1195-fb0b-abe8-2a06895285ad + Grafisches Netzelement202 + + + + + 2871d1a5-e292-2829-f27d-b7bbc50dbfe5 + Grafisches Netzelement538 + + + + + 331 + bfe118e8-b20a-c420-58b9-16eb22513a41 + Grafisches Netzelement358 + + + + + ac4ac2d6-4865-ce3b-d08a-0ea1a4788822 + Grafisches Netzelement246 + + + + + e7f390dc-b5b9-9a7d-02f4-0560a22e53bc + Grafisches Netzelement603 + + + + + 180 + abfa8ae4-0bc3-045e-a97a-cc610a5e8916 + Grafisches Netzelement548 + + + + + 253 + 16a8cb8d-3da6-dcf9-200a-a1bb8bb9031b + Grafisches Netzelement371 + + + + + 4ce42eb1-64f7-cd5d-d21a-790b1c63f832 + Grafisches Netzelement218 + + + + + 180 + 08300a7c-f434-3d5c-9e7a-053733e52ba7 + Grafisches Netzelement575 + + + + + 180 + d97fe2a2-a120-dc1e-3133-9818a0cae674 + Grafisches Netzelement525 + + + + + 342 + 4b959433-cf39-6623-cecc-ac4a12a29f26 + Grafisches Netzelement361 + + + + + e834f64f-2a5d-5674-c88f-b0a07974d2df + Grafisches Netzelement236 + + + + + 3f11ec36-66cf-6bcc-0f1b-b3c0c5aaf1ff + Grafisches Netzelement569 + + + + + 180 + b677a860-d154-6b29-63b0-eb9a004918b8 + Grafisches Netzelement554 + + + + + 262 + 4f25b390-c16f-25c6-12cd-aba383409fef + Grafisches Netzelement373 + + + + + 180 + 99b9dde5-d7fa-b74d-2594-d5b5c8c90a97 + Grafisches Netzelement242 + + + + + b0e0e097-1831-5bf9-5f58-bf6d5f879b15 + Grafisches Netzelement537 + + + + + 180 + ae5712ff-5a73-4641-aadd-fe25a835dfac + Grafisches Netzelement572 + + + + + 89b936d0-30dd-2c6c-d835-400de78f84d3 + Grafisches Netzelement241 + + + + + 180 + d24a9884-efbc-0f4a-506b-fe7134b2c0d6 + Grafisches Netzelement551 + + + + + 180 + 905de88b-89f4-21c5-eda0-56fee8f60a93 + Grafisches Netzelement547 + + + + + bafcccfa-e2cf-ccf9-41d4-3514fa2f0415 + Grafisches Netzelement247 + + + + + 1b584aa5-f2c2-efb8-a01b-53e562661f86 + Grafisches Netzelement501 + + + + + 180 + 88f0e3c8-aa56-2195-8e28-36524c2afc52 + Grafisches Netzelement567 + + + + + 62010212-2ba4-cd7f-5317-162bdcdb14b2 + Grafisches Netzelement205 + + + + + 3067ebf7-bae2-12bf-c371-2b08b364f05b + Grafisches Netzelement362 + + + + + d3ec0c62-0429-9776-4a73-82af8531fdeb + Grafisches Netzelement595 + + + + + 180 + fbe75a1a-761c-651d-d53d-6ecfda999c1b + Grafisches Netzelement528 + + + + + a1818c28-96b4-7b4c-10b2-485f8428cd55 + Grafisches Netzelement219 + + + + + 24 + 12796f7f-ef61-e67e-4e6e-cddbd1483636 + Grafisches Netzelement372 + + + + + 180 + 4d620a37-410a-fabf-225f-44c061ed2577 + Grafisches Netzelement300 + + + + + 00e3b457-a712-1695-d26c-8c3b3ecb1f2e + Grafisches Netzelement237 + + + + + 226cc18e-a81e-8b87-afab-59fac524e3df + Grafisches Netzelement612 + + + + + 180 + 703abf37-cf97-8b9a-0603-87ff19522379 + Grafisches Netzelement297 + + + + + ee6adb3e-d510-6c17-df21-f46090e619f1 + Grafisches Netzelement235 + + + + + 05406271-75d6-e612-f20b-7dc36de44876 + Grafisches Netzelement560 + + + + + e71bcd70-3341-67c0-85ab-f8fd16e37149 + Grafisches Netzelement234 + + + + + 294 + 3a8b0dc4-1a94-a0f2-9d13-243fdd64e433 + Grafisches Netzelement355 + + + + + b8f0a35d-3af6-57ed-2d55-e2e8be0ee854 + Grafisches Netzelement667 + + + + + a2c96217-d958-86f3-3fcf-d9db4b707d7a + Grafisches Netzelement490 + + + + + 180 + a9fedd39-5cde-3976-6619-8440b24342a3 + Grafisches Netzelement275 + + + + + 180 + fe42f3ed-694b-ef31-3200-3783508812dc + Grafisches Netzelement201 + + + + + cada3ac3-0111-b1ef-9888-6b4b34dd1b5f + Grafisches Netzelement614 + + + + + 180 + 88288e53-941d-afdd-80ef-b98126e183ef + Grafisches Netzelement290 + + + + + 180 + 17638fce-82e6-e854-eb4b-b71bc8b670c1 + Grafisches Netzelement598 + + + + + 44877611-7f5d-6ab2-7f59-c60e02efacf9 + Grafisches Netzelement676 + + + + + ea0928c7-d0c0-fefe-bc22-09428755d73d + Grafisches Netzelement553 + + + + + 03a46213-4b0d-fb55-cf87-a76c65b97897 + Grafisches Netzelement623 + + + + + 180 + d0a33c0a-b787-9609-541e-aea35a098b3b + Grafisches Netzelement329 + + + + + 66ff264c-055f-6c3e-28ee-b6c7821b0302 + Grafisches Netzelement200 + + + + + 180 + cb155cfc-b2bf-e066-135c-c0ea4a569e2e + Grafisches Netzelement484 + + + + + 354 + f5897cd9-8064-5529-49fa-e5a8ab071933 + Grafisches Netzelement393 + + + + + 9d40d321-6833-9962-3976-3ba7a33b486f + Grafisches Netzelement251 + + + + + 180 + e69c3ff5-dc40-1151-693d-84a4b20ebd84 + Grafisches Netzelement589 + + + + + 7f137455-0b0c-f3e9-e316-5efc37e56ade + Grafisches Netzelement624 + + + + + 90b23a2f-f49e-b2b6-9e14-857bf2c9b20e + Grafisches Netzelement221 + + + + + 180 + c06b3468-04c1-c551-430e-69f40dc1d5a0 + Grafisches Netzelement530 + + + + + 6ed2896c-4142-7617-0ad7-cc766c49b232 + HV1_MV3.101_Substation_Graph + + + + + 90b9434b-39c2-49d1-b21c-dea3fc7cd264 + Grafisches Netzelement238 + + + + + 180 + 7bbfd663-ab51-381f-9026-dd7a4e21bf40 + Grafisches Netzelement619 + + + + + 180 + c253df62-5c02-fd8b-f163-7ecc592ffec9 + Grafisches Netzelement239 + + + + + 180 + 25629811-d6e0-c226-045e-fddf1a3462aa + Grafisches Netzelement284 + + + + + 288 + 4d0568d4-85de-d044-5b7b-955b066cb5ea + Grafisches Netzelement394 + + + + + 6db3d510-64ed-15ae-d8aa-32ecbeb772f7 + Grafisches Netzelement635 + + + + + 73e9c36b-5e3a-f91a-1607-c8a4e8164477 + Grafisches Netzelement618 + + + + + 06dce961-0b75-8dcd-d242-8d5b312283a3 + MV3.101 Bus 16_Graph + + + + + 180 + ec9d1ea6-6572-0c0a-2046-7751ecf334d6 + Grafisches Netzelement294 + + + + + 4d7b2239-9bc6-186d-8151-6fb2ffc7d8b5 + Grafisches Netzelement204 + + + + + 180 + 83f488fc-1245-9302-f90f-653cb49be9a0 + Grafisches Netzelement291 + + + + + 292 + 5dd974b9-5ee1-b0a2-a4ec-3ecf787f04bb + Grafisches Netzelement337 + + + + + 82958d9e-e17a-4219-5ccc-6505954989ee + MV3.101 Bus 48_Graph + + + + + 70e80634-634d-a029-6bf4-d67fa6df27e5 + Grafisches Netzelement254 + + + + + 180 + 689d5d94-ddce-ccf8-6812-541e2331f53e + Grafisches Netzelement592 + + + + + 477d7f1d-6f3d-044a-3883-8cb2ae87305c + Grafisches Netzelement664 + + + + + 7e126f59-6dc3-15d7-11b0-7002b253ad9e + MV3.101 Bus 32_Graph + + + + + 180 + f9831fbe-d8af-1e3b-c15b-735269637e3f + Grafisches Netzelement324 + + + + + ad61be80-f000-0750-0c70-a3b90b6d13f6 + Grafisches Netzelement644 + + + + + 180 + 187dde81-328b-11b4-389c-e23c63754541 + Grafisches Netzelement517 + + + + + 180 + 3e0fb4a3-2bee-f3c0-60dc-55eb59027446 + Grafisches Netzelement621 + + + + + a773b03a-a64f-7008-b338-a2bac64e4eea + MV3.101 Bus 31_Graph + + + + + 775adb3c-8ddc-fe0d-4d71-8a06d30c3785 + Grafisches Netzelement642 + + + + + 180 + ba4f4069-0c50-ad56-31cb-dc4477fa86b8 + Grafisches Netzelement280 + + + + + 180 + 7c7639aa-d1e9-62f5-548e-1e64a19d0566 + Grafisches Netzelement499 + + + + + 34ad6b1f-33bd-7f83-8490-26fb4b1232a1 + Grafisches Netzelement652 + + + + + 294 + 55ffddbd-e14b-58cc-a9cf-0e0a98cd9273 + Grafisches Netzelement481 + + + + + 7a879c9f-50cd-64b3-e1eb-93f0f1e84600 + MV3.101 Bus 54_Graph + + + + + 180 + 19eedfdb-dff5-ff40-3440-76c5092949d4 + Grafisches Netzelement289 + + + + + a8222759-fc24-8602-2d42-42629a461f96 + Grafisches Netzelement498 + + + + + 24b50e5d-09e2-598f-2275-7e5b5c3eab76 + Grafisches Netzelement633 + + + + + 7bbdf5d0-b38f-25b4-d482-aaf43ffaef3d + MV3.101_Base_Station_Graph + + + + + cd8a216b-58d8-3cc9-681e-db59425a99a4 + MV3.101 Bus 60_Graph + + + + + 180 + d63a4a43-ef81-ac6b-49f7-ea9f2e47438a + Grafisches Netzelement307 + + + + + 180 + 791cfa4b-36d6-751b-90a1-54e74c5b531a + Grafisches Netzelement488 + + + + + ed9d630b-19ed-1d3b-bbd6-eb04f1cd855c + Grafisches Netzelement622 + + + + + f16bc53a-f0a8-cea3-a400-12429b89f1b5 + MV3.101 Bus 13_Graph + + + + + 8ee8a240-a7bd-1a33-a3be-2366aa89cb17 + Grafisches Netzelement674 + + + + + 180 + fafd9156-d5f4-1aa7-4412-675553f92d5d + Grafisches Netzelement325 + + + + + 5f1588a3-1699-ec60-4b78-96b6c5f1a8ee + Grafisches Netzelement636 + + + + + b4ab1d15-cbcb-14ba-beab-f5ef3ae04af2 + Grafisches Netzelement620 + + + + + f92690d8-06d3-8781-e449-f34789e62c9f + MV3.101 Bus 77_Graph + + + + + 180 + 6169b6be-a449-f0fd-173c-cc1237e58208 + Grafisches Netzelement491 + + + + + 180 + cd546a63-65a3-f7d2-484d-062f451f4b15 + Grafisches Netzelement332 + + + + + e043b65c-2de6-7ee5-468e-c18673654b91 + Grafisches Netzelement632 + + + + + f2d5806e-9e5a-f57f-ba8c-93d697dd5d3c + MV3.101 Bus 69_Graph + + + + + 180 + feff9f86-9eed-6010-016d-8c2e1c80c45d + Grafisches Netzelement485 + + + + + 180 + cc51b982-0405-a363-6a34-e3c365bfb226 + Grafisches Netzelement285 + + + + + e5b035da-82cc-468f-78c3-783a56b4cc94 + Grafisches Netzelement683 + + + + + 93f293f3-82d6-53b5-a0c6-a366351fe69e + MV3.101 Bus 34_Graph + + + + + 723d0172-1c0a-f376-63cf-b2c36986765b + Grafisches Netzelement591 + + + + + 180 + a6b9aa35-5ed7-6262-b475-cb13467cec55 + Grafisches Netzelement318 + + + + + a6cf30f4-8739-67c1-1045-3cb0d237ae1e + Grafisches Netzelement661 + + + + + bf200125-ff88-9e8d-a9e3-da8758103f87 + MV3.101 Bus 51_Graph + + + + + 101de6cb-6605-e85c-82a8-c3d271efbaae + Grafisches Netzelement585 + + + + + 180 + 93cffcc6-4751-8b9d-e75f-4662695578f9 + Grafisches Netzelement298 + + + + + 7e84d074-182c-425b-d3c9-e43b8b559c39 + Grafisches Netzelement643 + + + + + ce60ed79-ddfc-c93a-8549-d9433b1e58f1 + MV3.101 Bus 28_Graph + + + + + c9963761-63e6-7fe3-2dc5-91988a50fc2d + Grafisches Netzelement610 + + + + + b47f581e-9ae8-4fa8-8d2b-9bebaec70239 + Grafisches Netzelement556 + + + + + 180 + fb0fbda4-5a85-c222-9ffd-706c3c55b1d2 + Grafisches Netzelement286 + + + + + 016c2731-733f-c5a4-aeb1-55c846b04987 + MV3.101 Bus 55_Graph + + + + + 1dcf0228-3b54-8375-b6d5-06cb22bdb5cc + Grafisches Netzelement670 + + + + + 180 + 3819a6a9-2b3f-cdd2-35f8-13f07011a817 + Grafisches Netzelement531 + + + + + 4a2a9218-2c61-c0cc-9102-f8a1abb8c34f + MV3.101 Bus 21_Graph + + + + + 180 + 6ee41e77-cc19-c08b-4418-81985f65c9f0 + Grafisches Netzelement302 + + + + + f8f1b2ee-c664-6eb0-3845-12deb1ec10cc + Grafisches Netzelement687 + + + + + 180 + 8561f25c-5340-954a-ea45-a630eddd87ba + Grafisches Netzelement562 + + + + + f93f9d94-3720-e5f5-8a15-c225895a450f + MV3.101 Bus 63_Graph + + + + + 180 + 8e07462e-c830-ddaa-1ab0-1a3b9cd2208a + Grafisches Netzelement274 + + + + + 14df2b22-848a-b51b-7e3d-27a4378953e8 + Grafisches Netzelement616 + + + + + 70dde681-4ac9-d962-10e3-fbf85755cb9e + Grafisches Netzelement495 + + + + + 11d70613-a0dc-2a99-8fe6-728e8143d048 + MV3.101 Bus 62_Graph + + + + + 180 + c7716a3a-9ec0-2466-bbf3-b3551978f4c5 + Grafisches Netzelement319 + + + + + d991809a-e06c-3034-794a-a0b2ccd44221 + Grafisches Netzelement611 + + + + + 91be716a-0d82-e7f6-1aed-d15ad5e7d760 + Grafisches Netzelement655 + + + + + 347d0fb3-4fe1-2abe-347b-36d870455fe7 + Grafisches Netzelement558 + + + + + e34b5cea-f4f6-6860-6214-a71dbaae5ac2 + MV3.101 Bus 19_Graph + + + + + f295cf0e-cdf1-5418-f796-5caf61ba2d84 + Grafisches Netzelement677 + + + + + 180 + d77978ae-1d8d-8051-5627-4f6550f86b60 + Grafisches Netzelement278 + + + + + 93da9f31-86de-b867-8a3d-7d37bfccc1f3 + Grafisches Netzelement649 + + + + + 430ba48f-7725-f7fd-f053-2ff2ff2747e9 + Grafisches Netzelement494 + + + + + 9b1263a6-a4ec-d90d-0018-bc91786e49c7 + MV3.101 Bus 38_Graph + + + + + 827f0a69-c095-a99f-80c4-e18943467673 + Grafisches Netzelement609 + + + + + 1ac00c3d-336d-f2cb-0e49-0622be0fd253 + Grafisches Netzelement645 + + + + + 180 + 336f9595-1327-a171-0c6b-cb6b868cd455 + Grafisches Netzelement328 + + + + + c66e9950-740e-6d46-79f4-a807ed0cb5dc + MV3.101 Bus 70_Graph + + + + + b9d68e73-19fe-2ffb-0dfd-2676a26547e0 + Grafisches Netzelement497 + + + + + 59be3db6-cc09-cb8a-2b7b-ca9306cc19ac + Grafisches Netzelement613 + + + + + 180 + f5be370f-4741-b8e8-cae2-e3d26295d91a + Grafisches Netzelement299 + + + + + 604b11bf-763d-ebf8-7e0b-74d4fdc74b13 + MV3.101 Bus 59_Graph + + + + + 8cd82045-e076-a79e-f3f1-78edcb8ce7c4 + Grafisches Netzelement617 + + + + + 180 + 34b2ffb8-dbdf-2566-843a-3a852e56d59e + Grafisches Netzelement555 + + + + + e10b0393-1a78-3cd7-4cb4-4fbc77b99bb0 + Grafisches Netzelement654 + + + + + 180 + e92d74f8-529f-2397-ec72-4b12b6045aa3 + Grafisches Netzelement312 + + + + + 43a6bf46-0e83-1ff0-07c7-41128c2aaf5e + Grafisches Netzelement615 + + + + + 2ec72583-a764-9b33-c544-c11f4a4bd0e2 + MV3.101 Bus 79_Graph + + + + + 180 + bd30b287-d449-1db5-b3e2-aa25e6f4161f + Grafisches Netzelement514 + + + + + feb3eaa0-4ab2-4a6f-ca32-2246d64df354 + Grafisches Netzelement625 + + + + + 923d4bc8-12fb-4716-3293-a5fe2a184418 + MV3.101 Bus 137_Graph + + + + + 4ad3eb3d-ff09-0f92-0416-17573dfaf8b5 + MV3.101 Bus 68_Graph + + + + + 180 + 8aa294a9-262a-e19c-999b-68acf866c150 + Grafisches Netzelement317 + + + + + 87156411-1f84-dbd6-9d32-6d6f1bb9f852 + Grafisches Netzelement662 + + + + + 180 + 381b2e8c-6b46-f1d7-127e-1cfe7734c0a8 + Grafisches Netzelement546 + + + + + f903abe9-5646-cc0f-7e4f-0228bb629936 + MV3.101 Bus 122_Graph + + + + + e7f8ee85-72ab-95f4-6cf4-2fa238ff9357 + MV3.101 Bus 25_Graph + + + + + 1cdda964-b260-9dab-e5fc-c74a97d305af + Grafisches Netzelement651 + + + + + 180 + 88f0821f-8a88-511f-4bfa-fad1edcb834c + Grafisches Netzelement303 + + + + + f2134025-55a7-7d7d-5347-61ce4c760382 + MV3.101 Bus 110_Graph + + + + + d68af646-bd81-a0e7-9af8-367081b00f37 + MV3.101 Bus 61_Graph + + + + + a4f107f8-0eae-c2be-1522-188b32daa42e + Grafisches Netzelement630 + + + + + 180 + 82da611a-f0ee-38c9-f5ed-545e1d396de6 + Grafisches Netzelement310 + + + + + e15d0971-3adf-2158-78be-002d2f3b8036 + MV3.101 Bus 117_Graph + + + + + 33d06a10-ba26-7699-0c76-1315cd1d2dae + MV3.101 Bus 29_Graph + + + + + 30c31e3b-54ef-ef4d-e368-cec726ef28fd + Grafisches Netzelement646 + + + + + 180 + c7c2829e-b059-5c41-c050-c5244d4cc0f9 + Grafisches Netzelement561 + + + + + 625a1d40-5483-0a9d-ff04-b75c6db0e372 + MV3.101 Bus 130_Graph + + + + + dd512405-bfcc-0c86-dfe1-d0fe5b406bba + MV3.101 Bus 11_Graph + + + + + 180 + d6130e0e-9c95-921e-25b7-7aaff603858b + Grafisches Netzelement331 + + + + + d6252ecc-cd6d-bddf-9681-1dd40f1a8029 + Grafisches Netzelement637 + + + + + 75571004-565a-f1e1-7de6-19cce58b5480 + MV3.101 Bus 112_Graph + + + + + 180 + e6ec3ed4-21bb-1427-8089-2722ffef2cff + Grafisches Netzelement599 + + + + + 16e4580c-0784-98c2-0c81-668f63a63a96 + MV3.101 Bus 50_Graph + + + + + 180 + 75b29adf-6445-8c6e-b29a-04c4f2f1cef3 + Grafisches Netzelement301 + + + + + 46f6c438-1230-6b32-bbaa-90a6f8418c30 + Grafisches Netzelement678 + + + + + 95c59ab8-03a3-5f27-7a04-b7c1ac1d4b82 + MV3.101 Bus 114_Graph + + + + + 1cd538f4-4f28-3c61-5f46-9d312550a9e5 + MV3.101 Bus 23_Graph + + + + + 180 + 6ce4ec9d-a754-f5e9-991c-944ff0985a41 + Grafisches Netzelement308 + + + + + 180 + f5c776c0-d5a5-0c4d-b774-a6533221de45 + Grafisches Netzelement576 + + + + + 180 + 1820ca4a-3001-2142-ed79-703ff9153850 + Grafisches Netzelement660 + + + + + eda9ecc3-f55d-826e-1dc8-48c01dc218de + MV3.101 Bus 136_Graph + + + + + 9ce59668-463a-8f66-cb8b-2a0ec1b81a18 + MV3.101 Bus 42_Graph + + + + + 180 + 1599d5ce-9f6f-2253-6886-b2351306f983 + Grafisches Netzelement277 + + + + + 180 + abb101bb-9836-68ca-b6d8-d14a10526f1b + Grafisches Netzelement573 + + + + + d813f038-b0d4-729d-d108-94998d4b86bd + Grafisches Netzelement680 + + + + + b65197b0-a796-af02-b098-7d66f62ffb8e + MV3.101 Bus 58_Graph + + + + + 180 + 89f65626-4c40-7753-051a-a4f783134671 + Grafisches Netzelement262 + + + + + 180 + a4f31104-a113-e4ad-6659-8c06844e7241 + Grafisches Netzelement304 + + + + + a9ccc62e-d1d4-52e5-4c53-627cde1222f0 + Grafisches Netzelement640 + + + + + 180 + 87ba2fac-f166-4d0c-9e75-aa322aa95cee + Grafisches Netzelement588 + + + + + d2b74e5a-eb3b-229f-18e7-4a0023854235 + MV3.101 Bus 74_Graph + + + + + 3bcbd2c7-1713-644a-f8d8-50ea86b36cf0 + Grafisches Netzelement258 + + + + + 98ee8dfd-a538-ec44-625b-78561a79d71e + Grafisches Netzelement626 + + + + + 180 + 01b2229c-1cac-a4a1-5d9d-d3c385611d2a + Grafisches Netzelement320 + + + + + 28766426-ec78-b464-5adc-6524489dc9a1 + Grafisches Netzelement606 + + + + + 8619c22c-7a1c-ecef-88c5-d7eef7bddbf0 + MV3.101 Bus 80_Graph + + + + + 64db2fcc-218d-f226-8c63-f5dff5ebf202 + MV3.101 Bus 124_Graph + + + + + e1267b28-5b38-8079-da6a-008cec528bbc + Grafisches Netzelement641 + + + + + 9f345166-d245-fbb7-cd12-aabea26ca8b9 + Grafisches Netzelement586 + + + + + 180 + 4c988d63-54f3-f1f1-c881-b93e96bfdbf3 + Grafisches Netzelement296 + + + + + d5ab7ad3-2fb9-7c75-5b10-05432fe45d7c + MV3.101 Bus 81_Graph + + + + + 2bc52478-7c8f-1a3c-0375-f48d89846a2b + Grafisches Netzelement272 + + + + + 180 + 97f300f4-a3d5-bcb7-eb99-8cca7a99a3d7 + Grafisches Netzelement668 + + + + + 4f5c8558-668e-4591-52f2-10e142b42805 + MV3.101 Bus 43_Graph + + + + + 180 + 10730965-9e12-240c-0e5a-7a1f80ac097f + Grafisches Netzelement597 + + + + + 180 + 01484643-9876-83e6-fb35-a56d23c6f517 + Grafisches Netzelement295 + + + + + 20236ee9-e5be-15ef-d326-c430b10b60d8 + MV3.101 Bus 128_Graph + + + + + c9825376-b886-c40f-a912-fc924e2cbd32 + MV3.101 Bus 33_Graph + + + + + d58ed532-817c-2eac-d2bb-f080c19d2815 + Grafisches Netzelement685 + + + + + 180 + 72642c34-21ae-f793-ed91-9c90f394c2b0 + Grafisches Netzelement601 + + + + + 180 + 1e6f5695-b729-736b-368c-ccd1ae09caa4 + Grafisches Netzelement330 + + + + + e1cd8ee6-b564-6682-1fd3-6793b13ce7d8 + MV3.101 Bus 39_Graph + + + + + c35a27ba-b1cb-cd15-666a-df8f907ab40c + Grafisches Netzelement663 + + + + + 180 + cda8ca79-fdee-cc7a-c6db-aa8a91ce8821 + Grafisches Netzelement549 + + + + + 180 + 9c384ea0-ccfd-3006-cfc5-0103693b8117 + Grafisches Netzelement279 + + + + + 7c72c963-06a8-614c-5026-fbc4cd6c70fd + MV3.101 Bus 41_Graph + + + + + fe52d1ec-4cd5-7ee6-f711-4729b438c91f + Grafisches Netzelement682 + + + + + 180 + aabb1f92-90d1-0588-41d4-1b639b861ae9 + Grafisches Netzelement583 + + + + + 46294077-3c0a-970e-59c8-a61942afb83f + MV3.101 Bus 22_Graph + + + + + 180 + e6471ee8-544a-6a13-a1e1-462bfc0eb548 + Grafisches Netzelement313 + + + + + e2e8b3b7-7df4-39a3-fb92-96605dbea26a + MV3.101 Bus 131_Graph + + + + + 4bfb7ae1-9fe5-d684-87a5-3ac488192181 + Grafisches Netzelement629 + + + + + 94a78de7-bd88-c545-d3c2-38b5bae6d90d + MV3.101 Bus 76_Graph + + + + + 535a5ffd-9535-d758-50a6-03920fbdb2ed + Grafisches Netzelement557 + + + + + 8b885c6a-44d9-c05c-ad73-28750e950946 + MV3.101 Bus 107_Graph + + + + + 180 + 1308bc8b-917a-0254-a018-20f304e9359d + Grafisches Netzelement327 + + + + + ef1a1ae0-9cc8-2158-5003-1488d42b114f + Grafisches Netzelement634 + + + + + cc5918d0-7b63-e9d7-13d3-55d242b1e09d + Grafisches Netzelement529 + + + + + 180 + 0a322ef1-a369-f653-0a1e-19083c7d5834 + Grafisches Netzelement571 + + + + + db20bbbe-bbb2-e191-a75c-475b98b16f1e + MV3.101 Bus 99_Graph + + + + + 180 + 16c728cc-77af-bf73-89ba-c96c1bbafcb1 + Grafisches Netzelement293 + + + + + 77 + 8352312a-3652-1162-476b-9f3b8c321cd1 + Grafisches Netzelement350 + + + + + 180 + 90cd631b-f6d0-5720-2d52-adb617e60966 + Grafisches Netzelement539 + + + + + 56de7834-d5b3-f387-c0ea-e16e5ed4f913 + MV3.101 Bus 127_Graph + + + + + 180 + 1051404d-072b-c463-b7f2-5c259a2044b1 + Grafisches Netzelement305 + + + + + 26a3bd2d-a3c7-afe6-7ed8-77e594ad01f4 + Grafisches Netzelement158 + + + + + 180 + 28289985-9789-3756-a9d0-66b2eb85d9ce + Grafisches Netzelement522 + + + + + f0d4b31a-cefd-a713-0fac-6ee31dfbc782 + MV3.101 Bus 129_Graph + + + + + 180 + 799796c9-65a4-0b65-29a8-b78607b9969f + Grafisches Netzelement600 + + + + + 180 + 37cd28e8-e538-3020-314b-3a00dfbd6d7f + Grafisches Netzelement314 + + + + + fc56243e-7182-8a26-fa95-2dc529e0709a + Grafisches Netzelement502 + + + + + 8e0e51b3-7bf7-0b1d-ab1a-f62af9ebf12f + Grafisches Netzelement167 + + + + + b1fc20b3-cf04-f7a3-fa1f-6a27cd7bb0f4 + MV3.101 Bus 103_Graph + + + + + 430f248c-8d7c-41cc-783e-6fe15e12f8fc + MV3.101 Bus 45_Graph + + + + + 9867ee7b-a78b-d379-397b-7b1176d8c301 + MV3.101 Bus 73_Graph + + + + + a55c7b66-e8d5-b6e1-a017-751b7d3d1010 + Grafisches Netzelement194 + + + + + 10127de1-282b-a13f-e103-8d30286336c7 + MV3.101 Bus 56_Graph + + + + + 73bad8bd-d0ae-01b6-41f6-be212a0325fc + MV3.101 Bus 116_Graph + + + + + e06d2292-c433-50eb-7552-788b535bc1ea + Grafisches Netzelement504 + + + + + cfcef23e-4f83-ab64-4466-7318e36de39d + MV3.101 Bus 53_Graph + + + + + d646c942-d11a-5e82-997f-67fafa175412 + Grafisches Netzelement136 + + + + + e487db45-bea2-789c-0a58-ac0bc99cacbd + MV3.101 Bus 133_Graph + + + + + 180 + 3b038469-4e65-7768-9c4e-d6142845ad7e + Grafisches Netzelement492 + + + + + 3d9cd71c-1aa3-8b38-73b7-5d29f49e5647 + MV3.101 Bus 57_Graph + + + + + 9a99fc09-29bc-da5e-9f1f-dc34f91bfb7e + Grafisches Netzelement145 + + + + + 9a6bb444-6ccf-2387-937c-ce919719e00b + MV3.101 Bus 113_Graph + + + + + 7a233747-2403-e49a-2109-2c6ae560434c + MV3.101 Bus 14_Graph + + + + + ed703001-1935-e166-0aba-f33778813d74 + MV3.101 Bus 82_Graph + + + + + a1fc778e-3c73-d331-0783-6927f0a9e4bb + Grafisches Netzelement149 + + + + + 174469c8-bb6c-ffdf-4762-dc4c098aa87d + MV3.101 Bus 119_Graph + + + + + 180 + 59b7147c-3351-597f-0f25-cdd22f6ceb62 + Grafisches Netzelement306 + + + + + 271328cd-e680-ba58-6afa-8448d2281026 + MV3.101 Bus 72_Graph + + + + + f2e6478f-097a-2daa-9547-3396954e768b + Grafisches Netzelement144 + + + + + 331e4a86-caae-15dd-327a-07975a4b0ab6 + MV3.101 Bus 109_Graph + + + + + 8375cec0-3717-98a1-23e9-ec6d526950b5 + Grafisches Netzelement321 + + + + + faf420a7-8e1b-5c8c-5aff-d4b00b06f8dc + MV3.101 Bus 83_Graph + + + + + 50caf5ae-0339-d687-e66d-d50dd9c07b0a + Grafisches Netzelement191 + + + + + 2843a9fb-ceba-c2d1-fcff-b880b3f562ba + MV3.101 Bus 101_Graph + + + + + 180 + 1e57b6a0-5bc9-2f2e-cc33-cef88ccb5ffe + Grafisches Netzelement276 + + + + + 131 + 434b68b9-15fc-c684-d5a5-0d22947c5761 + Grafisches Netzelement445 + + + + + 180 + 6d46aa0d-e55b-e8da-0fb6-dd13dccee0db + Grafisches Netzelement521 + + + + + 38133b35-8a6d-783b-5059-5e1f140eb56c + Grafisches Netzelement196 + + + + + 455fcfdd-42d2-5512-28e7-5a7dcbe1a5a1 + MV3.101 Bus 123_Graph + + + + + 180 + 734f5079-20fa-df0a-172e-519fb002a417 + Grafisches Netzelement309 + + + + + d04e9d6a-cc5a-aa2c-b1ef-7ac536e405d9 + Grafisches Netzelement519 + + + + + 256 + 65133344-b0fb-9c0a-2fc3-919a3d414ae0 + Grafisches Netzelement340 + + + + + 5fde958b-a8ef-d81b-0a8f-b31779346784 + Grafisches Netzelement137 + + + + + 180 + a17fb573-7878-992e-56af-d930a9771321 + Grafisches Netzelement608 + + + + + 8f6754a3-496a-6127-af55-84dc85334b3b + MV3.101 Bus 105_Graph + + + + + 180 + cfb69834-8ab8-2c47-e7f4-561b2463113d + Grafisches Netzelement315 + + + + + 1840eee2-d1a6-431f-1fc2-473a090274dc + MV3.101 Bus 64_Graph + + + + + 144 + ec7f6c95-0472-6f45-9a15-0b25ee16ad23 + Grafisches Netzelement439 + + + + + 332 + 1a2c74d8-5db1-2596-0556-6051a717aa95 + Grafisches Netzelement346 + + + + + 180 + 593ee2a0-8734-8a85-ef0e-599d3e9b9cc7 + Grafisches Netzelement568 + + + + + 94ad604d-0dec-0c35-acd2-37dd24778803 + MV3.101 Bus 121_Graph + + + + + 180 + dc53cfc1-af12-bacd-07a9-c96cc0f2d0be + Grafisches Netzelement323 + + + + + 5cda247b-69f9-61cb-1687-138c2b354af8 + MV3.101 Bus 65_Graph + + + + + 62 + 7782c218-f0b4-8579-894c-f7b7a67a2fea + Grafisches Netzelement345 + + + + + 2862e516-b022-a0cf-a4ca-a0d18dc3f804 + MV3.101 Bus 141_Graph + + + + + 180 + b9dcc999-3d0a-ff2d-6052-7c54666cb051 + Grafisches Netzelement550 + + + + + 180 + 09b27c13-1d37-cbf6-7e8c-7e84a3a6f761 + Grafisches Netzelement292 + + + + + e7704378-4108-ec65-48ab-a2c156fb97a7 + Grafisches Netzelement507 + + + + + 333 + be073bef-0752-e428-c842-3864ff8ac303 + Grafisches Netzelement360 + + + + + d5049a89-409e-3071-f168-b41761b8f4eb + MV3.101 Bus 142_Graph + + + + + 180 + c5fb79e5-9715-1bdd-748d-40eb6c3f450a + Grafisches Netzelement563 + + + + + 210 + 979b8973-abb8-8b02-8559-0ecb973d6c2e + Grafisches Netzelement436 + + + + + 861e78d0-71f7-a891-e65a-c4a21c39e380 + Grafisches Netzelement541 + + + + + 180 + 6bea2d28-454f-07a1-035a-d2c4ba910c35 + Grafisches Netzelement316 + + + + + 318 + 111849c2-066e-40d8-1320-b705520a06a0 + Grafisches Netzelement392 + + + + + 99 + dbc92563-9f5b-8777-93d1-65bb88948cb5 + Grafisches Netzelement422 + + + + + 4b94956e-0b10-c4fc-8d84-d658af5793a9 + Grafisches Netzelement534 + + + + + 180 + 029f36ce-12a9-dff2-c410-36ca7085b7d7 + Grafisches Netzelement579 + + + + + 180 + 66e7d7f4-6b0a-e07c-023e-6f033903dec4 + Grafisches Netzelement322 + + + + + 320 + 92e17710-4857-2d69-4df7-5822d9c4c4be + Grafisches Netzelement435 + + + + + 344 + 6672667c-0413-d614-c39e-5a3884f160a8 + Grafisches Netzelement388 + + + + + 355 + de6d5a49-84a0-8cd6-19bd-6615e7a1b6a4 + Grafisches Netzelement466 + + + + + 9f126bdb-d491-1287-7631-a0c9d73998d2 + Grafisches Netzelement581 + + + + + cedb4d4c-73f4-88d1-f979-ac25dfb2cd90 + MV3.101 Bus 78_Graph + + + + + 180 + 9e1c2e97-168a-95ce-1432-68fb07237b0f + Grafisches Netzelement417 + + + + + 76 + 292e15d7-890b-3107-8e21-71bda740173d + Grafisches Netzelement336 + + + + + d05f3cbb-ae24-02ae-7ab8-2e1fe5f3a34e + Grafisches Netzelement140 + + + + + e7536900-a2d1-301e-7f32-90a97fb5ce06 + MV3.101 Bus 67_Graph + + + + + 6 + ee54ccf7-3a74-ae16-5e60-a5cbfc123942 + Grafisches Netzelement442 + + + + + fc0f70ef-21d3-004c-bc15-d81d8a7ae6ce + Grafisches Netzelement182 + + + + + f6919f5a-701a-9a40-b773-3fd8cc3db153 + MV3.101 Bus 71_Graph + + + + + 276 + 5776c00e-e1d7-2a19-636b-8f70075f8289 + Grafisches Netzelement396 + + + + + 139 + 65e6f7b2-7a5b-1a2e-9150-4857b1d576d7 + Grafisches Netzelement428 + + + + + d919618b-312a-4573-da88-59827b1c1804 + Grafisches Netzelement169 + + + + + ab5d1174-87f5-817c-5a4b-f27e79bb6b00 + MV3.101 Bus 37_Graph + + + + + 315 + 3fcc19b4-e3c3-f1ed-2d47-cd598879a01b + Grafisches Netzelement344 + + + + + 328 + ae32a008-55b3-6b6f-681f-db06119bbf9d + Grafisches Netzelement447 + + + + + 15b6b04d-5209-d407-768f-a0af17c4c7f0 + MV3.101 Bus 12_Graph + + + + + a8d945ac-54ab-14c4-1481-b3a3b7c686d6 + Grafisches Netzelement152 + + + + + f38cf2b1-5501-6bb9-e230-618ae489ef4f + Grafisches Netzelement656 + + + + + 256 + aa585588-c811-ed38-d038-6c2e26b07240 + Grafisches Netzelement359 + + + + + 1f785479-3717-cb71-e148-25bf0fcf5320 + Grafisches Netzelement433 + + + + + 76296a56-8fb3-a815-c6a2-529762ceb001 + MV3.101 Bus 46_Graph + + + + + 97f33e84-7f7e-5d37-5f9a-86889125625a + Grafisches Netzelement178 + + + + + c846eab0-69e4-db1c-955f-3cce657533b9 + Grafisches Netzelement526 + + + + + 328 + eebe2aff-bac2-14f5-a2a0-6941ddb536f4 + Grafisches Netzelement363 + + + + + bdb87190-41d5-e403-7c67-7e4d8189334e + MV3.101 Bus 84_Graph + + + + + 209 + e3f4e028-8a93-70dd-eefa-d8afc072b46b + Grafisches Netzelement399 + + + + + 180 + 86c9d862-16f7-879a-b588-b6e3c1884d4b + Grafisches Netzelement483 + + + + + 6705d267-8e38-66fc-dcb5-91e064c7cb8c + MV3.101 Bus 36_Graph + + + + + 234 + 2259cbb8-33b0-f3e6-bc47-1b49ccf2965b + Grafisches Netzelement365 + + + + + 208 + ab3bb073-fe8e-6b36-8ce7-a91bc7789d59 + Grafisches Netzelement402 + + + + + 180 + 28beb6f6-3e57-23ab-16c2-fee02fcfef5a + Grafisches Netzelement532 + + + + + 6cd99e19-7c8e-68e5-df79-4e790f1ec873 + MV3.101 Bus 52_Graph + + + + + 39 + 0a78fdf9-bfb9-f026-d53a-2d93667a4811 + Grafisches Netzelement467 + + + + + 283 + b714d575-4511-0826-878e-92291591841f + Grafisches Netzelement385 + + + + + 347 + 0bc08f88-36c8-aaf3-b2f1-5e32bc8e92d0 + Grafisches Netzelement401 + + + + + 1ec4dfe7-d15b-4d3b-78d3-8e3808280c93 + MV3.101 Bus 26_Graph + + + + + 180 + a5ad6376-5059-10d3-1c48-9ed2d8a88a55 + Grafisches Netzelement500 + + + + + 8a919003-9dac-51ea-523a-621502597e9b + Grafisches Netzelement186 + + + + + 95 + a3bd6dc1-8845-0dde-fad1-f149fbf1b23d + Grafisches Netzelement352 + + + + + 207 + fee9a2b9-0ad0-ad11-3675-53b787cb8874 + Grafisches Netzelement403 + + + + + 7638ae4a-1dc0-56a4-dd86-d6810dc5fff7 + MV3.101 Bus 18_Graph + + + + + d0b3aa58-d465-9bb0-9ebf-bd9285774055 + Grafisches Netzelement523 + + + + + 40dd88cb-2c39-9219-481f-1fbe247a1561 + Grafisches Netzelement174 + + + + + 270 + 0b56f783-698b-63b9-6932-9ac2d1599aa8 + Grafisches Netzelement348 + + + + + 337 + f7991075-102d-ea27-d518-a66bd53f61e5 + Grafisches Netzelement426 + + + + + 29efd5de-70fd-acf1-69dc-febae95f66d7 + MV3.101 Bus 24_Graph + + + + + d40829e9-9ab5-e621-f808-8ab24afd8fe6 + Grafisches Netzelement503 + + + + + 7426f249-e569-ce10-de2e-d15dce64bca2 + Grafisches Netzelement162 + + + + + d83622e9-649d-4ff4-2a42-659ef858f33f + MV3.101 Bus 49_Graph + + + + + 180 + e5eddb6a-cb01-f341-ee49-ae82244989f3 + Grafisches Netzelement380 + + + + + 7bc83ba5-8919-c133-2ad1-b4159d917f0b + Grafisches Netzelement535 + + + + + 260 + 7593bc79-f1a8-a5d5-87ef-10b92000a5ae + Grafisches Netzelement418 + + + + + 22e93d58-0b8b-938a-7899-7b742e10dce5 + Grafisches Netzelement181 + + + + + ec31c235-5633-14c9-cbbc-f8b5f9c696ff + MV3.101 Bus 44_Graph + + + + + adc208a5-f1b9-6056-49e2-ac7d94158eb1 + Grafisches Netzelement542 + + + + + 175 + 38a36a0c-5983-e1d1-e745-ad24c31e4dfe + Grafisches Netzelement382 + + + + + 5d37a826-d0da-e2c6-4f7b-47cda79a68ae + Grafisches Netzelement185 + + + + + 252 + 9cf6b114-d21f-1ab0-ad3b-51ff78bfb869 + Grafisches Netzelement424 + + + + + e5fdfeff-0c2f-55e4-6bde-e2ea89ce128c + MV3.101 Bus 27_Graph + + + + + c52a1f17-c688-16ae-2490-fa11eb4a0276 + GCO_1 + + + + + 180 + 11261b21-b8db-6799-3567-9f1c835f8fa1 + Grafisches Netzelement518 + + + + + 176 + c088b93a-8130-dac8-e9d5-5039ddab8e73 + Grafisches Netzelement368 + + + + + b02ed78e-e030-11e8-23ea-f5b04f1956f5 + Grafisches Netzelement151 + + + + + 337 + 3be9f096-9a21-45cf-9565-e83b01129536 + Grafisches Netzelement440 + + + + + fc03d103-b90d-1f27-dddf-b763bae37cde + MV3.101 Bus 47_Graph + + + + + aac2c862-fc76-8a08-2a2f-bbf638ad3c85 + GCO_1 + + + + + 180 + 361b0924-bfd1-c020-f913-1fab5eb4bd2d + Grafisches Netzelement482 + + + + + b7d0f363-51bc-3986-9e85-0f941add7a99 + Grafisches Netzelement173 + + + + + 180 + 8f597db7-8d1f-f223-cc99-1f89d4ab1d43 + Grafisches Netzelement351 + + + + + e4f8aac2-5eb3-8597-f66d-0465b5eaef80 + MV3.101 Bus 40_Graph + + + + + 256 + d8dc586b-bc23-0265-0b27-bb96c051ca69 + Grafisches Netzelement419 + + + + + b24da85d-fe2c-5b59-e4a4-ed53f45bd2ae + Grafisches Netzelement564 + + + + + ba85d0e2-b161-4147-bf32-77bebb42b435 + GCO_1 + + + + + 7fac11e9-c55f-7d51-25bd-ff7e061d5210 + Grafisches Netzelement512 + + + + + 41c43300-b21d-c0d8-a854-6e637aaa71db + Grafisches Netzelement192 + + + + + 177 + a3565092-c698-e9a2-b439-eb2296f38c61 + Grafisches Netzelement338 + + + + + 4529c09a-26a2-745d-7840-d401d7e1c3f8 + MV3.101 Bus 30_Graph + + + + + ef1e6caf-e301-0b2b-5375-d7da038d34e1 + Grafisches Netzelement593 + + + + + 7a846e63-34e7-a1a3-243f-2bd4061856ab + GCO_1 + + + + + 7afb0be5-5516-d212-c0b8-9d2b427f75e9 + Grafisches Netzelement520 + + + + + 6d009921-a4c4-ad65-01ec-0b39261b55da + Grafisches Netzelement159 + + + + + 240 + f4687cd8-a770-6ab8-d082-0a0329942970 + Grafisches Netzelement339 + + + + + 58c248c6-30b2-7f74-72a4-391aef227c93 + MV3.101 Bus 75_Graph + + + + + 180 + 81b396d0-b798-0af4-da7b-bb46002785a0 + Grafisches Netzelement580 + + + + + 9ab585a6-bb94-ab75-68ab-0d4423480299 + GCO_1 + + + + + 28d3c859-1cf7-5208-e33d-0812452d6a20 + Grafisches Netzelement657 + + + + + 05a64faf-823a-045c-b7c9-1d1c28b9d4f4 + Grafisches Netzelement166 + + + + + 173 + 422ee789-d6ff-9790-2852-0da66e1788f8 + Grafisches Netzelement369 + + + + + e60c612d-75d4-98f2-1306-cf8442eba22c + MV3.101 Bus 85_Graph + + + + + 180 + 8277651a-8dd9-19b8-0dc1-be68fb3b0812 + Grafisches Netzelement596 + + + + + 3b480b90-38f4-9fdf-0510-7217a378572e + Grafisches Netzelement165 + + + + + 1c605967-d7e9-a209-eb2b-94028a75f419 + GCO_1 + + + + + 8a15d479-27e5-babf-519a-35f8528e8990 + Grafisches Netzelement168 + + + + + 253 + 7a30bf46-afd0-f0db-788e-3760b3c7aff6 + Grafisches Netzelement443 + + + + + 332 + 3bef817f-7a8b-9fd5-5644-3ce2e6c21946 + Grafisches Netzelement366 + + + + + cab1ea01-07ca-ad83-5021-16ad03a0c00d + MV3.101 Bus 66_Graph + + + + + 180 + 0c5a0e8e-ea5c-1231-bf2f-990fa2d94904 + Grafisches Netzelement602 + + + + + c081f815-41ff-a46c-4e48-4ce5f0608cda + GCO_1 + + + + + 1c18e257-7f95-3a57-0506-d69e132e2939 + Grafisches Netzelement146 + + + + + 3174690c-eb3b-8df8-ba64-a59934b3a64a + Grafisches Netzelement170 + + + + + a2fdae49-5cb9-e92f-17c3-744b1cab4025 + MV3.101 Bus 17_Graph + + + + + 177 + bb3ec6cb-b0db-2fa2-4135-157e860b2eb0 + Grafisches Netzelement390 + + + + + 32ae9929-f57a-8892-edc3-c50d19d8f179 + GCO_1 + + + + + 180 + b7a35ab1-59fc-1bfe-d295-24afaf3efbfa + Grafisches Netzelement311 + + + + + 5f6ac04d-0f2f-cd6c-417e-91cbda5411c5 + Grafisches Netzelement171 + + + + + 21ddebf8-af17-f781-eb86-3c379c98a87b + Grafisches Netzelement187 + + + + + 04b6ba39-b81e-f7d5-dcad-21a4dbf43cde + MV3.101 Bus 15_Graph + + + + + 103 + 845849aa-119b-3c26-a60d-6dd16475e5b4 + Grafisches Netzelement367 + + + + + 1d2c3855-fd5c-1c02-e136-1aaf785ded39 + GCO_1 + + + + + 2628c19f-6c31-8008-e824-f9a4e367c296 + Grafisches Netzelement590 + + + + + e8cbccdb-e124-38da-cb83-0aae43980e1b + Grafisches Netzelement188 + + + + + 12780fbb-efe4-97db-7838-ea294eb3db4d + Grafisches Netzelement193 + + + + + 256 + 2ef843e9-6040-4e42-143c-421ffc16ff72 + Grafisches Netzelement405 + + + + + 19455237-a1a3-11d6-cf7b-2223b7f68b41 + MV3.101 Bus 35_Graph + + + + + 153 + 95cecb0f-ee04-c9fe-0cf7-b2411eb1341d + Grafisches Netzelement384 + + + + + 02478020-1fcd-d0d0-7a31-96f9469ecd45 + GCO_1 + + + + + 1e1b1da3-9ee1-1c5c-17ea-1f8166620cb3 + Grafisches Netzelement261 + + + + + 180 + 97ebc341-7f06-b267-a060-fa32e702bae8 + Grafisches Netzelement574 + + + + + 167 + 43076051-64ab-6897-cc8e-a44770f6dfde + Grafisches Netzelement389 + + + + + 256 + 50fde168-cb49-a8c1-8a26-13f0ef001d38 + Grafisches Netzelement406 + + + + + dbcab6f7-081f-78ff-3529-834bc948850b + Grafisches Netzelement138 + + + + + ab942d39-e616-b1d9-e6f3-a9137a5db715 + GCO_1 + + + + + 174 + ddb2a399-a342-6c0b-c954-bd8a083644f1 + Grafisches Netzelement387 + + + + + 503b03da-c02c-075e-885b-26c5c7199b5f + Grafisches Netzelement559 + + + + + 126 + 0f737195-16e9-a049-b584-03e2ff7de67d + Grafisches Netzelement370 + + + + + 5 + 0334f921-1bad-e866-4301-946f009d18dd + Grafisches Netzelement423 + + + + + 2db0d43d-7f7a-2f9c-d781-89b0290ec10c + Grafisches Netzelement259 + + + + + bb69c1d9-3b62-e8eb-1d4a-b2da40fd3c3e + GCO_1 + + + + + 40 + 0550ab49-71c9-27f0-c2e0-c445085dff24 + Grafisches Netzelement383 + + + + + 180 + efc0d999-5af7-6198-e934-8e22e8803f8d + Grafisches Netzelement577 + + + + + 798baa77-db17-3b9f-b181-1b9fd08f92d8 + Grafisches Netzelement172 + + + + + 260 + d74e241d-ae6c-5e5a-2a9e-bd1d183bbf5e + Grafisches Netzelement404 + + + + + b6d3bc03-259e-8aa7-41a1-94ad22a0787e + Grafisches Netzelement176 + + + + + 71514ae6-dfb0-e6f4-deff-23d5ca7972c2 + GCO_1 + + + + + 108 + bc064fe2-fcc5-54f5-8858-4b5c39a711f2 + Grafisches Netzelement349 + + + + + 439efbe9-7f8b-77d6-db1a-b679142b5a8c + Grafisches Netzelement582 + + + + + 432a391b-a857-02a0-5ee2-cab2cd79a359 + Grafisches Netzelement141 + + + + + 2499adea-6593-cacf-6b40-6784e1b179c3 + MV3.101 Bus 20_Graph + + + + + 90 + 552274a0-723c-a939-d058-4df287d58d55 + Grafisches Netzelement432 + + + + + 9db0660e-c02e-ba8d-e538-dcb10a17b4d6 + Grafisches Netzelement163 + + + + + 1d9934f7-bbc8-a1a7-e6e0-e8a727d0215d + Grafisches Netzelement605 + + + + + dcbe62fd-112c-efee-8433-49df987b1b66 + Grafisches Netzelement147 + + + + + 380c4b44-d926-c7c1-088e-1d35ee7fa934 + GCO_1 + + + + + 340 + 793e44e5-7253-bd85-f170-f3b2ac1dea9e + Grafisches Netzelement458 + + + + + 9c09a71e-d803-1e47-560a-38d5a630bf00 + GCO_1 + + + + + 229 + 2cf6d2ab-f068-1a4b-e410-c71e51074960 + Grafisches Netzelement431 + + + + + 180 + 19ece575-359d-8297-42ab-eac2ef3c98fd + Grafisches Netzelement515 + + + + + 009d19a9-b066-0c8c-1cf3-4d545ca6edad + Grafisches Netzelement604 + + + + + f9315997-d0b6-a240-3819-49672cc1eba3 + GCO_1 + + + + + 175 + e4295646-6e7f-97d9-8a47-52faafdf4243 + Grafisches Netzelement353 + + + + + 276 + 7ebbcd5a-d845-412c-d4f9-7e82ad00d286 + Grafisches Netzelement441 + + + + + c755be90-29b9-986e-bb69-fd1edf6b1d61 + GCO_1 + + + + + 207f386f-501d-b33c-a736-c612a32782d0 + Grafisches Netzelement164 + + + + + 243 + 5ee27373-bc9c-4481-2493-e448e10e203e + Grafisches Netzelement429 + + + + + ee7ec4fe-34e0-be3d-6dfc-aecce518d5c3 + GCO_1 + + + + + 180 + 95a0014e-f76f-ec31-4f57-3df381d1676b + Grafisches Netzelement566 + + + + + 159 + 8536fd8e-f2bd-6b5a-4fa8-b19f3e8cfdbc + Grafisches Netzelement395 + + + + + 167 + 8057984d-3110-f0a2-151a-1a84e494d8be + Grafisches Netzelement357 + + + + + d45d24ca-c60b-fa95-b8af-1bb7e7e32cad + GCO_1 + + + + + 0851624b-73cd-2f18-31af-fb5deff4fe5b + Grafisches Netzelement153 + + + + + 8 + 71b3b8ff-6931-39d0-a638-b6e4c026b865 + Grafisches Netzelement410 + + + + + d5e02112-a549-0c3a-342c-ade231cd5066 + GCO_1 + + + + + 180 + 527dc39d-3d19-9bd0-14f0-9ced1ae924a5 + Grafisches Netzelement607 + + + + + 162 + 8ae6646b-5d0d-2869-1ab4-c3d86ac42f93 + Grafisches Netzelement378 + + + + + 9e2d66d1-c75f-4e3a-6b66-33161637079c + GCO_1 + + + + + 253 + 9db6ed1b-5767-77ec-1925-3ffe2f455148 + Grafisches Netzelement414 + + + + + 3f5d9eff-874f-3ffa-c488-7fd525a03334 + Grafisches Netzelement139 + + + + + 4c831559-958d-1662-4fca-4cd4b26f0b6d + GCO_1 + + + + + 45 + 00e9d7ed-fc77-ebf2-87e7-0af9e9d85c98 + Grafisches Netzelement450 + + + + + d9dcc0ec-1a4a-cf22-02fe-1762703d9c8d + GCO_1 + + + + + d9c35df1-6122-5668-30e6-c9c60f4abe83 + Grafisches Netzelement552 + + + + + e2187b1d-00e3-daa9-65e0-8345922918e8 + GCO_1 + + + + + 15a279d7-91e5-a2bb-b21b-9eb3a5c2425f + GCO_1 + + + + + 148 + 7a056685-10d8-a339-44ad-5225a08f974c + Grafisches Netzelement364 + + + + + 246033ba-0eea-a7d5-177a-1277146410ae + GCO_1 + + + + + 4e041c4e-45db-1088-8136-811f82747e82 + GCO_1 + + + + + 093a08be-a86c-bc01-eba4-00bb3fa18439 + Grafisches Netzelement594 + + + + + 216 + a0e2e305-38ff-8bdd-00c4-4e20b92583ff + Grafisches Netzelement444 + + + + + 87522461-c0c2-e0b9-eeb2-1e2840ae5f0a + GCO_1 + + + + + a258c16f-1ffc-ebd7-5ccc-7a8e9a0a892d + GCO_1 + + + + + 118 + 43bb3dec-bc76-47bf-42c8-a0a75848c907 + Grafisches Netzelement356 + + + + + b7773f83-1258-8388-f0a3-0a7a6c51884e + GCO_1 + + + + + c79dd5c5-1a0e-985d-f811-b04aea2aedb1 + GCO_1 + + + + + 78 + 2212260e-4a87-5306-6317-eb71a077bb1c + Grafisches Netzelement425 + + + + + 0ebba5fd-bc4d-5800-ce2d-122d916ddc65 + GCO_1 + + + + + e3d8770d-3066-c37c-d266-386ba04a06a5 + GCO_1 + + + + + 238 + 6764c290-9056-28be-5db6-0ca75670c626 + Grafisches Netzelement409 + + + + + b3430abf-a800-2d53-463e-5568f903a9f2 + GCO_1 + + + + + 110 + 3e9ca4db-ab0b-5d19-3073-41e2f5d2aa1a + Grafisches Netzelement397 + + + + + 8863f5bd-de39-c101-f741-c974b1ed0291 + GCO_1 + + + + + c864398a-7358-b95c-4da1-827bda185ba0 + GCO_1 + + + + + 87 + 62c29592-87c0-4293-3f3c-baf9dd7208dd + Grafisches Netzelement446 + + + + + 48c8e757-ffac-0a72-c119-094df399ac7f + GCO_1 + + + + + 4a6dd3c7-1c40-416c-d60e-0b0d7268a8bc + GCO_1 + + + + + efee5082-227d-30c5-0f89-5e2ad851bc69 + GCO_1 + + + + + 261 + 5240f959-6c38-d5fc-5bf0-4cad66e8382d + Grafisches Netzelement427 + + + + + 5f300a24-8591-83af-b110-36102adb6b15 + GCO_1 + + + + + 119 + 889f189f-9e65-030d-d791-391731c31263 + Grafisches Netzelement391 + + + + + 37a49993-b728-7c4d-9d48-277137e95fd6 + GCO_1 + + + + + 8850900a-3f17-4c9a-eea7-be47afe6cfbb + GCO_1 + + + + + 337 + 70686fcd-bbb3-eef6-e4d0-8fab6e4b3aa1 + Grafisches Netzelement456 + + + + + b1cfd87b-39e1-8eb1-4577-551ce9fc739d + GCO_1 + + + + + 039d5a54-2078-fab3-6273-152565cc6908 + GCO_1 + + + + + edd7f2d0-135d-1aec-c54b-b923ff820026 + GCO_1 + + + + + 297 + 35c994b7-d637-791a-b2e5-01a24150f0af + Grafisches Netzelement421 + + + + + b60415b2-eaa2-9dff-c837-9ac1d6f36423 + GCO_1 + + + + + 186 + 60b62eeb-8375-843a-21bf-c75094bb5e6a + Grafisches Netzelement347 + + + + + 22f85d47-4593-ed7d-7c9f-13fdac0caa32 + GCO_1 + + + + + 5fa2dc96-f10c-6c78-253d-bcbdf913dfcb + GCO_1 + + + + + 28232438-5f8c-0e38-95d6-4e88ee531f3c + GCO_1 + + + + + 216 + 38d98476-cd03-286a-cc80-bc939caba0d0 + Grafisches Netzelement473 + + + + + 27d446fa-ff26-6355-47f1-4a74651b6ab6 + GCO_1 + + + + + 90 + eb1692f5-2d58-7cae-90fb-5b792cd68600 + Grafisches Netzelement335 + + + + + f650c26d-278d-68cb-ea4b-1ab507ec81aa + GCO_1 + + + + + 125 + 7e981c19-db54-5010-b5cd-060c5be082a8 + Grafisches Netzelement377 + + + + + 78063407-499f-4bcb-682a-cf09ffcb2d7f + GCO_1 + + + + + 237d2a30-981d-745d-6e63-60eb44cbe7a4 + GCO_1 + + + + + c9721d6d-7567-254d-189c-ece9bcc5394a + GCO_1 + + + + + 66 + 2ab38423-8ae4-e775-d0eb-941698c266bc + Grafisches Netzelement470 + + + + + 28ee1fb2-ee2d-39a2-2caa-c63cfe04a61d + GCO_1 + + + + + 225 + 54f05bb3-073e-0c8a-2436-989f02b85f9c + Grafisches Netzelement386 + + + + + a5e1b732-e5a8-cf32-55ec-5248e8440f95 + GCO_1 + + + + + 78584edd-d481-46fc-d0d7-55f64a2bba16 + GCO_1 + + + + + 135 + d42e389a-f112-d4df-3800-aa49fc4fab2c + Grafisches Netzelement375 + + + + + 60bc053e-7e24-2f6b-c1ce-859521120167 + GCO_1 + + + + + 4e3bdcf0-c729-3757-1257-207fc889a0dd + GCO_1 + + + + + 47ab0734-393f-d2d3-e5cc-7a1d53f20a08 + GCO_1 + + + + + 54 + 7fc9a01e-11e7-a183-20e6-60352bc0643d + Grafisches Netzelement472 + + + + + f79b2dff-a808-4350-3087-646163c2bfb4 + GCO_1 + + + + + 247 + 4e7791d0-4047-c7d4-51ce-0e6635033b76 + Grafisches Netzelement437 + + + + + f3468bfe-a05b-726b-2643-68c7f4a2aebd + GCO_1 + + + + + 105 + c09a89dc-d26e-ff9d-d23f-d0b20e410171 + Grafisches Netzelement354 + + + + + 8970037a-4f8c-9312-8eef-77ba05531a24 + GCO_1 + + + + + 3c828776-9ef0-9d00-cafb-bab8d22c002b + GCO_1 + + + + + b88b7f7f-aac7-a6f5-5768-14f13586b5bf + GCO_1 + + + + + 25 + e69c82cb-e294-1acf-3691-9ec058efdafb + Grafisches Netzelement452 + + + + + 91008c71-ce93-3dd2-15e6-61f9f30a7efa + GCO_1 + + + + + 449b91ce-d056-fa85-7025-25baaa5e239f + GCO_1 + + + + + e1ecb8ab-8c96-3ded-8358-89dc2e6a9dcc + GCO_1 + + + + + dbda7c76-c0bd-adde-016c-25d6f70f2558 + GCO_1 + + + + + a8bd8612-9e74-24a1-3aa1-8b1ccf1dd3e6 + GCO_1 + + + + + 161 + 62f9ea20-2630-82e4-9534-e8586d1e17c5 + Grafisches Netzelement374 + + + + + 8af993a6-db95-0f37-5822-38f3e5146d14 + GCO_1 + + + + + 328 + 8a419a59-4e32-f861-1c5f-ea8e688a91db + Grafisches Netzelement408 + + + + + b6330441-3cbc-7e21-2f4d-9dc52292b1b9 + GCO_1 + + + + + d92acd52-f83b-cf55-292f-c423aad5c0a0 + GCO_1 + + + + + 730ec781-b8ae-ca01-b71e-abb4f2322efa + GCO_1 + + + + + 8c711b43-c3ff-a446-9fca-810df952796c + GCO_1 + + + + + cc20dbd6-36c4-6b0d-7a19-6b399c6ef258 + GCO_1 + + + + + 229 + e3033a98-c4a9-e7b3-7ef5-312adbf10c05 + Grafisches Netzelement376 + + + + + 46b13e52-407c-d0e4-f7f4-692908809575 + GCO_1 + + + + + a21442df-1786-7304-46e4-22761f143748 + GCO_1 + + + + + e5d2ae85-66be-b038-9ecb-fe2a8c1b6143 + GCO_1 + + + + + 70e62232-7c00-ab60-0c7e-6743c1cb6cd3 + GCO_1 + + + + + 43d72f35-c360-fe31-f14e-af7b2c92f05f + GCO_1 + + + + + f71d07a6-675c-2b6b-7fbf-67167fa5c3be + GCO_1 + + + + + 29e801e0-31ef-b32f-3f9a-bca4cac03997 + GCO_1 + + + + + 9c0ba0dd-d0e6-1b7c-12f8-9f3077293d1b + GCO_1 + + + + + 6cd32d15-5548-0be0-6a57-0a6a8b78806a + GCO_1 + + + + + e7c3fa37-db03-02b4-b9c7-d64e9744740d + GCO_1 + + + + + a3f0344b-a578-1e85-24c2-7c40ed386d6d + GCO_1 + + + + + 9893dee9-e121-52b2-83f5-7838f5361782 + GCO_1 + + + + + 27 + 6371bb96-57a4-7678-b5c4-ced2126d0a77 + Grafisches Netzelement455 + + + + + c8d5bd65-c0dc-dfd9-470c-e2f2433cd35b + GCO_1 + + + + + 4afc4855-84f3-2503-b05a-295d724efaf9 + GCO_1 + + + + + b4509737-b83b-c4a3-b83d-904ccaefe27d + GCO_1 + + + + + 21402b58-a720-e67f-16e0-290fe390a149 + GCO_1 + + + + + a26994dc-23c2-7610-9549-d10bb0f372ae + GCO_1 + + + + + 123b7856-c134-fb90-88d3-a348a82f2e3f + GCO_1 + + + + + 31805bef-a47d-d455-106c-7276e2226145 + GCO_1 + + + + + 25 + 459cfc1a-26ca-4ca2-4571-ee88e65341db + Grafisches Netzelement454 + + + + + 5ffb9a68-1b29-7616-8119-7e2403874023 + GCO_1 + + + + + a62484c0-f0ac-2894-6d89-7e62ca837900 + GCO_1 + + + + + 1dad68c5-2fe9-c4aa-c5dc-247e4ba45382 + GCO_1 + + + + + 46fd3328-919a-cca6-a9e6-5e8e15dd4ac8 + GCO_1 + + + + + 27 + a7d1565e-c966-c9df-37a7-73d09bacdf82 + Grafisches Netzelement463 + + + + + 36c2dd4e-aa54-4325-4a1f-57bce6bd551a + GCO_1 + + + + + 74519a92-6321-cb1e-d3d9-5d8a7d11ae9b + GCO_1 + + + + + 177f368f-4a23-038b-317f-76f08dd0133e + GCO_1 + + + + + cfaf9c76-c1f1-3ddd-a922-1b78091faaec + GCO_1 + + + + + 8e905576-a15d-a25e-699b-f3bdbb482ca9 + GCO_1 + + + + + 130 + db0253d6-5395-7a32-5443-c8cbc26ffa43 + Grafisches Netzelement461 + + + + + 180 + 76810ee5-4880-701a-9f6d-d2b72f3af882 + Grafisches Netzelement333 + + + + + 7481f875-8a30-6494-db8e-f04c0845eea1 + GCO_1 + + + + + 01f963ee-5f5f-6539-9ef7-f235d9ee1437 + GCO_1 + + + + + 2256626d-2e6b-ae24-f881-22aa234f12fd + GCO_1 + + + + + 350d3b56-37f4-f8b3-1d70-035ed262b15d + GCO_1 + + + + + 0d49fefc-057a-9293-687f-4b1ce606ab64 + Grafisches Netzelement459 + + + + + e0cdfc89-baf6-5874-c3d3-cd1c31846124 + GCO_1 + + + + + 180 + 9394655a-79fa-4a86-4c3c-a49fdcbc907a + Grafisches Netzelement288 + + + + + 420e0dcd-c897-e093-9de4-723398e67c75 + GCO_1 + + + + + fe065f19-8c5e-aa6f-1095-c4f2e4645367 + GCO_1 + + + + + 017d8395-83c2-0735-a17b-d49390b6644c + GCO_1 + + + + + 75adfd5c-90d3-3917-e9ae-07063d86a0e5 + GCO_1 + + + + + 83 + 192de97d-e940-31e7-15c0-70761246e9c7 + Grafisches Netzelement460 + + + + + 180 + b3e3269a-bee7-f287-049a-d2e3e7c3ed03 + Grafisches Netzelement334 + + + + + 066e2aa0-5540-af7b-15ee-2fccd7553c77 + GCO_1 + + + + + 06ed5053-b27a-36f1-ff39-33259fd1a2cd + GCO_1 + + + + + d132d6b4-7786-c901-ad6c-94784fcee0ba + GCO_1 + + + + + 2bb9769b-3bc5-f51e-3eb8-858dab0b3f36 + GCO_1 + + + + + 84 + 262c3b48-79fc-65f4-0ca8-99e69845c115 + Grafisches Netzelement480 + + + + + a09ef301-6b45-f83d-a15a-54d71720bb83 + GCO_1 + + + + + bc9f99c7-050b-e674-fc83-08ef48349edd + GCO_1 + + + + + 180 + 29713c3a-ad66-71ec-98a1-71ca2767746c + Grafisches Netzelement287 + + + + + f4f19e03-cc0a-3eff-0a4b-77eceb782813 + GCO_1 + + + + + 1609fc45-ccc9-2499-090d-2cdb6dd22cdd + GCO_1 + + + + + 61 + 3674655b-5cbd-8759-d06b-555c0de49a88 + Grafisches Netzelement474 + + + + + a1bccacc-851e-fc88-784a-b71cfeaff9d9 + GCO_1 + + + + + 5acb383b-e469-1ccb-f4a2-c0839f85c5eb + GCO_1 + + + + + de515879-e112-4267-1b45-e3dd484b43b0 + GCO_1 + + + + + 180 + 45b212a2-d69c-1dcf-e314-c0dd72063430 + Grafisches Netzelement283 + + + + + b9c3d6d7-854f-285d-c41c-e55405060cc3 + GCO_1 + + + + + 804cdc6f-3f35-aceb-7ec4-637827c933f8 + GCO_1 + + + + + 9c1d3407-1562-f65f-f09d-bb35e2ef9fef + GCO_1 + + + + + 3b63ebe4-17fa-af13-893e-dcf2ecb0cb59 + GCO_1 + + + + + 280 + c35d8504-b79d-4931-7d31-888c0312b6df + Grafisches Netzelement479 + + + + + 9d00fed9-984e-45d8-fb06-6c3cbba0593b + GCO_1 + + + + + ca6d72e7-6010-cd68-22a3-75e02fbe6798 + GCO_1 + + + + + 180 + be13c5c3-576e-a6a1-aa79-073f20d7f436 + Grafisches Netzelement281 + + + + + 721aeb99-d383-ad0c-b7d1-dddd2ca5114d + GCO_1 + + + + + 7f30ce21-849d-434f-a93f-1e9ecdffa4e8 + GCO_1 + + + + + 5f285835-ee05-f3fa-bbfe-fa791eb37ed4 + GCO_1 + + + + + 4e821239-4e5e-88d9-8648-766fc5717841 + GCO_1 + + + + + 306 + 8b10cbf6-f584-5b49-e5ef-589b6de04571 + Grafisches Netzelement457 + + + + + c1a54363-949e-b714-6ecf-4864ba4a0461 + GCO_1 + + + + + f0042762-98c6-8458-387c-39489705907d + GCO_1 + + + + + db3cd148-7743-cd9b-4eed-a0abe3016338 + GCO_1 + + + + + 1790d636-c7de-5856-5a05-2ddc686deda1 + GCO_1 + + + + + fb1cd3aa-6392-f406-2b23-b1c567dfa4c2 + GCO_1 + + + + + 72472dd3-70c8-cc48-6a86-0801aa8a111c + GCO_1 + + + + + 3 + 18257ac4-8619-33c5-a290-a4ee7bc9f680 + Grafisches Netzelement449 + + + + + bc8e84cd-6053-0c46-5a83-a0331132ffe0 + GCO_1 + + + + + 207 + b2882fa1-c0d4-b06f-3ba4-dd0048fde27f + Grafisches Netzelement381 + + + + + d7cff906-e951-e7bb-69d3-7deb3b685bc1 + GCO_1 + + + + + df236470-83d2-4316-ab73-8082e11c5335 + GCO_1 + + + + + a7a55a37-79ec-ef06-502f-78e2f6f18beb + GCO_1 + + + + + 9511f07f-ceb1-a82b-fc1d-35526c723351 + GCO_1 + + + + + acf8122f-68ae-d534-2b9d-d327aa48baf4 + GCO_1 + + + + + 238 + 81a8042a-3499-d880-cfcb-17404c933395 + Grafisches Netzelement478 + + + + + f5d138d9-4f15-388e-d606-1e59446e9af7 + GCO_1 + + + + + 8d9be6c4-893f-ef1c-ae3c-f8e9fc76d1f8 + GCO_1 + + + + + 5252c7c0-025a-6794-a8a6-400253788f93 + GCO_1 + + + + + 78eca523-fa86-b7ab-7b23-04bb41355cab + GCO_1 + + + + + b299b248-1840-f258-c442-647cd7157a4a + GCO_1 + + + + + 06bd6a1f-9ec0-1a69-954f-0b4b181f3313 + GCO_1 + + + + + 4c8cd9b9-7b75-8e8e-44ed-a02f741884b1 + GCO_1 + + + + + 23 + 4b22d160-6fc6-d1ac-90f8-cfc1e792cc53 + Grafisches Netzelement412 + + + + + f9111711-5b2f-0f55-0f72-4f4e6a1c562a + GCO_1 + + + + + 04318b1d-ad46-44e2-3483-303b08c7b8e2 + GCO_1 + + + + + 24cac968-ab82-4ef2-a437-7dfc655b3fc6 + GCO_1 + + + + + 258cd841-6b08-380b-9843-a526f1bd03e8 + GCO_1 + + + + + 207 + b6427d24-77bf-f907-3db2-bcea6e55f674 + Grafisches Netzelement438 + + + + + 180 + 0cdb1c01-0132-956b-c7b1-db023dba3d04 + Grafisches Netzelement282 + + + + + 91c737bf-2176-3709-6bdd-fd6e088260fa + GCO_1 + + + + + 77 + 7983e727-cd73-6bea-a673-91868802c146 + Grafisches Netzelement465 + + + + + c47c959a-fc10-16fd-ea8b-10a4241a997f + GCO_1 + + + + + 1a9425a1-83b7-972c-157d-6b46d7539144 + GCO_1 + + + + + 83dde677-f94b-9767-2690-e7f9ed8ed6c8 + GCO_1 + + + + + 352 + 7ceca749-3ffd-b346-91fd-bbbbe9bb1d8b + Grafisches Netzelement434 + + + + + c1d7ccad-3db2-2d28-7404-06ef5d39085a + GCO_1 + + + + + 180 + ad633bbb-5f10-2acd-1a78-813f529600df + Grafisches Netzelement326 + + + + + 57 + 690580a4-54b3-121a-f311-0a4349a3e508 + Grafisches Netzelement471 + + + + + 84b45eae-a9f4-b3ec-b369-5ae790cd5716 + GCO_1 + + + + + b0c1fcde-204c-2e60-1503-2e4a1c24cc3e + GCO_1 + + + + + a135d142-d148-bf2d-367a-3a730a62bf7a + GCO_1 + + + + + 1fdec8b9-75f5-eac3-f991-dd1aff61f847 + GCO_1 + + + + + 253 + 6a43a0e8-91d5-10e4-5738-9acbb68370ba + Grafisches Netzelement453 + + + + + c875848c-cd3c-92b5-bb36-f4e7a96bbaa4 + GCO_1 + + + + + 6d346b68-356a-c85a-5622-581540901842 + GCO_1 + + + + + 143 + e33a6785-40f2-e533-deb8-a236b2fdb5e3 + Grafisches Netzelement475 + + + + + 7e28b223-b0bd-f5b4-346a-16d36fffdebf + GCO_1 + + + + + 59c40286-a3ac-887c-8dd1-7a1d5712f71e + GCO_1 + + + + + 8cb5b84a-dcec-7a43-c12b-cffb586c1438 + GCO_1 + + + + + a4fea0a7-0271-b378-edb3-4212c13bae9f + GCO_1 + + + + + e845002f-9c05-1028-a9e0-df0e81bcd2ed + GCO_1 + + + + + 124 + 3fce5d96-77b4-9eda-b073-ffa2d9200eeb + Grafisches Netzelement451 + + + + + 9dc9fca1-4d77-4c39-b7dc-35349b786791 + GCO_1 + + + + + 5f76b0d2-da58-98e7-e6fc-4a1b29a3cf58 + GCO_1 + + + + + 30 + 6cb1b4c6-55be-9a43-637d-625a92537845 + Grafisches Netzelement462 + + + + + 6eea0564-85c4-dda4-b3c0-06e099853df4 + GCO_1 + + + + + 837dd4dd-cf33-bdd3-3ff9-31920823d11e + GCO_1 + + + + + 05513653-7f6f-a154-f5b9-1dfc56aef155 + GCO_1 + + + + + 62571880-8a15-2299-cc88-48ca8be96179 + GCO_1 + + + + + c59fa4c7-a90f-71f9-f08b-5fb80bcf5d28 + GCO_1 + + + + + 197 + f420670e-a5bb-1785-456a-f2955dd8ea2a + Grafisches Netzelement415 + + + + + a3784ac3-d08d-800a-2de4-7d2b93f7577c + GCO_1 + + + + + cbd5b7df-7a10-4d79-f6c3-05882dfb962e + GCO_1 + + + + + ffe80690-a0a8-570b-59a9-8229849dac5e + GCO_1 + + + + + 35c03969-f87a-b192-8527-2e1c2a7a8237 + GCO_1 + + + + + 3 + 541b38d1-1a3f-da3e-71f6-36b4fda840c8 + Grafisches Netzelement448 + + + + + 60aa7597-aae0-1c93-54da-1b079e781015 + GCO_1 + + + + + 6343a4a3-e635-006a-377b-a3047dde37f9 + GCO_1 + + + + + 50376ebb-8e37-4ef8-c1b6-a40937cbf3d5 + GCO_1 + + + + + bda880c0-a57a-165c-ba8c-9186166fc832 + GCO_1 + + + + + dc62804c-47fb-4eea-4fc2-2316ae0e1816 + GCO_1 + + + + + 238 + 54144aeb-623f-e28d-48f4-33b76060a44a + Grafisches Netzelement420 + + + + + 233 + 898265dc-a056-4dfd-dfd3-95efc4f6caec + Grafisches Netzelement468 + + + + + a167f8ae-6246-6690-5fc8-a4bcf444f540 + GCO_1 + + + + + 5da71637-c523-ec25-c170-086b5a03ec39 + GCO_1 + + + + + f4ad0d8c-ab6e-d6b9-0c57-7ebdff9a8578 + GCO_1 + + + + + be5dcb58-216b-989b-36a4-9ceaf8a48778 + GCO_1 + + + + + fce1f53e-4631-1cca-1048-34ed172abb93 + GCO_1 + + + + + 241 + f26ddedf-9d38-9957-d221-99e0632a1d82 + Grafisches Netzelement398 + + + + + 9 + 8f7356c7-46df-2ea1-25f4-155f20c63ca9 + Grafisches Netzelement411 + + + + + 4b20e1cf-a3b2-e9ed-9725-1ef7afec1a4f + GCO_1 + + + + + f5a2a1aa-fad1-1ff3-7a7b-1debe6013522 + GCO_1 + + + + + 2d287d21-70d4-79c5-984b-eef9f8e44a53 + GCO_1 + + + + + 2ca5433e-73ce-0680-b668-abca8adf2640 + GCO_1 + + + + + ee1c9465-7c15-b8c4-8b6e-291838ab5d7f + GCO_1 + + + + + 239 + cf5180b5-feb5-682f-fb6e-5ae585ebac3e + Grafisches Netzelement400 + + + + + c9ece65e-740c-ee21-91f0-4ffd51f8a4f6 + GCO_1 + + + + + 45 + 5819d873-3fb7-0b8a-867f-a50cfceae8f2 + Grafisches Netzelement477 + + + + + 03e81cbe-9f39-293f-797f-f423f65534df + GCO_1 + + + + + 74192b65-e4f0-c2b4-5f70-5bae848be419 + GCO_1 + + + + + a10c33b6-7ed4-4076-a8dd-044831a855bb + GCO_1 + + + + + 935b2cce-ddaf-e505-3abf-56ae90c4ab37 + GCO_1 + + + + + 38d5d9ce-5bf9-3add-33ce-bafd15e0bff9 + GCO_1 + + + + + e6046db5-0d89-1c0b-39a8-191af81b5c6a + GCO_1 + + + + + 278 + def612a2-57de-a3a3-9272-cb572dc11e39 + Grafisches Netzelement341 + + + + + 7ed94c91-ee74-92f1-c106-0ba5ed9cf697 + GCO_1 + + + + + 191 + a127cb84-ee4c-06eb-b97c-417f81e93b0e + Grafisches Netzelement469 + + + + + 0d6b4c17-0583-f225-c3c2-68d109306fa1 + GCO_1 + + + + + 948ea29e-223b-f10e-4a7e-c83af18f2223 + GCO_1 + + + + + a4fef77f-b9d8-e341-6151-78a382022777 + GCO_1 + + + + + acd00178-e731-f68c-4f60-572276461700 + GCO_1 + + + + + f10af65d-54a0-b1db-7539-544164763438 + GCO_1 + + + + + 243 + b436db9f-a48d-935b-f9f3-653b993a98ed + Grafisches Netzelement413 + + + + + 4c58919b-5d91-2c3f-a6b5-bcb555f48e1b + GCO_1 + + + + + 153 + da6edf7f-8a9d-2eb0-14a5-6bd491f019f4 + Grafisches Netzelement464 + + + + + 2e3abc14-c6bc-c152-6684-1a7b13e2ada3 + GCO_1 + + + + + a3529014-76f8-6cd7-0e88-71a14ff51200 + GCO_1 + + + + + 1afcfc7b-8b6c-b396-8978-ebd3268a1cbe + GCO_1 + + + + + c9d1c81d-402f-2bee-7ec6-596dcd6d5626 + GCO_1 + + + + + 945d184e-1513-e09b-12a3-470aebb10cf6 + GCO_1 + + + + + 2470b3c1-f884-4ce5-8d3b-796e1e2871cc + GCO_1 + + + + + 241 + 2f674407-bdd2-158f-fe00-434369e57e26 + Grafisches Netzelement416 + + + + + 982041d3-8f2d-3a4f-0fa0-2a05fa835de1 + GCO_1 + + + + + 67 + 9771adf0-d124-3a6e-a877-1017def3c073 + Grafisches Netzelement476 + + + + + d5e4d092-f4c9-d060-ca98-8dfc833bd97e + GCO_1 + + + + + 5822ee13-effb-96fc-f613-87fbaedd7b59 + GCO_1 + + + + + 83f5f6e8-66e8-6c34-6ed4-57c318858650 + GCO_1 + + + + + 2c737172-967c-8ee0-dcfa-91255622142e + GCO_1 + + + + + 8939ad5c-4139-bbfb-5e3e-ea843fba8d15 + GCO_1 + + + + + e84485da-c6f6-cdb9-7d42-9128a64f6fb8 + GCO_1 + + + + + 45 + b0cc5984-49b1-7624-a49b-33e2fe1e5129 + Grafisches Netzelement430 + + + + + e10d5f1f-b759-bb88-e45b-64e5b11b1bac + GCO_1 + + + + + d39e1cdc-6e12-902f-b4b7-a6bec2f76d5f + GCO_1 + + + + + e747e502-082b-0f87-7733-dc0287e6ede2 + GCO_1 + + + + + c30bfadd-44c0-ac00-85ee-8e1ced6c53c0 + GCO_1 + + + + + a0df7bc5-98b2-ab0e-9693-a2eaa4a4ec59 + GCO_1 + + + + + 72 + d877bec6-d806-ab76-207e-48df15217ad8 + Grafisches Netzelement407 + + + + + 62d782ae-f7b6-fdb6-c0f9-50d01254e4d6 + GCO_1 + + + + + 2e27987c-c765-dd84-1161-29d8fb538678 + GCO_1 + + + + + 476b7634-7a69-eba1-c71e-22fc9ef2c608 + GCO_1 + + + + + a5ff5ed4-4960-40c5-28fd-0032cb6a0773 + GCO_1 + + + + + 84d4fedc-aef7-3c32-97c9-e2eb4637c38a + GCO_1 + + + + + 378e0b22-353d-4140-ecff-0c3ac6fb90e0 + GCO_1 + + + + + 64eea0e9-48f5-15f6-ac63-64974c03e743 + GCO_1 + + + + + 4a9d33cc-cad0-5916-c560-b994636a160f + GCO_1 + + + + + 1f6c42ca-dd3a-f43f-75f2-ff4a88874738 + GCO_1 + + + + + 78078d42-68dc-05ba-0c52-f79cae7f7830 + GCO_1 + + + + + 85e60ef2-557e-f394-43d0-1eb6aec3bca1 + GCO_1 + + + + + b3835e46-bb4d-2ba0-f135-ae338213f7c5 + GCO_1 + + + + + f44dc973-5719-e7d9-90a0-094bc46bafbc + GCO_1 + + + + + 9ea6db50-f618-9ae0-593b-90f04b27a031 + GCO_1 + + + + + f909b2e0-75d4-65b6-c13e-d417c690d6fe + GCO_1 + + + + + 0e950d11-1c49-4cd9-7697-80424d01d071 + GCO_1 + + + + + ceb381c5-dc28-6572-2e6b-2a24d0dd1e5f + GCO_1 + + + + + ddae8322-9a52-2dfe-b76b-cb21a5aacb08 + GCO_1 + + + + + cb7eef77-3969-c4c9-8493-a4cf92f5495b + GCO_1 + + + + + c4bced24-6ec2-76d4-e2b1-a6b7d2970b2e + GCO_1 + + + + + 4d0eaeef-076b-bfa8-4da7-209961ad4707 + GCO_1 + + + + + 5dc93e0c-934b-7672-30b0-eb87f565a613 + GCO_1 + + + + + 822c5187-1d5c-adc1-ac80-235ad240b57e + GCO_1 + + + + + 7076b153-4593-5fa3-592d-1f02d02e5d5b + GCO_1 + + + + + ef21af11-d0de-cc4b-771d-9e29c872a8af + GCO_1 + + + + + cf5b51fd-56a1-af60-c55a-7ad59724f24e + GCO_1 + + + + + e4a805c4-a0ac-ff27-f08b-7d278cf211ed + GCO_1 + + + + + eb58aeaf-fbc1-fe3e-bd77-72b97e7cc114 + GCO_1 + + + + + 2a59354c-7e48-344a-e81a-4c886697c96f + GCO_1 + + + + + 3879f3b0-206e-f457-3580-3dc1bf9d8ab6 + GCO_1 + + + + + 4cd45450-6190-fd51-418e-a60e7c228166 + GCO_1 + + + + + 95eb90c5-78ab-66ec-fad0-d9484f4c019c + GCO_1 + + + + + 6e3a6482-7f80-191f-0604-abe2cffe761f + GCO_1 + + + + + 3cda323a-1463-ffb0-8190-3b4efb0161a1 + GCO_1 + + + + + 8f3cea25-3dc4-dea7-779c-19e0ddb65948 + GCO_1 + + + + + 0584b00f-01f2-2cfb-c3ab-6fce1cedbc33 + GCO_1 + + + + + 24abb9b8-1e94-866f-ac63-aca9ad22721d + GCO_1 + + + + + db464ae1-70f0-925e-190c-63fe0d3ecf74 + GCO_1 + + + + + 39f9e510-24dc-d422-01e0-e08cecd8490f + GCO_1 + + + + + c4f200af-1f59-4ffd-a9be-233c77a577a5 + GCO_1 + + + + + 5df0af43-dc1c-c3c6-c798-8f485445919e + GCO_1 + + + + + 122855b6-8fb1-3048-46c0-22c5f1cc08a8 + GCO_1 + + + + + 4565cf07-44ba-1b6f-3110-eeb25d964377 + GCO_1 + + + + + 2fd642b8-ced1-2cd3-e328-55d89e4afdb5 + GCO_1 + + + + + 27eb6813-26bf-0ddb-68bb-a7d6575ee371 + GCO_1 + + + + + bca25a38-d2a6-199c-f475-64f0a506a04e + GCO_1 + + + + + 82c3e583-677d-3d92-7245-9e02b00f229c + GCO_1 + + + + + 9ac9a3d2-c150-d6fa-688e-8615c92dc0ed + GCO_1 + + + + + c1f3f59e-49d6-960d-bb78-ce43c195230f + GCO_1 + + + + + 85d0d332-3d62-947e-14a1-1f7ffa130fc9 + GCO_1 + + + + + 9bdc172e-29a5-953b-355a-77c4310ca573 + GCO_1 + + + + + f37d583c-0374-852d-5646-fdf7e71dad62 + GCO_1 + + + + + d760bbf2-528d-1d6a-94e5-a4484263a26d + GCO_1 + + + + + 0cdaff78-7835-600b-1285-61b83e97e10a + GCO_1 + + + + + 97c0db46-1901-686f-5649-3207be786347 + GCO_1 + + + + + 855001b6-3abb-718c-eca3-ddbbadd44f9f + GCO_1 + + + + + 9d0dcd40-a574-ac8d-9423-00e09a7f2a15 + GCO_1 + + + + + 0bceb7fb-1310-31da-ac51-967c1ffc23cf + GCO_1 + + + + + 8fa23a08-c31f-51f4-a96a-70012e281a48 + GCO_1 + + + + + ea78982c-3a39-72ac-e9fb-89623b8912a0 + GCO_1 + + + + + 6dcbf0ff-4341-4c16-a4d2-ae5c4b2c46ef + GCO_1 + + + + + 1e28e6c8-4431-5ded-e35d-449ab6632f5c + GCO_1 + + + + + 914d6d5b-3252-9c60-43db-8058c5b25ca0 + GCO_1 + + + + + 54e4b8f9-c14b-f755-4154-f9a21ee732cf + GCO_1 + + + + + 5d576ab2-5b17-4022-8eeb-cce60272f781 + GCO_1 + + + + + c0bca73e-b49b-1e93-1f6c-a2b29775c020 + GCO_1 + + + + + 45951fb3-2ab1-f446-c59a-b38c06311ebd + GCO_1 + + + + + edc7c74a-8276-6dae-5feb-e3098021f732 + GCO_1 + + + + + bbeedc22-d46e-8095-80dd-0f6a861f7461 + GCO_1 + + + + + 53d5c0c1-9a0d-6489-2dcf-adac751ae552 + GCO_1 + + + + + febc7555-920d-9b9d-7249-8b4fc6d6641f + GCO_1 + + + + + fc219f70-7aa2-1e19-cc77-82992f64a8c1 + GCO_1 + + + + + d6432547-0d34-e4d5-a4c4-eeb60f7102f9 + GCO_1 + + + + + 8482f61f-1093-782a-d92c-cab7fac2602d + GCO_1 + + + + + eab1f291-b9d3-0463-e4e1-51dde71f15bd + GCO_1 + + + + + aad330c6-9cd8-4c1c-ccd8-00099074f891 + GCO_1 + + + + + 0a91b267-1eed-46ac-38f3-63803295e6eb + GCO_1 + + + + + 5f72678d-b290-5853-7943-33e0878b8e43 + GCO_1 + + + + + bb89b676-0be4-8de8-14a2-b2066fa56fa3 + GCO_1 + + + + + 3181b35e-dc42-a725-61a6-28d586605d72 + GCO_1 + + + + + e778d54a-6cf2-46a8-c89c-8c9e0fb3be89 + GCO_1 + + + + + 7f07febb-fb62-97b8-4424-1c173feb8c33 + GCO_1 + + + + + a16260cd-3d23-935c-8b86-36cc8a01e1f2 + GCO_1 + + + + + 2f1a3a43-d001-bb24-ba98-d9a9bbf87b7c + GCO_1 + + + + + 4538fb34-3cf2-e1ba-0eed-8ac1e66ff9bb + GCO_1 + + + + + 17ed6bd7-b6c7-5ca9-8e92-b4af9c533bf1 + GCO_1 + + + + + 6a8aef8f-300b-6072-5b16-f078e9842af5 + GCO_1 + + + + + 9d877a23-2526-d563-474b-8e6c37c94dcd + GCO_1 + + + + + cfa81819-f8cd-b510-25df-e532c60eb425 + GCO_1 + + + + + 6f3763f2-1c50-b287-f3fe-e68d3aa815f2 + GCO_1 + + + + + 0c410f96-d764-7b09-53fb-472cf41d259e + GCO_1 + + + + + 2f43f795-7f80-45d3-5104-a085c92d00ea + GCO_1 + + + + + 72ef4143-8129-0aa0-9ef7-ad25ad55c067 + GCO_1 + + + + + e684f1a5-ade5-ff06-7faf-2f1612bf2eb2 + GCO_1 + + + + + 0f88b663-a5ef-e844-e4d0-0e1d40dc3c08 + GCO_1 + + + + + 1f0e4e71-8e26-c794-55e1-68b59a652de5 + GCO_1 + + + + + 1e49433b-f0ed-c67f-fb24-6b3af2e99876 + GCO_1 + + + + + e47f6b66-6a5b-89ae-7bf2-a5018d37caba + GCO_1 + + + + + 7b9ddf17-0b41-766b-5b36-51abfc9182f5 + GCO_1 + + + + + 5c3357ae-050c-fab5-aa34-d6ccc00105cb + GCO_1 + + + + + 853e2ba1-f421-3fde-2d1d-5448c53546ed + GCO_1 + + + + + a36c3ff6-6eeb-5e13-972e-5eeb9724e12b + GCO_1 + + + + + cfff3ec6-df7b-26ac-e15b-3fb1002dec51 + GCO_1 + + + + + eeb98d71-4adf-6073-c341-a2b8b8f586da + GCO_1 + + + + + 71e887d2-f09f-f9cb-5756-2eb8b7b6bcd6 + GCO_1 + + + + + 41de1277-682f-6d13-7752-7fc393735063 + GCO_1 + + + + + f054716c-ee2b-c94c-3198-f3b3792579fb + GCO_1 + + + + + 86cf1542-1834-7501-9058-9f874911ba81 + GCO_1 + + + + + 54520f13-f32d-5210-fb10-e7d06d14f95a + GCO_1 + + + + + d0e34ae1-6bac-2408-35ae-f8ac4ec32a11 + GCO_1 + + + + + 4f144bb4-16b3-b8cb-ba30-91e8bbf02ce1 + GCO_1 + + + + + 861b11d2-c799-69f6-6df0-fbe7d1996c30 + GCO_1 + + + + + 154b2171-4de2-cb51-d9a0-f7545b1ac20f + GCO_1 + + + + + 36431d74-f41f-c54c-d4d1-63ff705bcd2f + GCO_1 + + + + + 86358910-7bec-7304-9ebd-2a7a6d8a6dc1 + GCO_1 + + + + + 7d574e77-1fd7-5492-112f-e960da98072d + GCO_1 + + + + + 925e9949-f6c7-4849-bcbd-256c42b8ef52 + GCO_1 + + + + + 1c67c7a9-3d40-c0c3-5d68-d504867a36c1 + GCO_1 + + + + + 1df12894-d423-8d97-6343-047bce430aab + GCO_1 + + + + + 36ef43b1-da47-eab1-e489-cbaefb63a06a + GCO_1 + + + + + 1440df2f-9588-c2f7-dfda-2657e1065ad0 + GCO_1 + + + + + 4bd215d0-924a-dfaa-c656-b8dac81e3698 + GCO_1 + + + + + 0adbd1d7-49bb-77e4-7b81-03ca7d4ccfec + GCO_1 + + + + + 5b15390d-70e0-cc39-886c-351cd977f6b1 + GCO_1 + + + + + 795a0e36-2f33-a7c0-7717-a7a97b69c71c + GCO_1 + + + + + 1a8d7372-ce82-6ec9-5fdc-664621bafb1f + GCO_1 + + + + + 937b6a19-1fd5-1004-5e11-bfaa6ce900c3 + GCO_1 + + + + + ffc7b48d-641e-93e3-6a32-72c98901645f + GCO_1 + + + + + 3fe4ae52-5756-5df4-40db-2a46e2bc2b3a + GCO_1 + + + + + c094a2f6-16d6-4b9f-9fa4-3b959aadc103 + GCO_1 + + + + + 0c2b6cf7-5551-2f56-bf3b-cf01e55eba56 + GCO_1 + + + + + 7c1413cf-dbf7-a480-9726-415f5f3246c0 + GCO_1 + + + + + 2e87d2db-9780-5e70-5a28-db9a2976840b + GCO_1 + + + + + 41d9694b-d0d7-fc8a-13fb-417deefa7d79 + GCO_1 + + + + + 67afcdf4-3c23-1f7d-ddf1-d6a9e143a58b + GCO_1 + + + + + 12a190a9-35e1-aaa8-5373-42fbe2639a59 + GCO_1 + + + + + c58c7623-6859-30fe-817a-39c6ffe399cc + GCO_1 + + + + + 21b5e234-51fe-f8b1-95b8-0407ec364773 + GCO_1 + + + + + a0d776b7-ae5a-6c56-a1aa-07efd6dff3cd + GCO_1 + + + + + e3c8318f-c113-6364-8c4b-b36381e864a2 + GCO_1 + + + + + e567e7e9-4081-701d-a022-ad89687513a8 + GCO_1 + + + + + f71cf0b3-f439-3b2d-fe24-f21a316c2a43 + GCO_1 + + + + + 77ab20e6-7b5c-70a1-d1cb-644f2897eb0a + GCO_1 + + + + + aee719d6-7a4c-110b-52ae-d5f483c9fa3a + GCO_1 + + + + + 6f5fe750-b1ad-b5eb-752a-76aeff543016 + GCO_1 + + + + + a191c6f3-1eea-ba18-4260-80085bb81fc2 + GCO_1 + + + + + 3ba70fd2-bf0e-f1d1-1eec-c01a09d56564 + GCO_1 + + + + + a6b5af98-0bc4-0f26-53be-232478aa387f + GCO_1 + + + + + 405faa5d-2b1c-f24e-9458-54c25c6199b0 + GCO_1 + + + + + 866bb796-b654-531c-8a4a-9f756e8c87b1 + GCO_1 + + + + + 924b4910-6642-eaf7-5e2b-cfa90803f619 + GCO_1 + + + + + 10e8d4eb-9dc9-26f4-9754-1dc41b395452 + GCO_1 + + + + + c074303a-3502-11f8-77b9-d66f1f524013 + GCO_1 + + + + + e506e599-ab36-ee80-8676-b79b3192802c + GCO_1 + + + + + ee9d24b8-e8cc-b3b9-5e79-7629fd6f3834 + GCO_1 + + + + + 0d43ed28-b8cd-1993-ac15-3d864c705665 + GCO_1 + + + + + 791aa896-d3ec-c209-e758-a31fb400ad9e + GCO_1 + + + + + 504b2288-48df-23ea-cc40-21fd73d5ca54 + GCO_1 + + + + + 186f41e0-8403-8602-2812-f6e94268f81a + GCO_1 + + + + + 50d1ad72-59d0-e222-23df-c4bbd9178fd2 + GCO_1 + + + + + 7a85bbf3-34e9-bbf3-2734-fb908cf89370 + GCO_1 + + + + + caa95b68-cc79-8efd-78a1-ba70d039bf1f + GCO_1 + + + + + 071188f4-46c7-9101-d90f-1971c504f7f2 + GCO_1 + + + + + 25759da5-0fb0-2b15-72ee-3478cbc2900e + GCO_1 + + + + + 38541af1-9c60-a1d0-d3f3-1a083a0e50df + GCO_1 + + + + + 50050772-9aae-4e23-d49d-6bbaceb76ee0 + GCO_1 + + + + + b918d3c3-c485-c186-3cb3-72cbe6f231eb + GCO_1 + + + + + d28ff873-2e71-b9db-6654-a2892348b8d8 + GCO_1 + + + + + fd0aa7ea-2636-e32a-cdd5-c00c5cbc6527 + GCO_1 + + + + + 600d5921-fb63-d3f1-5f3d-34134ee31430 + GCO_1 + + + + + 775ffd5c-0c2e-7887-ae94-6030670472c2 + GCO_1 + + + + + 9210dbb2-a1d3-fcba-5027-dc3edd81ee8c + GCO_1 + + + + + 354adff7-8725-b2bd-362d-1b15950ff076 + GCO_1 + + + + + c625b9c4-269c-42fc-b590-07060ac65adf + GCO_1 + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Dynamics.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Dynamics.xml new file mode 100644 index 00000000..61cbc2d9 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Dynamics.xml @@ -0,0 +1,508 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Dynamics-EU/1.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9580ded4-2610-cdde-c06c-92e6008fd3e5 + + + 2fe06fa7-29c3-ee86-535c-d831ff5e69d6 + + + 800237d8-085b-92fa-e814-37c5be10e172 + + + 3e8fe6cf-279f-7d5e-c0e5-677498c27f09 + + + fe7bf1da-d10f-12af-a38e-ed185ced3ae7 + + + c7d69d8c-b4b2-5e7e-cd15-b18f0f3b3a13 + + + 035a95be-d075-eebb-d1f3-faca3e836009 + + + 31fca2f6-3a3f-c726-fa92-3c0861888e91 + + + 7eba9e6c-a91f-eda0-147c-7b41b871dfe3 + + + a4d84081-d1a9-7b75-fda9-0018ef77f43d + + + 90ca9176-f7fe-ebe1-a76b-018d27071f04 + + + + + 42131467-4c38-728c-278e-296c9cd7a9d7 + + + + + fd4df1e4-2082-81e2-4b89-c9a52004a6e8 + + + + + 1e2c8fcf-a5cf-c956-ec76-9dcf5790bde4 + + + + + 4edaa0cc-0f96-d6c1-aec7-fd338cd88e5a + + + + + cbef61bc-eb90-bf24-3d93-a2755e5a79b5 + + + + + afeeb4e5-d1b5-dbbb-2942-8c6224f17127 + + + + + de3742c4-fe90-d84e-8485-6258ac7578bf + + + + + b0570d85-f676-d7af-91ca-dadf3bdec32d + + + + + 39357cda-0389-bdab-0379-384cb1cfe04a + + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Equipment.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Equipment.xml new file mode 100644 index 00000000..668fd4b6 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Equipment.xml @@ -0,0 +1,22667 @@ + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/CoreEquipment-EU/3.0 + http://iec.ch/TC57/ns/CIM/ShortCircuit-EU/3.0 + http://iec.ch/TC57/ns/CIM/Operation-EU/3.0 + 2015-12-31T23:00:00Z + + + 355c012c-df56-d45e-dd89-635138d85707 + Current rating for MV3.101 Line 78 + + + + 96b62661-c9fe-6092-f667-728c50442b30 + Voltage limits for MV3.101 Bus 103 + + + + 3944f1ac-fc82-50dd-30d2-913464ccf749 + Current rating for MV3.101 Line 45 + + + + 5a4dad5d-9062-b8b8-ba21-57f8531ddae1 + Current rating for MV3.101 Line 89 + + + + e58fa489-d42c-5519-0f55-c903698dc300 + Current rating for MV3.101 Line 45 + + + + 8e39b518-c46a-5a8e-529f-7f915cc051eb + Current rating for MV3.101 loop_line 10 + + + + 9f1e45f5-728c-83d7-e8a6-c7d8e3b2bb82 + Current rating for MV3.101 loop_line 6 + + + + 1b04e0b8-56a0-995f-1910-38d65666ad31 + Current rating for MV3.101 Line 121 + + + + fdc8a1a4-7aad-d5bc-bb4c-64b0c7f016e9 + Current rating for MV3.101 Line 18 + + + + 020d8b4f-b32e-d2f4-1edd-b0c5f86f6a83 + Current rating for MV3.101 Line 116 + + + + 9933608a-f454-3482-32f3-6284b0b3c1c9 + Current rating for MV3.101 Line 82 + + + + 512c2d8e-ded4-887f-6bc6-8aa0c3e84883 + Voltage limits for MV3.101 Bus 88 + + + + e84cc9e8-2bcc-c7e4-1da8-f615f8db9c7f + Current rating for MV3.101 Line 23 + + + + 427b864d-e716-d29b-e556-6da453365ce1 + Current rating for MV3.101 Line 18 + + + + 66571b87-8fbe-6f7d-9972-26f5af49d996 + Voltage limits for MV3.101 Bus 109 + + + + 187d9069-e99c-c5e6-2380-16e78b48a9ce + Current rating for MV3.101 Line 67 + + + + e4c056c5-bbaf-1ba5-54c8-b28f622a253a + Current rating for MV3.101 Line 82 + + + + 7166d57d-c710-0903-ba9d-35272c6e46a2 + Current rating for MV3.101 Line 23 + + + + 7154e3c3-1f64-52c7-5272-e6015fbfc466 + Current rating for MV3.101 loop_line 10 + + + + a5c53bf3-04f5-9ff4-6491-a9833465cd2c + Current rating for MV3.101 Line 121 + + + + b4cb2782-6e1d-85c5-d82e-579f9db54635 + Voltage limits for MV3.101 Bus 17 + + + + 0a5273ef-72ad-ad2f-a553-d91f3f3bcada + Current rating for MV3.101 Line 75 + + + + 7294cdf8-43c1-f2a7-34a7-b452e7574c00 + Voltage limits for MV3.101 Bus 110 + + + + 34d7f217-01c1-e168-2483-285829f5c1c0 + Voltage limits for MV3.101 Bus 41 + + + + 13eca1fc-64a0-2d49-ef5c-48b24b5b8de9 + Current rating for MV3.101 Line 75 + + + + b9a84c3f-41f8-4a89-48a2-4f3d82ba80b7 + Current rating for MV3.101 Line 26 + + + + cca47c08-adf6-e452-2299-e2cbcf2ff1ec + Current rating for MV3.101 Line 26 + + + + 1b06b2fd-4654-6ece-fae6-b7d1bd87b0d0 + Current rating for MV3.101 Line 67 + + + + 16f821b2-df81-2ef1-2ce8-6d19f071e619 + Current rating for MV3.101 Line 133 + + + + 549bf0dc-5ba4-c77d-811d-11b9b23d7bdc + Current rating for MV3.101 Line 42 + + + + 9a86308a-3c00-ff4e-d931-97f8cf3932ba + Current rating for MV3.101 Line 119 + + + + 8723dc98-04bd-1d03-2869-855a43f96c02 + Current rating for MV3.101 Line 10 + + + + b9eb1e5e-99db-4943-9871-92a676bdb5a2 + Current rating for MV3.101 Line 119 + + + + 190f0d41-3cd2-7283-69d0-4dfbb873ced4 + Current rating for MV3.101 Line 133 + + + + 256c00fe-1a9e-e045-8707-5bb7cdd90873 + Current rating for MV3.101 Line 42 + + + + b2117c42-259d-76c8-d628-8c0e792cb888 + Voltage limits for MV3.101 Bus 85 + + + + 8ce4eca6-70ae-bf2a-0c0a-b23eb62e3556 + Current rating for MV3.101 Line 10 + + + + 5dce530a-1126-56c3-4fa5-1e33fb157602 + Current rating for MV3.101 Line 111 + + + + 622e730a-d11d-74a6-3d9d-b5f73f84f90b + Current rating for MV3.101 BS-Feeder3_line + + + + 0f9228d9-bc50-1dab-90e3-09a220e222f4 + Current rating for MV3.101 loop_line 11 + + + + c97a8129-6b06-6c66-4277-95007e506758 + Voltage limits for MV3.101 Bus 81 + + + + 64594a0e-b1d3-15dc-9a5a-42eb53f75540 + Current rating for MV3.101 Line 111 + + + + f637ca45-dc35-d7d3-39fb-89bbd74e47c0 + Current rating for MV3.101 Line 105 + + + + 21627028-14d5-767e-7e7c-84bdb0a0a246 + Current rating for MV3.101 loop_line 11 + + + + adfc1f6c-732d-41ce-8ac3-410475a305b0 + Voltage limits for MV3.101 Bus 70 + + + + cfa6599b-799d-0a56-9212-082ee0d01202 + Current rating for MV3.101 Line 12 + + + + 0f781553-6bae-944a-92aa-45f397841751 + Current rating for MV3.101 loop_line 3 + + + + de8bb789-db9b-a0eb-dbab-a4192ba6d8dd + Voltage limits for MV3.101 Bus 101 + + + + 751e14d3-1a01-f738-7241-26969c78b3f0 + Voltage limits for MV3.101 Bus 130 + + + + 130ccc47-b2c0-c8cd-505a-ab756a2ca313 + Current rating for MV3.101 Line 12 + + + + f36b00c9-0ddf-0f86-c397-6dfd1e1138f2 + Voltage limits for MV3.101 Bus 28 + + + + 080de163-276c-530a-b9c5-acd592be08c3 + Current rating for MV3.101 loop_line 3 + + + + b5f2d6bd-4354-645d-1a2e-cf15ff19ab6e + Current rating for MV3.101 BS-Feeder3_line + + + + 47fe5674-5914-42d3-ff37-2c501f56d01f + Current rating for MV3.101 Line 64 + + + + 5329cb35-66dc-f2d5-f02a-56722f9100a7 + Current rating for MV3.101 Line 105 + + + + 8b770895-ab59-56b5-f1cc-e1b6b451c515 + Voltage limits for MV3.101 Bus 137 + + + + e36cb878-3d3e-2cac-ca6c-1542f76f6baf + Current rating for MV3.101 Line 19 + + + + 05e0c967-7831-88a1-25ea-dc013cd44188 + Voltage limits for MV3.101 Bus 46 + + + + 25d14211-a369-90f4-84cc-feca9ef9f3d9 + Current rating for MV3.101 Line 61 + + + + 29f010b2-54c9-c0d0-6ba3-647ca9e6b4d6 + Current rating for MV3.101 Line 27 + + + + 0220ebce-1fa9-a6e6-21dc-ab466468a769 + Current rating for MV3.101 Line 27 + + + + ebc30937-429e-7530-a7a3-8483524f3f8a + Current rating for MV3.101 Line 102 + + + + bea2aba0-1ce9-6712-c3f5-822b8969b927 + Current rating for MV3.101 Line 132 + + + + 047f0e38-b376-d68e-e800-5e269e710131 + Current rating for MV3.101 Line 44 + + + + d0b6a4c8-702f-d95f-e10f-9f647bf4c1b3 + Voltage limits for MV3.101 Bus 119 + + + + acec1c2b-469f-bfcf-f665-c51e56911d01 + Current rating for MV3.101 Line 64 + + + + f36a4264-c547-5059-c0c7-c405ce32344c + Voltage limits for MV3.101 Bus 42 + + + + 35316be2-b88b-d56f-ea65-746143787bba + Current rating for MV3.101 Line 19 + + + + 97cb72f5-08eb-928a-ce68-338f690601c7 + Current rating for MV3.101 Line 102 + + + + 89c36618-c938-44e5-da26-32d3843780a5 + Current rating for MV3.101 Line 44 + + + + e57353bc-857a-bb5b-26ff-5c913758a692 + Current rating for MV3.101 Line 132 + + + + 7747c803-ca50-929d-4b70-663f618a7d1c + Current rating for MV3.101 Line 61 + + + + 56fd8f3b-97f7-b555-2402-872bde2a2b5b + Voltage limits for MV3.101 Bus 89 + + + + edcdcd6f-de68-7f38-1864-144c8857f0bc + Current rating for MV3.101 Line 98 + + + + 395d71b6-c42e-1c4c-b32b-645b3ed86beb + Current rating for MV3.101 Line 9 + + + + 738e7a05-3d8c-6b5e-2ca7-0e5cd2c88151 + Voltage limits for MV3.101 Bus 54 + + + + 33323605-1d07-c40b-ea73-b0142b0f268a + Current rating for MV3.101 Line 58 + + + + c0579821-bfa8-3f5b-a950-ccfc3556e162 + Current rating for MV3.101 Line 33 + + + + b1477f1f-f26d-bbf1-0f22-1a3ea6d878a6 + Voltage limits for MV3.101 Bus 29 + + + + 80466e70-e800-5342-dddd-4439eaa27c92 + Current rating for MV3.101 Line 33 + + + + b159f4c1-8336-d6b7-4863-a59227f72062 + Current rating for MV3.101 Line 76 + + + + 626e29f1-6ecd-0529-3d31-eb4636b15e22 + Voltage limits for MV3.101 Bus 19 + + + + f3ec894c-4089-596d-e752-a4562883e858 + Current rating for MV3.101 Line 129 + + + + 96c515a3-6715-60b1-d090-a29962d1ca0d + Current rating for MV3.101 Line 17 + + + + ce572762-050c-0304-67cc-30ab98068368 + Current rating for MV3.101 Line 76 + + + + 0b7cc13a-d272-25e8-2d19-4b12da15defd + Current rating for MV3.101 Line 9 + + + + 7f1d1a1c-8239-4d69-8bc5-5c91a4bddda4 + Current rating for MV3.101 Line 58 + + + + 5cc3da29-7741-3a11-7832-6eb70b9136ec + Current rating for MV3.101 Line 17 + + + + 2815ff03-e192-7321-8364-5c0fee404e15 + Current rating for MV3.101 Line 98 + + + + 0dd6eed9-b9d7-c1db-0a9b-1210acc93b64 + Current rating for MV3.101 Line 60 + + + + a83caaf7-0bc7-32bb-8cc9-fa67130c5bff + Current rating for MV3.101 Line 131 + + + + 6b352450-963a-65c9-431d-f40504aedf70 + Voltage limits for MV3.101 Bus 53 + + + + 8dbd02f3-9c7d-d21b-f33e-1240d2544561 + Current rating for MV3.101 Line 90 + + + + 0b93d426-5bbe-37b2-3b07-97c3fc77ef23 + Current rating for MV3.101 Line 1 + + + + 7c2b3b48-0f1b-5e9f-be54-1cdc296af5aa + Current rating for MV3.101 Line 123 + + + + 610fb60d-6e5e-453b-b742-2cef2416c320 + Voltage limits for MV3.101 Bus 62 + + + + cb4207c2-f3ae-c6a4-b29b-f5ad7b17ef8a + Current rating for MV3.101 Line 95 + + + + b6ea8fbb-09d1-2ac0-e2b7-e9947dcc3fe6 + Current rating for MV3.101 Line 123 + + + + ebe0b924-c687-9d3f-8d61-4c6973c98931 + Voltage limits for MV3.101 Bus 61 + + + + 662bd746-db1c-47da-324e-707c79f01bef + Current rating for MV3.101 Line 95 + + + + d3ca0415-44e6-35a5-4ac5-ea41942af7e0 + Current rating for MV3.101 Line 1 + + + + ad779108-535a-b0d1-c366-da0ac0ef9df9 + Current rating for MV3.101 Line 131 + + + + 2d6a0c30-2e90-d3e7-4233-18b2b024dc26 + Current rating for MV3.101 Line 90 + + + + 7096b701-b525-048b-72c3-fcc3bbca863b + Current rating for MV3.101 Line 11 + + + + 2adaa4ce-650a-00eb-6430-1a2f805b8bc5 + Current rating for MV3.101 Line 129 + + + + 410d451a-3cbe-c0fd-1681-853ae7d07017 + Current rating for MV3.101 Line 92 + + + + 8fdc66fb-8140-7d27-5ad2-41ca531fb224 + Voltage limits for MV3.101 Bus 15 + + + + 03753fc3-def6-77a2-ba11-6961c348b729 + Current rating for MV3.101 Line 83 + + + + 5e1baf18-8c8d-6acf-068e-90d36bd2cd6c + Current rating for MV3.101 Line 92 + + + + ee37d667-69b1-cf99-98bf-297fc7288aa8 + Current rating for MV3.101 Line 68 + + + + 8313c766-75f0-6bd6-71e6-e8531cfc4685 + Current rating for MV3.101 Line 68 + + + + b5f6073f-9248-25a0-c27a-e85c7247c30a + Current rating for MV3.101 Line 60 + + + + ddba99aa-2b4f-de98-83d8-081dc2dcf2c6 + Current rating for MV3.101 Line 11 + + + + 4c78dcb8-385a-57a5-d258-64b2ab0ef2ac + Current rating for MV3.101 Line 83 + + + + cd616df2-3bff-9a31-9831-01e5938302d6 + Current rating for MV3.101 Line 8 + + + + a2d726d9-84d3-1d57-937b-9f3ec884cd24 + Voltage limits for MV3.101 Bus 77 + + + + 453a5a09-bcf4-fc93-e4f4-8e52bc8c9c05 + Current rating for MV3.101 Line 8 + + + + 8b3e009e-818c-27a9-0378-dbb227b04548 + Current rating for MV3.101 Line 69 + + + + 027cf39a-e911-fbeb-877a-c55c84515d57 + Voltage limits for MV3.101 Bus 63 + + + + 4e0aaf56-2340-8548-8748-a9bd88bad2e2 + Current rating for MV3.101 Line 69 + + + + 8378f103-9f78-cd15-4c2c-3bd74dee6b17 + Current rating for MV3.101 Line 101 + + + + 7b017297-fe98-d992-d012-bd6a89a590ee + Current rating for MV3.101 Line 124 + + + + 36de8472-32bc-85f3-b0dd-08efb20a90ba + Current rating for MV3.101 Line 36 + + + + 7672828e-adf9-5266-20ff-a44133decf17 + Current rating for MV3.101 Line 40 + + + + 2e49aa09-379d-27e1-dc4d-d322f4fec4ec + Voltage limits for MV3.101 Bus 93 + + + + 781488d4-cc72-e90f-4a41-64441941bc53 + Voltage limits for MV3.101 Bus 94 + + + + d86e8a6d-159b-dcad-c79f-35e930984a33 + Current rating for MV3.101 Line 40 + + + + ee39f535-ae7f-fdc2-8077-2c9faf3559ee + Current rating for MV3.101 Line 74 + + + + 62c4585c-8c6c-f475-c452-eab852afb7b4 + Current rating for MV3.101 Line 74 + + + + a62a1b75-bdcf-a554-040b-7aeaff5c1d9c + Voltage limits for MV3.101 Bus 38 + + + + 3a254ad3-8c2a-b55c-f93e-a0a63be6e014 + Voltage limits for HV1 Bus 26 + + + + 01db0bf8-d8f1-8bff-42df-05593db35e4d + Voltage limits for MV3.101 Bus 22 + + + + fc4f5e43-fba6-6f36-1e83-d45bedf1ff16 + Current rating for MV3.101 Line 124 + + + + cd24b586-dcd2-e60e-cfbd-ecdd5cd262dd + Voltage limits for MV3.101 Bus 87 + + + + 11b4173f-7165-ec17-7c6d-6aa7ed75176e + Current rating for MV3.101 Line 101 + + + + 36df57d1-cf28-40a5-3f47-f51f656b4cb3 + Voltage limits for MV3.101 Bus 48 + + + + af152fd9-5d32-4631-34b9-ee6b1c3fc47c + Current rating for MV3.101 Line 28 + + + + 633a8930-1886-f812-4106-0bb6a078935a + Current rating for MV3.101 Line 28 + + + + f4cf95f2-d840-549c-7761-0aee670b0465 + Current rating for MV3.101 Line 122 + + + + a8304359-fb7f-c5ed-f5e7-e414e9821702 + Voltage limits for MV3.101 Bus 55 + + + + 534a5b54-261f-af5e-c03d-a0c1d100863d + Current rating for MV3.101 Line 50 + + + + de23831c-370f-d592-5452-220960a90506 + Current rating for MV3.101 Line 122 + + + + d3848db2-7e35-fe44-5267-ee89e339962b + Voltage limits for MV3.101 Bus 142 + + + + d670ba56-021c-04fe-fae4-8512912327f0 + Current rating for MV3.101 Line 127 + + + + e828f47e-41a0-7bd0-5040-9bcf02e9624a + Current rating for MV3.101 Line 24 + + + + 379bd81d-ca9b-bc61-80a9-f95462c452c1 + Current rating for MV3.101 Line 24 + + + + bb9157d6-10da-68ae-5380-1fc9b6d6589b + Current rating for MV3.101 Line 36 + + + + e7239107-72e6-13bc-897c-0edc0317668b + Current rating for MV3.101 Line 50 + + + + e313d400-3c93-5439-acb5-9f0583a3df8a + Current rating for MV3.101 Line 7 + + + + 94cddd99-b5be-7d66-a326-00a4f76d648b + Current rating for MV3.101 Line 118 + + + + 775411a9-d1da-1cbb-e22f-765b4948efbe + Current rating for MV3.101 Line 51 + + + + da10cf94-f532-13a7-5beb-05c9bc220d70 + Current rating for MV3.101 Line 118 + + + + 0f9138f3-616b-4c20-0dc8-858164cae413 + Voltage limits for MV3.101 Bus 122 + + + + 6255afd2-dacb-6ddb-a151-df09b76d2075 + Current rating for MV3.101 Line 31 + + + + 2cc235b2-4a81-78a8-fbef-fa26fcb3ab35 + Current rating for MV3.101 Line 51 + + + + e02d7037-7599-b9f9-c636-019d10dd9a9e + Current rating for MV3.101 Line 7 + + + + 7598a31f-fbeb-71ab-b7f1-f17045835017 + Voltage limits for MV3.101 busbar1A + + + + 2b845e83-75d1-04b5-40ea-b7228ddb99e6 + Current rating for MV3.101 Line 93 + + + + 5c67340e-217b-14db-363e-c314a83b0f98 + Current rating for MV3.101 Line 93 + + + + 2465f20b-8bdf-00b8-9ce8-63ca2a1bc95f + Current rating for MV3.101 Line 48 + + + + fcb008bc-31c4-cc34-1d95-54fe1b5c1987 + Current rating for MV3.101 Line 20 + + + + 0a965372-6e86-0684-26db-e0fba57983c5 + Voltage limits for MV3.101 Bus 91 + + + + 72167bf8-d341-a340-04d1-40d60e6d6968 + Current rating for MV3.101 Line 48 + + + + 3240753e-0b1b-0665-7918-55c66c0beca7 + Current rating for MV3.101 Line 91 + + + + 22bcd436-ec9e-490c-45dd-e898a5ff0006 + Voltage limits for MV3.101 BS busbar1C + + + + 85748eb1-3db7-449f-cab8-abf8d3f39bc9 + Current rating for MV3.101 Line 31 + + + + 8eab24be-ed55-f3a2-bb46-e8ac0c501818 + Current rating for MV3.101 Line 2 + + + + 46496d7e-16cb-dd1d-3366-81cf6928ae41 + Current rating for MV3.101 Line 91 + + + + 4cbf2ac3-ed2d-89dc-1eae-2280a05e7e6e + Voltage limits for MV3.101 Bus 43 + + + + 39e0bda7-8098-d98d-ed33-e2f07d3a8715 + Current rating for MV3.101 Line 127 + + + + 1172ebea-f9c8-f1f5-dc2e-c4ac7cf091e1 + Current rating for MV3.101 Line 126 + + + + 01109808-dc89-ad35-da6d-dac07012fc65 + Voltage limits for MV3.101 Bus 102 + + + + 07dd8f1a-c6d2-4ef9-0b88-8328ad8d3117 + Current rating for MV3.101 Line 126 + + + + c5a50134-53f1-0a65-c049-d10b4fa65e28 + Current rating for MV3.101 Line 20 + + + + 3eb820c3-b197-6fbf-a755-0fe5714ae4da + Voltage limits for MV3.101 Bus 45 + + + + a087cf0b-5829-bd1a-1a23-575b01d846b8 + Current rating for MV3.101 Line 106 + + + + f8a5a5d0-a726-ce5d-7dcd-1e67cc2e28f5 + Current rating for MV3.101 Line 106 + + + + 46412c92-6e3e-11bf-e425-7a95df6a193d + Current rating for MV3.101 Line 84 + + + + 0f4b71ce-42ea-2098-2c23-5e12b113074a + Current rating for MV3.101 Line 103 + + + + 45398877-c1b4-3847-5cec-1db5b219b05a + Voltage limits for MV3.101 Bus 82 + + + + ed841921-3851-2f26-7c7f-8813a8468fc2 + Current rating for MV3.101 Line 2 + + + + 9e870c9b-3fc3-59e7-3af6-0207f61dc875 + Voltage limits for MV3.101 Bus 32 + + + + 29853083-665f-b1a4-77ae-b1c50d9571b6 + Current rating for MV3.101 Line 53 + + + + efc725d8-028e-3940-05ad-ab81c295627f + Current rating for MV3.101 Line 84 + + + + 7939b768-21be-ac0d-fffa-0a97259b38a8 + Current rating for MV3.101 Line 53 + + + + 44022006-789b-4362-ad19-c6f372185655 + Voltage limits for MV3.101 Bus 86 + + + + c9558f25-558a-457f-c4a5-462326485453 + Voltage limits for MV3.101 Bus 40 + + + + d1b1117b-194b-10a1-37a4-b670060f8026 + Voltage limits for MV3.101 Bus 27 + + + + daf4cd1e-d1c3-9658-5192-68345d6ca1b5 + Current rating for MV3.101 Line 35 + + + + 564db986-a4fc-8e5f-fe56-ad7be1edba24 + Current rating for MV3.101 Line 114 + + + + df62ff11-cd23-e9f9-3c8a-5f0896f4f2c6 + Current rating for MV3.101 Line 130 + + + + 1f33a146-01c5-cfdb-0f0c-ae462a3487e1 + Voltage limits for MV3.101 Bus 100 + + + + d0f3922b-a944-3511-782d-789de0d8fd42 + Current rating for MV3.101 Line 114 + + + + 0cf171aa-803c-5310-0947-4bd8ebd5a632 + Current rating for MV3.101 Line 130 + + + + 48a5bd71-c6dd-7215-dd76-7d56ee43e0e5 + Current rating for MV3.101 Line 35 + + + + f619d2dc-9a66-5a0c-ee9a-0e841efea336 + Current rating for MV3.101 Line 103 + + + + 32a81a99-90f8-1227-b68f-b0257b1e959d + Voltage limits for MV3.101 Bus 26 + + + + b3759915-4412-a8b7-883b-ac5c9cfa9149 + Voltage limits for MV3.101 Bus 97 + + + + f75ab98c-d6a6-cc59-048c-001a26e0fee6 + Voltage limits for MV3.101 Bus 11 + + + + 0af6c7f3-eb10-40d6-e56b-69fb780eafe0 + Voltage limits for MV3.101 Bus 121 + + + + 7d7260b9-d434-1236-0148-1738c9ba6d33 + Current rating for MV3.101 Line 128 + + + + ad015f74-73ae-93a2-b50c-4d5359aea4ef + Current rating for MV3.101 Line 128 + + + + 6a8dcf9e-3055-5ee7-d58d-b43d45a3b328 + Voltage limits for MV3.101 Bus 132 + + + + 083dd117-593c-cf51-35e9-3a64318cc9b2 + Current rating for MV3.101 BS-Feeder4_line + + + + 24379419-f405-b1b7-c5bd-a949cf00a45d + Voltage limits for MV3.101 Bus 58 + + + + aeda32d2-e694-5cb5-5c55-220535334568 + Current rating for MV3.101 Line 43 + + + + f672a5e8-bbe8-059d-298d-9ebaed1dad4c + Voltage limits for MV3.101 Bus 83 + + + + 5965a769-830b-ffa3-697b-bc872228d480 + Voltage limits for MV3.101 Bus 135 + + + + fb8f565c-859c-8553-0d4b-60a45897a303 + Current rating for MV3.101 Line 43 + + + + 741fd07a-7253-248e-4626-ba54d1178605 + Current rating for MV3.101 BS-Feeder4_line + + + + 12f8a61e-1220-503b-fd4f-43e43c75b4e0 + Current rating for MV3.101 Line 80 + + + + 22ca0617-6068-ee1f-8d4d-656599a703c1 + Current rating for MV3.101 Line 38 + + + + 7d7ef6b0-e4b1-5b8d-c231-4b5ec30ccea0 + Current rating for MV3.101 Line 41 + + + + e559da4d-9b64-9d40-aaf7-95d1981b8056 + Voltage limits for MV3.101 Bus 80 + + + + c1fa32c4-3290-41e9-4dec-9a73188550b1 + Voltage limits for MV3.101 Bus 140 + + + + 48ec2e92-800f-9e53-5e54-1468db919604 + Current rating for MV3.101 Line 41 + + + + 78bfbcc1-d3fe-b11f-2c3c-251ce94cfd34 + Current rating for MV3.101 Line 80 + + + + a991ab08-7a3c-038b-83ce-9c3bd28a050a + Current rating for MV3.101 Line 38 + + + + da9dd5c8-3f54-73d4-f100-218c2ca58d5a + Current rating for MV3.101 Line 29 + + + + 6165ce69-e579-4940-3a45-c4aae639e525 + Current rating for MV3.101 Line 66 + + + + 21cfedbd-42b1-94c3-ef5a-c32df89422ca + Voltage limits for MV3.101 Bus 124 + + + + b3cc1e79-6ae5-c756-7cc6-816085124e53 + Current rating for MV3.101 Line 62 + + + + 8778a5e1-2245-0b64-c660-1bb0c603c1d7 + Voltage limits for MV3.101 Bus 99 + + + + 8997d6b1-f706-7333-be67-4506d3fd22d2 + Voltage limits for MV3.101 Bus 125 + + + + a1a67b2f-91c9-3938-5e23-0f449d931238 + Voltage limits for MV3.101 Bus 31 + + + + 8a27f3e6-24fe-c8ec-a122-7825633ac892 + Current rating for MV3.101 Line 62 + + + + 6bff8085-42b4-4d51-3630-5d684d60ecc8 + Voltage limits for MV3.101 Bus 51 + + + + e4cb4ba3-4269-44d6-f78b-9d8e7f184a26 + Current rating for MV3.101 Line 65 + + + + 3f89a3d4-4d9b-6c87-9148-6434c25648ae + Current rating for MV3.101 Line 29 + + + + e6e6c7f1-230f-0fd8-7d45-374d17deef05 + Voltage limits for MV3.101 Bus 112 + + + + 3fd6ae4e-e5dd-6632-66b5-2697bcbc7f02 + Current rating for MV3.101 Line 65 + + + + ef39fa12-962a-51a7-0908-87302da400ab + Current rating for MV3.101 Line 120 + + + + c386c84b-6a6f-bc9d-b81e-a4027fb39a19 + Current rating for HV1-MV3.101-Trafo2 + + + + a15f300e-4270-8a24-6adf-f1550e423d32 + Current rating for MV3.101 Line 47 + + + + cc4e6f63-1c6c-b483-08af-c4e9e33f3fbc + Voltage limits for MV3.101 Bus 57 + + + + 3e0ce633-22bf-a129-9ec4-b8429382f580 + Current rating for MV3.101 Line 120 + + + + 52b8b23c-eddf-3810-28e0-fae8ae9ef87f + Current rating for MV3.101 Line 66 + + + + 05be2db8-759c-2c36-0804-075b9852e05c + Current rating for MV3.101 Line 113 + + + + 54753b37-f21c-a6a8-3054-a37eece19b54 + Current rating for MV3.101 Line 16 + + + + ea579124-fc09-bce1-9cac-63e35d27ab31 + Voltage limits for MV3.101 Bus 35 + + + + 40535328-a451-b966-aa1d-1fd98fcaa67e + Current rating for MV3.101 Line 47 + + + + 3a95a6a1-ff3e-4115-d7bf-74fd4131460c + Current rating for MV3.101 Reserve line + + + + ecadf16f-b15e-d480-3920-2466d5be4718 + Current rating for MV3.101 Reserve line + + + + 8dda3650-5e15-96b3-3c0b-f3b4747774b9 + Current rating for MV3.101 Line 30 + + + + bc569062-87c9-815e-ba65-f1e793050083 + Current rating for MV3.101 Line 113 + + + + 9e7373b3-52bc-3359-f46b-be71a82aab86 + Voltage limits for MV3.101 Bus 34 + + + + 4609ca44-c67e-add8-e280-324651d57e29 + Current rating for MV3.101 Line 16 + + + + 2270ba3c-46a7-12b6-1434-f4f27ab3ab3e + Current rating for MV3.101 Line 39 + + + + 51d93546-6cb1-3425-9747-db044d438d72 + Current rating for MV3.101 Line 30 + + + + 37f1b04e-010e-5ad0-f4e9-07a72eb707f3 + Current rating for MV3.101 Line 100 + + + + 8c9ceff0-3000-827e-90ab-6fc2adb42b72 + Current rating for MV3.101 Line 125 + + + + da57f874-4b58-09f4-89c4-f57974364cbe + Current rating for MV3.101 Line 70 + + + + eef7c3de-3558-9dc1-55fc-069d1cadc0a1 + Current rating for MV3.101 Line 70 + + + + 2575618a-7bdf-16f7-5445-2f9acae35485 + Current rating for MV3.101 Line 97 + + + + d1514e5e-33a9-1b8d-7d59-f5e395103a23 + Voltage limits for MV3.101 Bus 12 + + + + 87bb22d5-98ce-d2a6-8720-b37804654d5a + Current rating for HV1-MV3.101-Trafo2 + + + + 2505f54e-ec7b-e4e0-14b8-a3edcdef584f + Current rating for MV3.101 Line 125 + + + + a1db3c2e-6c4c-99bb-745e-8fdc2b218dfe + Voltage limits for MV3.101 Bus 138 + + + + 6b24cebd-3962-6e2b-11f1-f9aeed6c8118 + Current rating for MV3.101 Line 39 + + + + fdb979e7-a817-b3ee-89bb-2493807f44ec + Current rating for MV3.101 Line 97 + + + + b6b473d4-4373-78ca-414f-f133fd2240c5 + Current rating for MV3.101 loop_line 1 + + + + 7a31943d-7862-3f39-b035-89aafc4c8ab0 + Current rating for MV3.101 Line 49 + + + + 162fd53f-beb6-f21c-6b0e-6e32f802a31e + Current rating for MV3.101 Line 87 + + + + 672433cb-93be-f656-8bef-04be5ec71297 + Voltage limits for MV3.101 Bus 23 + + + + b10364e1-dd23-bdfb-c842-3e48b874fc19 + Current rating for MV3.101 Line 87 + + + + 244086f7-c6fd-03f8-8e76-27926470c3ba + Current rating for MV3.101 Line 49 + + + + f7ae91f4-1b4a-66b6-ad81-2fdb44dff514 + Current rating for MV3.101 Line 77 + + + + af1bdaa9-d5dc-3ac5-878f-11af9eb0a793 + Current rating for MV3.101 loop_line 1 + + + + 543366d0-1cd3-79e0-0c6c-3c46905d5263 + Current rating for MV3.101 Line 77 + + + + 99de7373-d641-81cd-772f-4e24eef51a39 + Current rating for MV3.101 Line 59 + + + + 07da1f20-0bb8-f7ce-91c1-d802d3e693e6 + Voltage limits for MV3.101 BS busbar1B + + + + e80b7f2e-d93d-057a-8010-a06dfdfcbd66 + Current rating for MV3.101 Line 108 + + + + b62f0201-dc29-f8fa-b97f-938f3a10970e + Current rating for MV3.101 Line 117 + + + + 9172538f-fd17-c6dd-d7ce-843ed9aaca46 + Current rating for MV3.101 Line 96 + + + + d8e34920-c68f-8fc0-be33-f6a40d80ebd2 + Current rating for MV3.101 Line 100 + + + + 3e53cf99-00ff-d1bc-598d-75b24c76ff7d + Current rating for MV3.101 Line 96 + + + + 900e328f-6f4e-3e87-f55d-81996db8d4b7 + Voltage limits for MV3.101 Bus 141 + + + + 33c5ebbd-d9c0-3577-9522-030fb981badd + Voltage limits for MV3.101 Bus 39 + + + + e93b997b-fa13-4d7a-97c1-a85df0942d4f + Current rating for MV3.101 Line 117 + + + + d709656a-d291-723c-7792-f6eea069a191 + Current rating for MV3.101 Line 108 + + + + ae6d6fee-a7d1-31c1-402b-d85a05f0e7d7 + Current rating for MV3.101 Line 59 + + + + d00c7b9b-37ae-d00d-2cfd-197482a556fe + Voltage limits for MV3.101 Bus 120 + + + + ac7ac6f1-6fc2-3407-7ad0-b70369fc1cb8 + Voltage limits for MV3.101 Bus 92 + + + + aef12411-24a6-cd0f-27f9-42c314237751 + Current rating for MV3.101 Line 73 + + + + 0e98b549-ea6f-1983-21fc-585eb57385a6 + Current rating for MV3.101 Line 32 + + + + 1c948908-2ae7-a3d5-7e0a-4dbf9c9ab844 + Current rating for MV3.101 Line 32 + + + + a5038981-59d2-2a20-a55c-50e231e231df + Current rating for MV3.101 Line 110 + + + + b42ca62c-3721-a6e8-4ba2-1c3b96e24eda + Current rating for MV3.101 loop_line 9 + + + + 2b333d58-669f-7dfd-a7f6-914b2bbb9a90 + Voltage limits for MV3.101 Bus 25 + + + + 39768659-f562-bdce-44cd-de55cb1703a5 + Current rating for MV3.101 Line 15 + + + + bc4c9d83-d8b9-8d13-744e-b7852ece78b5 + Current rating for MV3.101 Line 110 + + + + 12f19435-1d0b-42c5-c4f8-4df89ae24362 + Voltage limits for MV3.101 Bus 68 + + + + 91aa2d18-4552-1604-0a18-dcc90dd99206 + Current rating for MV3.101 Line 73 + + + + 4628c68b-74d5-3593-168c-274bf7b23de6 + Current rating for MV3.101 Line 15 + + + + cfa9f7db-8fd5-48a6-1276-42403bdf0196 + Current rating for MV3.101 loop_line 9 + + + + a2e8f855-1784-7c8a-107f-5bebee99507c + Voltage limits for MV3.101 Bus 114 + + + + 6e7673aa-f5ce-69b2-6c53-25ce2ee70829 + Current rating for MV3.101 loop_line 2 + + + + 22a44364-fccf-3164-46f5-e0c1715b73de + Current rating for MV3.101 Line 34 + + + + 45abfcc9-b6ca-9781-17af-b3fc832b19a4 + Current rating for MV3.101 Line 3 + + + + 5d1e1f51-221f-4a36-8381-31190a75c9f0 + Current rating for MV3.101 Line 34 + + + + 8a897861-e827-65a7-abe0-ea8c9569c97c + Current rating for MV3.101 Line 81 + + + + 0387a864-329d-ac29-7e0a-597476e1c3f9 + Current rating for MV3.101 loop_line 4 + + + + 1e91cbe5-8672-6475-585c-0a508a3fe32c + Current rating for MV3.101 loop_line 4 + + + + 87013eed-8813-10fc-fcb4-bc4a8de9ee3c + Voltage limits for HV1 Bus 25 + + + + 7aa8220a-45f7-cdd4-09e7-30e6dcbe5c46 + Current rating for MV3.101 loop_line 2 + + + + 8eac3744-aee6-339d-6e00-33c679c715e4 + Voltage limits for MV3.101 Bus 133 + + + + 82ba5660-298b-0bf6-b21b-9f932739961a + Current rating for MV3.101 Line 81 + + + + 9589c9c3-f8fc-d8e3-f6d7-588461f8e77b + Voltage limits for MV3.101 Bus 95 + + + + 43063a7d-735e-4cff-4965-8c1c5ca060b3 + Current rating for MV3.101 Line 86 + + + + 61aa9ae0-de30-8399-9fb7-71a82f2cffe1 + Current rating for MV3.101 Line 115 + + + + 0b0b3cee-1ecc-392f-4e62-c4b8bd781eca + Current rating for MV3.101 Line 79 + + + + 13a9c4db-147c-fa83-2b9d-719dcd64e508 + Current rating for MV3.101 Line 79 + + + + 12a19d3a-3899-633e-8cf4-53b305f0029a + Current rating for MV3.101 Line 3 + + + + 7f7bf3e9-97cb-0abd-4994-856a2bf3cff3 + Current rating for MV3.101 Line 55 + + + + 13089b81-e477-1131-b9f5-e5bcd79a3627 + Voltage limits for MV3.101 Bus 24 + + + + 46a68ae9-25e0-a736-0a3d-cf7a97b34824 + Voltage limits for MV3.101 busbar2A + + + + 3cb67754-f8cb-70cf-8df2-33302dac6a32 + Current rating for MV3.101 Line 14 + + + + ce68b489-e13a-5756-1d64-e80cff9a8e22 + Current rating for MV3.101 Line 86 + + + + 2c27331f-4661-bc48-35ff-f55a100b299a + Voltage limits for MV3.101 BS busbar1A + + + + c71ac476-2030-678c-4de0-dfaa7a79bee6 + Current rating for MV3.101 Line 21 + + + + b852858f-6f20-ac0a-8d63-93da564deee0 + Current rating for MV3.101 Line 115 + + + + d6b7c786-e40b-8c8f-29a4-dc6e9f56817c + Current rating for MV3.101 Line 52 + + + + b51d6ab4-3291-6e09-eadb-a50cd1a6c718 + Voltage limits for MV3.101 Bus 66 + + + + 54ddcd6c-25ed-5537-cbf7-b2d86d50cb71 + Current rating for MV3.101 Line 14 + + + + 997cc9db-1214-6659-3976-9d0b8497d15e + Current rating for MV3.101 Line 5 + + + + 57ff7dde-dea7-bfe7-5d9d-2ee19560793a + Current rating for MV3.101 Line 55 + + + + cab466ce-25a8-6332-7939-d7458173a124 + Current rating for MV3.101 Line 21 + + + + a34089de-96d5-3937-4ada-7a47c5088b82 + Current rating for MV3.101 Line 112 + + + + c4336f55-cf05-c750-d5ca-f35eceb68726 + Current rating for MV3.101 Line 112 + + + + 3b43b93e-8548-c723-e53c-e1e3f98fefc9 + Current rating for MV3.101 Line 5 + + + + 7babe0c2-0a1b-e1a6-e12a-fd0baba359ed + Current rating for MV3.101 Line 46 + + + + 273c9ad4-a0cb-cbad-1ac9-3022a6a8f8b7 + Voltage limits for MV3.101 Bus 59 + + + + bd29ce9e-dd8e-e64c-88a5-e236fc54b4f3 + Current rating for MV3.101 Line 46 + + + + cef12e5c-c775-4b0d-f243-ebf3c10f66a5 + Voltage limits for MV3.101 Bus 72 + + + + 1ec9b5e4-155b-bd48-46e5-33ce42c930cd + Current rating for MV3.101 Line 52 + + + + 031a8dda-eb99-097a-3bdb-9d714c5029de + Current rating for MV3.101 Line 107 + + + + 342d708a-b97d-112b-6a9e-7e7e70fb7068 + Voltage limits for MV3.101 Bus 56 + + + + 85a5bc91-e83c-6dad-01fa-bba6909545b8 + Voltage limits for MV3.101 Bus 90 + + + + d2c93ef1-9ad8-d4e5-473c-97d257f5fa57 + Current rating for MV3.101 Line 54 + + + + f35dd31c-f5df-008e-cc88-7b65a936d3ea + Voltage limits for MV3.101 Bus 13 + + + + 27142e73-e4cc-2159-5416-1bfe70a44387 + Current rating for MV3.101 Line 107 + + + + a76e9562-3555-6246-d767-680225111740 + Current rating for HV1-MV3.101-Trafo1 + + + + af9f414e-d0d8-9f16-0b66-f0d0d24711bd + Current rating for MV3.101 loop_line 8 + + + + 0552f35c-9215-666d-8bf8-1df5782e35ff + Current rating for MV3.101 Line 54 + + + + bf80ab80-32a8-6b11-e07d-2ca59771da9a + Current rating for MV3.101 loop_line 5 + + + + 34915a9b-7742-4763-3d6d-0455b3f95369 + Voltage limits for MV3.101 Bus 143 + + + + a38e6ad9-7b9e-beca-b6ac-e93b103d57dc + Current rating for MV3.101 Line 109 + + + + 9e6ab5a8-63e0-9e2b-54f8-5273ce20ea5e + Current rating for HV1-MV3.101-Trafo1 + + + + 11ebba20-74c4-ce89-3547-d127af52215d + Voltage limits for MV3.101 Bus 76 + + + + 334b9bbc-5a7d-8683-bdde-d2b068c558f2 + Voltage limits for MV3.101 Bus 104 + + + + 80c83515-31d4-a417-3ed9-0b610ef5daed + Current rating for MV3.101 Line 6 + + + + ed0ca8bc-f4e4-a998-5ca9-3324212e9dad + Current rating for MV3.101 Line 72 + + + + 1fccd53c-52ec-5b28-cf24-144416a33c85 + Current rating for MV3.101 Line 6 + + + + ddd3601c-0680-c492-cbb6-b72aa0e61941 + Current rating for MV3.101 loop_line 8 + + + + 03e48a3e-b99d-239d-3210-46c256437128 + Current rating for MV3.101 loop_line 5 + + + + c9531043-45e0-46f3-f59b-319fd770e188 + Current rating for MV3.101 Line 94 + + + + 5124d288-d570-a2e9-861d-c3b0fa4db5d6 + Voltage limits for MV3.101 Bus 36 + + + + f30eb91a-e78e-b332-5169-294490bf97e8 + Current rating for MV3.101 Line 4 + + + + 4f581338-45c9-300d-f8f1-fa7ae410c02c + Current rating for MV3.101 Line 22 + + + + fa9034bf-6f77-f713-5de5-31f4bdd3312b + Current rating for MV3.101 Line 94 + + + + c04d20ee-10f5-a3a1-0ed7-dd6b4c4d46e9 + Current rating for MV3.101 Line 4 + + + + f4aaded2-6ce5-c860-1f99-e29dd6546d7b + Current rating for MV3.101 Line 109 + + + + c4777082-f51c-22ee-9121-44109bebe447 + Current rating for MV3.101 Line 22 + + + + a9d39c2b-557f-1d77-52bf-9e0c9f34c927 + Current rating for MV3.101 Line 99 + + + + 70db3bba-e278-c04a-6883-97e11ddb1856 + Voltage limits for MV3.101 Bus 129 + + + + 2cc59a87-11a3-e078-95f1-dffaae574f93 + Current rating for MV3.101 Line 37 + + + + 7d9ebd93-4e5b-cd07-ce59-915c08b780db + Voltage limits for MV3.101 Bus 106 + + + + 27ff7060-b78b-bdeb-ac9c-a6ca843d2a48 + Current rating for MV3.101 Line 63 + + + + 114e47ce-f47d-d853-3aa8-1f93643df25f + Current rating for MV3.101 Line 37 + + + + 084a2acf-de4d-d332-d46f-5f6d319d5207 + Voltage limits for MV3.101 Bus 78 + + + + 71fbd01d-bbe7-52c4-9366-e6ce208a0abc + Current rating for MV3.101 Line 63 + + + + f8028ed3-b03a-f37f-6275-81ef7e15cac6 + Current rating for MV3.101 Line 72 + + + + ece1bb4c-2f3e-7fa5-3e93-60fbf6c1341d + Voltage limits for MV3.101 Bus 44 + + + + c00dfd15-8042-ff09-a015-bb7f8e961e7c + Voltage limits for MV3.101 Bus 47 + + + + 2c91168a-0d49-0483-54dd-0de063d2b052 + Voltage limits for MV3.101 Bus 84 + + + + face5e74-e265-2aa4-ede8-d200cbac8337 + Voltage limits for MV3.101 Bus 65 + + + + 361fd923-62a2-4820-152a-ca179077fe27 + Current rating for MV3.101 Line 104 + + + + 80234a9b-00b8-66ab-be46-91ce993e2664 + Current rating for MV3.101 Line 104 + + + + 21389a70-02b0-78be-0baa-c98f857f1d80 + Current rating for MV3.101 Line 99 + + + + c71a9b85-20c0-6c47-6ff8-97c5e919fe07 + Current rating for MV3.101 Line 57 + + + + 15c0d2b3-f2f4-8a61-6922-807968a7f222 + Voltage limits for MV3.101 Bus 16 + + + + 203d33bc-d365-3ffe-d632-7731b75b2999 + Current rating for MV3.101 Line 88 + + + + eb0045e2-43af-614e-33d4-ead6de3766c1 + Current rating for MV3.101 Line 88 + + + + 747cc1b0-b9d8-ecde-5ae0-78c80c988bae + Voltage limits for MV3.101 Bus 49 + + + + 1d0dbf6c-bf96-f8fc-91f1-db9fe8eb4e3f + Current rating for MV3.101 Line 57 + + + + 5a55c12e-8993-03de-5457-fba9f536f749 + Voltage limits for MV3.101 Bus 108 + + + + b3336147-4a7d-7d97-e6f1-afbd213f7bcf + Voltage limits for MV3.101 Bus 20 + + + + 428e7e4d-33f2-1508-0125-438940be2575 + Current rating for MV3.101 Line 56 + + + + a58cb104-7040-f687-dfc4-7c7da4e6cdfb + Voltage limits for MV3.101 Bus 37 + + + + a9d3bbc6-08f0-6a64-67ab-4496e8175c74 + Current rating for MV3.101 Line 13 + + + + e84587c7-d69c-da8b-5d39-299300ebe264 + Current rating for MV3.101 Line 85 + + + + 6b2bd2a5-18f5-cede-8b54-27d5ecd7afe2 + Current rating for MV3.101 Line 85 + + + + ed7b783e-6b21-f034-5ac3-b5e7a6f7116c + Voltage limits for MV3.101 Bus 128 + + + + 7fa7ebad-e23f-b70f-2864-64fe193b534d + Current rating for MV3.101 Line 13 + + + + 7386d575-57c6-1596-46b0-d2d1927f2f53 + Current rating for MV3.101 Line 56 + + + + c8cc631f-437c-1463-06c9-3a9aeb123aa0 + Current rating for MV3.101 loop_line 7 + + + + 084e8e95-19d1-cb3d-d5d9-005e502cf391 + Current rating for MV3.101 Line 71 + + + + 3fe864f3-82ee-d972-76b7-72da75ffcbc5 + Voltage limits for MV3.101 Bus 79 + + + + dca49c43-d8f1-4e05-9f8d-72aaa0fd883f + Current rating for MV3.101 Line 25 + + + + 39f3e9d8-529a-fac7-8b4c-c176d1e2857c + Voltage limits for MV3.101 Bus 113 + + + + ea725bf4-cdb8-20f2-fc9c-511bceddbabb + Current rating for MV3.101 Line 71 + + + + 260d9196-c187-532a-385a-5460aa58867c + Voltage limits for MV3.101 Bus 73 + + + + 27fabc55-aae1-1530-49cd-7beef8facc35 + Current rating for MV3.101 loop_line 7 + + + + 25c14872-ed64-d8b3-a4f1-138df56010a1 + Voltage limits for MV3.101 Bus 67 + + + + cbf4dd6a-d468-2ae3-c190-4db555ad6378 + Current rating for MV3.101 Line 25 + + + + 05eca5fc-d0a8-146b-f0b8-7710a24fe991 + Voltage limits for MV3.101 Bus 98 + + + + 947172df-8f94-70e5-aa23-483e713c6a72 + Current rating for MV3.101 loop_line 6 + + + + f5a2af4e-a673-c42d-53e5-8acd3f4f21f1 + Current rating for MV3.101 Line 78 + + + + bfed264e-a667-eb7a-eb15-455de7e0b936 + Voltage limits for MV3.101 Bus 64 + + + + 1ba7e721-a331-f882-5834-6773004f0257 + Current rating for MV3.101 Line 89 + + + + 41888b8f-918e-fba9-e5ca-67ef693a01b8 + Current rating for MV3.101 Line 116 + + + + ec028bd5-1bb5-bcad-2493-bf5db912d3c3 + Voltage limits for MV3.101 Bus 52 + + + + fe1a260e-0406-461d-02ea-9fe2c12ce813 + Voltage limits for MV3.101 Bus 21 + + + + 61c7abff-7042-50ed-0a23-77b0e928cd06 + Voltage limits for MV3.101 Bus 123 + + + + e54fe18e-e3ba-4396-7ba5-3c1fc9e976f5 + Voltage limits for MV3.101 Bus 60 + + + + 1faf503f-96d3-d2ce-6dc2-845911116a08 + Voltage limits for MV3.101 Bus 105 + + + + d02d8f64-1541-0616-7cd0-9a825f3b4130 + Voltage limits for MV3.101 Bus 111 + + + + 5ff1e634-5970-7a7b-90c0-2827ea4862e2 + Voltage limits for MV3.101 busbar2B + + + + 31367694-d1f1-cdbe-aed3-2890aba91f08 + Voltage limits for MV3.101 Bus 127 + + + + 752154a7-e362-90c4-0cd1-d8c960f1de6e + Voltage limits for MV3.101 Bus 117 + + + + 00c7c455-3623-28d1-a1a6-5a79cdb37149 + Voltage limits for MV3.101 Bus 18 + + + + 1d5a9e14-be05-572e-b074-0644694e0cea + Voltage limits for MV3.101 Bus 134 + + + + f67adcb0-400b-3d5f-d927-99dbcb470aeb + Voltage limits for MV3.101 busbar1B + + + + c7b5ee8e-06cc-a7b9-8b2b-0ddddcc08a2c + Voltage limits for MV3.101 Bus 33 + + + + a21d2fa1-c80f-1ee7-b635-a7f058f8c0ab + Voltage limits for MV3.101 Bus 14 + + + + 8a6a8066-837d-0bd9-d6ca-7cbc800c7881 + Voltage limits for MV3.101 Bus 30 + + + + e4417893-cc5a-2d11-461b-20666304d08e + Voltage limits for MV3.101 Bus 136 + + + + fea4a4ab-1645-58f7-36c4-901f80799d00 + Voltage limits for MV3.101 Bus 50 + + + + 8157c987-7f8f-08dd-dfe4-66dc798dd979 + Voltage limits for MV3.101 Bus 116 + + + + e04cc820-8e37-3b28-cf6a-91358ba515c6 + Voltage limits for MV3.101 Bus 126 + + + + 179a7c30-6e9a-7436-9b43-88427a5ecf82 + Voltage limits for MV3.101 Bus 131 + + + + 7c955645-4fb0-7d93-c657-786d94de6da1 + Voltage limits for MV3.101 Bus 107 + + + + 2dec4804-70b6-b64a-eb56-8543895334d6 + Voltage limits for MV3.101 Bus 74 + + + + 0d5f5fa1-11e1-58c7-2608-db8feea37dd8 + Voltage limits for MV3.101 Bus 71 + + + + e4a87fd7-3436-881e-d2e3-e4b72cc27396 + Voltage limits for MV3.101 Bus 75 + + + + e3414f94-e4ee-8488-170d-8c4632f6281e + Voltage limits for MV3.101 Bus 139 + + + + 5ad4c2ed-d8a5-b3d8-0644-599a296b76d1 + Voltage limits for MV3.101 Bus 118 + + + + 44f96f0f-cbe1-d5d9-caef-774e915ac3c4 + Voltage limits for MV3.101 Bus 96 + + + + 11b40b86-b6d8-8da8-0051-242306924077 + Voltage limits for MV3.101 Bus 115 + + + + 2756ba25-aa49-94a5-77f9-bafe4cbbddc4 + Voltage limits for MV3.101 Bus 69 + + + + + + + af34d989-7f9a-4b08-9649-18ca5be9ffbe + MV3.101 Load 69 + + + + + + f8387be2-73a3-49a0-880d-1fb142f5acfe + MV3.101 Load 56 + + + + + + fbb51ce0-09e3-48f2-87ca-30ce9c7f5d60 + MV3.101 Load 43 + + + + + + b6304302-6309-45ff-bd09-67fb5b9d8d4e + MV3.101 Load 131 + + + + + + e50c0f4b-3238-45a9-9d39-1b7ef71e3022 + MV3.101 Load 96 + + + + + + fda83017-c3ae-43db-8617-b367868e53b4 + MV3.101 Load 24 + + + + + + a8515958-e2f2-473d-b9c8-d2f7ff5c473c + MV3.101 Load 120 + + + + + + e1235b77-d537-4b1c-aa15-240a008ace12 + MV3.101 Load 124 + + + + + + d6509bd3-35c3-4f3d-badb-86a473f3aad3 + MV3.101 Load 64 + + + + + + c4c2ae36-e4a6-4c63-87fd-623956877845 + MV3.101 Load 115 + + + + + + 9eb86ce5-a02a-4741-91d1-b6229b0efcfd + MV3.101 Load 60 + + + + + + 8fe0b17d-1756-4d3c-9b98-86e62b761336 + MV3.101 Load 113 + + + + + + 989d982e-b378-4b25-adef-6967c40a0a89 + MV3.101 Load 94 + + + + + + c25f6082-0c63-4dbc-83f1-d8c1c4c21e56 + MV3.101 Load 98 + + + + + + 89c85288-a2e0-4830-a141-72c61ed888ba + MV3.101 Load 97 + + + + + + da263309-7e40-4d53-b008-138542978ab8 + MV3.101 Load 71 + + + + + + cb87cadb-2d2a-4559-befc-e5636be50ca1 + MV3.101 Load 25 + + + + + + a565170b-9a94-4197-a8f9-d51682bac1d1 + MV3.101 Load 57 + + + + + + cd193d8a-bffc-4dd8-9e13-526aca22c680 + MV3.101 Load 23 + + + + + + cf7c4fee-8d6f-4c22-b094-95725e26547e + MV3.101 MV Load 3 + + + + + + debe1d7c-3a64-47aa-b93b-d3ad09e2937a + MV3.101 Load 21 + + + + + + ff25488f-c91c-4d56-bb7f-7b9ac91fc3f6 + MV3.101 Load 117 + + + + + + 0fb2059a-f914-4cce-af89-0a745b79d034 + MV3.101 Load 126 + + + + + + 136bde33-9b40-46e6-85ef-9a5fb96bc21d + MV3.101 Load 7 + + + + + + 02ad2253-ced9-4ddb-a07e-38e408e86443 + MV3.101 Load 103 + + + + + + 0578050d-f290-4415-95f1-b1c7769efce7 + MV3.101 Load 53 + + + + + + 05904465-b4a6-4750-9b08-cff55a7bab97 + MV3.101 Load 108 + + + + + + 08bee9e8-d4e4-4c8c-b9cc-92c0a874bac7 + MV3.101 Load 8 + + + + + + 0194e2ed-16ba-4f78-9906-154e1bc8db67 + MV3.101 Load 51 + + + + + + 034df634-1e0d-4157-87cb-ee77bbe644e9 + MV3.101 Load 44 + + + + + + 08d016c8-f365-4885-b92b-5e78a041fcf6 + MV3.101 Load 118 + + + + + + 09dfe9c3-89a7-4620-bd51-59593bfddbd3 + MV3.101 Load 109 + + + + + + 0b8ae7ff-127f-40a4-8f9a-3d75eba7eb87 + MV3.101 Load 105 + + + + + + 175a2917-cedb-404b-b01b-457245296cf4 + MV3.101 Load 85 + + + + + + 1bcaec57-c06d-442a-980d-0055858dd798 + MV3.101 Load 84 + + + + + + 2335d39b-4fc8-4f5c-98f8-075b8d73831d + MV3.101 Load 47 + + + + + + 40b19e0b-c111-4029-a60a-78f7ec1be682 + MV3.101 Load 119 + + + + + + 51d848a2-b03b-4ef7-9434-872447f96c50 + MV3.101 Load 46 + + + + + + 5ad6d656-b6aa-433a-9203-f3fe44b7747f + HV1_MV3.101_load + + + + + + 6492264b-bbab-4ea7-875c-e9eff6d2a45f + MV3.101 Load 13 + + + + + + 67bd2d15-0713-43ba-8552-1aa23cf360de + MV3.101 Load 75 + + + + + + 4177a2b0-cba5-4d3e-8e96-bc3c8a335c19 + MV3.101 Load 66 + + + + + + 4323f761-de16-414a-a310-243f37ddb16c + MV3.101 Load 3 + + + + + + 1d9c0962-917a-425b-9a66-d91427b2a6ff + MV3.101 Load 41 + + + + + + 747ff172-a2cb-4c34-bf32-e52b514b3182 + MV3.101 Load 83 + + + + + + 66a0c91e-4a44-4936-a112-9e26c89e2eb7 + MV3.101 Load 87 + + + + + + 77920c6f-1288-45be-b23c-a9662318c0a4 + MV3.101 Load 18 + + + + + + 797e10a1-c473-4d18-916f-1377e752e490 + MV3.101 Load 42 + + + + + + 31666e66-34d5-4061-bec0-ff2b2c9a8d00 + MV3.101 Load 5 + + + + + + 238d9da9-d29e-444d-b742-7aa1a2759946 + MV3.101 Load 95 + + + + + + 2d194b08-9197-4c22-a9db-5ca9dc4b37c1 + MV3.101 Load 104 + + + + + + 55106cbf-3bd4-4745-8a1d-3d3701e3fc01 + MV3.101 MV Load 1 + + + + + + 7ac464e2-98f4-444f-a2f0-86fb296557cd + MV3.101 Load 81 + + + + + + 5b6a8fc9-aa2e-4e68-ba73-d969580b610e + MV3.101 Load 111 + + + + + + 60090924-1b8e-48d5-aba5-4bd34cbb812b + MV3.101 Load 33 + + + + + + 7ae476f5-839f-4b3b-9b28-e162efd9716e + MV3.101 Load 26 + + + + + + 1a12623f-b493-4acd-a9b6-c5388a2d504f + MV3.101 Load 89 + + + + + + 33454ba1-d5d4-4514-89fd-7f3e260b621f + MV3.101 Load 2 + + + + + + 7bfb75d0-122b-4e72-b175-92672696701b + MV3.101 Load 100 + + + + + + 50296e9d-57a4-4fb2-9560-ac34fdb0da42 + MV3.101 Load 28 + + + + + + 1a92e783-651f-474d-aa03-94429502945f + MV3.101 Load 40 + + + + + + 20e2d6a5-2953-4306-bf78-0c435472a32c + MV3.101 Load 45 + + + + + + 220268a7-fd5c-4c36-aa2d-5025b76cee6a + MV3.101 Load 36 + + + + + + 2dfd2553-9fa9-440e-bb1b-34fe96d56998 + MV3.101 Load 50 + + + + + + 4d4754f1-df5a-4920-a1cd-84d490a438c1 + MV3.101 Load 125 + + + + + + 6a1ef2c9-8df8-43e9-b003-d6dffc8df34a + MV3.101 Load 101 + + + + + + 2728ccc2-f7b2-46a1-a9db-f7b753d5fa88 + MV3.101 Load 114 + + + + + + 3336865f-8b71-4356-bcf5-86cfd5dbbc59 + MV3.101 Load 106 + + + + + + 72d94938-3a57-4713-8fa0-4e27ed1112de + MV3.101 Load 63 + + + + + + 30194020-9dd8-4368-94bd-61f881c53b01 + MV3.101 Load 48 + + + + + + 810eaebc-aec6-4d86-8707-8165fe91a640 + MV3.101 Load 78 + + + + + + 84221564-dddf-4879-9a4b-c70204904247 + MV3.101 Load 122 + + + + + + 8123190e-caff-4281-9e9e-ebea24b23709 + MV3.101 Load 102 + + + + + + 7c54539a-2e04-4a0d-9176-dd2493fea36d + MV3.101 Load 10 + + + + + + 85203ef2-7ca6-4b8c-bc1e-4026c46de1ce + MV3.101 Load 15 + + + + + + 87f7b180-8599-4421-b92d-89d2a589c997 + MV3.101 Load 127 + + + + + + 1bb71236-281b-40ea-9bfd-2009d24bbbf1 + MV3.101 Load 16 + + + + + + 339c68f8-e19a-4028-9150-5190c11641fe + MV3.101 Load 130 + + + + + + 75c9614a-a691-4e9f-b02b-658918358581 + MV3.101 Load 32 + + + + + + 883c56eb-3bec-4738-927e-1928f3b39fde + MV3.101 Load 134 + + + + + + 88ec97a2-6e0a-4ba8-9e60-e7c5afad31ad + MV3.101 Load 86 + + + + + + 3f1e5f2b-8776-4ae4-a2a0-b809618e74c9 + MV3.101 Load 30 + + + + + + 17090226-c11d-4036-a001-4355d114d8ae + MV3.101 Load 74 + + + + + + 3459ae84-00c6-4828-8ef6-35eef2cb6e65 + MV3.101 Load 49 + + + + + + 32c19c31-980a-4329-a0a6-b15da71c1a39 + MV3.101 Load 132 + + + + + + 35b7a5bc-89e4-4233-a9a3-40bf7c750f2d + MV3.101 Load 112 + + + + + + 3e4858a5-53c8-4953-8024-45e78214c70e + MV3.101 MV Load 2 + + + + + + 305456eb-2097-4bc0-b2e2-ffe0ce9a28ca + MV3.101 Load 123 + + + + + + 3fe104cd-bb4b-4ba3-90e4-5b021edc087d + MV3.101 Load 14 + + + + + + 45360327-29cd-4642-81d2-437b1ab1dee4 + MV3.101 Load 107 + + + + + + 463a1b6b-0307-490d-9d5f-c241f9508500 + MV3.101 Load 6 + + + + + + 55a69b60-0d58-49c8-8594-863c4d43d13a + MV3.101 Load 121 + + + + + + 6862b495-7672-43d8-9050-001fb633247e + MV3.101 Load 62 + + + + + + 6b5a98f9-8789-4502-92dc-09902afeae26 + MV3.101 Load 72 + + + + + + 6cffcfe4-2b15-4bc0-8a3f-a3b48e7ff112 + MV3.101 Load 34 + + + + + + 6eb2bb56-54ed-41fb-b38d-ac0a914ce623 + MV3.101 Load 58 + + + + + + d68bd0b8-ae1e-4ba9-ac7c-4128b1c6388c + MV3.101 Load 59 + + + + + + bedad604-9fe9-483b-801f-0f0a914ff68b + MV3.101 Load 37 + + + + + + ed454cad-f6e3-4bf0-a192-5157adee2aae + MV3.101 Load 116 + + + + + + f305039b-6dde-4423-a04d-977f791cf573 + MV3.101 Load 29 + + + + + + a0fea60d-07e5-49c7-86b9-42d2736d0924 + MV3.101 Load 92 + + + + + + c0669001-e84d-4c9d-ad4a-74ea32c53f28 + MV3.101 Load 27 + + + + + + cfb20189-d0a5-4bbc-b130-2e60d0367b17 + MV3.101 Load 67 + + + + + + 918a4ceb-dc59-4def-b480-dc00e2ec884e + MV3.101 Load 12 + + + + + + 9f72ed37-ba84-4fbb-9999-f587ca4a8586 + MV3.101 Load 61 + + + + + + 99edffcb-d168-4c22-b048-ee56ea13d78e + MV3.101 Load 99 + + + + + + 9f1013db-1992-4ab5-9942-ad5d91f7002f + MV3.101 Load 19 + + + + + + a7fdbed4-f699-4ec8-acdd-4e716b0ddb60 + MV3.101 Load 91 + + + + + + af09f9c2-12ec-4980-9d8d-afb76cd85195 + MV3.101 Load 20 + + + + + + b0247fd9-c2d7-4708-aed4-c3c401d5848e + MV3.101 Load 133 + + + + + + b4a560cf-7fe9-4ab6-bb9f-8ee2c2fb5ec8 + MV3.101 Load 128 + + + + + + c634b905-a4bb-4e64-8f2f-d54f36fed161 + MV3.101 Load 110 + + + + + + c6d6601c-fe6a-489c-b885-65d3d1667067 + MV3.101 Load 22 + + + + + + cffbff32-e1f5-430b-a960-b413f713f7d4 + MV3.101 Load 31 + + + + + + a0f874dd-47a1-4a3b-a3f5-e515b554a147 + MV3.101 Load 82 + + + + + + bc169467-6ffe-4a5c-93f0-a8d09d5d5cba + MV3.101 Load 4 + + + + + + d66d703f-1872-42ad-80b6-8bc1e696147e + MV3.101 Load 17 + + + + + + b54247e5-1d24-4684-9351-234462928b07 + MV3.101 Load 93 + + + + + + 8e357c58-e39b-496f-8d3d-4514bb13125a + MV3.101 Load 90 + + + + + + 92629f37-01e5-4808-a43a-924c7699ecf9 + MV3.101 Load 9 + + + + + + d90769fd-c43f-4f4b-af03-6efab100d19d + MV3.101 Load 52 + + + + + + dbe659d4-8acc-498b-83fd-aa0a5a4d975f + MV3.101 Load 39 + + + + + + de545db3-a9a9-425d-8211-47f41c2a69b8 + MV3.101 Load 79 + + + + + + 8df7d387-b81e-4d68-8cb8-5fc06c70d424 + MV3.101 Load 129 + + + + + + def5abc5-a3a3-4e2e-8575-0d435e7ac605 + MV3.101 Load 35 + + + + + + cfe06713-0b52-4945-a111-0895fa57c83a + MV3.101 Load 76 + + + + + + e2da336c-28a7-4530-9b32-053e4dc51cfc + MV3.101 Load 70 + + + + + + e776e743-102d-47cc-98b1-41c02fcc087b + MV3.101 Load 73 + + + + + + edf2ccef-97a3-4197-87cf-571655f2cd62 + MV3.101 Load 38 + + + + + + f3d2ecf1-4c7e-4cf2-b5d4-8a3c14622cf6 + MV3.101 Load 77 + + + + + + f46ac8b4-eb1f-45c2-9ae9-4f79d53ff0f2 + MV3.101 Load 80 + + + + + + f5ff961a-3056-45b7-82d6-7280a0220b08 + MV3.101 MV Load 4 + + + + + + f79a0290-7fb7-4a9d-b52a-b3bb5fadcfac + MV3.101 Load 54 + + + + + + 923864dd-c980-4796-af8f-bbd0bc1ca9d2 + MV3.101 MV Load 5 + + + + + + 9a5f9bc2-a753-401c-8c93-b36346247680 + MV3.101 Load 68 + + + + + + c240179c-f455-48bb-867c-bf6c72c1d58a + MV3.101 Load 11 + + + + + + d9aa66e2-a923-4695-a027-9c47fe453d21 + MV3.101 Load 88 + + + + + + b995f333-2825-44ce-a723-8b5f1cc90ba9 + MV3.101 Load 65 + + + + + + a9bcd737-c945-4573-83b3-466206af01ae + MV3.101 Load 55 + + + 416 + 68548979-03f1-f7a9-2f13-3d3bca952dc9 + patl for MV3.101 Line 89 + + + + + 358 + 847757c2-457e-e671-5dab-7b13ef30c37a + patl for MV3.101 loop_line 6 + + + + + 416 + a545cdde-ab24-196b-4feb-7373a7902611 + patl for MV3.101 Line 45 + + + + + 416 + 0c4b41cf-5479-1a27-d7e9-77cf9bed2a71 + patl for MV3.101 Line 78 + + + + + 471 + ebe7af55-4d6c-6ef0-8194-a2f9455b291f + patl for MV3.101 Line 18 + + + + + 416 + 6656b7bc-0268-565e-9bd6-ab1a333493f2 + patl for MV3.101 Line 23 + + + + + 358 + 2efabcd2-25da-6b73-7f52-9e40a993d1fd + patl for MV3.101 Line 121 + + + + + 535 + 3456811b-83a6-1477-fe8f-befc320b53ed + patl for MV3.101 Line 67 + + + + + 535 + e66a149c-49f5-9313-2cf4-c14b610945b5 + patl for MV3.101 Line 67 + + + + + 416 + 035f5c37-8e99-a8ce-658a-49289261514d + patl for MV3.101 loop_line 10 + + + + + 416 + 634da840-6052-9286-bf03-38141137be8b + patl for MV3.101 Line 82 + + + + + 471 + fd6b70d3-b56b-c46b-f820-d203748dc86b + patl for MV3.101 Line 18 + + + + + 416 + 0a3adaab-096f-3551-aa01-0c4d8d1485ea + patl for MV3.101 Line 23 + + + + + 358 + cf6b8458-be8a-5728-239a-2db825141aa6 + patl for MV3.101 Line 121 + + + + + 416 + abb5a10b-3509-283f-d3ca-ceee0ff2ff85 + patl for MV3.101 loop_line 10 + + + + + 416 + 119f5115-a525-06f6-c912-6072055bedca + patl for MV3.101 Line 82 + + + + + 535 + 674b42dd-5d73-7eea-e5de-5fb350c6fce9 + patl for MV3.101 Line 26 + + + + + 315 + d55630b0-808c-6ce3-37cb-4f3a5f9eb24e + patl for MV3.101 Line 119 + + + + + 315 + a6b0a44a-cc75-2438-944c-cab8c24b609c + patl for MV3.101 Line 119 + + + + + 358 + 5d69a5e1-4e7c-986d-7e1e-486377aef40f + patl for MV3.101 Line 133 + + + + + 535 + 010bfd23-d634-e744-dde6-88e7bb9885f9 + patl for MV3.101 Line 26 + + + + + 535 + ff3a3adc-1efc-5ecf-9ea7-f42bcf61d758 + patl for MV3.101 Line 75 + + + + + 535 + 7ac1dc27-8cd9-69e6-a463-8bc185124d85 + patl for MV3.101 Line 75 + + + + + 471 + ceb0d2f0-f810-e7c3-b19a-a2500261f717 + patl for MV3.101 Line 10 + + + + + 471 + acd16c9e-6303-f510-b8e9-a963e1b22060 + patl for MV3.101 Line 42 + + + + + 471 + 87c82b95-e5a6-703a-5f4e-efdb15328d5b + patl for MV3.101 Line 10 + + + + + 471 + 47408603-0023-e4ea-2388-743248d8fbff + patl for MV3.101 Line 42 + + + + + 358 + 32fb9598-ef55-3401-f421-351b2e4a1c9e + patl for MV3.101 Line 133 + + + + + 416 + 38a3d3e3-0432-85c9-d172-bc9031a7fc8e + patl for MV3.101 Line 105 + + + + + 535 + 9a7b11c6-b4fc-a7f5-01ee-ccd7e848117c + patl for MV3.101 BS-Feeder3_line + + + + + 315 + e96bc929-830c-b845-4371-07a9c0aa77b9 + patl for MV3.101 Line 111 + + + + + 535 + ab6f3295-5655-b2db-f531-af41b1c2e22a + patl for MV3.101 Line 12 + + + + + 416 + 5d776a79-bbd6-332d-b215-a572d1913730 + patl for MV3.101 loop_line 3 + + + + + 416 + be9648b8-d4fe-c4c5-bef6-1dce36345644 + patl for MV3.101 Line 105 + + + + + 315 + 8dd74490-ad99-575a-02bd-ff45fd14f728 + patl for MV3.101 Line 111 + + + + + 535 + 00ff4fb8-04e9-0cbe-e3db-835485f702c2 + patl for MV3.101 Line 12 + + + + + 416 + 664ee000-9c3e-29c3-8314-8434f8f374ad + patl for MV3.101 loop_line 3 + + + + + 416 + 1e20f755-4f23-55ea-c1e1-7d7a32d3b45f + patl for MV3.101 Line 102 + + + + + 535 + 3dba24b7-fb42-4baa-aa43-7047a8530058 + patl for MV3.101 BS-Feeder3_line + + + + + 535 + 4ee816a6-505d-99ab-1245-e01a0123ce10 + patl for MV3.101 loop_line 11 + + + + + 535 + 54f50303-0399-b504-5a53-0233c3103a69 + patl for MV3.101 loop_line 11 + + + + + 471 + 5ee3b900-5427-d077-e566-ca47f74410a8 + patl for MV3.101 Line 61 + + + + + 471 + cee2d815-6843-d21d-41f4-58eca1dc26f5 + patl for MV3.101 Line 61 + + + + + 471 + b744e643-9f6f-9832-1ed6-a1375cae5f2c + patl for MV3.101 Line 19 + + + + + 358 + 4b203954-fac1-4662-a412-282fbf5033de + patl for MV3.101 Line 132 + + + + + 535 + 11fed0b2-c970-cf90-c7be-683e2460ee1e + patl for MV3.101 Line 27 + + + + + 471 + ea160919-914e-63cb-aa42-67f4c4c415be + patl for MV3.101 Line 19 + + + + + 471 + e28a0662-72cf-566e-9ca0-bff30875bc55 + patl for MV3.101 Line 64 + + + + + 471 + cf41502a-3d7f-d6cb-0918-12764dba261b + patl for MV3.101 Line 44 + + + + + 471 + 2315943e-1854-e82f-c8be-9bf5a1520c16 + patl for MV3.101 Line 64 + + + + + 416 + 851864ca-8df7-75ed-cb58-cc3b434161a6 + patl for MV3.101 Line 102 + + + + + 358 + e54d7a5f-b93f-f5f8-5220-99de24aee592 + patl for MV3.101 Line 132 + + + + + 471 + 04bf654d-7ace-4e7a-f72b-42809b24eb50 + patl for MV3.101 Line 44 + + + + + 416 + 5ae68e46-2eae-c2bf-076f-8936ace0aa12 + patl for MV3.101 Line 33 + + + + + 535 + de6c1ace-fe15-f174-22cf-1cfeea1afdf8 + patl for MV3.101 Line 27 + + + + + 416 + cba57f31-73ec-a902-e015-524203f56e11 + patl for MV3.101 Line 33 + + + + + 535 + dca70216-a20e-29f9-b961-8d4c0c360d17 + patl for MV3.101 Line 76 + + + + + 471 + 5865b3f0-b3f7-1769-4d49-4fdbc33edcaa + patl for MV3.101 Line 9 + + + + + 535 + 6c6479bb-1aff-04af-312c-58cb9da2d391 + patl for MV3.101 Line 98 + + + + + 358 + 32b60c0a-71e8-bfc3-b7f3-226fb9825ab8 + patl for MV3.101 Line 129 + + + + + 471 + b7433510-4316-be0d-1563-fa8ec44e3c73 + patl for MV3.101 Line 58 + + + + + 471 + c9fae2a7-1b6e-f4ad-4870-7a050df7835f + patl for MV3.101 Line 17 + + + + + 535 + 13b4676e-70e0-81a3-d48f-1cd74e0ab052 + patl for MV3.101 Line 76 + + + + + 358 + 33179045-e52d-a1db-e7ec-7fe1f9a6562f + patl for MV3.101 Line 129 + + + + + 471 + 7eadc758-a656-3021-164d-c92424c71a89 + patl for MV3.101 Line 58 + + + + + 535 + 67983e75-3ebe-23ef-355d-14bf1b0245ae + patl for MV3.101 Line 98 + + + + + 471 + 79828215-4b9f-61a7-9e2d-63bab0024e98 + patl for MV3.101 Line 17 + + + + + 471 + edb134a3-5fb1-e75b-ed67-7036135ca9cf + patl for MV3.101 Line 9 + + + + + 535 + bb42e577-97c8-a002-e0ca-4d16ac6812e8 + patl for MV3.101 Line 95 + + + + + 535 + 702a44d8-4a00-5b6f-601a-dc4b61e68218 + patl for MV3.101 Line 1 + + + + + 535 + ee8b913f-ac06-bcfd-7a28-6a28032859c3 + patl for MV3.101 Line 95 + + + + + 315 + 39df22c1-d8ec-b0ba-7d5c-f9594ac4b25c + patl for MV3.101 Line 123 + + + + + 471 + 7544bbe4-b319-7257-5897-7edcd672d05d + patl for MV3.101 Line 60 + + + + + 358 + cf33a06a-0c83-f26e-b21f-9ec071799536 + patl for MV3.101 Line 131 + + + + + 416 + 1c6487d7-9b23-c5eb-8095-58d412320a01 + patl for MV3.101 Line 90 + + + + + 358 + 8593ca59-4298-6934-b3de-d8ccb8bf6584 + patl for MV3.101 Line 131 + + + + + 416 + e5d76626-0225-bc3c-d368-b9a17b62dd67 + patl for MV3.101 Line 90 + + + + + 315 + 3aa74c0f-fd4d-0c22-d686-276a668f43ab + patl for MV3.101 Line 123 + + + + + 471 + c3aec13b-74e3-9e96-c05c-99bf13b004ba + patl for MV3.101 Line 60 + + + + + 535 + a6b5c07a-52bf-7ff9-ebd8-ed4af3a5e126 + patl for MV3.101 Line 1 + + + + + 471 + 708de55a-e9d2-c748-b81b-c007b329b44a + patl for MV3.101 Line 8 + + + + + 471 + 2d4b18f6-5a8f-486c-5872-431bb6ff0ccf + patl for MV3.101 Line 8 + + + + + 416 + d0885a58-23d3-1b74-60a6-5fa9f59e657d + patl for MV3.101 Line 83 + + + + + 535 + c5200375-1559-0889-6259-d73db72dc22b + patl for MV3.101 Line 68 + + + + + 535 + 5d2773ba-eb6e-9cc4-c1c4-1ac3e244f7d9 + patl for MV3.101 Line 69 + + + + + 416 + 187d7c8c-e21c-bc6e-7dc9-89288cc387d5 + patl for MV3.101 Line 83 + + + + + 471 + 34a1eaff-78ab-12fe-c93f-ccb97749a3f9 + patl for MV3.101 Line 11 + + + + + 535 + 6e68c643-b867-5a89-6bde-eeab405c0312 + patl for MV3.101 Line 68 + + + + + 416 + 2923eb14-9383-01fa-4499-5e29e15c230a + patl for MV3.101 Line 92 + + + + + 535 + ba09fabf-5199-cf20-38e0-2d953070e556 + patl for MV3.101 Line 69 + + + + + 471 + 0045241c-9179-e12d-7c90-964f074b4b33 + patl for MV3.101 Line 11 + + + + + 416 + a2921fdd-c8a0-70fd-4849-a882ba465c09 + patl for MV3.101 Line 92 + + + + + 535 + 0b8b5c74-d835-87e2-b7a9-0b6a0dec62c0 + patl for MV3.101 Line 74 + + + + + 315 + d1aa0e14-4e1c-ff0d-e3a2-6995a94cb5c4 + patl for MV3.101 Line 122 + + + + + 315 + 30562875-8a5a-372b-8b34-b9032fb66177 + patl for MV3.101 Line 124 + + + + + 535 + 88c3a310-5cf4-c238-ac8b-f6c8cce37286 + patl for MV3.101 Line 28 + + + + + 315 + cee3297c-a62a-3124-c54e-a6bc47245472 + patl for MV3.101 Line 124 + + + + + 416 + a760844c-baa3-1cf7-5440-dafa30b16566 + patl for MV3.101 Line 101 + + + + + 416 + d9f5fec8-05a6-887f-98ad-4b42c4bca9bb + patl for MV3.101 Line 40 + + + + + 416 + 3313c29a-11b4-a5f3-fc7b-2003e11a6974 + patl for MV3.101 Line 40 + + + + + 416 + 4843a283-7f1c-1c00-0838-3ed68e17e31e + patl for MV3.101 Line 101 + + + + + 535 + f88cf389-4526-4453-7f43-02b994d3549f + patl for MV3.101 Line 28 + + + + + 416 + 93776c11-94ac-8f3d-9506-9af9573ade7a + patl for MV3.101 Line 24 + + + + + 416 + 107e5750-1f4f-9893-251d-8668f5388902 + patl for MV3.101 Line 36 + + + + + 358 + 53144086-6973-157b-4522-f79ba24db4e4 + patl for MV3.101 Line 127 + + + + + 535 + 5003f821-695a-dd56-6e38-e0b569632aed + patl for MV3.101 Line 74 + + + + + 416 + 2b2dc39d-0ca7-656e-5af3-90a129be7d43 + patl for MV3.101 Line 36 + + + + + 535 + 74de4c2b-5507-e581-b05e-9292c6ad99f5 + patl for MV3.101 Line 50 + + + + + 358 + 32d369fc-e792-224c-d2da-d9bceea5230f + patl for MV3.101 Line 7 + + + + + 535 + 38e26fb2-d2d3-3f26-7402-76c1f0118210 + patl for MV3.101 Line 50 + + + + + 535 + 8779a028-298a-42d4-9c87-b22f7340df15 + patl for MV3.101 Line 51 + + + + + 315 + f0e39b7f-3f27-6b46-3aed-81918d51c1e2 + patl for MV3.101 Line 118 + + + + + 358 + 6dfca2da-ace5-3780-3b8f-7740655e46b1 + patl for MV3.101 Line 127 + + + + + 315 + 1da2478d-c2fe-4b78-9c4e-815d2b34f862 + patl for MV3.101 Line 118 + + + + + 416 + 259ef640-939c-cf9f-bd94-48ead3865f4f + patl for MV3.101 Line 24 + + + + + 315 + 8aee9870-24ea-cc97-d3df-b6eacd1e0de1 + patl for MV3.101 Line 122 + + + + + 535 + fd575539-57e8-11a2-e62e-90b141296688 + patl for MV3.101 Line 51 + + + + + 416 + 3e589fe0-154a-fd34-8146-ecebb35b3b20 + patl for MV3.101 Line 91 + + + + + 416 + d7fa1959-ae0e-e212-d75e-f29f51d40147 + patl for MV3.101 Line 48 + + + + + 416 + d7aa825a-8910-30f2-7e4c-e99f65bcccc4 + patl for MV3.101 Line 31 + + + + + 358 + 571d6d8d-1667-b84f-e699-c453ff4c88a0 + patl for MV3.101 Line 7 + + + + + 416 + 2ccfe0b5-a577-b705-ce3d-441d8d459470 + patl for MV3.101 Line 31 + + + + + 416 + b08542cb-d3b1-ee95-e2e3-e8a48fe366dd + patl for MV3.101 Line 93 + + + + + 416 + 49e558ee-a2c4-0d2a-6211-3535042c6114 + patl for MV3.101 Line 48 + + + + + 416 + ca50bfd9-909c-cd58-9792-b7e869f59bc6 + patl for MV3.101 Line 91 + + + + + 471 + b5535597-9d55-cf5a-8267-4d3b3ee46c12 + patl for MV3.101 Line 20 + + + + + 535 + 5c8495fb-2584-8385-1bd6-9254fcf862af + patl for MV3.101 Line 2 + + + + + 535 + 3f66c908-faaa-cd50-81a3-1ec2a0942ab0 + patl for MV3.101 Line 2 + + + + + 358 + f349461a-c46d-7eeb-761e-d323e0ca9131 + patl for MV3.101 Line 126 + + + + + 416 + f2447f27-e76a-06f8-850f-118d4519c222 + patl for MV3.101 Line 106 + + + + + 471 + 77a71c55-c697-3251-5de1-041ef5027b91 + patl for MV3.101 Line 20 + + + + + 416 + 6555cbc6-a206-39e0-e5c1-691b91e263d4 + patl for MV3.101 Line 93 + + + + + 358 + 7d61c28f-1680-9ba0-b013-373690c0ae7f + patl for MV3.101 Line 126 + + + + + 416 + 958bf28d-3f35-fcb1-146c-0a25045fc160 + patl for MV3.101 Line 103 + + + + + 416 + 62d175f1-258a-698e-78c7-0dff460de082 + patl for MV3.101 Line 103 + + + + + 416 + b0730628-2c77-c33c-666c-08667289de73 + patl for MV3.101 Line 106 + + + + + 471 + 718f7407-b369-4775-ba3e-0f02bba9d4e9 + patl for MV3.101 Line 84 + + + + + 471 + 1c7d63bf-ad75-e1f4-8dba-1a7e5a6de7f2 + patl for MV3.101 Line 53 + + + + + 471 + 842d0998-473c-c11a-c297-050874c48956 + patl for MV3.101 Line 53 + + + + + 471 + 1675f393-c222-b714-8fe2-957126e49177 + patl for MV3.101 Line 84 + + + + + 416 + 10c4a445-823e-729b-0591-a1475a6562dd + patl for MV3.101 Line 35 + + + + + 315 + 39bb7b74-4b8f-3203-bad9-93bacf6ffe9e + patl for MV3.101 Line 114 + + + + + 358 + 02bc89d6-fb28-2d88-f45e-582fba000934 + patl for MV3.101 Line 130 + + + + + 315 + d5d48df7-df43-9034-5288-a14c4c984194 + patl for MV3.101 Line 114 + + + + + 358 + da82d3f0-f1ef-5171-aaf5-58cde4002a47 + patl for MV3.101 Line 130 + + + + + 416 + b3c3d100-a27c-2b0c-14ca-935cb1ecd66b + patl for MV3.101 Line 35 + + + + + 358 + f5d011f3-8481-9f7b-eb9c-81808090bed0 + patl for MV3.101 Line 128 + + + + + 358 + da944c6c-8afb-7646-10f8-28e088447a66 + patl for MV3.101 Line 128 + + + + + 471 + 4c1ccd33-529e-0a97-20ad-b637a2f73002 + patl for MV3.101 Line 43 + + + + + 535 + b8082cd3-5ff6-4687-db5b-6503cefdbece + patl for MV3.101 BS-Feeder4_line + + + + + 535 + a31e3c1e-34e0-17e8-4d8d-b92e2f62b7ff + patl for MV3.101 BS-Feeder4_line + + + + + 471 + 21c21280-1064-00bd-f475-928896722de9 + patl for MV3.101 Line 43 + + + + + 416 + 07c6e876-99a5-5f19-c50f-b01311c389a4 + patl for MV3.101 Line 38 + + + + + 416 + 1922b3b8-d2f3-a633-0f34-d855c3032274 + patl for MV3.101 Line 80 + + + + + 416 + 014591e2-50f5-8de0-6efc-a114258aa3c3 + patl for MV3.101 Line 80 + + + + + 471 + 7c986399-4846-dfe2-c2c9-9e2c6f68b569 + patl for MV3.101 Line 41 + + + + + 471 + 7fa60de9-fd2c-1329-f6ff-d4d4378205d9 + patl for MV3.101 Line 41 + + + + + 416 + 70fa6f17-c112-bec0-6989-e5cbb22af2d2 + patl for MV3.101 Line 38 + + + + + 471 + 10dc6e17-5dca-a9dc-e057-9003af4fa5bf + patl for MV3.101 Line 66 + + + + + 535 + 03c86e46-b200-db79-e096-e2bad97b47d6 + patl for MV3.101 Line 29 + + + + + 471 + 14965a6c-8abb-c2a7-214f-4c3eb091af6e + patl for MV3.101 Line 62 + + + + + 471 + 9ff32d55-dbb0-a082-0d7e-c4ccb0fd8c1d + patl for MV3.101 Line 66 + + + + + 471 + 16434079-af02-2fb2-b3c6-9e96ec0a8c0c + patl for MV3.101 Line 65 + + + + + 471 + ceda5ff6-bb4e-c5a7-e62a-efbd8e7d2c20 + patl for MV3.101 Line 65 + + + + + 471 + e91807b1-2b60-9d30-5e76-c5e24392e598 + patl for MV3.101 Line 62 + + + + + 535 + eec2107e-ab88-ad7c-03e0-e463650d6ff9 + patl for MV3.101 Line 29 + + + + + 330.664 + ce02c5e0-9844-7e9e-bf99-8e3926e47b41 + patl for HV1-MV3.101-Trafo2 + + + + + 358 + c90dae7f-0560-fa76-ea77-fd35ad887e50 + patl for MV3.101 Line 120 + + + + + 3637.31 + 0d57bc7e-bf09-6a33-c44c-2b3915a21a7a + patl for HV1-MV3.101-Trafo2 + + + + + 416 + c2cc83b7-c206-854b-ee4e-0c2b42ed63fa + patl for MV3.101 Line 47 + + + + + 358 + ddf006a0-74c9-d68c-461a-eb21bba63ab5 + patl for MV3.101 Line 120 + + + + + 471 + d40acf2e-2f3e-7537-4d0d-746ef69697b7 + patl for MV3.101 Line 16 + + + + + 416 + 5239afd7-8ad6-1d83-aa30-89d213b2d04d + patl for MV3.101 Line 47 + + + + + 471 + ff6ed00c-55c8-08df-37a0-40d77e357a1b + patl for MV3.101 Line 16 + + + + + 315 + 1e9e05c8-3ee0-547a-55ca-60e98e82e72a + patl for MV3.101 Line 113 + + + + + 535 + 49e91796-fa20-0480-9c96-aa772dfc58ad + patl for MV3.101 Line 30 + + + + + 315 + 2ff2880f-21b3-c6ca-dac4-e3f9215bb4ee + patl for MV3.101 Line 113 + + + + + 535 + b0a53a3a-fa68-ff52-8459-a4971c4cf448 + patl for MV3.101 Line 30 + + + + + 315 + 636ee73b-3d2c-5526-0fe4-5a8b51e6cff0 + patl for MV3.101 Line 125 + + + + + 535 + bfcc7ec8-b580-3d75-d277-ad53ffc1139a + patl for MV3.101 Line 70 + + + + + 416 + a94b5a7f-2ec8-fb58-8aa1-28e9f9e49780 + patl for MV3.101 Line 100 + + + + + 416 + 2bb68204-7b5d-eab7-dd58-37dd3c308ebf + patl for MV3.101 Reserve line + + + + + 535 + f4850999-51ef-abd2-2f1d-db0a943506e6 + patl for MV3.101 Line 70 + + + + + 416 + 31987ad9-e616-71e1-a967-281e6487ddbd + patl for MV3.101 Line 39 + + + + + 416 + e270ee05-5808-3b5b-63dc-3242685bbe16 + patl for MV3.101 Reserve line + + + + + 416 + 43018fe6-5ee1-d2eb-671c-1badd29cca69 + patl for MV3.101 Line 100 + + + + + 416 + 76bf4fb4-e64b-bdb4-3b15-10cd1d4b80c4 + patl for MV3.101 Line 39 + + + + + 535 + 3d21b0ba-9923-cbbf-50a2-9b44ce6308f1 + patl for MV3.101 Line 97 + + + + + 315 + cfbb9031-4aef-2281-c2e5-fef033791efc + patl for MV3.101 Line 125 + + + + + 535 + 20f56e81-c123-b508-580d-a2750e4196e3 + patl for MV3.101 Line 49 + + + + + 535 + 9f7023d1-7ab9-0ab0-5a74-f2579c98b103 + patl for MV3.101 Line 49 + + + + + 358 + 4319fa20-842b-a7b3-30e8-955f821048bb + patl for MV3.101 loop_line 1 + + + + + 315 + 74dc14d1-b4a6-d470-c44f-5d975ef60933 + patl for MV3.101 Line 117 + + + + + 471 + abe10340-f30d-ccdf-1783-b7752152a60d + patl for MV3.101 Line 87 + + + + + 535 + fc0f4e68-60d3-2ce7-9ca3-98b68bf46491 + patl for MV3.101 Line 97 + + + + + 358 + 2c996ac6-0e8a-b9ef-ed1f-32dd021a89a8 + patl for MV3.101 loop_line 1 + + + + + 416 + db3cb7ed-4469-7911-0d8d-1ea51ed80771 + patl for MV3.101 Line 77 + + + + + 416 + 8ca375f4-187f-91f8-eaa4-4e5cfe333c78 + patl for MV3.101 Line 108 + + + + + 416 + 4105cb24-a0d3-31b3-9855-80f22a61ba20 + patl for MV3.101 Line 77 + + + + + 315 + f3dc88bb-5644-517a-b808-e365923f77a0 + patl for MV3.101 Line 117 + + + + + 471 + 8fea6af6-cd04-98a1-8eff-6f5cb2698ce0 + patl for MV3.101 Line 59 + + + + + 471 + 511d1511-b5c7-662f-7556-07d2459cdc25 + patl for MV3.101 Line 87 + + + + + 535 + 1398142a-d3d2-94c6-6b50-c0f4b2dc3fa0 + patl for MV3.101 Line 96 + + + + + 416 + 8bbcf180-a02c-20a1-e9ed-455a94a0c064 + patl for MV3.101 Line 32 + + + + + 471 + 0d20c496-a395-9066-91f7-b5baa07f5a09 + patl for MV3.101 Line 59 + + + + + 535 + 651555d1-86a3-f362-c3e1-d8e19917738e + patl for MV3.101 Line 15 + + + + + 416 + ff29cb18-dadb-103d-4d8c-3328a0e127e0 + patl for MV3.101 Line 108 + + + + + 535 + 94420f64-0e32-b303-11d1-846912a14df6 + patl for MV3.101 Line 73 + + + + + 535 + ddea4dfb-7400-f38e-5bc0-03d4f2a85356 + patl for MV3.101 Line 96 + + + + + 416 + 70b065db-345e-c65f-f75e-0d51dcb9dba4 + patl for MV3.101 loop_line 4 + + + + + 535 + 299f0474-8fdc-38a8-d567-4844c65306c0 + patl for MV3.101 Line 73 + + + + + 358 + b853129b-247e-6821-6e7d-3e3eecb88ee7 + patl for MV3.101 Line 110 + + + + + 535 + 1115e9ae-22e5-44ac-b30d-6c9b18b035d6 + patl for MV3.101 Line 15 + + + + + 416 + 95d855e4-d410-4f96-9b64-a9cf35bf8e8e + patl for MV3.101 Line 32 + + + + + 358 + d6e3ba4e-6490-bd0c-9579-7a5ab0370a0b + patl for MV3.101 Line 110 + + + + + 471 + be029a05-a3b1-e01e-f65c-50653a3f0fdc + patl for MV3.101 loop_line 9 + + + + + 416 + 17aec372-1f90-5d11-861b-db0356b6505e + patl for MV3.101 loop_line 2 + + + + + 535 + 9cf6cf25-6163-f658-8875-509e6375b1a1 + patl for MV3.101 Line 3 + + + + + 416 + 794fe990-496e-b5ba-2ad9-674b95de173e + patl for MV3.101 Line 81 + + + + + 535 + 24acd60a-3048-988b-93f0-9ba357dfccec + patl for MV3.101 Line 3 + + + + + 416 + d38404a4-ef0f-b7c3-83fd-599860f0f836 + patl for MV3.101 loop_line 4 + + + + + 416 + 92b05c9e-7d97-a840-9029-6bdffb100815 + patl for MV3.101 Line 34 + + + + + 471 + d76bfda7-959c-a3c1-ca7b-cecd005ff23a + patl for MV3.101 loop_line 9 + + + + + 416 + 04a61a67-fa0e-27b7-49af-9322702ced97 + patl for MV3.101 loop_line 2 + + + + + 416 + 3d826c88-ef02-0e29-a942-04cae108272a + patl for MV3.101 Line 81 + + + + + 416 + 8740ee69-b0cb-38fc-0dd1-15135a5be140 + patl for MV3.101 Line 79 + + + + + 416 + 75e8dcf4-c191-8355-2001-50f71e0ecaf5 + patl for MV3.101 Line 34 + + + + + 471 + 77382549-5f6d-2c8a-d689-914cf9cfe6a9 + patl for MV3.101 Line 86 + + + + + 416 + a4ed313a-5619-23e9-8db6-c67ad1aa07d6 + patl for MV3.101 Line 79 + + + + + 535 + 38ea6064-1d4a-8c92-23ab-a2850bd3bbb9 + patl for MV3.101 Line 14 + + + + + 358 + fac8d782-507a-c874-ec07-59ee057f4272 + patl for MV3.101 Line 115 + + + + + 358 + 639038a7-2f35-259d-3bba-7d0ab3188210 + patl for MV3.101 Line 115 + + + + + 471 + 32b3cf0f-f770-cb07-30db-5d5eada2c08c + patl for MV3.101 Line 86 + + + + + 535 + db814b25-11bc-15f5-2540-4f702cff24f1 + patl for MV3.101 Line 14 + + + + + 358 + f3134f17-781d-a5c5-ed89-73ddbc53e7e9 + patl for MV3.101 Line 5 + + + + + 471 + 234ebf55-9691-d611-5e85-133cacf228d8 + patl for MV3.101 Line 55 + + + + + 471 + 62e07eaf-b6d2-a07c-35e5-c68e09aa3914 + patl for MV3.101 Line 55 + + + + + 416 + ea0946ab-4a59-9fb9-f045-01d40faa61fa + patl for MV3.101 Line 21 + + + + + 471 + 1ca49901-7048-1aa9-6f3d-a30b1a49d485 + patl for MV3.101 Line 54 + + + + + 315 + e6e85bfc-e1d9-39cc-05f2-b7e20fd05b70 + patl for MV3.101 Line 112 + + + + + 416 + 292f4f80-c067-c3a3-1223-daa6a1562bb7 + patl for MV3.101 Line 21 + + + + + 416 + 410fa6bc-7763-5de4-63ed-e1de9183bb51 + patl for MV3.101 Line 46 + + + + + 535 + 61a8b5cf-b562-6507-28cf-6258ac1c3193 + patl for MV3.101 Line 52 + + + + + 535 + 670ffe3a-b822-b418-2fa8-25eedd64c0a2 + patl for MV3.101 Line 52 + + + + + 416 + 429a29d2-79f8-7971-6126-ba5b20ab30fe + patl for MV3.101 Line 107 + + + + + 358 + 97064177-a4d7-4f47-81ad-972ac156a7c1 + patl for MV3.101 Line 5 + + + + + 416 + ef6bee5c-c0da-7c60-7836-94cd33d02ff4 + patl for MV3.101 Line 107 + + + + + 416 + 6446ace5-6867-c604-ac4e-6e514707f53b + patl for MV3.101 loop_line 8 + + + + + 315 + 33dd4a3e-2904-e81f-075a-4d0d24eb2b11 + patl for MV3.101 Line 112 + + + + + 3637.31 + 64d20b69-b224-ba96-186b-c6b23a694c3a + patl for HV1-MV3.101-Trafo1 + + + + + 416 + 62f4cdf4-c204-9c09-4cb0-17aaae8b4a0e + patl for MV3.101 Line 46 + + + + + 416 + 59c461a6-778a-9ea8-2d75-158bd08a1656 + patl for MV3.101 loop_line 5 + + + + + 330.664 + 713ef67a-bf48-2eb6-8999-b6cd4840991a + patl for HV1-MV3.101-Trafo1 + + + + + 358 + 03924d09-c8b3-db02-2cff-50d7b3ab2e86 + patl for MV3.101 Line 6 + + + + + 416 + 3f0eed97-897e-0fa6-0654-9c754ab2a430 + patl for MV3.101 Line 94 + + + + + 535 + 83837f6a-494a-699f-28d9-2e13ecfb3a63 + patl for MV3.101 Line 72 + + + + + 471 + 28eab3fb-e805-d27a-cd77-888ae49ca354 + patl for MV3.101 Line 54 + + + + + 535 + 75e1401e-304c-76a4-1a78-2d01e913532b + patl for MV3.101 Line 72 + + + + + 416 + dc64f61e-6621-99f2-fd99-ed75435bb71d + patl for MV3.101 Line 94 + + + + + 416 + 62e78154-55cb-7841-d4d3-9ee4d4f0bb45 + patl for MV3.101 loop_line 8 + + + + + 358 + 2acb159c-b9d1-2dec-409c-b5fcdfe0ea29 + patl for MV3.101 Line 6 + + + + + 535 + 6fc65f3c-7bcb-25a4-0b2d-573cb17ca764 + patl for MV3.101 Line 4 + + + + + 416 + 0960d816-4eea-40a0-0cce-6294b2a7d70b + patl for MV3.101 loop_line 5 + + + + + 358 + 23c332a2-0e01-5976-3950-ebcceb80f012 + patl for MV3.101 Line 109 + + + + + 358 + 1cae7fa1-eb9b-284a-5e07-1610d8030292 + patl for MV3.101 Line 109 + + + + + 535 + 43463522-16e5-5967-1ea8-30c0dfc590cd + patl for MV3.101 Line 4 + + + + + 416 + 04dee7f8-7fcf-046c-b531-695cdeff2e7c + patl for MV3.101 Line 37 + + + + + 416 + 253db37e-088a-c262-581a-abbb50497708 + patl for MV3.101 Line 22 + + + + + 416 + 82d2372a-af56-9daf-e4a5-763d60a1e8cc + patl for MV3.101 Line 22 + + + + + 416 + 387e39e4-e3c0-21fa-d3aa-4a50cfa64526 + patl for MV3.101 Line 45 + + + + + 471 + fa7a914f-2af9-75a9-ac08-b7f4ba4b45d2 + patl for MV3.101 Line 63 + + + + + 471 + 606090f2-de73-01a9-ac75-30c889a83a01 + patl for MV3.101 Line 63 + + + + + 416 + 144a1fe6-f719-39dc-1b73-2eed38e2a7eb + patl for MV3.101 Line 99 + + + + + 416 + 24e8fc8f-9ffe-01f3-f63d-4d2083cf8ece + patl for MV3.101 Line 37 + + + + + 416 + c77de751-ad64-edf5-c17b-d0d230c7c69f + patl for MV3.101 Line 99 + + + + + 416 + c36f7c32-a4e3-7f65-e061-931129b7511e + patl for MV3.101 Line 88 + + + + + 471 + fb019aa3-c842-4efd-9705-0210d8b877fe + patl for MV3.101 Line 57 + + + + + 416 + 2d984b2f-93e7-f5d1-3399-55a6a20ee8ee + patl for MV3.101 Line 88 + + + + + 471 + 397dca8b-28da-58a9-c186-5668b0fb33a0 + patl for MV3.101 Line 57 + + + + + 416 + 727c5aea-7498-c97e-3801-344408a7e282 + patl for MV3.101 Line 104 + + + + + 416 + a18477ea-701f-01cf-8a5c-255badb9b806 + patl for MV3.101 Line 104 + + + + + 471 + 889c9789-4f27-cfe2-1b19-db242a8c5d42 + patl for MV3.101 Line 85 + + + + + 471 + 6e0f709f-7044-af0e-02bf-bddadb93fb7b + patl for MV3.101 Line 56 + + + + + 535 + 8d33ffef-2ea4-02d5-e3ab-2e9a6ffe54fa + patl for MV3.101 Line 13 + + + + + 535 + ed7eba68-91fc-3a51-ca2b-c94c274c9fdf + patl for MV3.101 Line 13 + + + + + 471 + 3a27ac81-3e5c-c9a3-dad0-39c17756bb08 + patl for MV3.101 Line 56 + + + + + 471 + 3e2d050b-88c1-dd90-28ad-4486fb66ff6d + patl for MV3.101 Line 85 + + + + + 416 + 75734baf-ad4c-8334-98de-af7f88eac938 + patl for MV3.101 loop_line 7 + + + + + 535 + 3630a4f4-9d96-7993-85db-99b797f45a45 + patl for MV3.101 Line 71 + + + + + 416 + 9ff0a5ab-2c32-1e4b-9eca-08fc26ab0e2a + patl for MV3.101 loop_line 7 + + + + + 416 + bfc644ad-b1bc-ef76-cf24-5e4509c440af + patl for MV3.101 Line 25 + + + + + 416 + 1db0907a-e0ec-3cc1-62d4-12351eb88838 + patl for MV3.101 Line 25 + + + + + 535 + 83a224a9-2a47-960b-67e9-8204b9147458 + patl for MV3.101 Line 71 + + + + + 416 + c3218948-ec17-8527-5754-bb1824d615d4 + patl for MV3.101 Line 89 + + + + + 358 + da48d8e6-60b6-4cff-c344-5aeae956030d + patl for MV3.101 Line 116 + + + + + 358 + f9c475ee-6808-a52a-5c73-26e1e2d86ae5 + patl for MV3.101 Line 116 + + + + + 358 + 6740eb4a-3241-bb4c-fea1-7f036bfea07c + patl for MV3.101 loop_line 6 + + + + + 416 + 364fca36-ac7b-33f2-ace2-c63789f38e5b + patl for MV3.101 Line 78 + + + + + + 738a86f3-4efd-4990-6cc5-23703a8bd620 + MV3.101 Bus 122 + + + + 8e937d9a-23ed-17d3-93f5-4812252d5ef6 + MV3.101 Bus 102 + + + + cc9e3505-0275-122e-dfb0-40455cf4471d + MV3.101 busbar1A + + + + 1353d5ca-6772-fab0-5d77-7999c54246d6 + MV3.101 BS busbar1C + + + + 5d19946d-fd8a-3980-fbd4-4622227bc7ab + MV3.101 Bus 48 + + + + 9a2976a4-1ebf-ca61-001d-2bcb6e37f5fc + MV3.101 Bus 40 + + + + 8a434f6d-c0ab-9299-fea2-322552458fb7 + MV3.101 Bus 45 + + + + 216f8e0e-f904-6436-a3b5-6b88c4c47ed3 + MV3.101 Bus 27 + + + + cdb6eaba-4dac-0ccb-af68-577f713de24c + MV3.101 Bus 86 + + + + f86f6351-fa22-4cd2-daa3-97b9f7789da3 + MV3.101 Bus 82 + + + + c883fc36-16d0-a0fd-e07c-2a1a81b14b5c + MV3.101 Bus 32 + + + + a59a7752-2107-d5c3-c0d0-6c0a5bdbf8cf + MV3.101 Bus 26 + + + + a78fe215-77cc-d77b-82da-928d57f9b64d + MV3.101 Bus 11 + + + + 2003fec4-4314-71c6-4d44-b012cebdad9e + MV3.101 Bus 58 + + + + e2f6cf39-25ed-f200-e96e-1f98a6736c73 + MV3.101 Bus 121 + + + + 698729d4-7c73-a924-aacc-51d06cb5e909 + MV3.101 Bus 100 + + + + c8173fdc-538e-0583-83b2-67c6486a1ab8 + MV3.101 Bus 97 + + + + 7cd8d5cb-82eb-2a8b-4a0f-82f57568bac5 + MV3.101 Bus 135 + + + + 496bd271-43c6-9e08-0aca-654e2e0ad6d4 + MV3.101 Bus 99 + + + + 4575e8a2-82a5-0c2c-d397-a305ccfdaa67 + MV3.101 Bus 80 + + + + 0676fe9d-c314-812c-5c3a-8957f2e69139 + MV3.101 Bus 124 + + + + cc1bc810-8951-607d-36bd-4e980e614ad0 + MV3.101 Bus 140 + + + + 9a46efca-f2aa-de01-9be7-0ab9d3c7f94d + MV3.101 Bus 83 + + + + 9fa73bfd-b236-f5f2-751f-503ab076a895 + MV3.101 Bus 132 + + + + fcc1f8ab-5050-6542-6970-5dd5cd1071fd + MV3.101 Bus 57 + + + + 68990147-1b4f-7fd8-6a68-86f8021873da + MV3.101 Bus 125 + + + + e3861bf2-31ad-7a3a-aade-28998b919d71 + MV3.101 Bus 112 + + + + 91e7eef0-1a5e-a54f-ea32-8f655653bc2c + MV3.101 Bus 51 + + + + 8a0f599b-08a3-eb57-a681-886bf2231c69 + MV3.101 Bus 35 + + + + 7f3b6ec0-d223-2530-3bda-209cf4b8e074 + MV3.101 Bus 31 + + + + 4022137f-5e80-a642-b920-ba2e5426f7ab + MV3.101 Bus 34 + + + + da9ebbb8-9c83-b12c-ff32-48777704eedf + MV3.101 Bus 138 + + + + db5a4f51-55ed-9ad4-39db-5e90cd8e77d2 + MV3.101 Bus 23 + + + + 93a6167e-84d8-4b18-3eb5-bae378bac290 + MV3.101 Bus 39 + + + + 58457082-22da-78cd-ecbe-cc2154bbc08b + MV3.101 Bus 12 + + + + 742909e0-e6b2-1a42-6499-e1dde74f20c7 + MV3.101 BS busbar1B + + + + a65ae067-3e5c-e823-0ccb-1a64bc18364e + MV3.101 Bus 114 + + + + 2fba9afc-ab63-bb8b-1ea6-1be8c6e784f5 + MV3.101 Bus 141 + + + + bc79619f-5d1c-b404-010f-e1cabdbf433f + MV3.101 Bus 68 + + + + 2791dab6-805f-698a-e0a0-6a24e694d550 + HV1 Bus 25 + + + + 30e1b0d7-87e8-3b9c-a777-3112634f4b90 + MV3.101 Bus 120 + + + + 24173c72-814d-4833-ba70-150bc24db40f + MV3.101 busbar2A + + + + 25aa04be-e7a6-81d1-3c90-6dd70a93ab67 + MV3.101 Bus 25 + + + + 71cd900b-22fe-6e0d-1e54-f0aa943a6b42 + MV3.101 Bus 92 + + + + a712b943-b0f7-2ed6-d5c2-666d898becc7 + MV3.101 Bus 133 + + + + 428d8181-a885-a107-fd8d-0b0ed9912234 + MV3.101 BS busbar1A + + + + b34430cb-d98e-3789-34ad-3e31ab6a5747 + MV3.101 Bus 24 + + + + 52c287b7-d0dc-64c3-481a-feebe46bf7d8 + MV3.101 Bus 95 + + + + d5a7ef0e-24a4-4bdd-ac77-8a96bbdf4106 + MV3.101 Bus 59 + + + + 1c08b14d-9574-bdcf-7215-37b8262ec65a + MV3.101 Bus 90 + + + + 7e5e74c2-afe3-ec6e-48bc-790bdadb0940 + MV3.101 Bus 66 + + + + 0b235c60-ef5a-caae-90cc-51d974285804 + MV3.101 Bus 143 + + + + dc790200-b36a-194b-a1a6-e1181e500993 + MV3.101 Bus 36 + + + + f9ac8018-5f71-d097-f3d4-1c201dcf9f01 + MV3.101 Bus 104 + + + + a8de6c97-d93b-0f60-6015-037118e5d19d + MV3.101 Bus 72 + + + + 392beab5-f5b8-182d-fe9c-1b3a72e938d2 + MV3.101 Bus 56 + + + + 6f7aa9e7-c3d0-e45b-e0eb-b36fca9ecc72 + MV3.101 Bus 13 + + + + da409541-0772-fa5e-519c-efca34cda195 + MV3.101 Bus 106 + + + + d11098ac-58fe-3a7e-39db-a8966b9fc7e8 + MV3.101 Bus 47 + + + + e61b4ea9-2975-2b18-2a51-79800efd0a1b + MV3.101 Bus 65 + + + + 2ba2741d-7599-a570-f4e5-857046d96ce8 + MV3.101 Bus 44 + + + + e189598e-a43a-b718-2d9d-d612d6326b53 + MV3.101 Bus 78 + + + + c8a011fa-a243-a66c-0aef-c63eff6ade24 + MV3.101 Bus 129 + + + + fe9e8a42-9825-3135-8e52-3edec21df0d2 + MV3.101 Bus 76 + + + + baaa668e-1ca2-d2a6-68e9-6b9371794880 + MV3.101 Bus 84 + + + + 9944e00b-953b-67de-2425-2e870405e572 + MV3.101 Bus 20 + + + + 37f92665-7ce1-922f-3dd6-9f23a21847c3 + MV3.101 Bus 37 + + + + 17f6de20-a733-3481-4662-f00b93429793 + MV3.101 Bus 128 + + + + d56642bb-588d-c8c4-1955-27000c11f7f7 + MV3.101 Bus 16 + + + + 7890739e-e2dc-6b42-3121-09216b25098e + MV3.101 Bus 49 + + + + 398c030a-3a49-2e9e-5482-124a9d82ee99 + MV3.101 Bus 98 + + + + 257c474e-db5b-1b30-e17c-a8cd21168ab3 + MV3.101 Bus 73 + + + + 67e5c109-bf9e-e6be-2a0d-9623282497d1 + MV3.101 Bus 113 + + + + 21fe2650-b75e-39e6-8965-58ea687fcdc5 + MV3.101 Bus 67 + + + + c82d4262-d36d-04d4-e49e-e2b2480c0565 + MV3.101 Bus 108 + + + + fe108591-54c9-acb6-0634-f5fdb3d0811b + MV3.101 Bus 79 + + + + 3504a4c2-7867-f246-afec-9a1e9fce414f + MV3.101 Bus 123 + + + + 6106d42f-efbb-36de-e320-b9d950b8fe1c + MV3.101 Bus 21 + + + + ede08803-42e6-6c8b-7a1c-754b59b0731c + MV3.101 Bus 60 + + + + 8a1ece07-f6dd-be8f-f603-8744e8267fb0 + MV3.101 Bus 52 + + + + 5cf420a3-cb56-c7e3-cfdf-cceb771ee798 + MV3.101 Bus 64 + + + + 96793c96-6b18-4ecf-a2e3-b17997eb7730 + MV3.101 Bus 105 + + + + 32b21a70-a414-0262-51da-3410b53bba70 + MV3.101 Bus 111 + + + + 861dcc4f-0ad9-ebf3-fcbc-73295fe50272 + MV3.101 busbar2B + + + + dcf7f1a6-7a20-8cc8-60a2-41296f1db6e7 + MV3.101 Bus 18 + + + + 3f5340ba-706a-8f26-9b76-c2d711a072ef + MV3.101 busbar1B + + + + 274f7524-9dfa-e67c-f747-28c0dd5013af + MV3.101 Bus 134 + + + + 411a7538-8861-ff58-4bae-85ffc6052b11 + MV3.101 Bus 117 + + + + b316ad67-4757-542a-efa9-ccb501fa0f9d + MV3.101 Bus 127 + + + + 900b4313-1427-f56d-3aa0-0634c1654cbe + MV3.101 Bus 126 + + + + 9feb3442-d290-22fe-d8e9-c356c81cb700 + MV3.101 Bus 50 + + + + cecc599c-8259-03f7-cb81-f258a0978a53 + MV3.101 Bus 33 + + + + 0a7ff38b-a968-200e-5381-7b4444f9182d + MV3.101 Bus 131 + + + + 7d567811-65f7-dba4-9292-d7f9a1b82627 + MV3.101 Bus 136 + + + + 86446e3b-a038-89a9-9c36-f1936543ac63 + MV3.101 Bus 30 + + + + 85c9068e-abea-84da-a779-8119b8a8eaca + MV3.101 Bus 14 + + + + a47242e3-fd2b-0644-f939-fee9c262de86 + MV3.101 Bus 71 + + + + 2f6e9402-dd71-bf78-016a-c104443eed27 + MV3.101 Bus 74 + + + + 4dad0264-ee43-6bd9-3aaf-f9f3305a4331 + MV3.101 Bus 116 + + + + 2837f35a-7bb2-6f7f-c049-2627654e8a80 + MV3.101 Bus 118 + + + + 8e6e062a-9f3f-c40f-42c4-12351350e3c7 + MV3.101 Bus 69 + + + + 8218ffcc-d5d8-cc64-c332-c3f731871af8 + MV3.101 Bus 107 + + + + cd59c981-6595-e04f-d200-53d88c60724f + MV3.101 Bus 96 + + + + aed2479b-f7ea-28cd-285d-d9ca8a541ffa + MV3.101 Bus 139 + + + + cfca33e7-6158-f4d7-fca6-5676f88360aa + MV3.101 Bus 75 + + + + fb56e2f0-585c-e471-734c-e39be4de9077 + MV3.101 Bus 115 + + + + 93b1287f-ffd4-4e5d-cb3f-12890943c1bd + MV3.101 Bus 103 + + + + 2983ccd2-e2de-eb72-ae50-f5b62877232e + MV3.101 Bus 85 + + + + d23ea011-85e0-3acd-10b5-b50d76d9cb01 + MV3.101 Bus 17 + + + + 2c202a31-415d-9350-5136-33875d2ad3a8 + MV3.101 Bus 28 + + + + 1883a64d-a11b-eb39-61a1-1c52d271ce9c + MV3.101 Bus 110 + + + + dfb27b54-6339-fba3-27fd-4399cf6d22ef + MV3.101 Bus 88 + + + + 8086fee5-d541-e20a-5862-49c9106c425d + MV3.101 Bus 41 + + + + 27b58e18-ea2e-2d26-c12d-4661998a63a3 + MV3.101 Bus 109 + + + + 99947ec1-98a6-9ee5-335f-ae2d76b19d14 + MV3.101 Bus 42 + + + + 83656aa0-613e-d62b-76f2-5fc3c539ee3a + MV3.101 Bus 130 + + + + 9fd17cbd-66fc-c041-8836-bcbb9888e379 + MV3.101 Bus 119 + + + + 239be8ee-1ed3-079b-1e79-3008a74ab43c + MV3.101 Bus 101 + + + + 10266c49-589f-73d5-e883-ff3d5f25057b + MV3.101 Bus 81 + + + + 9ed6117a-8d30-8b31-1287-04ad48a07f5d + MV3.101 Bus 70 + + + + b4b0680e-cf54-0824-23c2-d7cbb7065f5e + MV3.101 Bus 89 + + + + f518bb28-521b-8beb-655c-bdc3969fa330 + MV3.101 Bus 46 + + + + afaaf557-7240-eb82-76a5-bed619cffec1 + MV3.101 Bus 54 + + + + 9650681b-f781-d012-a340-da97b65af08b + MV3.101 Bus 53 + + + + 97f6348c-4954-472b-2020-f0d894f23299 + MV3.101 Bus 29 + + + + 0e256a9d-d999-14ce-7f17-e9bbbd838ed3 + MV3.101 Bus 61 + + + + 7dbc0e56-448b-5415-f16b-cedd1f436e6f + MV3.101 Bus 137 + + + + 86593c2b-d8c7-e41d-ce2e-7818cd0410c7 + MV3.101 Bus 38 + + + + b08382b1-ebcb-da17-a7b4-a1001451a108 + MV3.101 Bus 19 + + + + 64493248-a946-4cba-09e4-9aca2ff64fb7 + MV3.101 Bus 62 + + + + 30c890d8-aaed-292e-aae7-208eda9270be + MV3.101 Bus 93 + + + + 0fb8f2fe-9e60-6e20-d87b-7d2177006495 + MV3.101 Bus 63 + + + + 577272bf-ab76-ad32-b54d-feee3733351d + MV3.101 Bus 77 + + + + b03050e3-8693-e18e-afdd-4bd106bfcf08 + MV3.101 Bus 15 + + + + 41ab8b3d-6d6e-d32f-a70f-3f4e06064250 + MV3.101 Bus 22 + + + + c75aa309-22fb-612e-c2fa-8e148a33a753 + MV3.101 Bus 142 + + + + 64df2fb6-63ed-f6e3-d423-bd94d71a4cc4 + MV3.101 Bus 94 + + + + a62b82bb-9de0-b26a-0637-cba3df1bcd95 + MV3.101 Bus 55 + + + + 00f951d2-5ad8-79b9-9b5b-2f29d52fbb4e + MV3.101 Bus 87 + + + + f527943d-0766-97c0-7596-adb1addf3198 + MV3.101 Bus 43 + + + + 7c9fd30a-eed6-a171-5a7f-90b40f0d8f17 + HV1 Bus 26 + + + + 8de0feab-7a38-91c8-a97d-16fdf6f67ad5 + MV3.101 Bus 91 + + + 1 + 4915a083-7f2b-67e4-9959-e389a0f3fd22 + Cubicle_MV3.101 SGen 40 + + + + + + 1 + 9387fec3-11ca-9b4b-ab4f-9e8de2fe91c0 + MV3.101 Bus 120_2 + + + + + + 1 + 08e16802-44d6-49a1-136a-f8bc30f20731 + HV1 Bus 26 + + + + + 2 + fab05411-1cdf-7a73-872e-eefd7899b9ec + MV3.101 Bus 62_1 + + + + + + 1 + 94a2d7af-59ac-0efe-f5eb-e9f9f05d1fc7 + MV3.101 Bus 133_2 + + + + + + 1 + ff2da168-c394-e1a5-fcfc-34bf6f4710c0 + HV1 Bus 25_1 + + + + + + 1 + 0a9eb766-459a-6fbe-4682-d1f7e1056602 + MV3.101 Bus 43 + + + + + 1 + 8f62ee0f-b9ab-544c-f8b5-41fb64cd51b2 + Cubicle_MV3.101 MV Storage 124 + + + + + + 1 + ff47b9a7-bb2b-d759-daad-b3aa8f31eb85 + Cubicle_MV3.101 MV Storage 27 + + + + + + 1 + cc4dd121-b371-be6f-94d6-7312d2d684c5 + MV3.101 busbar1A + + + + + 2 + ffb45ef3-0c00-78df-48fd-b7730f716314 + MV3.101 Bus 46_1 + + + + + + 1 + 8e66d57e-a0f0-38ec-f5fe-66806452ab67 + Cubicle_MV3.101 SGen 110 + + + + + + 1 + c3f385b5-cb55-b9dc-5773-e7f100cc5fb8 + MV3.101 Bus 91 + + + + + 1 + a4326289-67da-8fd6-4a6d-0c187f3bc164 + MV3.101 BS busbar1C + + + + + 1 + 88e658bc-abec-beb9-d3a9-965ca35607db + Cubicle_HV1 grid at MV3.101 + + + + + + 1 + 49066ed8-50df-f609-43d4-c3d1b7d3e8ab + MV3.101 Bus 14_2 + + + + + + 1 + 8bc77a47-8999-e7e8-b709-4ac3383bcc0b + MV3.101 Bus 141_2 + + + + + + 1 + ffdb8ee7-9643-4787-35d0-dc4694741fc1 + MV3.101 Bus 70_2 + + + + + + 2 + 8dc4a79b-9b97-2e8a-49b9-97d13eed32bf + MV3.101 Bus 98_1 + + + + + + 1 + 05f7a717-279c-50c7-c30d-95fe551add38 + MV3.101 Bus 86 + + + + + 1 + fff7eec5-15c2-14ff-fc8c-fed32573fddf + Cubicle_MV3.101 SGen 50 + + + + + + 1 + 99561e5b-0ac5-aa79-c2c0-2edf735d94bf + MV3.101 Bus 40 + + + + + 2 + 8e40625f-cdfc-29be-89ba-d910e4ff7481 + MV3.101 Bus 140_1 + + + + + + 1 + fa25896a-35d4-665a-4fda-73cf81f692e8 + MV3.101 Bus 20_2 + + + + + + 1 + 8a7b29c5-1edc-9f0d-b8bd-06e0a2b6ce88 + MV3.101 Bus 54_3 + + + + + + 1 + ab436ec8-b9e8-5aa6-a656-1e01e4084eb3 + MV3.101 Bus 32 + + + + + 2 + f951b3d9-cc2f-38e9-b845-4c0d33867a70 + MV3.101 Bus 118_1 + + + + + + 1 + 825acc88-2a76-64ee-f694-034edc3c296d + MV3.101 Bus 45 + + + + + 2 + 48977695-e7b3-0b81-3249-afd796f2f3ba + MV3.101 Bus 57_1 + + + + + + 1 + 891e4200-475f-26b3-eb7a-ba661d23df38 + MV3.101 Bus 28_2 + + + + + + 2 + 8db404ba-57d2-e8c0-64e3-84dad831f53b + MV3.101 Bus 25_1 + + + + + + 2 + 018ca385-1e6f-1f3b-d15d-7b3a01bc1dab + MV3.101 Bus 13_1 + + + + + + 1 + 572d7570-7368-50ab-9336-c81bab743e1b + MV3.101 Bus 27 + + + + + 2 + 90ae4993-943d-142f-197a-50b9cad968f9 + MV3.101 Bus 86_1 + + + + + + 2 + fb70e597-6750-de90-eac9-5708aebe0ca6 + MV3.101 Bus 17_1 + + + + + + 1 + 00677160-362e-94e9-9154-9f4e6f38e38a + Cubicle_MV3.101 SGen 120 + + + + + + 1 + 6a644969-54cd-eeae-720d-2dc3edee727a + MV3.101 Bus 122 + + + + + 2 + 912135e8-c2c9-29e5-cd97-707ab7dd6cab + MV3.101 Bus 97_1 + + + + + + 1 + fd6929c7-a2f8-449c-32e3-476f6be4739c + Cubicle_MV3.101 MV Storage 67 + + + + + + 1 + 919dc7a4-69fa-1500-8a60-831b88dfbeb4 + Cubicle_MV3.101 MV Storage 84 + + + + + + 1 + 04d73cfb-6b01-e153-3533-296025a65fc4 + MV3.101 busbar2B_MV3.101 node2 + + + + + + 1 + f5417c93-a11d-585c-44ff-b51f0e8adf81 + MV3.101 Bus 53_2 + + + + + + 1 + 91acc724-9a07-c204-55a3-d85b3dafcd34 + MV3.101 Bus 72_2 + + + + + + 1 + 3d33f0c4-9a84-4581-c3e7-c41f877f3b1c + MV3.101 Bus 82 + + + + + 1 + 8ade4ed1-5ec4-f669-a191-3fe7414e0bae + MV3.101 Bus 119_2 + + + + + + 1 + 04fc7f7a-8b7b-14d5-49b7-adbbc38ae0cd + Cubicle_MV3.101 SGen 126 + + + + + + 1 + 81018bcd-9c3b-7a82-719e-2c94b432b95c + MV3.101 Bus 121 + + + + + 1 + e2253692-2a52-76ce-d7fa-03c73dc9d04e + MV3.101 Bus 26 + + + + + 1 + 8d27ced8-a892-aec4-1953-f60776f30677 + Cubicle_MV3.101 MV Storage 36 + + + + + + 1 + ef77aa85-7417-1d87-041d-fa0f00f1eae0 + MV3.101 Bus 58 + + + + + 1 + 8dbece1c-c2fc-4366-c093-0d26b8d58d41 + MV3.101 Bus 71_2 + + + + + + 1 + b59bed20-1724-b217-857f-e14f2b68631d + MV3.101 Bus 11 + + + + + 1 + 8109b69e-9eac-9a12-5008-4d5e80d37748 + MV3.101 Bus 100 + + + + + 1 + 8f06f51c-269d-2b4e-3b17-32b8b511efb7 + Cubicle_MV3.101 SGen 37 + + + + + + 2 + 8e44b7f8-475b-d54a-d5c7-6deb0a2e4e58 + MV3.101 Bus 135_1 + + + + + + 1 + 02f20913-b93b-2703-1202-33c86ff1d284 + Cubicle_MV3.101 SGen 32 + + + + + + 1 + 95b1d4ea-214b-75be-7f14-243db3684ca1 + Cubicle_MV3.101 MV Storage 64 + + + + + + 2 + 0248518b-a20c-ed62-ab09-340dde965940 + MV3.101 Bus 67_1 + + + + + + 1 + 97c27500-1466-f150-2ede-d3c935027429 + MV3.101 Bus 14_3 + + + + + + 1 + b9fd2cbd-42a1-2caa-b5cc-d72f1128000b + MV3.101 Bus 97 + + + + + 2 + 029cb89c-8330-1d5d-3257-7cf263322fc5 + MV3.101 Bus 122_1 + + + + + + 1 + 0300e4c5-f31a-6fbe-f27b-7eee1be7f50c + Cubicle_MV3.101 Load 25 + + + + + 1 + 03f4996c-eedb-8d78-69f8-0fbad5009c11 + MV3.101 Bus 135 + + + + + 1 + 04ab5a97-fd19-3ac2-703c-a2c9f23588f1 + MV3.101 Bus 62_2 + + + + + + 1 + 0ed81728-97e3-94f6-7966-f899da21c5cd + Cubicle_MV3.101 Load 87 + + + + + 1 + 036f10e0-8fad-91e4-7695-9c1d11d47cd5 + MV3.101 Bus 99_2 + + + + + + 1 + 9ae3b800-5627-2daf-d0a0-1d55b11c4b53 + Cubicle_MV3.101 SGen 113 + + + + + + 1 + 61fc7502-a8ad-58ab-c5da-af475ffc6e99 + MV3.101 Bus 132 + + + + + 1 + 1669ed7c-1f1e-1ab5-5cc2-921eb76a13fd + Cubicle_MV3.101 Load 127 + + + + + 1 + 9ddeed7e-fad6-b50b-31e1-9cfb90e1b230 + Cubicle_MV3.101 SGen 68 + + + + + + 1 + 95027fdd-8f9b-4d15-c89f-253f997f5e6e + MV3.101 Bus 140 + + + + + 1 + 04f84a1b-e2fa-1aea-af37-395ca62ab917 + Cubicle_MV3.101 SGen 38 + + + + + + 1 + 1671c485-e3a4-ee89-bdc7-2e5d6f24f1ad + Cubicle_MV3.101 Load 71 + + + + + 1 + 1d37e576-ba8e-60ba-6945-a1b755d159c0 + Cubicle_MV3.101 Load 7 + + + + + 1 + 1020a29d-ced9-f6a6-2fda-757ff88cc9cf + MV3.101 Bus 124 + + + + + 2 + 9547dea4-23cc-a074-31a8-bb6c76809ca4 + MV3.101 busbar2B + + + + + + 1 + 1edc1df3-64a0-60b0-a80c-d46a54161ded + Cubicle_MV3.101 Load 8 + + + + + 1 + ac38d5c1-6306-5452-22bf-ace4f16e2feb + MV3.101 Bus 99 + + + + + 1 + 9e94afc4-0d2b-7036-b82d-01246c211c92 + Cubicle_MV3.101 SGen 109 + + + + + + 1 + 1fcaeaaa-245b-3a71-7526-2de69fe199cd + Cubicle_MV3.101 MV Load 1 + + + + + 1 + 9ea2c7a3-d036-bd5c-2058-2b1ad2e3f895 + Cubicle_MV3.101 MV Storage 56 + + + + + + 1 + 20dbceb5-b494-6c14-b76f-540694367409 + Cubicle_MV3.101 Load 42 + + + + + 1 + 04b27bc0-a8ef-b56d-92dc-d7f7ac0cf4d0 + Cubicle_MV3.101 Load 104 + + + + + 1 + f957a159-52f2-cd00-4f72-ec6adfedb5d2 + MV3.101 Bus 83 + + + + + 1 + 98a4c8f6-393e-b2a4-9993-64559e93c761 + Cubicle_MV3.101 SGen 84 + + + + + + 1 + 05ee633f-e916-ab47-9c08-a5951c584acd + Cubicle_MV3.101 Load 118 + + + + + 1 + 02d43afc-df69-f245-d1be-3503fc3e197a + MV3.101 Bus 42_2 + + + + + + 1 + 205ebc92-bd1b-4384-15c0-801843766362 + Cubicle_MV3.101 Load 46 + + + + + 1 + d829a544-3531-ccc6-b140-8cd4ba62b7ec + MV3.101 Bus 80 + + + + + 1 + 96b27aff-972d-8432-4705-90ec3f56acb4 + MV3.101 Bus 22_2 + + + + + + 1 + 0571e64d-bafe-c010-c084-9c9349d54631 + MV3.101 Bus 35_2 + + + + + + 1 + 21f9337a-6428-2849-7e16-98644f252c28 + Cubicle_MV3.101 Load 94 + + + + + 1 + 22f25546-54ff-fb8f-777e-471f138b0d98 + Cubicle_MV3.101 Load 63 + + + + + 1 + d5f2b206-ab87-2d00-35ec-54bb0c530aeb + MV3.101 Bus 57 + + + + + 1 + 007a7393-90a8-2c52-21d5-b8450822d259 + Cubicle_MV3.101 MV Load 2 + + + + + 1 + 27eab934-c8d1-ca92-08e6-6d645dfade68 + MV3.101 Bus 51 + + + + + 1 + 9774dde3-3e46-20a9-e9cc-b5d86da401e0 + Cubicle_MV3.101 SGen 17 + + + + + + 1 + a4a0589a-6c75-fe69-ffb6-afb650f2d990 + MV3.101 Bus 125 + + + + + 1 + 2613e2da-d53d-416a-e53d-b906bc993537 + Cubicle_MV3.101 Load 129 + + + + + 1 + 97844f99-074a-055b-2e46-d2a1c3bad7f3 + MV3.101 Bus 77_2 + + + + + + 1 + 06718343-3abf-1b20-6e43-64ae7fb159aa + Cubicle_MV3.101 MV Load 3 + + + + + 1 + 97be5354-b921-0283-9dd3-81bafcc1e309 + MV3.101 Bus 102_2 + + + + + + 1 + 0d751a21-fae7-8677-2259-806413f2d660 + Cubicle_MV3.101 Load 33 + + + + + 1 + 0342db0a-7246-0573-32f0-bffb2ebcde73 + MV3.101 Bus 63_2 + + + + + + 1 + 0e4b8d3a-a0b8-32b8-ed93-0fe24e7006f2 + Cubicle_MV3.101 Load 12 + + + + + 1 + 983b5949-00e4-6fde-6134-ec51aa343079 + Cubicle_MV3.101 SGen 54 + + + + + + 1 + c5e03fd4-ae33-062d-494f-543764def7be + MV3.101 Bus 112 + + + + + 1 + 0288af2c-e87f-6454-6f24-ab69e3152fec + MV3.101 busbar2A_2 + + + + + + 1 + 115b496e-e53b-2428-dfa7-5d93a8503e0c + Cubicle_MV3.101 Load 86 + + + + + 1 + 9a6d6131-cfc1-ae33-057a-b10a97d3eae3 + MV3.101 Bus 67_2 + + + + + + 2 + 9519939d-290d-46a2-17d0-695211c55542 + MV3.101 Bus 104_2 + + + + + + 1 + 1831fb25-8001-dcc0-0d41-31fc119e78ea + Cubicle_MV3.101 Load 50 + + + + + 1 + 4692df47-fae3-ecd7-3080-f9eac670c4b8 + MV3.101 Bus 31 + + + + + 1 + 02211b4a-b4c8-861c-87a0-f7e364967a9e + Cubicle_MV3.101 Load 82 + + + + + 1 + 96c32a96-46cf-a8ef-5be9-43d40aa76886 + MV3.101 BS busbar1A_1 + + + + + + 1 + 68d30259-13d6-b659-6971-c4ccd5dc3e80 + MV3.101 Bus 35 + + + + + 1 + 00def159-2290-375a-eb27-3980e6624992 + Cubicle_MV3.101 Load 19 + + + + + 2 + 9a94999f-c4c2-adb5-4a10-1fcfdb87fd8c + MV3.101 BS busbar1B_1 + + + + + + 1 + 1927bece-72f3-9473-abc2-879d83ffc2c9 + Cubicle_MV3.101 Load 110 + + + + + 2 + 9ac366ef-941f-2716-5b7a-94e571cfe818 + MV3.101 node1 + + + + + + 1 + 9b4e01ae-9167-43cd-f5f3-a8f91c774995 + MV3.101 Bus 19_2 + + + + + + 1 + 9099eb7b-34a4-2138-7829-46d328bfe922 + Cubicle_MV3.101 Load 107 + + + + + 1 + 03fcf5f8-7c4c-17bf-0ee3-843d90ceb9a3 + Cubicle_MV3.101 SGen 103 + + + + + + 1 + 9b506d81-d79c-0088-a371-aa63f76d25ee + Cubicle_MV3.101 SGen 122 + + + + + + 1 + 4f71117d-2696-0416-11c0-e688fe0a8844 + Cubicle_MV3.101 Load 100 + + + + + 1 + 9a5eaef9-543f-636b-cc2e-2875711749ac + Cubicle_MV3.101 Load 9 + + + + + 2 + 97d21d38-2dad-8f1a-599f-87d6503545d2 + MV3.101 Bus 84_1 + + + + + + 1 + 680e26a5-02ad-574f-6013-ff0c80c575cb + Cubicle_MV3.101 Load 38 + + + + + 1 + 44c63523-2686-79a8-3f7b-ed3a9afa5ae2 + Cubicle_MV3.101 Load 54 + + + + + 1 + 4874818b-0abf-b121-80c0-c990776a882b + Cubicle_MV3.101 Load 5 + + + + + 1 + 59f5efd4-a570-5d4c-2d76-94a65d3a6c7b + Cubicle_MV3.101 Load 31 + + + + + 2 + 12899a07-8e25-666d-3ccf-91ddfb4fe1a5 + MV3.101 Bus 34_1 + + + + + + 1 + 7cba4f28-9548-bbe4-9027-41da0fa97ea1 + Cubicle_MV3.101 Load 23 + + + + + 1 + 07a3a8f9-f357-de64-748f-b71f9ff300ae + MV3.101 Bus 47_2 + + + + + + 1 + 96bc6e0c-9172-abe1-bc52-906ef6026517 + Cubicle_MV3.101 MV Storage 61 + + + + + + 1 + 78295307-ae39-9447-bd14-53f5e80f3318 + Cubicle_MV3.101 Load 52 + + + + + 1 + 809c04ea-b058-7377-6545-5e583effbea4 + Cubicle_MV3.101 Load 26 + + + + + 1 + 99208a43-0d20-8f88-2d60-bbdb7e828ecc + MV3.101 Bus 59_2 + + + + + + 2 + 06fdb6f5-5eb4-f139-6275-8f08861d4b63 + MV3.101 Bus 47_1 + + + + + + 1 + 5e64b94c-fe09-b907-2575-4af6c285701c + Cubicle_MV3.101 Load 74 + + + + + 2 + 9c0172c5-e569-23f2-add7-b7fe3c391d5b + MV3.101 Bus 136_1 + + + + + + 1 + 12ad8ad5-9c0c-a45f-943e-0de6e15b4b35 + MV3.101 Bus 116_2 + + + + + + 1 + 9274bb5e-b381-77e6-a66f-046e88de50a9 + Cubicle_MV3.101 Load 59 + + + + + 2 + 0edfb974-623f-c3f4-add7-4d328d0f7c4b + MV3.101 Bus 102_1 + + + + + + 1 + 9c66c65a-85ce-043c-c47d-dde9faf41811 + Cubicle_MV3.101 SGen 10 + + + + + + 1 + 0a9c55eb-e281-efcd-5db3-d52e5f7fb494 + MV3.101 Bus 94_2 + + + + + + 1 + 64cc440e-ad81-d1d6-48e4-179cdca2b42e + Cubicle_MV3.101 Load 21 + + + + + 2 + 95424b44-4029-4a91-f8f7-c24e3a1905aa + MV3.101 Bus 111_1 + + + + + + 1 + 368fb83d-6b9c-9835-79b5-c00c24be8fd9 + Cubicle_MV3.101 Load 111 + + + + + 1 + 0b8b7f9c-8150-ad2a-5a57-fd04760a3907 + Cubicle_MV3.101 MV Storage 37 + + + + + + 1 + 9661c8c1-9790-61a3-8050-4ecf0dbd16a7 + Cubicle_MV3.101 MV Storage 35 + + + + + + 1 + 2c81eb67-40b1-c683-eabf-7a6bbec32e9d + Cubicle_MV3.101 Load 29 + + + + + 1 + 490797fb-393a-6694-350d-6726b98090d8 + Cubicle_MV3.101 Load 75 + + + + + 2 + 97fd8dca-536b-2ec5-8870-3a521c99cdfe + MV3.101 Bus 118_2 + + + + + + 1 + 0ffb2e85-141c-032c-2e31-de342b1360e2 + MV3.101 Bus 45_2 + + + + + + 1 + 7017e869-b894-72e4-775f-ae17448e0a6e + Cubicle_MV3.101 Load 85 + + + + + 2 + 9a5b3f6d-0724-357e-1a6b-d13878172da5 + MV3.101 Bus 107_1 + + + + + + 1 + 87d8ae57-2399-2ea3-475d-3997118c2555 + Cubicle_MV3.101 Load 109 + + + + + 1 + 454b6e30-0470-297f-7fb4-5b56b221f438 + Cubicle_MV3.101 Load 11 + + + + + 1 + 9cb2f1c4-5069-6338-68d3-e19227d2aa1f + Cubicle_MV3.101 SGen 104 + + + + + + 1 + 0858c979-39eb-8d57-3f8b-24d3f2d8aadc + Cubicle_MV3.101 MV Storage 77 + + + + + + 1 + 94c4b7e9-8c50-385a-ec09-600d39fc0e0b + Cubicle_MV3.101 Load 89 + + + + + 1 + 972ba56b-cf6d-4ab5-4182-d1f59eb2ec77 + Cubicle_MV3.101 MV Storage 12 + + + + + + 1 + 95eab691-70fa-e233-d747-4dc4d56bb4ac + Cubicle_MV3.101 Load 95 + + + + + 2 + 9749cf02-cd41-326c-88b4-1ff64c05dcae + MV3.101 Bus 20_1 + + + + + + 1 + 4a940535-82b9-a971-3fb8-cc967b678ecf + Cubicle_MV3.101 Load 112 + + + + + 1 + a209bb7a-e044-f39e-ee69-cabf129fb19a + Cubicle_MV3.101 MV Storage 71 + + + + + + 1 + 8ab2198f-f107-a938-ce60-8d8405b337fc + Cubicle_MV3.101 Load 24 + + + + + 1 + 884150a3-477a-79db-9f68-e148675caffe + Cubicle_MV3.101 Load 35 + + + + + 1 + a2b99001-6968-a8fd-a3ff-e187adddbbd9 + Cubicle_MV3.101 SGen 73 + + + + + + 1 + 4f0e317c-db8c-5781-6d6c-e135225e19dd + Cubicle_MV3.101 Load 68 + + + + + 1 + 96e6a3f5-b902-057a-5d3b-8555cce7ea0e + Cubicle_MV3.101 Load 36 + + + + + 1 + 38ae6667-dc6a-44d3-8be4-08838c57e128 + Cubicle_MV3.101 Load 47 + + + + + 1 + 10a8b98b-80cd-0d6a-48a1-96f29b6ffcd7 + Cubicle_MV3.101 MV Storage 13 + + + + + + 1 + 40899bc5-6401-21d9-241a-a75de0455420 + Cubicle_MV3.101 Load 105 + + + + + 1 + 10d76fb1-5577-91fe-a929-82129277abbe + Cubicle_MV3.101 MV Storage 110 + + + + + + 1 + 9794e42a-3237-11e2-ba30-775b558cfefd + Cubicle_MV3.101 Load 61 + + + + + 1 + a03d4994-b7d6-b7a3-59e1-3bacb4bd586e + MV3.101 busbar1B_1 + + + + + + 2 + 07ba26af-51f8-1057-5875-54ce96269366 + MV3.101 Bus 36_1 + + + + + + 1 + 9aa52263-fe4b-455b-7505-f287245292ab + Cubicle_MV3.101 MV Load 4 + + + + + 1 + a38478ec-d41d-86f7-4014-bc4f12465392 + MV3.101 Bus 78_2 + + + + + + 1 + 0b74682b-449d-5dc6-cabb-2409ff0d45f3 + Cubicle_MV3.101 SGen 100 + + + + + + 1 + 2bccc3c4-81b0-90fd-2b12-5a9a7d9aad1c + Cubicle_MV3.101 Load 57 + + + + + 2 + a42056c3-0e8c-e214-fc7b-7227b07ccba1 + MV3.101 Bus 52_1 + + + + + + 1 + 0621c61b-3009-874a-0aef-a3042590e411 + MV3.101 busbar1A_MV3.101 node1 + + + + + + 1 + 08afb8fb-ce59-f002-e7c9-74cd553bbf2e + MV3.101 Bus 69_2 + + + + + + 2 + a7b88f10-6f58-e769-146b-07da85018be8 + MV3.101 Bus 95_1 + + + + + + 2 + a73129f4-ec73-93e6-fcef-479f3e22d5ae + MV3.101 Bus 132_1 + + + + + + 1 + 08aca091-72b3-d217-688e-fab73937af5d + Cubicle_MV3.101 MV Storage 99 + + + + + + 1 + 0b010ca4-7a3b-8d36-bcb9-85d7ee4dc07e + Cubicle_MV3.101 SGen 39 + + + + + + 1 + a2a37953-e3d3-8bd2-aef3-76c56013f7de + Cubicle_MV3.101 SGen 116 + + + + + + 1 + a2d55e2f-7dc6-8ee2-cbd5-384fb5a8063c + MV3.101 Bus 40_3 + + + + + + 2 + a2e834fc-60be-1f9e-7543-8f8260d9be33 + MV3.101 BS busbar1C + + + + + + 1 + 545fb0fc-4a85-adbe-5ad1-472f2d4392ad + Cubicle_MV3.101 Load 70 + + + + + 1 + a44f3a94-6ec2-5a4b-1929-1c6bfb2963ed + Cubicle_MV3.101 MV Storage 55 + + + + + + 1 + 365b9b49-bf30-ec9b-ee17-f108fbec17f6 + Cubicle_MV3.101 Load 20 + + + + + 1 + 9f61edfe-6b74-f0bc-3da6-1de93603d114 + Cubicle_MV3.101 MV Storage 70 + + + + + + 1 + 6cd06c3b-aaae-fc15-784f-68014f2cda38 + Cubicle_MV3.101 Load 121 + + + + + 1 + 2ea70caf-1856-f399-0013-4afad3b868d8 + Cubicle_MV3.101 Load 81 + + + + + 1 + 4145c738-4573-a5c7-05c4-eec4b2874810 + Cubicle_MV3.101 Load 113 + + + + + 1 + a24a43e4-9055-2fe5-6961-87b86e8d2c39 + Cubicle_MV3.101 MV Storage 88 + + + + + + 1 + 4f211504-2251-0af3-9a57-4802370b1fdf + Cubicle_MV3.101 Load 41 + + + + + 2 + a3b7b3fc-abed-888b-be60-610c80fc3ef0 + MV3.101 Bus 114_1 + + + + + + 1 + 538ad3b7-850d-f311-86c1-369b0b550d40 + Cubicle_MV3.101 Load 27 + + + + + 1 + a0bdf978-cfa7-30d2-c581-0b9814a7c92f + Cubicle_MV3.101 MV Storage 8 + + + + + + 1 + 6a90ebf9-1138-7147-8b85-2fb549b54953 + Cubicle_MV3.101 Load 133 + + + + + 1 + a282f91d-a612-091a-7803-26377a0bc51a + Cubicle_MV3.101 MV Storage 29 + + + + + + 1 + 6b20d152-1968-ba0a-a716-0c21294e95db + Cubicle_MV3.101 Load 103 + + + + + 1 + 35e4a8ee-9187-845d-da14-e9c7658a0890 + Cubicle_MV3.101 Load 62 + + + + + 1 + a137c5f5-a24b-9ea2-1358-b36471a21933 + MV3.101 Bus 34_2 + + + + + + 1 + 61bdc6da-55a3-d355-7827-c2b134180d91 + Cubicle_MV3.101 Load 125 + + + + + 1 + a146f4e3-e8cf-2c9d-7a2a-3caed65869a8 + MV3.101 Bus 82_2 + + + + + + 1 + 6cfe6f9f-cd11-d72c-ce96-7f132cf6791c + Cubicle_MV3.101 Load 92 + + + + + 1 + 76d33462-c09f-6a85-d082-1b6ecba786df + Cubicle_MV3.101 Load 79 + + + + + 1 + a13b84da-fff1-8af3-dd12-9a64a4432cdd + Cubicle_MV3.101 SGen 31 + + + + + + 1 + 8702d598-ae53-bb6f-186e-844bb23a1c53 + Cubicle_MV3.101 Load 93 + + + + + 1 + a24de886-f31e-c494-2b17-46394ca04b20 + Cubicle_MV3.101 SGen 131 + + + + + + 1 + 6a2f87df-e2cc-a926-cd77-94111e371eba + Cubicle_MV3.101 Load 72 + + + + + 1 + 48b7648a-7802-7766-cfca-750647ca2e56 + Cubicle_MV3.101 Load 51 + + + + + 1 + a2644dc5-1ee8-aa1d-829d-0240f4a068c3 + MV3.101 Bus 96_2 + + + + + + 1 + 88aa7a6e-f987-78a0-edc1-9e9d6292ebd2 + Cubicle_MV3.101 Load 124 + + + + + 1 + 44f9daba-551f-9257-ae3a-4cad4974333e + Cubicle_MV3.101 Load 115 + + + + + 1 + 54a2dc1c-7d45-eee8-d81b-22927f2e7e09 + Cubicle_MV3.101 Load 76 + + + + + 1 + 2e03cf3b-3ed7-3e06-8640-a947706ded2a + Cubicle_MV3.101 Load 37 + + + + + 1 + a46d7b81-83d0-608e-8662-66eb5ce1fa4a + MV3.101 Bus 91_2 + + + + + + 1 + 3b328934-63ec-79fc-1784-f51103e3fccf + Cubicle_MV3.101 Load 73 + + + + + 1 + 61746524-4feb-25cf-a019-ba2cdec47c58 + Cubicle_MV3.101 Load 2 + + + + + 1 + a2b5a248-c16a-be08-c73f-81d2003d046b + MV3.101 Bus 60_2 + + + + + + 1 + 852a36b5-501c-ae69-a5d4-e6810d6296b5 + Cubicle_MV3.101 Load 119 + + + + + 1 + 3600990a-4e1d-3706-f3c6-961eef77c831 + Cubicle_MV3.101 Load 91 + + + + + 1 + 13924410-528f-2332-7414-3e4f67deea13 + MV3.101 Bus 34 + + + + + 1 + a62bf0b8-920e-e1a8-c721-dcf829a518c7 + Cubicle_MV3.101 SGen 71 + + + + + + 1 + 8396d8f7-be55-630e-adb6-ee5bcf4d3cb8 + Cubicle_MV3.101 Load 55 + + + + + 1 + 8961e3f9-16a9-86ef-1967-067638caf2c6 + Cubicle_MV3.101 Load 123 + + + + + 1 + 7f23acea-e74e-d344-cb65-e295058d12c5 + Cubicle_MV3.101 Load 34 + + + + + 1 + 35bf5669-6821-6b97-c0be-9b6eebdfeaf0 + Cubicle_HV1_MV3.101_load + + + + + 1 + 6d6df280-ef3f-b5de-ecf1-865cc5d1d04a + Cubicle_MV3.101 Load 106 + + + + + 1 + a58b61df-2123-ef28-036c-4ca5eb5c5839 + MV3.101 busbar1A_1 + + + + + + 1 + 6ddf2a49-f16f-c451-9dfe-68f23e6602ba + Cubicle_MV3.101 Load 83 + + + + + 1 + 8ae94f4d-0d89-be19-964a-966c455c2049 + Cubicle_MV3.101 Load 6 + + + + + 1 + 83c4cb5d-f181-dfb2-4188-d2bec8426f44 + Cubicle_MV3.101 Load 28 + + + + + 1 + a117e19a-459a-021d-7d30-3d5817c999a2 + Cubicle_MV3.101 MV Storage 18 + + + + + + 1 + 549f6b38-adfb-fe62-91a4-bf4b7fee9bc2 + Cubicle_MV3.101 Load 3 + + + + + 1 + b1f94f9a-0829-b997-e2ac-c14adcc2c3a0 + Cubicle_MV3.101 MV Storage 17 + + + + + + 1 + 0de63770-b4dd-92c6-2155-5f0214acd11a + Cubicle_MV3.101 MV Storage 117 + + + + + + 1 + b26f9f2f-d5c3-ed4c-6866-6118fb539b1f + MV3.101 Bus 12_2 + + + + + + 1 + 0c9b4146-f96e-3a7b-8279-4a097418b430 + Cubicle_MV3.101 MV Storage 75 + + + + + + 1 + ac163ddc-0321-ceef-3c11-121acd457cba + Cubicle_MV3.101 SGen 34 + + + + + + 1 + d3db5cf7-2e95-7f81-5df7-c2441da898e2 + Cubicle_MV3.101 Load 134 + + + + + 1 + 0b1a2968-ab32-ac76-7f8b-a0110a103eba + MV3.101 Bus 52_2 + + + + + + 1 + d3fe9be3-586c-21a0-92bd-79d3e6801f6d + Cubicle_MV3.101 Load 130 + + + + + 2 + ae703e17-b56e-905c-8add-537b808e8205 + MV3.101 Bus 104_1 + + + + + + 1 + ebfcecd3-6a33-0a53-7a13-6ab18ab14220 + Cubicle_MV3.101 Load 78 + + + + + 2 + 0c547651-346d-e353-1125-978aefd1404e + MV3.101 Bus 110_3 + + + + + + 1 + ee7bbfb8-074b-1318-9fb6-357400c29ae0 + Cubicle_MV3.101 Load 88 + + + + + 1 + b28d8c2e-bcc4-b2d4-2654-52d753396cf7 + Cubicle_MV3.101 SGen 78 + + + + + + 1 + f105d592-f9a3-defd-3b62-e00ca54c407f + Cubicle_MV3.101 Load 4 + + + + + 1 + b03dcf9b-9ff4-3d5c-cb9a-cf5fc85b2732 + Cubicle_MV3.101 MV Storage 58 + + + + + + 1 + b0ea343c-e6f9-c92b-fbb6-6b46669f9ed0 + Cubicle_MV3.101 Load 66 + + + + + 1 + f5847c91-91c3-9b0b-a25c-b2f4fb0c78fb + Cubicle_MV3.101 Load 22 + + + + + 2 + b2a859c9-9619-3f92-3ffb-421c1771cc21 + MV3.101 Bus 80_1 + + + + + + 1 + f9b66697-92ef-29e1-dd47-28b6ee022515 + Cubicle_MV3.101 Load 132 + + + + + 2 + adb03142-c99d-3cbf-b87d-1b6bf6743e8c + MV3.101 Bus 103_1 + + + + + + 1 + 9d5d3d22-d3e7-5c80-77cc-f419afacd090 + Cubicle_MV3.101 Load 58 + + + + + 1 + a0c7bbe3-75f0-0375-5504-a2454a686ec9 + Cubicle_MV3.101 Load 67 + + + + + 1 + ae3370b3-1e76-bb8f-d355-69f1afe04fb6 + Cubicle_MV3.101 Load 126 + + + + + 1 + a810befe-c1b5-91fe-28aa-45f4249d5026 + MV3.101 Bus 13_2 + + + + + + 1 + b78cfad5-520a-5811-04a9-53d530926441 + Cubicle_MV3.101 Load 131 + + + + + 1 + b2e8eb27-d981-8978-2785-f03f88f71174 + MV3.101 Bus 136_2 + + + + + + 1 + d3677fc4-65c9-24de-d1ab-b71ed126d925 + Cubicle_MV3.101 Load 53 + + + + + 1 + b2e9699a-b63c-7d4f-1fbc-86996a3efa77 + Cubicle_MV3.101 SGen 95 + + + + + + 1 + 9fc4d6dd-c38e-e956-4882-caf7c7a264e8 + Cubicle_MV3.101 Load 80 + + + + + 1 + aa6b35bf-40e1-b2da-87c7-26cc1644a3ab + Cubicle_MV3.101 MV Storage 23 + + + + + + 1 + a5f2bc81-39da-e2cb-99fc-690c5fcd1d67 + Cubicle_MV3.101 Load 98 + + + + + 1 + d72722b0-d703-3e2c-a59f-bd1fbcec216a + Cubicle_MV3.101 Load 60 + + + + + 2 + af9c7475-f578-44f2-7c85-f9839a377334 + MV3.101 Bus 100_1 + + + + + + 1 + d8e1c146-11df-226d-452a-159e422cb286 + Cubicle_MV3.101 Load 15 + + + + + 2 + aab02919-d337-86a0-4f59-65139c74d4c6 + MV3.101 Bus 125_1 + + + + + + 1 + e1522ce8-99c6-484f-c389-605c12e04ab8 + Cubicle_MV3.101 Load 96 + + + + + 1 + e2947a86-caa1-1538-a764-659cd37e6807 + Cubicle_MV3.101 Load 30 + + + + + 1 + aff6da21-2e75-a18f-51a2-631c089c00b7 + Cubicle_MV3.101 MV Storage 53 + + + + + + 1 + ca256fbb-b7fe-4afa-2163-abd110a368eb + Cubicle_MV3.101 Load 108 + + + + + 1 + a91c686d-3462-cf1a-3125-a25ca89ce270 + Cubicle_MV3.101 MV Storage 46 + + + + + + 1 + be4c8e7e-5b4c-dd23-570a-53bb600edfab + Cubicle_MV3.101 Load 97 + + + + + 1 + a800c666-a829-b353-179c-7c078485109f + MV3.101 Bus 142_2 + + + + + + 1 + e2ffab25-2f52-a836-ab10-bdfe99c597c4 + Cubicle_MV3.101 Load 120 + + + + + 1 + aa0a5631-38fb-fe83-b0bb-92f737cafc5a + Cubicle_MV3.101 SGen 115 + + + + + + 1 + f1ad1a87-f1d8-7497-07c0-36be6b73b75b + Cubicle_MV3.101 Load 14 + + + + + 2 + a98b2aa6-cd14-7740-f6f0-8afb4f1a3486 + MV3.101 Bus 128_1 + + + + + + 1 + d8cfeab2-907e-a192-4462-b7587ab6e26d + Cubicle_MV3.101 Load 99 + + + + + 1 + f3bba606-c003-58f5-97ab-f1642db89a84 + Cubicle_MV3.101 Load 69 + + + + + 1 + ad0a924f-ac7a-e2dc-2964-f8ca3311c250 + Cubicle_MV3.101 Load 116 + + + + + 1 + f55fc2fc-2353-683b-ed22-475dbb50b658 + Cubicle_MV3.101 MV Load 5 + + + + + 1 + a83e7cd3-7409-f162-f0b7-95788cb7b042 + Cubicle_MV3.101 MV Storage 105 + + + + + + 1 + f6415ebe-4850-7ab7-b33a-74717534883e + Cubicle_MV3.101 Load 101 + + + + + 1 + ac56fef9-8728-0f07-b9e2-5c62cb2d7f3f + Cubicle_MV3.101 MV Storage 10 + + + + + + 1 + f9e530cc-0571-2ecf-fe91-8d85ce6641e9 + Cubicle_MV3.101 Load 65 + + + + + 2 + ad110288-6a16-a35d-4632-4656d703ff05 + MV3.101 Bus 41_1 + + + + + + 1 + b9386e69-33b9-884b-56b1-ca7ba51dbce1 + Cubicle_MV3.101 Load 122 + + + + + 1 + a821eb93-c8c8-dc1b-28fa-e78e4a789959 + MV3.101 busbar1A + + + + + + 1 + fa9f747d-65cc-b4ce-f48c-d541b345216c + Cubicle_MV3.101 Load 13 + + + + + 1 + a0ae5938-f47a-13a5-b9ff-0565c3a29ea1 + Cubicle_MV3.101 Load 49 + + + + + 2 + aa398d79-68f7-1a0c-f9b1-7de9d214e48c + MV3.101 Bus 48_1 + + + + + + 1 + b4c51675-4b97-c2f2-3714-5838b4e8f6e9 + Cubicle_MV3.101 Load 90 + + + + + 1 + 5fd0f26b-7f17-bab3-8a63-2c6a1d8a587d + MV3.101 Bus 39 + + + + + 1 + 9c0e802c-81db-03ae-8f5a-112693231a46 + Cubicle_MV3.101 Load 77 + + + + + 1 + c053f78c-56e7-e039-f352-83708c635e40 + Cubicle_MV3.101 Load 128 + + + + + 1 + ab0179b5-a3b2-fde3-70da-6b830dfc1ba9 + Cubicle_MV3.101 MV Storage 22 + + + + + + 1 + cc1eeb86-41eb-116e-4d3c-5c7f9631f374 + Cubicle_MV3.101 Load 32 + + + + + 1 + 7e6fe179-e756-f09d-594f-ca61419352e3 + MV3.101 Bus 23 + + + + + 1 + c0804960-63ca-3c22-8a7e-bf442092523e + Cubicle_MV3.101 Load 84 + + + + + 1 + b46a8641-2bec-2c69-6ed1-4161c6a0b563 + Cubicle_MV3.101 Load 43 + + + + + 1 + 3e87fd5a-67f4-200a-acf3-367a539e49fd + MV3.101 Bus 12 + + + + + 1 + ecf1ba17-262d-bfa6-ca1f-3c6eb8073352 + Cubicle_MV3.101 Load 40 + + + + + 1 + 2db140a6-a155-2169-d7b3-fa2bb2dd807f + MV3.101 Bus 114 + + + + + 1 + e75a7093-bb38-7280-de39-930eb8e1bc63 + Cubicle_MV3.101 Load 114 + + + + + 1 + af9e308e-04b9-08d5-1509-b39a516483e6 + Cubicle_MV3.101 SGen 69 + + + + + + 1 + 151b156e-693b-5e2d-e3df-364c741f16ac + Cubicle_MV3.101 SGen 82 + + + + + + 1 + fc79316f-aeb1-6a2c-847f-b226f302fcef + Cubicle_MV3.101 Load 39 + + + + + 1 + f7a5425d-669f-d81a-21ba-35d0d463231d + MV3.101 Bus 138 + + + + + 2 + a81bd693-ec3e-ead8-08c7-c0ad11d537e2 + MV3.101 Bus 75_1 + + + + + + 1 + ff721484-64d9-a7e4-d100-acd9d26532ba + Cubicle_MV3.101 Load 45 + + + + + 1 + d9fabad0-2ff8-7cbc-dc6d-b1074500b944 + MV3.101 BS busbar1B + + + + + 2 + af5b7a43-e845-c083-6a04-a1a9888c75b6 + MV3.101 Bus 108_1 + + + + + + 2 + af26c5e8-b662-0832-ed3b-42f9291ae9f2 + MV3.101 Bus 137_1 + + + + + + 1 + d40fe62c-fbc8-e68d-e324-02a80b81a57b + Cubicle_MV3.101 Load 64 + + + + + 2 + a906ba88-06b1-6483-444a-37b841c47970 + MV3.101 Bus 71_1 + + + + + + 1 + 19d57e79-d4c1-e55b-6b08-6d4b95ab7dbb + MV3.101 Bus 46_2 + + + + + + 1 + a97a7489-4071-d13f-5ab7-98d5c0c9b763 + MV3.101 Bus 25 + + + + + 1 + e6176c90-e5db-600a-c2dd-f0608cd9853a + Cubicle_MV3.101 Load 16 + + + + + 2 + ac28f3b5-f578-6b4d-dde7-da006e0540ac + MV3.101 Bus 74_1 + + + + + + 1 + ac2cef91-b3dd-9c10-e9d3-2bce566f1192 + Cubicle_MV3.101 Load 10 + + + + + 2 + b1df3ac4-f43c-6918-b232-1f73aea255ed + MV3.101 Bus 105_1 + + + + + + 1 + a75331a3-d027-e1ab-3fb4-1264bc42cfdb + Cubicle_MV3.101 Load 117 + + + + + 1 + fd786bc6-4c8a-7bc9-69d7-afe6d7303bb7 + MV3.101 Bus 92 + + + + + 1 + 14f37736-c3fe-a517-9440-9542ff9c3067 + Cubicle_MV3.101 SGen 91 + + + + + + 1 + b33644c6-deca-fda6-972e-187d2a8d2a43 + Cubicle_MV3.101 MV Storage 19 + + + + + + 1 + a85d03ef-05e6-945c-3ec5-b01208330025 + Cubicle_MV3.101 Load 56 + + + + + 1 + badd8c47-605b-7ee3-0e14-ef51c8613781 + HV1 Bus 25 + + + + + 1 + 1bdb6a5c-9d7c-90d1-3a09-12388cd7aa3f + Cubicle_MV3.101 MV Storage 43 + + + + + + 1 + c82ef986-a492-fc03-3282-a42a29fc1fea + Cubicle_MV3.101 Load 44 + + + + + 2 + b73bcccf-cacf-b8f6-39e2-39ee03d9d8eb + MV3.101 Bus 130_1 + + + + + + 2 + 18ee2b6a-b980-d3cc-581e-ff8c21620404 + MV3.101 Bus 39_1 + + + + + + 1 + d9928094-97b7-b85d-46a1-e08c9ec1b6c8 + Cubicle_MV3.101 Load 17 + + + + + 1 + 1c82d10b-730c-1a09-7aec-51fb866ec943 + Cubicle_MV3.101 SGen 53 + + + + + + 1 + 9236b46c-bda1-36a3-8589-3f9b20a049e0 + MV3.101 busbar2A + + + + + 1 + b76e58bb-d6cd-4c28-48fe-1f9d57c3f886 + Cubicle_MV3.101 SGen 108 + + + + + + 1 + b857a0bb-a06a-9e1c-c6b1-d2da6da4100d + Cubicle_MV3.101 Load 18 + + + + + 1 + 13ed859b-5c2a-456c-23de-6641519dbefe + MV3.101 Bus 138_2 + + + + + + 1 + a8d6c3b6-edd3-8dd7-b55e-5e7dcbac1bac + Cubicle_MV3.101 Load 102 + + + + + 1 + b6043756-ffb8-f0ad-7fa8-f197b5b3ea19 + Cubicle_MV3.101 MV Storage 14 + + + + + + 1 + be0f6fd3-86f9-0cfb-69d0-3c98bc483083 + MV3.101 Bus 68 + + + + + 1 + a6aa6261-f233-e89a-aa69-8713b38926a8 + Cubicle_MV3.101 Load 48 + + + + + 1 + 7a3e51bd-7e42-2195-acbd-04bd6410c267 + MV3.101 Bus 141 + + + + + 1 + be25010f-0aea-aba4-e3a0-13138855061e + Cubicle_MV3.101 MV Storage 102 + + + + + + 2 + 136dbedb-cea4-6aba-1c06-2bb7c58a26ca + MV3.101 Bus 131_1 + + + + + + 1 + bec3c344-3a84-d68c-a5cb-53128802f742 + Cubicle_MV3.101 MV Storage 57 + + + + + + 1 + a12099ef-4f84-d95a-47b0-7b385e62deb9 + MV3.101 Bus 120 + + + + + 1 + 1d2224a6-b9c5-f549-8d02-8c58035d22c9 + MV3.101 Bus 30_2 + + + + + + 1 + 662849a3-1ec5-2b35-0f2b-7a76dcdfdc3a + MV3.101 BS busbar1A + + + + + 2 + baa23566-6c3e-df49-c260-b551cb482dd2 + MV3.101 Bus 63_1 + + + + + + 2 + 1ce852ad-2317-8883-ad8c-90e48ccce8f6 + MV3.101 Bus 139_1 + + + + + + 1 + fcfa7de9-ab63-316b-5c85-b39864409410 + MV3.101 Bus 24 + + + + + 1 + 1d22488d-6ead-0147-abac-e7084448171a + Cubicle_MV3.101 SGen 67 + + + + + + 1 + 63483ece-ac9f-7e79-7ec3-df65f3ed5074 + MV3.101 Bus 66 + + + + + 2 + 149b4df2-56fa-602c-05f9-2917a57e6be6 + MV3.101 Bus 110_1 + + + + + + 1 + bef5f20c-1984-cf51-6fed-e5bfec045048 + MV3.101 Bus 76_2 + + + + + + 1 + ce446b4e-99d9-4431-1fa8-b5ced2a728f3 + MV3.101 Bus 95 + + + + + 1 + 18b8c1cb-6a39-54a5-a6de-dfb2400208a0 + Cubicle_MV3.101 SGen 16 + + + + + + 1 + b9d1e048-5cbf-bc89-ffc8-f9580a46ee74 + MV3.101 busbar1A_3 + + + + + + 1 + 140782b4-048b-3a82-3c56-6fd0ca5ccd28 + MV3.101 Bus 59 + + + + + 1 + 137a75e6-3a5f-0abe-5586-99bc0d3a5d2c + Cubicle_MV3.101 MV Storage 25 + + + + + + 2 + b6df29b2-ba60-4e5a-b1be-469e801529de + MV3.101 Bus 143_1 + + + + + + 1 + ef54ef26-f27c-5ec5-9140-76da782886f7 + MV3.101 Bus 133 + + + + + 2 + bf3d195e-0ab8-c159-8aa7-da966af6f071 + MV3.101 busbar1B + + + + + + 1 + 1666bf8a-7b80-e7d6-14ac-9a72ae3fc675 + Cubicle_MV3.101 MV Storage 79 + + + + + + 1 + 1482b11c-f865-7a5c-a49d-a4f9d9d5473c + Cubicle_MV3.101 MV Storage 123 + + + + + + 1 + 6d05eb94-db0a-340f-d02d-85ee79cb24ee + MV3.101 Bus 90 + + + + + 2 + b6ce6ab7-2840-7bd6-df3a-e3e8fb828559 + MV3.101 Bus 33_1 + + + + + + 2 + 16a6791b-a4d3-b705-bd2b-c6af196fa2a5 + MV3.101 Bus 116_1 + + + + + + 1 + bf809f04-113a-dfc4-62b7-8201e792c352 + Cubicle_MV3.101 SGen 49 + + + + + + 1 + ad54010f-c971-67ac-671a-cc3fc42dc837 + MV3.101 Bus 13 + + + + + 1 + b3e84f6c-ba19-7fc5-b93e-179ac89eccd9 + Cubicle_MV3.101 SGen 41 + + + + + + 1 + f60cad91-49d2-906a-dac1-7a174647699e + MV3.101 Bus 72 + + + + + 1 + b934ab91-2be2-e013-403a-b102aa957b79 + MV3.101 Bus 101_2 + + + + + + 1 + d3933ab6-4d6d-79e0-af12-446fb177fe2c + MV3.101 Bus 104 + + + + + 1 + 7da0e516-120a-44dc-3f48-2974e680bc94 + MV3.101 Bus 36 + + + + + 1 + b676d233-c9f6-87c7-276e-29eeb847447e + Cubicle_MV3.101 SGen 27 + + + + + + 2 + 1a0a331e-de2b-80ca-a4d0-39a3db37afe1 + MV3.101 Bus 75_3 + + + + + + 1 + b96511d6-4c37-c979-4689-9818644c25c8 + Cubicle_MV3.101 MV Storage 38 + + + + + + 1 + 819fd909-7d08-d4de-49d3-b6414f5e954c + MV3.101 Bus 56 + + + + + 1 + 610ec2d8-491d-41e4-211e-51b453a7cd8e + MV3.101 Bus 143 + + + + + 1 + b8303b63-853e-3e32-b235-073b1c3f220c + Cubicle_MV3.101 MV Storage 126 + + + + + + 2 + b58c294b-7ee9-caea-afbe-c0883d59a949 + MV3.101 BS busbar1B + + + + + + 1 + 1410eb9c-96e2-6d59-2cbc-046bff836b84 + MV3.101 BS busbar1A + + + + + + 1 + b67bc910-84ec-3d96-7710-79fe651bbd00 + Cubicle_MV3.101 MV Storage 54 + + + + + + 1 + 80b2620b-ec2b-f749-077d-095dd5958749 + MV3.101 Bus 65 + + + + + 2 + 15bda8dc-161e-7035-6795-6d099decc9ba + MV3.101 Bus 114_3 + + + + + + 1 + f2c2876d-0c22-e0c1-cf7d-c3b388fa5138 + MV3.101 Bus 76 + + + + + 1 + 15eebc25-ed84-c7c4-29b4-411187c77516 + Cubicle_MV3.101 SGen 66 + + + + + + 1 + ebc136ee-175d-f7da-9367-a9ab6aba0078 + MV3.101 Bus 44 + + + + + 1 + bec4eeb4-f0b8-254a-a01c-9f683540626b + MV3.101 Bus 128_2 + + + + + + 1 + b154c456-eebb-3110-19b0-ba94e4de1a31 + MV3.101 Bus 129 + + + + + 1 + bf06d848-373e-a20d-9c70-bd0a26f0a3a3 + MV3.101 BS busbar1B(1) + + + + + + 1 + 17ae8b16-c9e6-7a13-5cde-051db43d801c + Cubicle_MV3.101 MV Storage 59 + + + + + + 1 + 2d0ab85a-9378-7f3c-8a6b-7e92458df46e + MV3.101 Bus 47 + + + + + 1 + b8f6cb31-c37e-5eb6-0dfe-8c0543aaac3e + Cubicle_MV3.101 MV Storage 98 + + + + + + 1 + 2234f854-6c74-fb8c-e2ae-0fa3426ed7e5 + MV3.101 Bus 55_2 + + + + + + 1 + 6cfc7636-fcbd-248f-9d5c-ffc83408302d + MV3.101 Bus 106 + + + + + 1 + bb73adcd-693a-708a-a7f4-32313305341a + MV3.101 Bus 132_2 + + + + + + 1 + ca6ea31a-3693-c809-1873-9ed19180bccf + MV3.101 Bus 84 + + + + + 2 + 228fc3c1-f140-da71-bb17-3161c75021ac + MV3.101 Bus 85_1 + + + + + + 1 + be2be0aa-97c5-9cb1-32f0-0d1f12d5568a + Cubicle_MV3.101 MV Storage 65 + + + + + + 1 + dafa5dea-24ab-e4c8-b004-279411642ce3 + MV3.101 Bus 78 + + + + + 1 + c1a4ce37-aba2-d21f-666c-d34716a79b1d + MV3.101 Bus 87_2 + + + + + + 2 + 22ca7319-c12d-34c0-2ca2-64984b407efe + MV3.101 Bus 22_1 + + + + + + 1 + 1db9d96d-e0e5-5b97-19cd-8f88f34de06a + MV3.101 Bus 16 + + + + + 1 + 1f88087e-af63-5f45-4adf-4117809bf9ff + MV3.101 Bus 37_2 + + + + + + 1 + e3f8f5aa-e54c-609b-5943-0c5ccd3d6358 + MV3.101 Bus 49 + + + + + 1 + 0e00ba8e-6863-6d35-b85a-bddfec8270fd + MV3.101 Bus 128 + + + + + 1 + 20e6bb73-af0a-f9ee-f06d-a5489f102c00 + Cubicle_MV3.101 MV Storage 74 + + + + + + 1 + 9bf26516-f1f6-1e93-6e82-5d874e06326c + MV3.101 Bus 20 + + + + + 1 + c0fec04d-bcdf-ce60-6e3a-d0468259ae83 + Cubicle_MV3.101 SGen 93 + + + + + + 1 + 2554e791-56ee-da0b-af16-4a7c6ca93c42 + MV3.101 Bus 86_2 + + + + + + 1 + 8649a8bc-5027-5722-1ae1-a693a924ab8d + MV3.101 Bus 37 + + + + + 2 + 26eb21be-57bc-298d-94aa-1e37506b49ec + HV1 Bus 26_1_HV1 Bus 26 + + + + + + 1 + 50282697-e50e-4c86-af83-cddaa0460e4e + MV3.101 Bus 79 + + + + + 2 + c1cf73cf-9f49-71a7-161e-0aedc96b1e97 + MV3.101 Bus 53_1 + + + + + + 1 + c3ce9e3e-22a7-5615-baed-1191e35b900a + Cubicle_MV3.101 SGen 11 + + + + + + 1 + 7720e010-029a-02d7-af61-945e4ced4924 + MV3.101 Bus 113 + + + + + 1 + ca6e8d22-eb1f-d18c-7ac3-a6b7f6456925 + Cubicle_MV3.101 SGen 1 + + + + + + 1 + 1e7febc6-c5dc-340d-4013-912aa1ce3ae0 + Cubicle_MV3.101 MV Storage 122 + + + + + + 1 + ca87492f-9fad-3760-1157-72a7a9fc2e7b + Cubicle_MV3.101 SGen 87 + + + + + + 1 + 237049c5-ca19-8ffc-10b7-f602b647f4ef + MV3.101 Bus 100_2 + + + + + + 1 + 5f4ddddb-0051-7432-a3db-8fe341a1e6e6 + MV3.101 Bus 73 + + + + + 1 + cc378adf-b258-7512-19ab-27e42df91175 + MV3.101 Bus 36_3 + + + + + + 1 + edaa6cb8-56d9-4787-efad-866e02142798 + MV3.101 Bus 108 + + + + + 1 + 62b75864-9b4b-6112-c19e-1245736199d0 + MV3.101 Bus 67 + + + + + 1 + a8d09bcd-0383-6432-8817-afb00584bf9b + MV3.101 Bus 98 + + + + + 1 + 1fe6840d-18d5-4bbc-71be-b9182fcfdcea + MV3.101 Bus 65_2 + + + + + + 1 + 2087412a-9cdc-23ad-955b-bd32920403bb + Cubicle_MV3.101 SGen 76 + + + + + + 1 + 61125399-5b1f-6a03-048a-e78041e4fa99 + MV3.101 Bus 52 + + + + + 1 + c17afb68-6b90-a0c6-f6af-e1418214c3ee + Cubicle_MV3.101 SGen 57 + + + + + + 1 + 1e973e0c-2411-d22b-23ad-cf1feca2d762 + MV3.101 Bus 98_2 + + + + + + 2 + c132ff92-730b-b9a9-ca79-0636dbc67fb8 + MV3.101 Bus 93_1 + + + + + + 1 + f62a80ee-0aae-d5cb-da77-1449cede565a + MV3.101 Bus 60 + + + + + 2 + c21d6f5d-b3b5-900a-6b33-137f0c336fb8 + MV3.101 Bus 66_1 + + + + + + 1 + e8e56620-9e72-062a-9809-0b93242378fd + MV3.101 Bus 123 + + + + + 1 + ecfa8ebc-b069-a04a-4eb0-a24eff3cf89f + MV3.101 Bus 21 + + + + + 1 + c2eb5912-5a6f-05a1-7558-71ffae95fa54 + MV3.101 Bus 89_2 + + + + + + 1 + c1138890-9de1-13e1-385d-b1520277ee03 + MV3.101 Bus 105 + + + + + 1 + 1f9cbb0e-52ae-a750-1eb3-13082d025ed7 + Cubicle_MV3.101 MV Storage 66 + + + + + + 1 + c40b328b-c7ad-cf3b-2699-a9768882856f + Cubicle_MV3.101 MV Storage 4 + + + + + + 1 + 25570de3-ba35-dd7d-e5d4-6a0f258e559b + MV3.101 Bus 85_2 + + + + + + 1 + dcd2e3ee-6b3a-8509-f1cd-bddb66ac4439 + MV3.101 Bus 64 + + + + + 1 + 39c7675e-107f-d2a1-e7d9-ed3d15822d06 + MV3.101 Bus 111 + + + + + 1 + 25f069c4-055f-6f65-765a-9d7dd8bb358b + Cubicle_MV3.101 MV Storage 69 + + + + + + 1 + e8bd1193-5423-10cc-3ddf-4b93504e697c + MV3.101 Bus 134 + + + + + 1 + 1d993990-255d-cf4b-6621-8f1863cd4c59 + Cubicle_MV3.101 MV Storage 32 + + + + + + 1 + 35e863c2-6291-5063-4af8-9cb83b8b34e7 + MV3.101 Bus 117 + + + + + 1 + c38210ae-9a95-58d2-e250-4d7dd689cc3f + MV3.101 Bus 39_2 + + + + + + 1 + a9cc61ad-183b-2fbc-5471-2c0d345e7c2e + MV3.101 busbar1B + + + + + 1 + 210de821-3e75-d2e9-2385-6f0bda3bacb9 + Cubicle_MV3.101 SGen 70 + + + + + + 1 + cb398ca9-c669-ce08-7c83-f09c07ab2f42 + MV3.101 busbar2B + + + + + 1 + 267d534f-9f9f-c59c-c69f-a41c929351b5 + Cubicle_MV3.101 MV Storage 92 + + + + + + 1 + c13ba9b0-fde3-43a3-369a-782e0851d801 + MV3.101 Bus 113_2 + + + + + + 1 + 2c359592-4150-808d-36e9-9f1b0bcb373f + MV3.101 Bus 18 + + + + + 2 + c69ec5b0-69b5-f118-1bf8-5e6033d9c3b5 + MV3.101 Bus 124_1 + + + + + + 1 + 21aacf95-55af-e87e-094f-56d3f8a4bf78 + MV3.101 busbar2A + + + + + + 1 + 4cc151bc-5630-0733-85b3-6ac73d40bafe + MV3.101 Bus 127 + + + + + 1 + bf905eba-6831-523c-0ecf-0931fadc51ed + Cubicle_MV3.101 MV Storage 11 + + + + + + 1 + 988cddbf-adc0-424c-02d5-72b086946625 + MV3.101 Bus 30 + + + + + 2 + 20b01619-35ac-1bbf-b5c7-912e3af627c7 + MV3.101 Bus 134_1 + + + + + + 1 + 29ced2f2-1714-f49f-1ed3-297ea682d95a + Cubicle_MV3.101 SGen 8 + + + + + + 1 + b2bdffa9-6f21-e19b-0a3d-5103bb240665 + MV3.101 Bus 14 + + + + + 2 + 283dfa94-9aaa-1ef1-007e-f9d5fa368581 + HV1 Bus 26 + + + + + + 1 + 64c7b804-11a0-b517-82b2-4c61edd37b3a + MV3.101 Bus 33 + + + + + 1 + c99295c9-1f88-8576-0398-10b9b592eeac + Cubicle_MV3.101 SGen 81 + + + + + + 1 + 2a62f122-94f6-6cc9-32f0-4c2e5ccd2eed + MV3.101 Bus 64_2 + + + + + + 1 + 19c4bef4-efa9-3875-300c-060518163c81 + MV3.101 Bus 136 + + + + + 1 + ca47c1ec-c2b3-55d3-cf0d-89ac5ff0fd0d + Cubicle_MV3.101 SGen 102 + + + + + + 1 + 2d74a056-0c8b-3ff2-7ae3-22dd2a056ee4 + MV3.101 Bus 134_2 + + + + + + 1 + d42adf23-3bad-9d68-0c53-eb22d9c808e7 + MV3.101 Bus 126 + + + + + 1 + ca62a5be-f2e4-c07c-f9e3-fa86691cd9e5 + Cubicle_MV3.101 MV Storage 3 + + + + + + 1 + 2dbe165a-50a2-05a2-c4ab-a67a8a0de05a + MV3.101 Bus 106_2 + + + + + + 1 + c1b5bd15-d1b1-aa6c-ed24-70ec89381e9c + Cubicle_MV3.101 MV Storage 20 + + + + + + 1 + c558ed04-5f97-c3b4-9863-71114d02c4e8 + MV3.101 Bus 50 + + + + + 1 + 2bd09a90-f0bb-0afa-e324-629c1649766f + MV3.101 Bus 57_2 + + + + + + 1 + 2f2d9b9d-b650-c7c4-3745-22bf7630b942 + Cubicle_MV3.101 MV Storage 112 + + + + + + 1 + cae249ed-46d8-a27e-0303-4f20a2618792 + MV3.101 Bus 80_2 + + + + + + 1 + e5fe6f71-8ee0-8c67-78b9-84cdee636138 + MV3.101 Bus 71 + + + + + 1 + c6c5ae8a-98d3-e69b-1d7d-427a70f994cb + Cubicle_MV3.101 SGen 15 + + + + + + 1 + fa525567-5fd1-99c3-1cbf-af3109df892c + MV3.101 Bus 69 + + + + + 1 + c0bcf9bd-3d6d-bcbe-b316-7339813fd877 + Cubicle_MV3.101 MV Storage 115 + + + + + + 1 + c5634055-2305-cde4-0bfe-2430dbd96855 + Cubicle_MV3.101 MV Storage 62 + + + + + + 1 + 9effa9c0-e398-21bb-d047-ce6805332095 + MV3.101 Bus 131 + + + + + 1 + 2030e960-240d-59fa-13f1-87a86a0c7058 + MV3.101 Bus 74 + + + + + 1 + 2f35f267-c642-42f2-57d6-6bcb6d5d4978 + MV3.101 Bus 73_2 + + + + + + 1 + 80158d5d-fbdb-dadd-26a7-6e055ef120e1 + MV3.101 Bus 118 + + + + + 2 + c7a6fe1f-7fe3-a253-e059-84c5893435ef + MV3.101 Bus 40_1 + + + + + + 1 + a98296d7-c850-d184-2e58-a4f538d85793 + MV3.101 Bus 107 + + + + + 1 + 28e1e605-8f19-3598-5955-524afce12c6b + Cubicle_MV3.101 SGen 44 + + + + + + 1 + 0e1d4efa-7376-0e12-c762-d2555be84ea8 + MV3.101 Bus 116 + + + + + 1 + 2ab39c54-feb5-4820-2a12-b7c4224083b2 + Cubicle_MV3.101 MV Storage 73 + + + + + + 1 + c5b108c0-0f33-b792-1054-a7efdde80be6 + MV3.101 Bus 122_2 + + + + + + 1 + d27ad437-af77-4621-3e64-ae4c1da74a3c + Cubicle_MV3.101 SGen 24 + + + + + + 1 + 30afa392-a2a6-63ef-b556-5de5961fc6b3 + Cubicle_MV3.101 MV Storage 85 + + + + + + 1 + ba40642e-054f-175c-c46b-396ae9012a38 + MV3.101 Bus 96 + + + + + 1 + ce041802-10cc-857e-bffe-c84a218f0a26 + Cubicle_MV3.101 SGen 130 + + + + + + 1 + d1932c69-2db3-cee7-ea26-7999a7f1e37b + MV3.101 Bus 79_2 + + + + + + 1 + c78cfc96-20b9-9283-af5d-3dfd1f61a3f8 + MV3.101 Bus 75 + + + + + 1 + 08b391f0-3a13-d3eb-d457-1e0a4850cbba + MV3.101 Bus 139 + + + + + 1 + 2a551891-f767-69f1-09a2-d504707035c6 + MV3.101 Bus 95_2 + + + + + + 1 + c92c22fa-4260-7f18-d9c4-73c38363bbd9 + MV3.101 Bus 103 + + + + + 1 + adde697f-c1fc-a6fc-6229-3d833c292e85 + MV3.101 Bus 115 + + + + + 2 + 289686ec-da58-4f27-6a79-e8f428856385 + MV3.101 Bus 61_1 + + + + + + 1 + 50ea8607-0875-83b0-f109-eae71324655b + MV3.101 Bus 88 + + + + + 1 + 029aa67f-2527-1c66-719b-2dc175e0cc66 + MV3.101 Bus 109 + + + + + 1 + d3748491-4ec0-af0a-6847-f465b8f4906b + Cubicle_MV3.101 SGen 2 + + + + + + 1 + 30497b95-49c7-df79-1e46-4e92505f81c6 + MV3.101 Bus 121_2 + + + + + + 1 + d3a2f0a7-9261-c238-9f96-312f0fd7d394 + MV3.101 Bus 43_2 + + + + + + 2 + d47faf47-8d1f-ec02-3d48-3c9ec21a70bd + MV3.101 Bus 50_2 + + + + + + 1 + 18453b7a-5895-8993-8911-f302722c3ffc + MV3.101 Bus 17 + + + + + 1 + 2afb1092-3bc1-4c64-b874-c3870c76d38f + HV1 Bus 26_HV1 Bus 26_1 + + + + + + 1 + 25593f17-d2be-60fc-3680-4f93e21c33bf + MV3.101 Bus 28 + + + + + 2 + cd394f80-fca8-3acc-e728-1038c33ee0fe + MV3.101 Bus 77_1 + + + + + + 1 + e10f84fb-7870-4f3c-6d9f-18a4c91a6c44 + MV3.101 Bus 85 + + + + + 1 + d0832a98-a91e-08e4-3fcb-51cc167a1833 + Cubicle_MV3.101 SGen 33 + + + + + + 2 + 3251f8eb-a375-1404-1872-46806e705e6b + MV3.101 Bus 51_1 + + + + + + 1 + 1c68e2b1-b319-8c45-42b0-91e21cc62c76 + MV3.101 Bus 110 + + + + + 2 + d555b26b-1a9b-8068-45b8-db6606015922 + MV3.101 Bus 35_1 + + + + + + 1 + facc8cea-da8a-7fe1-4dae-58fd868f7a8e + MV3.101 Bus 41 + + + + + 1 + cf542360-c5c7-ba4c-1d11-92896c657c37 + Cubicle_MV3.101 SGen 94 + + + + + + 1 + d06c3d53-144c-9846-1a65-aa1135f69e32 + Cubicle_MV3.101 MV Storage 97 + + + + + + 1 + 4fb81c35-89ba-99d3-73dd-3571ffa1c6b1 + MV3.101 Bus 101 + + + + + 1 + 28f77713-0a43-4313-a0e0-b6f9bbb78f33 + Cubicle_MV3.101 MV Storage 132 + + + + + + 1 + d08f48e3-1322-a96f-c0cf-486b5248e41f + Cubicle_MV3.101 SGen 60 + + + + + + 1 + d06d0be5-29d0-06b1-5a9c-c8c435830c90 + Cubicle_MV3.101 MV Storage 40 + + + + + + 2 + cd364419-731d-38b8-5905-20c9f79511c4 + MV3.101 node2_MV3.101 busbar1B + + + + + + 2 + 27fa06f3-79fb-3a68-f4c3-187c6f1bdbba + MV3.101 Bus 69_1 + + + + + + 1 + 9bcd1c43-4890-432b-eef3-ae0afecaa630 + MV3.101 Bus 42 + + + + + 1 + cf52d80b-e2b3-d965-e552-7a0c6cf95a4e + Cubicle_MV3.101 MV Storage 83 + + + + + + 1 + 2d7980ae-9ef1-ac8d-179e-090e7cf43fba + Cubicle_MV3.101 MV Storage 21 + + + + + + 1 + 9fc1c345-f312-79e6-5c12-8d289864d42a + MV3.101 Bus 130 + + + + + 1 + a5e42825-ae34-80e0-9055-46c20a2dbf62 + MV3.101 Bus 119 + + + + + 1 + 2e37a314-3847-34cf-c37b-a108903e62e7 + MV3.101 Bus 68_2 + + + + + + 1 + 438ea5ae-e0c9-81f9-b221-d450353e4c7e + MV3.101 Bus 70 + + + + + 1 + d0cafec8-765f-2beb-7926-76044b91466d + Cubicle_MV3.101 SGen 12 + + + + + + 2 + 281fed85-cbb3-edac-61cf-f6e26f23cb82 + MV3.101 Bus 60_1 + + + + + + 1 + 7c339274-48f4-610e-854d-113b70719246 + MV3.101 Bus 81 + + + + + 1 + e9dd3f8c-c947-22cf-8a48-5249f7b6f928 + MV3.101 Bus 53 + + + + + 1 + e6a2bb3f-90d3-f097-608d-2ed33ead4ee6 + MV3.101 Bus 137 + + + + + 1 + 8fe53187-71c9-e212-9c8b-0d2d2b39718d + MV3.101 Bus 54 + + + + + 1 + 0f0c23ce-5bb7-158a-82e9-e99d13035727 + MV3.101 Bus 46 + + + + + 2 + 298f4692-7d47-57b8-8f5e-57c910633621 + MV3.101 Bus 44_1 + + + + + + 1 + 1d971927-703d-bd8d-d8c2-12bd716a2848 + MV3.101 Bus 61 + + + + + 1 + 2c2d818b-e214-d9dd-c1d0-8467c383825e + Cubicle_MV3.101 SGen 43 + + + + + + 1 + 2749092d-d2f2-866e-0428-f068696f3d9e + MV3.101 Bus 126_2 + + + + + + 1 + 797d147c-cf32-3a96-78e4-bb74601e8c00 + MV3.101 Bus 89 + + + + + 1 + 2a87e787-2be6-3cad-01b7-27f0d4689952 + Cubicle_MV3.101 SGen 101 + + + + + + 1 + d5d14602-a1dd-c614-cf8f-d96703513618 + MV3.101 Bus 61_2 + + + + + + 2 + 29a2dd0f-f591-ca08-961d-2e096fb0a1f1 + MV3.101 node1_MV3.101 busbar2A + + + + + + 1 + fda9cd97-be02-a3e7-184e-0ab797d9766c + MV3.101 Bus 38 + + + + + 1 + d3eeae39-bf9d-c0ea-dd45-2bdd5e8aa356 + MV3.101 Bus 75_2 + + + + + + 1 + 27875b17-4c58-b63d-cb40-710deb947c15 + Cubicle_MV3.101 MV Storage 106 + + + + + + 1 + cd8f3842-6b74-3d92-ee6e-1ba7484feeac + Cubicle_MV3.101 SGen 88 + + + + + + 1 + 161ed45c-957f-5b48-c793-d067d493d9ee + MV3.101 Bus 19 + + + + + 1 + cd61baac-dd69-d8cf-78fb-545b22012430 + MV3.101 Bus 29 + + + + + 1 + d58d96ae-cd2f-4dc4-c546-bf8ee44564b5 + MV3.101 Bus 93_2 + + + + + + 1 + 2776127b-a2bd-8eed-ca73-f213b8fb6495 + Cubicle_MV3.101 MV Storage 114 + + + + + + 1 + 0d1f6ca3-b0fd-2174-032b-c3da93e40afd + MV3.101 Bus 77 + + + + + 2 + 33ac2b71-8962-fd54-28f8-3da7680ac71f + MV3.101 Bus 143_2 + + + + + + 1 + ee5b4e4a-d34e-2a08-f8f4-61a1e1efd939 + MV3.101 Bus 62 + + + + + 1 + d492da0a-a35e-f265-ae9c-af33cd0a917d + Cubicle_MV3.101 MV Storage 78 + + + + + + 1 + e1aeee38-162a-e89e-72e3-d6150c0e31b5 + MV3.101 Bus 93 + + + + + 1 + 36508147-9404-4e27-495c-6907329e78e8 + MV3.101 Bus 58_2 + + + + + + 1 + d6596382-39e4-cb39-dd80-ad9f3f1de18c + Cubicle_MV3.101 MV Storage 108 + + + + + + 1 + 19bf2623-3362-a92c-2812-caf1c8123285 + MV3.101 Bus 63 + + + + + 1 + 39c886c3-329a-9572-b28d-9f80a9382e35 + Cubicle_MV3.101 SGen 63 + + + + + + 1 + 4e929881-4893-9f7e-1c38-5a59bbba6eda + MV3.101 Bus 55 + + + + + 1 + 3c179143-d5ee-26d3-5416-b8dbf7c0d1cf + Cubicle_MV3.101 SGen 9 + + + + + + 1 + d6dff019-93d6-11b6-1f62-bdfb54cb8b19 + MV3.101 Bus 23_2 + + + + + + 1 + 2ce74ee9-2cf4-d9f2-e6f8-398e03a13e2a + MV3.101 Bus 94 + + + + + 2 + 3ad3b5f4-835c-c156-7a72-c0c485eac57a + MV3.101 Bus 55_1 + + + + + + 1 + d00410aa-65f2-7305-8be8-fb28fa416125 + Cubicle_MV3.101 MV Storage 129 + + + + + + 2 + 34192bfa-ab37-2156-9705-1ffcc837a1d3 + MV3.101 Bus 88_1 + + + + + + 1 + d9acc72f-2ddc-be4f-8cac-80e2692f6da7 + Cubicle_MV3.101 MV Storage 48 + + + + + + 1 + c80ce1c9-09ab-2311-3954-a0dd7d8d9dea + MV3.101 Bus 15 + + + + + 1 + 36342de4-c9cb-320b-8767-4f5f92e86499 + Cubicle_MV3.101 SGen 97 + + + + + + 1 + d8823c65-491d-803e-c026-c0f1dac4ccee + Cubicle_MV3.101 MV Storage 80 + + + + + + 2 + 39208d16-c902-c75a-ca0c-c7a240365bc7 + MV3.101 Bus 16_1 + + + + + + 1 + dbdeb82d-4104-0634-cf75-1958847b6113 + Cubicle_MV3.101 SGen 112 + + + + + + 1 + dc7ff8a2-f147-8ef1-3da7-752f522f81a6 + MV3.101 Bus 49_2 + + + + + + 1 + 3c51700a-35d8-2c84-7505-b661fae68ccc + Cubicle_MV3.101 SGen 123 + + + + + + 2 + db0f47c7-3488-8e4c-ca66-acb541181faa + MV3.101 Bus 129_1 + + + + + + 1 + 2c08b81a-9188-ce5f-acf6-30c82281051f + MV3.101 Bus 142 + + + + + 1 + 3ad01e74-e616-31e4-3649-9cf7ba331d64 + Cubicle_MV3.101 SGen 56 + + + + + + 1 + db649623-02ab-1fcc-f8f1-5024980762ec + Cubicle_MV3.101 MV SGen 1 + + + + + + 1 + 70640f50-73dc-ed53-1683-40399de170f8 + MV3.101 Bus 22 + + + + + 1 + 606777b8-9bd8-2e12-b65c-cb7b5c59a40a + MV3.101 Bus 87 + + + + + 1 + 9ca21680-9cd0-7920-eeda-93acf03391c1 + MV3.101 Bus 102 + + + + + 1 + 3cf82f87-69a3-c0d6-a737-81ebae6b4582 + Cubicle_MV3.101 MV Storage 45 + + + + + + 1 + 8740357d-eb7e-1be5-dbd0-59bc675f4396 + MV3.101 Bus 48 + + + + + 2 + 3d3b7dab-3fac-c6d5-660f-fe23e1ecedd0 + MV3.101 Bus 120_1 + + + + + + 2 + de1aadc8-0136-ddbd-cae7-7c26f617de26 + MV3.101 Bus 31_1 + + + + + + 2 + 33e0ceca-c1b6-7a63-fc49-53ccb3171b62 + MV3.101 Bus 49_1 + + + + + + 1 + d833746c-1e93-db44-2094-e92e3fa90b26 + Cubicle_MV3.101 SGen 28 + + + + + + 1 + 350f447a-20c3-c013-d65b-09316163b8f3 + Cubicle_MV3.101 MV Storage 49 + + + + + + 2 + dc8298e7-63d9-1135-83ea-3342b27b87d6 + MV3.101 Bus 76_1 + + + + + + 1 + 3c1b5201-36dc-080b-0c1e-1902d99aae44 + Cubicle_MV3.101 SGen 117 + + + + + + 1 + d8614517-68f6-f4f2-ad9a-13076c3c7738 + Cubicle_MV3.101 SGen 118 + + + + + + 1 + 3dafbbca-ef93-2f28-565b-d29e06e24565 + Cubicle_MV3.101 MV Storage 133 + + + + + + 1 + d8780ed5-02d3-76dc-d4b8-46263cc71b79 + Cubicle_MV3.101 MV Storage 101 + + + + + + 2 + 3e58e523-683b-7749-7285-fadda3bb3565 + MV3.101 Bus 121_1 + + + + + + 1 + 3e7435b9-cd8d-b915-65af-e88ec3ca7d8b + MV3.101 Bus 44_2 + + + + + + 1 + ddd602d4-3759-453e-8dba-54c84baa627e + Cubicle_MV3.101 SGen 64 + + + + + + 2 + 3e7a486f-1912-7439-e843-bf4e8c19d581 + MV3.101 node2_MV3.101 busbar2B + + + + + + 1 + dae0813f-43b5-5201-bd76-4519d7d20314 + Cubicle_MV3.101 SGen 83 + + + + + + 1 + 395921fd-b78e-a1a2-b07f-4a8a7e06e2b3 + HV1 Bus 25 + + + + + + 1 + dacccbdf-ddf0-9642-3777-81c12941dc37 + Cubicle_MV3.101 SGen 4 + + + + + + 1 + 339f4cdb-2610-50a0-860c-6dfc8becf4ad + Cubicle_MV3.101 MV Storage 1 + + + + + + 1 + 3d700036-22d9-6ad8-6d89-6d8f1a762c63 + MV3.101 Bus 29_2 + + + + + + 2 + 3541f01e-347c-6577-c888-af353a06ab44 + MV3.101 Bus 113_1 + + + + + + 1 + defcde90-3da8-3e54-ce5a-a0a641661a81 + MV3.101 busbar1B_3 + + + + + + 1 + 37ed3433-29c9-c6ae-fa9f-a2e0f9cd88b4 + Cubicle_MV3.101 MV Storage 33 + + + + + + 1 + 3a836b65-eee1-976c-bcae-cf9ca0c0e40c + Cubicle_MV3.101 SGen 55 + + + + + + 2 + 33ec5672-4727-af7b-4bd0-5a1db319b4b7 + MV3.101 Bus 18_2 + + + + + + 2 + da6fe4d6-b2da-67e9-c556-3105f429eb40 + MV3.101 Bus 18_1 + + + + + + 1 + dc4c7f79-851b-77a0-129e-810d8f86835c + Cubicle_MV3.101 MV Storage 94 + + + + + + 1 + 36109f7c-12e5-dcad-1ce7-bc5403b2016d + Cubicle_MV3.101 SGen 29 + + + + + + 2 + dc797da0-9553-8e59-f989-068bd31d4d0f + MV3.101 Bus 43_1 + + + + + + 2 + dd5244b8-0787-4a3f-343a-90319065b3dc + MV3.101 Bus 73_1 + + + + + + 1 + db01a6bc-3ed5-f993-2ccc-fed66df8cd91 + Cubicle_MV3.101 MV Storage 131 + + + + + + 2 + ddda976e-d5c8-3d6b-b26a-de6e699615e0 + MV3.101 Bus 117_1 + + + + + + 1 + d8a1267b-6bb6-88a1-12a4-177ab3971736 + Cubicle_MV3.101 MV Storage 109 + + + + + + 1 + d948fb37-fae0-d98e-6c09-338a92256a48 + Cubicle_MV3.101 SGen 98 + + + + + + 1 + 458454b1-c554-03dd-b67c-6b09d6d62868 + Cubicle_MV3.101 SGen 30 + + + + + + 1 + 460663d2-79f5-4ba4-aa8a-f7a2d79b3cb2 + Cubicle_MV3.101 SGen 5 + + + + + + 2 + 4244e9de-295d-7198-bebc-85432b8b261c + MV3.101 Bus 27_1 + + + + + + 1 + d7caae19-aa31-6c48-f586-546fe3b3ebc5 + MV3.101 Bus 139_2 + + + + + + 1 + 46466fc8-7395-6c35-8072-e823a8eac7cc + Cubicle_MV3.101 SGen 85 + + + + + + 1 + ddfbc53e-7dfa-4b7d-e500-b0554a8298b5 + HV1 Bus 25_HV1 Bus 25_1 + + + + + + 1 + de0a515c-3324-2584-8b81-9ceb36063599 + MV3.101 Bus 15_2 + + + + + + 1 + 46df6cc7-811f-fd88-edc1-18bf0c96ece4 + MV3.101 BS busbar1A_2 + + + + + + 1 + 47141f82-1577-9e7a-f5a0-446dc0246e6c + MV3.101 Bus 56_2 + + + + + + 1 + d98b3a20-570c-143b-0d73-b2ab498adf5c + Cubicle_MV3.101 MV Storage 96 + + + + + + 1 + 41b49ad4-fcdb-9bdf-42c8-bbd57e9d277b + Cubicle_MV3.101 MV Storage 103 + + + + + + 2 + e432fae8-8a01-52b9-63a1-14dfcf08abac + MV3.101 Bus 133_1 + + + + + + 2 + 438fc965-0fca-e8f7-c264-cef633fadbc4 + MV3.101 Bus 106_1 + + + + + + 1 + e2dbdb9c-b48f-242c-c55a-d38bd2d5bba6 + Cubicle_MV3.101 SGen 6 + + + + + + 1 + e1cfe29b-6024-f2c0-d8ed-c6b23c5bcfe8 + Cubicle_MV3.101 MV Storage 89 + + + + + + 2 + 43a85767-744c-86a4-e94c-a1cd90ff68b3 + MV3.101 Bus 65_1 + + + + + + 1 + 460470ba-9946-d3b9-a52e-d5404188ecf2 + Cubicle_MV3.101 MV Storage 15 + + + + + + 2 + 47aae71c-3507-4543-9450-c336dcf0d50b + MV3.101 Bus 11_1 + + + + + + 1 + e41f2e0d-3a8f-1aa2-f29d-085a1d89eb89 + Cubicle_MV3.101 SGen 22 + + + + + + 2 + 4198c9dc-0bc1-c398-e8e9-3180d49c3fe3 + MV3.101 Bus 40_2 + + + + + + 1 + 41b7a038-4169-db67-cc75-7c06343df655 + Cubicle_MV3.101 MV Storage 130 + + + + + + 1 + e8e04abf-5d4d-4346-54aa-a1c6977e8ca7 + Cubicle_MV3.101 MV Storage 68 + + + + + + 2 + e263722d-6d34-c35c-84e1-e5f46071475a + HV1 Bus 25_1_HV1 Bus 25 + + + + + + 1 + e7806651-14fb-8c26-712e-e302e9a0d1fb + MV3.101 Bus 131_2 + + + + + + 1 + e2972b74-9939-a016-1044-724b138782f7 + Cubicle_MV3.101 MV Storage 44 + + + + + + 1 + 3f6f2be5-0960-3df4-31a9-ea60ea9b5a44 + Cubicle_MV3.101 SGen 58 + + + + + + 1 + e4e680f2-475b-4c37-36be-e84d298457a4 + Cubicle_MV3.101 SGen 59 + + + + + + 1 + 45a265e3-4c01-24bf-7777-88806cc6c36f + Cubicle_MV3.101 SGen 107 + + + + + + 1 + e5568350-8764-aa43-e3f7-6b728a19e552 + MV3.101 Bus 54_2 + + + + + + 1 + 3f037cee-2a90-b293-d5ce-65ea666566cc + Cubicle_MV3.101 SGen 99 + + + + + + 1 + 42021e28-1126-35c2-96d3-d98ba156e76d + Cubicle_MV3.101 MV Storage 113 + + + + + + 1 + e8f71633-ba16-e09a-7096-b343af738fe7 + MV3.101 Bus 17_2 + + + + + + 2 + e9370aeb-c944-d85f-1610-784ea8a9081c + MV3.101 Bus 26_1 + + + + + + 1 + e4736606-14e7-e05e-d048-4f31394ac247 + Cubicle_MV3.101 SGen 42 + + + + + + 1 + 40e2e60a-77b1-a8be-af31-58d00af64a5f + Cubicle_MV3.101 MV Storage 125 + + + + + + 1 + e9322be5-78c9-4b93-f24c-1335e0f9c482 + Cubicle_MV3.101 MV Storage 41 + + + + + + 1 + e9af8037-a11e-afbd-9fdd-36d0b9dedbab + Cubicle_MV3.101 SGen 114 + + + + + + 1 + 4296a1da-05a0-a52b-9c10-3d22f9d0c964 + Cubicle_MV3.101 SGen 45 + + + + + + 2 + 445bfea2-3e03-afb7-09de-83b94bbc3454 + MV3.101 Bus 42_1 + + + + + + 2 + 41925e5c-38f2-fdb4-3e81-4637a03f23db + MV3.101 Bus 82_1 + + + + + + 2 + ea1766d3-802b-bd12-6b19-6bacde5f4dc0 + MV3.101 Bus 30_1 + + + + + + 1 + 4e7cb5ad-99a0-74fd-c7c0-9fdb61a52b3f + MV3.101 Bus 92_2 + + + + + + 1 + e8086e53-d780-4329-cf0b-25d7107ea101 + Cubicle_MV3.101 SGen 75 + + + + + + 2 + 53506186-0aef-e22b-dd61-9261dd693b36 + MV3.101 Bus 15_1 + + + + + + 1 + e926ccb9-db42-4369-8c84-e8f367f1bb5c + Cubicle_MV3.101 MV Storage 76 + + + + + + 2 + 51a36fd5-738c-8b00-1e3f-714d1d231091 + MV3.101 Bus 38_1 + + + + + + 1 + ea19ea16-6357-ae18-3cba-544ceb87d543 + MV3.101 Bus 27_2 + + + + + + 1 + 523e0713-bdd9-2f80-8ea5-9eb0d6e7509d + Cubicle_MV3.101 SGen 132 + + + + + + 2 + e39a8c43-2a91-4085-810a-37483a374410 + MV3.101 BS busbar1A_3 + + + + + + 1 + 4adde88c-8a27-3a93-f4cc-e6c7a9803264 + Cubicle_MV3.101 MV Storage 87 + + + + + + 1 + e3b0c5e9-32b4-9089-f7b4-957d8108fd5c + MV3.101 Bus 36_2 + + + + + + 1 + 5379ac02-fa9a-caa9-37b2-6f86a0fe6ec4 + Cubicle_MV3.101 SGen 119 + + + + + + 1 + 4b5aa8a8-b41a-74fb-c680-ee34e0125431 + Cubicle_MV3.101 MV Storage 52 + + + + + + 2 + e7023644-7a2b-7f27-7ecc-3ca66aba14e6 + MV3.101 Bus 91_1 + + + + + + 1 + 50d674ce-b7dd-049a-0529-7823ba5e9cc5 + Cubicle_MV3.101 SGen 21 + + + + + + 2 + e186a641-48ce-8461-bc0d-25bbb17329d6 + MV3.101 BS busbar1C_3 + + + + + + 1 + 50c135cb-06f2-af5f-beb1-ee44f82a1565 + Cubicle_MV3.101 SGen 105 + + + + + + 1 + e36ae6ea-8b95-d2f6-2ba3-29c1cf3c7d55 + Cubicle_MV3.101 SGen 61 + + + + + + 1 + 51267b66-f7ba-31ab-a299-58154d715504 + Cubicle_MV3.101 SGen 111 + + + + + + 1 + 558551f1-138c-f9c5-a3b5-81e06621a030 + MV3.101 Bus 97_2 + + + + + + 1 + 5086012f-7a73-da3b-0c13-269d33af91bf + Cubicle_MV3.101 SGen 3 + + + + + + 1 + e66123c8-fae6-0621-fb70-0e7c9e0fc835 + Cubicle_MV3.101 MV Storage 7 + + + + + + 2 + 5612e3f9-ebf8-8a8c-69ac-68348191bf5e + MV3.101 Bus 28_1 + + + + + + 1 + e17bd05d-fc36-9706-d176-33644c9a83fb + MV3.101 Bus 66_2 + + + + + + 1 + 56630f49-6666-94a5-7a3c-e6ad90394261 + Cubicle_MV3.101 MV Storage 90 + + + + + + 1 + 5671ab5e-c40c-92ec-969e-46f564a7da91 + MV3.101 Bus 114_2 + + + + + + 1 + e8d5abbf-04e2-c9a1-8d4b-a9e0d9b810ad + Cubicle_MV3.101 SGen 13 + + + + + + 2 + 4d09cb1a-a571-e0fa-fbf1-2be6afd4c0fd + MV3.101 Bus 87_1 + + + + + + 2 + 4d2530ae-9141-258f-8333-3968a892add4 + MV3.101 Bus 24_1 + + + + + + 1 + e2c8bd5f-1292-18c8-4afa-6c3dcd9fa205 + MV3.101 Bus 31_2 + + + + + + 1 + f033757d-5443-808f-ec99-df930cd53c02 + MV3.101 Bus 38_2 + + + + + + 1 + ee13e771-f413-39a4-0cae-f26c3dc991ea + Cubicle_MV3.101 SGen 47 + + + + + + 1 + 53f8230c-d6e8-81d5-bbcb-44cec6830092 + Cubicle_MV3.101 SGen 62 + + + + + + 1 + edad674c-222c-51c1-2368-86ad82017cc9 + HV1 Bus 26_1 + + + + + + 1 + f02aa75a-2f65-9a12-ce4d-96d7cb3a6a37 + MV3.101 Bus 107_2 + + + + + + 1 + effac11e-7daa-d5f4-00d1-2b303b7263cd + Cubicle_MV3.101 MV Storage 86 + + + + + + 1 + eb9e60d4-793a-63c1-bdb8-e6930306c2aa + MV3.101 Bus 115_2 + + + + + + 1 + 4f0fd920-bc17-d741-cdc2-dc848fa08805 + Cubicle_MV3.101 MV Storage 50 + + + + + + 1 + f351d380-adba-f37c-6c87-1dac92ee7640 + Cubicle_MV3.101 SGen 96 + + + + + + 1 + ec278fd1-f75d-436a-7ffc-88b5187f9374 + Cubicle_MV3.101 SGen 25 + + + + + + 2 + 4d0cb209-22ed-a098-6de1-de0dbe6220e2 + MV3.101 Bus 59_1 + + + + + + 1 + ead0c11d-041a-e0e4-36e2-086896e6dbcc + MV3.101 busbar1A_2 + + + + + + 1 + 552a20d9-5f29-8a61-114c-218dbd3411af + Cubicle_MV3.101 MV Storage 28 + + + + + + 1 + ec11da23-a919-304a-685b-5186c5ac6d6a + Cubicle_MV3.101 MV Storage 34 + + + + + + 1 + 5177ffa7-f78d-57c6-bf33-814e83a0aebb + Cubicle_MV3.101 SGen 7 + + + + + + 1 + f3a192a2-e537-e212-d07f-257a485c79b9 + MV3.101 Bus 21_2 + + + + + + 1 + 4c32dc06-26fc-cdcf-28ac-ddf2edd810a3 + Cubicle_MV3.101 MV Storage 47 + + + + + + 1 + eb7ec44a-04ca-fd5a-c660-65be488df4ca + MV3.101 Bus 83_2 + + + + + + 1 + 5077b926-58b2-8b71-e0c5-9fce7df50664 + Cubicle_MV3.101 SGen 65 + + + + + + 2 + f0be6870-9c28-5746-f796-aec663759e63 + MV3.101 Bus 58_1 + + + + + + 1 + 4dce3fcb-e1a2-197e-6fa9-d8d451c7a817 + Cubicle_MV3.101 MV Storage 24 + + + + + + 2 + eb3d13c1-2d7e-b826-10fc-8d024cc99f93 + MV3.101 Bus 96_1 + + + + + + 1 + 4f14fd02-9716-e8d0-4dc7-c74255de0f3b + MV3.101 Bus 85_3 + + + + + + 1 + f0b185be-ba1f-98c9-7d2c-7b428fc7cef2 + Cubicle_MV3.101 MV Storage 120 + + + + + + 1 + 4abc4189-b38b-a529-683c-e4e79c403865 + MV3.101 Bus 26_2 + + + + + + 1 + eafa99af-6107-c071-3b10-45679aef4aff + Cubicle_MV3.101 MV Storage 128 + + + + + + 1 + 4c46194e-530c-3e07-9e85-0977417c8149 + Cubicle_MV3.101 SGen 92 + + + + + + 2 + 4f9c0aa8-8c16-248f-6468-7e212566a75b + MV3.101 Bus 92_1 + + + + + + 1 + f407b46b-8b76-fe81-3737-4fdc1b867c1b + Cubicle_MV3.101 SGen 77 + + + + + + 1 + eabec60d-606d-979c-335a-4d0b7a64b1db + Cubicle_MV3.101 SGen 20 + + + + + + 1 + 52198e84-cc3d-3507-a09b-b3f3eede126a + Cubicle_MV3.101 MV Storage 5 + + + + + + 2 + ecdc5aa9-5e2b-7df8-4201-219e1c69005e + MV3.101 Bus 81_1 + + + + + + 2 + 50a20b18-8aa8-94d1-51a5-0ed5dfba02a5 + MV3.101 Bus 89_1 + + + + + + 1 + 4e26d90a-e1f8-f0f2-e2ac-18e68110ed67 + MV3.101 Bus 48_2 + + + + + + 1 + efeed631-f4ee-6345-badc-dc842de9b51a + Cubicle_MV3.101 MV Storage 104 + + + + + + 1 + ebc0faf7-fc01-71a2-e88b-1eea06fb2c76 + Cubicle_MV3.101 MV Storage 6 + + + + + + 2 + ef6123cb-1c2b-734b-abe0-c0076dfa43a9 + MV3.101 Bus 14_1 + + + + + + 1 + 521b7282-05ec-2465-ada1-f519e187b460 + MV3.101 Bus 74_2 + + + + + + 1 + 5c75408c-79b8-0d04-4ef4-5db88e68b5ff + Cubicle_MV3.101 SGen 128 + + + + + + 1 + efd2e61d-14ed-0a40-5302-bfcef9395fed + MV3.101 Bus 123_2 + + + + + + 1 + 5cfc6a0b-b774-6037-e64c-9f553c3e78ac + Cubicle_MV3.101 MV Storage 31 + + + + + + 1 + 625596bf-26e8-d577-92b0-6b14ecdb2d51 + Cubicle_MV3.101 SGen 121 + + + + + + 1 + 5d27f329-5b02-c853-6b56-79bba11182c5 + Cubicle_MV3.101 SGen 90 + + + + + + 1 + ec034c8f-80b8-7b15-fba4-0384070851de + MV3.101 Bus 130_2 + + + + + + 1 + 56c46b9a-35cb-1042-9467-c352621ebf06 + MV3.101 Bus 108_2 + + + + + + 1 + 59ddc28d-1040-0dbc-70f1-2fe7cb7e1244 + Cubicle_MV3.101 SGen 51 + + + + + + 1 + 5e252f4c-4be9-7eb1-195b-901c3ac8b4a5 + Cubicle_MV3.101 SGen 26 + + + + + + 1 + ee3755d1-65d6-7927-eb97-82230d9cb39e + MV3.101 Bus 117_2 + + + + + + 1 + 5929303b-9988-31c6-8b5c-270cfe0fd064 + MV3.101 Bus 90_2 + + + + + + 2 + eae8bf41-ae54-7be1-6f9b-6e7127b98cff + MV3.101 Bus 99_1 + + + + + + 1 + ec71893a-1894-0b24-cd4b-3c7ef30b85a2 + MV3.101 busbar2B_1 + + + + + + 1 + 5a4dcab9-ca92-4285-7b7a-321996526b8e + Cubicle_MV3.101 MV Storage 91 + + + + + + 1 + 5b423404-d35b-02b1-6e03-8bd8ecfb9be5 + MV3.101 Bus 129_2 + + + + + + 2 + f6be7cea-e825-5794-fbdb-52ee3d8e4ff2 + MV3.101 Bus 79_1 + + + + + + 1 + fa34cb7f-e229-075a-cd96-8a6006cedfb6 + MV3.101 Bus 84_2 + + + + + + 1 + fb7ab1b9-2328-5d33-c61d-ce3431b812e2 + Cubicle_MV3.101 MV Storage 2 + + + + + + 1 + 5ce1d5c5-a335-a1f1-d8a8-a8bc7b3ad76d + Cubicle_MV3.101 MV Storage 82 + + + + + + 1 + 5d3649f8-338d-d563-ad8e-5bf4a82f5eef + MV3.101 busbar2A_MV3.101 node1 + + + + + + 2 + faf4fb9c-4dbe-0356-3335-8e66e300fc83 + MV3.101 Bus 54_1 + + + + + + 2 + 5796f54f-1622-3540-9f11-c60b04b8183f + MV3.101 Bus 101_1 + + + + + + 1 + 57f26f6b-f93a-4a6e-24ef-3e194a4f7bfd + Cubicle_MV3.101 MV Storage 39 + + + + + + 1 + 5dc4216f-29fa-b442-86bf-4d9cac41a527 + MV3.101 Bus 88_2 + + + + + + 1 + 5ff5c6df-4769-e09d-c545-b63be0412ba5 + Cubicle_MV3.101 MV Storage 93 + + + + + + 1 + fddfed37-c910-a7dd-4d2a-6bdfd231665d + MV3.101 Bus 127_2 + + + + + + 2 + fe377b24-18b0-5988-f91c-6730861b65fa + MV3.101 Bus 23_1 + + + + + + 2 + 5e75803e-d898-c17c-9d04-3c39a76eb877 + MV3.101 Bus 70_1 + + + + + + 2 + f62f7367-5e46-1709-6462-63a5d9df8b6d + MV3.101 Bus 83_1 + + + + + + 2 + 6006a2fd-ff7a-8385-d2b0-72463e08e880 + MV3.101 Bus 138_1 + + + + + + 1 + feca40e7-16e8-1edc-8143-3579218da502 + Cubicle_MV3.101 MV Storage 26 + + + + + + 2 + 60c3060a-f75f-c2ba-bb95-83f0fa4658ac + MV3.101 Bus 72_1 + + + + + + 2 + f8c6a4ae-208f-9a9f-5746-357f24da9ee4 + MV3.101 Bus 141_1 + + + + + + 1 + f9fcebca-6781-2671-4321-df570db95e62 + Cubicle_MV3.101 SGen 89 + + + + + + 2 + 60022443-7906-ea5d-823a-848184ab1c2d + MV3.101 Bus 123_1 + + + + + + 1 + f52dadf3-53b3-f635-eb91-4fb51a693654 + Cubicle_MV3.101 SGen 129 + + + + + + 2 + 5ebf562c-c528-61f5-3f75-8933e1643cdd + MV3.101 Bus 115_1 + + + + + + 1 + fa5957cd-5c42-5fd5-78da-447a4848709d + Cubicle_MV3.101 SGen 125 + + + + + + 1 + 572ede0e-22e2-0ccf-7788-5fa6a71c7510 + MV3.101 Bus 16_2 + + + + + + 1 + f514ae87-6a05-7d9b-16f6-b986610692b0 + Cubicle_MV3.101 MV Storage 111 + + + + + + 1 + fb294655-07c9-a829-e871-0411fcbcb4d8 + Cubicle_MV3.101 MV Storage 42 + + + + + + 1 + fbc1a15e-3adb-cfec-e11a-2aa3e1f67b54 + Cubicle_MV3.101 MV Storage 72 + + + + + + 1 + 58345b40-ff3d-a96f-5f5d-0542691382e7 + Cubicle_MV3.101 MV Storage 81 + + + + + + 1 + 6124ae12-71f5-8666-dce2-f48b3fa31db6 + Cubicle_MV3.101 MV Storage 16 + + + + + + 1 + f94d5312-2b2f-4aba-717d-6b4a8e1013b3 + Cubicle_MV3.101 SGen 74 + + + + + + 1 + 589bf9e9-f356-dd35-b293-1381354e8ad4 + Cubicle_MV3.101 MV Storage 63 + + + + + + 1 + 5d049c7c-c967-3aa4-f86b-5af77fb6b14a + MV3.101 Bus 109_2 + + + + + + 2 + 619fe5d1-dff6-c2d1-1048-65cb6f70af85 + MV3.101 Bus 37_1 + + + + + + 2 + 5a51f296-8d87-2217-9521-70a5896aedb3 + MV3.101 Bus 142_1 + + + + + + 1 + 62113284-a3bd-1eee-ad24-aeaf4e8a71cf + MV3.101 Bus 103_2 + + + + + + 1 + 5bb22438-ed7b-07f1-e6b4-513f590e7713 + MV3.101 Bus 81_2 + + + + + + 1 + 6abc5275-4eca-d998-7044-2cdd3a90c2c1 + Cubicle_MV3.101 MV Storage 107 + + + + + + 1 + 696da7b5-ca29-6467-d398-0ddc7c143459 + Cubicle_MV3.101 SGen 106 + + + + + + 1 + 6ae12780-467b-0ed4-b236-ba9553918f4d + MV3.101 Bus 125_2 + + + + + + 1 + 661a5ae9-9fb6-a305-ed90-ca3cb78eb17c + MV3.101 Bus 112_2 + + + + + + 2 + 6e16a0da-00e3-0511-743b-34e2efa5d610 + MV3.101 Bus 19_1 + + + + + + 2 + 6e98590b-2586-c0d5-fae8-0d80486f45db + MV3.101 Bus 135_2 + + + + + + 2 + 6774f972-6045-8a2b-ecc7-2ae7d12d107b + MV3.101 Bus 32_1 + + + + + + 2 + 67b59be0-1831-b720-9279-39acea193f94 + MV3.101 Bus 45_1 + + + + + + 2 + 62e534b9-d9bb-a25e-1838-7c819b6f14f9 + MV3.101 Bus 50_1 + + + + + + 2 + 631262ca-49bf-6f37-a7fd-af13a408732a + MV3.101 Bus 78_1 + + + + + + 1 + 6e1b6a10-a29e-e73e-732f-e26423e4eed7 + Cubicle_MV3.101 SGen 127 + + + + + + 1 + 6f2127d9-2e12-7a6f-0259-6694fe792550 + MV3.101 BS busbar1C_2 + + + + + + 2 + 6294a60e-ff31-25ab-9015-5a33ebd795c5 + MV3.101 Bus 68_1 + + + + + + 1 + 66284338-8e75-5139-b390-2c1cf896d3a9 + Cubicle_MV3.101 MV Storage 100 + + + + + + 2 + 6bda133e-6ace-df6b-2be3-a6cacb462cbf + MV3.101 Bus 127_1 + + + + + + 1 + 6f760755-28d3-2f21-fe2a-42c557cf2122 + Cubicle_MV3.101 SGen 79 + + + + + + 1 + 6d40eeee-7c12-aaf8-c664-c6960c09022f + Cubicle_MV3.101 SGen 19 + + + + + + 1 + 6be4a7cd-c583-d004-f46b-2ffc59b419e0 + Cubicle_MV3.101 SGen 18 + + + + + + 1 + 78fcbc1c-cad3-92ff-f0c4-d8c7ec60c7f6 + MV3.101 busbar1B_MV3.101 node2 + + + + + + 1 + 7a6872c5-f4f5-65b8-e437-5457bd3b7881 + Cubicle_MV3.101 SGen 48 + + + + + + 2 + 7a85f179-806a-2908-1860-e450dee1edfa + MV3.101 Bus 21_1 + + + + + + 1 + 709ae4ba-d916-e93d-407a-6b0c6c191227 + MV3.101 Bus 24_2 + + + + + + 1 + 7a8f1ed3-4d2c-b966-7d47-3cbd6f9b192a + Cubicle_MV3.101 MV Storage 127 + + + + + + 2 + 7009e443-496d-e780-eaab-eee30daa5c02 + MV3.101 Bus 29_1 + + + + + + 1 + 7afa1273-5023-4175-4a75-eb250327243e + MV3.101 Bus 67_3 + + + + + + 1 + 7b441529-d7a2-bc2a-f047-d670172e9905 + Cubicle_MV3.101 SGen 36 + + + + + + 2 + 758f1c57-ab13-972a-3cc4-5d0d071f2224 + MV3.101 node1_MV3.101 busbar1A + + + + + + 1 + 73b0011b-6895-3ee7-7595-9eb88011e51d + Cubicle_MV3.101 MV Storage 30 + + + + + + 1 + 74453759-fd32-e807-ca73-1095d79b9849 + Cubicle_MV3.101 MV Storage 51 + + + + + + 1 + 74b73927-5cdc-02f9-1aa1-ad084b18fbb1 + Cubicle_MV3.101 SGen 23 + + + + + + 1 + 72c406aa-941e-f89a-e9c9-4b9d913a62bb + Cubicle_MV3.101 MV Storage 60 + + + + + + 2 + 72e31efe-6f1b-3114-f4e4-e621fa3f0aa8 + MV3.101 Bus 68_3 + + + + + + 1 + 7724f13e-6acd-3924-fa87-d18e2d13925c + Cubicle_MV3.101 MV Storage 116 + + + + + + 1 + 79100914-c98f-d364-683d-a56837a2655b + MV3.101 Bus 137_2 + + + + + + 1 + 79a41143-2ca6-5bb2-1694-89b3f742cd62 + MV3.101 Bus 51_2 + + + + + + 1 + 729dfaa1-02f8-c914-68cd-e3875936aeb2 + Cubicle_MV3.101 MV Storage 121 + + + + + + 1 + 6fdb16f7-c337-d409-7667-1033e00228f8 + MV3.101 Bus 111_2 + + + + + + 1 + 71f96e96-edc4-78d9-1a09-7a32320224e3 + MV3.101 Bus 41_2 + + + + + + 1 + 7049e950-39c1-86fd-3fad-d4e2b43534a7 + MV3.101 busbar1B_2 + + + + + + 1 + 719f2b5f-63c3-d24e-b54f-16c659ca46d1 + MV3.101 Bus 11_2 + + + + + + 1 + 708384cb-c90a-c2c4-5ea5-df48b666ac92 + Cubicle_MV3.101 MV Storage 119 + + + + + + 2 + 74640d3f-7adc-0445-6138-5199d147b086 + MV3.101 Bus 90_1 + + + + + + 2 + 78b24674-3196-020a-1933-b9de61288962 + MV3.101 Bus 119_1 + + + + + + 2 + 7a1d47d2-6950-6f87-8536-dc2a84e5d8c1 + MV3.101 Bus 64_1 + + + + + + 2 + 70c35b5b-345b-2f58-6040-1a99ad0674a8 + MV3.101 Bus 126_1 + + + + + + 1 + 75165eca-aca4-0386-a412-7af941fe1613 + Cubicle_MV3.101 SGen 35 + + + + + + 2 + 742037f3-2622-b8c0-0237-206bbce78c26 + MV3.101 Bus 94_1 + + + + + + 1 + 7711bb4f-2f3b-bdc3-3696-3ac21f2cca2a + Cubicle_MV3.101 MV Storage 9 + + + + + + 1 + 789dfa92-d536-dc87-8786-fadd154cec2f + Cubicle_MV3.101 SGen 46 + + + + + + 2 + 7dc1d91a-34cf-fcef-ba62-a9cf5dd09061 + MV3.101 Bus 12_1 + + + + + + 1 + 7c3878ba-30ab-fde9-5de2-bff179af8a7c + MV3.101 Bus 25_2 + + + + + + 1 + 7bbc2c08-a072-6a6e-29c1-7a7b70975db5 + Cubicle_MV3.101 MV Storage 118 + + + + + + 1 + 7f5a4492-f628-1650-4b00-ae15ccef71fa + MV3.101 Bus 140_2 + + + + + + 1 + 8310887d-021f-33ae-9ccd-2cbdef83d633 + Cubicle_MV3.101 SGen 80 + + + + + + 1 + 83658c0c-1653-af60-7d75-89c07c4f15a5 + Cubicle_MV3.101 MV Storage 95 + + + + + + 1 + 8266266a-00ba-231b-6729-dc8ac4884fdd + Cubicle_MV3.101 SGen 124 + + + + + + 1 + 82c24c4c-e467-a8e7-e352-0b6169399ac2 + MV3.101 busbar2B_3 + + + + + + 1 + 842b691e-534f-c220-fe9b-78ec26471b16 + Cubicle_MV3.101 SGen 72 + + + + + + 2 + 8530d66c-3b7a-4930-f26b-db35d1d10759 + MV3.101 Bus 109_1 + + + + + + 1 + 85379848-4c28-5a02-da84-3cfb4959e86e + Cubicle_MV3.101 SGen 86 + + + + + + 1 + 8732f982-a57b-bf82-7793-614c181487be + MV3.101 BS busbar1C_1 + + + + + + 1 + 7c80b102-e9b7-78bc-1cd1-1de5f426877a + MV3.101 Bus 124_2 + + + + + + 2 + 806a7664-54cf-9102-e892-01b55d285997 + MV3.101 Bus 112_1 + + + + + + 1 + 87d1ac1b-db59-9631-5382-4a09e91d61a6 + MV3.101 Bus 33_2 + + + + + + 1 + 7f366279-fc9c-847a-d116-c25acb9254fb + Cubicle_MV3.101 SGen 14 + + + + + + 1 + 81e58b3f-9d63-7ace-b81e-d4e4486c4c91 + Cubicle_MV3.101 SGen 52 + + + + + + 1 + 86c2d9fc-c0c5-3fe2-fb2d-dc6d6668dc80 + MV3.101 Bus 105_2 + + + + + + 1 + 7eae793c-cd0d-ac0c-c443-09f6f1d5754c + MV3.101 busbar2A_1 + + + + + + 1 + 8297cb19-10e5-c9e6-0e2d-4aadf5b3f44c + MV3.101 Bus 110_2 + + + + + + 1 + 841f3746-5e53-cabf-81e3-f6592774695d + Cubicle_MV3.101 SGen 133 + + + + + + 2 + 8f8c3714-55a3-2ebe-14ac-4df1ab821b8e + MV3.101 node2 + + + + + + 2 + 908cb193-fe44-3a73-2a16-669019d9a925 + MV3.101 Bus 56_1 + + + + + + 1 + 92696597-d7c9-a888-1129-832a4182485f + MV3.101 busbar2B_2 + + + + + + 1 + 8b2991ca-6a98-d6a6-0600-f9eb734b10ee + MV3.101 Bus 32_2 + + + + + + + f850238c-f84f-4897-bdeb-771b7df05859 + MV3.101 Bus 57 + + + + 9419011d-c734-4215-8f34-1a3078929efa + MV3.101 Bus 139 + + + + 8ad2eb76-0d91-4e4e-8879-5e90719a3d66 + MV3.101 Bus 71 + + + + 8b651b2b-b9ad-4a66-a172-e780f899e3ec + MV3.101 Bus 69 + + + + 493809de-7e08-40ff-be99-47f53ce3f878 + MV3.101 Bus 108 + + + + 8eafe60f-b54d-4afe-8f95-cf99b45c7661 + MV3.101 Bus 96 + + + + 8ea3f854-e9d0-4bce-8ca5-72765ae6e0a4 + MV3.101 Bus 115 + + + + f9a540c7-6530-42e7-ba69-08471c52ba2e + MV3.101 Bus 34 + + + + 91f567cf-7015-44df-98d9-290cf8577fa4 + MV3.101 Bus 75 + + + + 88fb3857-642b-4385-b79f-413b9a22c113 + MV3.101 Bus 107 + + + + 8a8fe016-455c-4e83-9536-3b8ece50b1f2 + MV3.101 Bus 74 + + + + 05fc49b1-4624-4f62-8cfc-92ba254b4c2f + MV3.101 Bus 39 + + + + 01bf6446-353d-4bfd-9dde-c4013ae4908f + MV3.101 Bus 138 + + + + 99499d7e-14be-48a4-a73d-409dad804407 + MV3.101 Bus 41 + + + + 99829bfc-e0c0-4281-87b8-0638d4d596da + MV3.101 Bus 85 + + + + 98e941d7-e2a3-4221-b2d1-d2d2f678837e + MV3.101 Bus 17 + + + + 94ef1d6f-c935-454c-bbd7-7428f97e1967 + MV3.101 Bus 103 + + + + 05148239-d1a3-422e-b6e1-2c94587b1bb0 + MV3.101 Bus 12 + + + + 98dcb55f-0324-4f63-ab3c-7832f551c1e9 + MV3.101 Bus 109 + + + + 9929a35c-44bc-42cd-bee3-7fa097b38385 + MV3.101 Bus 110 + + + + 0eb36c8b-ad4a-4665-b58f-7514e0743ffa + MV3.101 Bus 25 + + + + 96be00af-612c-409a-9ee6-9f25173b7276 + MV3.101 Bus 88 + + + + 9b2cb1af-9c63-4bc6-8496-1461b2b368bd + MV3.101 Bus 28 + + + + 9db30325-f94d-4805-9f4b-46ec89ad2908 + MV3.101 Bus 81 + + + + 08854483-a14a-4c60-9580-b498bb808e63 + MV3.101 BS busbar1B + + + + 9fc00385-f75f-42ae-94a5-3213189f07cd + MV3.101 Bus 101 + + + + a3b19e75-095d-48d8-b3eb-97e584f61ace + MV3.101 Bus 46 + + + + 0dd37da7-4bab-4469-9fe3-6f856758d6c2 + MV3.101 Bus 120 + + + + 0f00fa13-830c-4ead-82fb-6dc4d43f7f56 + MV3.101 Bus 68 + + + + 083a20a8-0749-4dc5-9d67-61feb3b01a66 + MV3.101 Bus 23 + + + + 0ac3aef6-e7eb-4b1b-a756-20df24046052 + MV3.101 Bus 114 + + + + a3268f7b-ce16-47e7-bd5c-846bcb30bc32 + MV3.101 Bus 42 + + + + 100b2786-91d0-435a-8d07-6e66f8840a48 + MV3.101 Bus 141 + + + + a4169edc-4f74-4e6a-b281-39b3501be261 + MV3.101 Bus 89 + + + + a42054f8-4cd0-4413-961b-68c55408da72 + MV3.101 Bus 54 + + + + a1dd8fe8-853c-4687-808b-85785734f2d7 + MV3.101 Bus 119 + + + + 9ff7aa88-4227-4372-a4b6-3bce5e3b5375 + MV3.101 Bus 130 + + + + a394393e-e53c-4582-b6a4-ed44f0f3d303 + HV1 Bus 26_1 + + + + a60f0fae-5f99-484c-8e87-0f8a7df10af3 + MV3.101 Bus 53 + + + + a5ee946d-deca-4bc1-b650-35f63814155e + MV3.101 Bus 137 + + + + a72bbf9c-ca8c-4b6a-8fb4-da105abd820b + MV3.101 Bus 61 + + + + a057799b-5fe0-4fde-aa9e-0b7cef3dd98c + MV3.101 Bus 70 + + + + aafccde9-9868-4c9c-8aae-e96eac154c7f + MV3.101 Bus 19 + + + + 1b99a885-38ce-4320-bdf7-bf47d06425e4 + MV3.101 Bus 24 + + + + a859096f-f201-4c92-a431-a3c53379e127 + MV3.101 Bus 29 + + + + a94dde67-c5ab-48d6-8f58-6ee48e374917 + MV3.101 node2 + + + + ac4abc49-1649-466f-9336-1afde32eb18e + MV3.101 Bus 62 + + + + 13786f3b-0907-4a12-8f70-be134cc454cc + MV3.101 Bus 92 + + + + 1658c1f6-15f0-41e1-85a4-f100c4a9d5ae + HV1 Bus 25 + + + + bacb25bd-aed7-4d83-b7d9-adad69f3640a + MV3.101 Bus 63 + + + + bf30f9ad-836f-4922-be9c-c20780ff8766 + MV3.101 Bus 94 + + + + bb637b39-6e2c-40cc-81a4-c88c0bf6858f + MV3.101 Bus 38 + + + + 17d0bd8d-5774-4924-9dd6-db13fd44e437 + MV3.101 busbar2A + + + + 198f5e74-85b7-4d57-aad8-dc6061db7fda + MV3.101 Bus 133 + + + + bab55e0f-ec86-435e-b7e7-a8fb457ce5c6 + MV3.101 Bus 77 + + + + ba47c0c6-d29a-4909-bcc6-17334ebf95e3 + MV3.101 Bus 93 + + + + c005bdba-9e17-4736-91ea-6f0fa9d224f6 + MV3.101 Bus 15 + + + + 1f2f2ce0-31a4-4501-b2b4-3b500e889bc3 + HV1 Bus 25_1 + + + + ca187211-ddc3-491f-ab63-9342b429be25 + MV3.101 Bus 87 + + + + 20e4c2cb-e6ef-4f52-bb0b-30f2101d2a45 + MV3.101 Bus 13 + + + + 2394558f-c996-4dba-97bb-b2a993ff6f6a + MV3.101 Bus 72 + + + + 1f854102-0b31-43fc-b1f9-ab20b026df79 + MV3.101 Bus 66 + + + + 20b18083-b918-4a86-b48a-9837a1e57c3d + MV3.101 Bus 59 + + + + c3bc99b2-717f-4998-a319-fbd5f50b3c0e + MV3.101 Bus 142 + + + + 1d97b37b-63c2-4b9b-b699-c90a35d6b2b2 + MV3.101 BS busbar1A + + + + 1e3be0a0-2b67-4fbc-aef8-42a7cf41ae53 + MV3.101 Bus 95 + + + + 20e37a82-c74d-4e55-8428-133232a1b080 + MV3.101 Bus 90 + + + + c6cd3fbd-932d-4a90-b6db-8dda8c77376a + MV3.101 Bus 55 + + + + 25e10699-f9cf-48aa-9021-6c4efd5ebadf + MV3.101 Bus 56 + + + + 2a87f20e-a5f7-46c1-bd28-a7f511617cc7 + MV3.101 Bus 143 + + + + 2d609811-bd6b-479f-847e-62b279b15799 + MV3.101 Bus 129 + + + + 2a0fad9f-bce6-40da-a6a3-439b936327e0 + MV3.101 Bus 104 + + + + c0e13d93-d2fb-425c-bd2a-dd7aabb5b151 + MV3.101 Bus 22 + + + + 2d4da6a1-dd22-4bb8-b3d6-d1e566616a3c + MV3.101 Bus 76 + + + + 2a120d9a-b238-45d1-9211-d8e13775b300 + MV3.101 Bus 36 + + + + 2f6da21b-fe2c-48fa-b69b-857ffa003159 + MV3.101 node1 + + + + 30f2fc8b-dc4a-4c3b-92bf-7e937f533754 + MV3.101 Bus 65 + + + + 30f991b8-5e7f-451c-ae1d-6c5766cfaca1 + MV3.101 Bus 47 + + + + d42c837b-242d-4b46-a5c9-ff6b1b535994 + MV3.101 Bus 43 + + + + 2ab3daee-4c3e-4d47-bf33-267425641fb1 + MV3.101 Bus 106 + + + + d596185f-800c-4602-a2ac-372a7b670292 + MV3.101 BS busbar1C + + + + d1ca8b4f-b34f-4920-87ec-89558b26943b + MV3.101 Bus 48 + + + + d2ddc782-b15c-43c3-ab1d-dce619a6632c + HV1 Bus 26 + + + + 3a11123d-6f23-4592-bf45-a291e18d2e91 + MV3.101 Bus 84 + + + + 3d558efa-1400-4bf7-9c84-6f647b950138 + MV3.101 Bus 16 + + + + dbee21f7-48fa-4775-be96-b0c244dad683 + MV3.101 Bus 40 + + + + 3a8c8be0-a5d5-4c3e-afa3-f49ad03d5952 + MV3.101 Bus 20 + + + + deb849a9-523a-4893-b204-c081f291415a + MV3.101 Bus 45 + + + + d9297530-a740-4f1b-94d7-a98889d80cad + MV3.101 busbar1A + + + + 38e4dbc9-c8bb-4c6e-858b-9362ba073945 + MV3.101 Bus 78 + + + + dab46b6b-7a9e-407b-9313-7a88167a6e72 + MV3.101 Bus 91 + + + + 36807b95-dd41-49b6-bb9a-f54e1844cb1b + MV3.101 Bus 44 + + + + ddc0bc00-5914-4554-9dc3-d5adf531b51e + MV3.101 Bus 32 + + + + dbe86e42-89c7-4a9e-ab23-d4c7969ae622 + MV3.101 Bus 122 + + + + 469053b3-c972-4e80-823d-143e1f0d21db + MV3.101 Bus 49 + + + + 46e293d1-067e-4b3a-90e3-ca7126eaef94 + MV3.101 Bus 128 + + + + dab0c089-e8c6-4180-86ea-a134cce6dfc3 + MV3.101 Bus 102 + + + + deece471-37ad-4cf6-958c-27a76eaaf900 + MV3.101 Bus 27 + + + + e5e01892-57a7-4ac7-b611-e260e29e5294 + MV3.101 Bus 82 + + + + 48567f53-6bc4-4c3f-b768-2b609dccb4eb + MV3.101 Bus 37 + + + + e7e4a362-7ded-4e55-b3c4-90058eab52de + MV3.101 Bus 97 + + + + e8f3e0ea-ae0e-4aee-9321-1179b3c5df5d + MV3.101 Bus 121 + + + + e6eb554e-a499-474b-b7cd-60906fe882f4 + MV3.101 Bus 11 + + + + e8d3fd3d-b628-4b9c-9c72-a5538702b839 + MV3.101 Bus 26 + + + + e96916bc-3c5c-464f-808e-8cf0fd6af8e3 + MV3.101 Bus 100 + + + + e21e87dc-5b81-4caa-8990-35936b9828b8 + MV3.101 Bus 86 + + + + 52685ea1-8e94-480d-b652-3229a99265fe + MV3.101 Bus 113 + + + + 4c7e4de2-004a-40de-b457-e442fdecc544 + MV3.101 Bus 67 + + + + 4cf234a3-d7d0-41b6-9128-343f64a22edd + MV3.101 Bus 79 + + + + ea1b7d5f-c078-47a0-82f5-8c667c5bbe42 + MV3.101 Bus 58 + + + + eabb7d88-4945-4d1c-9594-01b06149afa4 + MV3.101 Bus 132 + + + + f18e8cf0-cd6e-46a0-ba80-4e2a74d960d2 + MV3.101 Bus 124 + + + + f0f29e04-7a02-4552-8e44-796e82a521fc + MV3.101 Bus 140 + + + + f223b98b-9fa9-411f-bc29-4b8ac596f469 + MV3.101 Bus 99 + + + + 51d44ca5-8fcf-4f39-bbba-c6753a9a5fc9 + MV3.101 Bus 98 + + + + eeb342f7-599b-4007-beda-c6c120869a7e + MV3.101 Bus 83 + + + + 4c7b3e60-9cc4-414d-937f-77cde7aa1b87 + MV3.101 Bus 73 + + + + f184c6eb-0413-4e65-8fc1-0974fb145da7 + MV3.101 Bus 80 + + + + f24b1f30-a37d-4dab-bcc4-02e032f5a426 + MV3.101 Bus 125 + + + + ee658230-42c4-48b3-a552-6bd8c85ae825 + MV3.101 Bus 135 + + + + 5727c59c-5686-4f80-ba0e-9a2075951c2e + MV3.101 Bus 64 + + + + f4cb2904-c462-4970-92e0-957588878bf3 + MV3.101 Bus 112 + + + + f3a12af4-d249-4473-b1e2-4be79c9fd09f + MV3.101 Bus 51 + + + + 5757b833-2dc6-4aad-bd6a-baeed16a08c3 + MV3.101 Bus 105 + + + + 5c312ef4-0dc6-4505-be0a-fcb5a64d2107 + MV3.101 Bus 123 + + + + 5c1d93eb-3f1e-4d2f-a873-e6e601b65eb5 + MV3.101 Bus 52 + + + + 57e9812d-8adf-4555-b53e-7b011d6822e3 + MV3.101 Bus 21 + + + + f59f8fd7-d0ed-448b-8fff-8229ec31113a + MV3.101 Bus 31 + + + + f7e7edbe-6da0-41ce-8e06-5f428bbe2e11 + MV3.101 Bus 35 + + + + 5abadde9-feca-4004-a41d-f8b3f46b58f0 + MV3.101 Bus 111 + + + + 6a85b34e-8c3a-40a3-bffa-2db0e2b3931a + MV3.101 Bus 117 + + + + 646289ac-d642-4555-bf82-2d7ee2d3c14e + MV3.101 Bus 127 + + + + 63c3a42f-485d-46fe-9018-a8a5e973c5f5 + MV3.101 Bus 134 + + + + 63063958-ef0f-49d3-b30e-12d95d551664 + MV3.101 Bus 60 + + + + 6e31ecd6-4293-4632-bd05-8dd831d48f1f + MV3.101 busbar2B + + + + 697d3134-684b-4bea-99c4-55451fe2d77d + MV3.101 busbar1B + + + + 723f0678-cc8a-44c6-a7a5-6e42d11d2b20 + MV3.101 Bus 18 + + + + 78b74d38-bee6-4cb1-9237-2ad48849aa73 + MV3.101 Bus 14 + + + + 7b476a15-4f7d-4188-8e77-6986db123157 + MV3.101 Bus 33 + + + + 7ecda507-933c-48ac-9f1e-9da76137d19c + MV3.101 Bus 136 + + + + 7f74da1d-ed25-4065-9d78-e5e3d7059dbf + MV3.101 Bus 126 + + + + 7be1a845-3cee-4db0-9b39-06ae853af02f + MV3.101 Bus 30 + + + + 81827045-e0d8-47fb-a232-617b1a3f663f + MV3.101 Bus 131 + + + + 7c3650d3-57bd-4fde-80ea-720b5d09efdd + MV3.101 Bus 50 + + + + 8a0319ae-a0a3-435a-b096-4c8099c94c52 + MV3.101 Bus 116 + + + + 8c1b77e0-9de9-4c53-a9c7-f4de788fe765 + MV3.101 Bus 118 + + + 9b06547c-12fa-8e54-92b1-fadbe466f554 + high limit for MV3.101 Bus 109 + + + 10.55 + + + 82a921e4-a89e-32e5-600b-bf817bafbdfd + high limit for MV3.101 Bus 17 + + + 10.55 + + + 6f7200c4-9be9-06c5-1829-600d04445323 + low limit for MV3.101 Bus 88 + + + 9.65 + + + a99d1c99-cb8e-d372-d2c9-03a58d423497 + high limit for MV3.101 Bus 110 + + + 10.55 + + + 19bbcf92-6bd7-6d06-c91e-944f473a0b6e + low limit for MV3.101 Bus 110 + + + 9.65 + + + 2d1ef18b-14e7-cb3d-06d4-7de217dac9aa + low limit for MV3.101 Bus 17 + + + 9.65 + + + af114445-f28a-0b0f-1425-54c71524f353 + high limit for MV3.101 Bus 41 + + + 10.55 + + + 8a929a02-5b88-6cdb-2184-47a2e98dbf30 + low limit for MV3.101 Bus 109 + + + 9.65 + + + 505f30fd-dd82-bdd5-c616-686d976ede5b + low limit for MV3.101 Bus 103 + + + 9.65 + + + 9ab6a83c-6011-1541-639c-3b7288663387 + low limit for MV3.101 Bus 41 + + + 9.65 + + + 2f323c50-3af9-2662-fcfd-59d3932bc08d + high limit for MV3.101 Bus 81 + + + 10.55 + + + e75528a7-7274-a292-5681-137cdde6564f + low limit for MV3.101 Bus 70 + + + 9.65 + + + 4e3e7958-f361-00d3-9fcc-7072941db481 + high limit for MV3.101 Bus 70 + + + 10.55 + + + 14ec198e-a82f-7c93-44c9-4873e727e7be + low limit for MV3.101 Bus 85 + + + 9.65 + + + 793be1eb-ef56-1b71-a53c-f1110f2ab862 + low limit for MV3.101 Bus 81 + + + 9.65 + + + a31f46d7-caea-2518-bd77-09ee71f343b4 + low limit for MV3.101 Bus 130 + + + 9.65 + + + b9946b41-4342-cab1-b116-42f309598134 + high limit for MV3.101 Bus 28 + + + 10.55 + + + 4c9b13a4-2928-bd17-5d23-5c27a3e58eae + low limit for MV3.101 Bus 28 + + + 9.65 + + + bf4f36ca-d17f-a535-66c1-cb10fb6c8198 + low limit for MV3.101 Bus 101 + + + 9.65 + + + bab20dce-2c59-ef2f-8edb-11b6e41b77d5 + high limit for MV3.101 Bus 130 + + + 10.55 + + + b747e665-9221-4ba6-1ad8-8ebbc005c293 + high limit for MV3.101 Bus 101 + + + 10.55 + + + d9ea9a75-8676-4771-0883-6ff7772ba640 + high limit for MV3.101 Bus 85 + + + 10.55 + + + 05a28e11-3b3b-b439-1f4e-efd3bb3a36cf + high limit for MV3.101 Bus 137 + + + 10.55 + + + 4820682a-5513-0273-d137-b0f340ae7c98 + low limit for MV3.101 Bus 137 + + + 9.65 + + + d7f0dd3d-43f1-a86a-fd4d-496c1f7362a5 + low limit for MV3.101 Bus 46 + + + 9.65 + + + 8c05daa9-97c9-6adc-4fb3-0a7cdb52272c + high limit for MV3.101 Bus 89 + + + 10.55 + + + b03f86b1-681f-57f2-8202-7c7d77ef2e28 + low limit for MV3.101 Bus 119 + + + 9.65 + + + 2f3c7b47-e064-6dd3-0ff9-e318ed2c13f2 + high limit for MV3.101 Bus 119 + + + 10.55 + + + a9c5cb8c-2ba9-0e0f-0749-ec89338eaf2b + high limit for MV3.101 Bus 42 + + + 10.55 + + + 4c2b26e1-ad18-540b-c0a6-18a2c7b56679 + low limit for MV3.101 Bus 89 + + + 9.65 + + + 716df6e0-b92e-4b5d-f069-9a80be1d2656 + high limit for MV3.101 Bus 54 + + + 10.55 + + + 122c046f-3512-10bf-4c31-1af43f50c469 + low limit for MV3.101 Bus 54 + + + 9.65 + + + c3a385d2-1208-e069-1e73-c3aabd1f1767 + low limit for MV3.101 Bus 42 + + + 9.65 + + + 51b3615f-4194-cbd6-43cf-b1fe1e91ca1c + high limit for MV3.101 Bus 46 + + + 10.55 + + + afca703a-6264-ba65-b31b-0b4e555bb0db + low limit for MV3.101 Bus 19 + + + 9.65 + + + 3756362c-04fa-f5d8-38f2-31a6c3544f42 + high limit for MV3.101 Bus 53 + + + 10.55 + + + dccf705b-329f-58b7-37b3-58a5e8cdd8fd + low limit for MV3.101 Bus 62 + + + 9.65 + + + 4e14cbf1-c2b2-4a68-8f72-04f7596ca729 + high limit for MV3.101 Bus 93 + + + 10.55 + + + ab82e5e6-0f75-6c62-0922-1909963aac0d + high limit for MV3.101 Bus 61 + + + 10.55 + + + fc37a282-5a1d-98d1-9206-8587963e1e32 + low limit for MV3.101 Bus 53 + + + 9.65 + + + ed54a94d-500c-a29d-dfe6-6e68d95d7138 + low limit for MV3.101 Bus 61 + + + 9.65 + + + b3e93cbb-6566-dc6c-fb14-4307bed0c765 + high limit for MV3.101 Bus 29 + + + 10.55 + + + 65dbadb1-41c5-1562-b0ae-5bb94199559a + high limit for MV3.101 Bus 19 + + + 10.55 + + + 3035d52d-85a2-8e0c-3da4-d74d40960b7c + high limit for MV3.101 Bus 62 + + + 10.55 + + + 8347ea73-ac40-37fd-dadd-1cbf6ffc2c58 + low limit for MV3.101 Bus 29 + + + 9.65 + + + 17c3c15e-e219-9381-ef53-5e0c2315d1ec + low limit for MV3.101 Bus 15 + + + 9.65 + + + ebcc2b7e-7380-c563-c948-a727444313fc + high limit for MV3.101 Bus 94 + + + 10.55 + + + 8f46a40c-a014-4798-c85c-540c9fe5b7dd + high limit for MV3.101 Bus 63 + + + 10.55 + + + 3097a0bc-5b35-5dae-8eb4-325eac27f12f + high limit for MV3.101 Bus 38 + + + 10.55 + + + 339f49b8-ab47-369a-05bf-da94c6435d9c + low limit for MV3.101 Bus 63 + + + 9.65 + + + 15f3920c-1b89-1ce5-92b2-e2608817ba36 + low limit for MV3.101 Bus 77 + + + 9.65 + + + df24bd69-03e9-22d2-6c2f-c688c0e7d68c + low limit for MV3.101 Bus 38 + + + 9.65 + + + 7471d44c-f383-8e8c-40d2-e803ab470826 + low limit for MV3.101 Bus 93 + + + 9.65 + + + e575b46d-5858-8aac-6a2a-95aeedb3da1c + high limit for MV3.101 Bus 15 + + + 10.55 + + + b713b194-f468-7a21-1340-3987b30a27a5 + low limit for MV3.101 Bus 94 + + + 9.65 + + + e62a5020-f3ad-b626-7531-50f04bbd1396 + high limit for MV3.101 Bus 77 + + + 10.55 + + + 96cbdfda-68ad-5d74-5754-7424ecb09a5e + low limit for MV3.101 Bus 87 + + + 9.65 + + + 499af853-0b79-9419-112b-952e63894d8c + high limit for HV1 Bus 26 + + + 121 + + + 6e2572f5-1e8e-00f2-6dc7-9b312017bc2f + high limit for MV3.101 Bus 22 + + + 10.55 + + + 3a7cc0f2-7c45-6eb2-c78a-fa701a24227b + low limit for HV1 Bus 26 + + + 99 + + + 05dd0646-35ef-7cee-3fc3-65e0cdce93e7 + low limit for MV3.101 Bus 142 + + + 9.65 + + + 1ddab489-0cc3-9a5e-c472-f906527b1b81 + high limit for MV3.101 Bus 87 + + + 10.55 + + + 3b1afaaa-4741-9477-9776-91918a08abd7 + low limit for MV3.101 Bus 55 + + + 9.65 + + + cf1839f0-40f3-e1ee-108c-887df0e86dad + high limit for MV3.101 Bus 48 + + + 10.55 + + + e0e8f9c7-7f14-7bfa-1845-026010117842 + low limit for MV3.101 Bus 48 + + + 9.65 + + + 94c42d52-9feb-2a71-cd84-8a02ce888051 + low limit for MV3.101 Bus 22 + + + 9.65 + + + f6853508-f9be-719a-f3c1-d357c164c932 + high limit for MV3.101 Bus 142 + + + 10.55 + + + 0b4b6e1f-3e98-9a7d-4995-9fb4f0344026 + high limit for MV3.101 Bus 55 + + + 10.55 + + + cb01bce7-35bf-c54a-0983-a3d17866de9d + low limit for MV3.101 Bus 91 + + + 9.65 + + + e4f8e8d1-d530-373b-1149-4258ccc33b57 + low limit for MV3.101 Bus 122 + + + 9.65 + + + 5565b696-1d2c-14ca-26dc-13b566cd97ae + high limit for MV3.101 busbar1A + + + 10.55 + + + 37e14be2-9cdb-3ecf-715d-ab0394d2f523 + low limit for MV3.101 Bus 43 + + + 9.65 + + + 25d193a9-3314-e1fd-6e57-40e359e16013 + low limit for MV3.101 Bus 102 + + + 9.65 + + + 68cf3556-caae-bb17-42c6-898a6e32c94c + high limit for MV3.101 Bus 43 + + + 10.55 + + + c2bbdc4d-c87e-072f-bc33-40138bc33bb9 + low limit for MV3.101 BS busbar1C + + + 9.65 + + + 3b46c403-b2d6-c041-7d74-88033d15ca75 + high limit for MV3.101 BS busbar1C + + + 10.55 + + + 5a9fb237-f1f1-2360-e70e-c4651fcfa86a + low limit for MV3.101 busbar1A + + + 9.65 + + + d75ddd32-c589-3477-5916-f90b6d7e3e9d + high limit for MV3.101 Bus 102 + + + 10.55 + + + 5fe5286c-8713-48cd-5bf2-16f3955fbe20 + high limit for MV3.101 Bus 91 + + + 10.55 + + + 2baf3e6b-acb4-50d5-f13e-331a8149dfa8 + high limit for MV3.101 Bus 122 + + + 10.55 + + + 1d6508aa-a3b8-41a4-a685-a6d075902091 + high limit for MV3.101 Bus 86 + + + 10.55 + + + f882a38e-6cb4-212b-8c76-aba346ed2146 + low limit for MV3.101 Bus 86 + + + 9.65 + + + c646a185-eabc-fa4b-4701-ccba6c0b5e9d + high limit for MV3.101 Bus 32 + + + 10.55 + + + 0756c90a-2cb4-4481-efa7-b3929b8c49de + low limit for MV3.101 Bus 40 + + + 9.65 + + + 8cd69db9-1e6f-688d-e1e8-c754e8102cb1 + high limit for MV3.101 Bus 82 + + + 10.55 + + + 665b2297-c12e-92ad-6bc2-fba6a4d04ca1 + low limit for MV3.101 Bus 82 + + + 9.65 + + + d1bec58b-1557-2a80-89c1-d30d0f88065c + high limit for MV3.101 Bus 27 + + + 10.55 + + + f6423488-9c56-617e-3d3e-a8c680688712 + low limit for MV3.101 Bus 32 + + + 9.65 + + + 1a8cce79-0076-27fe-90d5-39ac9d305ce6 + high limit for MV3.101 Bus 40 + + + 10.55 + + + 45f273a6-0019-0dc7-dee1-890e51bd52f5 + low limit for MV3.101 Bus 45 + + + 9.65 + + + 03b51c06-bbdc-de9e-85b2-ef72dbab5829 + high limit for MV3.101 Bus 45 + + + 10.55 + + + f3afc4f5-7e3d-64fc-80da-34da24f6d6c0 + low limit for MV3.101 Bus 27 + + + 9.65 + + + 7d46e357-739a-c385-2918-ec415cb17eb6 + low limit for MV3.101 Bus 26 + + + 9.65 + + + 92f045f8-3ff6-0e98-bd8a-fb1b6a307c2d + high limit for MV3.101 Bus 100 + + + 10.55 + + + 32b7ff7c-0ebb-a331-95a0-b1551ecf6214 + low limit for MV3.101 Bus 97 + + + 9.65 + + + 5fc2cae6-2140-8f00-28b2-db3b1e8ab9d3 + low limit for MV3.101 Bus 121 + + + 9.65 + + + 81deeb7a-05fa-d39f-ad1c-b40f109b0a31 + high limit for MV3.101 Bus 11 + + + 10.55 + + + 06d2f1d3-75f4-e651-eb4e-89589fd47a02 + low limit for MV3.101 Bus 11 + + + 9.65 + + + 32b47826-3b06-ec57-b688-950d012776e7 + low limit for MV3.101 Bus 100 + + + 9.65 + + + a1f5a778-6351-12ca-9d02-12b9bc7ad128 + high limit for MV3.101 Bus 58 + + + 10.55 + + + a4a3696e-c1d0-b762-a9fa-d943bd0a4617 + low limit for MV3.101 Bus 58 + + + 9.65 + + + af112c1f-5108-2d17-59c4-1c096d95f120 + high limit for MV3.101 Bus 97 + + + 10.55 + + + aabd08d1-3379-69f2-1089-6dc089209fb8 + high limit for MV3.101 Bus 121 + + + 10.55 + + + a0aec1d0-b882-0a86-7af6-552b399cee90 + high limit for MV3.101 Bus 26 + + + 10.55 + + + 7ed630e6-5983-7655-a554-02c8a82d9436 + high limit for MV3.101 Bus 140 + + + 10.55 + + + ded8fcbd-fd55-ddcc-6d61-96f46843f433 + low limit for MV3.101 Bus 80 + + + 9.65 + + + 83a20fbf-9af9-3538-b442-ea3e7dd36891 + low limit for MV3.101 Bus 135 + + + 9.65 + + + e7976699-228c-f48a-c87b-7a253a2a8b45 + low limit for MV3.101 Bus 140 + + + 9.65 + + + 5a48a5ba-49c3-b62e-a747-9e1a6dbaceb5 + low limit for MV3.101 Bus 132 + + + 9.65 + + + 7e8d77de-e3ba-3b0f-9fb6-9af7e7ea175e + high limit for MV3.101 Bus 80 + + + 10.55 + + + a4ea99b6-ea09-dc1a-5a18-24c0f5deda93 + high limit for MV3.101 Bus 83 + + + 10.55 + + + 6977890d-efe8-533d-fbba-4558e1481237 + high limit for MV3.101 Bus 135 + + + 10.55 + + + 45c99f8d-528a-75eb-af46-8777a6ed7b51 + low limit for MV3.101 Bus 83 + + + 9.65 + + + 726244fc-5122-1d7c-6a81-43ac654aff56 + high limit for MV3.101 Bus 132 + + + 10.55 + + + c7839b29-889a-8c70-86d7-37ee8777e68a + high limit for MV3.101 Bus 31 + + + 10.55 + + + 0df8b0b5-8ada-41c3-63f0-6b6a6f07be10 + low limit for MV3.101 Bus 31 + + + 9.65 + + + aacd5d27-bea6-8430-ba08-a65fdaf94f04 + low limit for MV3.101 Bus 124 + + + 9.65 + + + 31691e10-5eeb-80af-66a8-cc97a1393348 + low limit for MV3.101 Bus 51 + + + 9.65 + + + 898e9782-a8f0-b76e-43c1-3ccbe519c7df + high limit for MV3.101 Bus 51 + + + 10.55 + + + 91e6e67c-409c-3221-0d31-dc472dce6be9 + low limit for MV3.101 Bus 125 + + + 9.65 + + + 50c92aac-5dbf-619d-d1bf-94e3e6f383bf + high limit for MV3.101 Bus 112 + + + 10.55 + + + e6c7e9a9-917f-3078-d33c-4caad85c545f + low limit for MV3.101 Bus 112 + + + 9.65 + + + df87cc9d-874d-e649-65f7-fda1b094fed4 + high limit for MV3.101 Bus 125 + + + 10.55 + + + 6e63d03a-f1f8-3983-7bb1-0f8d3d57ccb2 + high limit for MV3.101 Bus 99 + + + 10.55 + + + d53d522e-22d5-c647-951d-0ed3bbf9f9fd + low limit for MV3.101 Bus 99 + + + 9.65 + + + 3d53142c-00db-e36f-40c6-40cdc746ad49 + high limit for MV3.101 Bus 124 + + + 10.55 + + + 7fd3c91d-6a57-737b-1eab-2b5fb99a58f5 + high limit for MV3.101 Bus 35 + + + 10.55 + + + b817fcac-2513-9baa-218e-bc220fed7a09 + low limit for MV3.101 Bus 57 + + + 9.65 + + + dc1f505f-e502-f113-c761-62cff854f049 + low limit for MV3.101 Bus 35 + + + 9.65 + + + 87bee9bd-ff04-930f-6b33-f4e7ffb67320 + high limit for MV3.101 Bus 138 + + + 10.55 + + + f7db3077-01b0-a9e5-6e46-529c75047fa5 + low limit for MV3.101 Bus 34 + + + 9.65 + + + 1d72edf5-0895-6363-8d72-f4bb906f1777 + low limit for MV3.101 Bus 138 + + + 9.65 + + + d4afc2da-0637-f7b1-9ca1-1bd3bec3a05d + high limit for MV3.101 Bus 34 + + + 10.55 + + + c17544d9-7ddf-2816-e101-9ecf745797b8 + high limit for MV3.101 Bus 57 + + + 10.55 + + + 86cb5b3d-6fae-279d-9d5a-201041d0d50e + low limit for MV3.101 Bus 23 + + + 9.65 + + + 0b6c4952-85b8-6c5a-ca6d-d3987903c472 + high limit for MV3.101 Bus 141 + + + 10.55 + + + 55fcfe6a-7b12-0b13-58d4-f68825a4fb1d + high limit for MV3.101 Bus 39 + + + 10.55 + + + ab7dc914-40da-456f-6932-2494ec8d8bf5 + low limit for MV3.101 Bus 141 + + + 9.65 + + + 9e84bf50-4ebe-d5ab-9000-a6821fba29df + high limit for MV3.101 Bus 23 + + + 10.55 + + + 64ec9d2d-0ae1-3276-f5a1-1a277e1b7ebf + high limit for MV3.101 Bus 12 + + + 10.55 + + + 32206a6b-a6eb-3292-92e9-e0e134645fed + low limit for MV3.101 Bus 39 + + + 9.65 + + + 6a946910-1ab6-5ed9-0da5-657efd0f0af8 + low limit for MV3.101 Bus 12 + + + 9.65 + + + 5b8bf26f-077f-9fc8-6444-e11e2418d447 + high limit for MV3.101 BS busbar1B + + + 10.55 + + + 536749ac-f272-86ca-6840-0e43bfd70448 + low limit for MV3.101 BS busbar1B + + + 9.65 + + + 798564b8-6137-389e-842d-38f864086c81 + low limit for MV3.101 Bus 68 + + + 9.65 + + + 1a4e2a4a-860a-b19d-0885-2e3bfc3d4d53 + high limit for MV3.101 Bus 120 + + + 10.55 + + + 829e7398-1576-e1b7-0379-cbbd2f90e42c + low limit for MV3.101 Bus 120 + + + 9.65 + + + 81b52a91-e643-b473-d0ba-c1c131ca6cea + high limit for MV3.101 Bus 92 + + + 10.55 + + + c6dab436-4d96-88ae-a743-0042fea95f57 + low limit for MV3.101 Bus 92 + + + 9.65 + + + 30030e50-a0e8-6af5-372d-37d58ae7f9b3 + high limit for MV3.101 Bus 68 + + + 10.55 + + + 69d5b75c-f740-f78b-f02c-083ae4ac0430 + low limit for MV3.101 Bus 25 + + + 9.65 + + + d77ce4d9-d628-9fda-d898-1b0bbd00ada3 + high limit for MV3.101 Bus 25 + + + 10.55 + + + 9114da2e-0800-3a1a-437c-120fffc4cde2 + high limit for MV3.101 Bus 114 + + + 10.55 + + + 5af4e9c5-39bb-23f6-1126-d14a760eec69 + low limit for MV3.101 Bus 114 + + + 9.65 + + + c81fffed-af99-4205-2a87-58ea3ea4fd51 + low limit for MV3.101 Bus 24 + + + 9.65 + + + a521ac6f-c5a8-6107-7e78-47578eb4868e + high limit for MV3.101 BS busbar1A + + + 10.55 + + + d7144a71-e42f-065b-da68-812c3c017cd9 + high limit for MV3.101 busbar2A + + + 10.55 + + + 1ad46e7d-7056-0599-4e19-0a905b39b3d9 + low limit for HV1 Bus 25 + + + 99 + + + ed1917e7-f5c9-64a6-7ef3-f0eb0d4a4a2f + low limit for MV3.101 Bus 133 + + + 9.65 + + + bd78eb14-9cf8-9fe9-38f6-981a16ef8a57 + low limit for MV3.101 Bus 95 + + + 9.65 + + + 70295e32-7a22-7dc9-5118-b45e4bbd873f + high limit for MV3.101 Bus 95 + + + 10.55 + + + c1510e10-ab2c-0775-8235-6e0a5a951653 + low limit for MV3.101 BS busbar1A + + + 9.65 + + + 6f4e07b7-ebb6-a25a-1157-8fdb02fd6adb + high limit for HV1 Bus 25 + + + 121 + + + d850430f-f8ec-9f1c-8039-988b7606b531 + high limit for MV3.101 Bus 133 + + + 10.55 + + + efcfcee3-3123-dc8e-ecbc-4514327b0d49 + low limit for MV3.101 busbar2A + + + 9.65 + + + 8afeef58-86b9-5521-5340-9db59a918942 + high limit for MV3.101 Bus 24 + + + 10.55 + + + 54656fca-b691-c6b8-04a5-bff1cdbf792d + high limit for MV3.101 Bus 56 + + + 10.55 + + + 417769d4-db11-0152-4c79-4a802374180d + low limit for MV3.101 Bus 56 + + + 9.65 + + + b29c2310-9c9c-2806-5e4c-cba7398bf843 + high limit for MV3.101 Bus 13 + + + 10.55 + + + 834bba3d-6276-ee63-1f5d-4f0a006b6f35 + low limit for MV3.101 Bus 13 + + + 9.65 + + + 55eda48e-88aa-8f87-2775-65257fa32ecb + high limit for MV3.101 Bus 90 + + + 10.55 + + + 8b2c6028-94bc-08d6-efd4-ed2b18d53fb7 + low limit for MV3.101 Bus 66 + + + 9.65 + + + f1d2f2f6-e438-be3d-a2f1-de0be660621b + high limit for MV3.101 Bus 59 + + + 10.55 + + + e9816e85-6374-a2ce-b67b-c71d582ae1cf + high limit for MV3.101 Bus 72 + + + 10.55 + + + 179fae4c-42c9-69a9-36ee-209c0bbfb718 + low limit for MV3.101 Bus 59 + + + 9.65 + + + 8286319a-0f1a-8250-f5a6-9ac57b266976 + low limit for MV3.101 Bus 90 + + + 9.65 + + + 1a8442ce-7376-d004-efda-493766b4156d + low limit for MV3.101 Bus 72 + + + 9.65 + + + fa1530de-8d99-4555-d0eb-e21ff6f47e19 + high limit for MV3.101 Bus 66 + + + 10.55 + + + 186efb24-597c-0b73-bf81-470dfd84efb3 + high limit for MV3.101 Bus 106 + + + 10.55 + + + 8d124882-8961-6a42-dbdc-f264fd3541f4 + low limit for MV3.101 Bus 76 + + + 9.65 + + + 024d7162-beb6-3206-c7d5-c39fbbab1d14 + low limit for MV3.101 Bus 104 + + + 9.65 + + + a06ebd41-4364-b449-7861-afe88e574391 + low limit for MV3.101 Bus 106 + + + 9.65 + + + 40ae48ac-d1e8-c02e-9c16-03701d6c9061 + low limit for MV3.101 Bus 143 + + + 9.65 + + + 90c297f5-fb86-e5fc-ba4e-0b00c8185f73 + high limit for MV3.101 Bus 76 + + + 10.55 + + + 111ad55f-2538-1a7a-4a73-24a90a0510cd + high limit for MV3.101 Bus 129 + + + 10.55 + + + 5110c003-58db-76c6-df93-1d130a1f2601 + high limit for MV3.101 Bus 143 + + + 10.55 + + + 406d495b-1e29-fc41-a5ee-1d7c837cbe61 + low limit for MV3.101 Bus 129 + + + 9.65 + + + f7a9317c-890b-eab7-1e19-94f91b1c033e + high limit for MV3.101 Bus 36 + + + 10.55 + + + 83b794bf-9cae-f5ea-a973-2c1089cb4721 + low limit for MV3.101 Bus 36 + + + 9.65 + + + 1d51e5b3-8ff1-895f-7bb3-14d15e06ca21 + high limit for MV3.101 Bus 104 + + + 10.55 + + + dd94e128-955d-1b16-be3f-4f2c8f7dd843 + high limit for MV3.101 Bus 20 + + + 10.55 + + + 5d80cbe7-b51e-6b1c-620a-543b6d36b49b + low limit for MV3.101 Bus 47 + + + 9.65 + + + ac60702b-030a-c790-872c-020e18e5a5e2 + high limit for MV3.101 Bus 78 + + + 10.55 + + + d2e74773-570d-3caa-a71f-e1352ccea0c7 + high limit for MV3.101 Bus 65 + + + 10.55 + + + b688d118-9f42-2528-6854-432c69a9d034 + high limit for MV3.101 Bus 44 + + + 10.55 + + + 9bfafeec-186b-259a-7632-d1a4410f152f + low limit for MV3.101 Bus 78 + + + 9.65 + + + c07fac83-f45f-4bdc-f4de-0226b63cb9ef + high limit for MV3.101 Bus 84 + + + 10.55 + + + da8790ff-706c-e2b8-4e01-33e2ddbd048f + low limit for MV3.101 Bus 44 + + + 9.65 + + + 4398e07e-0dde-e253-6b5f-ce0781c78af8 + low limit for MV3.101 Bus 65 + + + 9.65 + + + 3eb20f21-c752-ac9a-4b13-faf750436b58 + high limit for MV3.101 Bus 47 + + + 10.55 + + + 2fd05813-90f6-06b2-205b-388117cbfc1a + low limit for MV3.101 Bus 84 + + + 9.65 + + + 25919b80-a461-7636-efae-8ad08767d60a + high limit for MV3.101 Bus 16 + + + 10.55 + + + d57dd4d6-e383-b5f0-e32c-1c8e09063ee6 + low limit for MV3.101 Bus 49 + + + 9.65 + + + da163aef-5ecb-3ede-9639-57bdce767822 + low limit for MV3.101 Bus 108 + + + 9.65 + + + a1d80f74-eb88-7e9b-0cee-13d0866ee871 + low limit for MV3.101 Bus 16 + + + 9.65 + + + 3f445b42-5002-b8f0-ee99-980a1455c5fb + high limit for MV3.101 Bus 49 + + + 10.55 + + + 11c8dab9-2a07-4fbc-2044-ae9b579c3d2c + high limit for MV3.101 Bus 128 + + + 10.55 + + + 916902a2-9087-72e6-cf6a-f23012872793 + low limit for MV3.101 Bus 128 + + + 9.65 + + + 454af780-db18-1198-2d0e-88a318f1713a + high limit for MV3.101 Bus 37 + + + 10.55 + + + ee4fe061-2e73-c1e0-8bef-674c486152ad + low limit for MV3.101 Bus 37 + + + 9.65 + + + 0bb48d3b-f875-4c9b-5e1f-42927b66d6a8 + low limit for MV3.101 Bus 20 + + + 9.65 + + + b0f041f2-8b41-72f2-51f9-5f18aab67b00 + high limit for MV3.101 Bus 108 + + + 10.55 + + + a40e520d-bee9-3616-7862-113fbacf8a59 + high limit for MV3.101 Bus 73 + + + 10.55 + + + 6ca921fd-65c9-8a23-5840-363c4c2696ee + high limit for MV3.101 Bus 67 + + + 10.55 + + + 77f95408-e0cb-6cc3-270d-a833314cc0fd + low limit for MV3.101 Bus 79 + + + 9.65 + + + ae877719-9de5-29f0-3a13-2de21d0381a0 + high limit for MV3.101 Bus 64 + + + 10.55 + + + 87edcee0-5276-fe6b-93e0-4a84a4636d9d + high limit for MV3.101 Bus 98 + + + 10.55 + + + de0be2c5-3cb3-8316-6d1b-dfe31a69eafd + low limit for MV3.101 Bus 67 + + + 9.65 + + + 44e9a00c-624a-6470-76c4-48941e7799ad + high limit for MV3.101 Bus 79 + + + 10.55 + + + 6e1b194d-078e-c866-6ef7-6463a9e453ad + high limit for MV3.101 Bus 113 + + + 10.55 + + + 4ce52ca5-8da4-ae4a-389f-0aae24314e92 + low limit for MV3.101 Bus 113 + + + 9.65 + + + 2be635ff-975b-1799-3d61-261eeacf1eb6 + low limit for MV3.101 Bus 64 + + + 9.65 + + + ebddb1e6-476c-2eb0-655a-2a15966cc807 + low limit for MV3.101 Bus 73 + + + 9.65 + + + c484a470-8319-c88a-9399-aefb3d2dcd11 + low limit for MV3.101 Bus 98 + + + 9.65 + + + 434a8e48-d159-afa4-1c16-ae0df440b01a + low limit for MV3.101 Bus 52 + + + 9.65 + + + aca00b3a-579e-f9a2-e6fc-e43de0776939 + high limit for MV3.101 Bus 123 + + + 10.55 + + + 09c76f4c-2998-3628-547e-6c4cb4b08d31 + low limit for MV3.101 Bus 111 + + + 9.65 + + + d8f6aeb0-0f25-f1dc-63ae-dce1aaf213c1 + low limit for MV3.101 Bus 123 + + + 9.65 + + + 3e46b5c2-a182-eb73-0804-e9ff09c740a8 + high limit for MV3.101 Bus 111 + + + 10.55 + + + 01e27545-425e-19bd-47aa-ae20093240d7 + low limit for MV3.101 Bus 105 + + + 9.65 + + + 5a838147-91d5-50f2-3d22-ba88017b283d + high limit for MV3.101 Bus 60 + + + 10.55 + + + b510f5ac-56a3-0b83-e47c-a4b7313843d5 + low limit for MV3.101 Bus 60 + + + 9.65 + + + 31172334-529f-75f7-6d71-0e1f16ddcc9e + high limit for MV3.101 Bus 21 + + + 10.55 + + + b21fa059-f9d2-43cf-c495-098ec2b4f870 + high limit for MV3.101 Bus 52 + + + 10.55 + + + 48780771-a880-d0f9-c626-157132f283f8 + high limit for MV3.101 Bus 105 + + + 10.55 + + + fb9c435a-2d56-26fd-ca4f-cacedba6696a + low limit for MV3.101 Bus 21 + + + 9.65 + + + 5dc7cbef-5424-3416-8b1e-e996cb695d01 + high limit for MV3.101 Bus 18 + + + 10.55 + + + 9bd1adcf-6047-0110-3868-9b6769794115 + low limit for MV3.101 Bus 18 + + + 9.65 + + + 164d821b-42aa-eba8-2202-eb065681f817 + low limit for MV3.101 Bus 127 + + + 9.65 + + + 0a433165-94b0-f4ac-cb88-3fe8f0f2d791 + low limit for MV3.101 Bus 117 + + + 9.65 + + + 92792939-429d-05fe-b3c7-6619142f285a + high limit for MV3.101 Bus 134 + + + 10.55 + + + 7f45389a-6523-f953-55a3-ef77de166781 + high limit for MV3.101 busbar1B + + + 10.55 + + + 287f22ff-8e86-cc65-1f56-6dcbc607af5e + low limit for MV3.101 busbar1B + + + 9.65 + + + 930148ed-201a-a598-6aad-f4ac0a62b440 + high limit for MV3.101 Bus 127 + + + 10.55 + + + a36a2c17-5ed5-7fde-36f3-40313d5f5f59 + low limit for MV3.101 busbar2B + + + 9.65 + + + 236feeb7-21cf-533a-017e-42d31b280b57 + low limit for MV3.101 Bus 134 + + + 9.65 + + + 149ef251-c4b7-97ce-7c1e-5812e30a91e8 + high limit for MV3.101 Bus 117 + + + 10.55 + + + 02d035e7-7462-8c97-25c3-fd443e41ba0b + high limit for MV3.101 busbar2B + + + 10.55 + + + 9b43dac5-8332-378d-6c2e-b9b02e25fa77 + high limit for MV3.101 Bus 126 + + + 10.55 + + + b727d991-2908-93ba-7de4-552a5ada3b87 + low limit for MV3.101 Bus 126 + + + 9.65 + + + f43e65e1-0706-9440-0fed-e725872b9ba8 + high limit for MV3.101 Bus 33 + + + 10.55 + + + 1fd3038e-9872-6b53-b9c1-c02631deb551 + high limit for MV3.101 Bus 30 + + + 10.55 + + + dfaa0a10-f9c9-fe00-9a7e-0d7b55ae21c9 + high limit for MV3.101 Bus 136 + + + 10.55 + + + c345245d-1e49-da1b-9d99-81e49b55b9c5 + high limit for MV3.101 Bus 50 + + + 10.55 + + + f4981d76-ec39-0a59-b486-25fce300df22 + low limit for MV3.101 Bus 50 + + + 9.65 + + + f7d0d48e-b3bc-391b-1f22-e1ce7056ea4a + high limit for MV3.101 Bus 14 + + + 10.55 + + + 344c3442-f7f4-f66a-7d7e-654f67b81d3e + low limit for MV3.101 Bus 33 + + + 9.65 + + + 03012dbd-e966-d320-6ab6-1aeeccffa380 + low limit for MV3.101 Bus 14 + + + 9.65 + + + 377178c2-b6c2-c0be-ea56-6ff2918de221 + low limit for MV3.101 Bus 30 + + + 9.65 + + + b82d4ce4-d1b2-7803-c1f6-50c7da30a7d3 + low limit for MV3.101 Bus 136 + + + 9.65 + + + 9742ac43-7963-7e5b-9fdd-7da4b56c586c + high limit for MV3.101 Bus 74 + + + 10.55 + + + 02539e3e-0465-3bbf-d1f7-625ab7247f6f + low limit for MV3.101 Bus 74 + + + 9.65 + + + fbc98295-1899-23c0-40d1-70f00fac504b + low limit for MV3.101 Bus 131 + + + 9.65 + + + 92b0ce8e-5480-81d8-3c77-ac46c257f67e + high limit for MV3.101 Bus 107 + + + 10.55 + + + 6b5a48f5-620c-19f7-94c3-ab24e76e64b6 + low limit for MV3.101 Bus 116 + + + 9.65 + + + aa90ae91-69cd-0887-da04-96a23e2ea016 + low limit for MV3.101 Bus 107 + + + 9.65 + + + 206410b5-d6ca-7452-9ca4-6c63353fbd15 + high limit for MV3.101 Bus 71 + + + 10.55 + + + ad9304f0-48e9-515b-5abe-6098115b213b + low limit for MV3.101 Bus 71 + + + 9.65 + + + 8cb2834a-0a8c-3336-91d7-fed258ecd903 + high limit for MV3.101 Bus 131 + + + 10.55 + + + af34a658-77e4-a2ae-0213-b70915b35e4b + high limit for MV3.101 Bus 116 + + + 10.55 + + + edf800d0-6ff1-c4bc-137e-cf4f4f0f9743 + low limit for MV3.101 Bus 139 + + + 9.65 + + + ba92b9cf-3639-a543-7a30-54d199ef51be + high limit for MV3.101 Bus 139 + + + 10.55 + + + 3e845e53-e144-04ce-9b83-5a0067e0fc54 + low limit for MV3.101 Bus 75 + + + 9.65 + + + 01633d07-bc14-af3f-e310-4cce67df078c + high limit for MV3.101 Bus 96 + + + 10.55 + + + 6c58c995-bd78-967e-151a-42b1920bdf15 + low limit for MV3.101 Bus 69 + + + 9.65 + + + 0b024807-4a65-fe21-2873-41bad9c8eef5 + low limit for MV3.101 Bus 118 + + + 9.65 + + + e9e65c22-9f17-d3cd-9c0e-73eab73ab46b + high limit for MV3.101 Bus 118 + + + 10.55 + + + 88900b0c-eec0-ef07-8435-caf6035979ce + low limit for MV3.101 Bus 96 + + + 9.65 + + + fce8f8d9-b35c-beaa-a986-308a883f15fd + high limit for MV3.101 Bus 75 + + + 10.55 + + + c684aeb1-b6c9-a3c4-b992-c2257c11104b + high limit for MV3.101 Bus 69 + + + 10.55 + + + 104279ac-0943-ace1-e260-59e2b742fd0a + low limit for MV3.101 Bus 115 + + + 9.65 + + + 03d7e523-b539-6e37-38a8-8609750b5839 + high limit for MV3.101 Bus 115 + + + 10.55 + + + 167de0f7-2478-7065-387c-ef62e80ce5f1 + high limit for MV3.101 Bus 103 + + + 10.55 + + + 2ed849db-3f44-30f1-bbb5-aa54600f65a9 + high limit for MV3.101 Bus 88 + + + 10.55 + + + 0 + 6.03184e-5 + 0 + 0 + 0.04 + 0 + 80 + 0.03896 + 0 + + 0.4 + 8e44668f-3a15-4997-a608-5ed6fac228a2 + MV3.101 Line 16 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + fec8ad1e-3f39-4c1b-aedc-3efcbd2d05fa + MV3.101 Line 106 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + 49c03a3e-3ae4-42f5-8635-3445519c71b3 + MV3.101 Line 44 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + f59db258-a2d7-4650-b12a-9b2fd496c039 + MV3.101 Line 127 + + + 0 + 3.39292e-5 + 0 + 0 + 0.0156 + 0 + 80 + 0.01884 + 0 + + 0.2 + 4886bf39-a1f3-4894-b864-b9600b1d32e8 + MV3.101 BS-Feeder3_line + + + 0 + 9.04776e-6 + 0 + 0 + 0.01648 + 0 + 80 + 0.0088 + 0 + + 0.08 + 00d6d3e0-86bb-4d50-9a3e-f6098bb4e5b4 + MV3.101 Line 113 + + + 0 + 2.29588e-5 + 0 + 0 + 0.02898 + 0 + 80 + 0.0198 + 0 + + 0.18 + 8c51d17d-9a34-4943-988d-d00f3dbc71b1 + MV3.101 Line 120 + + + 0 + 1.47026e-5 + 0 + 0 + 0.02678 + 0 + 80 + 0.0143 + 0 + + 0.13 + 0527ac8c-38bb-4fef-be23-b75598e76250 + MV3.101 Line 125 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 05326d41-f37a-452b-9f5b-9a8b4758c9fd + MV3.101 Line 100 + + + 0 + 1.57583e-5 + 0 + 0 + 0.01342 + 0 + 80 + 0.01155 + 0 + + 0.11 + 03d1abc1-649f-4605-bf17-95722a483186 + MV3.101 Line 39 + + + 0 + 6.95549e-5 + 0 + 0 + 0.03198 + 0 + 80 + 0.038622 + 0 + + 0.41 + 96add4a0-c47c-4a70-9077-944a8c737048 + MV3.101 Line 30 + + + 0 + 1.52681e-5 + 0 + 0 + 0.00702 + 0 + 80 + 0.008478 + 0 + + 0.09 + 0f25e183-1368-43c6-ad46-19b7f20b3a7e + MV3.101 Line 15 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 0f356630-f14f-4923-af92-353810c5f3fd + MV3.101 Line 32 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 9b29f488-6093-4033-82ab-af7079c6b0e9 + MV3.101 Line 70 + + + 0 + 9.31171e-5 + 0 + 0 + 0.0793 + 0 + 80 + 0.06825 + 0 + + 0.65 + 118cce93-fa2e-44d3-937e-ddd4955ac012 + MV3.101 loop_line 2 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 07fd0aec-121a-499a-b63e-835c5cf096c1 + MV3.101 Line 87 + + + 0 + 7.65294e-5 + 0 + 0 + 0.0966 + 0 + 80 + 0.066 + 0 + + 0.6 + a2df1322-75e8-4924-913c-69a201200972 + MV3.101 loop_line 1 + + + 0 + 6.44655e-5 + 0 + 0 + 0.02964 + 0 + 80 + 0.035796 + 0 + + 0.38 + a4dcee7a-e60b-489c-9d64-59ca3753bd5e + MV3.101 Line 97 + + + 0 + 2.26194e-5 + 0 + 0 + 0.0412 + 0 + 80 + 0.022 + 0 + + 0.2 + 06fd1bf0-d73f-4789-acba-f2e38f107cdb + MV3.101 Line 117 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + a64cb6c1-d46e-4f42-bad1-fc50cabe48ee + MV3.101 Line 96 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + 0eb3c957-7cf0-4862-b070-6af9a9c0d8db + MV3.101 Line 73 + + + 0 + 4.29771e-5 + 0 + 0 + 0.0366 + 0 + 80 + 0.0315 + 0 + + 0.3 + 0dbf2ff0-d27b-4e06-abc3-9f841eb9c9c5 + MV3.101 Line 77 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 0f5cbd35-9238-41f9-918c-1e6013d9892b + MV3.101 Line 81 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + a14148c6-4ff2-4127-9348-952e0a2b473c + MV3.101 Line 49 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 11498a68-3887-439f-91ba-26f8cf25a636 + MV3.101 Line 34 + + + 0 + 7.30611e-5 + 0 + 0 + 0.06222 + 0 + 80 + 0.05355 + 0 + + 0.51 + b2e1339f-b00b-43fc-85c1-ac5518ce3b41 + MV3.101 loop_line 4 + + + 0 + 3.16672e-5 + 0 + 0 + 0.021 + 0 + 80 + 0.020454 + 0 + + 0.21 + abf0fc48-a389-4d6a-8b0e-e76a50e02cad + MV3.101 Line 59 + + + 0 + 2.43537e-5 + 0 + 0 + 0.02074 + 0 + 80 + 0.01785 + 0 + + 0.17 + ad4c71dd-967f-498c-8b69-f96c2fccbc79 + MV3.101 Line 108 + + + 0 + 3.05362e-5 + 0 + 0 + 0.05562 + 0 + 80 + 0.0297 + 0 + + 0.27 + 1853c7b4-61e1-4596-acbe-c08108875e4f + MV3.101 Line 112 + + + 0 + 0.000104049 + 0 + 0 + 0.069 + 0 + 80 + 0.067206 + 0 + + 0.69 + b1be2186-3c84-43c1-a860-729d57b93e7c + MV3.101 loop_line 9 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 1619102e-332c-4ec7-967b-ab42cf9b9b47 + MV3.101 Line 14 + + + 0 + 7.73588e-5 + 0 + 0 + 0.06588 + 0 + 80 + 0.0567 + 0 + + 0.54 + 1901d039-7430-4d58-8cb2-71be26923a41 + MV3.101 loop_line 5 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + be9e1c34-7b0c-4f12-8557-86e9056abbeb + MV3.101 Line 79 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + bf57767a-cabf-4210-ae07-3f8f0d8fe7ad + MV3.101 Line 21 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1b1a0bfb-8777-4623-a39b-0c22d180f334 + MV3.101 Line 6 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 161ce126-ca69-41df-b4ef-aa5eeef61978 + MV3.101 Line 55 + + + 0 + 2.11114e-5 + 0 + 0 + 0.014 + 0 + 80 + 0.013636 + 0 + + 0.14 + bb9f0b0c-f6f0-4f7b-b09c-9f0cab43c1e7 + MV3.101 Line 86 + + + 0 + 2.0056e-5 + 0 + 0 + 0.01708 + 0 + 80 + 0.0147 + 0 + + 0.14 + 18999834-b3d8-43f2-84c0-30aaab348a9b + MV3.101 Line 107 + + + 0 + 1.01788e-5 + 0 + 0 + 0.00468 + 0 + 80 + 0.005652 + 0 + + 0.06 + b9f18a1f-71d9-424d-819a-a1fe697ec02e + MV3.101 Line 3 + + + 0 + 2.04078e-5 + 0 + 0 + 0.02576 + 0 + 80 + 0.0176 + 0 + + 0.16 + 160c0a80-c883-425f-859b-1fc1860b182b + MV3.101 Line 115 + + + 0 + 3.06118e-5 + 0 + 0 + 0.03864 + 0 + 80 + 0.0264 + 0 + + 0.24 + bee7a922-84df-486d-85d2-0a464872a3e2 + MV3.101 Line 5 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 16e7a695-d706-4adc-9a43-01ff12272c70 + MV3.101 Line 46 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + 1e912a0d-8b8f-4f6b-bddc-f5b4cec8c94e + MV3.101 Line 72 + + + 0 + 2.80608e-5 + 0 + 0 + 0.03542 + 0 + 80 + 0.0242 + 0 + + 0.22 + b48506ab-7206-4131-a28f-e8fdf3e1a265 + MV3.101 Line 110 + + + 0 + 5.10196e-5 + 0 + 0 + 0.0644 + 0 + 80 + 0.044 + 0 + + 0.4 + 1e72292b-93fa-47d9-a13a-161bed6ef36f + MV3.101 Line 109 + + + 0 + 4.52388e-5 + 0 + 0 + 0.03 + 0 + 80 + 0.02922 + 0 + + 0.3 + ca86bfb5-7b75-40e1-a557-9ad6e0ceb1e0 + MV3.101 Line 18 + + + 0 + 5.73028e-5 + 0 + 0 + 0.0488 + 0 + 80 + 0.042 + 0 + + 0.4 + 202bdacf-d455-4104-8f9d-37330083f1af + MV3.101 Line 37 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + c2476bcf-77b4-4d15-900a-91cbeb6d79a5 + MV3.101 Line 94 + + + 0 + 2.71434e-5 + 0 + 0 + 0.01248 + 0 + 80 + 0.015072 + 0 + + 0.16 + c2c7f6e5-195b-4246-b460-a7e8c0336652 + MV3.101 Line 4 + + + 0 + 1.71908e-5 + 0 + 0 + 0.01464 + 0 + 80 + 0.0126 + 0 + + 0.12 + 25dbaa41-e625-45c1-b4d1-fdcc69d46c41 + MV3.101 Line 99 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + c4cfae68-b467-4a09-adce-e14ff6983cd2 + MV3.101 loop_line 10 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 2278df8a-1a52-4b58-832e-9aee56966950 + MV3.101 Line 63 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + c3555abb-1482-4092-833b-a766ec238379 + MV3.101 Line 22 + + + 0 + 2.29211e-5 + 0 + 0 + 0.01952 + 0 + 80 + 0.0168 + 0 + + 0.16 + 26b89e9c-1cf6-42c7-8334-ed6952ce6c10 + MV3.101 Line 88 + + + 0 + 3.43817e-5 + 0 + 0 + 0.02928 + 0 + 80 + 0.0252 + 0 + + 0.24 + c85c13e5-eec8-4d11-bd19-94a8a0d2fcd6 + MV3.101 Line 23 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + c0efc9c9-5d57-49a5-b55c-c81dce24fdc4 + MV3.101 Line 52 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + c47d64b4-3e10-48d2-8639-40e8dfed03ea + MV3.101 Line 45 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 306ff41b-8313-46b6-97bb-a51f567c8f3d + MV3.101 Line 25 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3075b911-f233-44c7-b8c6-67c2cd00238a + MV3.101 Line 71 + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + c128212b-6e7c-4449-b709-8b57755ff051 + MV3.101 loop_line 8 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + c125dd08-cb6f-49b7-9741-c0ff7767f3ed + MV3.101 Line 54 + + + 0 + 3.56257e-5 + 0 + 0 + 0.01638 + 0 + 80 + 0.019782 + 0 + + 0.21 + 29e058f5-a3db-4cba-8d97-54b068b7b78f + MV3.101 Line 13 + + + 0 + 3.6191e-5 + 0 + 0 + 0.024 + 0 + 80 + 0.023376 + 0 + + 0.24 + 2bbd71f9-2357-41f5-acd7-fce0f12a037b + MV3.101 Line 56 + + + 0 + 3.29491e-5 + 0 + 0 + 0.02806 + 0 + 80 + 0.02415 + 0 + + 0.23 + d1c5775f-55e2-4223-b8ed-4706bfbef0f5 + MV3.101 Line 105 + + + 0 + 5.87354e-5 + 0 + 0 + 0.05002 + 0 + 80 + 0.04305 + 0 + + 0.41 + 290f1aca-ff0b-457b-a95d-51e458d50a37 + MV3.101 Line 104 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + ccf930cd-6246-41cf-bcc7-261e8e044c37 + MV3.101 Line 75 + + + 0 + 5.58702e-5 + 0 + 0 + 0.04758 + 0 + 80 + 0.04095 + 0 + + 0.39 + 325de2d8-b070-44fa-9ee5-5c694d7319a2 + MV3.101 loop_line 7 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + 28091a55-6ec4-4225-b5d8-b296c7cda4c1 + MV3.101 Line 57 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 2dcb56b7-d753-4f48-86c1-ba352371e7dc + MV3.101 Line 85 + + + 0 + 5.27786e-5 + 0 + 0 + 0.035 + 0 + 80 + 0.03409 + 0 + + 0.35 + ccef1487-fac6-4348-bc5a-79c23d5844a0 + MV3.101 Line 42 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + d14ecf82-e719-43a7-bf87-404a052dd2aa + MV3.101 Line 119 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + d57a1212-f877-4c47-ae6c-5b54021af043 + MV3.101 Line 12 + + + 0 + 1.91324e-5 + 0 + 0 + 0.02415 + 0 + 80 + 0.0165 + 0 + + 0.15 + 38aeb869-7ccc-40e6-a4eb-a87d1121ef88 + MV3.101 Line 116 + + + 0 + 4.58422e-5 + 0 + 0 + 0.03904 + 0 + 80 + 0.0336 + 0 + + 0.32 + 3c83d204-dc2d-4a9e-9456-8bf505ad6578 + MV3.101 Line 82 + + + 0 + 3.82647e-5 + 0 + 0 + 0.0483 + 0 + 80 + 0.033 + 0 + + 0.3 + 3df399c5-7a04-4bc1-ad89-9abc28b124cb + MV3.101 Line 121 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + d7f6a330-f420-4391-9d99-887f79c74aed + MV3.101 Line 102 + + + 0 + 4.58044e-5 + 0 + 0 + 0.02106 + 0 + 80 + 0.025434 + 0 + + 0.27 + dd01385f-87d5-4d7e-a97c-e3542963f6fd + MV3.101 Line 98 + + + 0 + 2.2054e-5 + 0 + 0 + 0.01014 + 0 + 80 + 0.012246 + 0 + + 0.13 + dba77fd1-aaf8-4065-a32f-054807a9f626 + MV3.101 Line 76 + + + 0 + 4.82547e-5 + 0 + 0 + 0.032 + 0 + 80 + 0.031168 + 0 + + 0.32 + df0fd72c-cbee-41f7-81af-700cd564354e + MV3.101 Line 58 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + dfd599da-89b6-4aa9-8b51-b0fba34dee55 + MV3.101 Line 131 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + e11544c7-2d6f-4bce-8e80-a85e7dc44149 + MV3.101 Line 95 + + + 0 + 6.01679e-5 + 0 + 0 + 0.05124 + 0 + 80 + 0.0441 + 0 + + 0.42 + 3622f0ce-0914-4214-8ff3-87c9c3b4255c + MV3.101 Line 89 + + + 0 + 4.08157e-5 + 0 + 0 + 0.05152 + 0 + 80 + 0.0352 + 0 + + 0.32 + 383208d7-6750-4f2a-82f6-879a29343b75 + MV3.101 loop_line 6 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + db4fcec7-1ea6-44f3-bb14-f7ada6a1a364 + MV3.101 Line 27 + + + 0 + 1.86234e-5 + 0 + 0 + 0.01586 + 0 + 80 + 0.01365 + 0 + + 0.13 + 337bc4a3-850c-4691-9e23-dbf3d10ad992 + MV3.101 Line 78 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + dadbb088-9ed3-4a51-be5c-d7f5e2564059 + MV3.101 Line 132 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 418eb5bd-6a85-410a-9a1f-0e915ad69682 + MV3.101 Line 26 + + + 0 + 6.33343e-5 + 0 + 0 + 0.042 + 0 + 80 + 0.040908 + 0 + + 0.42 + db791626-9bc3-470d-81d0-6f9a7c4ce3a5 + MV3.101 Line 61 + + + 0 + 5.76796e-5 + 0 + 0 + 0.02652 + 0 + 80 + 0.032028 + 0 + + 0.34 + d78fe5ad-7365-4f56-9740-79be4d72ff78 + MV3.101 loop_line 11 + + + 0 + 2.60123e-5 + 0 + 0 + 0.04738 + 0 + 80 + 0.0253 + 0 + + 0.23 + e59be798-a2f0-409f-9717-afc06aa21b55 + MV3.101 Line 124 + + + 0 + 3.46831e-5 + 0 + 0 + 0.023 + 0 + 80 + 0.022402 + 0 + + 0.23 + 40dae9aa-d2c7-4596-8d66-97e4cd87eede + MV3.101 Line 10 + + + 0 + 3.73221e-5 + 0 + 0 + 0.01716 + 0 + 80 + 0.020724 + 0 + + 0.22 + e17c3f71-33fc-49e7-94a1-cdf1bb8a7a4d + MV3.101 Line 1 + + + 0 + 4.0112e-5 + 0 + 0 + 0.03416 + 0 + 80 + 0.0294 + 0 + + 0.28 + e5717912-49e2-4c33-9909-ee6104d9732f + MV3.101 Line 101 + + + 0 + 1.35717e-5 + 0 + 0 + 0.00624 + 0 + 80 + 0.007536 + 0 + + 0.08 + 3f499bf7-ebb5-4c3e-84ee-1806c787f8ae + MV3.101 Line 67 + + + 0 + 3.58143e-5 + 0 + 0 + 0.0305 + 0 + 80 + 0.02625 + 0 + + 0.25 + 42d66142-0c55-482e-a999-25c4f3c1dccc + MV3.101 loop_line 3 + + + 0 + 3.95402e-5 + 0 + 0 + 0.04991 + 0 + 80 + 0.0341 + 0 + + 0.31 + 417ecd67-e648-42a3-ab41-286013a9404d + MV3.101 Line 133 + + + 0 + 1.13097e-5 + 0 + 0 + 0.0206 + 0 + 80 + 0.011 + 0 + + 0.1 + 433c94bd-0e2a-4f67-8777-bdeb9dd8f69e + MV3.101 Line 111 + + + 0 + 3.15165e-5 + 0 + 0 + 0.02684 + 0 + 80 + 0.0231 + 0 + + 0.22 + ea0336c5-c716-4662-b14d-c31d5b4c7dd3 + MV3.101 Line 24 + + + 0 + 4.22229e-5 + 0 + 0 + 0.028 + 0 + 80 + 0.027272 + 0 + + 0.28 + 5045533f-6463-4be2-89a9-d322834fc215 + MV3.101 Line 17 + + + 0 + 1.96035e-5 + 0 + 0 + 0.013 + 0 + 80 + 0.012662 + 0 + + 0.13 + e28e48b0-9a45-40ff-a048-9bdea00db61c + MV3.101 Line 11 + + + 0 + 1.28931e-5 + 0 + 0 + 0.01098 + 0 + 80 + 0.00945 + 0 + + 0.09 + e734548e-26d7-4242-b25e-f83a696b36e3 + MV3.101 Line 40 + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 4bb5cfc8-0f97-43d9-b42b-b9337720eb0b + MV3.101 Line 64 + + + 0 + 2.54469e-5 + 0 + 0 + 0.0117 + 0 + 80 + 0.01413 + 0 + + 0.15 + e4bab5c0-7da9-46c0-9677-86dea0175eae + MV3.101 Line 68 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + e8af0ec2-1712-4f2b-be5d-14b01305dcf6 + MV3.101 Line 122 + + + 0 + 2.26194e-5 + 0 + 0 + 0.015 + 0 + 80 + 0.01461 + 0 + + 0.15 + e38b55fa-db81-4447-b054-15d100b76d05 + MV3.101 Line 8 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 528a73fd-574c-4924-b175-fdd0953ed90c + MV3.101 Line 90 + + + 0 + 4.46422e-5 + 0 + 0 + 0.05635 + 0 + 80 + 0.0385 + 0 + + 0.35 + 51fe2fbf-bece-4e0d-9ba8-a2a06664dbb5 + MV3.101 Line 129 + + + 0 + 3.86794e-5 + 0 + 0 + 0.03294 + 0 + 80 + 0.02835 + 0 + + 0.27 + 5099bbc8-530f-4986-a400-84e327e6abcb + MV3.101 Line 33 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 5096a397-bcf7-42c2-b1b8-34636f1c17b4 + MV3.101 Line 9 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 4ead5e53-a4dc-464b-bc1f-142ed7fb47d7 + MV3.101 Line 19 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + f391ebbe-2777-4e34-a0fc-163177e81fc2 + MV3.101 Line 50 + + + 0 + 6.18264e-5 + 0 + 0 + 0.041 + 0 + 80 + 0.039934 + 0 + + 0.41 + 5d81ff25-da65-4c08-9bff-60adc7eacd34 + MV3.101 Line 60 + + + 0 + 4.15445e-5 + 0 + 0 + 0.03538 + 0 + 80 + 0.03045 + 0 + + 0.29 + f8c4c93e-2f5d-48dc-a09f-7f74d7267ff4 + MV3.101 Line 48 + + + 0 + 1.43257e-5 + 0 + 0 + 0.0122 + 0 + 80 + 0.0105 + 0 + + 0.1 + fd18150d-e044-46d8-a853-64f53e717d39 + MV3.101 Line 31 + + + 0 + 4.75007e-5 + 0 + 0 + 0.08652 + 0 + 80 + 0.0462 + 0 + + 0.42 + 5c9fddda-d1c2-46b9-97e5-cd0ce5b1768c + MV3.101 Line 123 + + + 0 + 5.44377e-5 + 0 + 0 + 0.04636 + 0 + 80 + 0.0399 + 0 + + 0.38 + 6015925c-9d52-443d-90d6-73312ac28f6d + MV3.101 Line 92 + + + 0 + 3.0084e-5 + 0 + 0 + 0.02562 + 0 + 80 + 0.02205 + 0 + + 0.21 + fa7b5dfa-ce1a-4842-b772-444e4ce0741a + MV3.101 Line 91 + + + 0 + 6.16005e-5 + 0 + 0 + 0.05246 + 0 + 80 + 0.04515 + 0 + + 0.43 + 61e6a456-a2af-453f-9a65-7631f9962b00 + MV3.101 Line 83 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 685325eb-a5fc-4245-a5a0-1b2c036612cf + MV3.101 Line 74 + + + 0 + 2.14886e-5 + 0 + 0 + 0.0183 + 0 + 80 + 0.01575 + 0 + + 0.15 + 65ad9953-8ecd-4156-a6b2-755c453e3868 + MV3.101 Line 36 + + + 0 + 2.03575e-5 + 0 + 0 + 0.00936 + 0 + 80 + 0.011304 + 0 + + 0.12 + 6959c6b0-3a55-4f94-9ebf-0e223b3ed035 + MV3.101 Line 28 + + + 0 + 1.65814e-5 + 0 + 0 + 0.02093 + 0 + 80 + 0.0143 + 0 + + 0.13 + 6d537852-3bb0-480f-93f0-fccebcae6f6a + MV3.101 Line 7 + + + 0 + 3.22327e-5 + 0 + 0 + 0.01482 + 0 + 80 + 0.017898 + 0 + + 0.19 + 64f12259-364f-4309-8d13-ad2ee93c4941 + MV3.101 Line 69 + + + 0 + 6.78584e-5 + 0 + 0 + 0.0312 + 0 + 80 + 0.03768 + 0 + + 0.4 + 6a732427-2430-442a-b04f-b84f04c95a67 + MV3.101 Line 51 + + + 0 + 3.16672e-5 + 0 + 0 + 0.05768 + 0 + 80 + 0.0308 + 0 + + 0.28 + 6be3304c-f474-431a-9e34-17328ca655c1 + MV3.101 Line 118 + + + 0 + 1.02039e-5 + 0 + 0 + 0.01288 + 0 + 80 + 0.0088 + 0 + + 0.08 + 6d63bfd2-0008-4b77-8b14-e114e16109aa + MV3.101 Line 126 + + + 0 + 2.56353e-5 + 0 + 0 + 0.017 + 0 + 80 + 0.016558 + 0 + + 0.17 + 6ebf9c42-bc57-4772-a34d-d02a23966f02 + MV3.101 Line 20 + + + 0 + 1.14794e-5 + 0 + 0 + 0.01449 + 0 + 80 + 0.0099 + 0 + + 0.09 + 77028944-16e2-4bcd-96dd-11785ca60170 + MV3.101 Line 130 + + + 0 + 1.80955e-5 + 0 + 0 + 0.03296 + 0 + 80 + 0.0176 + 0 + + 0.16 + 7b2c1a05-06c7-4b40-a323-7fa096029d20 + MV3.101 Line 114 + + + 0 + 4.0715e-5 + 0 + 0 + 0.01872 + 0 + 80 + 0.022608 + 0 + + 0.24 + 71756910-5ed7-4312-b060-bc27c5be1aaf + MV3.101 Line 2 + + + 0 + 5.73025e-5 + 0 + 0 + 0.038 + 0 + 80 + 0.037012 + 0 + + 0.38 + 7197bbb6-2fcb-40ec-bc49-f871c6d42659 + MV3.101 Line 84 + + + 0 + 5.12706e-5 + 0 + 0 + 0.034 + 0 + 80 + 0.033116 + 0 + + 0.34 + 71f546df-b8f7-4430-aadc-0663802fc845 + MV3.101 Line 53 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 70ef17ff-9e17-4ff0-836c-1bcb0b61f3d3 + MV3.101 Line 93 + + + 0 + 3.72468e-5 + 0 + 0 + 0.03172 + 0 + 80 + 0.0273 + 0 + + 0.26 + 75db16e4-2bc3-4144-8e47-9a571f215e87 + MV3.101 Line 35 + + + 0 + 2.57863e-5 + 0 + 0 + 0.02196 + 0 + 80 + 0.0189 + 0 + + 0.18 + 73bd388c-11e3-460f-9f85-ac2c4ec21442 + MV3.101 Line 103 + + + 0 + 3.01592e-5 + 0 + 0 + 0.02 + 0 + 80 + 0.01948 + 0 + + 0.2 + 81f6eb74-6325-4206-b9fc-62cebe7b9307 + MV3.101 Line 62 + + + 0 + 1.65876e-5 + 0 + 0 + 0.011 + 0 + 80 + 0.010714 + 0 + + 0.11 + 7fafe799-e1b2-453e-a860-b475f7e3ee14 + MV3.101 Line 41 + + + 0 + 1.27549e-5 + 0 + 0 + 0.0161 + 0 + 80 + 0.011 + 0 + + 0.1 + 7d7f4add-80d3-46c4-95f1-589385a567e6 + MV3.101 Line 128 + + + 0 + 5.01399e-5 + 0 + 0 + 0.0427 + 0 + 80 + 0.03675 + 0 + + 0.35 + 8043ad13-462b-4693-94a0-38a6f452d0d2 + MV3.101 Line 80 + + + 0 + 4.07149e-5 + 0 + 0 + 0.027 + 0 + 80 + 0.026298 + 0 + + 0.27 + 80dbc165-e7fa-45c9-b700-486d0a967f31 + MV3.101 Line 65 + + + 0 + 5.93761e-5 + 0 + 0 + 0.0273 + 0 + 80 + 0.03297 + 0 + + 0.35 + 84fe5e3a-2325-4593-b14b-ae07922e9fc1 + MV3.101 Line 29 + + + 0 + 2.72188e-5 + 0 + 0 + 0.02318 + 0 + 80 + 0.01995 + 0 + + 0.19 + 80b0d932-279e-4399-af25-03eea5bb4162 + MV3.101 Line 38 + + + 0 + 5.08938e-5 + 0 + 0 + 0.0234 + 0 + 80 + 0.02826 + 0 + + 0.3 + 7cf0d319-8bcf-459f-9adc-0acd7684de1e + MV3.101 BS-Feeder4_line + + + 0 + 3.31751e-5 + 0 + 0 + 0.022 + 0 + 80 + 0.021428 + 0 + + 0.22 + 7c3503e8-dbe4-4eed-8095-8b30e5e883b6 + MV3.101 Line 43 + + + 0 + 3.9207e-5 + 0 + 0 + 0.026 + 0 + 80 + 0.025324 + 0 + + 0.26 + 85541da1-3ab1-440f-82c0-ff0f8177d93b + MV3.101 Line 66 + + + 0 + 0.000133229 + 0 + 0 + 0.11346 + 0 + 80 + 0.09765 + 0 + + 0.93 + 9174d043-2b17-4ff0-86b2-cf3865df432b + MV3.101 Reserve line + + + 0 + 4.72748e-5 + 0 + 0 + 0.04026 + 0 + 80 + 0.03465 + 0 + + 0.33 + 897da234-091f-45ed-9534-eef4b0a6d5cf + MV3.101 Line 47 + + + 86d16297-3c13-8bde-5a28-f06b13fd90ad + G0-A + true + 2 + 2 + + + 7feffc53-3796-439f-4b9e-61878965a0fd + G0-M + true + 2 + 2 + + + c03325c5-14ac-bc27-7149-4457eb2a95e5 + G3-H + true + 2 + 2 + + + d9927a02-2ec6-1bad-9b9e-ee70b6c8e483 + WB-H + true + 2 + 2 + + + 05f2cd73-68a8-5838-eb64-0c9fa161309c + lv_semiurb5 + true + 2 + 2 + + + a1e3eb3e-fef5-521b-0b67-9e1493d8e478 + BL-H + true + 2 + 2 + + + ae730329-c63c-a155-8d12-d5ad6e0da4b4 + G4-M + true + 2 + 2 + + + aeb59b4a-e86f-e50c-128e-742bc5ee3eed + lv_semiurb4 + true + 2 + 2 + + + e5f04ee7-443f-cd0b-25ce-3fca38747430 + lv_urban6 + true + 2 + 2 + + + 2c1b9559-8fc1-c1b7-1fc1-1d13de7cc64a + lv_rural3 + true + 2 + 2 + + + + 0150e4d6-88b2-41aa-aa93-42154fc0bbe7 + HV1-MV3.101-Trafo2 + false + false + + + + c214c8e3-78d2-4580-a066-8ca2d168847e + HV1-MV3.101-Trafo1 + false + false + + + d587ac08-2ef3-5aee-d804-f05aa952b741 + 1-MV-urban--2-sw + + + + 10 + BaseVoltage 10.00 kV + a7cdf97c-c348-a393-3f71-000495c0f66f + 10.00 kV + 10.00 kV + + + 110 + BaseVoltage 110.00 kV + 3f9b0e00-ddcb-e7f0-54c0-4c45abeb7f5b + 110.00 kV + 110.00 kV + + + 17f13142-8a97-6f14-eb0f-5f9690899e04 + 1-MV-urban--2-sw + + + + c391b0d7-7edc-acc1-3e40-e44b367f23f9 + HV1-MV3.101-Trafo2 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + 1ec57857-43da-9017-8638-fb69432c570f + HV1-MV3.101-Trafo2 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + fa5b8a3f-d706-e455-bde0-6fbf098a9357 + HV1-MV3.101-Trafo1 + + 0 + 0 + + 0 + 0 + 5 + 0 + 0 + 63 + 10 + 0 + 0 + + + 2 + true + 0 + 0 + + + 439a0b6a-17c2-9334-68b1-d3603c4bcb7c + HV1-MV3.101-Trafo1 + + -1.01569e-6 + -0.00173554 + + 1.81818e-6 + 0 + 0 + 0.614603 + 0 + 63 + 110 + 34.566 + 5.7619 + + + 1 + true + 0 + 0 + + + b6ee02e0-0c12-7102-373a-0242037b441a + MV3.101 Bus 133 + + + + + cc61045e-56ba-2614-66bf-77e71f4e42e0 + MV3.101 Bus 141 + + + + + e5db80c3-885c-c233-8efe-44c25094aaec + MV3.101 Bus 59 + + + + + c9eb814d-544c-dced-c7e4-7c9cd3795f19 + MV3.101 Bus 92 + + + + + 58a5ba43-d173-c1c1-ba51-fc5b093e0a75 + MV3.101 busbar2A + + + + + 602a26c7-d6d7-79fb-5ca6-0b86442e0e16 + MV3.101 Bus 24 + + + + + 11aada37-7a4c-3c61-aaaf-41e00ac3d747 + MV3.101 Bus 66 + + + + + 47768294-c9a3-7695-295f-37580c57a272 + MV3.101 Bus 95 + + + + + 580dc9bd-c0fb-20ac-b6d7-c319df77f90e + MV3.101 Bus 138 + + + + + f035318d-e522-11f7-1ad6-5c1ed2167ded + MV3.101 Bus 12 + + + + + ab998416-52d8-05ee-6459-459839b11f28 + MV3.101 Bus 114 + + + + + 65d05a4a-8253-a513-13f0-ac7a45197f13 + MV3.101 Bus 120 + + + + + 54c81db0-89b5-ba2e-036a-4fa79fddb4a1 + MV3.101 Bus 25 + + + + + 6dd10276-4498-ea53-b847-bbbc9968baf5 + MV3.101 Bus 23 + + + + + 54543dae-6e27-2218-8d33-f64e84cb1785 + MV3.101 Bus 68 + + + + + 78a28a61-0df5-a916-34b4-7d01974aa8da + MV3.101 Bus 39 + + + + + e355c3ec-9fc7-2792-aab7-2c681ca576e6 + MV3.101 Bus 72 + + + + + 5352c677-45da-9ecf-c1b0-0eac2fff2d22 + MV3.101 Bus 36 + + + + + 54fd3237-c050-39b1-1c1d-072d2a4a7a49 + MV3.101 Bus 13 + + + + + 0dca8cd3-f73c-e4d1-3b8f-9f3b70b222ab + MV3.101 Bus 104 + + + + + f3c2d4e0-d306-68f2-f757-8021334e607b + MV3.101 Bus 143 + + + + + e67f4be2-b617-2b0e-3c0c-0e0e31e0153f + MV3.101 Bus 56 + + + + + d43525fd-6892-c452-2a7c-fd3c36d016ad + MV3.101 Bus 90 + + + + + b604b137-8723-81be-0e85-df1245f89628 + MV3.101 Bus 44 + + + + + 689658ac-5360-d766-8036-3080b446c7b5 + MV3.101 Bus 78 + + + + + 0c06574c-3c9e-4ae1-b7f7-a149371fb0c1 + MV3.101_Base_Station + + + + + 97d87410-badb-0766-360c-8a0b52001919 + MV3.101 node1 + + + + + 47a7e411-4fd8-a259-276f-b9f91ac6d799 + MV3.101 Bus 65 + + + + + a7269b65-b0a4-ee02-6afb-3b71275d3b31 + MV3.101 Bus 106 + + + + + d6736037-3ae8-7edd-b98e-b80770bf4de9 + MV3.101 Bus 129 + + + + + 5dc164b2-0ddd-a0c4-a767-4414f52690da + MV3.101 Bus 47 + + + + + ac3f2425-71a0-4a59-028f-0efb8f0865b4 + MV3.101 Bus 76 + + + + + 6d9c3c72-ba07-f8e3-1cf2-e5027075baf1 + MV3.101 Bus 49 + + + + + 115f9eaf-13e0-94c2-e000-dd4229a8664e + MV3.101 Bus 84 + + + + + dc9c5c7e-05a0-6ef3-52ae-d547189c7229 + MV3.101 Bus 128 + + + + + 9da6e0e9-fc7d-08d3-f362-eea7c5863308 + MV3.101 Bus 20 + + + + + 9f09d15e-215f-34ab-5718-45e9f4f6ac9d + MV3.101 Bus 16 + + + + + 760c7a73-66b4-7030-0fc1-8b4bc887485d + MV3.101 Bus 37 + + + + + 97684c59-0d96-6b35-6c13-661e8d8ba259 + MV3.101 Bus 108 + + + + + 4cba6ff3-ee76-eff3-7a68-e5e605a31b1e + MV3.101 Bus 79 + + + + + c151ce0a-3433-059e-2075-e5535c6f5de9 + MV3.101 Bus 113 + + + + + 526db1d6-3d31-519d-4bcc-e15e4eea0377 + MV3.101 Bus 98 + + + + + 8ad6129c-a88c-2aec-f075-ed9f077db94a + MV3.101 Bus 67 + + + + + e7188310-66e6-7e73-a0f7-f96c0f3d9abf + MV3.101 Bus 64 + + + + + 4e651281-df73-7d31-1c6f-03124536504a + MV3.101 Bus 73 + + + + + efcb79ff-f708-3aee-941a-bbb0c013565c + MV3.101 Bus 105 + + + + + 17b791b7-b205-d275-f973-c1cac10fca23 + MV3.101 Bus 60 + + + + + c8745399-8f49-3d30-a126-8625ef3ff7d8 + MV3.101 Bus 123 + + + + + 7123f74d-2cb3-fbd4-ca0d-c5a7b083aae6 + MV3.101 Bus 21 + + + + + 9b175a79-168a-b364-74dc-4060d49da2c3 + MV3.101 Bus 134 + + + + + 6d5fb603-0c53-6451-9e6a-350d3b470d86 + MV3.101 Bus 52 + + + + + 39445220-1eb6-a202-17e9-fa1ff26d230b + MV3.101 Bus 111 + + + + + 1b8b2d2d-68db-f891-801b-bfc32b6cbb10 + MV3.101 Bus 127 + + + + + 051940d7-5f46-1141-0345-845af73bc61b + MV3.101 Bus 18 + + + + + 58bacb1b-6b97-f35e-9056-f123409ad68d + MV3.101 Bus 14 + + + + + e4cc9c36-d963-b91a-abf2-286732fd4d13 + MV3.101 Bus 117 + + + + + d53e0af4-e39d-a077-24c2-1b9a70ca323a + MV3.101 Bus 33 + + + + + dd27bff6-9756-ba58-8cc9-271384a2db04 + MV3.101 Bus 30 + + + + + 730c8f17-bae4-c7e5-fd4f-ff814461640e + MV3.101 busbar2B + + + + + 08a95d01-c5fe-03aa-dbb0-458f5dabd564 + MV3.101 Bus 50 + + + + + 58605c91-4c45-1448-8a47-baf5166978a6 + MV3.101 busbar1B + + + + + 07407ab0-2b31-e7c7-2495-6eaa23e49b27 + MV3.101 Bus 116 + + + + + f4dcc431-dc24-eb97-45f2-3a128fd5e66d + MV3.101 Bus 126 + + + + + c47fa67e-fcb5-2620-e260-8feeea1f0457 + MV3.101 Bus 136 + + + + + 65e322b3-ae18-927a-0a0a-e4a20194ded8 + MV3.101 Bus 74 + + + + + 76d998be-a8d9-1066-6c86-d51dfcd9ecb9 + MV3.101 Bus 107 + + + + + baeb2c7c-3b75-a823-f2e3-60478164ea08 + MV3.101 Bus 131 + + + + + 1abbbb15-5d86-586a-593e-f219ec0470f4 + MV3.101 Bus 71 + + + + + 2d63de0d-abd9-c608-4b23-27f6fd6788c8 + MV3.101 Bus 139 + + + + + 7d4101ff-b95d-3ba8-9c61-ac4fafdb2a90 + MV3.101 Bus 69 + + + + + 3e9fe49e-3528-5467-1802-3e4f4915815a + MV3.101 Bus 75 + + + + + 60522422-53c2-d7d3-830e-e9e5c44b7e74 + MV3.101 Bus 118 + + + + + c536086b-6882-97c3-e0e9-299d2caee42e + MV3.101 Bus 96 + + + + + 379e69e3-db5a-e85b-35ae-aabe3b87737d + MV3.101 Bus 103 + + + + + ca89565c-a448-5cff-5cc3-7028cf5fb252 + MV3.101 Bus 115 + + + + + 5718a016-b383-8e60-b061-5b99b2ef017d + MV3.101 Bus 85 + + + + + 0b188d0d-6877-d4ea-f9dc-873a54ed4161 + MV3.101 Bus 109 + + + + + 4307efd8-8ff2-163a-56b2-b5803704805e + MV3.101 Bus 110 + + + + + 395f2cc2-76f0-8bb0-1795-3b971208544b + MV3.101 Bus 17 + + + + + e2b983c0-14cc-5594-aa8b-422ef036fca0 + MV3.101 Bus 41 + + + + + 557a023a-d38b-f093-c68a-5e9fa24a9228 + MV3.101 Bus 88 + + + + + 7b686997-745f-a9ea-9e24-60a717ee7969 + MV3.101 Bus 28 + + + + + c48aa952-8ff9-3d3e-a526-b92a68ae5b14 + MV3.101 Bus 70 + + + + + 62a5f875-d066-813f-81c9-797615c95fc7 + MV3.101 Bus 130 + + + + + 387007f2-1b11-5814-104c-2c3815d0698f + MV3.101 Bus 81 + + + + + 9352aa3a-b6e5-623c-85e1-d94be8417c8c + MV3.101 Bus 101 + + + + + b86ea43b-ac52-c894-ba81-8111b00ac85c + MV3.101 Bus 46 + + + + + 247f7ef7-4ef8-9d2a-b058-2c653f49bb2c + MV3.101 Bus 42 + + + + + 70ebd8ad-f2c0-94ed-e659-fa5193bf3c7e + MV3.101 Bus 119 + + + + + d8b2848b-4c9d-2372-3a80-0f2c54090de5 + MV3.101 Bus 61 + + + + + e93bbc88-a718-e5e8-7f4b-5e81522012ff + MV3.101 Bus 29 + + + + + 036a5044-6656-4c3e-2b7c-c44975aa666b + MV3.101 Bus 137 + + + + + 33a1d003-ba4c-3428-14cd-3f68fb165e98 + MV3.101 Bus 53 + + + + + 35f709ca-eb62-b94f-80d3-33f600bab607 + MV3.101 Bus 19 + + + + + 9d15fdb8-8da0-7b78-82e5-f0f1f5ed11cd + MV3.101 Bus 54 + + + + + 3e175583-dccb-c91c-2387-fd3bbecc8a1a + MV3.101 node2 + + + + + 32027039-ed3a-de83-3c5d-c91b8ad64fae + MV3.101 Bus 89 + + + + + 5045c15b-762c-bf1a-bd5d-611bfe7801a2 + MV3.101 Bus 15 + + + + + 5f5af2fe-efec-0a5b-f0f4-1f3778dd7ed5 + MV3.101 Bus 77 + + + + + cc64a710-bc60-8393-1534-67aeae0037ac + MV3.101 Bus 38 + + + + + 8efd3322-c2d9-71d8-fe73-579b71cde32f + MV3.101 Bus 93 + + + + + 14f329fd-ab52-8f13-7f6c-971f9a03fec4 + MV3.101 Bus 63 + + + + + 52462df7-08c3-5d01-7b32-7b605390918d + MV3.101 Bus 62 + + + + + 44a189e2-ec1b-fe81-2817-57addffb09eb + MV3.101 Bus 94 + + + + + 935d2af4-7956-7880-a02b-57b489653dce + MV3.101 Bus 102 + + + + + 7a930359-285b-06b8-9672-18ea41f0958a + MV3.101 Bus 142 + + + + + 94a7ad37-fb23-78af-fe8c-d8c8f26d72e0 + MV3.101 Bus 43 + + + + + d4580c16-00b7-ef82-9cc1-001fd2d51e1d + MV3.101 Bus 22 + + + + + 0850c86c-abab-7768-04a2-e0bb2ad02e9b + MV3.101 Bus 55 + + + + + 256e6ac2-a956-059b-fdb6-813245400f31 + MV3.101 Bus 87 + + + + + 3482e8d7-8ae1-82b0-5763-fef5ba4f54cd + MV3.101 Bus 48 + + + + + 7397c38d-7d07-f2c1-48ab-b833a45f94f3 + MV3.101 busbar1A + + + + + 28bd024f-b497-3bc2-916e-53c309e94e95 + MV3.101 Bus 27 + + + + + bd450768-9c66-bc20-d69d-d10dadf376f6 + MV3.101 Bus 45 + + + + + 0bbad25c-73c2-2ff1-c743-e7ebe4b8d659 + MV3.101 Bus 32 + + + + + bc0876c2-366d-2935-f721-c68ad693d169 + MV3.101 Bus 91 + + + + + 92d70c56-44b9-6a46-91e4-62f5b34bb478 + MV3.101 Bus 86 + + + + + 8cb33678-b00f-6b1b-e5c5-895297997d97 + MV3.101 Bus 40 + + + + + 3261dc3a-e831-fcbd-35ae-e94d260aa6aa + MV3.101 Bus 122 + + + + + a24d1791-8984-4f63-ccc2-1fbce9ffc636 + MV3.101 Bus 82 + + + + + d950c4ac-3587-ff37-d12c-2d76bdf6ad69 + MV3.101 Bus 26 + + + + + 7124a4e1-19b4-de33-d76b-812573026325 + MV3.101 Bus 121 + + + + + 92b24ba3-5137-bd4d-8e19-bf9a2a68ee9b + MV3.101 Bus 11 + + + + + 76cde34d-c93e-25d5-24b7-d14275d1391b + MV3.101 Bus 100 + + + + + 2ba88481-69ec-3ea6-f1f5-0499c7e7fd02 + MV3.101 Bus 97 + + + + + 9a005fe3-3282-5da6-6c1d-1a9a7406db94 + MV3.101 Bus 58 + + + + + ab45297a-e03e-3cc5-d3aa-da843ea91a2e + MV3.101 Bus 83 + + + + + b9d34c1f-d6d1-af76-d959-6484604da4f9 + MV3.101 Bus 124 + + + + + 119fc018-17a5-1d66-9c97-77ce2fcc5238 + MV3.101 Bus 99 + + + + + 2e4f41c0-9317-3505-2bc6-62aade4ed90a + MV3.101 Bus 140 + + + + + 537a4af5-7195-3b72-0557-fdd868ba34be + MV3.101 Bus 80 + + + + + e55c9391-d83d-72e9-4d3e-38e5ad0fec9f + MV3.101 Bus 132 + + + + + f7daf3a7-0f47-9b52-8f23-52d373205dca + MV3.101 Bus 135 + + + + + 04fb1fc4-356a-4c49-d82f-71531342a8fb + MV3.101 Bus 34 + + + + + 0226e00f-bcd7-e1f0-a04c-b918104167da + MV3.101 Bus 31 + + + + + b0b45ac3-cf55-2d3b-718e-9c1d178af3e5 + MV3.101 Bus 35 + + + + + 0ab8cdb3-6d6f-de47-4bc5-918cb7e9de5f + MV3.101 Bus 112 + + + + + 63ee912d-e5f0-d84e-b14b-2ba9982afba7 + MV3.101 Bus 125 + + + + + 2848b881-d889-0a73-8f6e-8891b4aab963 + MV3.101 Bus 51 + + + + + 45fc6f7d-c57b-f5cb-859b-b1c372d46452 + MV3.101 Bus 57 + + + + + 22895fe0-8efa-45e8-832a-37d2757a92ed + HV1_MV3.101_Substation + + + + + 49cfd1e5-c52f-7f87-b853-76c12e21a35c + HV1-MV3.101-Trafo2 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 1a8a5059-b1ba-7f47-4385-c92f303b0d83 + HV1-MV3.101-Trafo1 + + 1.5 + + 9 + -9 + false + 0 + 110 + -1 + + + 864c19f1-3f36-9ff6-ee01-8146f9ea44b1 + HV1 grid at MV3.101 + + + + + + lv_urban6 + 0dcd000a-f0fa-42f8-b2cd-b6c263af1aed + MV3.101 MV Storage 133 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + 11c0a680-8b5b-42d0-aa62-ae1afe7e8032 + MV3.101 MV Storage 1 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + 12b5ca89-4f47-4f63-9104-9d08bfc277bb + MV3.101 SGen 111 + 0 + 0 + 0.2523 + 10 + + + + lv_urban6 + 10ab3fe5-ca26-444d-a34e-efd33b7fb172 + MV3.101 SGen 84 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 0541fc1f-b8db-45a6-a0fc-fc3d447dea49 + MV3.101 SGen 51 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 132e8803-0582-4699-8e7c-132c0b064fe4 + MV3.101 MV Storage 29 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0c1b63f6-bfcc-488b-8d25-b4bcfe7c3d33 + MV3.101 MV Storage 42 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 163a4786-fc9e-4f67-ae93-5f2302e45970 + MV3.101 SGen 102 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 16b72425-e4c1-4ccc-a9e2-103d312aa031 + MV3.101 MV Storage 117 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 1c3df07f-5859-4336-bea0-04fae2435087 + MV3.101 SGen 100 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 1c5edae2-ee94-4e7e-97b6-96581fb61aa7 + MV3.101 MV Storage 22 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 1cdbe127-3033-4d5f-83b9-15cfeb19aed3 + MV3.101 SGen 88 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 05bdce2a-51a3-4faf-8954-e1f54b917ee9 + MV3.101 SGen 107 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 1d73426e-e96a-4892-ae0f-f51111a2243b + MV3.101 MV Storage 113 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 11ca0788-6f61-465e-ad5b-6243f4da8664 + MV3.101 SGen 119 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 130a00db-4ff7-413b-89e7-b51927e19395 + MV3.101 SGen 47 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 1d816f26-d730-468b-887f-00db324687f8 + MV3.101 SGen 90 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 1ef58b22-db47-497b-8f6c-3cfef81ea7fa + MV3.101 SGen 114 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 1db23e21-1386-435e-b1c4-55438aec0c88 + MV3.101 MV Storage 25 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + 104d524a-0095-4144-905c-bd948ebb21e7 + MV3.101 SGen 128 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 1f054a58-a7a0-42da-b429-57d3b4ad126f + MV3.101 SGen 30 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0da75dee-9fad-48d5-bd83-f9f427cd883c + MV3.101 SGen 120 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 12137f82-6fea-40bd-bc38-55ab9228f3fe + MV3.101 SGen 105 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 13e37822-5633-475c-956c-985cf9c17d3e + MV3.101 MV Storage 9 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 16456899-0ee3-495d-bc9c-7338d500f798 + MV3.101 SGen 125 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 169059b6-1bea-4db5-8f17-3483ae91a1cf + MV3.101 MV Storage 48 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 173dcb34-e3df-41e1-b922-96d83dd53491 + MV3.101 SGen 10 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 0e9e40a1-6993-4833-8275-b4f351a1508e + MV3.101 SGen 28 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 157c4bc7-38f1-476b-9161-7d10aa1b54df + MV3.101 SGen 44 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 17daa0b4-70db-49a5-9695-10331a032af1 + MV3.101 MV Storage 16 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 19210669-5c2d-4f8a-b38a-eb453ed750b7 + MV3.101 MV Storage 66 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 155818af-4a9d-47ca-a4c5-b3492c21df16 + MV3.101 MV Storage 20 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05783df4-d9ea-4ba4-a6ba-6a92d6f962b6 + MV3.101 MV Storage 12 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 165261b4-24f8-4095-ad25-9bda58ae4553 + MV3.101 MV Storage 41 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 1bcd6b30-0eab-463f-afda-dbc5ece904fa + MV3.101 SGen 20 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 037ebd05-9ae4-4576-8d66-1b1b71e7a582 + MV3.101 SGen 32 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 0af22853-a576-40fb-9054-28b537f5f7e4 + MV3.101 MV Storage 61 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 11afbbb4-aa6a-4647-a8a5-3ff01d74e7a9 + MV3.101 MV Storage 34 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 0a778181-c3ba-4326-a697-1f6a353deff7 + MV3.101 MV Storage 45 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 05f82fb7-e9e0-4d85-a235-deeeb8e918a1 + MV3.101 SGen 12 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 2290c230-02d1-4dc8-854b-500474f3dd9c + MV3.101 MV Storage 71 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 22cbd18e-381d-4a12-96be-158669a4f9b5 + MV3.101 MV Storage 54 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 29b2105c-6a0e-49cd-9a6a-d3e7a3e1212b + MV3.101 SGen 21 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 33524a46-4f45-4c7b-842a-d9b6f6f5acdb + MV3.101 SGen 48 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3357d0f3-4f9a-4115-8957-01fca9491d34 + MV3.101 SGen 70 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 3a1f07e9-8c09-44a0-8d3f-0dd9e157c4c8 + MV3.101 MV Storage 80 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 2313a5f3-d454-4088-a8e9-9d63679d5483 + MV3.101 MV Storage 28 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 3f1f3f65-08de-4db3-a1ee-7cf514812b0f + MV3.101 SGen 13 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 331bf763-9b98-458d-91ca-815cf43b72b5 + MV3.101 MV Storage 94 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 3fda2746-f855-4626-a981-1d450b209f65 + MV3.101 MV Storage 121 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 21d2011d-bb05-46f0-842b-d6f300981560 + MV3.101 SGen 3 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 3a862fa1-4d3d-4589-874d-d2ee50fc240f + MV3.101 SGen 73 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 33fdf0e6-3966-426c-ae4a-b41d1aea86dc + MV3.101 MV Storage 21 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 406bbd1e-3a1b-4a17-bf2b-c5c838be2832 + MV3.101 MV Storage 108 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 262aa101-1087-42a4-bd64-dcccf6a7c887 + MV3.101 MV Storage 118 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4199355a-6d02-426c-92ac-fe862cbac50f + MV3.101 MV Storage 33 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 41ef6f44-8ea5-4da8-893f-f5d758cdc87a + MV3.101 MV Storage 23 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 4745aaa5-910f-4162-a8e6-9600ba7113b6 + MV3.101 MV Storage 76 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 44e47fb7-0158-45d2-a0c2-13fef9f631ce + MV3.101 MV Storage 81 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 4add3828-7eea-4d77-90a2-dd17f22b2bf0 + MV3.101 SGen 5 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 4cf62559-4d6b-4747-8e02-9cb1c0319a82 + MV3.101 SGen 112 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 23f1d0e3-c234-4138-8ed8-54deda17fd37 + MV3.101 SGen 96 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 453c0b33-7930-4caa-ade0-d40ef682ac80 + MV3.101 MV Storage 111 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 51e62a95-9a31-4b17-8f55-a0c1467c167f + MV3.101 MV Storage 64 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + 5337d65e-0d14-406a-8961-c370ec406a07 + MV3.101 MV Storage 128 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5773c9be-c477-445a-97c5-675997ebc67f + MV3.101 SGen 52 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 584b110c-7643-4ed3-8044-196c9aeef167 + MV3.101 MV Storage 8 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + 5d37b09f-ee82-48fb-b852-31ca627ee8f9 + MV3.101 SGen 83 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2cfb222f-ae03-4443-8e0f-5b6ffbb95cb8 + MV3.101 SGen 8 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 2e7b8742-4313-4215-8828-86fbd93e49bc + MV3.101 MV Storage 53 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 2f30be2a-38de-4112-97da-d640068ae463 + MV3.101 SGen 45 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 35a6c90b-cf0b-44dc-82d1-108d5831e515 + MV3.101 SGen 46 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 3eceb2d3-bbd2-4d15-8174-b34e76e5458e + MV3.101 MV Storage 10 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 23d6d9d6-62f3-4334-9ad9-fd342eb762bc + MV3.101 SGen 38 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 24587219-0a2a-47b6-985f-9faa783f7c49 + MV3.101 SGen 59 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 2fdb9cc8-d408-483e-8e34-0d668b57f560 + MV3.101 MV Storage 123 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 2285022b-32b6-437f-9cb3-15fc86d452cb + MV3.101 MV Storage 60 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 39b02ca0-0a73-45f2-8519-ae4f584a72db + MV3.101 SGen 34 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 3dc31b4e-bfbc-4621-a4f1-1ce53363ee31 + MV3.101 MV Storage 105 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 42693952-3252-48f8-b537-ba2acbe73401 + MV3.101 MV Storage 63 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 439bc75b-2f9a-4dcf-8c3d-d5d2b98bba65 + MV3.101 MV Storage 99 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 44a70f76-6dc4-42ab-9052-ae77937e0fd1 + MV3.101 MV Storage 36 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 2d5cef5a-e874-4d91-85fa-f0fa7792e203 + MV3.101 MV Storage 11 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 235eb701-c43e-4266-9f3e-44621159f757 + MV3.101 MV Storage 114 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 4550ce83-9380-4c2d-ba48-edce4db8db10 + MV3.101 SGen 65 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 49c7e3ea-aba3-44d0-857d-d7ca680da93f + MV3.101 SGen 132 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 4afa186a-de83-4b67-82b5-ea028fbe2123 + MV3.101 MV Storage 91 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 58c7151c-b54a-4bff-825c-c9bca1dd4cc5 + MV3.101 SGen 14 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 4ab8a1ac-c6c8-4507-a0ab-d5157aca026c + MV3.101 SGen 113 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5744b5b5-0ae6-441e-a95e-9e9fe1aa94ea + MV3.101 MV Storage 58 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b0f44c2-9bdc-4bad-815d-e452af177ff5 + MV3.101 MV Storage 89 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5b2c7cd7-47e0-411d-9c59-ba266a1b42f4 + MV3.101 SGen 91 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 5d70f316-198e-40a8-88d2-badc16c283a5 + MV3.101 MV Storage 109 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 5dd5801d-96ad-4517-8c79-1e0a504ee194 + MV3.101 SGen 29 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 312b6b9a-0654-4476-bbd7-db5fef48f1c4 + MV3.101 SGen 15 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 334b1d66-6caa-44c1-a244-008b46809f2d + MV3.101 MV Storage 103 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + 5e36a45c-bef3-4e23-aeca-50bdfa5bbbcc + MV3.101 MV Storage 65 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 5e4ff613-9ba4-41ba-b14d-b886ec3119a8 + MV3.101 MV Storage 35 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 5e69c9a7-4bdf-4f96-9fdd-30b16d75349b + MV3.101 SGen 54 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 5ec12e7e-1c9d-412d-8930-307e96bd1373 + MV3.101 MV Storage 57 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + 34245e19-5165-49f1-abb1-b386670b8432 + MV3.101 SGen 122 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 5666380f-2408-4727-80ac-2bf79012dc52 + MV3.101 MV Storage 95 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 5f7c9f77-781a-4ed5-be6c-7dd982a48ed7 + MV3.101 SGen 108 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 577335d9-73a7-441d-9312-27376a207ff6 + MV3.101 SGen 123 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 69972b42-c433-45ae-8fb9-ca13e5b38180 + MV3.101 SGen 31 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 8264ac88-3f62-4866-a88a-8033bd49e7ca + MV3.101 MV Storage 19 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 8b3336a5-9d7d-4b6c-a72f-79f5d63c205c + MV3.101 SGen 71 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 77d2308a-bc7e-4a44-90c9-e82d823a03a2 + MV3.101 MV Storage 112 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 765b14df-31e6-4b7d-865a-f4bd38be6318 + MV3.101 SGen 69 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 83127641-d4bb-4b86-8cbc-b55abd050341 + MV3.101 SGen 17 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 87ca3466-bccd-48c1-9a2a-c8985d9e732c + MV3.101 MV Storage 44 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 8962194b-9e19-4334-9083-d66b04add360 + MV3.101 SGen 43 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 8d76bfd5-e0d1-4dbf-b770-14b96d2a4af2 + MV3.101 SGen 53 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + 6fa1d2c3-09e4-44d5-8ea5-16940337a520 + MV3.101 MV Storage 130 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 63637818-369e-4c6e-8286-f864bd79458d + MV3.101 MV Storage 27 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 70b41c19-5a00-438b-b35c-d92a24316322 + MV3.101 SGen 2 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + 89e911da-5378-47bf-a64a-80042cfe047e + MV3.101 MV Storage 14 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 5fa0db49-2df0-48f3-bb0e-57c03b3ddc06 + MV3.101 SGen 57 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 6a9c52b6-de64-4811-b0a4-27e75acb8fd0 + MV3.101 MV Storage 69 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 792f0b5b-6189-4393-bc36-8bec8535f899 + MV3.101 SGen 126 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 8e9c2499-4077-451b-b284-5698a20ead12 + MV3.101 SGen 95 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + 659894fd-e683-4680-ace0-92ad0635cc37 + MV3.101 MV Storage 92 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 8f6cecac-9876-42f8-8c2f-5c6f20a7f9db + MV3.101 MV Storage 73 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 916b7018-e5a1-4aba-b5d4-ffdfed9756e7 + MV3.101 SGen 37 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 9620e818-1fc8-4cee-90f1-a544188c2651 + MV3.101 SGen 97 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 80b1a107-81c3-4e85-b58e-6649f6a8eebf + MV3.101 SGen 75 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 668f5c04-07e3-4b46-b19e-445368b594d2 + MV3.101 MV Storage 110 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 900a7b6d-46c9-4a8f-a09c-f60ef5aa0151 + MV3.101 MV Storage 18 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + 77cc5d76-c082-418a-8fc9-87f1c4c08f14 + MV3.101 SGen 129 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 7f07701c-ca7a-4869-85d5-ac97a842f74c + MV3.101 MV Storage 68 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 99493d51-c8a8-4470-ade4-4fe749ee0ddd + MV3.101 SGen 72 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 99b2ffdf-f2bd-4c29-9f9b-432b16c77f4a + MV3.101 SGen 85 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + 83a46f9d-3e77-45cb-8be9-f8ed3ad04afb + MV3.101 SGen 109 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + 6c7b8dee-acc0-4bf3-957d-1211d4155e15 + MV3.101 SGen 74 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + 883ee820-1148-4d32-b356-209746dab4b0 + MV3.101 MV Storage 24 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 74d26114-3d80-47cd-ac0c-e2088dcbc437 + MV3.101 SGen 116 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 9155b04f-d6e4-49b6-97f2-f987c02e618d + MV3.101 SGen 26 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 8ff6c5c8-e0ad-40a3-b399-c9cc2321292d + MV3.101 SGen 23 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 9e3ee225-9109-4b48-a1e3-e195022964ce + MV3.101 MV Storage 120 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 9f366de6-1988-48dd-9841-95159eccbaf0 + MV3.101 MV Storage 124 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 6b6235f1-f478-447d-bf27-ece62e3556de + MV3.101 MV Storage 104 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 74cc8ed7-f010-4f10-83db-82f50586c6ff + MV3.101 MV Storage 131 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + 96cdf27c-93b6-4cd3-8de9-5b2bd9e85775 + MV3.101 SGen 40 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 728a3267-0e49-49cb-bf7a-92f4761bcb15 + MV3.101 SGen 50 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 9599d93a-a655-4618-9c6e-0c7336402e96 + MV3.101 MV Storage 100 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 6c30ce7c-4c36-4c69-a099-81d33fcc1d40 + MV3.101 MV Storage 32 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + a097e809-e41b-4d96-9a03-c8a4532594d5 + MV3.101 SGen 106 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 64841da5-a3df-4592-babd-4abf340bde7e + MV3.101 SGen 19 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + 67accd57-25ad-4aad-a129-d97ad09f517e + MV3.101 MV Storage 67 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 69d568e0-91a9-40b7-8a2f-e3d546f5632d + MV3.101 MV Storage 13 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + 9dc81a53-8430-4f8a-abf4-fc5a6c1663d5 + MV3.101 SGen 39 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + 661ad891-cb09-4f91-96a2-87305d4ef08f + MV3.101 SGen 86 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + 8aec1d63-4481-4b29-93fe-cdf352e8d76b + MV3.101 SGen 55 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + 6fe87550-bc95-4778-8127-2f95401bcdb8 + MV3.101 MV Storage 51 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + 736dffa5-dd25-4af5-8bff-9755e5ade175 + MV3.101 MV Storage 98 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 81c9a7eb-2b2e-4f21-bd05-635cbf2edd03 + MV3.101 MV Storage 72 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + 89ca11c6-220e-44a2-9c66-343d885f1462 + MV3.101 MV Storage 47 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + a09b1044-83d0-42eb-b5ef-c74793e46924 + MV3.101 MV Storage 6 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_rural3 + a0b18eab-719a-4c53-b610-b72e89608044 + MV3.101 MV Storage 3 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6f8d90f7-5358-470c-9fc5-975d965245aa + MV3.101 MV Storage 77 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + 9deb86d3-6d35-482c-899c-8488c51789e1 + MV3.101 SGen 62 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 9dae6627-4645-4180-8524-59d92cece369 + MV3.101 SGen 115 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + a33117cb-65ca-4f2e-ada4-aee7137bb5ce + MV3.101 SGen 87 + 0 + 0 + 0.1722 + 10 + + + + lv_urban6 + 7ca7c8a0-3e9c-4109-8dd7-e4fe0fe40343 + MV3.101 MV Storage 106 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + 74372083-67a9-4aea-a341-70b7a74d7423 + MV3.101 SGen 103 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + a4e507a6-c3f2-4cf2-b5f2-ce8156a8690c + MV3.101 SGen 67 + 0 + 0 + 0.1847 + 10 + + + + lv_rural3 + 616ef04b-932f-49b2-b49a-509cf9e0d85c + MV3.101 MV Storage 5 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb5 + 6472fcb2-8211-4de2-9aab-3f566fe20ca1 + MV3.101 SGen 76 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + b1bac79c-4e14-450e-9db9-91d6582c84fc + MV3.101 SGen 64 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b7b2bcce-4458-4064-a0b7-a3fd1f51eed5 + MV3.101 MV Storage 38 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + c222b6db-dcdb-4a84-9fd7-6752390e7ce6 + MV3.101 SGen 117 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bd57cf2c-ae28-4a6e-a5d3-4350dadf12a4 + MV3.101 SGen 77 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + a56c0180-d41f-4c54-8557-9990224bcff2 + MV3.101 MV Storage 79 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + c74cee0a-f8f9-4902-bd51-e8f32002dcb5 + MV3.101 SGen 130 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adba62b5-31de-40dd-ba5e-6016817e0b6b + MV3.101 SGen 36 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf7f0f4d-cb0a-44f4-a204-e4d45c45256c + MV3.101 MV Storage 59 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d6007ee7-29c5-4979-aadb-eaf67ec82677 + MV3.101 MV Storage 93 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + a62d5e8e-c850-42a7-bb2e-0d9912370396 + MV3.101 SGen 60 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + b770926c-21c7-4a5b-ab8b-f7118a06dcfb + MV3.101 SGen 58 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + af641d59-7cb4-40af-b59a-274fe8d40012 + MV3.101 MV Storage 116 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ce77bb95-6d0c-4746-b567-1053bf75134c + MV3.101 SGen 6 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + cf4d009a-15e5-4385-a8f9-06675e2b3cb9 + MV3.101 MV Storage 97 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + cf6e5150-b194-40a4-a374-c52ca2fa7851 + MV3.101 SGen 99 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + d7f17798-671f-48ce-a987-022efe8ea074 + MV3.101 MV Storage 56 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + aee65a47-bf09-4a89-ad43-ff1db74c53e6 + MV3.101 MV Storage 84 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + d96ba3ab-0293-4bc6-8bbb-6dc5a26d3421 + MV3.101 SGen 49 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + dc6c3a5c-80da-41f4-b4c5-f36751e73ba3 + MV3.101 SGen 56 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + a9f288b8-ffba-4a9b-989c-2e7c0ce43884 + MV3.101 MV Storage 43 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + cc72a949-f5b0-4024-83cc-2c9b1518fb6a + MV3.101 SGen 121 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + b73138ea-e59d-4add-aefb-0c0e39d45a32 + MV3.101 SGen 89 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + d161600f-ca3b-40f5-a291-22090f00ed8a + MV3.101 SGen 11 + 0 + 0 + 0.1712 + 10 + + + + Hydro3 + d9a7edfd-e7ed-4572-af38-02c1c23ce77f + MV3.101 MV SGen 1 + 0 + 0 + 2.9 + 10 + + + + lv_semiurb5 + e127e90d-70ec-400d-b732-cbba8d74168a + MV3.101 SGen 63 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + e1dd8c5f-59d5-4b0b-9a79-aac238094d6e + MV3.101 MV Storage 126 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + e2f13a8a-76ee-4faf-8016-ecdf87f0bc26 + MV3.101 MV Storage 88 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + b108680b-616b-448c-8147-29d25abec7a4 + MV3.101 MV Storage 82 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + c189aebd-8e65-488c-8bd3-5c94fe4dac7b + MV3.101 SGen 61 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + bb7a995b-b646-41cc-9943-b24ef708a1cb + MV3.101 SGen 79 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + a923cfdc-2409-467f-b56e-0fed3d3b2d55 + MV3.101 MV Storage 102 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + bcb34cdb-aea5-466f-8dc7-180eb9b37d2e + MV3.101 SGen 131 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + ccd6c75d-f3b6-4210-a68c-bc31c7cc6bbe + MV3.101 MV Storage 78 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + c1146c39-35b9-4f1e-ab34-5ea518993714 + MV3.101 MV Storage 107 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + b9fde374-4332-4151-b397-011bbfe1ce8a + MV3.101 MV Storage 83 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + ac9e35d7-190e-488a-82b7-f3a0767b96cf + MV3.101 SGen 7 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + c4862ca4-89e9-4d4f-b8d0-2309d9884cd1 + MV3.101 MV Storage 127 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + a6d3f4d6-8fe6-44ee-abc3-c97463efc3d8 + MV3.101 SGen 92 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + adf0a6f2-f1e9-4a6c-b8aa-58d563bac0ae + MV3.101 SGen 33 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf3bfaad-c3f7-4c8a-b45a-d093b614cbe5 + MV3.101 MV Storage 75 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + bb6b73e9-2832-4778-89f0-69519c7de317 + MV3.101 SGen 133 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + aa4f9936-1432-4cce-aea7-6d52430cb0d6 + MV3.101 MV Storage 55 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bcc7a28e-b4d0-44d9-91e9-fe7ffe89f7c2 + MV3.101 SGen 78 + 0 + 0 + 0.1847 + 10 + + + + lv_urban6 + cde19335-3d2e-4251-9c68-b0d23b2958f4 + MV3.101 MV Storage 115 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + b0395b28-b85f-4b3b-809f-9bc2cc66021b + MV3.101 SGen 81 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + ceca9c98-3deb-43aa-83fb-be94940efa9a + MV3.101 MV Storage 17 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_rural3 + d0bee435-1b3c-40f9-9e60-211149e7d6fc + MV3.101 MV Storage 2 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + d0d3daf6-5062-4a89-ab56-f3218a1f97ad + MV3.101 MV Storage 31 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + d2b31764-56c9-4ed8-9b9e-196865ba9d7c + MV3.101 MV Storage 119 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + d4ea00dc-c67f-4049-b987-0ea403d92039 + MV3.101 SGen 27 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + d658229b-f7e1-448c-8a71-476be4d22fd3 + MV3.101 SGen 18 + 0 + 0 + 0.1722 + 10 + + + + lv_rural3 + db508db1-32d7-4996-a15c-f426579daf00 + MV3.101 SGen 110 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb4 + c177863c-53e7-4202-be2c-b89f98fcc2e9 + MV3.101 MV Storage 49 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + e0289568-e905-4773-9017-72fd1973e01f + MV3.101 SGen 16 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + b8c3feaa-ced5-4ce7-98dd-2c7d80a53f81 + MV3.101 MV Storage 30 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb4 + aa638558-9d26-481f-9828-4e959b1a56aa + MV3.101 MV Storage 40 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + b87e223c-91c4-4299-bad4-0b495266f505 + MV3.101 MV Storage 85 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + bb95398d-78d1-4b94-a31d-a9d62d94ab27 + MV3.101 SGen 9 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + bf658c61-b214-4794-baca-d1ec4f5aac09 + MV3.101 MV Storage 62 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + ccec02d7-bd62-4350-a767-808833d1116f + MV3.101 SGen 93 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d21526e4-7a31-41d6-861b-626f69cd0923 + MV3.101 SGen 35 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + bbbd3c7a-7293-4377-bed1-8f09afb50168 + MV3.101 SGen 41 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ad3769ae-8568-469a-a418-6db01e9dcc3e + MV3.101 SGen 4 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + d3b768da-d85d-4e60-9d42-f25c3d31e790 + MV3.101 SGen 127 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb4 + e5909199-409f-4bcf-afe7-91162d27a049 + MV3.101 MV Storage 46 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fd2c013f-91ad-4731-8c05-020966be5c21 + MV3.101 MV Storage 129 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_urban6 + efaf4560-f7b8-46f3-bf37-c3026fdde8cb + MV3.101 MV Storage 125 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb5 + ec6a90a3-baa1-4628-8015-56587c7f066f + MV3.101 MV Storage 90 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb5 + e8ca0274-7972-41d0-81f5-5ce83ddcafa2 + MV3.101 MV Storage 70 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e6b0180c-f587-4b99-b24a-59161892522e + MV3.101 SGen 25 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f50f9b84-4f87-4e7a-a033-3685ba290923 + MV3.101 SGen 101 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + f22bd768-44fa-4f44-9e1a-ada4ecc0c7b6 + MV3.101 MV Storage 39 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + fca529f1-796c-48fb-b96f-e498c9eec06f + MV3.101 SGen 24 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + ed174c39-5407-4821-9e5d-a06a29050cf4 + MV3.101 MV Storage 37 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + f4f05b3f-5b4f-4ca4-9ccf-1fead37cfe0b + MV3.101 SGen 22 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb5 + f6a1a3f4-2775-4653-8123-5731811db974 + MV3.101 MV Storage 96 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + f4dd0f7f-ac97-4475-94f5-34c861f00f11 + MV3.101 MV Storage 26 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + f98a8df5-ab23-43c0-be13-bf0013c8f242 + MV3.101 MV Storage 74 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + fcc74610-1be7-48d3-9a5a-080a8542907e + MV3.101 MV Storage 7 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_urban6 + e6180b3b-254b-4b43-a32e-2a7d239aff5a + MV3.101 SGen 104 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + fdf7314e-8cb0-43d2-8a7a-36600525e32c + MV3.101 MV Storage 132 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_rural3 + fa8012d8-f024-40b1-b931-6a1bb3cb29a7 + MV3.101 SGen 124 + 0 + 0 + 0.2523 + 10 + + + + lv_semiurb5 + fd056a2a-40d4-4b2a-9491-7207c5d5ea85 + MV3.101 SGen 118 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb4 + fbe0c20b-da2b-448c-8229-7614a2c4abcf + MV3.101 MV Storage 15 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_urban6 + fa99ba1f-c0e4-4c0e-a6bf-ea6a3a7ee21d + MV3.101 MV Storage 122 + + 0.0508 + -0.0508 + 0.0508 + 10 + + + + lv_semiurb4 + e7f461ec-44fd-4986-82d1-20a35f20fa49 + MV3.101 SGen 94 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f50e5096-6f24-43e6-84d9-c382e8a5e604 + MV3.101 MV Storage 86 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_rural3 + ecfcf7a0-65c3-46ba-89f7-ecc79fec1ddf + MV3.101 MV Storage 4 + + 0.093 + -0.093 + 0.093 + 10 + + + + lv_semiurb4 + f3efdd0e-eaa0-429a-b103-ba4800b3f174 + MV3.101 SGen 1 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + f25b840b-3235-442d-a54c-d46cb290a211 + MV3.101 SGen 80 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + ea61d02e-4cf4-450a-8bdf-b4b9ff984a5c + MV3.101 MV Storage 87 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_semiurb4 + eb25dab9-2373-4815-95f5-d43bfa5e2e4d + MV3.101 MV Storage 50 + + 0.2252 + -0.2252 + 0.2252 + 10 + + + + lv_semiurb5 + eb95a6e1-1d97-4757-a3fb-9813cd878298 + MV3.101 MV Storage 52 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + + lv_urban6 + e78c7485-dd98-4d70-a4e0-f3d33f93fbee + MV3.101 SGen 66 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ebe52646-d71d-41f0-9135-e39aeeb2e4d9 + MV3.101 SGen 42 + 0 + 0 + 0.1712 + 10 + + + + lv_urban6 + ec15ecc0-78a7-4012-aa47-f4dfbc524474 + MV3.101 SGen 82 + 0 + 0 + 0.1712 + 10 + + + + lv_semiurb4 + fc97a6f2-1a84-451a-9fa6-b3d343fe08ff + MV3.101 SGen 68 + 0 + 0 + 0.1722 + 10 + + + + lv_semiurb5 + e712dcdc-0a76-44da-8e77-fb20a70e07f9 + MV3.101 SGen 98 + 0 + 0 + 0.1847 + 10 + + + + lv_semiurb5 + eef42a51-8e61-4e24-876e-961cb4fd9d9e + MV3.101 MV Storage 101 + + 0.2477 + -0.2477 + 0.2477 + 10 + + + 3de2f8c8-eefb-47d0-3f1f-c7e2e697bf70 + 1-MV-urban--2-sw + + + bd6d8cee-c8f4-7932-c9ee-d9585f5143f7 + HV1-MV3.101-Trafo2 + + + + + 881600c4-d3b4-cab0-050b-08dcbb9ab4bb + HV1-MV3.101-Trafo1 + + + + + + 1bae3fe1-0bc9-46ae-856a-9b5a21af169b + CB MV3.101 Busbar2 + false + false + + + + a6fae133-a560-411b-aca0-3ff83654a736 + CB MV3.101 Busbar5 + false + false + + + + 2ef567ec-21ab-41c8-9b02-90560b261497 + HV1 Switch 319 + false + false + + + + 3e511a23-3e14-4ddd-9e9c-89035d411cc5 + CB MV3.101 Busbar3 + false + false + + + + 0bf73b1b-41ee-4e34-84fd-e63a417008d5 + HV1-MV3.101-Trafo1 CB HV-Side + false + false + + + + 822ca83b-e968-47d6-9066-d5537f84f785 + HV1-MV3.101-Trafo2 CB HV-Side + false + false + + + + b6c2111b-e500-4aba-bb72-7ef14cd3e21b + CB MV3.101 Busbar0 + false + false + + + + d10f2815-3415-4292-9de6-5170fd628217 + CB MV3.101 Busbar1 + false + false + + + + 054dd2d7-a6e2-4c31-a381-d2d2d40bb8a1 + CB MV3.101 Busbar4 + false + false + + + + 78d65f8a-c5b2-44a8-b251-2d296301c0a7 + CB MV3.101 Base Station2 + false + false + + + + 0a7b1590-fa32-4ae4-9b7c-de0f60fd9ffa + CB MV3.101 Base Station1 + false + false + + + 0 + + 48d081ef-ce03-fd6a-4715-e8ab8161d37a + MV3.101 MV Storage 61 + 0 + -0.2477 + + + 0 + + 053810b1-db5b-4888-7e78-a5919d998a7c + MV3.101 MV Storage 45 + 0 + -0.2252 + + + 0 + + 56cd77f1-2e3a-4888-1923-8456d4cc7914 + MV3.101 MV Storage 42 + 0 + -0.2252 + + + 0 + + 23d24471-ac13-d986-71e6-f703e97f9340 + MV3.101 MV Storage 12 + 0 + -0.2252 + + + 0 + + be09a79d-4e12-ed20-9e0e-2c3fe60d8297 + MV3.101 MV Storage 41 + 0 + -0.2252 + + + 0 + + 13707fb0-303d-b42e-fbcf-a5ab31e0cd00 + MV3.101 MV Storage 34 + 0 + -0.2252 + + + 0 + + 699cddf0-80e9-84bb-ca4c-b7679a3f16ee + MV3.101 MV Storage 29 + 0 + -0.2252 + + + 0 + + a794091b-33eb-2a7d-4277-4638019aaa4d + MV3.101 MV Storage 16 + 0 + -0.2252 + + + 0 + + 90742ed4-0f9f-88eb-58aa-ca88be4ca563 + MV3.101 MV Storage 1 + 0 + -0.093 + + + 0 + + 60c01160-1a37-a6a8-730c-c793b141e794 + MV3.101 MV Storage 20 + 0 + -0.2252 + + + 0 + + 549be146-fd5d-71c3-24c0-7e105f705ff6 + MV3.101 MV Storage 133 + 0 + -0.0508 + + + 0 + + 4b2b6f6b-9808-5901-233e-ee9ad9e91499 + MV3.101 MV Storage 48 + 0 + -0.2252 + + + 0 + + 0ea898ed-863c-7c44-1f27-45625efb7d7a + MV3.101 MV Storage 117 + 0 + -0.0508 + + + 0 + + f06f01ac-e73e-9492-915b-52e1ee8969bf + MV3.101 MV Storage 9 + 0 + -0.093 + + + 0 + + 542b86d2-0fed-e06f-0641-315279066e8e + MV3.101 MV Storage 25 + 0 + -0.2252 + + + 0 + + ec39331f-3ad5-a4be-e739-c2e0ecdb3591 + MV3.101 MV Storage 54 + 0 + -0.2477 + + + 0 + + 23545b6c-5dcb-16ca-5a01-1f062632c3bc + MV3.101 MV Storage 114 + 0 + -0.0508 + + + 0 + + f6e4ca34-5434-6803-a199-104617a7577a + MV3.101 MV Storage 60 + 0 + -0.2477 + + + 0 + + c731b59c-8d70-d065-df91-3c31c3262f83 + MV3.101 MV Storage 66 + 0 + -0.2477 + + + 0 + + ee7e53b0-e7e2-0f07-e014-30a8d1a9bf11 + MV3.101 MV Storage 71 + 0 + -0.2477 + + + 0 + + e4018ed4-396f-405e-e02e-e67609a931d2 + MV3.101 MV Storage 22 + 0 + -0.2252 + + + 0 + + 472e84d8-8d5f-6edf-4701-e246a1186c75 + MV3.101 MV Storage 113 + 0 + -0.0508 + + + 0 + + 5a3da016-0f3d-0e31-7f4e-986aefdb9a89 + MV3.101 MV Storage 28 + 0 + -0.2252 + + + 0 + + 4256e716-720f-7dcc-cb73-d5a4a89749eb + MV3.101 MV Storage 21 + 0 + -0.2252 + + + 0 + + 63d2ac6c-0694-fd4c-a230-a6efb7228336 + MV3.101 MV Storage 118 + 0 + -0.0508 + + + 0 + + 07e5f169-40b7-a84c-8225-f2c8ac1387d6 + MV3.101 MV Storage 53 + 0 + -0.2477 + + + 0 + + e30e4dde-f9c4-1677-5820-7981cd549ba1 + MV3.101 MV Storage 105 + 0 + -0.0508 + + + 0 + + 5bb74099-419e-9449-3329-24470b756855 + MV3.101 MV Storage 123 + 0 + -0.0508 + + + 0 + + 74f6fd21-5f16-8cf1-452e-2ab29a55feb9 + MV3.101 MV Storage 94 + 0 + -0.2477 + + + 0 + + 8d582142-08ae-b3e0-f767-45e1718a8e20 + MV3.101 MV Storage 103 + 0 + -0.0508 + + + 0 + + 9f9c3186-819f-b44b-dcbe-111acd5c2c2d + MV3.101 MV Storage 80 + 0 + -0.2477 + + + 0 + + 19b153c3-d5a3-457a-96ae-b64527c80db9 + MV3.101 MV Storage 11 + 0 + -0.2252 + + + 0 + + 25e55bea-bc2a-42aa-0485-910d9fdd5c65 + MV3.101 MV Storage 36 + 0 + -0.2252 + + + 0 + + a35c0e50-f3f3-ea84-1d64-dc524bd580e0 + MV3.101 MV Storage 81 + 0 + -0.2477 + + + 0 + + 857bef1f-3ef8-8e37-48dd-7b3fdb8fece9 + MV3.101 MV Storage 10 + 0 + -0.2252 + + + 0 + + 6948bcf2-3848-31e8-9c7f-31ca04b9f6c3 + MV3.101 MV Storage 33 + 0 + -0.2252 + + + 0 + + 702eff52-7157-b20c-a2eb-89c136318246 + MV3.101 MV Storage 63 + 0 + -0.2477 + + + 0 + + 5dc97ee2-4a2d-3767-1e2f-960218b0f189 + MV3.101 MV Storage 99 + 0 + -0.2477 + + + 0 + + 371981dd-8285-d124-c4d4-78a45d90dd8f + MV3.101 MV Storage 108 + 0 + -0.0508 + + + 0 + + b9c3df42-3139-8919-e5e9-1c02b6804762 + MV3.101 MV Storage 23 + 0 + -0.2252 + + + 0 + + 4e53d518-e264-8bc1-2fc5-05a1499e8ae2 + MV3.101 MV Storage 121 + 0 + -0.0508 + + + 0 + + 3a33b120-3b46-2ee2-d9c3-c9515b53a15c + MV3.101 MV Storage 91 + 0 + -0.2477 + + + 0 + + 3b7d59a9-9574-1c0f-3300-236850caa091 + MV3.101 MV Storage 128 + 0 + -0.0508 + + + 0 + + 46f0aa2a-3ebf-b6e9-26b4-2f2721587d6a + MV3.101 MV Storage 64 + 0 + -0.2477 + + + 0 + + 5e0010b1-4774-de36-3419-aea42e66caf8 + MV3.101 MV Storage 95 + 0 + -0.2477 + + + 0 + + 5e9f3e12-68ad-b543-94cd-527f56067a27 + MV3.101 MV Storage 89 + 0 + -0.2477 + + + 0 + + e98646d6-cc3e-0848-b139-3fd2630459c0 + MV3.101 MV Storage 76 + 0 + -0.2477 + + + 0 + + 508d4ff9-ac1c-a5cd-aaf8-471b583c82b3 + MV3.101 MV Storage 111 + 0 + -0.0508 + + + 0 + + 10952b3a-fbed-9d9e-385a-4bea5762a107 + MV3.101 MV Storage 58 + 0 + -0.2477 + + + 0 + + c07b3094-c4ac-689e-4aa7-7351eba7bad2 + MV3.101 MV Storage 8 + 0 + -0.093 + + + 0 + + 19f0bb21-7885-c6e1-e1cc-1d3ec5cb14c9 + MV3.101 MV Storage 110 + 0 + -0.0508 + + + 0 + + 25f00a1b-9f7f-e682-3834-20cf9d88f6a0 + MV3.101 MV Storage 109 + 0 + -0.0508 + + + 0 + + 994d40bf-17ec-be8c-1537-e14e2e1c1dcc + MV3.101 MV Storage 92 + 0 + -0.2477 + + + 0 + + 5789325f-e960-ab6d-3b10-41ca02e8757e + MV3.101 MV Storage 65 + 0 + -0.2477 + + + 0 + + 2d716c8c-caf6-96e7-159f-62e95b8f0d75 + MV3.101 MV Storage 57 + 0 + -0.2477 + + + 0 + + 75ce967b-a38f-311d-5b79-39124dd1fc4d + MV3.101 MV Storage 27 + 0 + -0.2252 + + + 0 + + c49aec52-e8bc-36dc-6d5c-4822f18b3709 + MV3.101 MV Storage 35 + 0 + -0.2252 + + + 0 + + 88f553be-e02c-760c-b046-1b4a6e532ad2 + MV3.101 MV Storage 67 + 0 + -0.2477 + + + 0 + + f4d16633-6743-8816-e313-0a318adb4ff9 + MV3.101 MV Storage 5 + 0 + -0.093 + + + 0 + + 407daf34-d4d9-cbe2-fdbf-a4b4bcaa2506 + MV3.101 MV Storage 98 + 0 + -0.2477 + + + 0 + + 432dc384-98a8-c7aa-a5be-1da1adc4aac7 + MV3.101 MV Storage 13 + 0 + -0.2252 + + + 0 + + 98223601-32e8-c364-a57f-6df16cef9adb + MV3.101 MV Storage 77 + 0 + -0.2477 + + + 0 + + 4523fcd0-5cd8-f12c-57f1-5a66b1bd9e75 + MV3.101 MV Storage 69 + 0 + -0.2477 + + + 0 + + 59d707d3-a4a8-3bed-5b68-cf8b5654b109 + MV3.101 MV Storage 130 + 0 + -0.0508 + + + 0 + + 2262576f-4e36-6738-267f-ced384f05862 + MV3.101 MV Storage 51 + 0 + -0.2252 + + + 0 + + a3eda602-63f0-3a96-f00f-7e0431f91046 + MV3.101 MV Storage 104 + 0 + -0.0508 + + + 0 + + ff0d6762-05a7-3309-7e7e-bbc32871966d + MV3.101 MV Storage 131 + 0 + -0.0508 + + + 0 + + 698b7ed5-6c74-92ed-7d87-8a23783fe43c + MV3.101 MV Storage 112 + 0 + -0.0508 + + + 0 + + 84937d01-aece-d5b0-c7c0-4e38f752a944 + MV3.101 MV Storage 32 + 0 + -0.2252 + + + 0 + + 293b39ca-96f7-7435-3405-be3052e42c8b + MV3.101 MV Storage 106 + 0 + -0.0508 + + + 0 + + f2214ea0-d311-9f4f-3c0c-460d923092b1 + MV3.101 MV Storage 14 + 0 + -0.2252 + + + 0 + + f941a9f8-3b9a-9b4f-84e2-d0284c761c2e + MV3.101 MV Storage 73 + 0 + -0.2477 + + + 0 + + 9e9a0a67-08a1-1a1a-b9ee-eb8e1654f3f0 + MV3.101 MV Storage 44 + 0 + -0.2252 + + + 0 + + 9ded6486-49f5-4236-4570-81cdfd6c97ae + MV3.101 MV Storage 19 + 0 + -0.2252 + + + 0 + + f514e2fc-4f1f-cc28-2293-90b79c373e5a + MV3.101 MV Storage 72 + 0 + -0.2477 + + + 0 + + 4278455c-fed1-53f7-54ea-dc3e092a1b5a + MV3.101 MV Storage 24 + 0 + -0.2252 + + + 0 + + 7f010f6e-82ca-4f0b-11f6-0542563814e3 + MV3.101 MV Storage 47 + 0 + -0.2252 + + + 0 + + b38b8234-4162-ca63-93aa-b0a690bad8d6 + MV3.101 MV Storage 68 + 0 + -0.2477 + + + 0 + + d52eba40-5b39-1dad-9050-fa6f17615646 + MV3.101 MV Storage 100 + 0 + -0.2477 + + + 0 + + f4e55466-d2a7-1271-6a91-a6099fc61e2d + MV3.101 MV Storage 3 + 0 + -0.093 + + + 0 + + 68175ad0-cb97-ba1d-c734-571f71aee954 + MV3.101 MV Storage 79 + 0 + -0.2477 + + + 0 + + 2ff233f1-9572-f079-e6a1-386c528ed1bc + MV3.101 MV Storage 120 + 0 + -0.0508 + + + 0 + + 745ddb79-ab87-d84e-f211-ebfd73e23c6e + MV3.101 MV Storage 124 + 0 + -0.0508 + + + 0 + + 31e1cc95-c82a-47da-cb48-0d824d0aadcb + MV3.101 MV Storage 102 + 0 + -0.0508 + + + 0 + + c321b46d-3571-fc0a-071f-d9048d919687 + MV3.101 MV Storage 6 + 0 + -0.093 + + + 0 + + de685234-ede0-e71a-f3f1-ed98266a48cc + MV3.101 MV Storage 43 + 0 + -0.2252 + + + 0 + + 708ce2d9-2738-0d8d-f513-9c1e840505cc + MV3.101 MV Storage 18 + 0 + -0.2252 + + + 0 + + 66d1fe3e-526c-18c8-49d1-5c08d389a91b + MV3.101 MV Storage 82 + 0 + -0.2477 + + + 0 + + 45aadf03-db5d-a6f6-6f4e-2a453aa46ea2 + MV3.101 MV Storage 38 + 0 + -0.2252 + + + 0 + + 858b7eb7-cfb2-1b19-0983-2ddc94c1db50 + MV3.101 MV Storage 55 + 0 + -0.2477 + + + 0 + + 7061f85b-e2b5-57f7-f1fb-57891ea917cb + MV3.101 MV Storage 30 + 0 + -0.2252 + + + 0 + + 7bf7cb11-965c-f731-b421-a3b02893abc1 + MV3.101 MV Storage 40 + 0 + -0.2252 + + + 0 + + b6560e79-7ba7-fa67-6556-0cd39c8ec974 + MV3.101 MV Storage 83 + 0 + -0.2477 + + + 0 + + c94e0254-1f04-28ef-90dc-ab3064ef314d + MV3.101 MV Storage 116 + 0 + -0.0508 + + + 0 + + 1af7bb13-800b-6287-3e63-fbc5acd0fcd5 + MV3.101 MV Storage 85 + 0 + -0.2477 + + + 0 + + e9282bde-b493-7b52-70eb-7067949e1d63 + MV3.101 MV Storage 84 + 0 + -0.2477 + + + 0 + + ccb538ca-ca53-62be-e99a-5e255e4bf07f + MV3.101 MV Storage 75 + 0 + -0.2477 + + + 0 + + 5b3d90aa-bdbb-8da8-3011-f14455d3105c + MV3.101 MV Storage 62 + 0 + -0.2477 + + + 0 + + e9b0e6b8-19b7-4106-260c-c233a6d500eb + MV3.101 MV Storage 127 + 0 + -0.0508 + + + 0 + + 7431db48-211d-9a86-f456-7dea996c9337 + MV3.101 MV Storage 97 + 0 + -0.2477 + + + 0 + + ba79311b-f923-1cc8-5b5f-bd76212fac93 + MV3.101 MV Storage 49 + 0 + -0.2252 + + + 0 + + d76061fd-15b2-a4c8-cef8-b8da5d25259d + MV3.101 MV Storage 107 + 0 + -0.0508 + + + 0 + + 222088be-2c19-20b5-0ce0-d19575db6b3b + MV3.101 MV Storage 115 + 0 + -0.0508 + + + 0 + + 9749f017-18e3-8c37-fc9c-fb44161926f8 + MV3.101 MV Storage 17 + 0 + -0.2252 + + + 0 + + 7107f55f-9faf-d0f5-53d6-10595c31f8b0 + MV3.101 MV Storage 78 + 0 + -0.2477 + + + 0 + + 8d1d6e4d-e048-9810-0a64-41a97a9c4821 + MV3.101 MV Storage 126 + 0 + -0.0508 + + + 0 + + faa4ac52-4b9f-f02c-941e-b53224cd74e5 + MV3.101 MV Storage 119 + 0 + -0.0508 + + + 0 + + 610e89e6-de8e-238c-8263-e61894b89c8f + MV3.101 MV Storage 93 + 0 + -0.2477 + + + 0 + + 0715273c-33b1-f8c0-6780-8e4442bdb6ed + MV3.101 MV Storage 56 + 0 + -0.2477 + + + 0 + + 2dab8ff2-0441-ae6c-9f5e-b10733c33446 + MV3.101 MV Storage 2 + 0 + -0.093 + + + 0 + + c630bf8b-6804-c1ef-df04-24100ea8cc9a + MV3.101 MV Storage 31 + 0 + -0.2252 + + + 0 + + 919d88d4-6db2-384f-3d84-d409b6c41c2e + MV3.101 MV Storage 46 + 0 + -0.2252 + + + 0 + + cac8ab2f-2f2d-4070-f4b5-afce965ea858 + MV3.101 MV Storage 88 + 0 + -0.2477 + + + 0 + + 90b46a9c-9fdd-78c6-5f37-8337e4d80d35 + MV3.101 MV Storage 59 + 0 + -0.2477 + + + 0 + + e66ea5a4-fc92-7c5e-aa8b-8145cd896de9 + MV3.101 MV Storage 87 + 0 + -0.2477 + + + 0 + + d4189104-a2f0-6144-b677-032535bf293d + MV3.101 MV Storage 4 + 0 + -0.093 + + + 0 + + 9a241147-d3fc-a173-67f1-da75d001f21a + MV3.101 MV Storage 101 + 0 + -0.2477 + + + 0 + + 36660b52-d735-b8ce-2d2b-5ea70a3a5a57 + MV3.101 MV Storage 37 + 0 + -0.2252 + + + 0 + + 582908bd-60bb-4fe7-8107-ea977653a2e7 + MV3.101 MV Storage 70 + 0 + -0.2477 + + + 0 + + e6857bfc-e08b-d88e-a717-e6fe5338a9e7 + MV3.101 MV Storage 52 + 0 + -0.2477 + + + 0 + + bc660879-fd0e-dff1-5b79-c8aaa13ccf15 + MV3.101 MV Storage 125 + 0 + -0.0508 + + + 0 + + 7623dc11-1511-45c4-5956-ad351514fd27 + MV3.101 MV Storage 50 + 0 + -0.2252 + + + 0 + + fad39011-dc94-374a-e00b-3f7ba472758f + MV3.101 MV Storage 90 + 0 + -0.2477 + + + 0 + + b9253e2b-2496-e4be-9482-0bf3f6d3ad72 + MV3.101 MV Storage 96 + 0 + -0.2477 + + + 0 + + f657fbce-cbbd-ae65-53cc-0e30b71d0ac6 + MV3.101 MV Storage 7 + 0 + -0.093 + + + 0 + + fc2b832a-42a0-1d84-f314-f1deb4a62b65 + MV3.101 MV Storage 39 + 0 + -0.2252 + + + 0 + + e86629bf-49ef-005e-3733-3859be33c0db + MV3.101 MV Storage 74 + 0 + -0.2477 + + + 0 + + 2a53fa1e-3321-ee2a-a5b8-f23ab2df2574 + MV3.101 MV Storage 86 + 0 + -0.2477 + + + 0 + + c4f53510-5208-47ba-2a7e-7c8d512a723e + MV3.101 MV Storage 15 + 0 + -0.2252 + + + 0 + + c2351f23-900d-a5f9-3ac7-caf7ce7ddb29 + MV3.101 MV Storage 129 + 0 + -0.0508 + + + 0 + + 7b1244df-ad19-cc4e-95dd-e68452c14977 + MV3.101 MV Storage 132 + 0 + -0.0508 + + + 0 + + 1f64842d-4062-4c3c-f9df-89627c0327f6 + MV3.101 MV Storage 26 + 0 + -0.2252 + + + 0 + + edeccb4c-b1f0-2125-9d6f-363e768b39dc + MV3.101 MV Storage 122 + 0 + -0.0508 + + + 48b8834d-b984-f8cc-d7d5-2894dd4274af + patl + + true + + + + a0fc8bf8-eb5b-6ea2-78f0-70ca6f768671 + highVoltage + + true + + + + a6847f87-bb8d-42bd-f395-cc837b190037 + lowVoltage + + true + + + + + 0 + 52486.4 + 100000 + 9999 + 0.1 + 0.1 + 1 + 41989.1 + 0 + -9999 + 0.1 + 0.1 + 1 + 38f16956-c45a-489d-8872-b9fff788d254 + HV1 grid at MV3.101 + + + + d3f7bf98-bcea-1f0e-5ce4-93ae1e0e6afe + MV3.101 Load 51 + + + 64b79e2e-0f98-48c1-2a00-887bb03c5b11 + MV3.101 Load 51 + + + + 40795be0-5cd7-2962-a710-bdb75a5c42da + MV3.101 Load 51 + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_GeographicalLocation.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_GeographicalLocation.xml new file mode 100644 index 00000000..61f08600 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_GeographicalLocation.xml @@ -0,0 +1,1545 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/GeographicalLocation-EU/3.0 + 2015-12-31T23:00:00Z + + + b483760a-b9d2-ddbb-d4ff-41b2d7bedca2 + Location + + + + + 362ca732-c347-2af9-4442-4306293fec9c + Location + + + + + 0a2f1508-9a82-9abb-40b4-7bcc79ab9658 + Location + + + + + a2078538-84bd-4a30-b25f-bc91f93dd1c6 + Location + + + + + b5220bc0-8a64-b8a2-20bd-a8a95f1e6b01 + Location + + + + + 138ec99f-c9ad-e5da-a521-9ab2276e924c + Location + + + + + 44910478-a89d-a460-b88b-f04da23d5837 + Location + + + + + c484c629-efde-0ef0-0333-a569f240e193 + Location + + + + + 2dfdf23f-2d47-de35-fd7e-4e9e8da7c529 + Location + + + + + f81a777b-4a7c-0bee-b109-bcb7987014bc + Location + + + + + e5b2911e-17e9-86f2-1577-aec5cfce34f9 + Location + + + + + 6937ad0a-2c4e-2b30-93a5-1d6363315f8c + Location + + + + + 2ba3e2d5-5e93-fbc6-7829-7e2f02fdf1f7 + Location + + + + + 5b496714-e60d-0f5f-bc98-44b39326abf5 + Location + + + + + 603aa808-ef90-54e0-79c8-42acf47c2b9c + Location + + + + + bcceb79a-06d3-4d74-e541-50c47b243539 + Location + + + + + a5eddd74-cd54-d3cf-459b-892c205eb3aa + Location + + + + + fd245b24-c27a-37c0-25a2-747b929f64cd + Location + + + + + 7cccc335-4ee4-a858-d29e-79364486994d + Location + + + + + fea462e6-125a-2833-b450-632258eb61e6 + Location + + + + + 35b209fc-b4f2-405b-d5d6-d2698f1705ca + Location + + + + + 7f865305-b00e-ef96-6a89-cb39b74548fc + Location + + + + + ffa2da78-132b-20a7-0014-3e2852a871a5 + Location + + + + + fa0776fa-031b-5e62-3143-6df9b7b223e6 + Location + + + + + b7431b59-e267-0f1c-b9e0-1087c8c6e51c + Location + + + + + 696c3de4-cc29-b361-a1e1-f764dd80b4f5 + Location + + + + + dcfb5390-9378-2353-5c7f-1915b393c86e + Location + + + + + 038813d0-d1b6-7db0-7407-a69f934ff70d + Location + + + + + 32ba8c96-9b1a-5b46-a849-82aec653d530 + Location + + + + + 2b5104bc-6a01-447a-0627-ab9c44c69d66 + Location + + + + + 6c36b8ad-6cc8-4032-59f5-a6ade9cf1dc9 + Location + + + + + cf747a79-acd6-2363-08a1-e7d18b8bb8ac + Location + + + + + 29ec11d4-d72d-e85b-d24e-db5987098ea9 + Location + + + + + ceb20ac9-d833-f9cf-a13d-fcf65aa91a68 + Location + + + + + 3dc54270-d435-b571-48f9-8bae0dc84535 + Location + + + + + 91f7d3e2-42b2-895c-4895-f721cd520661 + Location + + + + + 07218b68-f6d1-148f-6749-126502cbf5e9 + Location + + + + + 8fe2160c-03d3-2b3b-0e95-2f3e1d3d1e7f + Location + + + + + 2b8a580a-b963-47e3-c422-c00f045377ea + Location + + + + + 29a3942b-6910-6661-cad0-473cf2d8f2da + Location + + + + + 7ae82203-1087-5274-cd6d-34a72e1b582b + Location + + + + + 5be7069a-457c-b2da-50c5-6c4798db5457 + Location + + + + + 62ac9090-4cda-b7f2-1779-c85714489a90 + Location + + + + + 43289421-d85a-c463-7680-59c02b094f49 + Location + + + + + 9ea87fb0-2a3d-8d00-af75-67a5f8caec87 + Location + + + + + e98b38de-8428-ab11-396b-4a69060d839e + Location + + + + + 3d900742-73f1-3a77-cbb9-9a3e45ca3ecb + Location + + + + + dfd575fd-93e1-963b-de6f-a3b0b15bf655 + Location + + + + + a3b7c5bd-d507-a2a4-9ee3-53b9d07754ed + Location + + + + + eb1411f1-f5a9-cefe-0275-68d055baf6a9 + Location + + + + + 771ff1d0-7e6b-5ea3-3fe5-2b56291a792f + Location + + + + + 01cba879-efa5-f613-d565-6e9e622f1e46 + Location + + + + + 3d1e2ceb-9bef-698f-4cca-a32537403849 + Location + + + + + 3adae4f3-3c02-8e37-423a-e9758346fb5b + Location + + + + + 45bc16b3-2dc7-a118-27e7-89da6d8f2ead + Location + + + + + 0c1d205f-7607-e785-a06e-947591632a52 + Location + + + + + 82ef487c-9279-985d-f465-7f0d73de3e17 + Location + + + + + 92331800-ed68-cec0-ecd8-973ac5563fcb + Location + + + + + aa75a039-e889-0f45-c3bb-eef3a9c2385e + Location + + + + + 3eaf2c1f-171d-8c0a-d124-e39480997902 + Location + + + + + 7374faef-1d72-3146-15b1-d3604350c161 + Location + + + + + 080e77f2-25e8-7a52-e452-03419954bbe7 + Location + + + + + ac66a67f-a46d-9aa6-28a9-9067f5b186b4 + Location + + + + + 89891d29-4c84-5907-8116-86c25384cc6d + Location + + + + + 7b4bbbfe-6645-3b65-1ef0-6c7ae0931fe4 + Location + + + + + a69b467c-00ba-4505-4951-71b7180d7dab + Location + + + + + aed85988-4a10-07bf-9ea9-ea2f886acbd5 + Location + + + + + a62488c2-f94e-ef6d-e621-5be0d30b1bd3 + Location + + + + + 73cea814-5ad5-2d9c-fb2d-07392a78ca3a + Location + + + + + aa9c9ff3-a0b8-8882-b07d-515bb6a74f28 + Location + + + + + 8fb3be36-2241-b491-4098-a37fd88a16ec + Location + + + + + 5ce675d6-3db1-0bda-660d-4dec9e8b496a + Location + + + + + 054fab60-e5c1-c33a-85a8-b189c78c9369 + Location + + + + + a073f4db-2514-4803-5bd3-88328170d8e8 + Location + + + + + f1748a57-610b-b373-2dc7-28e279d71c50 + Location + + + + + e00b629e-ce4f-70c8-b020-4057d4b578a6 + Location + + + + + 9fc4b6a4-14a0-4153-da54-f29c35426356 + Location + + + + + 8c4e57ab-a7cb-f7c7-2764-e5ed2b7aa929 + Location + + + + + ed43e28c-b111-05c8-d487-fe46697afc0e + Location + + + + + c5178fa4-8652-0f7f-4cfc-d42bba1d5c79 + Location + + + + + 2915729d-898f-294b-f6b9-74fa84b26d66 + Location + + + + + 05a47cec-081e-d37a-3ed6-6b6f7740fa57 + Location + + + + + 909bd61e-3def-af8e-77e7-311fae590984 + Location + + + + + e7f7e0a5-cca2-b130-ed13-d6439f2de843 + Location + + + + + eb4c8eed-a91a-79b6-beb0-6bf583cd3286 + Location + + + + + dbe66f01-8f41-197d-8d7a-131eb330682d + Location + + + + + d23d3663-75c8-e05c-0e57-1c5e94d48427 + Location + + + + + bcbe9133-ccba-e907-532e-72284e294f7b + Location + + + + + aa3b924c-d82a-9a41-0bbd-77e54bcddfc3 + Location + + + + + 208f969a-3ce2-82a8-0951-8ecf2e14b431 + Location + + + + + 025dae75-17fe-6eec-fa46-ffeeacc53c78 + Location + + + + + 8fda584f-6499-2c0f-a8a8-3a894faf6abb + Location + + + + + 8127120f-8781-067a-5c2a-43f71bc3eafb + Location + + + + + 55a76554-f141-b546-9898-1cd025537299 + Location + + + + + 8a8b742e-a1e4-356a-78c9-4b170c395e6d + Location + + + + + 51a8ef06-b276-adff-5c33-803f52df013a + Location + + + + + 4a8e7844-4134-bfad-eed5-4a89511c9924 + Location + + + + + d9acab16-9356-fe4e-6416-7c72e83d459e + Location + + + + + a7580b49-a461-4991-6184-1b7e729abbd7 + Location + + + + + 8f08f06d-b49d-d457-7261-3ad8b26e84dd + Location + + + + + 2260678f-8856-344a-368f-c71d1e36c025 + Location + + + + + 51c960a0-d158-b7df-f44c-3d1b9edcb57b + Location + + + + + 593628b8-4ceb-1539-9cbc-bd9401691ad5 + Location + + + + + e756834f-a710-7a19-2527-632669abb984 + Location + + + + + c6d4de32-5998-41fe-2e7b-f44f7a6d2e05 + Location + + + + + f5d7484f-edd1-e4f1-b479-0a632ec0690a + Location + + + + + 0a02ba87-4b30-c552-4d1b-e8a9dec20c34 + Location + + + + + 822fd9bc-32b5-cf15-22ba-27f41c055046 + Location + + + + + 97f6a093-5f8c-435a-3e36-562f8241aaf5 + Location + + + + + 6a0e1b12-1f58-a0d3-2ad2-cb46ab0c9c87 + Location + + + + + 077d7424-f1b0-050f-c5f6-0fbd5beb4142 + Location + + + + + 236dcfdd-8da7-a191-8798-29501314eb03 + Location + + + + + 61afb8ff-e58b-ab64-3314-c09d89e6e8a5 + Location + + + + + 907a6b9f-6564-8d02-77c6-91f05a7dcb74 + Location + + + + + b3a4b2d4-e9dd-c853-6979-b1d38f11c57b + Location + + + + + 4c41d6aa-7e54-156b-73e0-5a3a7dac3e5e + Location + + + + + 4e968fe5-a33d-64ba-26d2-e407b7353402 + Location + + + + + dbc71e81-313f-a2f6-86a3-a489334973fc + Location + + + + + 47f752b1-5c7f-7144-cecf-2cd29b329337 + Location + + + + + fe0cbd36-7e9d-24bf-4f69-7b35e6acdd54 + Location + + + + + d722af41-9945-2f94-49cc-86fcb0b1cd23 + Location + + + + + e838e801-ae05-cb60-e912-71e76aa35b4a + Location + + + + + e6ee13da-1c44-ca62-6fb8-f69656d4de20 + Location + + + + + 3b811ac8-ee08-84f6-fca5-69cedc554fae + Location + + + + + 60ca97a2-28f5-9e69-c19c-4874067b3eb8 + Location + + + + + 905a2de4-e5ff-9112-556f-5be349bfbf90 + Location + + + + + 8374d116-5b8e-6281-595a-8d7d9c44e032 + Location + + + + + ee5448b7-b8a6-8efc-9658-8986fd7a0ade + Location + + + + + 5bdd9eb0-7e38-b80e-d240-307480a8c0d5 + Location + + + + + d9ccdf50-99be-93dd-b9dc-90a564e40666 + Location + + + + + aab3db61-a513-6a09-409d-00174c12cd82 + Location + + + + + 8134b1d2-2dcb-5ff6-ed11-e0b5a715441f + Location + + + + + 14c68856-1c0a-03d4-9950-3f1d4ef0626a + Location + + + + + 1113a0ec-923f-9941-aaf3-4cea5b269a82 + Location + + + + + 4bbc2b00-4a69-1929-849c-5d0f4ff1b746 + Location + + + + + 01fe9beb-1385-a55e-b951-0dbd62cd2b31 + Location + + + + + 042a39db-80e0-d5ca-2e02-f31fd1e8276c + Location + + + + + 072e9f3d-e283-22e4-2ec5-4f88ed5e1190 + Location + + + + + 89e61139-ad6c-1cf3-ab99-67b34a29d340 + Location + + + + + + 11.3762 + 53.6454 + + + + 11.3751 + 53.6543 + + + + 11.3773 + 53.6479 + + + + 11.3746 + 53.6469 + + + + 11.3692 + 53.6456 + + + + 11.3669 + 53.6389 + + + + 11.3692 + 53.6456 + + + + 11.368 + 53.6417 + + + + 11.3578 + 53.6498 + + + + 11.3632 + 53.6353 + + + + 11.3732 + 53.6454 + + + + 11.3685 + 53.6598 + + + + 11.3805 + 53.6502 + + + + 11.3794 + 53.6534 + + + + 11.357 + 53.6504 + + + + 11.3668 + 53.633 + + + + 11.3721 + 53.6371 + + + + 11.3682 + 53.6511 + + + + 11.3674 + 53.6434 + + + + 11.3683 + 53.6445 + + + + 11.3707 + 53.6425 + + + + 11.3686 + 53.6436 + + + + 11.3752 + 53.6481 + + + + 11.3686 + 53.6572 + + + + 11.3682 + 53.6457 + + + + 11.3745 + 53.6464 + + + + 11.3784 + 53.6422 + + + + 11.3638 + 53.6261 + + + + 11.3584 + 53.6531 + + + + 11.3524 + 53.6537 + + + + 11.372 + 53.6492 + + + + 11.3519 + 53.6559 + + + + 11.3783 + 53.6431 + + + + 11.3529 + 53.6567 + + + + 11.3692 + 53.6456 + + + + 11.3708 + 53.6421 + + + + 11.372 + 53.6453 + + + + 11.3715 + 53.6411 + + + + 11.3719 + 53.638 + + + + 11.3724 + 53.6341 + + + + 11.3561 + 53.6516 + + + + 11.3773 + 53.6499 + + + + 11.3692 + 53.6456 + + + + 11.3776 + 53.6415 + + + + 11.3739 + 53.6297 + + + + 11.3626 + 53.6303 + + + + 11.3739 + 53.6306 + + + + 11.3535 + 53.6521 + + + + 11.364 + 53.6448 + + + + 11.3738 + 53.6456 + + + + 11.3661 + 53.6363 + + + + 11.3649 + 53.645 + + + + 11.3819 + 53.6481 + + + + 11.3664 + 53.637 + + + + 11.3511 + 53.6477 + + + + 11.3561 + 53.6524 + + + + 11.3737 + 53.6286 + + + + 11.3683 + 53.6236 + + + + 11.3581 + 53.6545 + + + + 11.3733 + 53.6328 + + + + 11.3833 + 53.6488 + + + + 11.3767 + 53.641 + + + + 11.3701 + 53.647 + + + + 11.351 + 53.6494 + + + + 11.3634 + 53.6579 + + + + 11.3798 + 53.6455 + + + + 11.374 + 53.6538 + + + + 11.3609 + 53.6441 + + + + 11.3686 + 53.6592 + + + + 11.3755 + 53.6467 + + + + 11.3697 + 53.6457 + + + + 11.3748 + 53.6475 + + + + 11.3518 + 53.655 + + + + 11.3521 + 53.6508 + + + + 11.3724 + 53.6525 + + + + 11.3702 + 53.6321 + + + + 11.366 + 53.6416 + + + + 11.3815 + 53.6429 + + + + 11.3767 + 53.6438 + + + + 11.369 + 53.6451 + + + + 11.3683 + 53.6489 + + + + 11.3809 + 53.6455 + + + + 11.3776 + 53.6454 + + + + 11.3667 + 53.648 + + + + 11.3682 + 53.6541 + + + + 11.3714 + 53.6252 + + + + 11.3811 + 53.6501 + + + + 11.3561 + 53.6568 + + + + 11.3656 + 53.6346 + + + + 11.3638 + 53.6514 + + + + 11.3665 + 53.6453 + + + + 11.3627 + 53.6482 + + + + 11.3637 + 53.6544 + + + + 11.3833 + 53.6472 + + + + 11.3715 + 53.6397 + + + + 11.3627 + 53.6312 + + + + 11.3733 + 53.6409 + + + + 11.3544 + 53.6443 + + + + 11.3692 + 53.6456 + + + + 11.3604 + 53.6489 + + + + 11.3691 + 53.6462 + + + + 11.3636 + 53.634 + + + + 11.3641 + 53.6477 + + + + 11.3682 + 53.6531 + + + + 11.3706 + 53.6454 + + + + 11.3687 + 53.6585 + + + + 11.3627 + 53.6285 + + + + 11.3721 + 53.6464 + + + + 11.3701 + 53.6477 + + + + 11.3669 + 53.6465 + + + + 11.3708 + 53.6505 + + + + 11.3688 + 53.6469 + + + + 11.366 + 53.624 + + + + 11.3521 + 53.6461 + + + + 11.3656 + 53.6492 + + + + 11.3633 + 53.6332 + + + + 11.3699 + 53.6441 + + + + 11.3832 + 53.6464 + + + + 11.3698 + 53.6485 + + + + 11.364 + 53.6384 + + + + 11.381 + 53.6428 + + + + 11.3789 + 53.6429 + + + + 11.3784 + 53.6481 + + + + 11.3646 + 53.662 + + + + 11.3558 + 53.6439 + + + + 11.3779 + 53.6501 + + + + 11.3619 + 53.6443 + + + + 11.3777 + 53.6544 + + + + 11.3654 + 53.6406 + + + + 11.3692 + 53.6315 + + + + 11.3663 + 53.642 + + + + 11.3687 + 53.6459 + + + + 11.3577 + 53.6437 + + + + 11.3825 + 53.6434 + + + + 11.3756 + 53.6545 + + + + 11.3805 + 53.6519 + + + + 11.3752 + 53.6456 + + + + 11.3807 + 53.651 + + + + 11.3636 + 53.6603 + + + urn:ogc:def:crs:EPSG::4326 + 85076d64-282b-1436-47f5-2881bf558ac9 + WGS-84 + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_StateVariables.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_StateVariables.xml new file mode 100644 index 00000000..25adbb21 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_StateVariables.xml @@ -0,0 +1,7374 @@ + + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/StateVariables-EU/3.0 + 2015-12-31T23:00:00Z + + + + -0.1722 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -1.26861 + -0.785977 + + + + 0.4611 + 0.1823 + + + + 3.34243 + 2.26549 + + + + 4.13229 + 2.37866 + + + + -3.20481 + -2.01962 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 4.11991 + 2.9469 + + + + 0 + 0 + + + + 1.68323 + 1.06831 + + + + -1.43282 + -0.827912 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.668152 + -0.43973 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 3.49047 + 2.02278 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 3.50242 + 2.06568 + + + + 2.70683 + 1.53544 + + + + 5.02707 + 3.44131 + + + + 0 + 0 + + + + 1.39924 + 1.04876 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 1.35 + 0.719431 + + + + 8.53352 + 5.27119 + + + + 0.5528 + 0.2201 + + + + -11.7292 + -7.48603 + + + + 0.5523 + 0.221 + + + + -0.54236 + -1.97174 + + + + 2.99403 + 1.63627 + + + + -4.24952 + -2.84279 + + + + -4.95431 + -2.84923 + + + + 0.863438 + 0.607626 + + + + 0 + 0 + + + + 0.17476 + 1.75472 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.78805 + -1.64889 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + -1.60097 + -1.13279 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -6.23469 + -3.64602 + + + + -0.1712 + 0 + + + + 7.75339 + 4.80529 + + + + 0 + -0.00542031 + + + + 0.901009 + 0.564977 + + + + 3.1762 + 2.13167 + + + + -6.05374 + -3.49943 + + + + 0.6206 + 0.2471 + + + + -2.53988 + -1.50045 + + + + 3.21017 + 2.01901 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -25.5067 + -19.7782 + + + + 0 + -0.00776921 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -3.49938 + -2.06615 + + + + 2.58788 + 1.63968 + + + + -0.1847 + 0 + + + + 0.3373 + 0.134 + + + + -0.4494 + -0.24144 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + 0.367652 + 0.21963 + + + + 0.7667 + 0.565985 + + + + 4.58671 + 2.62823 + + + + 0 + 0 + + + + 25.5067 + 19.7782 + + + + -0.2523 + 0 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 3.99904 + 2.42726 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -2.54016 + -1.49695 + + + + 0.449495 + 0.234241 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 2.91613 + 1.71514 + + + + 0.5523 + 0.221 + + + + 3.72334 + 3.79498 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -0.89883 + -0.492988 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -3.45343 + -2.07035 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 1.67087 + 1.13699 + + + + -0.1847 + 0 + + + + -2.25261 + -1.29009 + + + + 2.13401 + 1.31599 + + + + 0.698276 + 0.475689 + + + + 0.3373 + 0.134 + + + + -3.36163 + -1.85727 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -41.835 + -30.8956 + + + + 0.780028 + 0.501718 + + + + 0.5523 + 0.221 + + + + 2.7904 + 1.64822 + + + + 4.16911 + 2.5626 + + + + 0.5523 + 0.221 + + + + 0.817288 + 0.456181 + + + + 0.2649 + 0.1047 + + + + 0 + -0.00894734 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + -3.67461 + -2.12876 + + + + 1.51617 + 0.940017 + + + + -0.69788 + -0.478547 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 2.91433 + 1.71984 + + + + -0.1722 + 0 + + + + -2.05083 + -1.28931 + + + + -0.1847 + 0 + + + + -2.17116 + -1.27731 + + + + 0.465724 + 0.349327 + + + + 4.54322 + 2.78629 + + + + 0 + 0 + + + + 1.30047 + 0.912694 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + -3.3336 + -1.93236 + + + + -1.18482 + -0.685304 + + + + 0.982787 + 0.587219 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.4219 + 0.1667 + + + + 5.43175 + 3.11287 + + + + 0.6206 + 0.2471 + + + + 4.96845 + 2.85713 + + + + -0.1722 + 0 + + + + -0.779824 + -0.504596 + + + + 0 + -0.00734936 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -3.82339 + -2.29166 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -1.29958 + -0.914913 + + + + -8.53352 + -5.27119 + + + + -3.01363 + -3.30247 + + + + -1.7176 + -0.940431 + + + + -13.7061 + -9.53355 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.56499 + 1.18199 + + + + 1.96722 + 1.18413 + + + + 0.3826 + 0.1512 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.31361 + 0.85164 + + + + -3.3413 + -2.26567 + + + + 25.5067 + 19.7782 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + -0.0100601 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -1.63469 + -0.931424 + + + + 0 + 0 + + + + 1.26709 + 0.710424 + + + + 0 + 0 + + + + 13.7061 + 9.53355 + + + + 1.30204 + 0.91734 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 2.54045 + 1.39023 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.33428 + 1.93215 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.19394 + -2.83506 + + + + -4.53671 + -2.7836 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.998776 + -0.695789 + + + + -0.1712 + 0 + + + + -5.0247 + -3.43977 + + + + -1.66964 + -1.13834 + + + + 0 + 0 + + + + 2.33865 + 1.40179 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + -0.1722 + 0 + + + + 2.75541 + 1.77252 + + + + 0.6206 + 0.2471 + + + + 2.17228 + 1.27945 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.3005 + -0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.49537 + -0.394721 + + + + -0.982388 + -0.590181 + + + + 2.00509 + 1.14725 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.735365 + 0.437754 + + + + -0.174431 + -1.75644 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1712 + 0 + + + + -0.9318 + -0.699985 + + + + -1.30076 + -0.92012 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.817043 + -0.458999 + + + + 0 + 0 + + + + -25.4353 + -17.0196 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 1.14789 + 0.72115 + + + + 0 + -0.0135983 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.165114 + 0.128077 + + + + 0 + 0 + + + + 6.61943 + 3.88129 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.3676 + -0.221 + + + + 0.495554 + 0.389408 + + + + 0 + 0 + + + + -4.58169 + -2.62576 + + + + -1.34873 + -0.724268 + + + + 0.834496 + 0.567395 + + + + 0.3373 + 0.134 + + + + -3.48803 + -2.02234 + + + + 0 + 0 + + + + -2.21706 + -1.42197 + + + + -0.1712 + 0 + + + + -2.669 + -1.66884 + + + + 0 + -0.00331697 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 0.3373 + 0.134 + + + + 3.3633 + 1.85728 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -5.41785 + -3.10423 + + + + -1.18477 + -0.684854 + + + + 4.08442 + 2.70879 + + + + -2.5632 + -3.05544 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.58658 + -1.64056 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.999079 + 0.694813 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 1.60342 + 1.12932 + + + + -1.68121 + -1.07264 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + 1.09823 + 0.829533 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.91223 + -1.71579 + + + + 0.3373 + 0.134 + + + + 2.00606 + 1.14331 + + + + -4.16414 + -2.56126 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.28373 + -1.93614 + + + + -0.4494 + -0.240175 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5528 + 0.2201 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.899329 + 0.477168 + + + + 3.82754 + 2.29205 + + + + 0.3373 + 0.134 + + + + -1.09711 + -0.833031 + + + + 0.5528 + 0.2201 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.73522 + 0.964081 + + + + 0.66847 + 0.437425 + + + + 1.80119 + 1.0517 + + + + 2.67186 + 1.66753 + + + + -1.37171 + -2.37272 + + + + -0.898895 + -0.481341 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.9457 + -2.80962 + + + + 25.5067 + 19.7782 + + + + 0 + 0 + + + + 0.33027 + 0.260721 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + 1.63648 + 0.927454 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.85392 + -2.27338 + + + + 3.95233 + 2.81188 + + + + -0.1722 + 0 + + + + 3.35393 + 3.57312 + + + + 0.367638 + 0.218627 + + + + 1.57053 + 1.00305 + + + + 0 + 0 + + + + -0.614533 + -0.373486 + + + + -2.88283 + -1.68636 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0.982509 + 0.588278 + + + + -0.4494 + -0.238153 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.165114 + 0.124421 + + + + 0.449543 + 0.234456 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -3.71003 + -2.48649 + + + + -0.1722 + 0 + + + + 0.3373 + 0.134 + + + + -6.61237 + -3.87524 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + 0.1864 + 0.0737 + + + + 0.898977 + 0.491601 + + + + 2.08915 + 1.14449 + + + + -1.73009 + -1.31599 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + -0.00398495 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + 0.6206 + 0.2471 + + + + -1.82354 + -2.61624 + + + + 6.24477 + 3.65424 + + + + -2.70313 + -1.53637 + + + + -0.1722 + 0 + + + + 0.61465 + 0.370084 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + 3.24461 + 1.89548 + + + + 0.614724 + 0.370596 + + + + 0 + -0.00566049 + + + + -16.2869 + -10.0765 + + + + -0.1847 + 0 + + + + 0.2061 + 0.0815 + + + + -3.99264 + -2.42605 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0.6206 + 0.2471 + + + + -4.11743 + -2.94588 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1712 + 0 + + + + -5.59685 + -3.24687 + + + + 0.6206 + 0.2471 + + + + -0.898943 + -0.481556 + + + + 0.543006 + 1.96942 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -1.88345 + -1.0713 + + + + -2.08709 + -1.1476 + + + + 2.84161 + 1.80018 + + + + 0 + 0 + + + + -0.766224 + -0.569427 + + + + -0.1712 + 0 + + + + 2.05196 + 1.28797 + + + + 0.449433 + 0.239486 + + + + 0.449443 + 0.237999 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -0.1722 + 0 + + + + -0.1847 + 0 + + + + -0.3676 + -0.221 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.55397 + 0.899723 + + + + 0 + 0 + + + + -3.18259 + -3.43719 + + + + -1.73371 + -0.966158 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 6.06959 + 3.51202 + + + + 0.5523 + 0.221 + + + + -2.00408 + -1.14845 + + + + 3.40589 + 2.45273 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -2.29911 + -1.44999 + + + + -4.08055 + -2.70774 + + + + -0.2523 + 0 + + + + -0.1722 + 0 + + + + 16.3283 + 11.1174 + + + + 3.18594 + 3.43811 + + + + 0.6206 + 0.2471 + + + + 0 + 0 + + + + 1.82634 + 2.61406 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 1.06522 + 0.606912 + + + + -0.817039 + -0.465854 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.532946 + 0.346011 + + + + 2.21898 + 1.41956 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + -2.98985 + -1.63733 + + + + -0.1722 + 0 + + + + -2.75298 + -1.77368 + + + + 1.88598 + 1.15728 + + + + 0.89937 + 0.477573 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + 0.300572 + 0.216385 + + + + 2.8842 + 1.68526 + + + + 0 + 0 + + + + 0.6206 + 0.2471 + + + + -1.135 + -0.787495 + + + + -0.863154 + -0.610408 + + + + 3.85729 + 2.27365 + + + + 0 + -0.00410906 + + + + 0.3373 + 0.134 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -2.00337 + -1.14682 + + + + -0.465672 + -0.350385 + + + + 0 + 0 + + + + 0 + 0 + + + + 0 + 0 + + + + 3.45579 + 2.07066 + + + + -1.56964 + -1.00451 + + + + 2.1956 + 2.83444 + + + + -0.614573 + -0.374222 + + + + 0.817222 + 0.464304 + + + + 0.6206 + 0.2471 + + + + -1.55306 + -0.9022 + + + + 1.88501 + 1.06909 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.2523 + 0 + + + + -0.2523 + 0 + + + + 0 + 0 + + + + 3.28833 + 1.93635 + + + + -0.532714 + -0.349077 + + + + -0.1712 + 0 + + + + -1.26658 + -0.712601 + + + + -7.75339 + -4.80529 + + + + 0 + 0 + + + + -1.88377 + -1.16102 + + + + 0 + 0 + + + + -0.330214 + -0.264415 + + + + -1.31284 + -0.854726 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.532714 + -0.345421 + + + + 0 + 0 + + + + 0 + 0 + + + + -3.85807 + -2.24378 + + + + -2.33538 + -1.40438 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -1.56434 + -1.18276 + + + + 0 + 0 + + + + -0.1651 + -0.134 + + + + -3.35104 + -3.57211 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.51549 + -0.94215 + + + + 2.17256 + 1.27595 + + + + -0.4494 + -0.2471 + + + + -4.56931 + -3.194 + + + + -0.1722 + 0 + + + + -3.2398 + -1.89532 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.39873 + -1.04963 + + + + 0.165114 + 0.130415 + + + + 0.5528 + 0.2201 + + + + -2.17019 + -1.28125 + + + + -0.1722 + 0 + + + + 2.25373 + 1.28927 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0.6206 + 0.2471 + + + + -0.900546 + -0.567011 + + + + 1.43405 + 0.824195 + + + + 0.5523 + 0.221 + + + + 3.7806 + 2.67562 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + -1.43219 + -0.834319 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + -0.1651 + -0.126231 + + + + 0 + 0 + + + + -3.77349 + -2.67373 + + + + 1.26914 + 0.78441 + + + + 0 + 0 + + + + 1.73072 + 1.31544 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + -2.13232 + -1.31813 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -2.53855 + -1.39159 + + + + 0.6206 + 0.2471 + + + + -4.12651 + -2.37645 + + + + -0.1712 + 0 + + + + 0.53278 + 0.344547 + + + + 11.7292 + 7.48603 + + + + -0.1722 + 0 + + + + 2.56423 + 3.05537 + + + + 0 + 0 + + + + 0 + -0.00460465 + + + + -3.72153 + -3.79412 + + + + 0.5523 + 0.221 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 2.54463 + 1.49479 + + + + 0.5523 + 0.221 + + + + 0.5523 + 0.221 + + + + 0.6206 + 0.2471 + + + + -0.1722 + 0 + + + + -0.98225 + -0.591084 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.1722 + 0 + + + + -0.1722 + 0 + + + + 3.01749 + 3.30319 + + + + -0.1847 + 0 + + + + -0.1847 + 0 + + + + -0.1712 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 2.54284 + 1.49926 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + -0.00692537 + + + + 0.449473 + 0.240222 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + -0.4494 + -0.239751 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.3373 + 0.134 + + + + 0.6206 + 0.2471 + + + + 0.932007 + 0.699031 + + + + 5.60434 + 3.25233 + + + + 3.71295 + 2.48674 + + + + 0.5528 + 0.2201 + + + + 0.3373 + 0.134 + + + + -0.1847 + 0 + + + + 0 + 0 + + + + -0.1847 + 0 + + + + 0.5523 + 0.221 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + -0.4494 + -0.2471 + + + + 0 + 0 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + 0 + 0 + + + + 0 + 0 + + + + -2.9 + 0 + + + + -2.91044 + -1.72026 + + + + 0 + 0 + + + + -0.1651 + -0.129891 + + + + -0.1722 + 0 + + + + -0.735238 + -0.439627 + + + + -1.14763 + -0.722718 + + + + -0.1722 + 0 + + + + -0.1712 + 0 + + + + 0.44943 + 0.245888 + + + + -0.4494 + -0.243783 + + + + -0.1722 + 0 + + + + 1.18601 + 0.680958 + + + + 0 + 0 + + + + 0 + 0 + + + + -16.3283 + -11.1174 + + + + 1.43309 + 0.831512 + + + + 16.3283 + 11.1174 + + + + -1.80069 + -1.05251 + + + + -3.4016 + -2.45243 + + + + -0.1847 + 0 + + + + 3.86057 + 2.24453 + + + + 3.67711 + 2.12935 + + + + 0.5523 + 0.221 + + + + 0.3373 + 0.134 + + + + 4.5753 + 3.19727 + + + + -0.1712 + 0 + + + + -0.1712 + 0 + + + + -0.1847 + 0 + + + + -3.17395 + -2.13238 + + + + -1.06447 + -0.611573 + + + + 0.3373 + 0.134 + + + + 0.3373 + 0.134 + + + + 1.71949 + 0.936662 + + + + 0 + 0 + + + + 0.5523 + 0.221 + + + + -0.1712 + 0 + + + + -0.83357 + -0.571425 + + + + -0.1847 + 0 + + + + 1.13566 + 0.78612 + + + + 2.3014 + 1.44784 + + + + -0.1722 + 0 + + + + -1.96629 + -1.1857 + + + + -0.1847 + 0 + + + + 4.25432 + 2.84444 + + + + 0 + 0 + + + + -2.83696 + -1.80153 + + + + 0 + 0 + + + + -0.1722 + 0 + + + + 0 + 0 + + + + 0.449439 + 0.244854 + + + + -0.1712 + 0 + + + + 1.18546 + 0.6812 + + + + 1.37414 + 2.36914 + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + true + + + + false + + + + false + + + + false + + + + false + + + + false + + + + false + + + + true + + + + true + + + + false + + + + true + + + + -1 + + + + -1 + + + + -154.432 + 9.62371 + + + + -154 + 9.7983 + + + + -152.575 + 10.0693 + + + + -154.298 + 9.71759 + + + + -152.591 + 10.0336 + + + + -154.084 + 9.80434 + + + + -154.053 + 9.8326 + + + + -154.014 + 9.86069 + + + + -152.589 + 10.0214 + + + + -154.412 + 9.63875 + + + + -152.744 + 9.93874 + + + + -152.57 + 10.0511 + + + + -152.734 + 9.94833 + + + + -154.279 + 9.73008 + + + + -154.372 + 9.6676 + + + + -154.092 + 9.79809 + + + + -152.584 + 10.052 + + + + -152.615 + 10.0489 + + + + -152.553 + 10.0673 + + + + -154.093 + 9.79735 + + + + -154.429 + 9.62557 + + + + -154.23 + 9.76264 + + + + -154.145 + 9.77072 + + + + -154.02 + 9.82524 + + + + -152.651 + 10.0274 + + + + -152.592 + 10.0344 + + + + -154.145 + 9.78026 + + + + -152.586 + 10.0314 + + + + -152.71 + 9.96992 + + + + -154.14 + 9.76705 + + + + -154.046 + 9.8442 + + + + -154.043 + 9.85322 + + + + -154.003 + 9.77098 + + + + -154.334 + 9.69395 + + + + -152.533 + 10.0916 + + + + -154.06 + 9.83288 + + + + -154.018 + 9.84966 + + + + -154.033 + 9.74473 + + + + -154.021 + 9.83237 + + + + -154.421 + 9.63121 + + + + -152.587 + 10.0235 + + + + -153.989 + 9.79388 + + + + -152.546 + 10.0845 + + + + -154.122 + 9.80271 + + + + -152.588 + 10.0278 + + + + -152.581 + 10.0664 + + + + -154.09 + 9.80847 + + + + -152.585 + 10.0496 + + + + -152.643 + 10.0351 + + + + -152.564 + 10.0573 + + + + -152.589 + 10.0222 + + + + -152.583 + 10.0655 + + + + -153.979 + 9.7915 + + + + -152.667 + 10.0118 + + + + -154.031 + 9.85641 + + + + -154.079 + 9.8414 + + + + -154.016 + 9.86788 + + + + -152.59 + 10.0287 + + + + -152.594 + 10.0385 + + + + -152.592 + 10.0316 + + + + -154.024 + 9.86012 + + + + -154.064 + 9.82203 + + + + -152.587 + 10.0486 + + + + -152.579 + 10.0625 + + + + -154.076 + 9.8329 + + + + -154.115 + 9.80239 + + + + -154.044 + 9.85299 + + + + -154.358 + 9.67714 + + + + -154.141 + 9.76548 + + + + -152.592 + 10.0384 + + + + -152.683 + 9.99677 + + + + -154.138 + 9.75906 + + + + -154.132 + 9.74967 + + + + -154.058 + 9.8443 + + + + -154.008 + 9.87503 + + + + -152.581 + 10.0378 + + + + -154.186 + 9.79203 + + + + -152.556 + 10.0805 + + + + -152.574 + 10.0717 + + + + -154.017 + 9.86927 + + + + -152.555 + 10.0766 + + + + -154.044 + 9.73595 + + + + -152.586 + 10.0223 + + + + -154.139 + 9.76496 + + + + -152.511 + 10.1029 + + + + -152.578 + 10.0686 + + + + -154.095 + 9.80402 + + + + -154.021 + 9.83634 + + + + -154.142 + 9.77666 + + + + -154.013 + 9.76187 + + + + -154.132 + 9.751 + + + + -152.703 + 9.97712 + + + + -154.086 + 9.82555 + + + + -154.15 + 9.80871 + + + + -154.014 + 9.81178 + + + + -154.079 + 9.81845 + + + + -154.04 + 9.73947 + + + + -154.394 + 9.65188 + + + + -154.083 + 9.81542 + + + + -152.743 + 9.9399 + + + + -154.143 + 9.78014 + + + + -152.595 + 10.0478 + + + + -152.596 + 10.0435 + + + + -154.072 + 9.82385 + + + + -154.1 + 9.79965 + + + + -154.144 + 9.78405 + + + + -152.727 + 9.9549 + + + + -154.07 + 9.81646 + + + + -152.585 + 10.0215 + + + + -154.425 + 9.62831 + + + + -152.594 + 10.0536 + + + + -152.579 + 10.0626 + + + + -152.741 + 9.94181 + + + + -154.322 + 9.70166 + + + + -152.534 + 10.0886 + + + + -152.546 + 10.0731 + + + + -152.534 + 10.0833 + + + + -152.51 + 10.1028 + + + + -154.09 + 9.7999 + + + + 0 + 112.75 + + + + -153.997 + 9.77644 + + + + -152.572 + 10.0667 + + + + -154.04 + 9.84543 + + + + -154.418 + 9.63371 + + + + -154.091 + 9.82066 + + + + -154.135 + 9.75539 + + + + -154.011 + 9.86979 + + + + -154.024 + 9.75248 + + + + -152.589 + 10.024 + + + + -154.105 + 9.81013 + + + + -154.055 + 9.84593 + + + + -154.036 + 9.86164 + + + + -154.137 + 9.75801 + + + + -152.562 + 10.0778 + + + + -154.145 + 9.78751 + + + + -154.018 + 9.86923 + + + + -154.137 + 9.75571 + + + + -154.099 + 9.80071 + + + + -154.112 + 9.80475 + + + d8a8ae1b-f7b4-484f-95b2-4cbe47c6f13c + Island_001 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_SteadyStateHypothesis.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_SteadyStateHypothesis.xml new file mode 100644 index 00000000..b8ed873e --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_SteadyStateHypothesis.xml @@ -0,0 +1,8289 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/SteadyStateHypothesis-EU/3.0 + 2015-12-31T23:00:00Z + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 99 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 99 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 121 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 9.65 + + + 9.65 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 9.65 + + + 10.55 + + + 10.55 + + + 10.55 + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + + 0 + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + false + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + 416 + + + 416 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 416 + + + 416 + + + 358 + + + 315 + + + 416 + + + 315 + + + 535 + + + 535 + + + 358 + + + 535 + + + 535 + + + 471 + + + 471 + + + 471 + + + 416 + + + 471 + + + 358 + + + 535 + + + 416 + + + 535 + + + 535 + + + 315 + + + 416 + + + 535 + + + 416 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 535 + + + 358 + + + 471 + + + 535 + + + 471 + + + 416 + + + 471 + + + 358 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 535 + + + 416 + + + 471 + + + 416 + + + 535 + + + 471 + + + 471 + + + 358 + + + 535 + + + 471 + + + 535 + + + 358 + + + 535 + + + 471 + + + 535 + + + 471 + + + 358 + + + 358 + + + 315 + + + 535 + + + 471 + + + 471 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 471 + + + 471 + + + 535 + + + 416 + + + 471 + + + 535 + + + 416 + + + 315 + + + 315 + + + 416 + + + 315 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 535 + + + 416 + + + 535 + + + 358 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 416 + + + 315 + + + 315 + + + 315 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 535 + + + 535 + + + 358 + + + 471 + + + 416 + + + 416 + + + 358 + + + 416 + + + 416 + + + 471 + + + 471 + + + 471 + + + 471 + + + 416 + + + 315 + + + 358 + + + 315 + + + 358 + + + 416 + + + 358 + + + 358 + + + 471 + + + 535 + + + 535 + + + 471 + + + 416 + + + 416 + + + 416 + + + 471 + + + 471 + + + 416 + + + 471 + + + 535 + + + 471 + + + 471 + + + 471 + + + 471 + + + 471 + + + 535 + + + 358 + + + 416 + + + 358 + + + 471 + + + 416 + + + 471 + + + 535 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 330.664 + + + 535 + + + 3637.31 + + + 535 + + + 535 + + + 358 + + + 535 + + + 358 + + + 416 + + + 471 + + + 315 + + + 535 + + + 315 + + + 471 + + + 416 + + + 535 + + + 315 + + + 416 + + + 416 + + + 358 + + + 416 + + + 358 + + + 416 + + + 471 + + + 416 + + + 535 + + + 315 + + + 535 + + + 315 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 471 + + + 416 + + + 416 + + + 315 + + + 471 + + + 471 + + + 416 + + + 358 + + + 535 + + + 416 + + + 535 + + + 471 + + + 535 + + + 416 + + + 535 + + + 535 + + + 416 + + + 535 + + + 416 + + + 358 + + + 416 + + + 416 + + + 3637.31 + + + 416 + + + 330.664 + + + 416 + + + 471 + + + 416 + + + 416 + + + 535 + + + 535 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 416 + + + 535 + + + 358 + + + 358 + + + 535 + + + 471 + + + 471 + + + 315 + + + 416 + + + 416 + + + 416 + + + 315 + + + 416 + + + 416 + + + 358 + + + 535 + + + 535 + + + 358 + + + 416 + + + 358 + + + 358 + + + 416 + + + 471 + + + 471 + + + 416 + + + 416 + + + 416 + + + 416 + + + 471 + + + 416 + + + 471 + + + 416 + + + 416 + + + 471 + + + 471 + + + 535 + + + 535 + + + 471 + + + 471 + + + 416 + + + 535 + + + 416 + + + 416 + + + 416 + + + 535 + + + 416 + + + 358 + + + 358 + + + 358 + + + 416 + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3826 + 0.1512 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.4219 + 0.1667 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.4611 + 0.1823 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5528 + 0.2201 + true + + + 0.5528 + 0.2201 + true + + + 0.2649 + 0.1047 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.6206 + 0.2471 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.6206 + 0.2471 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5528 + 0.2201 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.5523 + 0.221 + true + + + 0.6206 + 0.2471 + true + + + 0.1864 + 0.0737 + true + + + 0.6206 + 0.2471 + true + + + 0.2061 + 0.0815 + true + + + 0.5523 + 0.221 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.3373 + 0.134 + true + + + 0.5523 + 0.221 + true + + + true + -1 + + + true + -1 + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -2.9 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.2523 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + 0 + 0 + false + + + true + -0.2523 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + 0 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1712 + 0 + false + + + true + -0.1722 + 0 + false + + + true + -0.1847 + 0 + false + + + true + 0 + 0 + false + + + false + true + 112.75 + + + + true + false + false + + + true + false + true + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + false + + + true + false + true + + + true + true + 0.2 + 10 + + + + true + true + 0.2 + 10 + + + + true + false + true + + + true + false + true + + + true + 0 + 0 + 1 + true + + diff --git a/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Topology.xml b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Topology.xml new file mode 100644 index 00000000..42d70808 --- /dev/null +++ b/cimpy_3/tests/CIGREMV_reference_cgmes_v3_0_Topology.xml @@ -0,0 +1,3890 @@ + + + + + + 2023-08-11T14:15:18Z + ie3.etit.tu-dortmund.de + http://iec.ch/TC57/ns/CIM/Topology-EU/3.0 + 2015-12-31T23:00:00Z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 7ad1e20d-1a25-5de9-9cb7-2bc0fda801c7 + MV3.101 Bus 124 + + + + + 3e5c26a9-64d6-a95e-d136-6d338a3413a5 + MV3.101 Bus 140 + + + + + 9ee3ec6f-01a5-9446-c9e9-87f0ea888022 + MV3.101 Bus 107 + + + + + 274ab182-95bd-4935-a939-be514f32cd14 + MV3.101 Bus 132 + + + + + 20d965d4-547f-ef79-120b-b656e048a56e + MV3.101 Bus 115 + + + + + e5af3d7f-6ae1-7397-e0b7-8237b69b9a10 + MV3.101 Bus 142 + + + + + a16f7dd0-7f98-857f-db89-a4982579e9f0 + MV3.101 BS busbar1A + + + + + 81a99107-4386-39a9-28bf-98490bcb620e + MV3.101 Bus 118 + + + + + c3f045c0-97a7-ea96-5793-88d28e3370dc + MV3.101 Bus 121 + + + + + 16092c18-9fe5-c62e-eb16-9cc5a7b8857a + MV3.101 Bus 117 + + + + + 10f66351-9f7b-9796-9050-7e150a33774f + MV3.101 Bus 128 + + + + + 860ef470-20a2-b265-0227-78ae2a413177 + MV3.101 Bus 130 + + + + + e9193243-8915-51cd-1412-d681773ba481 + MV3.101 Bus 102 + + + + + 7e0612a8-1400-9dc2-a8f4-534440d6d6e9 + MV3.101 Bus 103 + + + + + f07355ed-b22f-0df8-5eb6-de698051abb2 + MV3.101 Bus 100 + + + + + e5c2b140-dd88-395a-e27d-e805c5df923f + MV3.101 Bus 133 + + + + + 705901ec-60fe-4b0c-5e99-9992625a04f6 + MV3.101 Bus 135 + + + + + 61cbb0fe-826f-8581-6d93-5b837cf07bf3 + MV3.101 Bus 137 + + + + + 6f9bd2f6-550a-d37a-a809-2f4f7d13f4ce + MV3.101 Bus 141 + + + + + adbe4a49-1ca1-95a9-da27-52d9d7367390 + MV3.101 Bus 143 + + + + + dd6112b5-4418-6832-721e-3e1cb2f0d6b6 + MV3.101 Bus 134 + + + + + 1ef40479-1002-8c72-74ff-bef8c7258f4e + MV3.101 Bus 123 + + + + + eee1182e-8812-ff35-2903-b816329321a5 + MV3.101 Bus 15 + + + + + 587e8ed2-530b-bec2-8669-fb7bb0f8dbef + MV3.101 Bus 12 + + + + + f9000bee-c959-4676-1d29-2f3a0ce95685 + MV3.101 Bus 33 + + + + + 33585175-2bb8-f709-27cd-236ad4d9e56d + MV3.101 Bus 18 + + + + + 9a645299-fd8b-38a2-c4b2-3f2e04cd4443 + MV3.101 Bus 13 + + + + + ce2891be-ec57-1f2f-fcba-09db40600346 + MV3.101 Bus 138 + + + + + 6dedca80-8d5a-0c24-aae6-93e6831180ab + MV3.101 Bus 125 + + + + + f66a5dc6-18f0-6950-401f-44386aba252f + HV1 Bus 25 + + + + + b03b2b2a-5c69-8b1a-8f8e-092cbf20a907 + MV3.101 Bus 120 + + + + + fda27f50-ab53-288d-8e5c-b03e4fa019eb + MV3.101 Bus 131 + + + + + 50125f3f-c855-c5e4-4e70-eefa978206a8 + MV3.101 Bus 16 + + + + + 750c16c1-5d7d-435a-c8d6-b1454173b4bd + MV3.101 busbar1A + + + + + a796e6b9-35ce-96f3-18ce-2f88758344b7 + MV3.101 Bus 14 + + + + + 4e5e5370-fad2-16ac-5608-410f5461d5d9 + MV3.101 Bus 139 + + + + + 08cdf98a-c831-3c79-7882-0076d9ae8c94 + MV3.101 Bus 106 + + + + + 9722fc63-dcfe-bdd2-f8fb-048c6f7c7f9c + MV3.101 Bus 23 + + + + + 5df9864f-72eb-305a-29ae-b3bc2c60c4a0 + MV3.101 Bus 20 + + + + + 19746bc7-ae5f-1fa1-0ca6-3c0154cccf88 + MV3.101 Bus 126 + + + + + 54822be9-7b18-395d-3421-594966e5ea96 + MV3.101 Bus 119 + + + + + a79d2154-3198-c3a5-d23b-17c8b863d012 + MV3.101 Bus 25 + + + + + aea946ac-9d89-6cd4-d1a9-defea9c4ba22 + MV3.101 Bus 21 + + + + + 5cfb155e-a4f1-7813-0b59-2f091574e4e2 + MV3.101 Bus 127 + + + + + 19f6f5b6-b5e4-c323-f92e-b67587c57eaa + MV3.101 Bus 24 + + + + + e00f21a7-bcf7-091c-8ae4-a348a6c9437c + MV3.101 BS busbar1B + + + + + 553427ff-c6cc-c01c-f0bf-1d500fded0e7 + MV3.101 Bus 27 + + + + + 28aa69aa-fabf-3c95-c671-44b5c6f0a3e4 + MV3.101 Bus 19 + + + + + 364abc8b-32dc-b709-aff1-f0d984f6e4de + MV3.101 Bus 116 + + + + + d17d8bf4-5fd3-9434-2ff5-34fda953baa2 + MV3.101 Bus 122 + + + + + edbac2a9-769a-0e8c-1b93-32c1577b6b2b + MV3.101 Bus 108 + + + + + ff235fd7-7728-639e-991d-68ffb1485a83 + MV3.101 Bus 101 + + + + + f22cef26-370e-c785-5624-090e87bfc8d1 + MV3.101 BS busbar1C + + + + + ee0a237b-0e0b-78de-535a-9b53cb53ea2d + MV3.101 Bus 136 + + + + + 09d549e6-ebdd-2c0d-086d-a96b1152667e + MV3.101 busbar1B + + + + + 40adbcc7-f8fa-7388-891e-7c147bf45023 + MV3.101 Bus 105 + + + + + b6170f00-2c57-2451-d575-01bb519075fb + MV3.101 Bus 129 + + + + + 213a2f02-f50a-1660-908c-914f3cce8c0c + MV3.101 Bus 104 + + + + + 0de42932-e0b1-22a6-bf8b-73b379b7377d + MV3.101 Bus 44 + + + + + b1d53dca-5f33-72af-3b2b-5ec36ad07954 + MV3.101 Bus 65 + + + + + ad51de78-3702-0b14-0735-784662894e69 + MV3.101 Bus 40 + + + + + ec6489ca-edb2-b300-d607-b02b8a2750fb + MV3.101 Bus 112 + + + + + 1aab9b43-6c21-902f-44ab-4d10d0b893e2 + MV3.101 Bus 67 + + + + + 2b510655-88d6-ae18-b58e-2330e133c2df + MV3.101 Bus 68 + + + + + 49f2ded1-15a3-7a3b-cf3f-bad9b01f3546 + MV3.101 Bus 69 + + + + + 5413fa98-ec7b-20ef-b6c7-e1286f8e1737 + MV3.101 Bus 80 + + + + + 12070c64-6818-ea18-5f5a-83d6d441d549 + MV3.101 Bus 79 + + + + + 9c6fc31a-c773-7390-f8eb-5e30dab03f83 + MV3.101 Bus 29 + + + + + 539dd97f-a501-0529-2ee2-a2bbf63c79d4 + MV3.101 Bus 38 + + + + + d66a6ade-7f1b-97c0-0017-9a6cf47c9bda + MV3.101 Bus 49 + + + + + 9906db9c-e3ed-6a2f-e0a2-d1fccb763605 + MV3.101 Bus 61 + + + + + acf4451f-2bbb-a754-b495-4654468f4052 + MV3.101 Bus 63 + + + + + 396d4836-ccc1-74f5-146a-2b6847f7ac7c + MV3.101 Bus 85 + + + + + 133d74c7-98d7-e422-c3d8-1ae37b04026f + MV3.101 Bus 30 + + + + + 03a0251b-1ed0-2fe8-0eb6-459bbee9b0a8 + MV3.101 Bus 34 + + + + + bd27ffe1-aada-4d7c-72df-40e9fa6b56a7 + MV3.101 Bus 41 + + + + + 5c2a0840-9b2c-152d-4772-73d9533c61e8 + MV3.101 Bus 55 + + + + + 98acd6c4-8f82-6b8e-6c34-5f3a98d5b892 + MV3.101 Bus 37 + + + + + 98834ca7-0a8c-6bb4-fd89-2747b4526f6e + MV3.101 Bus 72 + + + + + e70d1212-dd40-bddf-8f33-bb2b638444d3 + MV3.101 Bus 75 + + + + + 87279821-a0ab-830a-22db-b856f71c39a1 + MV3.101 Bus 83 + + + + + 16f0828e-9754-c9ed-9ba0-9489b64c0899 + MV3.101 Bus 114 + + + + + 9bfef8b9-7087-4040-646d-3c837a796ac3 + MV3.101 Bus 26 + + + + + e54fa85a-b795-481c-cded-83f7eaa6b9cc + MV3.101 Bus 35 + + + + + ec9ff049-fed0-586c-7784-3b70ff307e2a + MV3.101 Bus 43 + + + + + d641a8da-1790-3996-ac01-ba4b42f5babc + MV3.101 Bus 11 + + + + + 7910e4fc-60ae-7e08-f374-3e4f2ae03f1c + MV3.101 Bus 59 + + + + + 3d6249b9-b039-bd8c-944e-1ca40eb7e8e7 + MV3.101 Bus 66 + + + + + 28f58cfd-0e6f-61a1-dc04-74835353f5f3 + MV3.101 Bus 31 + + + + + b8acc88e-d9f2-3ff7-62cb-c29bf9f5d807 + MV3.101 Bus 58 + + + + + 1838f7d2-cca9-d294-ec30-fdc944aaa2d0 + MV3.101 Bus 57 + + + + + c6a917d7-b457-5409-6f8d-7fed5ef541bc + MV3.101 Bus 82 + + + + + ebf5c214-df25-6593-96e5-b7c7c0b66dc4 + MV3.101 Bus 39 + + + + + a4b59bf2-0563-2429-efc2-f5aefbfdc18e + MV3.101 Bus 42 + + + + + 0fe6123d-546b-fa84-46c6-19ea3ce4efb3 + MV3.101 Bus 53 + + + + + a870c968-0f0e-d146-9074-29b610cb7ace + MV3.101 Bus 48 + + + + + 0c3ccdb5-7ef2-c076-c7ca-214b4aa2d108 + MV3.101 Bus 86 + + + + + 0ad17a43-29b4-73f6-935f-036a64570db9 + MV3.101 Bus 71 + + + + + 9ca17508-d1bd-711c-af9e-32613ff9ff43 + MV3.101 Bus 87 + + + + + 0a9a2164-403a-b34c-6e4d-0f82ebda0623 + MV3.101 Bus 110 + + + + + 48c0500d-2e1e-927e-9421-bd5aadd56450 + MV3.101 Bus 46 + + + + + 018a79c3-b918-686e-26ee-01a36d1267c9 + MV3.101 Bus 50 + + + + + dc6d8bbb-a674-93db-b9ef-b3658e8b3646 + MV3.101 Bus 84 + + + + + 5f6cbebc-71c2-1d04-9950-8aa580206a7d + MV3.101 Bus 22 + + + + + cd269e1f-c319-47b9-07fd-7a7a8aa4a793 + MV3.101 Bus 60 + + + + + dba63795-5ec4-0d09-345f-c707f2a5d2e6 + MV3.101 Bus 56 + + + + + 62ad74cb-3898-1103-070b-22c1bdd9b8c8 + MV3.101 Bus 70 + + + + + be9c219b-5b2c-119e-3e1e-271cb6223331 + MV3.101 Bus 74 + + + + + 409457ac-b8c9-ea43-15a7-ecb239f7de3e + MV3.101 Bus 111 + + + + + 10fbcf81-7bad-c502-34f9-73f68d8360f6 + MV3.101 Bus 45 + + + + + adfbfd04-8fe4-4e5e-c8d8-e277243baf82 + MV3.101 Bus 109 + + + + + bc013bbd-a734-3be2-c021-195caef49f29 + MV3.101 Bus 113 + + + + + b551b24e-44e7-f6ef-2e55-ffab04bedc9c + MV3.101 Bus 51 + + + + + 2ac28fdb-440e-c7e9-2b26-07e9c0ad000d + MV3.101 Bus 36 + + + + + 25006734-7941-2a7d-6502-548d25beaa5c + MV3.101 Bus 62 + + + + + 1b0a571f-c9c3-bbf1-2247-61a3e30f6d1a + MV3.101 Bus 47 + + + + + 5e3924be-5aa1-7a33-51b6-0a9b74b5bb94 + MV3.101 Bus 28 + + + + + 4bb5886a-11b5-54a3-0c37-d62089df3378 + MV3.101 Bus 54 + + + + + e5b39655-db54-61cd-7245-552ea4e3da55 + MV3.101 Bus 52 + + + + + d5faa2b0-6504-7be2-11f7-2dacc8b39e5b + MV3.101 Bus 17 + + + + + 71aaa328-31fa-2e71-6708-c9319a76f9e3 + MV3.101 Bus 64 + + + + + 155a8215-77be-f9de-1ff6-f7b7fbd38a11 + MV3.101 Bus 32 + + + + + 9e03ccbb-d548-a42f-8164-c2310ea3cd0d + MV3.101 Bus 92 + + + + + c0a04f8a-5e75-5d4d-3464-bc746255ac0e + MV3.101 Bus 81 + + + + + 25ae9883-c5e3-a702-b9b7-7cbad30e682f + MV3.101 Bus 94 + + + + + b3482888-a476-ee31-72b5-98631931a20b + MV3.101 Bus 78 + + + + + d7baf6d9-8a12-0b03-1e9d-153dc754eb05 + MV3.101 Bus 76 + + + + + 45d7e093-b6c0-7bbc-f3d7-94f1f4d00f7b + MV3.101 Bus 77 + + + + + 2dca6748-8f7c-a569-f5a4-3b583b95f323 + MV3.101 Bus 91 + + + + + 8d445f23-0301-8c82-d817-cb580d7d4870 + MV3.101 Bus 99 + + + + + 58e61fcf-10cf-1872-c660-d511fecbfad3 + MV3.101 Bus 96 + + + + + 0719bb8f-b06f-a985-9e7e-7fe9b920df13 + MV3.101 Bus 97 + + + + + bf04f4ea-e882-de84-a7f4-249406e6aa42 + MV3.101 Bus 93 + + + + + a1affc43-2921-48d3-0b48-8fa028ffe673 + MV3.101 Bus 98 + + + + + 9df05979-9863-aacc-49d2-9adc8d02dc46 + MV3.101 Bus 73 + + + + + fcde5dda-8657-c106-b2ae-b56124172a78 + MV3.101 Bus 90 + + + + + 940c4c60-3e96-9c4a-0d5c-0834645d95f4 + MV3.101 Bus 95 + + + + + f9c34ee0-3927-a9ac-0e2f-2e3c9b84c1ee + MV3.101 Bus 89 + + + + + 1bacc330-79ba-2553-ac05-e397c6e0af7b + MV3.101 Bus 88 + + + + diff --git a/cimpy_3/tests/CIM_v3_import_reference.p1 b/cimpy_3/tests/CIM_v3_import_reference.p1 new file mode 100644 index 0000000000000000000000000000000000000000..ba4e82d09e83234f9fe97b8b2b136a5adadf028a GIT binary patch literal 317636 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 z zBNtXL!2Oh>N|K5i>!74a4xXtt-cDx;CQ$&ujS?gfvql{8ic*%;<0X@bsFjU9;@)~l z22?wln+o2bs1;pJ=0vm*5-yy3lmn_pEdaW~b|(PBkTdVjy-IlF%_a#BuHzLhYSs`> zPT^?+jb&Yk2?;eOwZW#<09_R%BLF!(ZgCWnI00lNxjb?m1^DQy%E*-lM7&&m+}y3o z$X2e{Oc~-0Kvc{~3`#I;5FB`bbo9Q2Zm@aFIGymG!Q^DK3GaQjDD%kVzzT>?TM*tc zybokdBMyq;6(N$k;-@WbdPgrt;kw z96_9r8n<;WSfG3c>?P|C9wUUvjo?%Z&!)5BTbGtCER%sHUE`ogS)xTkDhPNyH5I@ULSJm07;X}{wy4!4 zA6!Ir%u^)*Ndaqw5Xcf=#!Mna$qp03Yd80xYl2yB8Z4B=7_Ln*~n24$QB!mEeV#PL0< zFrld>dRr3ygPxj$%|!qz(k>Y|JfEPkUIU;^`Cb%`!beFS2cw3vY7nQugJNo;!M%|9 z(rN(JU`+xrbFjs;2ircYfsnLKj$&m$kQOA&is#R%;E+3^6V0dvr zCGbYfO&EKib3>hDU;IAa>#HB&z410+v{Uqaf1FNZT26Z*lj!9mrlHQiuM>p$PH8G;k{?_BeVS%f7= zMlj5WOR$vr0<44Tua3U{&jpNvqFD zm0<(gnhGAGb$J%lha_bJaL7t^WQf5FW~ypo*{TL>5`Z1^ll3>dQZdkzs?ZdLh!z_H zUlh~UCkIew>=dg0frk4WZdGkWwm8@@k1-e$wp;;vj?8j}QAuo=Tub0WMPZF#XV3NC za?6y*)-g-=HJQ{j0jd>CLg3%XwGpor?qy~j^O_u#5Ur{e8=Y|~=tFRcZHZ!o%aBbn zEPtcS*Cmx7AWBMmO*dGRTyLY;>hE-=60Ofg#PpPa78K$Fn0*AnC%!)cf1ybc@+Kqun-Fwm0fb^HvD zH7vr=9TFtA(QD{LgFa-<1mfY#CBO>T|71$s|c90Z9H?f5FWGOeZXnfuj>h8AqFX{dI%wZvFQ;4&^4$ zWeKrYK|?Y*)<``=TFTiLkvM9tU?@~ecvOfc7ISrE&hi3vs#)Kcz$-C#}Y|Ju!Dap%`o`sRW?)`_jI zw`|C)FvFZ_z~Pu@DBXZsVz7G&c@^k=$~yU|u1&cnvl@blv>ADI#0XtdfhjQ5m|-## z2na~rTUVd0m98ir{U6AQNQwlA^bms^lzAyl{X$=&c1l^&4b~(}+t|o8&Tju~WC9=5 z{lYAeO7CAFq{2}GtbtA&MHCWZqn=MRw$euKvdYQlgeMSz&saC8GWenyO$@=R3zNH~ zk%xr;Dq|u@X*)rV*P-heHZn(wG_!*#od^J#9onS`A(B!6bb~bsz!qboM*h_@y?^WP zrily7r0dYOfJ0W;2dR0IHapn3%vnhpM~n6E>@exlDkbg!-`Nmq&3B~JEP4}70^kSq zJAj?S)rXNo7xiQDv0d6kV44V3C(M21qhqS4sdEMXrxqmLU`>KF<7{o>9qXiMQtxaL zOQRVs`kH!n+G!X`)B{ErrOhTIzC>R{5vLZ;7L;{RhDtQ5l3r5Oyp!A{%LR@bq#gZ_ zXb#Mfy;t2j9YpH3uWDz2<}StBR$f5r5N1D*hMaJ5QlJ`9$O~hy=Xvye0O%}ptHfu zYAk%*kl}fWo6>`~qHX7t*o>YYw}ZoOWk+bw&7erwd~QPw7m z%8(y2MJ3(IkqOH2Ycr{ZUh9}o@tTZtL&XNy8+?ke6$qyuoqF;JlO76t3n~=W-(g*e zN<{(AqoESiIe0(hZ{UWY5{L*>5JQ&?FbRe}#9e8^=>}_((3$+rCR{={3^RHWEs1ji zwi8f0D3X|FH0W~bm3`(cx2SOPr7e%%j>%%KNsIx7U^b)j%ZV}}r3H9{{v;08!^cI%(uO6XGcMaMWeGYsHYh37474=iIBCBXq2%C=!N!Eh7wn8$MM4ILA+I4p=Fu{|;bF{Iu6qL1q825XX~nN!@`)PAdzc#K|00=DoXm$TaqgnAY_YM`O; zqXslPwn+?bptX)9z-eK5ptS%c=F*21qE#6jo=562P?A+$_tg8DX&njnx6BG@uL*n{ zxhBG4N|LN4w7o_-WG!fPbb~d?^~}+~sS9W)Vy#z`Kn!6egI_3? z2rdN+%#$GK>A_dPj82Qmp$ci?KXojjouNCrlu&Br$n4S!0=6$CR7g6c^A&SPpoeNo zYRzi5Q{_Kpl&X?N#Up?)l9EMAA9FCvG-jp#IiR?MG`so~*A3Prq1&F~`z)SCL{lOU zpc?RETuUq^f*@UFUQdUofwt%UC8dh-Il@D=SQom7)qZ71qLW^jmlNw!Ya4-b4VgvCVQ@C9+={VIb zjJsC&t=?hHNWb01b5k3OSV!{E_C`UUVW zR&=kWnL#dnVU!NAZm=d1ou574XDE_ScN2mvp!|Z0z<^}cbJ)&EAp^W6dg#$Ir-dM0 zn~@Z0Q!Mcl>jSuf*`Cb;bDxudwW6Oo$>XfHR#dvKfMy512GAF39Rh@;S_~AM(&w)V zO2R7;dZ`6TH&~M(ZEJ&d5*^gL2-2hstwgaQt#3IuUFi);E)sI{f(8yj0EJ=;S-K{J z&6yM%L0E>SO_8Mn`et--?7%0Q2?IOq`+8ZD5)DpWD7QUKRZvn=9VeCU5lrqm^oymi z87P&KZm=dlK>DBs*uS_=Fr6C;HOnNia2_I}y}$OVX(&Rs-OoEiSaoR+l5nOv9)K1i z$N5-6aG1H`Us8Y!6%OdnN`Khq;CiX~@U`;)X6lxj(H&imDnY0;^f<&cU>jrC* z>o=Tv);mG-uVccv?`^JU=)@q@D@stl@RtYz31&9LnHpBGvE)HP0mBUor_~UV(83_J zrL};HeF+V)enPU5)VV|YYGHp<7-z+c>iyWXV0Uaqc2+prrC<|vt?-)(R0lvtp`iqW zE`W9*)~*HY>>1m_X_g-FE)f?RDdH-p6@pFF0UR1^9jRMD!mDRmFI9sz3HE#|vPO+u zsixKoH2fLV_fpW{Lz*RAT2$r+*x4!B0CXy}TuB@D$<8RFx)daj$P2w(ksRt)felKm z3Bm{}BjH~!VX}-8eXKdlDPv<|9O@%D`N8doy2Yp@ikGC2cSBC0){wfvb|*;n-q=4u zstkC{K;j1+({gf9evslS=d`u}+lJ3KL?0?cFV|$!f~Czv%AfGvEAR@Ou0lhTIYMt4 z7cK=dg+3&V6w%Zfl}}|gI*xK{N>E8TMI_@X;{jsh>-}2YU`>KFYeLRiklj!=>rF_y z>%oPCXAAC#K!T($ikx3j*p(}09qmEHC24We!ho2^Ac*CpWzj@BX|zQsmf%D{unVG9 zF(-Pr+%{!GcFgm9O|~L{aHdS^Zgen*60acy5B~&tVTyMH%y<|d>ab~poBhbbp~3Oz zNXTb#1Y1A>=Qv#3l*oaHqP1NFqXALaB%LlDd-?Li3r81j9~`Q=)Z~Yn8;>7ud)oFd zE-ss;%L})!ufBYF;Q_h!wF|FXc%;7RgO^X=WEO6&|7URc)bs0$moD1nwadc~Uj3d+ zwr|!JR~X>T;>E?aXU)>O9sY4$hI@G7?BGqhcWv4>Z+v!TX-z7TmgGUJ$Eub7u^FSa z*_$66Kkm{a+D)joBO!+Zt;BJn#+CZ5M0#OReU;P#|Ip@dcHXX?7|+$ZU6=26aACL@ zI%0thd%pJ|l0Q4uy*J2a*qATfa82`dtYN-X)1_mSAW7b4y6CPQTdGt@9}7{n9A_TT zJ$}Miq&f+gAIUx@^1OVZ7OznkGG`=a&eMHUtsHC4wjgII zd0&Xv34GX6s5mf*QXEK7i!_}`=;7s+bsVJC#OVn3)pDjAu4&@FV9vyC?8`HY%l4S! zOk={d?GRc`n2yRyJz=`xnkMXxO%vA4_r-icfv4awYq>LZ5he9}>4s~ZuLeb?lP_)f zua$g}y0iQrfP-NRbs*rlDY(%tP0FA;6S9OBnoKub<9s#ASF_KuR|lo8N2pr9bi*~x zSJOe+jMNbIrD_h_ay#m3&D7JS8}3S{t2sf(bZN^1TkS?&mu&TP>4s~Xu10OInlEif z^H%evbNg_C;1bi?h_glX&1T1i+8iLUa z7+F}?1rka185xYSgwGLtfm+aD08tEg#q*_#R8YJeSZPT|wHS~fVd2S16k5f~;q zz3*babeK`~eCdX3ny+TlLM32Ygl{VW(_t#q6Q&z(za~tDr)lYYL!U}^5NJ;1LlqK$ zh{PD?{53`4(-nc12+0(dp;3eBhHILzd9jL7l)6Ul=z{uGAkyXmGd~h))|w1Cu%!Q7 z8XqLoJ6g9&n@rS5~fs0Q1m&Zh2LfR)$ z4hR>ai(wB_F5QBH_MyXo*28oyE;t#PuOOr;RZ$V$Arc9hiuJ$+w%L!m;hN^F*}hk8 z$UMdMVanhqptn*;zfkE#P2`GBDIB%si#XfT+?(lsxRGk+zWSG*Wgk;U%KI%=Br7(RN8(|aE3avB=vOZhHILx zM)6Wv6Ix=cR@z?I7+gJHy5XAUt4X|6$)Pgm!Accs&%Ive){6rgKjsGcs}a81+Ik+0ot0mI<-QADmTcDYf)P)`)2BR26u11|MIA?=i$=_PTyn~9vPPM%zsS%xAoqCbL6I*X74)7 zUk;ercNktgE@RP6Op_eEere^y!;+t^6+e=s+OhUhf(N>Cw85J;Pt%FbA5Z~wxi0%T z%di>E(Np^Ef@*LfPJwh5;1QW^n)q1Qf?&Z4>SC_rn@8C)Y`vVrai4hf*N%Mor62sY zBYdxWrzP#gaA~(*_2A4^(*m(kqExS4EvRt?t!2SG(k7Z@Q%-KiWY84)v5Cq8l^EpH zVD(S1=F?S5y-)E$@5kjI5r^JS@y~dzbz{$4t!aP$^A;8_ENr*fs?eG??%r~>;R_%u z3Rfu9N`U(wBl55>%#sk%qN#&~mkZ`{6(S%(s8dTN+k-a#fqv&fz`f|DcRE zNNJITgk~YVf{le1B@ryXkoZp2Qm@r&>&9+c?HzWu%8=KV$+cYTSK!WuyOBOAg_SPy zbf(K;&XDeDV)S?^d_0oQ+U;8F#%@~chj!57S94>(0v8)a4Ge|qf7stkKvbByC1mjI z?ob-OT92CT-7dCn?8e33L5-`N0M#rXkD=n@Y`$`sD6=2ZDIfyq|>gdzGgU&BLJz&t4 zyIXAC*iDPQ!;yV8*ZLKx#i3Kf3WJfftYB@xfh^(6;MYK^!zp8^JR#oL-CFC$Zd&Vy zcF^Lg0tRil;q||<;X}<*3nz7zVx)y7S!~};0K>zlPlXE60)HC((MpT!#%@~d9X+p_ znySgq*4BDo|Eo;{HTa_GjwBtNr8_uC402jvAn7mRrF55=CP8cGdFjS(TJ4>-wkpW2 zExf+|7aM&|tp)LvDu4?;f<;hBrs%chRbY+?tx%4(TRpBDyJ@j^IJ2*&8h-_z**V;X z9^N%}I2nbY2;e!aAiQ&7EDvdlTfh>(+qKq>-L%#_x!G4!i@yRFJMe{iIKt_Iz8X86 zzH4;kcIiJ#JJgcUujgU%?#@8djoq}^JD%Apq?i_Ud;P0%3WZbS6GbVYmvz8C(%PB+ zW{&j;p_R1kii)WuPP;Q(H+Iu%?{sFXB52x*hwFc_gPcy#F$9ye8>43et$`dWo_wbY z=>?xcI2j0U_Aa-!YV4-P-f?TIP(j+t?CXEEF}(}uxhdQWNPo~*M4H28bR|gQGIPr) zfqiketF0TmX|*?R?bZc-+Sy3 zak(ox#`B|VJvZHbCPX)O<6`fS3Avg(`xR)S6>bTmYDQb7geWN;S}D_w1@%K6N))*v zU7B`nqUpwNTI?NsudC^2zXI1fj3en#PZGPR#1aQ@V<~ch5`|`z#`kl`<}ZKuYi>Gl zll-^K!&~)`xtNn_6vIwV*wr-4UxBMmRSi8fDQYS#@w9|Sen9%@Ed*V@YrG)If%5J4 z?ADFla))0lNB7>W^<%-Af5LzNwBhKUT-E02j%Zj@x^&z#G)JKp&ZFlRTb?fJSm?f+ z5?b5!TI( zv3Ib^ujX360=2kT7BoQ)ErwZ2*Qk^>3ew+?GKG~${v*pyaE^7cdHmmL+CbW zn*?tk5QaSV_=mGPHHA;#sofvhs*%w(rK)OUY|{9$kO=O}hWN z)H$%!IhjugEq9#{(T&}-+B=0*uI6ID0uSvhNQ)$=>?bXWtGIOJav&O}a0&KOih~N5 z#yqr~)Tqy~++@GvIy zcg+HbwCGoyfIapAK1_wxwl7b;!@kHfXpr^PN@=BA+~Dp@qvFF;qrcQ2KEL(DnR?XT znLEa{q_mbB+<9u*_Ak72lJ{S~X#1Ck)u@}EHvI7JOLEnkSza6QmW?jHcl`O27cbe; zEEl5|bb~v`e>uDI;ql=2UV3NWKEH04iz2{dJmu{?;@F>oO?9c&SL-Q0m{yCgKw8e|vBquVM(II*2 zFw(4qYQ(0MIP@;pdAzZb{FS{6O5*Bd(&)1Yt0KK#4fV?)VOWaN^}Q;E*m}BgjbiR~ zBR0Z39XX;KH+={u^jo38zhu?MP{Bw^# z7o0%<&AYbl5IfYzuWaE*)mY$gbfE}Q{DKN`Xp~LqY!K40$%IlH-%j!9Mw~aP(>Q_q zataZZqduI|zg!h@5i2vY|N)PS6RP|j93D)xeI#HOXV zQDVn)tb%UDrd5!W`0dxZG74bc zprKRcgh5zQ{OQsFxuU;BOar+9Bytr*(=@$`xz~-TnfsI1`P>(P#7qJ?Mh4#vNh{CN zd?5u6oF`@Bmn1CRmR68%#HP7FGCYYr??iKr&MW&Uc4O+KAf7@07l|P6$s}bd-Pf!Y>&`wd_V6)BYuXln;fb|Qj+F$e+Eu-GIy4Ld?AV9KdzP*0(L zbR#w`z-SBj{&l|vz{1e45C_bs^1zAcF9D%7{~d6QSi6(2dx%0*B7{*QqNu zxP25ZoFeTjGO!CVNMgU>@GUdxz7wYzY;JsNK&+(hR7L(qRCF`r-l5u@Clq?9c9!^| zHHqJR(!MFKwfEgQ4wsGy`-aqey`P4EZBvX;_pO>F;n*d!wp5etjnJ&l2>j+e-8a?B zF;y;I+v%`vb~VZ4nCvsHK7pLj2!efNqRg@Mk;BWQz&@@cn(c_#9=rFYAO4A>cReh) z)@fOprQMsl>cN?-=F;xTy44X#2$~QlP%=5y3Qib?g#%wLc~(Cr5EHmrK4W!!HTTU# zASbkYGGwphpK&ZwH+Iv4KQLbK4V2@V#btX;m24xYL>oVEqBCq>0Du}g@zhLG4^g3x;btDWwB?#@fmPkxgS*E@Lf(Rk3L;e zLKlW644|#Pc6RjS5Z=ion_SgqM_W9tw2+q65`oSG2mtWB$OzDTli(-+GlPL@wa~h; zn-+Q-ldL&a!#YP%9vbPl?D;gQHkPj2X$jGR9|OQo@NR(S-x%xcds$#}5HCo#gqvup zEs0QS6H?%;#*1g0khfZA-Pld*yq)G&ZD`l`qspzwrXa`EP7%y6a()HxP`N2bi!Zen zH-ha=894Sf?tB#kPETE8yaA~UhxLt#aTSG`!4|YyXx-RN3wtTSyda~HRgav~(YvN>8UA$SH)Q<$Y*j+Hu%A!)VFy0Le; z&h`2juLQ8N~9bnSc0?C3_9|{P-<;%jQvcJK?$`Q&}6d3XzzsX3YLtq z3q0BQXuGJI=D2RP&bqPpbe)3~b(K@bo>w5DK&X)eByd362oC5FAhuWQ|Lfo44oG=c zl$4N;fRP6lbN(qgswo#Wwgix#ySv`cy0M$qdAkEz10bLM{47I!hX<{5GbiceJ9n8p|~SM`x^ixP642Y2nq0p2p z;c$SmW4G(98+(`QtSbE_?B_>9(4OW{&%keu2btqu#RUB#0IXi^PuvIwcTtt(UTDf4 zS{SWu;H8cYi4M}u+%0m8Jr++F2)5eKy0Q0iorP&AG{8fkTaL(QxI}m9q(TNKORUS` zMBT)Vv7cR9tw%nJx^N>5u?Rjjdg}R30`%HY{cWmz8avr)opob3t@CyVv}!{W)+HN{ zw+Jk;ax$*~l9iIU3Fs*v0MPXSC*Bwfokw1lxk9{Cvb+Tp<&vP}9CJMw<_Q_ia;ddi zXx-RN3w(p|?4pd8>JMPL&st zv+{{-Q&CP+yF!8lc#DoJ=wR}dgaYB82%;M#^hv{D5V`;jd^!ffXIlzFm#!jZMZ+jC zM402dPD1O(p0`@lbxYfAXjP1xrYKSL+c1vT$;@WMDQ!R&^m-aNzznc z{)zEMG_C}T;1a>V5iIV2BipWI@gwR zQ_cz~D?o~boVui+Z3?lB2mhNx$1{9qTrNMnK||0>JkhRL6Z;%7p7&LPR&Kb-> zO5+f^K$Rix6-qlHRFXouvunMr8+(`QtlG~doD9^|8cL)~f&@NE4SGvsg8-v&0m6Be zxj|AH(!wwD0S~2ssi@XZDA~_IT|h#gC*Wb}wY}?9hHmU#uCvPE_ULg$@P}NSp%fk_ zeae3mlvjYt4v=8j9zikR2tq>()aW=4FPC+uAT&j7liLY)oto5*-L%eE zWN?>N5l4`HU|fdSV6;hq^}`E+%&^W-FjGB7fZ+OF=)qB_o2r%mMWG=YQesgjR8(o0 zIleSc4?}hVDIOQRr01dLuv(^zAUBG?4$A;f^jFp|3D4E-)2v4F!M&%RUthd*5rQn9 zw`M4y>C4AkOT-Rv|9yi4&&$7u7njf5{tJr`RxR8&Lz6YQujY+9|I+H3y$HY8%6gxR z>Ua6z<%dt-a{AEe1E&w4zUlPQ(?{&!wlgaQd`>IN!iaT?8QdoC&|g_vmERAWg}2rJ zv)+5-ZBxZ$GQ#NosrTT@17>j8T)5D;7tGoQlh!@MBB!O7o*ch1SHj;l?|aJ|GO}HG zq`qc-AsWB<_@Sq7wu8e@+y2GHWmCWB!+a&VX>j!IX4Q^(xa9qL$Zh9eIKO7r*6Z(c zvsoY9J!TDCwnhELU%tF>RGvG0z!AIJ`v9y>v(L4|WqZd<1RoZQday&L_bYeTg>(l@ z?^ic|8r*uRT71!#qsJc}{&u!l8+~x=^D}=Q{x$-Fj+N3w`9G7z;xyPCV=u%sL-&l-KOk{Ii-uo@VEqk}tt_IG~h(f@;QF%gfNRPMy3%Ny6c@P_xi@Z7IUp~&WI zo*!Mq*VI|JDO}uE}SMwz| z6xE4|XpA|{M1bmwLW{Pt2GvDD3Lpy*&ggZJp^2A!7@=97&G2sjFWfg%QTUsD(EBa< zNAyAO_hj6t_XqO9AIm>~BLB$l>HT~8NuJxg?VhQ!L){Cs6VGO#O|y8q37w#@Q;{D` znUwYd1efUkMK%+-LI7G;+De=osKwJ(Cbr}WJ9Xmu z;#)uF{_GupFh}$z;#qv+t?o0vnRCr6M?6Enq-QEj;T{P^W(`-7c_-uQN~(gSdQ=iB z9Amw@7f;;_G>PY3Gul&vuJi7g3S&3RC;OJ19PzLWV55^0)&|y!q|)C8ItG{K;L>GO zFP~*nAn^c@$^;tUFru~x5`J2jmStX&=c9FL?F{JT^K0{`e(7_c__H~(H<8b;jDPRn zJap2TbIp`|Y8eu*lKLb7O%#$a9FPFiCwLytFX_)-un36@PvlIYZuj!3dx3ef{!R5CC2D=?NpaVu$)}atM!qns>arF8v`S9ZyL( zrSCFw4$l{7JZTJSqRCsH)v?O@{D||rcf9`j7v`wOiTYf$Z~Nt+H}}oC zW=ef(sWq>XczUTTks^oHGGhDD) zeMX?1f&3Tbcc2Gg9)xr|6UlO+xUHfRg0VKodq#WVh?X17G|<{GAs?LMJ|Ohg*gPeH zTGg?8o%&q(uC<@(ef|GCNA@Q2d0u0FYAF}5l6*#nhR;46lM$d!qB~Uh;%)^bV|-8s zggmo&8u`?{eCl4HoqT%DLEUEggyReR0HRb_swCZz(keGX{ek}@<{yV1E_@sL#A0=! zG9;=V&%RB%qp`v+eZ-xKaApU?mG-(CNcKmUR`*G%b8 zEh*nsl22&IEty|hkw;{W!T={AM`D4xz`+??O8@-n+P3cHQ}+T*@;Q6FcVT^oCQma% zW;`rGg&2a?P!nW8LrOZdLlGV%L)5+2dxsFJU{ZaQFghS4`a&^0BUf>hMv;XnDr})X zFDbmE4`{rjYdp9_O(JMAAJyPO`4VOUI9g(SZ0{^6;U|T?lv&$D?_Ku-P2xFwyi4cU zd3Ut(-mT4W4=LLOX@_W1zeasIY#~&hgS)gT)B-i6MJu0PX}y@jZnAIS_~729+&APW znxF>o%7FLFhUS9G{Jc?upHL(v3G?K5l%!A^jC)Fym50!>$J4fXT{<@QiMbuZ9TK5Iwg3gwfdBX9#!YDGw-vMhu)#ElY4 zeGHKezof}qtMfges3L;XPGa(em)w;0%>kA}n)A8w7<355*XhsiQMm8lpmN_;6y@gz zS4loo-1Y>fJkUa<^a18VAQwRdKsN#44<5Cp@!tAJx)*4Y&sq1q3->7L*!%=~Nq(;8 z=c7m!&?Uu-!T}Ve!oF%UKWpQ@uibmg&m8!{jTY(D7`NcO_G}= zN^;|>-3zpnPrnQBQrFRW6NfHA0C;KwAuBdM%c@XTdE;OQmBKA~1buZ8)pR>n%C()&jlSj}6 zmGmLU`>g8Z5pmFz0#L_I(41KO^k!{=4e2bosqLn9m8?%cEDJF|$+kn77eY+U@lMQx zI0yyuz;iRvMSFO>>t3KqJU1Qhop?tb%cq|uo?pR{Qb3GC9z>$^K2S#Dpt&�e}0S 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ÞyB$`` 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�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 1: + try: + test_item = (item[0], str(float(item[1]))) + except ValueError: + continue + except TypeError: + pass + elif item[1] == "true": + test_item = (test_item, "True") + else: + test_item = (test_item, item[1]) + + check.is_in(test_item, export_attr) diff --git a/cimpy_3/tests/test_export_v3.py b/cimpy_3/tests/test_export_v3.py new file mode 100644 index 00000000..aeffb990 --- /dev/null +++ b/cimpy_3/tests/test_export_v3.py @@ -0,0 +1,235 @@ +import logging +import xmltodict +import os, sys +import glob +import pytest_check as check +from pathlib import Path +import pytest + +sys.path.append(os.getcwd()) +import cimpy +from cimpy.cgmes_v3_0_0.Base import short_profile_name + +logging.basicConfig( + filename="Test_export_with_exported_files.log", level=logging.INFO, filemode="w" +) + + +@pytest.fixture +def sample_cimdata(): + """Import the sampledata using cimpy""" + example_dir = Path( + os.path.join( + os.path.dirname(__file__), + "../cimpy/examples/sampledata/CIM_LV_Simbench_Grid", + ) + ).resolve() + import_files = [] + for file in example_dir.glob("*.xml"): + import_files.append(str(file.absolute())) + return cimpy.cim_import(import_files, "cgmes_v3_0_0") + + +def read_ref_xml(): + """Read the reference xmls into a dict""" + test_list = [] + + test_dir = Path(os.path.dirname(__file__)).resolve() + + for file in test_dir.glob("CIM_v3_reference*.xml"): + xmlstring = open(file, encoding="utf8").read() + parsed_export_file = xmltodict.parse( + xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict + ) + test_list.append(parsed_export_file["rdf:RDF"]) + + test_dict = {} + for elem in test_list: + profile = elem["md:FullModel"]["md:Model.profile"] + for key in short_profile_name.keys(): + if key in profile: + test_dict[key] = elem + return test_dict + + +def read_exported_xml(directory): + export_list = [] + + test_dir = Path(directory).resolve() + + for file in test_dir.glob("*EXPORTED*.xml"): + xmlstring = open(file, encoding="utf8").read() + parsed_export_file = xmltodict.parse( + xmlstring, attr_prefix="$", cdata_key="_", dict_constructor=dict + ) + export_list.append(parsed_export_file["rdf:RDF"]) + + export_dict = {} + for export_file in export_list: + profile = export_file["md:FullModel"]["md:Model.profile"] + for key in short_profile_name.keys(): + if key in profile: + export_dict[key] = export_file + return export_dict + + +# This test tests the export functionality of this package by first importing the CIGRE_MV_Rudion_With_LoadFlow_Results +# example and exporting them. The exported files are compared with previously exported files which were checked manually + + +def test_export_with_exported_files(sample_cimdata, tmpdir): + activeProfileList = ["DL", "EQ", "SV", "TP"] + + cimpy.cim_export( + sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v3_0_0", activeProfileList + ) + + test_dict = read_ref_xml() + export_dict = read_exported_xml(tmpdir) + + for profile, current_test_dict in test_dict.items(): + check.is_in(profile, export_dict.keys()) + if profile in export_dict.keys(): + current_export_dict = export_dict[profile] + for class_key in current_test_dict: + if "cim:" not in class_key: + continue + check.is_in(class_key, current_export_dict.keys()) + if class_key in current_export_dict.keys(): + current_export_class = current_export_dict[class_key] + current_test_class = current_test_dict[class_key] + if isinstance(current_test_class, list): + for item in current_test_class: + check.is_in(item, current_export_class) + else: + check.equal(current_test_class, current_export_class) + + +def test_export_with_imported_files(sample_cimdata, tmpdir): + activeProfileList = ["DL", "EQ", "SSH", "SV", "TP"] + + cimpy.cim_export( + sample_cimdata, tmpdir + "/EXPORTED_Test", "cgmes_v3_0_0", activeProfileList + ) + + test_dict = read_ref_xml() + export_dict = read_exported_xml(tmpdir) + + for profile, current_test_dict in test_dict.items(): + check.is_in(profile, export_dict.keys()) + if profile in export_dict.keys(): + current_export_dict = export_dict[profile] + for class_key in current_test_dict: + if "cim:" not in class_key or class_key in ["cim:NameType", "cim:Name"]: + continue + check.is_in(class_key, current_export_dict.keys()) + if class_key in current_export_dict.keys(): + current_export_class = current_export_dict[class_key] + current_test_class = current_test_dict[class_key] + test_mRIDs = [] + test_class_dict = {} + if isinstance(current_test_class, list): + for obj in current_test_class: + try: + test_mRIDs.append(obj["$rdf:ID"]) + test_class_dict[obj["$rdf:ID"]] = obj + except KeyError: + try: + test_mRIDs.append(obj["$rdf:about"]) + test_class_dict[obj["$rdf:about"]] = obj + except KeyError: + check.is_in("$rdf:about", obj.keys()) + check.is_in("$rdf:ID", obj.keys()) + else: + try: + test_mRIDs.append(current_test_class["$rdf:ID"]) + test_class_dict[current_test_class["$rdf:ID"]] = ( + current_test_class + ) + except KeyError: + try: + test_mRIDs.append(current_test_class["$rdf:about"]) + test_class_dict[current_test_class["$rdf:about"]] = obj + except KeyError: + check.is_in("$rdf:about", current_test_class.keys()) + check.is_in("$rdf:ID", current_test_class.keys()) + + export_mRIDs = [] + export_class_dict = {} + if isinstance(current_export_class, list): + for obj in current_export_class: + try: + export_mRIDs.append(obj["$rdf:ID"]) + export_class_dict[obj["$rdf:ID"]] = obj + except KeyError: + try: + export_mRIDs.append(obj["$rdf:about"]) + export_class_dict[obj["$rdf:about"]] = obj + except KeyError: + check.is_in("$rdf:about", obj.keys()) + check.is_in("$rdf:ID", obj.keys()) + else: + try: + export_mRIDs.append(current_export_class["$rdf:ID"]) + export_class_dict[current_export_class["$rdf:ID"]] = ( + current_export_class + ) + except KeyError: + try: + export_mRIDs.append(current_export_class["$rdf:about"]) + export_class_dict[ + current_export_class["$rdf:about"] + ] = obj + except KeyError: + check.is_in("$rdf:about", current_export_class.keys()) + check.is_in("$rdf:ID", current_export_class.keys()) + + for mRID in test_mRIDs: + check.is_in(mRID, export_mRIDs) + if mRID in export_mRIDs: + test_attr = test_class_dict[mRID].items() + export_attr = export_class_dict[mRID].items() + for item in test_attr: + if item[0] in [ + "cim:NameType", + "cim:ExternalNetworkInjection.referencePriority", + "cim:Terminal.connected", + ]: + continue + elif item[0] == "cim:Terminal.sequenceNumber": + test_item = "cim:ACDCTerminal.sequenceNumber" + else: + test_item = item[0] + + if item[1] in [ + "0", + "0e+000", + "0.0", + "", + "false", + "None", + "list", + { + "$rdf:resource": ( + "#_32d6d32e-c3f0-43d4-8103-079a15594fc6" + ) + }, + ]: + continue + if isinstance(item[1], dict) or isinstance( + item[1], list + ): + test_item = item + elif len(item[1].split(".")) > 1: + try: + test_item = (item[0], str(float(item[1]))) + except ValueError: + continue + except TypeError: + pass + elif item[1] == "true": + test_item = (test_item, "True") + else: + test_item = (test_item, item[1]) + + check.is_in(test_item, export_attr) diff --git a/cimpy_3/tests/test_import.py b/cimpy_3/tests/test_import.py new file mode 100644 index 00000000..af36bbad --- /dev/null +++ b/cimpy_3/tests/test_import.py @@ -0,0 +1,39 @@ +import logging +import cimpy +from cimpy.cgmes_v2_4_15.Base import short_profile_name +import os +import glob +import pytest_check as check +import pickle +from pathlib import Path + +logging.basicConfig(filename="Test_import.log", level=logging.INFO, filemode="w") + +example_dir = Path( + os.path.join(os.path.dirname(__file__), "../cimpy/examples/sampledata/CIGRE_MV") +).resolve() + + +def test_import(): + """This function tests the import functionality by importing files and comparing them to previously imported and pickled files.""" + + global example_dir + test_files = [] + for file in example_dir.glob("*.xml"): + test_files.append(str(file.absolute())) + + imported_result = cimpy.cim_import(test_files, "cgmes_v2_4_15") + + import_resolved = cimpy.cimexport._get_class_attributes_with_references( + imported_result, "cgmes_v2_4_15" + ) + + ref_dict_path = Path( + os.path.join( + os.path.dirname(__file__), "CIGREMV_import_reference_cgmes_v2_4_15.p" + ) + ) + check_dict_pickle = pickle.load(open(ref_dict_path, "rb")) + + for elem in import_resolved: + check.is_in(elem, check_dict_pickle) diff --git a/cimpy_3/tests/test_import_v3.py b/cimpy_3/tests/test_import_v3.py new file mode 100644 index 00000000..ac777a62 --- /dev/null +++ b/cimpy_3/tests/test_import_v3.py @@ -0,0 +1,41 @@ +import logging +import os, sys +import glob +import pytest_check as check +import pickle +from pathlib import Path + +sys.path.append(os.getcwd()) +import cimpy +from cimpy.cgmes_v3_0.Base import short_profile_name + +logging.basicConfig(filename="Test_import.log", level=logging.INFO, filemode="w") + +example_dir = Path( + os.path.join( + os.path.dirname(__file__), "../cimpy/examples/sampledata/CIM_LV_Simbench_Grid" + ) +).resolve() + + +def test_import(): + """This function tests the import functionality by importing files and comparing them to previously imported and pickled files.""" + + global example_dir + test_files = [] + for file in example_dir.glob("*.xml"): + test_files.append(str(file.absolute())) + + imported_result = cimpy.cim_import(test_files, "cgmes_v3_0") + + import_resolved = cimpy.cimexport._get_class_attributes_with_references( + imported_result, "cgmes_v3_0" + ) + + ref_dict_path = Path( + os.path.join(os.path.dirname(__file__), "CIM_v3_import_reference.p1") + ) + check_dict_pickle = pickle.load(open(ref_dict_path, "rb")) + + for elem in import_resolved: + check.is_in(elem, check_dict_pickle)