Hello,
This is what you write:
DO I = 1,140
READ(UL,*) inputString
READ(inputString) AT,FUAIR,FVAIR
write (*,*) 't',AT,'u',FUAIR,'v',FVAIR
ENDDO
It could be as well:
DO I = 1,140
READ(UL,*) AT,FUAIR,FVAIR
write (*,*) 't',AT,'u',FUAIR,'v',FVAIR
ENDDO
but AT is the current time and you cannot change it, choose and declare another double precision name. If you have only 140 lines (beware that you must skip two comment lines, or remove them from the file) you can do this loop at every iteration, but then you should store two successive times, like AT1 and AT2, and stop and interpolate the FUAIR and FVAIR between these two times when you have AT1 < AT < AT2, so you probably need to declare also FUAIR1, FVAIR1, FUAIR2 and FVAIR2.
Regards,
JMH