我正在运行模型并将模型输出写入二进制文件(GrADS * gra文件),例如:
integer,parameter :: nvar =3 ,& !number of variables to be written to file
nx=10,ny=10,& !number of girdboxes in lat & long
nt = 5
integer :: it, & ! loop counter
irec ! Record number
real :: var1(nx,ny), var2(nx,ny),var3(nx,ny)
OPEN(30,file='Outfile.gra',action='write',form='unformatted',access='direct',&
recl=4*nVar*nx*ny,status='replace')
!loop over timesteps
it = 1, nt
irec = irec + 1
WRITE(1,rec=irec) Var1(:,:),Var2(:,:),Var3(:,:)
enddo
可以在GrADS中读取文件,* ctl文件看起来像这样
dset /mypath/Outfile.gra
title MyTitle
options little_endian
xdef 10 linear 1 1
ydef 10 linear 1 1
zdef 1 linear 1.0 1.0
tdef 5 linear 00:00Z01jan2012 1hr
vars 3
var1
var2
var3
endvars
我想要做的是,从一个单独的程序,将1个变量的1个x的所有x& y写入文本文件。我尝试了很多方法但没有任何效果。我最近的尝试就是这个:
integer,parameter :: &
t = 3, & !Timestep I want to write to file
field = 2, & !Variable I want to write to file
nvar =3 , & !number of variables to be written to file
nx=10,ny=10, & !number of girdboxes in lat & long
nt = 5 !number of timesteps
inteǵer :: it,ix,iy,& ! loop counters
irec ! Record number
real :: val(nx,ny) ! Data to be written to file
open(1,file='NewFile.txt',status='replace')
open(2,file='Outfile.gra',action='read',form='unformatted',access='direct',&
recl=4*nVar*nx*ny,status='old')
irec = 0
do it = 1,nt
irec=irec + nvar*nx*ny
if(it == t) then
irec = irec + (field-1)*nx*ny
do ix = 1,nx
do iy = 1,ny
irec=irec+1
read(2,rec=irec) val(ix,iy)
enddo
enddo
write(1,*) val(:,:)
此特定示例给出了以下错误
Fortran运行时错误:不存在的记录号
但我尝试了其他不会给我任何错误的变体,但只是没有写出我试图写入文件的内容。有人能告诉我我做错了什么以及如何解决这个问题?谢谢。
答案 0 :(得分:4)
好的,让我再试一次。当您编写outfile.gra
时,您似乎在块
nt
条记录写入其中
!loop over timesteps
it = 1, nt
irec = irec + 1
WRITE(1,rec=irec) Var1(:,:),Var2(:,:),Var3(:,:)
enddo
我想irec
在代码中的某处初始化为0
。 nt
设置为5
,因此,如果我的猜测正确,您的代码会将5条记录写入outfile.gra
。
稍后,您在此块中读取相同的文件
irec = 0
do it = 1,nt
irec=irec + nvar*nx*ny
if(it == t) then
irec = irec + (field-1)*nx*ny
do ix = 1,nx
do iy = 1,ny
irec=irec+1
read(2,rec=irec) val(ix,iy)
enddo
enddo
目前还不清楚if
语句的关闭位置,但是根据您的问题,我猜它会在nx
和ny
上的循环后关闭,如下所示:
irec = 0
do it = 1,nt
irec=irec + nvar*nx*ny
if(it == t) then
irec = irec + (field-1)*nx*ny
do ix = 1,nx
do iy = 1,ny
irec=irec+1
read(2,rec=irec) val(ix,iy)
enddo
enddo
end if
同样,如果我的猜测是正确的,那么当irec
语句首次执行时,401
的值为read
。
您似乎已向outfile.gra
写了5条记录,并试图从中读取第401条记录。报告您尝试读取不存在的记录的运行时完全合理。
答案 1 :(得分:0)
High Performance Mark和hristo-iliev确定了记录号码的问题。为了能够做我想做的事,即在单个时间步写一个变量,正确的代码是
irec = 0
do it = 1, t
irec = irec + 1
read(2,rec=irec) val(:,:,:)
enddo
write(1,*) val(:,:,field)
其中val(nx,ny,nVar)