Save time-evolution results of PDE #151
-
Hello, First of all, kudos to the pypde team for this amazing package! I am solving the Brusselator model at pypde and I would like to track and save the entire time-evolution of u,v. Perhaps save it in the 'sol._data' instead of just saving the final snapshot. What should I change in the tracker object to achieve that? ############ define the PDEa, b = 1, 3 initialize stategrid = UnitGrid([64, 64]) simulate the pdetracker = PlotTracker(interval=1, plot_args={"vmin": 0, "vmax": 5}) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can save intermediate data at regular intervals using the |
Beta Was this translation helpful? Give feedback.
You can save intermediate data at regular intervals using the
storage
module; see this example or this example.