First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Okay, your main problem is that you only have one subsystem defined ('A'). Now, PV analysis is inherently different to QV analysis. When performing PV analysis, you need to define a source and a sink. As the process is progressed, more power will be transferred through a cutset of lines by adjusting the load/generation in the source and sink subsystems.
Your subsystem (SUB) file should be something like this:
SUBSYSTEM 'SOURCE'
BUS 100
END
SUBSYSTEM 'SINK'
BUS 101
BUS 102
BUS 103
BUS 104
BUS 105
BUS 106
END
END
Your MON file can then reference the SINK subsystem (or SOURCE if you want to include that too):
MONITOR LINES IN SUBSYSTEM SINK
MONITOR VOLTAGE DEVIATION ALL BUSES 0.1
END
END
Finally, your contingency file might look like this:
SINGLE BRANCH IN SUBSYSTEM 'SINK'
SINGLE BRANCH IN SUBSYSTEM 'SOURCE'
END
The things to be careful about: