First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Your flux variables are likely STATEs inside a model. Any STATE and VAR can be added to the channel file by using the STATECHANNEL and VARCHANNEL. You will have to look through the model's documentation to see if that flux variable is available as either a STATE or VAR, then either inspect the case or use the DOCU command to find out exactly what internal STATE/VAR number that is. Then use the psspy.statechannel() or psspy.varchannel() functions to add the channel.
2 | No.2 Revision |
Your flux variables are likely STATEs STATE
s inside a model. Any STATE STATE
and VAR VAR
can be added to the channel file by using the STATECHANNEL STATE_CHANNEL
and VARCHANNEL. VAR_CHANNEL
. You will have to look through the model's documentation to see if that flux variable is available as either a STATE STATE
or VAR, VAR
, then either inspect the case or use the DOCU DOCU
command to find out exactly what internal STATE/VAR number that is. Then use the psspy.statechannel() psspy.state_channel()
or psspy.varchannel() psspy.var_channel()
functions to add the channel.