Ask Your Question
0

How to monitor induction machine speed deviation?

asked Dec 12 '19

bikiran1991 gravatar image

I have some CIM5BL models in the dyr file. While adding the output channel, i want to monitor their speed deviations. Is there any other way to do this besides using:
psspy.state_channel()

I was looking for something systematic, where i can input the corresponding load bus number and state index, instead of having to track the state index of the induction machine, from the entire state space. For example, when monitoring the speed deviation of a generator i can use something like:
psspy.machinearraychannel(status, id, ident) and provide the machine bus no., machine id and the index for Speed deviation.

Is there anything similar for induction machines?

1 answer

Sort by » oldest newest most voted
0

answered Dec 13 '19

perolofl gravatar image

You can write your own API:

 def add_load_channels(ibus,id,indx,ident):
    """ Adds a STATE channel for a bus load model
    ibus = load bus (integer)
    id = load id (string)
    indx = state index (0,1,2,3 etc) (integer)
    ident = identifier for the STATE channel (string)
    """
    ierr, k = psspy.lmodind(ibus, id, 'CHARAC', 'STATE')
    psspy.state_channel([-1,k+indx],ident)

Add a load characteristic model channel with:

add_load_channels(3005,'1',4,'SPEED IM 1 at 3005')
link

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

1 follower

Stats

Asked: Dec 12 '19

Seen: 393 times

Last updated: Dec 13 '19