Remove dt from config
This commit is contained in:
parent
b982baa3c2
commit
4889c8ca21
3 changed files with 1 additions and 3 deletions
|
@ -38,7 +38,7 @@ x0 = config.getint("post", "x0")
|
|||
arg_x0 = np.abs(x - x0).argmin()
|
||||
t0 = config.getfloat("post", "t0")
|
||||
arg_t0 = np.abs(t - t0).argmin()
|
||||
dt = config.getfloat("post", "dt")
|
||||
dt = np.diff(t).mean()
|
||||
f = 1 / dt
|
||||
nperseg = config.getint("post", "nperseg", fallback=None)
|
||||
log.info(f"Computing reflection coefficient at x={x0}")
|
||||
|
|
Reference in a new issue