OpenCCM is a CFD-based compartment modelling software package. It is primarily intended for convection dominated reactive flows which feature a weak or one-way coupling between the reactive species and the carrier fluid, i.e. the reaction does not substantially influence the fluid flow over the course of the simulation.
Previously every timestep that solve_ivp took was returned in the result. These may not be uniformly sampled, and may be far more than the user wants. That was left as the default behaviour, but additional options were added:
All points.
Linearly spaced points between t_0 and t_final with delta_t spacing inbetween them.
Logarithmic spacing with num_points total sampling points.
Explicitly providing a list of time points, i.e. (t1, t2, ..., tn).
Previously every timestep that solve_ivp took was returned in the result. These may not be uniformly sampled, and may be far more than the user wants. That was left as the default behaviour, but additional options were added: