Questions abour Coordinated Call Models
I have read POM about Coordinated Call Models. It says "coordinated call models, both those from the PSS®E Model Library as well as user-written models, must have their primary entry point name beginning with a character other than T.".
If I want to write a current injections model, how should I do?
1: Write a model begin with SUBROUTINE Modelname (MC, ISLOT) and call it in other model by writing:call Todelname (MC, ISLOT)?
or 2:
SUBROUTINE Modelname (MC, ISLOT)
include 'comon4.ins'
local declarations
(mode 1,2...)
RETURN
ENTRY Todelname (MC, ISLOT)
(mode 1,2...calculate current injection)
RETURN
END SUBROUTINE