1
Fork 0

Fixed post

This commit is contained in:
Edgar P. Burkhart 2022-03-03 16:03:44 +01:00
parent 1a789ced40
commit bec1cd2a89
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ dt = config.getfloat("post", "dt")
f = 1 / dt f = 1 / dt
log.info(f"Computing reflection coefficient at x={x0}") log.info(f"Computing reflection coefficient at x={x0}")
eta = (data["dep"] - data["botl"])[t > t0, x0] eta = data["dep"][t > t0, x0] - data["botl"][x0]
u = data["vel"][t > t0, 0, x0] u = data["vel"][t > t0, 0, x0]
phi_eta = np.abs(sgl.csd(eta, eta, f)) phi_eta = np.abs(sgl.csd(eta, eta, f))