I am new to Fortran, and I would like to be able to write a two-dimensional array to a text file, in a row-wise manner (spaces between columns, and each row on its own line). I have tried the following, and it seems to work in the following simple example:
PROGRAM test3
IMPLICIT NONE
INTEGER :: i, j, k, numrows, numcols
INTEGER, DIMENSION(:,:), ALLOCATABLE :: a
numrows=5001
numcols=762
ALLOCATE(a(numrows,numcols))
k=1
DO i=1,SIZE(a,1)
DO j=1,SIZE(a,2)
a(i,j)=k
k=k+1
END DO
END DO
OPEN(UNIT=12, FILE="aoutput.txt", ACTION="write", STATUS="replace")
DO i=1,numrows
WRITE(12,*) (a(i,j), j=1,numcols)
END DO
END PROGRAM test3
As I said, this seems to work fine in this simple example: the resulting text file, aoutput.txt, contains the numbers 1-762 on line 1, numbers 763-1524 on line 2, and so on.
But, when I use the above ideas (i.e., the last fifth-to-last, fourth-to-last, third-to-last, and second-to-last lines of code above) in a more complicated program, I run into trouble; each row is delimited (by a new line) only intermittently, it seems. (I have not posted, and probably will not post, here my entire complicated program/script--because it is rather long.) The lack of consistent row delimiters in my complicated program/script probably suggests another bug in my code, not with the four-line write-to-file routine above, since the above simple example appears to work okay. Still, I am wondering, can you please help me think if there is a better row-wise write-to-text file routine that I should be using?
Thank you very much for your time. I really appreciate it.
Addendum on June 29, 9:56PM Eastern United States:
Below is a shortened version of the code that I'm having trouble with. This shortened version works as a standalone code, except that it requires the input text file trajectory.txt (which is space-delimited). I have posted trajectory.txt here (however, the file is ~81.5 MB large): http://www.andrew.cmu.edu/user/adeyoung/june29/trajectory.txt
Also, here is a one-page PDF summary comparing the results of my test3 program above with those of my actual program: http://www.andrew.cmu.edu/user/adeyoung/june29/june29summary.pdf In the summary, I have shown the results of using the "X marker" test suggested by @M. S. B.
Here is my shortened version of the code that I'm having trouble with:
PROGRAM mysnippet
!... USE my_subs
IMPLICIT NONE
! Declarations
INTEGER :: i, j !, ...
!...
INTEGER, PARAMETER :: numrows=5001, numcols=2287
REAL, DIMENSION(numrows, numcols) :: data
REAL, DIMENSION(numrows) :: time
REAL, DIMENSION(numrows, numcols-1) :: posData
REAL, DIMENSION(:,:), ALLOCATABLE :: o, h1, h2 !, ...
REAL, DIMENSION(9) :: temp
INTEGER, PARAMETER :: numTimes=size(posData,1), numColumns=size(posData,2)
INTEGER, PARAMETER :: numAtoms=numColumns/3, numMolecules=numAtoms/3
!...
! Load data
OPEN(UNIT=11, FILE="trajectory.txt")
DO i=1,numrows
READ(11,*) (data(i,j), j=1,numcols)
END DO
time=data(:,1)
posData=data(:,2:numcols)
! Partition data into O, H1, and H2
ALLOCATE(o(numTimes, 3*numMolecules))
ALLOCATE(h1(numTimes, 3*numMolecules))
ALLOCATE(h2(numTimes, 3*numMolecules))
DO i=1,numTimes
DO j=1,numMolecules
temp=posData(i,9*(j-1)+1 : 9*j)
o(i,(3*(j-1)+1):(3*(j-1)+3))=temp(1:3)
h1(i,3*(j-1)+1 : 3*(j-1)+3)=temp(4:6)
h2(i,3*(j-1)+1 : 3*(j-1)+3)=temp(7:9)
END DO
END DO
!...
!...
!...
! Print results
!... CALL printall(numrows,numcols,numTimes,numColumns,numAtoms,numMolecules)
!...
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
PRINT *, "size(o)======", SIZE(o,1), SIZE(o,2) ! <--- This correctly prints 5001 762
OPEN(UNIT=12, FILE="ooutput.txt", ACTION="write", STATUS="replace")
DO i=1,SIZE(o,1)
WRITE(12,*) (o(i,j), j=1,SIZE(o,2))
END DO
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!...
DEALLOCATE(o)
DEALLOCATE(h1)
DEALLOCATE(h2)
!...
END PROGRAM mysnippet
where I have used !... to denote non-essential parts that I snipped out for the purpose of this condensed code. Alternatively, I have posted this shortened code as a f90 file here: http://www.andrew.cmu.edu/user/adeyoung/june29/mysnippet.f90
Thank you very much for all your help and your time. I truly appreciate it!