1
Fork 0

Fixed typo in sws_npz

This commit is contained in:
Edgar P. Burkhart 2022-03-03 15:49:06 +01:00
parent c60251b541
commit ca5f3a4c6c
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ bathy = pd.read_hdf(data_out.joinpath("bathy.h5"), "bathy")
n_x = bathy.index.size
log.info(f"Reading swash output from '{sws_out}'")
botl_np = read_nohead_scalar(sws_out.joinpath("botl.dat"), n_x)
botl = read_nohead_scalar(sws_out.joinpath("botl.dat"), n_x)
dep = np.maximum(0, read_nohead_scalar(sws_out.joinpath("dep.dat"), n_x))
vel = read_nohead_vect(sws_out.joinpath("vel.dat"), n_x)