-
Notifications
You must be signed in to change notification settings - Fork 14
Transient Stability Simulation
InterPSS has a very flexible transient stability simulation result output design. As illustrated in the above figure, the simulation results are published during the simulation process as IpssMessage messages, one or more <*>SimuResultHandlers (subscribers) could be configured to process the results, including filtering and then print-out or save to a File/Database.
As shown in the above figure, currently there are three types of output result handlers implemented:
- TextSimuOutputHandler
This type of simulaiton result output handlers is for outputing the simulation results as text. The text could be printed on your local screen or saved to a text file. Here is a simple implementation example TextSimuOutputHandler.java.
- SimuDatabaseOutputHandler
This type of simulation result handlers is for saving the results to a database. The IDStabSimuDatabaseOutputHandler is for this type of simulation result hander implementation.
- StateVaribleRecorder
This type of simulaiton result output handlers is very simple. There are intended for the unit tesing implementation.