how to transfer data when writing user-defined model
Hi, I'm trying to write several cooperative models. But I don't know how to trasfer data between these models, because these data are self-defined. How can I set output data? And how to get data from user-defined model A and use them in model B? Thanks a lot!
The best way to exchange data between models is to use the built-in PSS/E arrays, such as CON, VAR and STATE.
Ok, thank you very much!
You can also transfer data through the many other arrays, such as POWR, VARS, VOLT, VOEL, VUEL etc.
That's helpful. I found the defination of these in PAGV. Thanks a lot!
If I want to use VAR(L) from model A in model B, how to do that? Load model A and B, and find the number of L(model A), and make the number of L as the input data of model B. Or there are other ways? Thanks.