我正在使用 MODFLOW-2000 运行地面沉降模型。但是,沉降文件的输出是二进制数据。有什么方法可以使用 python 脚本将其转换为文本,因为我正在为模型做数百个场景。
问问题
175 次
1 回答
2
SUB 包的二进制输出与 MODFLOW 二进制头文件具有相同的格式。您需要知道写入二进制文件的输出文本字符串的名称。请参阅 SUB 包的MODFLOW-2005 在线文档中的表 1,以确定给定 SUB 包二进制文件的文本字符串。
下面显示了如何使用andZ DISPLACEMENT
将二进制沉降文件中的数据转换为 ascii 文件:flopy
numpy
import numpy as np
import flopy
# open the binary file
sobj = flopy.utils.HeadFile('model.zdisplacement.bin',
text='Z DISPLACEMENT')
# get all of the available times in the file
times = sobj.get_times()
# extract the data for the last time in the file
zd = sobj.get_data(totim=times[-1])
# save the z-displacement for the first layer (layer 0) to an ascii file
# zd is a 3D numpy array with a shape of (nlay, nrow, ncol)
np.savetxt('layer0.zdisplacement.txt', zd[0])
如果您有多个图层,则需要保存每个图层的数据。
您可以使用以下命令输出文件中的所有数据:
for t in sobj.get_times():
zd = sobj.get_data(totim=t)
for k in range(nlay):
fpth = 'layer{}_{}.zdisplacement.txt'.format(k, t)
np.savetxt(fpth, zd[k])
于 2018-10-01T20:40:06.090 回答