I am wondering if there is a limit to the number of characters you can have per line of an input file? My input file is arranged as follows. 4 lines of header. 40 lines of data. 1 header line. Thousands more lines of data. The regular READ(unit #,*) Header works to get rid of the first 4 header lines and simultaneously skip to the next line, however, when I reach the 2nd header line it ends up reading it twice. Following this apparent hiccup, the data values I see in my arrays for the first line of data after the 2nd header are hogwash and looks like it just grabbed random stuff from memory. These lines of data are ~1200 characters long. Is this an issue? Are there any other limitations to READ ?
Thanks for your help.. I've been slaving over this for a while now..
Thanks for your help.. I've been slaving over this for a while now..