1
Fork 0

Add zero filled poro

This commit is contained in:
Edgar P. Burkhart 2022-03-11 15:20:29 +01:00
parent a94c68d414
commit 847c252ef3
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 4 additions and 1 deletions

View File

@ -99,4 +99,7 @@ z[flt_x] = interpolate.griddata(
(x[flt_x] - x[z_crossing] + bathy_hires[hires_crossing, 0]),
)
np.savetxt(out_root.joinpath("bathy.dat"), z, newline=" ")
np.savetxt(out_root.joinpath("hstru.dat"), np.zeros(z.shape), newline=" ")
np.savetxt(out_root.joinpath("poro.dat"), np.zeros(z.shape), newline=" ")
np.savetxt(out_root.joinpath("psize.dat"), np.zeros(z.shape), newline=" ")