├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE ├── README.md ├── ThirdParty ├── FMILibrary-2.0.1 (1).pdf ├── FMILibrary-2.0.1 │ ├── CMakeLists.txt │ ├── Config.cmake │ │ ├── Minizip │ │ │ └── CMakeLists.txt │ │ ├── config_fmilib.c.cmake │ │ ├── config_fmilib.h.cmake │ │ ├── config_stamp.cmake │ │ ├── config_test.h.cmake │ │ ├── fmicapi.cmake │ │ ├── fmiimport.cmake │ │ ├── fmilib.h │ │ ├── fmilib_doxydoc.conf │ │ ├── fmixml.cmake │ │ ├── fmizip.cmake │ │ ├── jmutil.cmake │ │ ├── mergestaticlibs.cmake │ │ ├── runtime_test.cmake │ │ ├── test_fmi1.cmake │ │ └── test_fmi2.cmake │ ├── FMILIB_Acknowledgements.txt │ ├── FMILIB_License.txt │ ├── FMILIB_Readme.txt │ ├── LICENSE.md │ ├── README.md │ ├── Test │ │ ├── FMI1 │ │ │ ├── compress_test_fmu_zip.c │ │ │ ├── fmi1_capi_cs_test.c │ │ │ ├── fmi1_capi_me_test.c │ │ │ ├── fmi1_import_test.c │ │ │ ├── fmi1_logger_test.c │ │ │ ├── fmi1_logger_test_output.txt │ │ │ ├── fmi2_import_xml_test.cc │ │ │ ├── fmi_import_cs_test.c │ │ │ ├── fmi_import_me_test.c │ │ │ ├── fmi_import_xml_test.cc │ │ │ ├── fmi_total_test.c │ │ │ ├── fmi_zip_unzip_test.c │ │ │ ├── fmi_zip_zip_test.c │ │ │ ├── fmu_dummy │ │ │ │ ├── fmu1_model.c │ │ │ │ ├── fmu1_model.h │ │ │ │ ├── fmu1_model_cs.c │ │ │ │ ├── fmu1_model_defines.h │ │ │ │ ├── fmu1_model_me.c │ │ │ │ ├── modelDescription.xml │ │ │ │ ├── modelDescription_cs.xml │ │ │ │ ├── modelDescription_cs_tc.xml │ │ │ │ ├── modelDescription_malformed.xml │ │ │ │ └── modelDescription_me.xml │ │ │ ├── jm_vector_test.c │ │ │ ├── try_to_compress_this_file.xml │ │ │ └── try_to_uncompress_this_file.zip │ │ ├── FMI2 │ │ │ ├── fmi2_import_cs_test.c │ │ │ ├── fmi2_import_me_test.c │ │ │ ├── fmi2_import_test.c │ │ │ ├── fmi2_import_xml_test.cc │ │ │ └── fmu_dummy │ │ │ │ ├── fmu2_model.c │ │ │ │ ├── fmu2_model.h │ │ │ │ ├── fmu2_model_cs.c │ │ │ │ ├── fmu2_model_defines.h │ │ │ │ ├── fmu2_model_me.c │ │ │ │ ├── modelDescription.xml │ │ │ │ ├── modelDescription_cs.xml │ │ │ │ ├── modelDescription_malformed.xml │ │ │ │ └── modelDescription_me.xml │ │ ├── compress_test_fmu_zip.c │ │ ├── fmi_import_test.c │ │ ├── fmi_zip_unzip_test.c │ │ ├── fmi_zip_zip_test.c │ │ ├── jm_vector_test.c │ │ ├── try_to_compress_this_file.xml │ │ └── try_to_uncompress_this_file.zip │ ├── ThirdParty │ │ ├── CMakeModules │ │ │ ├── README.txt │ │ │ └── UseDoxygen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── UseDoxygen.cmake │ │ │ │ └── cmake_uninstall.cmake.in │ │ ├── Expat │ │ │ └── expat-2.1.0 │ │ │ │ ├── CMake.README │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── Changes │ │ │ │ ├── ConfigureChecks.cmake │ │ │ │ ├── MANIFEST │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── amiga │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── expat.xml │ │ │ │ ├── expat_68k.c │ │ │ │ ├── expat_68k.h │ │ │ │ ├── expat_68k_handler_stubs.c │ │ │ │ ├── expat_base.h │ │ │ │ ├── expat_lib.c │ │ │ │ ├── expat_vectors.c │ │ │ │ ├── include │ │ │ │ │ ├── inline4 │ │ │ │ │ │ └── expat.h │ │ │ │ │ ├── interfaces │ │ │ │ │ │ └── expat.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── expat.h │ │ │ │ │ └── proto │ │ │ │ │ │ └── expat.h │ │ │ │ └── launch.c │ │ │ │ ├── bcb5 │ │ │ │ ├── README.txt │ │ │ │ ├── all_projects.bpg │ │ │ │ ├── elements.bpf │ │ │ │ ├── elements.bpr │ │ │ │ ├── elements.mak │ │ │ │ ├── expat.bpf │ │ │ │ ├── expat.bpr │ │ │ │ ├── expat.mak │ │ │ │ ├── expat_static.bpf │ │ │ │ ├── expat_static.bpr │ │ │ │ ├── expat_static.mak │ │ │ │ ├── expatw.bpf │ │ │ │ ├── expatw.bpr │ │ │ │ ├── expatw.mak │ │ │ │ ├── expatw_static.bpf │ │ │ │ ├── expatw_static.bpr │ │ │ │ ├── expatw_static.mak │ │ │ │ ├── libexpat_mtd.def │ │ │ │ ├── libexpatw_mtd.def │ │ │ │ ├── makefile.mak │ │ │ │ ├── outline.bpf │ │ │ │ ├── outline.bpr │ │ │ │ ├── outline.mak │ │ │ │ ├── setup.bat │ │ │ │ ├── xmlwf.bpf │ │ │ │ ├── xmlwf.bpr │ │ │ │ └── xmlwf.mak │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── conftools │ │ │ │ ├── PrintPath │ │ │ │ ├── ac_c_bigendian_cross.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── expat.m4 │ │ │ │ ├── get-version.sh │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── mkinstalldirs │ │ │ │ ├── doc │ │ │ │ ├── expat.png │ │ │ │ ├── reference.html │ │ │ │ ├── style.css │ │ │ │ ├── valid-xhtml10.png │ │ │ │ ├── xmlwf.1 │ │ │ │ └── xmlwf.sgml │ │ │ │ ├── examples │ │ │ │ ├── elements.c │ │ │ │ ├── elements.dsp │ │ │ │ ├── outline.c │ │ │ │ └── outline.dsp │ │ │ │ ├── expat.dsw │ │ │ │ ├── expat.pc.in │ │ │ │ ├── expat_config.h.cmake │ │ │ │ ├── expat_config.h.in │ │ │ │ ├── lib │ │ │ │ ├── Makefile.MPW │ │ │ │ ├── amigaconfig.h │ │ │ │ ├── ascii.h │ │ │ │ ├── asciitab.h │ │ │ │ ├── expat.dsp │ │ │ │ ├── expat.h │ │ │ │ ├── expat_external.h │ │ │ │ ├── expat_static.dsp │ │ │ │ ├── expatw.dsp │ │ │ │ ├── expatw_static.dsp │ │ │ │ ├── iasciitab.h │ │ │ │ ├── internal.h │ │ │ │ ├── latin1tab.h │ │ │ │ ├── libexpat.def │ │ │ │ ├── libexpatw.def │ │ │ │ ├── macconfig.h │ │ │ │ ├── nametab.h │ │ │ │ ├── utf8tab.h │ │ │ │ ├── winconfig.h │ │ │ │ ├── xmlparse.c │ │ │ │ ├── xmlrole.c │ │ │ │ ├── xmlrole.h │ │ │ │ ├── xmltok.c │ │ │ │ ├── xmltok.h │ │ │ │ ├── xmltok_impl.c │ │ │ │ ├── xmltok_impl.h │ │ │ │ └── xmltok_ns.c │ │ │ │ ├── m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ │ ├── tests │ │ │ │ ├── README.txt │ │ │ │ ├── benchmark │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── benchmark.c │ │ │ │ │ ├── benchmark.dsp │ │ │ │ │ └── benchmark.dsw │ │ │ │ ├── chardata.c │ │ │ │ ├── chardata.h │ │ │ │ ├── minicheck.c │ │ │ │ ├── minicheck.h │ │ │ │ ├── runtests.c │ │ │ │ ├── runtestspp.cpp │ │ │ │ └── xmltest.sh │ │ │ │ ├── vms │ │ │ │ ├── README.vms │ │ │ │ ├── descrip.mms │ │ │ │ └── expat_config.h │ │ │ │ ├── win32 │ │ │ │ ├── MANIFEST.txt │ │ │ │ ├── README.txt │ │ │ │ └── expat.iss │ │ │ │ └── xmlwf │ │ │ │ ├── codepage.c │ │ │ │ ├── codepage.h │ │ │ │ ├── ct.c │ │ │ │ ├── filemap.h │ │ │ │ ├── readfilemap.c │ │ │ │ ├── unixfilemap.c │ │ │ │ ├── win32filemap.c │ │ │ │ ├── xmlfile.c │ │ │ │ ├── xmlfile.h │ │ │ │ ├── xmlmime.c │ │ │ │ ├── xmlmime.h │ │ │ │ ├── xmltchar.h │ │ │ │ ├── xmlurl.h │ │ │ │ ├── xmlwf.c │ │ │ │ ├── xmlwf.dsp │ │ │ │ └── xmlwin32url.cxx │ │ ├── FMI │ │ │ ├── default │ │ │ │ ├── FMI1 │ │ │ │ │ ├── FMILIB_FMI1_Readme.txt │ │ │ │ │ ├── fmiFunctions.h │ │ │ │ │ ├── fmiModelFunctions.h │ │ │ │ │ ├── fmiModelTypes.h │ │ │ │ │ └── fmiPlatformTypes.h │ │ │ │ └── FMI2 │ │ │ │ │ ├── fmi2FunctionTypes.h │ │ │ │ │ ├── fmi2Functions.h │ │ │ │ │ └── fmi2TypesPlatform.h │ │ │ └── standard32 │ │ │ │ └── FMI1 │ │ │ │ ├── FMILIB_FMI1_Readme.txt │ │ │ │ ├── fmiFunctions.h │ │ │ │ ├── fmiModelFunctions.h │ │ │ │ ├── fmiModelTypes.h │ │ │ │ └── fmiPlatformTypes.h │ │ ├── Minizip │ │ │ └── minizip │ │ │ │ ├── Makefile │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ ├── README.txt │ │ │ │ ├── crypt.h │ │ │ │ ├── ioapi.c │ │ │ │ ├── ioapi.h │ │ │ │ ├── iowin32.c │ │ │ │ ├── iowin32.h │ │ │ │ ├── make_vms.com │ │ │ │ ├── miniunz.c │ │ │ │ ├── miniunz.h │ │ │ │ ├── minizip.c │ │ │ │ ├── minizip.h │ │ │ │ ├── mztools.c │ │ │ │ ├── mztools.h │ │ │ │ ├── unzip.c │ │ │ │ ├── unzip.h │ │ │ │ ├── zip.c │ │ │ │ └── zip.h │ │ ├── Zlib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── zlib-1.2.6 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ │ ├── examples │ │ │ │ ├── README.examples │ │ │ │ ├── enough.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── gun.c │ │ │ │ ├── gzappend.c │ │ │ │ ├── gzjoin.c │ │ │ │ ├── gzlog.c │ │ │ │ ├── gzlog.h │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ └── zran.c │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── make_vms.com │ │ │ │ ├── test │ │ │ │ ├── example.c │ │ │ │ ├── infcover.c │ │ │ │ └── minigzip.c │ │ │ │ ├── treebuild.xml │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── watcom │ │ │ │ ├── watcom_f.mak │ │ │ │ └── watcom_l.mak │ │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.gcc │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── VisualC.txt │ │ │ │ ├── zlib.def │ │ │ │ └── zlib1.rc │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.3.pdf │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zlib2ansi │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ └── c99_snprintf │ │ │ ├── CMakeLists.txt │ │ │ └── c99-snprintf_1.1 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── autogen.sh │ │ │ ├── config.h.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── depcomp │ │ │ ├── example.c │ │ │ ├── install-sh │ │ │ ├── m4 │ │ │ └── snprintf.m4 │ │ │ ├── missing │ │ │ ├── snprintf.c │ │ │ ├── system.h │ │ │ └── test.sh │ └── src │ │ ├── CAPI │ │ ├── include │ │ │ ├── FMI1 │ │ │ │ └── fmi1_capi.h │ │ │ └── FMI2 │ │ │ │ └── fmi2_capi.h │ │ └── src │ │ │ ├── FMI1 │ │ │ ├── fmi1_capi.c │ │ │ ├── fmi1_capi_cs.c │ │ │ ├── fmi1_capi_impl.h │ │ │ └── fmi1_capi_me.c │ │ │ └── FMI2 │ │ │ ├── fmi2_capi.c │ │ │ ├── fmi2_capi_cs.c │ │ │ ├── fmi2_capi_impl.h │ │ │ └── fmi2_capi_me.c │ │ ├── Import │ │ ├── include │ │ │ ├── FMI │ │ │ │ ├── fmi_import_context.h │ │ │ │ └── fmi_import_util.h │ │ │ ├── FMI1 │ │ │ │ ├── fmi1_import.h │ │ │ │ ├── fmi1_import_capabilities.h │ │ │ │ ├── fmi1_import_capi.h │ │ │ │ ├── fmi1_import_convenience.h │ │ │ │ ├── fmi1_import_cosim.h │ │ │ │ ├── fmi1_import_type.h │ │ │ │ ├── fmi1_import_unit.h │ │ │ │ ├── fmi1_import_variable.h │ │ │ │ ├── fmi1_import_variable_list.h │ │ │ │ └── fmi1_import_vendor_annotations.h │ │ │ └── FMI2 │ │ │ │ ├── fmi2_import.h │ │ │ │ ├── fmi2_import_capi.h │ │ │ │ ├── fmi2_import_convenience.h │ │ │ │ ├── fmi2_import_type.h │ │ │ │ ├── fmi2_import_unit.h │ │ │ │ ├── fmi2_import_variable.h │ │ │ │ └── fmi2_import_variable_list.h │ │ └── src │ │ │ ├── FMI │ │ │ ├── fmi_import_context.c │ │ │ ├── fmi_import_context_impl.h │ │ │ └── fmi_import_util.c │ │ │ ├── FMI1 │ │ │ ├── fmi1_import.c │ │ │ ├── fmi1_import_capabilities.c │ │ │ ├── fmi1_import_capi.c │ │ │ ├── fmi1_import_convenience.c │ │ │ ├── fmi1_import_cosim.c │ │ │ ├── fmi1_import_impl.h │ │ │ ├── fmi1_import_type.c │ │ │ ├── fmi1_import_unit.c │ │ │ ├── fmi1_import_variable.c │ │ │ ├── fmi1_import_variable_list.c │ │ │ ├── fmi1_import_variable_list_impl.h │ │ │ └── fmi1_import_vendor_annotations.c │ │ │ └── FMI2 │ │ │ ├── fmi2_import.c │ │ │ ├── fmi2_import_capi.c │ │ │ ├── fmi2_import_convenience.c │ │ │ ├── fmi2_import_impl.h │ │ │ ├── fmi2_import_type.c │ │ │ ├── fmi2_import_unit.c │ │ │ ├── fmi2_import_variable.c │ │ │ ├── fmi2_import_variable_list.c │ │ │ └── fmi2_import_variable_list_impl.h │ │ ├── Util │ │ ├── include │ │ │ ├── FMI │ │ │ │ ├── fmi_util.h │ │ │ │ └── fmi_version.h │ │ │ ├── FMI1 │ │ │ │ ├── fmi1_enums.h │ │ │ │ ├── fmi1_functions.h │ │ │ │ └── fmi1_types.h │ │ │ ├── FMI2 │ │ │ │ ├── fmi2_enums.h │ │ │ │ ├── fmi2_functions.h │ │ │ │ ├── fmi2_types.h │ │ │ │ └── fmi2_xml_callbacks.h │ │ │ └── JM │ │ │ │ ├── jm_callbacks.h │ │ │ │ ├── jm_named_ptr.h │ │ │ │ ├── jm_portability.h │ │ │ │ ├── jm_stack.h │ │ │ │ ├── jm_string_set.h │ │ │ │ ├── jm_types.h │ │ │ │ ├── jm_vector.h │ │ │ │ └── jm_vector_template.h │ │ └── src │ │ │ ├── FMI │ │ │ ├── fmi_util.c │ │ │ └── fmi_version.c │ │ │ ├── FMI1 │ │ │ └── fmi1_enums.c │ │ │ ├── FMI2 │ │ │ └── fmi2_enums.c │ │ │ └── JM │ │ │ ├── jm_callbacks.c │ │ │ ├── jm_named_ptr.c │ │ │ ├── jm_portability.c │ │ │ ├── jm_templates_inst.c │ │ │ └── snprintf.c │ │ ├── XML │ │ ├── include │ │ │ ├── FMI │ │ │ │ └── fmi_xml_context.h │ │ │ ├── FMI1 │ │ │ │ ├── fmi1_xml_capabilities.h │ │ │ │ ├── fmi1_xml_cosim.h │ │ │ │ ├── fmi1_xml_model_description.h │ │ │ │ ├── fmi1_xml_type.h │ │ │ │ ├── fmi1_xml_unit.h │ │ │ │ ├── fmi1_xml_variable.h │ │ │ │ └── fmi1_xml_vendor_annotations.h │ │ │ └── FMI2 │ │ │ │ ├── fmi2_xml_capabilities.h │ │ │ │ ├── fmi2_xml_cosim.h │ │ │ │ ├── fmi2_xml_model_description.h │ │ │ │ ├── fmi2_xml_model_structure.h │ │ │ │ ├── fmi2_xml_type.h │ │ │ │ ├── fmi2_xml_unit.h │ │ │ │ └── fmi2_xml_variable.h │ │ └── src │ │ │ ├── FMI │ │ │ ├── fmi_xml_context.c │ │ │ └── fmi_xml_context_impl.h │ │ │ ├── FMI1 │ │ │ ├── fmi1_xml_capabilities.c │ │ │ ├── fmi1_xml_capabilities_impl.h │ │ │ ├── fmi1_xml_cosim.c │ │ │ ├── fmi1_xml_model_description.c │ │ │ ├── fmi1_xml_model_description_impl.h │ │ │ ├── fmi1_xml_parser.c │ │ │ ├── fmi1_xml_parser.h │ │ │ ├── fmi1_xml_query.c │ │ │ ├── fmi1_xml_query.h │ │ │ ├── fmi1_xml_type.c │ │ │ ├── fmi1_xml_type_impl.h │ │ │ ├── fmi1_xml_unit.c │ │ │ ├── fmi1_xml_unit_impl.h │ │ │ ├── fmi1_xml_variable.c │ │ │ ├── fmi1_xml_variable_impl.h │ │ │ ├── fmi1_xml_vendor_annotations.c │ │ │ └── fmi1_xml_vendor_annotations_impl.h │ │ │ └── FMI2 │ │ │ ├── fmi2_xml_model_description.c │ │ │ ├── fmi2_xml_model_description_impl.h │ │ │ ├── fmi2_xml_model_structure.c │ │ │ ├── fmi2_xml_model_structure_impl.h │ │ │ ├── fmi2_xml_parser.c │ │ │ ├── fmi2_xml_parser.h │ │ │ ├── fmi2_xml_query.c │ │ │ ├── fmi2_xml_query.h │ │ │ ├── fmi2_xml_type.c │ │ │ ├── fmi2_xml_type_impl.h │ │ │ ├── fmi2_xml_unit.c │ │ │ ├── fmi2_xml_unit_impl.h │ │ │ ├── fmi2_xml_variable.c │ │ │ ├── fmi2_xml_variable_impl.h │ │ │ └── fmi2_xml_vendor_annotations.c │ │ └── ZIP │ │ ├── include │ │ └── FMI │ │ │ ├── fmi_zip_unzip.h │ │ │ └── fmi_zip_zip.h │ │ └── src │ │ ├── fmi_zip_unzip.c │ │ └── fmi_zip_zip.c ├── FMI_for_ModelExchange_and_CoSimulation_v2.0.pdf └── tinyxml │ ├── CMakeLists.txt │ ├── json │ ├── json-forwards.h │ └── json.h │ ├── jsoncpp.cpp │ ├── testTinyXML.vcproj │ ├── testtinyxml.cpp │ ├── ticpp.cpp │ ├── ticpp.h │ ├── ticppapi.h │ ├── ticpprc.h │ ├── tinystr.cpp │ ├── tinystr.h │ ├── tinyxml.cpp │ ├── tinyxml.h │ ├── tinyxml2 │ ├── readme.md │ ├── tinyxml2.cpp │ └── tinyxml2.h │ ├── tinyxmlerror.cpp │ └── tinyxmlparser.cpp ├── config ├── FindFMI.cmake ├── FindFSKIT.cmake ├── FindKLU.cmake ├── Findsundials.cmake ├── Findsundials2.cmake └── GriddynKLU.cmake ├── core ├── CMakeLists.txt └── griddyn-tracer.h ├── coupling ├── CMakeLists.txt ├── GhostSwingBus.cpp ├── GhostSwingBus.h ├── GhostSwingBusManager.cpp ├── GhostSwingBusManager.h └── GhostSwingBusMessageTypes.h ├── docs ├── extra_doxygen_style.css ├── images │ ├── GridDyn_Black.png │ ├── GridDyn_FullColor.png │ ├── GridDyn_White.png │ ├── dyn_example_bus_generation.png │ ├── dyn_example_bus_voltage.png │ └── dyn_examples_bus_frequency.png ├── mainpage.dox ├── manuals │ └── GridDynUserManual.pdf ├── presentations │ ├── GridDyn_execution_flow.pptx │ ├── GridDyn_object_construction_and_properties.pptx │ ├── GridDyn_objects.pptx │ ├── GridDyn_validation_and_performance.pptx │ ├── Griddyn_intro.pptx │ └── stateData_solverModes_solverOffsets.pptx └── simple_help.txt ├── examples ├── 180busDynamicTest.xml ├── IEEE39.dyr ├── IEEE39.raw ├── IEEE_14bus.cdf ├── dynamics.dyr ├── dynamicsWECC.dyr ├── powerflow.raw ├── powerflowWECC.raw ├── test_griddyn.xml ├── test_griddyn39.xml ├── two_bus_dynamic_example.xml └── two_bus_example.xml ├── extraModels ├── CMakeLists.txt ├── extraModels.cpp ├── extraModels.h ├── txLifeSpan.cpp ├── txLifeSpan.h ├── txThermalModel.cpp └── txThermalModel.h ├── fmi ├── CMakeLists.txt ├── fmiExciter.cpp ├── fmiExciter.h ├── fmiGDinfo.cpp ├── fmiGDinfo.h ├── fmiLoad.cpp ├── fmiLoad.h ├── fmiProcess.cpp ├── fmiSubModel.cpp ├── fmiSubModel.h ├── fmiSubModel2.cpp ├── fmi_import1.cpp ├── fmi_import2.cpp └── fmi_importGD.h ├── gridDyn ├── CMakeLists.txt ├── allGridDynObjects.h ├── basicDefs.h ├── comms │ ├── commMessage.cpp │ ├── commMessage.h │ ├── communicationsCore.cpp │ ├── communicationsCore.h │ ├── controlMessage.cpp │ ├── controlMessage.h │ ├── gridCommunicator.cpp │ ├── gridCommunicator.h │ ├── relayMessage.cpp │ ├── relayMessage.h │ ├── schedulerMessage.cpp │ └── schedulerMessage.h ├── controllers │ ├── AGControl.cpp │ ├── AGControl.h │ ├── controlSystem.cpp │ ├── controlSystem.h │ ├── dispatcher.cpp │ ├── dispatcher.h │ ├── reserveDispatcher.cpp │ ├── reserveDispatcher.h │ ├── scheduler.cpp │ ├── scheduler.h │ ├── schedulerInfo.h │ ├── schedulerRamp.cpp │ └── schedulerReg.cpp ├── core │ └── helperTemplates.h ├── fskit │ ├── fskitCommunicator.cpp │ ├── fskitCommunicator.h │ ├── protection-message.cc │ ├── protection-message.h │ ├── zonalRelayLogicalProcess.cpp │ └── zonalRelayLogicalProcess.h ├── generators │ ├── gridDynGenerator.cpp │ ├── gridDynGenerator.h │ ├── variableGenerator.cpp │ └── variableGenerator.h ├── gridArea.h ├── gridBus.h ├── gridCore.cpp ├── gridCore.h ├── gridCoreList.cpp ├── gridCoreList.h ├── gridCoreTemplates.h ├── gridDyn.h ├── gridDynFederatedScheduler.cpp ├── gridDynFederatedScheduler.h ├── gridDynTypes.h ├── gridObjects.cpp ├── gridObjects.h ├── gridObjectsHelperClasses.cpp ├── gridObjectsHelperClasses.h ├── gridPrimary.cpp ├── gridSecondary.cpp ├── gridSubModel.cpp ├── linkModels │ ├── acLine.cpp │ ├── acLine.h │ ├── acdcConverter.cpp │ ├── acdcConverter.h │ ├── adjustableTransformer.cpp │ ├── dcLink.cpp │ ├── dcLink.h │ ├── gridLink.cpp │ ├── gridLink.h │ ├── gridLink.h~RF965694e.TMP │ ├── hvdc.cpp │ ├── hvdc.h │ ├── longLine.cpp │ ├── longLine.h │ ├── rectifier.cpp │ ├── rectifier.h │ ├── subsystem.cpp │ ├── subsystem.h │ ├── zBreaker.cpp │ └── zBreaker.h ├── loadModels │ ├── compositeLoad.cpp │ ├── compositeLoad.h │ ├── exponentialLoad.cpp │ ├── fileLoad.cpp │ ├── gridLabDLoad.cpp │ ├── gridLabDLoad.h │ ├── gridLoad.cpp │ ├── gridLoad.h │ ├── motorLoad.cpp │ ├── motorLoad.h │ ├── motorLoad3.cpp │ ├── motorLoad5.cpp │ ├── otherLoads.h │ ├── pulseLoad.cpp │ ├── rampLoad.cpp │ ├── randomLoad.cpp │ ├── sineLoad.cpp │ ├── svd.cpp │ └── svd.h ├── objectFactory.cpp ├── objectFactory.h ├── objectFactoryTemplates.h ├── parameterOperator.hpp ├── primary │ ├── acBus.cpp │ ├── acBus.h │ ├── busControls.cpp │ ├── busControls.h │ ├── dcBus.cpp │ ├── dcBus.h │ ├── dcBusControls.cpp │ ├── gridArea.cpp │ ├── gridBus.cpp │ ├── infiniteBus.cpp │ ├── infiniteBus.h │ ├── listMaintainer.cpp │ └── listMaintainer.h ├── recorder_events │ ├── CMakeLists.txt │ ├── eventAdapters.cpp │ ├── eventAdapters.h │ ├── eventInterface.h │ ├── eventQueue.cpp │ ├── eventQueue.h │ ├── grabberInterpreter.cpp │ ├── grabberInterpreter.hpp │ ├── gridCondition.cpp │ ├── gridCondition.h │ ├── gridEvent.cpp │ ├── gridEvent.h │ ├── gridGrabbers.cpp │ ├── gridGrabbers.h │ ├── gridRecorder.cpp │ ├── gridRecorder.h │ ├── objectInterpreter.cpp │ ├── objectInterpreter.h │ ├── stateGrabber.h │ └── stateGrabbers.cpp ├── relays │ ├── breaker.cpp │ ├── breaker.h │ ├── busRelay.cpp │ ├── busRelay.h │ ├── controlRelay.cpp │ ├── controlRelay.h │ ├── differentialRelay.cpp │ ├── differentialRelay.h │ ├── fuse.cpp │ ├── fuse.h │ ├── gridRelay.cpp │ ├── gridRelay.h │ ├── loadRelay.cpp │ ├── loadRelay.h │ ├── sensor.cpp │ ├── sensor.h │ ├── zonalRelay.cpp │ └── zonalRelay.h ├── simulation │ ├── contingency.h │ ├── continuation.h │ ├── diagnostics.cpp │ ├── diagnostics.h │ ├── dynamicInitialConditionRecovery.cpp │ ├── dynamicInitialConditionRecovery.h │ ├── faultResetRecovery.cpp │ ├── faultResetRecovery.h │ ├── gridDynActions.cpp │ ├── gridDynActions.h │ ├── gridDynContingency.cpp │ ├── gridDynContinuation.cpp │ ├── gridDynDynamic.cpp │ ├── gridDynPowerFlow.cpp │ ├── gridDynSimulation.cpp │ ├── gridDynSimulationFileOps.cpp │ ├── gridDynSimulationFileOps.h │ ├── gridSimulation.cpp │ ├── gridSimulation.h │ ├── powerFlowErrorRecovery.cpp │ └── powerFlowErrorRecovery.h ├── solverMode.h ├── solvers │ ├── arkodeInterface.cpp │ ├── basicOdeSolver.cpp │ ├── basicSolver.cpp │ ├── cvodeInterface.cpp │ ├── idaInterface.cpp │ ├── kinsolInterface.cpp │ ├── solverInterface.cpp │ ├── solverInterface.h │ ├── sundialsArrayData.cpp │ ├── sundialsArrayData.h │ ├── sundialsInterface.cpp │ ├── sundialsInterface.h │ └── sundials_sparse.h ├── sourceModels │ ├── fileSource.cpp │ ├── gridSource.cpp │ ├── gridSource.h │ ├── pulseSource.cpp │ ├── rampSource.cpp │ ├── randomSource.cpp │ └── sineSource.cpp └── submodels │ ├── controlBlocks │ ├── basicBlock.cpp │ ├── controlBlock.cpp │ ├── deadbandBlock.cpp │ ├── delayBlock.cpp │ ├── derivativeBlock.cpp │ ├── filteredDerivativeBlock.cpp │ ├── functionBlock.cpp │ ├── integralBlock.cpp │ ├── lutBlock.cpp │ ├── pidBlock.cpp │ └── transferFunctionBlock.cpp │ ├── controlSystem.cpp │ ├── exciters │ ├── gridDynExciter.cpp │ ├── gridDynExciterDC1A.cpp │ ├── gridDynExciterDC2A.cpp │ ├── gridDynExciterIEEEtype1.cpp │ └── gridDynExciterIEEEtype2.cpp │ ├── genModels │ ├── gridDynGenModel.cpp │ ├── gridDynGenModel3.cpp │ ├── gridDynGenModel4.cpp │ ├── gridDynGenModel5.cpp │ ├── gridDynGenModel5type2.cpp │ ├── gridDynGenModel5type3.cpp │ ├── gridDynGenModel6.cpp │ ├── gridDynGenModel6type2.cpp │ ├── gridDynGenModel8.cpp │ ├── gridDynGenModelClassical.cpp │ ├── gridDynGenModelGENROU.cpp │ └── gridDynGenModelInverter.cpp │ ├── governors │ ├── gridDynGovernor.cpp │ ├── gridDynGovernorHydro.cpp │ ├── gridDynGovernorIeeeSimple.cpp │ ├── gridDynGovernorReheat.cpp │ ├── gridDynGovernorSteamNR.cpp │ ├── gridDynGovernorSteamTCSR.cpp │ └── gridDynGovernorTgov1.cpp │ ├── gridControlBlocks.h │ ├── gridDynExciter.h │ ├── gridDynGenModel.h │ ├── gridDynGovernor.h │ ├── gridDynPSS.h │ ├── otherBlocks.h │ ├── otherGenModels.h │ ├── otherGovernors.h │ └── pss │ └── gridDynPSS.cpp ├── gridDynFileInput ├── CMakeLists.txt ├── elementReaderTemplates.hpp ├── gridDynFileInput.cpp ├── gridDynFileInput.h ├── gridDynReadCDF.cpp ├── gridDynReadCSV.cpp ├── gridDynReadDYR.cpp ├── gridDynReadPSP.cpp ├── gridDynReadPTI.cpp ├── gridDynReadRAW.cpp ├── gridDynRunner.cpp ├── gridDynRunner.h ├── gridParameter.cpp ├── gridParameter.h ├── gridReadEPC.cpp ├── gridReadMatPower.cpp ├── gridReadPSAT.cpp ├── jsonReaderElement.cpp ├── jsonReaderElement.h ├── loadSubObjectsElement.cpp ├── objectLoadFromElementHelperFunctions.cpp ├── objectLoadHelperFunctions.cpp ├── readAreaElement.cpp ├── readArrayElement.cpp ├── readBusElement.cpp ├── readConditionElement.cpp ├── readEconElement.cpp ├── readElement.h ├── readElementFile.cpp ├── readElementFile.h ├── readElementHelperFunctions.cpp ├── readEventElement.cpp ├── readLibraryElement.cpp ├── readLinkElement.cpp ├── readMatDyn.cpp ├── readMatlabData.cpp ├── readRecorderElement.cpp ├── readRelayElement.cpp ├── readSimulationElement.cpp ├── readSolverElement.cpp ├── readXMLfile.cpp ├── readerElement.cpp ├── readerElement.h ├── readerHelper.cpp ├── readerHelper.h ├── readerInfo.cpp ├── readerInfo.h ├── stringInterpret.cpp ├── tinyxml2ReaderElement.cpp ├── tinyxml2ReaderElement.h ├── tinyxmlReaderElement.cpp └── tinyxmlReaderElement.h ├── gridDynMain ├── CMakeLists.txt └── gridDynMain.cpp ├── gridDynOpt ├── CMakeLists.txt ├── gridDynOpt.cpp ├── gridDynOpt.h ├── gridOptObjects.cpp ├── gridOptObjects.h ├── models │ ├── gridAreaOpt.cpp │ ├── gridAreaOpt.h │ ├── gridBusOpt.cpp │ ├── gridBusOpt.h │ ├── gridGenOpt.cpp │ ├── gridGenOpt.h │ ├── gridLinkOpt.cpp │ ├── gridLinkOpt.h │ ├── gridLoadOpt.cpp │ ├── gridLoadOpt.h │ ├── gridRelayOpt.cpp │ └── gridRelayOpt.h ├── optHelperClasses.cpp ├── optHelperClasses.h ├── optObjectFactory.cpp ├── optObjectFactory.h ├── optimizerInterface.cpp └── optimizerInterface.h ├── griddyn-config.h.in ├── installation.md ├── matlab ├── examplePlot.m ├── readStateFile.m ├── sheetread.m ├── sheetwrite.m └── timeSeries2.m ├── quickStart.md ├── test ├── CMakeLists.txt ├── componentTests │ ├── faultTests.cpp │ ├── simulationTests.cpp │ ├── testAdjustableTX.cpp │ ├── testArea.cpp │ ├── testBlocks.cpp │ ├── testComponents.cpp │ ├── testExciters.cpp │ ├── testGenModels.cpp │ ├── testGenerators.cpp │ ├── testGovernors.cpp │ ├── testGridLab.cpp │ ├── testLinks.cpp │ ├── testLoads.cpp │ ├── testRecorders.cpp │ ├── testRelays.cpp │ ├── testSource.cpp │ └── testdcLinks.cpp ├── exeTestHelper.cpp ├── exeTestHelper.h ├── extraTests │ ├── performanceTests.cpp │ └── testExtra.cpp ├── libraryTests │ ├── libraryTests.cpp │ ├── testArrayData.cpp │ ├── testCore.cpp │ ├── testElementReaders.cpp │ ├── testGridDynRunner.cpp │ ├── testGridParameter.cpp │ ├── testJsonReader.cpp │ ├── testReaderInfo.cpp │ ├── testStringOps.cpp │ └── testXML.cpp ├── systemTests │ ├── testCloning.cpp │ ├── testConstraints.cpp │ ├── testDyn1.cpp │ ├── testDyn2.cpp │ ├── testFMI.cpp │ ├── testInputs.cpp │ ├── testMainExe.cpp │ ├── testOutputs.cpp │ ├── testRoots.cpp │ ├── testSolverModes.cpp │ ├── testSystem.cpp │ ├── testpFlow.cpp │ └── validationTests.cpp ├── testHelper.h ├── testHelperFunctions.cpp ├── test_files │ ├── IEEE_test_cases │ │ ├── 118BUS.JPG │ │ ├── 14bus.jpg │ │ ├── 300BUS.JPG │ │ ├── 30bus.jpg │ │ ├── 57bus.jpg │ │ ├── Anderson9.cdf │ │ ├── IEEE 118 Bus.EPC │ │ ├── IEEE 118 Bus.RAW │ │ ├── IEEE 14 bus.epc │ │ ├── IEEE 14 bus.raw │ │ ├── IEEE 24 bus.EPC │ │ ├── IEEE 24 bus.RAW │ │ ├── IEEE 39 bus.EPC │ │ ├── IEEE 57 bus.EPC │ │ ├── IEEE 57 bus.RAW │ │ ├── IEEE300Bus.epc │ │ ├── IEEE300Bus.raw │ │ ├── IEEE39.dyr │ │ ├── IEEE39.raw │ │ ├── dd17.cdf │ │ ├── dd17.cldat │ │ ├── dd50.cdf │ │ ├── dd50.cldat │ │ ├── dd50.exdat │ │ ├── dynamics.dyr │ │ ├── ieee118.cdf │ │ ├── ieee118.psp │ │ ├── ieee118_act.cdf │ │ ├── ieee14.cdf │ │ ├── ieee14_act.cdf │ │ ├── ieee30.cdf │ │ ├── ieee300.cdf │ │ ├── ieee300.pti │ │ ├── ieee30_act.cdf │ │ ├── ieee30_no_limit.cdf │ │ ├── ieee30_no_shunt_cap_tap_limit.cdf │ │ ├── ieee39_v29.raw │ │ ├── ieee57.cdf │ │ ├── ieee57_act.cdf │ │ ├── new_england_sub.dyr │ │ └── powerflow.raw │ ├── adj_tests │ │ ├── adj_test1.xml │ │ ├── adj_test10.xml │ │ ├── adj_test2.xml │ │ ├── adj_test3.xml │ │ ├── adj_test4.xml │ │ ├── adj_test5.xml │ │ ├── adj_test6.xml │ │ ├── adj_test7.xml │ │ ├── adj_test7c.xml │ │ ├── adj_test8.xml │ │ ├── adj_test8c.xml │ │ └── adj_test9.xml │ ├── area_tests │ │ ├── area_test0.xml │ │ └── area_test1.xml │ ├── block_tests │ │ ├── block_test_compare.xml │ │ ├── block_tests1.xml │ │ ├── block_tests2.xml │ │ ├── block_tests3.xml │ │ ├── block_tests4.xml │ │ ├── block_tests5.xml │ │ ├── block_tests6.xml │ │ └── block_tests_deadband.xml │ ├── clone_tests │ │ ├── clone_test1.xml │ │ ├── clone_test2.xml │ │ ├── clone_test3.xml │ │ └── two_bus_dynamic_example.xml │ ├── constraint_tests │ │ ├── test_constSimple1.xml │ │ └── test_constraints2.xml │ ├── dcLink_tests │ │ ├── test_hvdc1.xml │ │ ├── test_hvdc2.xml │ │ ├── test_hvdc3_sc.xml │ │ └── test_hvdc4.xml │ ├── dyn_tests1 │ │ ├── test_2m4bDyn_ss.xml │ │ ├── test_2m4bDyn_ss_ext_only.xml │ │ ├── test_2m4bDyn_ss_gov_only.xml │ │ ├── test_dynSimple1.xml │ │ ├── test_dynSimple1_mod.xml │ │ ├── test_dynSimple2.xml │ │ └── test_inf_bus.xml │ ├── dyn_tests2 │ │ ├── test_2m4bDyn.xml │ │ ├── test_pulseLoadChange1.xml │ │ ├── test_pulseLoadChange1_partitioned.xml │ │ ├── test_pulseLoadChange2.xml │ │ ├── test_rampLoadChange.xml │ │ ├── test_randLoadChange.xml │ │ ├── test_sineLoadChange1_partitioned.xml │ │ └── test_sineLoadChange2_partitioned.xml │ ├── element_reader_tests │ │ ├── json_test1.json │ │ ├── json_test2.json │ │ ├── json_test3.json │ │ ├── test_bad_xml.xml │ │ ├── xmlElementReader_test.xml │ │ ├── xmlElementReader_test2.xml │ │ └── xmlElementReader_test3.xml │ ├── exciter_tests │ │ ├── sc_test.xml │ │ ├── test_exciter_stability.xml │ │ ├── test_exciter_stability2.xml │ │ ├── test_exciter_stability3.xml │ │ ├── test_exciter_stability4.xml │ │ └── test_root_exciter.xml │ ├── fault_tests │ │ ├── fault_test1.xml │ │ ├── geco_fault_uncoupled.xml │ │ ├── ieee39_relays_geco_coupled.csv │ │ ├── link_fault.xml │ │ ├── link_fault2.xml │ │ ├── link_fault_breaker.xml │ │ ├── link_fault_breaker2.xml │ │ ├── link_fault_breaker3.xml │ │ ├── link_fault_breaker4.xml │ │ ├── link_fault_fuse.xml │ │ ├── link_fault_fuse2.xml │ │ └── link_fault_fuse3.xml │ ├── fmi_tests │ │ ├── block_grid.xml │ │ ├── fmiload_test2.xml │ │ ├── fmiload_test3.xml │ │ ├── fmimotorload_test1.xml │ │ └── motorload_test1.xml │ ├── gen_tests │ │ ├── test_gen_dualremote.xml │ │ ├── test_gen_dualremote_b.xml │ │ ├── test_gen_remote.xml │ │ └── test_gen_remote_b.xml │ ├── genmodel_tests │ │ ├── test_model1.xml │ │ ├── test_model2.xml │ │ └── test_root_exciter.xml │ ├── governor_tests │ │ └── test_gov_stability.xml │ ├── gridlabD_tests │ │ ├── .gitignore │ │ ├── Demo_Distribution.glm │ │ ├── Demo_Transmission.xml │ │ ├── IEEE_13_mod.glm │ │ ├── IEEE_13_mod.xml │ │ ├── IEEE_13_mod_PQtriple.xml │ │ ├── IEEE_13_mod_dynamic.xml │ │ ├── IEEE_13_mod_mult.xml │ │ ├── IEEE_13_mod_triple-sparse.xml │ │ ├── IEEE_13_mod_triple.xml │ │ ├── Makefile │ │ ├── Simple_3Bus_mod.glm │ │ ├── Simple_3Bus_mod.xml │ │ ├── Simple_3Bus_mod3x.xml │ │ ├── Simple_3Bus_mod3x_current.xml │ │ ├── Simple_3Bus_mod3x_impedance.xml │ │ ├── Simple_3Bus_mod3x_mix.xml │ │ ├── Simple_3Bus_mod3x_mix_scale.xml │ │ ├── Simple_3Bus_mod3x_mix_scale2.xml │ │ ├── Simple_3Bus_mod3x_mix_scale3.xml │ │ ├── Simple_3Bus_mod3x_mix_scale_noGLAB.xml │ │ ├── Simple_3Bus_mod3x_power.xml │ │ ├── Simple_3Bus_mod_gdonly.xml │ │ ├── Simple_3Bus_mod_meter_current_Load.glm │ │ ├── Simple_3Bus_mod_meter_impedance_Load.glm │ │ ├── Simple_3Bus_mod_meter_mix_Load.glm │ │ ├── Simple_3Bus_mod_meter_power_Load.glm │ │ ├── Simple_3Bus_mod_single.xml │ │ ├── node_650_voltage.csv │ │ ├── overhead_line_650-632.csv │ │ └── transformer_network_to_node_650.csv │ ├── input_tests │ │ ├── 180busdyn_test.xml │ │ ├── 180busstepped_test.xml │ │ ├── Branchlist2k.csv │ │ ├── Branchlist30.csv │ │ ├── Branchlist5k.csv │ │ ├── Buslist2k.csv │ │ ├── Buslist2k_noV.csv │ │ ├── Buslist30.csv │ │ ├── Buslist5k.csv │ │ ├── Buslist5k_noV.csv │ │ ├── WSCC 9 bus.epc │ │ ├── WSCC 9 bus.raw │ │ ├── ieee14.cdf │ │ ├── ieee39_relays.csv │ │ ├── testCSV.xml │ │ ├── testCSV2k.xml │ │ ├── testCSV2k_noV.xml │ │ ├── testCSV5k.xml │ │ ├── testCSV5k_array.xml │ │ ├── testCSV5k_noV.xml │ │ ├── testIEEE39dynamic.xml │ │ ├── testIEEE39dynamic2.xml │ │ ├── testIEEE39dynamic3.xml │ │ ├── testIEEE39dynamic_relay.xml │ │ ├── testIEEE39dynamic_sine_load.xml │ │ ├── test_2m4bDyn_inputchange.xml │ │ ├── test_dynSimple1.xml │ │ ├── test_mat_dyn.xml │ │ └── test_psat_dyn.xml │ ├── link_tests │ │ ├── link_test1.xml │ │ └── link_test2.xml │ ├── load_tests │ │ ├── FileLoadInfo.bin │ │ ├── fdepLoad.xml │ │ ├── motorload_test1.xml │ │ ├── motorload_test3.xml │ │ ├── motorload_test3_stall.xml │ │ ├── motorload_test3b.xml │ │ ├── motorload_test4_stall.xml │ │ └── motorload_test5.xml │ ├── location_testFile.txt │ ├── matlab_test_files │ │ ├── case118.m │ │ ├── case1354pegase.m │ │ ├── case14.m │ │ ├── case2383wp.m │ │ ├── case24_ieee_rts.m │ │ ├── case2736sp.m │ │ ├── case2737sop.m │ │ ├── case2746wop.m │ │ ├── case2746wp.m │ │ ├── case2869pegase.m │ │ ├── case30.m │ │ ├── case300.m │ │ ├── case30Q.m │ │ ├── case30pwl.m │ │ ├── case39.m │ │ ├── case39dyn.m │ │ ├── case4gs.m │ │ ├── case57.m │ │ ├── case6ww.m │ │ ├── case89pegase.m │ │ ├── case9.m │ │ ├── case9241pegase.m │ │ ├── case9Q.m │ │ ├── case9dyn.m │ │ └── case_ieee30.m │ ├── ns3_coupling_tests │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── bin │ │ │ └── test-ieee39_relay_geco_coupled.tc │ │ ├── debug │ │ ├── geco_fault_coupled.xml │ │ ├── geco_fault_uncoupled.xml │ │ └── ieee39_relays_geco_coupled.csv │ ├── pFlow_tests │ │ ├── iterated_test_case.xml │ │ ├── test_powerflow3m9b.xml │ │ ├── test_powerflow3m9b2.xml │ │ ├── test_powerflow3m9b_Padjust.xml │ │ ├── test_powerflow3m9b_float.xml │ │ ├── two_bus_dynamic_example.xml │ │ └── two_bus_example.xml │ ├── performance_tests │ │ ├── block_grid2.xml │ │ ├── block_grid2_motor.xml │ │ ├── block_grid3..xml │ │ ├── block_grid3_motor.xml │ │ ├── block_grid4.xml │ │ └── block_grid4_motor.xml │ ├── recorder_tests │ │ ├── recorder_test.xml │ │ ├── recorder_test10.xml │ │ ├── recorder_test11.xml │ │ ├── recorder_test12.xml │ │ ├── recorder_test2.xml │ │ ├── recorder_test3.xml │ │ ├── recorder_test4.xml │ │ ├── recorder_test5.xml │ │ ├── recorder_test6.xml │ │ ├── recorder_test7.xml │ │ ├── recorder_test8.xml │ │ └── recorder_test9.xml │ ├── relay_tests │ │ ├── relay_test1.xml │ │ ├── relay_test2.xml │ │ ├── relay_test3.xml │ │ ├── relay_test_multi.xml │ │ ├── test_bus_relay.xml │ │ ├── test_control_relay.xml │ │ ├── test_differential_relay.xml │ │ └── test_relay_comms.xml │ ├── rootFinding_tests │ │ ├── test_bus_disable.xml │ │ ├── test_exciter_limit1.xml │ │ ├── test_exciter_limit2.xml │ │ ├── test_gov_limit1.xml │ │ ├── test_gov_limit2.xml │ │ ├── test_gov_limit3.xml │ │ ├── test_rampLoadChange2.xml │ │ └── test_roots1.xml │ ├── validation_tests │ │ ├── case118.m │ │ ├── case118_res.m │ │ ├── case118_resqlim.m │ │ ├── case1354pegase.m │ │ ├── case1354pegase_res.m │ │ ├── case1354pegase_resqlim.m │ │ ├── case14.m │ │ ├── case14_res.m │ │ ├── case14_resqlim.m │ │ ├── case2383wp.m │ │ ├── case2383wp_res.m │ │ ├── case2383wp_resqlim.m │ │ ├── case24_ieee_rts.m │ │ ├── case24_ieee_rts_res.m │ │ ├── case24_ieee_rts_resqlim.m │ │ ├── case2736sp.m │ │ ├── case2736sp_res.m │ │ ├── case2736sp_resqlim.m │ │ ├── case2737sop.m │ │ ├── case2737sop_res.m │ │ ├── case2746wop.m │ │ ├── case2746wop_res.m │ │ ├── case2746wop_resqlim.m │ │ ├── case2746wp.m │ │ ├── case2746wp_res.m │ │ ├── case2746wp_resqlim.m │ │ ├── case2869pegase.m │ │ ├── case2869pegase_res.m │ │ ├── case2869pegase_resqlim.m │ │ ├── case30.m │ │ ├── case300.m │ │ ├── case300_res.m │ │ ├── case300_resqlim.m │ │ ├── case3012wp.m │ │ ├── case3012wp_res.m │ │ ├── case3012wp_resqlim.m │ │ ├── case30Q.m │ │ ├── case30Q_res.m │ │ ├── case30Q_resqlim.m │ │ ├── case30_res.m │ │ ├── case30_resqlim.m │ │ ├── case30pwl.m │ │ ├── case30pwl_res.m │ │ ├── case30pwl_resqlim.m │ │ ├── case3120sp.m │ │ ├── case3120sp_res.m │ │ ├── case3120sp_resqlim.m │ │ ├── case3375wp.m │ │ ├── case3375wp_res.m │ │ ├── case3375wp_resqlim.m │ │ ├── case39.m │ │ ├── case39_res.m │ │ ├── case39_resqlim.m │ │ ├── case4gs.m │ │ ├── case4gs_res.m │ │ ├── case4gs_resqlim.m │ │ ├── case5.m │ │ ├── case57.m │ │ ├── case57_res.m │ │ ├── case57_resqlim.m │ │ ├── case5_res.m │ │ ├── case5_resqlim.m │ │ ├── case6ww.m │ │ ├── case6ww_res.m │ │ ├── case6ww_resqlim.m │ │ ├── case89pegase.m │ │ ├── case89pegase_res.m │ │ ├── case89pegase_resqlim.m │ │ ├── case9.m │ │ ├── case9241pegase.m │ │ ├── case9241pegase_res.m │ │ ├── case9241pegase_resqlim.m │ │ ├── case9Q.m │ │ ├── case9Q_res.m │ │ ├── case9Q_resqlim.m │ │ ├── case9_res.m │ │ ├── case9_resqlim.m │ │ ├── case9target.m │ │ ├── case9target_res.m │ │ ├── case9target_resqlim.m │ │ ├── case_ieee30.m │ │ ├── case_ieee30_res.m │ │ ├── case_ieee30_resqlim.m │ │ └── case_info.m │ └── xml_tests │ │ ├── location_testFile.txt │ │ ├── sep_lib.xml │ │ ├── test_2m4bDyn.xml │ │ ├── test_2m4bDyn_lib.xml │ │ ├── test_2m4bDyn_mgen.xml │ │ ├── test_2m4bDyn_rload.xml │ │ ├── test_2m4bDyn_sep.xml │ │ ├── test_bad_xml.xml │ │ ├── test_custom_element1.xml │ │ ├── test_custom_element2.xml │ │ ├── test_function_constant.xml │ │ ├── test_param_setting.xml │ │ ├── test_xmltest1.xml │ │ ├── test_xmltest10.xml │ │ ├── test_xmltest11.xml │ │ ├── test_xmltest12.xml │ │ ├── test_xmltest13.xml │ │ ├── test_xmltest2.xml │ │ ├── test_xmltest3.xml │ │ ├── test_xmltest4.xml │ │ ├── test_xmltest5.xml │ │ ├── test_xmltest6.xml │ │ ├── test_xmltest7.xml │ │ ├── test_xmltest8.xml │ │ ├── test_xmltest9.xml │ │ └── xmlElementReader_test.xml └── testgridDyn.h └── utilities ├── CMakeLists.txt ├── arrayData.cpp ├── arrayData.h ├── arrayDataBoost.h ├── arrayDataCompact.h ├── arrayDataScale.h ├── arrayDataSparse.cpp ├── arrayDataSparse.h ├── arrayDataSparseSM.cpp ├── arrayDataSparseSM.h ├── arrayDataTranslate.h ├── charMapper.cpp ├── fileReaders.cpp ├── fileReaders.h ├── functionInterpreter.cpp ├── functionInterpreter.h ├── gridRandom.cpp ├── gridRandom.h ├── saturation.cpp ├── saturation.h ├── stackInfo.cpp ├── stackInfo.h ├── stringOps.cpp ├── stringOps.h ├── units.cpp ├── units.h ├── vectData.cpp ├── vectData.h ├── vectorOps.cpp └── vectorOps.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1 (1).pdf -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Config.cmake/fmicapi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Config.cmake/fmicapi.cmake -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Config.cmake/fmilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Config.cmake/fmilib.h -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Config.cmake/fmixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Config.cmake/fmixml.cmake -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Config.cmake/fmizip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Config.cmake/fmizip.cmake -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Config.cmake/jmutil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Config.cmake/jmutil.cmake -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/FMILIB_Acknowledgements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/FMILIB_Acknowledgements.txt -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/FMILIB_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/FMILIB_License.txt -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/FMILIB_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/FMILIB_Readme.txt -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/LICENSE.md -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/README.md -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/FMI1/fmi_total_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/FMI1/fmi_total_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/FMI1/jm_vector_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/FMI1/jm_vector_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/fmi_import_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/fmi_import_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/fmi_zip_unzip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/fmi_zip_unzip_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/fmi_zip_zip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/fmi_zip_zip_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/Test/jm_vector_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/Test/jm_vector_test.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/ThirdParty/Zlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/ThirdParty/Zlib/Makefile.am -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/ThirdParty/Zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/ThirdParty/Zlib/Makefile.in -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/src/Util/src/FMI/fmi_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/src/Util/src/FMI/fmi_util.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/src/Util/src/JM/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/src/Util/src/JM/snprintf.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/src/ZIP/src/fmi_zip_unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/src/ZIP/src/fmi_zip_unzip.c -------------------------------------------------------------------------------- /ThirdParty/FMILibrary-2.0.1/src/ZIP/src/fmi_zip_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/FMILibrary-2.0.1/src/ZIP/src/fmi_zip_zip.c -------------------------------------------------------------------------------- /ThirdParty/tinyxml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/tinyxml/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/json/json-forwards.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/json/json.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/jsoncpp.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/testTinyXML.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/testTinyXML.vcproj -------------------------------------------------------------------------------- /ThirdParty/tinyxml/testtinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/testtinyxml.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/ticpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/ticpp.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/ticpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/ticpp.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/ticppapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/ticppapi.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/ticpprc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/ticpprc.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinystr.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxml2/readme.md -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /ThirdParty/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/ThirdParty/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /config/FindFMI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/FindFMI.cmake -------------------------------------------------------------------------------- /config/FindFSKIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/FindFSKIT.cmake -------------------------------------------------------------------------------- /config/FindKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/FindKLU.cmake -------------------------------------------------------------------------------- /config/Findsundials.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/Findsundials.cmake -------------------------------------------------------------------------------- /config/Findsundials2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/Findsundials2.cmake -------------------------------------------------------------------------------- /config/GriddynKLU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/config/GriddynKLU.cmake -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/griddyn-tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/core/griddyn-tracer.h -------------------------------------------------------------------------------- /coupling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/CMakeLists.txt -------------------------------------------------------------------------------- /coupling/GhostSwingBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/GhostSwingBus.cpp -------------------------------------------------------------------------------- /coupling/GhostSwingBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/GhostSwingBus.h -------------------------------------------------------------------------------- /coupling/GhostSwingBusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/GhostSwingBusManager.cpp -------------------------------------------------------------------------------- /coupling/GhostSwingBusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/GhostSwingBusManager.h -------------------------------------------------------------------------------- /coupling/GhostSwingBusMessageTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/coupling/GhostSwingBusMessageTypes.h -------------------------------------------------------------------------------- /docs/extra_doxygen_style.css: -------------------------------------------------------------------------------- 1 | div.image img[src="GridDyn_FullColor.png"]{ 2 | width:300px; 3 | } -------------------------------------------------------------------------------- /docs/images/GridDyn_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/GridDyn_Black.png -------------------------------------------------------------------------------- /docs/images/GridDyn_FullColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/GridDyn_FullColor.png -------------------------------------------------------------------------------- /docs/images/GridDyn_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/GridDyn_White.png -------------------------------------------------------------------------------- /docs/images/dyn_example_bus_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/dyn_example_bus_generation.png -------------------------------------------------------------------------------- /docs/images/dyn_example_bus_voltage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/dyn_example_bus_voltage.png -------------------------------------------------------------------------------- /docs/images/dyn_examples_bus_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/images/dyn_examples_bus_frequency.png -------------------------------------------------------------------------------- /docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/mainpage.dox -------------------------------------------------------------------------------- /docs/manuals/GridDynUserManual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/manuals/GridDynUserManual.pdf -------------------------------------------------------------------------------- /docs/presentations/GridDyn_execution_flow.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/presentations/GridDyn_execution_flow.pptx -------------------------------------------------------------------------------- /docs/presentations/GridDyn_objects.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/presentations/GridDyn_objects.pptx -------------------------------------------------------------------------------- /docs/presentations/Griddyn_intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/presentations/Griddyn_intro.pptx -------------------------------------------------------------------------------- /docs/simple_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/docs/simple_help.txt -------------------------------------------------------------------------------- /examples/180busDynamicTest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/180busDynamicTest.xml -------------------------------------------------------------------------------- /examples/IEEE39.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/IEEE39.dyr -------------------------------------------------------------------------------- /examples/IEEE39.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/IEEE39.raw -------------------------------------------------------------------------------- /examples/IEEE_14bus.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/IEEE_14bus.cdf -------------------------------------------------------------------------------- /examples/dynamics.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/dynamics.dyr -------------------------------------------------------------------------------- /examples/dynamicsWECC.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/dynamicsWECC.dyr -------------------------------------------------------------------------------- /examples/powerflow.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/powerflow.raw -------------------------------------------------------------------------------- /examples/powerflowWECC.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/powerflowWECC.raw -------------------------------------------------------------------------------- /examples/test_griddyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/test_griddyn.xml -------------------------------------------------------------------------------- /examples/test_griddyn39.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/test_griddyn39.xml -------------------------------------------------------------------------------- /examples/two_bus_dynamic_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/two_bus_dynamic_example.xml -------------------------------------------------------------------------------- /examples/two_bus_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/examples/two_bus_example.xml -------------------------------------------------------------------------------- /extraModels/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/CMakeLists.txt -------------------------------------------------------------------------------- /extraModels/extraModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/extraModels.cpp -------------------------------------------------------------------------------- /extraModels/extraModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/extraModels.h -------------------------------------------------------------------------------- /extraModels/txLifeSpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/txLifeSpan.cpp -------------------------------------------------------------------------------- /extraModels/txLifeSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/txLifeSpan.h -------------------------------------------------------------------------------- /extraModels/txThermalModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/txThermalModel.cpp -------------------------------------------------------------------------------- /extraModels/txThermalModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/extraModels/txThermalModel.h -------------------------------------------------------------------------------- /fmi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/CMakeLists.txt -------------------------------------------------------------------------------- /fmi/fmiExciter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiExciter.cpp -------------------------------------------------------------------------------- /fmi/fmiExciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiExciter.h -------------------------------------------------------------------------------- /fmi/fmiGDinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiGDinfo.cpp -------------------------------------------------------------------------------- /fmi/fmiGDinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiGDinfo.h -------------------------------------------------------------------------------- /fmi/fmiLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiLoad.cpp -------------------------------------------------------------------------------- /fmi/fmiLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiLoad.h -------------------------------------------------------------------------------- /fmi/fmiProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiProcess.cpp -------------------------------------------------------------------------------- /fmi/fmiSubModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiSubModel.cpp -------------------------------------------------------------------------------- /fmi/fmiSubModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiSubModel.h -------------------------------------------------------------------------------- /fmi/fmiSubModel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmiSubModel2.cpp -------------------------------------------------------------------------------- /fmi/fmi_import1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmi_import1.cpp -------------------------------------------------------------------------------- /fmi/fmi_import2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmi_import2.cpp -------------------------------------------------------------------------------- /fmi/fmi_importGD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/fmi/fmi_importGD.h -------------------------------------------------------------------------------- /gridDyn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/CMakeLists.txt -------------------------------------------------------------------------------- /gridDyn/allGridDynObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/allGridDynObjects.h -------------------------------------------------------------------------------- /gridDyn/basicDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/basicDefs.h -------------------------------------------------------------------------------- /gridDyn/comms/commMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/commMessage.cpp -------------------------------------------------------------------------------- /gridDyn/comms/commMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/commMessage.h -------------------------------------------------------------------------------- /gridDyn/comms/communicationsCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/communicationsCore.cpp -------------------------------------------------------------------------------- /gridDyn/comms/communicationsCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/communicationsCore.h -------------------------------------------------------------------------------- /gridDyn/comms/controlMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/controlMessage.cpp -------------------------------------------------------------------------------- /gridDyn/comms/controlMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/controlMessage.h -------------------------------------------------------------------------------- /gridDyn/comms/gridCommunicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/gridCommunicator.cpp -------------------------------------------------------------------------------- /gridDyn/comms/gridCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/gridCommunicator.h -------------------------------------------------------------------------------- /gridDyn/comms/relayMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/relayMessage.cpp -------------------------------------------------------------------------------- /gridDyn/comms/relayMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/relayMessage.h -------------------------------------------------------------------------------- /gridDyn/comms/schedulerMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/schedulerMessage.cpp -------------------------------------------------------------------------------- /gridDyn/comms/schedulerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/comms/schedulerMessage.h -------------------------------------------------------------------------------- /gridDyn/controllers/AGControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/AGControl.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/AGControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/AGControl.h -------------------------------------------------------------------------------- /gridDyn/controllers/controlSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/controlSystem.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/controlSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/controlSystem.h -------------------------------------------------------------------------------- /gridDyn/controllers/dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/dispatcher.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/dispatcher.h -------------------------------------------------------------------------------- /gridDyn/controllers/reserveDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/reserveDispatcher.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/reserveDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/reserveDispatcher.h -------------------------------------------------------------------------------- /gridDyn/controllers/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/scheduler.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/scheduler.h -------------------------------------------------------------------------------- /gridDyn/controllers/schedulerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/schedulerInfo.h -------------------------------------------------------------------------------- /gridDyn/controllers/schedulerRamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/schedulerRamp.cpp -------------------------------------------------------------------------------- /gridDyn/controllers/schedulerReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/controllers/schedulerReg.cpp -------------------------------------------------------------------------------- /gridDyn/core/helperTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/core/helperTemplates.h -------------------------------------------------------------------------------- /gridDyn/fskit/fskitCommunicator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/fskitCommunicator.cpp -------------------------------------------------------------------------------- /gridDyn/fskit/fskitCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/fskitCommunicator.h -------------------------------------------------------------------------------- /gridDyn/fskit/protection-message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/protection-message.cc -------------------------------------------------------------------------------- /gridDyn/fskit/protection-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/protection-message.h -------------------------------------------------------------------------------- /gridDyn/fskit/zonalRelayLogicalProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/zonalRelayLogicalProcess.cpp -------------------------------------------------------------------------------- /gridDyn/fskit/zonalRelayLogicalProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/fskit/zonalRelayLogicalProcess.h -------------------------------------------------------------------------------- /gridDyn/generators/gridDynGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/generators/gridDynGenerator.cpp -------------------------------------------------------------------------------- /gridDyn/generators/gridDynGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/generators/gridDynGenerator.h -------------------------------------------------------------------------------- /gridDyn/generators/variableGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/generators/variableGenerator.cpp -------------------------------------------------------------------------------- /gridDyn/generators/variableGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/generators/variableGenerator.h -------------------------------------------------------------------------------- /gridDyn/gridArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridArea.h -------------------------------------------------------------------------------- /gridDyn/gridBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridBus.h -------------------------------------------------------------------------------- /gridDyn/gridCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridCore.cpp -------------------------------------------------------------------------------- /gridDyn/gridCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridCore.h -------------------------------------------------------------------------------- /gridDyn/gridCoreList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridCoreList.cpp -------------------------------------------------------------------------------- /gridDyn/gridCoreList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridCoreList.h -------------------------------------------------------------------------------- /gridDyn/gridCoreTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridCoreTemplates.h -------------------------------------------------------------------------------- /gridDyn/gridDyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridDyn.h -------------------------------------------------------------------------------- /gridDyn/gridDynFederatedScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridDynFederatedScheduler.cpp -------------------------------------------------------------------------------- /gridDyn/gridDynFederatedScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridDynFederatedScheduler.h -------------------------------------------------------------------------------- /gridDyn/gridDynTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridDynTypes.h -------------------------------------------------------------------------------- /gridDyn/gridObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridObjects.cpp -------------------------------------------------------------------------------- /gridDyn/gridObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridObjects.h -------------------------------------------------------------------------------- /gridDyn/gridObjectsHelperClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridObjectsHelperClasses.cpp -------------------------------------------------------------------------------- /gridDyn/gridObjectsHelperClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridObjectsHelperClasses.h -------------------------------------------------------------------------------- /gridDyn/gridPrimary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridPrimary.cpp -------------------------------------------------------------------------------- /gridDyn/gridSecondary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridSecondary.cpp -------------------------------------------------------------------------------- /gridDyn/gridSubModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/gridSubModel.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/acLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/acLine.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/acLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/acLine.h -------------------------------------------------------------------------------- /gridDyn/linkModels/acdcConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/acdcConverter.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/acdcConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/acdcConverter.h -------------------------------------------------------------------------------- /gridDyn/linkModels/adjustableTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/adjustableTransformer.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/dcLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/dcLink.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/dcLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/dcLink.h -------------------------------------------------------------------------------- /gridDyn/linkModels/gridLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/gridLink.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/gridLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/gridLink.h -------------------------------------------------------------------------------- /gridDyn/linkModels/gridLink.h~RF965694e.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/gridLink.h~RF965694e.TMP -------------------------------------------------------------------------------- /gridDyn/linkModels/hvdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/hvdc.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/hvdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/hvdc.h -------------------------------------------------------------------------------- /gridDyn/linkModels/longLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/longLine.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/longLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/longLine.h -------------------------------------------------------------------------------- /gridDyn/linkModels/rectifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/rectifier.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/rectifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/rectifier.h -------------------------------------------------------------------------------- /gridDyn/linkModels/subsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/subsystem.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/subsystem.h -------------------------------------------------------------------------------- /gridDyn/linkModels/zBreaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/zBreaker.cpp -------------------------------------------------------------------------------- /gridDyn/linkModels/zBreaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/linkModels/zBreaker.h -------------------------------------------------------------------------------- /gridDyn/loadModels/compositeLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/compositeLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/compositeLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/compositeLoad.h -------------------------------------------------------------------------------- /gridDyn/loadModels/exponentialLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/exponentialLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/fileLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/fileLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/gridLabDLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/gridLabDLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/gridLabDLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/gridLabDLoad.h -------------------------------------------------------------------------------- /gridDyn/loadModels/gridLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/gridLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/gridLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/gridLoad.h -------------------------------------------------------------------------------- /gridDyn/loadModels/motorLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/motorLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/motorLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/motorLoad.h -------------------------------------------------------------------------------- /gridDyn/loadModels/motorLoad3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/motorLoad3.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/motorLoad5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/motorLoad5.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/otherLoads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/otherLoads.h -------------------------------------------------------------------------------- /gridDyn/loadModels/pulseLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/pulseLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/rampLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/rampLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/randomLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/randomLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/sineLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/sineLoad.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/svd.cpp -------------------------------------------------------------------------------- /gridDyn/loadModels/svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/loadModels/svd.h -------------------------------------------------------------------------------- /gridDyn/objectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/objectFactory.cpp -------------------------------------------------------------------------------- /gridDyn/objectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/objectFactory.h -------------------------------------------------------------------------------- /gridDyn/objectFactoryTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/objectFactoryTemplates.h -------------------------------------------------------------------------------- /gridDyn/parameterOperator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/parameterOperator.hpp -------------------------------------------------------------------------------- /gridDyn/primary/acBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/acBus.cpp -------------------------------------------------------------------------------- /gridDyn/primary/acBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/acBus.h -------------------------------------------------------------------------------- /gridDyn/primary/busControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/busControls.cpp -------------------------------------------------------------------------------- /gridDyn/primary/busControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/busControls.h -------------------------------------------------------------------------------- /gridDyn/primary/dcBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/dcBus.cpp -------------------------------------------------------------------------------- /gridDyn/primary/dcBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/dcBus.h -------------------------------------------------------------------------------- /gridDyn/primary/dcBusControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/dcBusControls.cpp -------------------------------------------------------------------------------- /gridDyn/primary/gridArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/gridArea.cpp -------------------------------------------------------------------------------- /gridDyn/primary/gridBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/gridBus.cpp -------------------------------------------------------------------------------- /gridDyn/primary/infiniteBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/infiniteBus.cpp -------------------------------------------------------------------------------- /gridDyn/primary/infiniteBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/infiniteBus.h -------------------------------------------------------------------------------- /gridDyn/primary/listMaintainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/listMaintainer.cpp -------------------------------------------------------------------------------- /gridDyn/primary/listMaintainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/primary/listMaintainer.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/CMakeLists.txt -------------------------------------------------------------------------------- /gridDyn/recorder_events/eventAdapters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/eventAdapters.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/eventAdapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/eventAdapters.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/eventInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/eventInterface.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/eventQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/eventQueue.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/eventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/eventQueue.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/grabberInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/grabberInterpreter.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/grabberInterpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/grabberInterpreter.hpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridCondition.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridCondition.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridEvent.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridEvent.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridGrabbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridGrabbers.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridGrabbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridGrabbers.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridRecorder.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/gridRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/gridRecorder.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/objectInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/objectInterpreter.cpp -------------------------------------------------------------------------------- /gridDyn/recorder_events/objectInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/objectInterpreter.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/stateGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/stateGrabber.h -------------------------------------------------------------------------------- /gridDyn/recorder_events/stateGrabbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/recorder_events/stateGrabbers.cpp -------------------------------------------------------------------------------- /gridDyn/relays/breaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/breaker.cpp -------------------------------------------------------------------------------- /gridDyn/relays/breaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/breaker.h -------------------------------------------------------------------------------- /gridDyn/relays/busRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/busRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/busRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/busRelay.h -------------------------------------------------------------------------------- /gridDyn/relays/controlRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/controlRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/controlRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/controlRelay.h -------------------------------------------------------------------------------- /gridDyn/relays/differentialRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/differentialRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/differentialRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/differentialRelay.h -------------------------------------------------------------------------------- /gridDyn/relays/fuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/fuse.cpp -------------------------------------------------------------------------------- /gridDyn/relays/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/fuse.h -------------------------------------------------------------------------------- /gridDyn/relays/gridRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/gridRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/gridRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/gridRelay.h -------------------------------------------------------------------------------- /gridDyn/relays/loadRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/loadRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/loadRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/loadRelay.h -------------------------------------------------------------------------------- /gridDyn/relays/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/sensor.cpp -------------------------------------------------------------------------------- /gridDyn/relays/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/sensor.h -------------------------------------------------------------------------------- /gridDyn/relays/zonalRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/zonalRelay.cpp -------------------------------------------------------------------------------- /gridDyn/relays/zonalRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/relays/zonalRelay.h -------------------------------------------------------------------------------- /gridDyn/simulation/contingency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/contingency.h -------------------------------------------------------------------------------- /gridDyn/simulation/continuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/continuation.h -------------------------------------------------------------------------------- /gridDyn/simulation/diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/diagnostics.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/diagnostics.h -------------------------------------------------------------------------------- /gridDyn/simulation/dynamicInitialConditionRecovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/dynamicInitialConditionRecovery.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/dynamicInitialConditionRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/dynamicInitialConditionRecovery.h -------------------------------------------------------------------------------- /gridDyn/simulation/faultResetRecovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/faultResetRecovery.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/faultResetRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/faultResetRecovery.h -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynActions.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynActions.h -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynContingency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynContingency.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynContinuation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynContinuation.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynDynamic.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynPowerFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynPowerFlow.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynSimulation.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynSimulationFileOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynSimulationFileOps.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridDynSimulationFileOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridDynSimulationFileOps.h -------------------------------------------------------------------------------- /gridDyn/simulation/gridSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridSimulation.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/gridSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/gridSimulation.h -------------------------------------------------------------------------------- /gridDyn/simulation/powerFlowErrorRecovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/powerFlowErrorRecovery.cpp -------------------------------------------------------------------------------- /gridDyn/simulation/powerFlowErrorRecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/simulation/powerFlowErrorRecovery.h -------------------------------------------------------------------------------- /gridDyn/solverMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solverMode.h -------------------------------------------------------------------------------- /gridDyn/solvers/arkodeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/arkodeInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/basicOdeSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/basicOdeSolver.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/basicSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/basicSolver.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/cvodeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/cvodeInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/idaInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/idaInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/kinsolInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/kinsolInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/solverInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/solverInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/solverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/solverInterface.h -------------------------------------------------------------------------------- /gridDyn/solvers/sundialsArrayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/sundialsArrayData.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/sundialsArrayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/sundialsArrayData.h -------------------------------------------------------------------------------- /gridDyn/solvers/sundialsInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/sundialsInterface.cpp -------------------------------------------------------------------------------- /gridDyn/solvers/sundialsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/sundialsInterface.h -------------------------------------------------------------------------------- /gridDyn/solvers/sundials_sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/solvers/sundials_sparse.h -------------------------------------------------------------------------------- /gridDyn/sourceModels/fileSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/fileSource.cpp -------------------------------------------------------------------------------- /gridDyn/sourceModels/gridSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/gridSource.cpp -------------------------------------------------------------------------------- /gridDyn/sourceModels/gridSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/gridSource.h -------------------------------------------------------------------------------- /gridDyn/sourceModels/pulseSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/pulseSource.cpp -------------------------------------------------------------------------------- /gridDyn/sourceModels/rampSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/rampSource.cpp -------------------------------------------------------------------------------- /gridDyn/sourceModels/randomSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/randomSource.cpp -------------------------------------------------------------------------------- /gridDyn/sourceModels/sineSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/sourceModels/sineSource.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/basicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/basicBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/controlBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/controlBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/deadbandBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/deadbandBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/delayBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/delayBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/derivativeBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/derivativeBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/functionBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/functionBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/integralBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/integralBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/lutBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/lutBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlBlocks/pidBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/controlBlocks/pidBlock.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/controlSystem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gridDyn/submodels/exciters/gridDynExciter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/exciters/gridDynExciter.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/exciters/gridDynExciterDC1A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/exciters/gridDynExciterDC1A.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/exciters/gridDynExciterDC2A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/exciters/gridDynExciterDC2A.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/exciters/gridDynExciterIEEEtype1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/exciters/gridDynExciterIEEEtype1.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/exciters/gridDynExciterIEEEtype2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/exciters/gridDynExciterIEEEtype2.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel3.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel4.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel5.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel5type2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel5type2.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel5type3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel5type3.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel6.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel6type2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel6type2.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModel8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModel8.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModelGENROU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModelGENROU.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/genModels/gridDynGenModelInverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/genModels/gridDynGenModelInverter.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/governors/gridDynGovernor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/governors/gridDynGovernor.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/governors/gridDynGovernorHydro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/governors/gridDynGovernorHydro.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/governors/gridDynGovernorReheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/governors/gridDynGovernorReheat.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/governors/gridDynGovernorSteamNR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/governors/gridDynGovernorSteamNR.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/governors/gridDynGovernorTgov1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/governors/gridDynGovernorTgov1.cpp -------------------------------------------------------------------------------- /gridDyn/submodels/gridControlBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/gridControlBlocks.h -------------------------------------------------------------------------------- /gridDyn/submodels/gridDynExciter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/gridDynExciter.h -------------------------------------------------------------------------------- /gridDyn/submodels/gridDynGenModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/gridDynGenModel.h -------------------------------------------------------------------------------- /gridDyn/submodels/gridDynGovernor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/gridDynGovernor.h -------------------------------------------------------------------------------- /gridDyn/submodels/gridDynPSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/gridDynPSS.h -------------------------------------------------------------------------------- /gridDyn/submodels/otherBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/otherBlocks.h -------------------------------------------------------------------------------- /gridDyn/submodels/otherGenModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/otherGenModels.h -------------------------------------------------------------------------------- /gridDyn/submodels/otherGovernors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/otherGovernors.h -------------------------------------------------------------------------------- /gridDyn/submodels/pss/gridDynPSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDyn/submodels/pss/gridDynPSS.cpp -------------------------------------------------------------------------------- /gridDynFileInput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/CMakeLists.txt -------------------------------------------------------------------------------- /gridDynFileInput/elementReaderTemplates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/elementReaderTemplates.hpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynFileInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynFileInput.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynFileInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynFileInput.h -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadCDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadCDF.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadCSV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadCSV.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadDYR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadDYR.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadPSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadPSP.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadPTI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadPTI.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynReadRAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynReadRAW.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynRunner.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridDynRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridDynRunner.h -------------------------------------------------------------------------------- /gridDynFileInput/gridParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridParameter.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridParameter.h -------------------------------------------------------------------------------- /gridDynFileInput/gridReadEPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridReadEPC.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridReadMatPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridReadMatPower.cpp -------------------------------------------------------------------------------- /gridDynFileInput/gridReadPSAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/gridReadPSAT.cpp -------------------------------------------------------------------------------- /gridDynFileInput/jsonReaderElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/jsonReaderElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/jsonReaderElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/jsonReaderElement.h -------------------------------------------------------------------------------- /gridDynFileInput/loadSubObjectsElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/loadSubObjectsElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/objectLoadHelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/objectLoadHelperFunctions.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readAreaElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readAreaElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readArrayElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readArrayElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readBusElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readBusElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readConditionElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readConditionElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readEconElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readEconElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readElement.h -------------------------------------------------------------------------------- /gridDynFileInput/readElementFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readElementFile.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readElementFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readElementFile.h -------------------------------------------------------------------------------- /gridDynFileInput/readElementHelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readElementHelperFunctions.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readEventElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readEventElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readLibraryElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readLibraryElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readLinkElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readLinkElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readMatDyn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readMatDyn.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readMatlabData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readMatlabData.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readRecorderElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readRecorderElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readRelayElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readRelayElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readSimulationElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readSimulationElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readSolverElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readSolverElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readXMLfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readXMLfile.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readerElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readerElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerElement.h -------------------------------------------------------------------------------- /gridDynFileInput/readerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerHelper.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerHelper.h -------------------------------------------------------------------------------- /gridDynFileInput/readerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerInfo.cpp -------------------------------------------------------------------------------- /gridDynFileInput/readerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/readerInfo.h -------------------------------------------------------------------------------- /gridDynFileInput/stringInterpret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/stringInterpret.cpp -------------------------------------------------------------------------------- /gridDynFileInput/tinyxml2ReaderElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/tinyxml2ReaderElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/tinyxml2ReaderElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/tinyxml2ReaderElement.h -------------------------------------------------------------------------------- /gridDynFileInput/tinyxmlReaderElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/tinyxmlReaderElement.cpp -------------------------------------------------------------------------------- /gridDynFileInput/tinyxmlReaderElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynFileInput/tinyxmlReaderElement.h -------------------------------------------------------------------------------- /gridDynMain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynMain/CMakeLists.txt -------------------------------------------------------------------------------- /gridDynMain/gridDynMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynMain/gridDynMain.cpp -------------------------------------------------------------------------------- /gridDynOpt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/CMakeLists.txt -------------------------------------------------------------------------------- /gridDynOpt/gridDynOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/gridDynOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/gridDynOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/gridDynOpt.h -------------------------------------------------------------------------------- /gridDynOpt/gridOptObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/gridOptObjects.cpp -------------------------------------------------------------------------------- /gridDynOpt/gridOptObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/gridOptObjects.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridAreaOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridAreaOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridAreaOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridAreaOpt.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridBusOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridBusOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridBusOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridBusOpt.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridGenOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridGenOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridGenOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridGenOpt.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridLinkOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridLinkOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridLinkOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridLinkOpt.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridLoadOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridLoadOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridLoadOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridLoadOpt.h -------------------------------------------------------------------------------- /gridDynOpt/models/gridRelayOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridRelayOpt.cpp -------------------------------------------------------------------------------- /gridDynOpt/models/gridRelayOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/models/gridRelayOpt.h -------------------------------------------------------------------------------- /gridDynOpt/optHelperClasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optHelperClasses.cpp -------------------------------------------------------------------------------- /gridDynOpt/optHelperClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optHelperClasses.h -------------------------------------------------------------------------------- /gridDynOpt/optObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optObjectFactory.cpp -------------------------------------------------------------------------------- /gridDynOpt/optObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optObjectFactory.h -------------------------------------------------------------------------------- /gridDynOpt/optimizerInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optimizerInterface.cpp -------------------------------------------------------------------------------- /gridDynOpt/optimizerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/gridDynOpt/optimizerInterface.h -------------------------------------------------------------------------------- /griddyn-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/griddyn-config.h.in -------------------------------------------------------------------------------- /installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/installation.md -------------------------------------------------------------------------------- /matlab/examplePlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/matlab/examplePlot.m -------------------------------------------------------------------------------- /matlab/readStateFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/matlab/readStateFile.m -------------------------------------------------------------------------------- /matlab/sheetread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/matlab/sheetread.m -------------------------------------------------------------------------------- /matlab/sheetwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/matlab/sheetwrite.m -------------------------------------------------------------------------------- /matlab/timeSeries2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/matlab/timeSeries2.m -------------------------------------------------------------------------------- /quickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/quickStart.md -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/componentTests/faultTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/faultTests.cpp -------------------------------------------------------------------------------- /test/componentTests/simulationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/simulationTests.cpp -------------------------------------------------------------------------------- /test/componentTests/testAdjustableTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testAdjustableTX.cpp -------------------------------------------------------------------------------- /test/componentTests/testArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testArea.cpp -------------------------------------------------------------------------------- /test/componentTests/testBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testBlocks.cpp -------------------------------------------------------------------------------- /test/componentTests/testComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testComponents.cpp -------------------------------------------------------------------------------- /test/componentTests/testExciters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testExciters.cpp -------------------------------------------------------------------------------- /test/componentTests/testGenModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testGenModels.cpp -------------------------------------------------------------------------------- /test/componentTests/testGenerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testGenerators.cpp -------------------------------------------------------------------------------- /test/componentTests/testGovernors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testGovernors.cpp -------------------------------------------------------------------------------- /test/componentTests/testGridLab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testGridLab.cpp -------------------------------------------------------------------------------- /test/componentTests/testLinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testLinks.cpp -------------------------------------------------------------------------------- /test/componentTests/testLoads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testLoads.cpp -------------------------------------------------------------------------------- /test/componentTests/testRecorders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testRecorders.cpp -------------------------------------------------------------------------------- /test/componentTests/testRelays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testRelays.cpp -------------------------------------------------------------------------------- /test/componentTests/testSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testSource.cpp -------------------------------------------------------------------------------- /test/componentTests/testdcLinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/componentTests/testdcLinks.cpp -------------------------------------------------------------------------------- /test/exeTestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/exeTestHelper.cpp -------------------------------------------------------------------------------- /test/exeTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/exeTestHelper.h -------------------------------------------------------------------------------- /test/extraTests/performanceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/extraTests/performanceTests.cpp -------------------------------------------------------------------------------- /test/extraTests/testExtra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/extraTests/testExtra.cpp -------------------------------------------------------------------------------- /test/libraryTests/libraryTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/libraryTests.cpp -------------------------------------------------------------------------------- /test/libraryTests/testArrayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testArrayData.cpp -------------------------------------------------------------------------------- /test/libraryTests/testCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testCore.cpp -------------------------------------------------------------------------------- /test/libraryTests/testElementReaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testElementReaders.cpp -------------------------------------------------------------------------------- /test/libraryTests/testGridDynRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testGridDynRunner.cpp -------------------------------------------------------------------------------- /test/libraryTests/testGridParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testGridParameter.cpp -------------------------------------------------------------------------------- /test/libraryTests/testJsonReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testJsonReader.cpp -------------------------------------------------------------------------------- /test/libraryTests/testReaderInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testReaderInfo.cpp -------------------------------------------------------------------------------- /test/libraryTests/testStringOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testStringOps.cpp -------------------------------------------------------------------------------- /test/libraryTests/testXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/libraryTests/testXML.cpp -------------------------------------------------------------------------------- /test/systemTests/testCloning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testCloning.cpp -------------------------------------------------------------------------------- /test/systemTests/testConstraints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testConstraints.cpp -------------------------------------------------------------------------------- /test/systemTests/testDyn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testDyn1.cpp -------------------------------------------------------------------------------- /test/systemTests/testDyn2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testDyn2.cpp -------------------------------------------------------------------------------- /test/systemTests/testFMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testFMI.cpp -------------------------------------------------------------------------------- /test/systemTests/testInputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testInputs.cpp -------------------------------------------------------------------------------- /test/systemTests/testMainExe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testMainExe.cpp -------------------------------------------------------------------------------- /test/systemTests/testOutputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testOutputs.cpp -------------------------------------------------------------------------------- /test/systemTests/testRoots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testRoots.cpp -------------------------------------------------------------------------------- /test/systemTests/testSolverModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testSolverModes.cpp -------------------------------------------------------------------------------- /test/systemTests/testSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testSystem.cpp -------------------------------------------------------------------------------- /test/systemTests/testpFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/testpFlow.cpp -------------------------------------------------------------------------------- /test/systemTests/validationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/systemTests/validationTests.cpp -------------------------------------------------------------------------------- /test/testHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/testHelper.h -------------------------------------------------------------------------------- /test/testHelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/testHelperFunctions.cpp -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/118BUS.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/118BUS.JPG -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/14bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/14bus.jpg -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/300BUS.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/300BUS.JPG -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/30bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/30bus.jpg -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/57bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/57bus.jpg -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/Anderson9.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/Anderson9.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 118 Bus.EPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 118 Bus.EPC -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 118 Bus.RAW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 118 Bus.RAW -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 14 bus.epc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 14 bus.epc -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 14 bus.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 14 bus.raw -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 24 bus.EPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 24 bus.EPC -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 24 bus.RAW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 24 bus.RAW -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 39 bus.EPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 39 bus.EPC -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 57 bus.EPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 57 bus.EPC -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE 57 bus.RAW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE 57 bus.RAW -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE300Bus.epc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE300Bus.epc -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE300Bus.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE300Bus.raw -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE39.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE39.dyr -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/IEEE39.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/IEEE39.raw -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dd17.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dd17.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dd17.cldat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dd17.cldat -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dd50.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dd50.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dd50.cldat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dd50.cldat -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dd50.exdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dd50.exdat -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/dynamics.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/dynamics.dyr -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee118.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee118.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee118.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee118.psp -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee118_act.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee118_act.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee14.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee14.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee14_act.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee14_act.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee30.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee30.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee300.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee300.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee300.pti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee300.pti -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee30_act.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee30_act.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee30_no_limit.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee30_no_limit.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee39_v29.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee39_v29.raw -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee57.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee57.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/ieee57_act.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/ieee57_act.cdf -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/new_england_sub.dyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/new_england_sub.dyr -------------------------------------------------------------------------------- /test/test_files/IEEE_test_cases/powerflow.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/IEEE_test_cases/powerflow.raw -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test1.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test10.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test2.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test3.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test4.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test5.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test6.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test7.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test7c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test7c.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test8.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test8c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test8c.xml -------------------------------------------------------------------------------- /test/test_files/adj_tests/adj_test9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/adj_tests/adj_test9.xml -------------------------------------------------------------------------------- /test/test_files/area_tests/area_test0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/area_tests/area_test0.xml -------------------------------------------------------------------------------- /test/test_files/area_tests/area_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/area_tests/area_test1.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_test_compare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_test_compare.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests1.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests2.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests3.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests4.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests5.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests6.xml -------------------------------------------------------------------------------- /test/test_files/block_tests/block_tests_deadband.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/block_tests/block_tests_deadband.xml -------------------------------------------------------------------------------- /test/test_files/clone_tests/clone_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/clone_tests/clone_test1.xml -------------------------------------------------------------------------------- /test/test_files/clone_tests/clone_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/clone_tests/clone_test2.xml -------------------------------------------------------------------------------- /test/test_files/clone_tests/clone_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/clone_tests/clone_test3.xml -------------------------------------------------------------------------------- /test/test_files/clone_tests/two_bus_dynamic_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/clone_tests/two_bus_dynamic_example.xml -------------------------------------------------------------------------------- /test/test_files/constraint_tests/test_constSimple1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/constraint_tests/test_constSimple1.xml -------------------------------------------------------------------------------- /test/test_files/constraint_tests/test_constraints2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/constraint_tests/test_constraints2.xml -------------------------------------------------------------------------------- /test/test_files/dcLink_tests/test_hvdc1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dcLink_tests/test_hvdc1.xml -------------------------------------------------------------------------------- /test/test_files/dcLink_tests/test_hvdc2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dcLink_tests/test_hvdc2.xml -------------------------------------------------------------------------------- /test/test_files/dcLink_tests/test_hvdc3_sc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dcLink_tests/test_hvdc3_sc.xml -------------------------------------------------------------------------------- /test/test_files/dcLink_tests/test_hvdc4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dcLink_tests/test_hvdc4.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_2m4bDyn_ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_2m4bDyn_ss.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_2m4bDyn_ss_ext_only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_2m4bDyn_ss_ext_only.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_2m4bDyn_ss_gov_only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_2m4bDyn_ss_gov_only.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_dynSimple1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_dynSimple1.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_dynSimple1_mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_dynSimple1_mod.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_dynSimple2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_dynSimple2.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests1/test_inf_bus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests1/test_inf_bus.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests2/test_2m4bDyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests2/test_2m4bDyn.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests2/test_pulseLoadChange1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests2/test_pulseLoadChange1.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests2/test_pulseLoadChange2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests2/test_pulseLoadChange2.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests2/test_rampLoadChange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests2/test_rampLoadChange.xml -------------------------------------------------------------------------------- /test/test_files/dyn_tests2/test_randLoadChange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/dyn_tests2/test_randLoadChange.xml -------------------------------------------------------------------------------- /test/test_files/element_reader_tests/json_test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/element_reader_tests/json_test1.json -------------------------------------------------------------------------------- /test/test_files/element_reader_tests/json_test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/element_reader_tests/json_test2.json -------------------------------------------------------------------------------- /test/test_files/element_reader_tests/json_test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/element_reader_tests/json_test3.json -------------------------------------------------------------------------------- /test/test_files/element_reader_tests/test_bad_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/element_reader_tests/test_bad_xml.xml -------------------------------------------------------------------------------- /test/test_files/exciter_tests/sc_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/exciter_tests/sc_test.xml -------------------------------------------------------------------------------- /test/test_files/exciter_tests/test_root_exciter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/exciter_tests/test_root_exciter.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/fault_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/fault_test1.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/geco_fault_uncoupled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/geco_fault_uncoupled.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault2.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_breaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_breaker.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_breaker2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_breaker2.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_breaker3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_breaker3.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_breaker4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_breaker4.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_fuse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_fuse.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_fuse2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_fuse2.xml -------------------------------------------------------------------------------- /test/test_files/fault_tests/link_fault_fuse3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fault_tests/link_fault_fuse3.xml -------------------------------------------------------------------------------- /test/test_files/fmi_tests/block_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fmi_tests/block_grid.xml -------------------------------------------------------------------------------- /test/test_files/fmi_tests/fmiload_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fmi_tests/fmiload_test2.xml -------------------------------------------------------------------------------- /test/test_files/fmi_tests/fmiload_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fmi_tests/fmiload_test3.xml -------------------------------------------------------------------------------- /test/test_files/fmi_tests/fmimotorload_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fmi_tests/fmimotorload_test1.xml -------------------------------------------------------------------------------- /test/test_files/fmi_tests/motorload_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/fmi_tests/motorload_test1.xml -------------------------------------------------------------------------------- /test/test_files/gen_tests/test_gen_dualremote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gen_tests/test_gen_dualremote.xml -------------------------------------------------------------------------------- /test/test_files/gen_tests/test_gen_dualremote_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gen_tests/test_gen_dualremote_b.xml -------------------------------------------------------------------------------- /test/test_files/gen_tests/test_gen_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gen_tests/test_gen_remote.xml -------------------------------------------------------------------------------- /test/test_files/gen_tests/test_gen_remote_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gen_tests/test_gen_remote_b.xml -------------------------------------------------------------------------------- /test/test_files/genmodel_tests/test_model1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/genmodel_tests/test_model1.xml -------------------------------------------------------------------------------- /test/test_files/genmodel_tests/test_model2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/genmodel_tests/test_model2.xml -------------------------------------------------------------------------------- /test/test_files/genmodel_tests/test_root_exciter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/genmodel_tests/test_root_exciter.xml -------------------------------------------------------------------------------- /test/test_files/governor_tests/test_gov_stability.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/governor_tests/test_gov_stability.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/.gitignore -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Demo_Distribution.glm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Demo_Distribution.glm -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Demo_Transmission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Demo_Transmission.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod.glm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod.glm -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod_PQtriple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod_PQtriple.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod_dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod_dynamic.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod_mult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod_mult.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/IEEE_13_mod_triple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/IEEE_13_mod_triple.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Makefile -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Simple_3Bus_mod.glm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Simple_3Bus_mod.glm -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Simple_3Bus_mod.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Simple_3Bus_mod.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/Simple_3Bus_mod3x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/Simple_3Bus_mod3x.xml -------------------------------------------------------------------------------- /test/test_files/gridlabD_tests/node_650_voltage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/gridlabD_tests/node_650_voltage.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/180busdyn_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/180busdyn_test.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/180busstepped_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/180busstepped_test.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/Branchlist2k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Branchlist2k.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Branchlist30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Branchlist30.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Branchlist5k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Branchlist5k.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Buslist2k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Buslist2k.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Buslist2k_noV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Buslist2k_noV.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Buslist30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Buslist30.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Buslist5k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Buslist5k.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/Buslist5k_noV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/Buslist5k_noV.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/WSCC 9 bus.epc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/WSCC 9 bus.epc -------------------------------------------------------------------------------- /test/test_files/input_tests/WSCC 9 bus.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/WSCC 9 bus.raw -------------------------------------------------------------------------------- /test/test_files/input_tests/ieee14.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/ieee14.cdf -------------------------------------------------------------------------------- /test/test_files/input_tests/ieee39_relays.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/ieee39_relays.csv -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV2k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV2k.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV2k_noV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV2k_noV.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV5k.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV5k.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV5k_array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV5k_array.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testCSV5k_noV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testCSV5k_noV.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testIEEE39dynamic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testIEEE39dynamic.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testIEEE39dynamic2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testIEEE39dynamic2.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testIEEE39dynamic3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testIEEE39dynamic3.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/testIEEE39dynamic_relay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/testIEEE39dynamic_relay.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/test_dynSimple1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/test_dynSimple1.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/test_mat_dyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/test_mat_dyn.xml -------------------------------------------------------------------------------- /test/test_files/input_tests/test_psat_dyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/input_tests/test_psat_dyn.xml -------------------------------------------------------------------------------- /test/test_files/link_tests/link_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/link_tests/link_test1.xml -------------------------------------------------------------------------------- /test/test_files/link_tests/link_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/link_tests/link_test2.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/FileLoadInfo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/FileLoadInfo.bin -------------------------------------------------------------------------------- /test/test_files/load_tests/fdepLoad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/fdepLoad.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test1.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test3.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test3_stall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test3_stall.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test3b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test3b.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test4_stall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test4_stall.xml -------------------------------------------------------------------------------- /test/test_files/load_tests/motorload_test5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/load_tests/motorload_test5.xml -------------------------------------------------------------------------------- /test/test_files/location_testFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case118.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case118.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case1354pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case1354pegase.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case14.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case14.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2383wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2383wp.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case24_ieee_rts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case24_ieee_rts.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2736sp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2736sp.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2737sop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2737sop.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2746wop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2746wop.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2746wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2746wp.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case2869pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case2869pegase.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case30.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case300.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case300.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case30Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case30Q.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case30pwl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case30pwl.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case39.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case39.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case39dyn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case39dyn.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case4gs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case4gs.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case57.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case57.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case6ww.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case6ww.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case89pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case89pegase.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case9.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case9.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case9241pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case9241pegase.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case9Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case9Q.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case9dyn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case9dyn.m -------------------------------------------------------------------------------- /test/test_files/matlab_test_files/case_ieee30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/matlab_test_files/case_ieee30.m -------------------------------------------------------------------------------- /test/test_files/ns3_coupling_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/ns3_coupling_tests/.gitignore -------------------------------------------------------------------------------- /test/test_files/ns3_coupling_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/ns3_coupling_tests/Makefile -------------------------------------------------------------------------------- /test/test_files/ns3_coupling_tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/ns3_coupling_tests/README -------------------------------------------------------------------------------- /test/test_files/ns3_coupling_tests/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/ns3_coupling_tests/debug -------------------------------------------------------------------------------- /test/test_files/pFlow_tests/iterated_test_case.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/pFlow_tests/iterated_test_case.xml -------------------------------------------------------------------------------- /test/test_files/pFlow_tests/test_powerflow3m9b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/pFlow_tests/test_powerflow3m9b.xml -------------------------------------------------------------------------------- /test/test_files/pFlow_tests/test_powerflow3m9b2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/pFlow_tests/test_powerflow3m9b2.xml -------------------------------------------------------------------------------- /test/test_files/pFlow_tests/two_bus_dynamic_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/pFlow_tests/two_bus_dynamic_example.xml -------------------------------------------------------------------------------- /test/test_files/pFlow_tests/two_bus_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/pFlow_tests/two_bus_example.xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid2.xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid2_motor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid2_motor.xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid3..xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid3..xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid3_motor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid3_motor.xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid4.xml -------------------------------------------------------------------------------- /test/test_files/performance_tests/block_grid4_motor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/performance_tests/block_grid4_motor.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test10.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test11.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test12.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test2.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test3.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test4.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test5.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test6.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test7.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test8.xml -------------------------------------------------------------------------------- /test/test_files/recorder_tests/recorder_test9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/recorder_tests/recorder_test9.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/relay_test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/relay_test1.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/relay_test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/relay_test2.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/relay_test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/relay_test3.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/relay_test_multi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/relay_test_multi.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/test_bus_relay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/test_bus_relay.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/test_control_relay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/test_control_relay.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/test_differential_relay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/test_differential_relay.xml -------------------------------------------------------------------------------- /test/test_files/relay_tests/test_relay_comms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/relay_tests/test_relay_comms.xml -------------------------------------------------------------------------------- /test/test_files/rootFinding_tests/test_bus_disable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/rootFinding_tests/test_bus_disable.xml -------------------------------------------------------------------------------- /test/test_files/rootFinding_tests/test_gov_limit1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/rootFinding_tests/test_gov_limit1.xml -------------------------------------------------------------------------------- /test/test_files/rootFinding_tests/test_gov_limit2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/rootFinding_tests/test_gov_limit2.xml -------------------------------------------------------------------------------- /test/test_files/rootFinding_tests/test_gov_limit3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/rootFinding_tests/test_gov_limit3.xml -------------------------------------------------------------------------------- /test/test_files/rootFinding_tests/test_roots1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/rootFinding_tests/test_roots1.xml -------------------------------------------------------------------------------- /test/test_files/validation_tests/case118.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case118.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case118_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case118_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case118_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case118_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case1354pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case1354pegase.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case1354pegase_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case1354pegase_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case14.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case14.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case14_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case14_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case14_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case14_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2383wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2383wp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2383wp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2383wp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2383wp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2383wp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case24_ieee_rts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case24_ieee_rts.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case24_ieee_rts_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case24_ieee_rts_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2736sp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2736sp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2736sp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2736sp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2736sp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2736sp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2737sop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2737sop.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2737sop_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2737sop_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wop.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wop_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wop_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wop_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wop_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2746wp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2746wp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2869pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2869pegase.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case2869pegase_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case2869pegase_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case300.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case300.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case300_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case300_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case300_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case300_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3012wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3012wp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3012wp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3012wp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3012wp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3012wp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30Q.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30Q_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30Q_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30Q_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30Q_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30pwl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30pwl.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30pwl_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30pwl_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case30pwl_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case30pwl_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3120sp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3120sp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3120sp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3120sp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3120sp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3120sp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3375wp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3375wp.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3375wp_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3375wp_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case3375wp_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case3375wp_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case39.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case39.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case39_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case39_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case39_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case39_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case4gs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case4gs.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case4gs_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case4gs_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case4gs_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case4gs_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case5.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case57.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case57.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case57_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case57_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case57_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case57_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case5_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case5_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case5_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case5_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case6ww.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case6ww.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case6ww_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case6ww_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case6ww_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case6ww_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case89pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case89pegase.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case89pegase_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case89pegase_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case89pegase_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case89pegase_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9241pegase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9241pegase.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9Q.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9Q.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9Q_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9Q_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9Q_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9Q_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9_resqlim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9_resqlim.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9target.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9target.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case9target_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case9target_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case_ieee30.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case_ieee30.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case_ieee30_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case_ieee30_res.m -------------------------------------------------------------------------------- /test/test_files/validation_tests/case_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/validation_tests/case_info.m -------------------------------------------------------------------------------- /test/test_files/xml_tests/location_testFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_files/xml_tests/sep_lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/sep_lib.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_2m4bDyn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_2m4bDyn.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_2m4bDyn_lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_2m4bDyn_lib.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_2m4bDyn_mgen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_2m4bDyn_mgen.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_2m4bDyn_rload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_2m4bDyn_rload.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_2m4bDyn_sep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_2m4bDyn_sep.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_bad_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_bad_xml.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_custom_element1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_custom_element1.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_custom_element2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_custom_element2.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_function_constant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_function_constant.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_param_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_param_setting.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest1.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest10.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest11.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest12.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest13.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest2.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest3.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest4.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest5.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest6.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest7.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest8.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/test_xmltest9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/test_xmltest9.xml -------------------------------------------------------------------------------- /test/test_files/xml_tests/xmlElementReader_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/test_files/xml_tests/xmlElementReader_test.xml -------------------------------------------------------------------------------- /test/testgridDyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/test/testgridDyn.h -------------------------------------------------------------------------------- /utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/CMakeLists.txt -------------------------------------------------------------------------------- /utilities/arrayData.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/arrayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayData.h -------------------------------------------------------------------------------- /utilities/arrayDataBoost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataBoost.h -------------------------------------------------------------------------------- /utilities/arrayDataCompact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataCompact.h -------------------------------------------------------------------------------- /utilities/arrayDataScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataScale.h -------------------------------------------------------------------------------- /utilities/arrayDataSparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataSparse.cpp -------------------------------------------------------------------------------- /utilities/arrayDataSparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataSparse.h -------------------------------------------------------------------------------- /utilities/arrayDataSparseSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataSparseSM.cpp -------------------------------------------------------------------------------- /utilities/arrayDataSparseSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataSparseSM.h -------------------------------------------------------------------------------- /utilities/arrayDataTranslate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/arrayDataTranslate.h -------------------------------------------------------------------------------- /utilities/charMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/charMapper.cpp -------------------------------------------------------------------------------- /utilities/fileReaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/fileReaders.cpp -------------------------------------------------------------------------------- /utilities/fileReaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/fileReaders.h -------------------------------------------------------------------------------- /utilities/functionInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/functionInterpreter.cpp -------------------------------------------------------------------------------- /utilities/functionInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/functionInterpreter.h -------------------------------------------------------------------------------- /utilities/gridRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/gridRandom.cpp -------------------------------------------------------------------------------- /utilities/gridRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/gridRandom.h -------------------------------------------------------------------------------- /utilities/saturation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/saturation.cpp -------------------------------------------------------------------------------- /utilities/saturation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/saturation.h -------------------------------------------------------------------------------- /utilities/stackInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/stackInfo.cpp -------------------------------------------------------------------------------- /utilities/stackInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/stackInfo.h -------------------------------------------------------------------------------- /utilities/stringOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/stringOps.cpp -------------------------------------------------------------------------------- /utilities/stringOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/stringOps.h -------------------------------------------------------------------------------- /utilities/units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/units.cpp -------------------------------------------------------------------------------- /utilities/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/units.h -------------------------------------------------------------------------------- /utilities/vectData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/vectData.cpp -------------------------------------------------------------------------------- /utilities/vectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/vectData.h -------------------------------------------------------------------------------- /utilities/vectorOps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/vectorOps.cpp -------------------------------------------------------------------------------- /utilities/vectorOps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/GridDyn/HEAD/utilities/vectorOps.hpp --------------------------------------------------------------------------------