Ask Your Question

bad_hand's profile - activity

2021-09-27 19:59:13 -0500 answered a question Insufficient acces rights on out file

The .Out file may be already open when you are trying to run the simulation. Psse won't overwrite the file if it is open.

2021-09-27 19:55:29 -0500 answered a question Dynamic simulation: oscillations without disturbance applied

If you have SVCs and/or Statcoms in the case, plot their output. Their Q may be changing during initialization.

2021-09-27 19:42:21 -0500 answered a question The different between Local V control and Plant V control in REECC model

The renewable generator has the following models 1. REGCA1- Generator model 2.REECA1- Generator electrical control model 3. REPCA1- Plant controller model Other two models are aerodynamic model and drive train model for wind machines. The electrical control model pertains to the electrical control of an individual renewable machine . With this model we can control the active and reactive power, voltage and power factor of the machine. REPCA1 is plant controller model and it controls the P,Q,V and pf depending upon the status of control flags. The machine (s) can ,if modeled for voltage contro,l control the terminal bus or a remote bus. Usually the plant controller control the voltage at a remote bus (HV or MV). Use proper flags and bus numbers in REECA1 and REPCA1 along with gains and time constants for achieving this.

More info, such models, load flow model configuration and suspect states if any, is required for answering the second question. Hope this helps.

2016-02-18 03:34:30 -0500 received badge  Popular Question (source)
2016-02-18 03:34:30 -0500 received badge  Notable Question (source)
2016-02-18 03:34:30 -0500 received badge  Famous Question (source)
2016-02-04 22:54:09 -0500 answered a question How to connect and disconnect a load during dynamic simulation?

You can use psas code or batch command in the idev file, if any, is being used for the dynamic simulation. Consult PSAS guide and/or API guide for the PSSe.

2016-02-04 22:50:06 -0500 answered a question Blown up power flow solution right after adding short circuit data at the swing generator

Perhaps the R and X values are big changes from PSSE solution point of view. Try modelling the branch with high R and X values and then reduce these gradually in small steps till you reach the desired values.

2016-01-11 21:42:41 -0500 answered a question How to use psspy inside a function??

Is the module psspy being used in temp? Could it be that psspy used in temp (if that is the case) cause that error?

2016-01-11 21:04:37 -0500 answered a question what is the unit of generator speed curve in dynamic simulation?

The units for the speed deviation are per unit based on rad/s.

2016-01-11 20:37:41 -0500 asked a question Running PSSE30 using python

I am trying to run the psse using python script provided below. However, the trace back says unable to find module psspy. The psspy.dll is present in PSSBIN. The paths are correct and I have tried many variations of the code but it doesn't work. I would really appreciate any help.

import os import sys PSSEPATH=r'C:\PROGRA~2\PTI\PSSE30\PSSBIN' sys.path.append(PSSEPATH) os.environ['PATH']=os.environ['PATH']+';'+PSSE_PATH os.chdir(r'c:\users\xxxx\desktop\python scripts') import psspy import redirect

Error message

Traceback (most recent call last): File "ps2py.py", line 7, in <module> import psspy ImportError: No module named psspy