├── backup ├── Files py.rar ├── IEEE123B.rar ├── PESDEE_RECONF - backup.py ├── PESDEE_RECONF.py └── README.md ├── info ├── LICENSE └── versions │ └── v1.0.0.md ├── project ├── .pylintrc ├── IEEE123Bus │ ├── 15E52200.xlsx │ ├── 5A552200.xlsx │ ├── BusCoords.csv │ ├── Capacitors.DSS │ ├── DSSViewIntercom.Txt │ ├── Dados Alimentador IEEE123B.xlsx │ ├── IEEE123_Circuit.DSV │ ├── IEEE123_Circuit.dbl │ ├── IEEE123_Curr_Elem.Txt │ ├── IEEE123_Current.DSV │ ├── IEEE123_Current.dbl │ ├── IEEE123_Elements.Txt │ ├── IEEE123_Elements_Disabled.txt │ ├── IEEE123_General.DSV │ ├── IEEE123_General.dbl │ ├── IEEE123_Generator_gen1_V.DSV │ ├── IEEE123_Generator_gen1_V.dbl │ ├── IEEE123_Losses.DSV │ ├── IEEE123_Losses.Txt │ ├── IEEE123_Losses.dbl │ ├── IEEE123_PVSystem_pv_400_b31_V.DSV │ ├── IEEE123_PVSystem_pv_400_b31_V.dbl │ ├── IEEE123_Power.DSV │ ├── IEEE123_Power.dbl │ ├── IEEE123_Power_elem_kVA.txt │ ├── IEEE123_Profile9998.DSV │ ├── IEEE123_Profile9998.dbl │ ├── IEEE123_Transformer_trafo01_I.DSV │ ├── IEEE123_Transformer_trafo01_I.dbl │ ├── IEEE123_Transformer_trafo01_V.DSV │ ├── IEEE123_Transformer_trafo01_V.dbl │ ├── IEEE123_VLN.Txt │ ├── IEEE123_VLN_elem.Txt │ ├── LineCodes.DSS │ ├── Lines.DSS │ ├── Loads.DSS │ ├── Master.DSS │ ├── Outros Elementos │ │ ├── DSSViewIntercom.Txt │ │ ├── P174_Run_SolarRamp.DSS │ │ ├── P174_Run_VoltageProfile.DSS │ │ ├── PV5sdata1.csv │ │ ├── PaperLoadShape.txt │ │ ├── RevRegTest.dss │ │ ├── Run_YearlySim.dss │ │ ├── SetDailyLoadShape.DSS │ │ ├── SolarRamp-Mack.DSS │ │ ├── SolarRamp.DSS │ │ ├── SolarRamp.csv │ │ ├── StorageRamp.CSV │ │ ├── WindRamp.DSS │ │ └── WindRampRevRegTest.DSS │ ├── Perdas_tecnicas.csv │ ├── Regulators.DSS │ ├── Run_IEEE123Bus.DSS │ ├── Substation.DSS │ ├── Switches.DSS │ ├── Transformers.DSS │ ├── circuit_config │ │ ├── Catalogo dos Cabos.xlsx │ │ ├── IEEE 123 Node Test Feeder Letterhead.doc │ │ ├── Regulator Data.xls │ │ ├── Transformer Data.xls │ │ ├── UG configuration data.xls │ │ ├── Voltage Profile IEEE123.CSV │ │ ├── cap data.xls │ │ ├── config data.xls │ │ ├── dadosCabos.xlsx │ │ ├── debug.log │ │ ├── ie123.tcw │ │ ├── line data.xls │ │ ├── relatorio final.xlsx │ │ ├── spot loads data.xls │ │ ├── switch data.xls │ │ ├── ~$EE 123 Node Test Feeder Letterhead.doc │ │ └── ~$dadosCabos.xlsx │ ├── numero_dobro_triplo.csv │ └── perdas.csv ├── config │ ├── __pycache__ │ │ ├── bus.cpython-310.pyc │ │ ├── cables.cpython-310.pyc │ │ └── general.cpython-310.pyc │ ├── bus.py │ ├── cables.py │ └── general.py ├── libs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── collect_metrics.cpython-310.pyc │ │ ├── decimal2binary.cpython-310.pyc │ │ ├── float2int.cpython-310.pyc │ │ ├── get_circuit_params.cpython-310.pyc │ │ ├── get_elements.cpython-310.pyc │ │ ├── mark_elements.cpython-310.pyc │ │ └── opendss.cpython-310.pyc │ ├── collect_metrics.py │ ├── decimal2binary.py │ ├── float2int.py │ ├── get_circuit_params.py │ ├── get_elements.py │ ├── load_contraction.py │ ├── load_expansion.py │ ├── mark_elements.py │ ├── opendss.py │ ├── plan_expansion.py │ ├── ranking.py │ ├── save_result.py │ ├── search.py │ ├── swithing_elements.py │ ├── update_lines.py │ └── update_loads.py ├── main.py └── requirements.txt ├── readme.md └── theory ├── TCC_Metodologia_Planejamento_Multiestágios_Expansão_Energia.pdf └── mirjalili2015.pdf /backup/Files py.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/backup/Files py.rar -------------------------------------------------------------------------------- /backup/IEEE123B.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/backup/IEEE123B.rar -------------------------------------------------------------------------------- /backup/PESDEE_RECONF - backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/backup/PESDEE_RECONF - backup.py -------------------------------------------------------------------------------- /backup/PESDEE_RECONF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/backup/PESDEE_RECONF.py -------------------------------------------------------------------------------- /backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/backup/README.md -------------------------------------------------------------------------------- /info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/info/LICENSE -------------------------------------------------------------------------------- /info/versions/v1.0.0.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/.pylintrc -------------------------------------------------------------------------------- /project/IEEE123Bus/15E52200.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/15E52200.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/5A552200.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/5A552200.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/BusCoords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/BusCoords.csv -------------------------------------------------------------------------------- /project/IEEE123Bus/Capacitors.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Capacitors.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/DSSViewIntercom.Txt: -------------------------------------------------------------------------------- 1 | Line.l95 2 | -------------------------------------------------------------------------------- /project/IEEE123Bus/Dados Alimentador IEEE123B.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Dados Alimentador IEEE123B.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Circuit.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Circuit.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Circuit.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Circuit.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Curr_Elem.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Curr_Elem.Txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Current.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Current.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Current.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Current.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Elements.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Elements.Txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Elements_Disabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Elements_Disabled.txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_General.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_General.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_General.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_General.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Generator_gen1_V.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Generator_gen1_V.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Generator_gen1_V.dbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Losses.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Losses.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Losses.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Losses.Txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Losses.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Losses.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_PVSystem_pv_400_b31_V.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_PVSystem_pv_400_b31_V.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_PVSystem_pv_400_b31_V.dbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Power.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Power.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Power.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Power.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Power_elem_kVA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Power_elem_kVA.txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Profile9998.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Profile9998.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Profile9998.dbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Profile9998.dbl -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Transformer_trafo01_I.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Transformer_trafo01_I.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Transformer_trafo01_I.dbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Transformer_trafo01_V.DSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_Transformer_trafo01_V.DSV -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_Transformer_trafo01_V.dbl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_VLN.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_VLN.Txt -------------------------------------------------------------------------------- /project/IEEE123Bus/IEEE123_VLN_elem.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/IEEE123_VLN_elem.Txt -------------------------------------------------------------------------------- /project/IEEE123Bus/LineCodes.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/LineCodes.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Lines.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Lines.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Loads.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Loads.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Master.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Master.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/DSSViewIntercom.Txt: -------------------------------------------------------------------------------- 1 | Line.l93 2 | -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/P174_Run_SolarRamp.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/P174_Run_SolarRamp.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/P174_Run_VoltageProfile.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/P174_Run_VoltageProfile.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/PV5sdata1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/PV5sdata1.csv -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/PaperLoadShape.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/PaperLoadShape.txt -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/RevRegTest.dss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/RevRegTest.dss -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/Run_YearlySim.dss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/Run_YearlySim.dss -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/SetDailyLoadShape.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/SetDailyLoadShape.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/SolarRamp-Mack.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/SolarRamp-Mack.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/SolarRamp.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/SolarRamp.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/SolarRamp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/SolarRamp.csv -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/StorageRamp.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/StorageRamp.CSV -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/WindRamp.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/WindRamp.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Outros Elementos/WindRampRevRegTest.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Outros Elementos/WindRampRevRegTest.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Perdas_tecnicas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Perdas_tecnicas.csv -------------------------------------------------------------------------------- /project/IEEE123Bus/Regulators.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Regulators.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Run_IEEE123Bus.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Run_IEEE123Bus.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Substation.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Substation.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Switches.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Switches.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/Transformers.DSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/Transformers.DSS -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/Catalogo dos Cabos.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/Catalogo dos Cabos.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/IEEE 123 Node Test Feeder Letterhead.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/IEEE 123 Node Test Feeder Letterhead.doc -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/Regulator Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/Regulator Data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/Transformer Data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/Transformer Data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/UG configuration data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/UG configuration data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/Voltage Profile IEEE123.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/Voltage Profile IEEE123.CSV -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/cap data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/cap data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/config data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/config data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/dadosCabos.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/dadosCabos.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/debug.log -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/ie123.tcw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/ie123.tcw -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/line data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/line data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/relatorio final.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/relatorio final.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/spot loads data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/spot loads data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/switch data.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/switch data.xls -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/~$EE 123 Node Test Feeder Letterhead.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/~$EE 123 Node Test Feeder Letterhead.doc -------------------------------------------------------------------------------- /project/IEEE123Bus/circuit_config/~$dadosCabos.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/IEEE123Bus/circuit_config/~$dadosCabos.xlsx -------------------------------------------------------------------------------- /project/IEEE123Bus/numero_dobro_triplo.csv: -------------------------------------------------------------------------------- 1 | 0,0,0 2 | 1,2,3 3 | 2,4,6 4 | 3,6,9 5 | 4,8,12 6 | -------------------------------------------------------------------------------- /project/IEEE123Bus/perdas.csv: -------------------------------------------------------------------------------- 1 | 0,0,0 2 | -------------------------------------------------------------------------------- /project/config/__pycache__/bus.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/__pycache__/bus.cpython-310.pyc -------------------------------------------------------------------------------- /project/config/__pycache__/cables.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/__pycache__/cables.cpython-310.pyc -------------------------------------------------------------------------------- /project/config/__pycache__/general.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/__pycache__/general.cpython-310.pyc -------------------------------------------------------------------------------- /project/config/bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/bus.py -------------------------------------------------------------------------------- /project/config/cables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/cables.py -------------------------------------------------------------------------------- /project/config/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/config/general.py -------------------------------------------------------------------------------- /project/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/libs/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/collect_metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/collect_metrics.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/decimal2binary.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/decimal2binary.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/float2int.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/float2int.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/get_circuit_params.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/get_circuit_params.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/get_elements.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/get_elements.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/mark_elements.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/mark_elements.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/__pycache__/opendss.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/__pycache__/opendss.cpython-310.pyc -------------------------------------------------------------------------------- /project/libs/collect_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/collect_metrics.py -------------------------------------------------------------------------------- /project/libs/decimal2binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/decimal2binary.py -------------------------------------------------------------------------------- /project/libs/float2int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/float2int.py -------------------------------------------------------------------------------- /project/libs/get_circuit_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/get_circuit_params.py -------------------------------------------------------------------------------- /project/libs/get_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/get_elements.py -------------------------------------------------------------------------------- /project/libs/load_contraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/load_contraction.py -------------------------------------------------------------------------------- /project/libs/load_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/load_expansion.py -------------------------------------------------------------------------------- /project/libs/mark_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/mark_elements.py -------------------------------------------------------------------------------- /project/libs/opendss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/opendss.py -------------------------------------------------------------------------------- /project/libs/plan_expansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/plan_expansion.py -------------------------------------------------------------------------------- /project/libs/ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/ranking.py -------------------------------------------------------------------------------- /project/libs/save_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/save_result.py -------------------------------------------------------------------------------- /project/libs/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/search.py -------------------------------------------------------------------------------- /project/libs/swithing_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/swithing_elements.py -------------------------------------------------------------------------------- /project/libs/update_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/update_lines.py -------------------------------------------------------------------------------- /project/libs/update_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/libs/update_loads.py -------------------------------------------------------------------------------- /project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/project/main.py -------------------------------------------------------------------------------- /project/requirements.txt: -------------------------------------------------------------------------------- 1 | py_dss_interface 2 | matplotlib 3 | numpy 4 | pandas 5 | random 6 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/readme.md -------------------------------------------------------------------------------- /theory/TCC_Metodologia_Planejamento_Multiestágios_Expansão_Energia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/theory/TCC_Metodologia_Planejamento_Multiestágios_Expansão_Energia.pdf -------------------------------------------------------------------------------- /theory/mirjalili2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fernandocalenzani/sed-evolutionary-computing-dragonfly/HEAD/theory/mirjalili2015.pdf --------------------------------------------------------------------------------