I am writing code in APDL for a nonlinear structural analysis of a plate. Following is the Post processing part which returns a formatting error. Help will be appreciated in identifying the problem and solution.
'''/POST1
NSEL,S,LOC,X,40
NSEL,R,LOC,Y,0
*GET,NA,NODE,0,NUM,MIN
NSEL,S,LOC,X,40
NSEL,R,LOC,Y,30
*GET,NB,NODE,0,NUM,MIN
ALLSEL
*DO,I,1,5
SET,I
/OUTPUT,ADISP,OUT,,APPEND
*VWRITE,UX(NA),UY(NA),UZ(NA)
(E16.8,5X, E16.8,5X, E16.8,5X)
/OUTPUT
/OUTPUT,BDISP,OUT,,APPEND
*VWRITE,UX(NB),UY(NB),UZ(NB)
(E16.8,5X, E16.8,5X, E16.8,5X)
/OUTPUT
*ENDDO
*END'''