55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
|
import argparse
|
||
|
import configparser
|
||
|
import logging
|
||
|
import pathlib
|
||
|
|
||
|
import matplotlib.pyplot as plt
|
||
|
import matplotlib.animation as animation
|
||
|
import numpy as np
|
||
|
import pandas as pd
|
||
|
|
||
|
|
||
|
parser = argparse.ArgumentParser(description="Animate swash output")
|
||
|
parser.add_argument("-v", "--verbose", action="count", default=0)
|
||
|
args = parser.parse_args()
|
||
|
|
||
|
logging.basicConfig(level=max((10, 20 - 10 * args.verbose)))
|
||
|
log = logging.getLogger("post")
|
||
|
|
||
|
log.info("Starting post-processing")
|
||
|
config = configparser.ConfigParser()
|
||
|
config.read("config.ini")
|
||
|
|
||
|
inp = pathlib.Path(config.get("post", "inp"))
|
||
|
root = pathlib.Path(config.get("swash", "out"))
|
||
|
|
||
|
data = np.load(inp.joinpath(config.get("post", "case")))
|
||
|
bathy = pd.read_hdf(
|
||
|
pathlib.Path(config.get("data", "out")).joinpath("bathy.h5"), "bathy"
|
||
|
)
|
||
|
|
||
|
x = data["x"]
|
||
|
t = data["t"]
|
||
|
|
||
|
wl = np.maximum(data["watl"], -data["botl"])
|
||
|
print(x.size, -np.arange(0, 1 * bathy.hstru.size, 1)[::-1].size)
|
||
|
|
||
|
fig, ax = plt.subplots()
|
||
|
ax.plot(x, -data["botl"], c="k")
|
||
|
ax.fill_between(
|
||
|
x, -data["botl"], -data["botl"] + bathy.hstru, color="k", alpha=0.2
|
||
|
)
|
||
|
(line,) = ax.plot(x, wl[0])
|
||
|
|
||
|
|
||
|
def animate(i):
|
||
|
line.set_ydata(wl[i])
|
||
|
return (line,)
|
||
|
|
||
|
|
||
|
ani = animation.FuncAnimation(
|
||
|
fig, animate, frames=wl[:, 0].size, interval=20, blit=True
|
||
|
)
|
||
|
|
||
|
plt.show(block=True)
|