Plotting for each timestep can take hours if the time step is very small
(e.g.,
Run from unix shell (zsh or bash) from home directory
for k in $(seq 0 100); do
T=$(echo "$k * 0.5" | bc)
python ./Programming/pde-course/plot_at_specifiedT.py \
Desktop/outputs_neweqn/128_128_sig200_gauss_0.001/snapshots/snapshots_s1.h5 \
--output=Desktop/outputs_neweqn/128_128_sig200_gauss_0.001/plots_Tseries \
--time=$T \
--plot_type='3d' \
--zmax=1.5 \
echo "k=$k T=$T" # sanity check
doneYou can similarly plot for non-uniformly spaced out times by looping through an explicit list in the shell.