├── README.md ├── include ├── 18650_cell.map ├── HEMMmotorGenerator.map ├── STARCABLmotorGenerator.map ├── des_scl.int ├── fanE3.map ├── lptE3.map └── modelInverterRectifier.map ├── model ├── AC_3phase_example.mdl ├── AC_Backflow.mdl ├── DC_Backflow.mdl ├── PandE2019_RLC_example.mdl ├── R_dc_example.mdl ├── baseline.mdl ├── baseline_all_elec.mdl ├── baseline_turboelectric.mdl ├── baseline_turboelectricMDP.mdl ├── battery_test.mdl ├── breaker_test.mdl ├── bus1to2.mdl ├── bus2to1.mdl ├── cable_test.mdl ├── cable_thermal_test.mdl └── power_propagation.mdl ├── output └── .gitignore ├── run ├── AC_Backflow.run ├── DC_Backflow.run ├── baseline.run ├── baseline_1to2Bus.run ├── baseline_2to1Bus.run ├── baseline_all_elec.run ├── baseline_all_elecMDP.run ├── baseline_turboelectric.run ├── baseline_turboelectricMDP.run ├── battery_test.run ├── breaker_test.run ├── cable_test.run ├── cable_thermal_test.run ├── power_propagation.run ├── run_3phase_example.run ├── run_RLC_example.run ├── run_R_dc_example.run └── transient_baseline.run ├── runnpss-psl.bat ├── src ├── AeroCable.int ├── BasicLoad.int ├── Battery.int ├── BatteryCellSoCTemperatureMap.int ├── Breaker.int ├── Cable.int ├── Capacitor.int ├── ComplexNumber.int ├── ConstantPowerLoad.int ├── DC_DC_Converter.int ├── EThermalMass.int ├── ElectricAssembly.int ├── ElectricElement.int ├── ElectricPort.prt ├── ElectricSubelement.int ├── Enode.int ├── Generator.int ├── Inductor.int ├── InterpretedAssembly.int ├── InterpretedPort.int ├── Inverter.int ├── InverterRectifierMap.int ├── Motor.int ├── MotorGeneratorMap.int ├── PropagatePower.fnc ├── Rectifier.int ├── Resistor.int └── Source.int ├── utils ├── IOUtils.fnc ├── PSL_math.fnc └── map_plotting │ ├── .gitignore │ ├── mapplot_V27.fnc │ └── mapplot_V27.py └── view ├── PTE_Viewer.view ├── npssel.view └── npssel_runtime.view /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/README.md -------------------------------------------------------------------------------- /include/18650_cell.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/18650_cell.map -------------------------------------------------------------------------------- /include/HEMMmotorGenerator.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/HEMMmotorGenerator.map -------------------------------------------------------------------------------- /include/STARCABLmotorGenerator.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/STARCABLmotorGenerator.map -------------------------------------------------------------------------------- /include/des_scl.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/des_scl.int -------------------------------------------------------------------------------- /include/fanE3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/fanE3.map -------------------------------------------------------------------------------- /include/lptE3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/lptE3.map -------------------------------------------------------------------------------- /include/modelInverterRectifier.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/include/modelInverterRectifier.map -------------------------------------------------------------------------------- /model/AC_3phase_example.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/AC_3phase_example.mdl -------------------------------------------------------------------------------- /model/AC_Backflow.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/AC_Backflow.mdl -------------------------------------------------------------------------------- /model/DC_Backflow.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/DC_Backflow.mdl -------------------------------------------------------------------------------- /model/PandE2019_RLC_example.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/PandE2019_RLC_example.mdl -------------------------------------------------------------------------------- /model/R_dc_example.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/R_dc_example.mdl -------------------------------------------------------------------------------- /model/baseline.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/baseline.mdl -------------------------------------------------------------------------------- /model/baseline_all_elec.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/baseline_all_elec.mdl -------------------------------------------------------------------------------- /model/baseline_turboelectric.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/baseline_turboelectric.mdl -------------------------------------------------------------------------------- /model/baseline_turboelectricMDP.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/baseline_turboelectricMDP.mdl -------------------------------------------------------------------------------- /model/battery_test.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/battery_test.mdl -------------------------------------------------------------------------------- /model/breaker_test.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/breaker_test.mdl -------------------------------------------------------------------------------- /model/bus1to2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/bus1to2.mdl -------------------------------------------------------------------------------- /model/bus2to1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/bus2to1.mdl -------------------------------------------------------------------------------- /model/cable_test.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/cable_test.mdl -------------------------------------------------------------------------------- /model/cable_thermal_test.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/cable_thermal_test.mdl -------------------------------------------------------------------------------- /model/power_propagation.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/model/power_propagation.mdl -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /run/AC_Backflow.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/AC_Backflow.run -------------------------------------------------------------------------------- /run/DC_Backflow.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/DC_Backflow.run -------------------------------------------------------------------------------- /run/baseline.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline.run -------------------------------------------------------------------------------- /run/baseline_1to2Bus.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_1to2Bus.run -------------------------------------------------------------------------------- /run/baseline_2to1Bus.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_2to1Bus.run -------------------------------------------------------------------------------- /run/baseline_all_elec.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_all_elec.run -------------------------------------------------------------------------------- /run/baseline_all_elecMDP.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_all_elecMDP.run -------------------------------------------------------------------------------- /run/baseline_turboelectric.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_turboelectric.run -------------------------------------------------------------------------------- /run/baseline_turboelectricMDP.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/baseline_turboelectricMDP.run -------------------------------------------------------------------------------- /run/battery_test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/battery_test.run -------------------------------------------------------------------------------- /run/breaker_test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/breaker_test.run -------------------------------------------------------------------------------- /run/cable_test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/cable_test.run -------------------------------------------------------------------------------- /run/cable_thermal_test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/cable_thermal_test.run -------------------------------------------------------------------------------- /run/power_propagation.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/power_propagation.run -------------------------------------------------------------------------------- /run/run_3phase_example.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/run_3phase_example.run -------------------------------------------------------------------------------- /run/run_RLC_example.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/run_RLC_example.run -------------------------------------------------------------------------------- /run/run_R_dc_example.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/run_R_dc_example.run -------------------------------------------------------------------------------- /run/transient_baseline.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/run/transient_baseline.run -------------------------------------------------------------------------------- /runnpss-psl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/runnpss-psl.bat -------------------------------------------------------------------------------- /src/AeroCable.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/AeroCable.int -------------------------------------------------------------------------------- /src/BasicLoad.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/BasicLoad.int -------------------------------------------------------------------------------- /src/Battery.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Battery.int -------------------------------------------------------------------------------- /src/BatteryCellSoCTemperatureMap.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/BatteryCellSoCTemperatureMap.int -------------------------------------------------------------------------------- /src/Breaker.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Breaker.int -------------------------------------------------------------------------------- /src/Cable.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Cable.int -------------------------------------------------------------------------------- /src/Capacitor.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Capacitor.int -------------------------------------------------------------------------------- /src/ComplexNumber.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ComplexNumber.int -------------------------------------------------------------------------------- /src/ConstantPowerLoad.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ConstantPowerLoad.int -------------------------------------------------------------------------------- /src/DC_DC_Converter.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/DC_DC_Converter.int -------------------------------------------------------------------------------- /src/EThermalMass.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/EThermalMass.int -------------------------------------------------------------------------------- /src/ElectricAssembly.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ElectricAssembly.int -------------------------------------------------------------------------------- /src/ElectricElement.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ElectricElement.int -------------------------------------------------------------------------------- /src/ElectricPort.prt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ElectricPort.prt -------------------------------------------------------------------------------- /src/ElectricSubelement.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/ElectricSubelement.int -------------------------------------------------------------------------------- /src/Enode.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Enode.int -------------------------------------------------------------------------------- /src/Generator.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Generator.int -------------------------------------------------------------------------------- /src/Inductor.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Inductor.int -------------------------------------------------------------------------------- /src/InterpretedAssembly.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/InterpretedAssembly.int -------------------------------------------------------------------------------- /src/InterpretedPort.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/InterpretedPort.int -------------------------------------------------------------------------------- /src/Inverter.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Inverter.int -------------------------------------------------------------------------------- /src/InverterRectifierMap.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/InverterRectifierMap.int -------------------------------------------------------------------------------- /src/Motor.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Motor.int -------------------------------------------------------------------------------- /src/MotorGeneratorMap.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/MotorGeneratorMap.int -------------------------------------------------------------------------------- /src/PropagatePower.fnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/PropagatePower.fnc -------------------------------------------------------------------------------- /src/Rectifier.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Rectifier.int -------------------------------------------------------------------------------- /src/Resistor.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Resistor.int -------------------------------------------------------------------------------- /src/Source.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/src/Source.int -------------------------------------------------------------------------------- /utils/IOUtils.fnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/utils/IOUtils.fnc -------------------------------------------------------------------------------- /utils/PSL_math.fnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/utils/PSL_math.fnc -------------------------------------------------------------------------------- /utils/map_plotting/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /utils/map_plotting/mapplot_V27.fnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/utils/map_plotting/mapplot_V27.fnc -------------------------------------------------------------------------------- /utils/map_plotting/mapplot_V27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/utils/map_plotting/mapplot_V27.py -------------------------------------------------------------------------------- /view/PTE_Viewer.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/view/PTE_Viewer.view -------------------------------------------------------------------------------- /view/npssel.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/view/npssel.view -------------------------------------------------------------------------------- /view/npssel_runtime.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/NPSS-Power-System-Library/HEAD/view/npssel_runtime.view --------------------------------------------------------------------------------