0

API for robust solution?

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

nate_park25's avatar
1
nate_park25
asked 2021-05-04 17:57:07 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

3 Answers

0

Use API RSOL in PSSE rev 35.

perolofl's avatar
3.8k
perolofl
answered 2021-05-05 10:03:02 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

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

Riya kumari's avatar
1
Riya kumari
answered 2021-08-17 02:08:55 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

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"
jconto's avatar
2.9k
jconto
answered 2021-08-18 12:33:43 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you very much! Can be useful..

perolofl's avatar perolofl (2021-08-24 08:19:23 -0500) edit
add a comment see more comments

Your Answer

Login/Signup to Answer