https://ibb.co/kGvUfQ
I don't know whats is wrong I am doing this in Fortran this is the code I am using to make the output file
Code: Select all
WRITE(4,10) IMAX,JMAX
10 FORMAT('TITLE = " Malha Cartesiana "'/ &
& 'VARIABLES = X, Y, U'/&
& 'ZONE T ="Zone-one", I=',i5,'J=',I5,',F=POINT')
DO J=2,JMAX-1
DO I=2,IMAX-1
WRITE(4,*) X(I),Y(J), POT(I,J)
END DO
END DO
I am gonna leave here the google drive link for the output file so you guys can take a look
https://drive.google.com/drive/folders/ ... sp=sharing
File name: output
Program: Projeto-1
Thank you since now.