Ask Your Question
0

API for robust solution?

asked 2021-05-04 17:57:07 -0500

nate_park25 gravatar image

I would like to ask an API for running robust solution in load flow analysis I have tried to find it in API manual. But I could not get it. Is there anyone who knows to execute robust solution in Python?

Thanks in advance

edit retag flag offensive close merge delete

3 answers

Sort by ยป oldest newest most voted
0

answered 2021-08-18 12:33:43 -0500

jconto gravatar image

PTI released the module "robosolve.pyc" to implement activity "rsol" on lower versions.

In v.34:

savfile = r"C:\Program Files (x86)\PTI\PSSE34\EXAMPLE\savnw.sav"
psspy.case(savfile)
import robosolve
#solver = RobustSolver(case="mydir/mycase.raw")
#result, steps, settings = solver.solve()
#result, steps, settings = robosolve.rsol(case="mydir/mycase.raw")
result, steps, settings = robosolve.rsol()   #use case in memory

In v.33: To run same code for v.34, copy first the module robosolve.pyc from its [v. 34 or v.35] psspy27 folder to the PSSe bin folder in v.33.

copy  "C:\Program Files (x86)\PTI\PSSE34\PSSPY27\robosolve.pyc"
to    "C:\Program Files (x86)\PTI\PSSE33\PSSBIN"
edit flag offensive delete link more

Comments

Thank you very much! Can be useful..

perolofl gravatar imageperolofl ( 2021-08-24 08:19:23 -0500 )edit
0

answered 2021-08-17 02:08:55 -0500

Riya kumari gravatar image

the data matrix large scale linear systems generally have correlated columns and high condition number finding unknows from measurements by using a least-square technique result in noise enhancement. for this reason, robust solution techniques are needed .in this article, we investigate how to regularize the momentum-alterative hessian sketch solver for solving ill-posed linear systems including large-scale data matrices. instead of using a single regularization parameter for all iterations, the proposed solver automatically finds a separate parameter in each iteration without requiring any other parameter tuning and then adjusts momentum parameters accordingly

edit flag offensive delete link more
0

answered 2021-05-05 10:03:02 -0500

perolofl gravatar image

Use API RSOL in PSSE rev 35.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

[hide preview]

Question Tools

1 follower

Stats

Asked: 2021-05-04 17:57:07 -0500

Seen: 580 times

Last updated: Aug 18 '21