Ask Your Question

ddhungana's profile - activity

2023-09-29 09:41:05 -0500 received badge  Student (source)
2023-04-03 13:44:37 -0500 asked a question Retrieve PSS MUST results

Has anyone tried to use python to perform MUST analysis and retrieve the results ? I was able to run the analysis using the record function, but haven't been able to retrieve the results in python yet. Below is the syntax that was used to perform the analysis.

ierr=mustpy.multdcfcitc(...)

2023-03-27 08:50:50 -0500 answered a question can we decide how much load we can add to a bus by doing a load flow analysis in PSSE

Model your load, conduct a powerflow assessment. You can keep increasing your load until you hit a constraint in your system like low/high bus voltage, line or transformer overload, etc.

2021-06-21 08:55:37 -0500 answered a question Are there any methods to improve the speed of batch dynamic simulations?

You can improve speed by utilizing parallel processing which will use multiple cores of your machine. Just to get a sense of speed improvement, you can initially split your job into multiple small batches(e.g. 4 batches of 25 simulations each) and trigger all of them at once. If this helps, you can then create python scripts to automatically do this for you.

2020-11-02 08:14:24 -0500 answered a question ACCC Analysis in PSSE

I don't believe it is possible. Results of the ACCC function is stored on .acc file. You will have to use pssarrays module to retrieve the results from .acc file.

2020-10-15 10:46:45 -0500 received badge  Famous Question (source)
2020-08-24 10:36:21 -0500 commented answer Momentary Cessation Capability in 2nd Gen Renewable Models

Hi ffl, would you mind providing a link to the document you are referring to?

2020-07-22 08:51:30 -0500 answered a question Time series load flow

It is possible using python in PSSE, but will require some effort. You would have to read your load and generation pattern for each hour, update the case with these values, solve, and then read the parameters of your interest. You could then write these parameters into a csv/text file for further analysis.

2019-12-24 20:33:38 -0500 received badge  Famous Question (source)
2019-12-16 08:09:36 -0500 received badge  Notable Question (source)
2019-12-10 02:40:42 -0500 received badge  Popular Question (source)
2019-12-04 10:05:46 -0500 asked a question How to get RELIND_2 results into python list

I am trying to use RELIND_2 API to perform some reliability assessments. Apparently, all results are displayed in terms of text report. I was wondering if there was a way to get those results into a python list for post processing rather than trying to read through the text reports.

2019-08-29 10:05:48 -0500 commented question Use multiple Processor for PSSE Dynamics Run

Thank you all for your responses. This is adequate information for me to get started.

2019-08-29 05:15:06 -0500 received badge  Notable Question (source)
2019-08-27 20:10:37 -0500 received badge  Popular Question (source)
2019-08-26 13:06:01 -0500 asked a question Use multiple Processor for PSSE Dynamics Run

Is there an easy way via python scripting to use multiple cores on a single computer for PSSE Dynamics Run. It is taking too long to complete dynamics runs, and I suspect the default system is only using a single core. Any help will be appreciated.

2016-12-22 10:45:48 -0500 received badge  Editor (source)
2016-12-22 10:40:29 -0500 answered a question Multiple ACCC results to Excel

I wrote a similar python script to export all branch and voltage violations in an excel sheet. You can extract the list of contingencies from .acc file using acccsummary function. You can then loop through each contingency using acccsolution to get the branch and voltage violation flows. You are right, this will give all the flows in all the monitored branches and volts in monitored buses, but you can do some filtering later to just keep the violations. Finally, you can dump the results in an excel sheet using xlwt or a csv writer function. Its a little complicated, but trust me all your dreams will come true at the end.