First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
test.py file
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realar1=0.00435, realar2=0.148)
Hi,
I run the file test.py into test.sav and I get the following message. I don't see any problem with my code. Can you help me?
Executing Python file:E:\REvBdD\2013\corregidas\Septiembre_2\test.py keyword argument realar1=0.00435 not used keyword argument realar2=0.148 not used Messages for api TWO_WINDING_CHNG_4 Messages for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]: (001972) Error: Vector group "YNd1" not found; set to "YNd1" (002030) No power flow data changed for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]
2 | No.2 Revision |
test.py file
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realar1=0.00435, realar2=0.148)
Hi,
I run the file test.py into test.sav and I get the following message. I don't see any problem with my code. Can you help me?
Executing Python file:E:\REvBdD\2013\corregidas\Septiembre_2\test.py keyword argument realar1=0.00435 not used keyword argument realar2=0.148 not used Messages for api TWO_WINDING_CHNG_4 Messages for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]: (001972) Error: Vector group "YNd1" not found; set to "YNd1" (002030) No power flow data changed for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]
SOLUTION
Well the problem was that realar1 is an input so the right name is realari1 the same problem is with realar2.
The corrected code is
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realari1=0.00435, realari2=0.148)
3 | No.3 Revision |
test.py file
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realar1=0.00435, realar2=0.148)
Hi,
I run the file test.py into test.sav and I get the following message. I don't see any problem with my code. Can you help me?
Executing Python file:E:\REvBdD\2013\corregidas\Septiembre_2\test.py keyword argument realar1=0.00435 not used keyword argument realar2=0.148 not used Messages for api TWO_WINDING_CHNG_4 Messages for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]: (001972) Error: Vector group "YNd1" not found; set to "YNd1" (002030) No power flow data changed for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]
SOLUTION
Well the problem was that realar1 is an input so the right name is realari1 the same problem is with realar2.
The corrected code is
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realari1=0.00435, realari2=0.148)
4 | No.4 Revision |
test.py file
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realar1=0.00435, realar2=0.148)
Hi,
I run the file test.py into test.sav and I get the following message. I don't see any problem with my code. Can you help me?
Executing Python file:E:\REvBdD\2013\corregidas\Septiembre_2\test.py keyword argument realar1=0.00435 not used keyword argument realar2=0.148 not used Messages for api TWO_WINDING_CHNG_4 Messages for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]: (001972) Error: Vector group "YNd1" not found; set to "YNd1" (002030) No power flow data changed for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]
SOLUTION
Well the problem was that realar1 is an input so the right name is realari1 the same problem is with realar2.
The corrected code is
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realari1=0.00435, realari2=0.148)
5 | No.5 Revision |
test.py file
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realar1=0.00435, realar2=0.148)
Hi,
I run the file test.py into test.sav and I get the following message. I don't see any problem with my code. Can you help me?
Executing Python file:E:\REvBdD\2013\corregidas\Septiembre_2\test.py keyword argument realar1=0.00435 not used keyword argument realar2=0.148 not used Messages for api TWO_WINDING_CHNG_4 Messages for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]: (001972) Error: Vector group "YNd1" not found; set to "YNd1" (002030) No power flow data changed for two-winding transformer circuit "3" from 22421 [NCUS-23 23.000] to 27421 [NCUS-115 115.00]
SOLUTION
Well the problem was that psspy.twowindingchng_4 in realar has inputs and outputs realar1 is an input so the right name is realari1 the same problem is with realar2.
The corrected code is
psspy.two_winding_chng_4(i=22421, j=27421, ckt=r"""3""", realari1=0.00435, realari2=0.148)