-
Hello! I'm going to run a TDS where one load increases from 250MW to 350MW at a certain moment. I have read the documentation of model "Alter", but I am confused by the sentence "To apply a PQ load change, according to [PQ], one needs to set the load model to constant power and alter Ppf and Qpf." I do not find Ppf and Qpf in the variables of model PQ, thus I don't know which value I should modify. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
Ppf and Qpf are config paraments of PQ used in running simulations, you can check and adjust the values by using code |
Beta Was this translation helpful? Give feedback.
-
After reading the ZIP and PQ documentation, my opinion is when ZIP load is in effect, the linked PQ load will be disabled if any. I am not familiar with ZIP load, but welcome further discussion. Also, posting a figure and describe what happened and what you expect can be more informative. |
Beta Was this translation helpful? Give feedback.
Ppf and Qpf are config paraments of PQ used in running simulations, you can check and adjust the values by using code
andes misc --edit-config
in command line.For
Alter
, you can use the code as follows, it adjusts Ppf and Qpf on the fly:ss.add('Alter',dict(model='PQ',dev='PQ_1', src='Ppf',t=1.0,method='+',amount=1))
andes.run('*.xlsx', routine='tds',tf=15, config_option["PQ.p2p=1.0","PQ.p2z=0.0","PQ.q2q=1.0","PQ.q2z=0.0"])
Hope this helps.