Revision history [back]
I remember using RAWD in the past. Here is how you might do this:
psspy.case('NETA.sav')
export_zones = [1]
psspy.bsys(sid=1, numzone=len(export_zones), zones=export_zones)
psspy.rawd_2(sid=1,
all=0,
status7=2, # create a RDCH file
out=0, # redirect to file
ofile='my-zone-1.raw')
That should create your "Power Flow Change Raw Data" file. The next main step is to read it in for NETB.sav
psspy.case('NETB.sav')
psspy.rdch(ifile='my-zone-1.raw')
I'm not sure what other problems will pop up. Here is a couple you might need to watch for:
- Missing data The raw data file doesn't have sequence data, so you will need to find a way to export that.
- Voltage and angle I'm not sure how psse treats the incoming data. But you may find that if the voltages and angles of the new buses are different, that you have difficulty solving
