Ask Your Question
0

How to monitor induction machine speed deviation?

asked 2019-12-12 13:34:39 -0500

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?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2019-12-13 00:23:49 -0500

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')
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: 2019-12-12 13:34:39 -0500

Seen: 337 times

Last updated: Dec 13 '19