![]() | 1 | initial version |
The model is using 12 CONs and 4 STATEs. The format statement should be something like:
507 FORMAT(I7,' ''USRMDL'' ',A,' ''PSSEDN'' 4 0 0 12 4 0 '/ 7X,12(G12.5,3X),' /')
In your code the CONs are written with format code G12.12, i.e. 12 decimals in a total field width of 12 characters. It will not work!
![]() | 2 | No.2 Revision |
The model is using 12 CONs and 4 STATEs. The format statement should be something like:
507 FORMAT(I7,' ''USRMDL'' ',A,' ''PSSEDN'' 4 0 0 12 4 0 '/ 7X,12(G12.5,3X),' /')
In your code the CONs are written with format code G12.12, i.e. 12 decimals in a total field width of 12 characters. It will not work!
EDIT:
The DYRE record shall be like this:
BUSID 'USRMDL' ID 'model name' IC IT NI NC NS NV data list /
where IC=4 and IT=0 for an exciter model.
NI, NC, NS, NV are the number of ICONs, CONs, STATEs and VARs used by the model. In your case 0 12 4 0.
The DYRE record becomes:
101 'USRMDL' 1 'PSS_EDN' 4 0 0 12 4 0 data list /
where data list is your 12 CONs.
Please read Chapter 18.1.1 in POM (rev 35).