First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!

Ask Your Question
1

"aflowcount" command does not work on PSSE/33.1.1

asked Apr 19 '13

anonymous user

Anonymous

updated Apr 20 '13

JervisW gravatar image

Hi, I am trying to list out the number and detials of the branches in a subsystem. I am using python scripts and the command "aflowcount". But PSSE gives an error saying

"Traceback (most recent call last):
  File "H:\wtg_model.py", line 19, in <module>
    ierr,n_brnchs = aflowcount(1, 1, 6, 2)
NameError: name 'aflowcount' is not defined".

Please help.

1 answer

Sort by » oldest newest most voted
2

answered Apr 19 '13

jsexauer gravatar image

Try using

nbrnchs = psspy.aflowcount(1,1,6,2)

Even though the documentation uses function in the form of just funcName(params), when actually using the function in a script you need use the form psspy.funcName(params).

Caviet: This is assuming you imported the psspy module using

import psspy

Technically, you could directly use the function names if you did

from psspy import *

however, I would recommend against that. It is poor form.

link

Comments

Agreed, that from import * format is bad form. One reason is that it is very frustrating to find where a function originally came from.

JervisW gravatar imageJervisW (Apr 20 '13)

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.
Want to format code in your answer? Here is a one minute demo on Youtube

Add Answer

[hide preview]

Question Tools

Stats

Asked: Apr 19 '13

Seen: 221 times

Last updated: Apr 20 '13