Source code for pde.pdes.base

"""
Base classes

.. codeauthor:: David Zwicker <david.zwicker@ds.mpg.de> 
"""

import logging
from abc import ABCMeta, abstractmethod
from typing import Optional  # @UnusedImport
from typing import TYPE_CHECKING, Any, Callable, Dict, Tuple, Union

import numpy as np

from ..fields import FieldCollection
from ..fields.base import FieldBase
from ..tools.numba import jit
from ..tools.typing import ArrayLike
from ..trackers.base import TrackerCollectionDataType

if TYPE_CHECKING:
    from ..solvers.base import SolverBase  # @UnusedImport
    from ..solvers.controller import TRangeType  # @UnusedImport


[docs]class PDEBase(metaclass=ABCMeta): """base class for solving partial differential equations Custom PDEs can be implemented by specifying their evolution rate. In the simple case of deterministic PDEs, the methods :meth:`PDEBase.evolution_rate` and :meth:`PDEBase._make_pde_rhs_numba` need to be overwritten for the `numpy` and `numba` backend, respectively. """ check_implementation: bool = True """ bool: Flag determining whether (some) numba-compiled functions should be checked against their numpy counter-parts. This can help with implementing a correct compiled version for a PDE class. """ cache_rhs: bool = False """ bool: Flag indicating whether the right hand side of the equation should be cached. If True, the same implementation is used in subsequent calls to `solve`. Note that this might lead to wrong results if the parameters of the PDE were changed after the first call. This option is thus disabled by default and should be used with care. """ explicit_time_dependence: Optional[bool] = None """ bool: Flag indicating whether the right hand side of the PDE has an explicit time dependence. """ complex_valued: bool = False """ bool: Flag indicating whether the right hand side is a complex-valued PDE, which requires all involved variables to be of complex type """ def __init__(self, *, noise: ArrayLike = 0, rng: np.random.Generator = None): """ Args: noise (float or :class:`~numpy.ndarray`): Magnitude of the additive Gaussian white noise that is supported for all PDEs by default. If set to zero, a deterministic partial differential equation will be solved. Different noise magnitudes can be supplied for each field in coupled PDEs. rng (:class:`~numpy.random.Generator`): Random number generator (default: :func:`~numpy.random.default_rng()`). Note that this random number generator is only used for numpy function, while compiled numba code is unaffected. Note: If more complicated noise structures are required, the methods :meth:`PDEBase.noise_realization` and :meth:`PDEBase._make_noise_realization_numba` need to be overwritten for the `numpy` and `numba` backend, respectively. """ self._logger = logging.getLogger(self.__class__.__name__) self._cache: Dict[str, Any] = {} self.noise = np.asanyarray(noise) if rng is None: self.rng = np.random.default_rng() else: self.rng = rng @property def is_sde(self) -> bool: """flag indicating whether this is a stochastic differential equation The :class:`BasePDF` class supports additive Gaussian white noise, whose magnitude is controlled by the `noise` property. In this case, `is_sde` is `True` if `self.noise != 0`. """ # check for self.noise, in case __init__ is not called in a subclass return hasattr(self, "noise") and np.any(self.noise != 0) # type: ignore
[docs] def make_modify_after_step(self, state: FieldBase) -> Callable[[np.ndarray], float]: """returns a function that can be called to modify a state This function is applied to the state after each integration step when an explicit stepper is used. The default behavior is to not change the state. Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted Returns: Function that can be applied to a state to modify it and which returns a measure for the corrections applied to the state """ def modify_after_step(state_data: np.ndarray) -> float: """no-op function""" return 0 return modify_after_step
[docs] @abstractmethod def evolution_rate(self, state: FieldBase, t: float = 0) -> FieldBase: pass
def _make_pde_rhs_numba( self, state: FieldBase ) -> Callable[[np.ndarray, float], np.ndarray]: """create a compiled function for evaluating the right hand side""" raise NotImplementedError
[docs] def check_rhs_consistency( self, state: FieldBase, t: float = 0, *, tol: float = 1e-7, rhs_numba: Callable = None, ): """check the numba compiled right hand side versus the numpy variant Args: state (:class:`~pde.fields.FieldBase`): The state for which the evolution rates should be compared t (float): The associated time point tol (float): Acceptance tolerance. The check passes if the evolution rates differ by less then this value rhs_numba (callable): The implementation of the numba variant that is to be checked. If omitted, an implementation is obtained by calling :meth:`PDEBase._make_pde_rhs_numba_cached`. """ # obtain evolution rate from the numpy implementation res_numpy = self.evolution_rate(state.copy(), t).data if not np.all(np.isfinite(res_numpy)): self._logger.warning( "The numpy implementation of the PDE returned non-finite values." ) # obtain evolution rate from the numba implementation if rhs_numba is None: rhs_numba = self._make_pde_rhs_numba_cached(state) test_state = state.copy() res_numba = rhs_numba(test_state.data, t) if not np.all(np.isfinite(res_numba)): self._logger.warning( "The numba implementation of the PDE returned non-finite values." ) # compare the two implementations msg = ( "The numba compiled implementation of the right hand side is not " "compatible with the numpy implementation. This check can be disabled " "by setting the class attribute `check_implementation` to `False`." ) np.testing.assert_allclose( res_numba, res_numpy, err_msg=msg, rtol=tol, atol=tol, equal_nan=True )
def _make_pde_rhs_numba_cached( self, state: FieldBase ) -> Callable[[np.ndarray, float], np.ndarray]: """create a compiled function for evaluating the right hand side This method implements caching and checking of the actual method, which is defined by overwriting the method `_make_pde_rhs_numba`. Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted. """ check_implementation = self.check_implementation if self.cache_rhs: # support caching of the right hand side grid_state = state.grid.state_serialized if self._cache.get("pde_rhs_numba_state") == grid_state: # cache was successful self._logger.info("Use compiled rhs from cache") check_implementation = False # skip checking to save time else: # cache was not hit self._logger.info("Write compiled rhs to cache") self._cache["pde_rhs_numba_state"] = grid_state self._cache["pde_rhs_numba"] = self._make_pde_rhs_numba(state) rhs = self._cache["pde_rhs_numba"] else: # caching was skipped rhs = self._make_pde_rhs_numba(state) if check_implementation: self.check_rhs_consistency(state, rhs_numba=rhs) return rhs # type: ignore
[docs] def make_pde_rhs( self, state: FieldBase, backend: str = "auto" ) -> Callable[[np.ndarray, float], np.ndarray]: """return a function for evaluating the right hand side of the PDE Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted. backend (str): Determines how the function is created. Accepted values are 'numpy` and 'numba'. Alternatively, 'auto' lets the code decide for the most optimal backend. Returns: callable: Function determining the right hand side of the PDE """ if backend == "auto": try: rhs = self._make_pde_rhs_numba_cached(state) except NotImplementedError: backend = "numpy" else: rhs._backend = "numba" # type: ignore if backend == "numba": rhs = self._make_pde_rhs_numba_cached(state) rhs._backend = "numba" # type: ignore elif backend == "numpy": state = state.copy() def evolution_rate_numpy(state_data: np.ndarray, t: float) -> np.ndarray: """evaluate the rhs given only a state without the grid""" state.data = state_data return self.evolution_rate(state, t).data rhs = evolution_rate_numpy rhs._backend = "numpy" # type: ignore elif backend != "auto": raise ValueError( f"Unknown backend `{backend}`. Possible values are ['auto', 'numpy', " "'numba']" ) return rhs
[docs] def noise_realization( self, state: FieldBase, t: float = 0, label: str = "Noise realization" ) -> FieldBase: """returns a realization for the noise Args: state (:class:`~pde.fields.ScalarField`): The scalar field describing the concentration distribution t (float): The current time point label (str): The label for the returned field Returns: :class:`~pde.fields.ScalarField`: Scalar field describing the evolution rate of the PDE """ if self.is_sde: result = state.copy(label=label) if np.isscalar(self.noise) or self.noise.size == 1: # a single noise value is given for all fields result.data = self.rng.normal(scale=self.noise, size=state.data.shape) elif isinstance(state, FieldCollection): # different noise strengths, assuming one for each field for f, n in zip(result, np.broadcast_to(self.noise, len(state))): # type: ignore if n == 0: f.data = 0 else: f.data = self.rng.normal(scale=n, size=f.data.shape) else: # different noise strengths, but a single field raise RuntimeError( f"Multiple noise strengths were given for the single field {state}" ) else: # no noise result = state.copy(label=label) result.data[:] = 0 return result
def _make_noise_realization_numba( self, state: FieldBase ) -> Callable[[np.ndarray, float], np.ndarray]: """return a function for evaluating the noise term of the PDE Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted Returns: Function determining the right hand side of the PDE """ if self.is_sde: data_shape = state.data.shape if np.isscalar(self.noise) or self.noise.size == 1: # a single noise value is given for all fields noise_strength = float(self.noise) @jit def noise_realization(state_data: np.ndarray, t: float) -> np.ndarray: """helper function returning a noise realization""" return noise_strength * np.random.randn(*data_shape) elif isinstance(state, FieldCollection): # different noise strengths, assuming one for each field noise_strengths = np.empty(data_shape[0]) noise_arr = np.broadcast_to(self.noise, len(state)) for i, noise in enumerate(noise_arr): noise_strengths[state._slices[i]] = noise @jit def noise_realization(state_data: np.ndarray, t: float) -> np.ndarray: """helper function returning a noise realization""" out = np.random.randn(*data_shape) for i in range(data_shape[0]): # TODO: Avoid creating random numbers when noise_strengths == 0 out[i] *= noise_strengths[i] return out else: # different noise strengths, but a single field raise RuntimeError( f"Multiple noise strengths were given for the single field {state}" ) else: @jit def noise_realization(state_data: np.ndarray, t: float) -> None: """helper function returning a noise realization""" return None return noise_realization # type: ignore def _make_sde_rhs_numba( self, state: FieldBase ) -> Callable[[np.ndarray, float], Tuple[np.ndarray, np.ndarray]]: """return a function for evaluating the noise term of the PDE Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted Returns: Function determining the right hand side of the PDE """ evolution_rate = self._make_pde_rhs_numba_cached(state) noise_realization = self._make_noise_realization_numba(state) @jit def sde_rhs(state_data: np.ndarray, t: float) -> Tuple[np.ndarray, np.ndarray]: """compiled helper function returning a noise realization""" return (evolution_rate(state_data, t), noise_realization(state_data, t)) return sde_rhs # type: ignore def _make_sde_rhs_numba_cached( self, state: FieldBase ) -> Callable[[np.ndarray, float], Tuple[np.ndarray, np.ndarray]]: """create a compiled function for evaluating the noise term of the PDE This method implements caching and checking of the actual method, which is defined by overwriting the method `_make_pde_rhs_numba`. """ if self.cache_rhs: # support caching of the noise term grid_state = state.grid.state_serialized if self._cache.get("sde_rhs_numba_state") == grid_state: # cache was successful self._logger.info("Use compiled noise term from cache") else: # cache was not hit self._logger.info("Write compiled noise term to cache") self._cache["sde_rhs_numba_state"] = grid_state self._cache["sde_rhs_numba"] = self._make_sde_rhs_numba(state) sde_rhs = self._cache["sde_rhs_numba"] else: # caching was skipped sde_rhs = self._make_sde_rhs_numba(state) return sde_rhs # type: ignore
[docs] def make_sde_rhs( self, state: FieldBase, backend: str = "auto" ) -> Callable[[np.ndarray, float], Tuple[np.ndarray, np.ndarray]]: """return a function for evaluating the right hand side of the SDE Args: state (:class:`~pde.fields.FieldBase`): An example for the state from which the grid and other information can be extracted backend (str): Determines how the function is created. Accepted values are 'python` and 'numba'. Alternatively, 'auto' lets the code decide for the most optimal backend. Returns: Function determining the deterministic part of the right hand side of the PDE together with a noise realization. """ if backend == "auto": try: sde_rhs = self._make_sde_rhs_numba_cached(state) except NotImplementedError: backend = "numpy" else: sde_rhs._backend = "numba" # type: ignore return sde_rhs if backend == "numba": sde_rhs = self._make_sde_rhs_numba_cached(state) sde_rhs._backend = "numba" # type: ignore elif backend == "numpy": state = state.copy() def sde_rhs( state_data: np.ndarray, t: float ) -> Tuple[np.ndarray, np.ndarray]: """evaluate the rhs given only a state without the grid""" state.data = state_data return ( self.evolution_rate(state, t).data, self.noise_realization(state, t).data, ) sde_rhs._backend = "numpy" # type: ignore else: raise ValueError(f"Unknown backend `{backend}`") return sde_rhs
[docs] def solve( self, state: FieldBase, t_range: "TRangeType", dt: float = None, tracker: TrackerCollectionDataType = "auto", method: Union[str, "SolverBase"] = "auto", ret_info: bool = False, **kwargs, ) -> Union[FieldBase, Tuple[FieldBase, Dict[str, Any]]]: """convenience method for solving the partial differential equation The method constructs a suitable solver (:class:`~pde.solvers.base.SolverBase`) and controller (:class:`~pde.controller.Controller`) to advance the state over the temporal range specified by `t_range`. To obtain full flexibility, it is advisable to construct these classes explicitly. Args: state (:class:`~pde.fields.base.FieldBase`): The initial state (which also defines the spatial grid) t_range (float or tuple): Sets the time range for which the PDE is solved. This should typically be a tuple of two numbers, `(t_start, t_end)`, specifying the initial and final time of the simulation. If only a single value is given, it is interpreted as `t_end` and the time range is assumed to be `(0, t_end)`. dt (float): Time step of the chosen stepping scheme. If `None`, a default value based on the stepper will be chosen. In particular, if `method == 'auto'`, :class:`~pde.solvers.ScipySolver` with an automatic, adaptive time step provided by scipy is used. This is a flexible choice, but can also result in unstable or slow simulations. If an adaptive stepper is used (supported by :class:`~pde.solvers.ScipySolver` and :class:`~pde.solvers.ExplicitSolver`), the value given here sets the initial time step. tracker: Defines a tracker that process the state of the simulation at specified time intervals. A tracker is either an instance of :class:`~pde.trackers.base.TrackerBase` or a string, which identifies a tracker. All possible identifiers can be obtained by calling :func:`~pde.trackers.base.get_named_trackers`. Multiple trackers can be specified as a list. The default value `auto` checks the state for consistency (tracker 'consistency') and displays a progress bar (tracker 'progress') when :mod:`tqdm` is installed. More general trackers are defined in :mod:`~pde.trackers`, where all options are explained in detail. In particular, the interval at which the tracker is evaluated can be chosen when creating a tracker object explicitly. method (:class:`~pde.solvers.base.SolverBase` or str): Specifies the method for solving the differential equation. This can either be an instance of :class:`~pde.solvers.base.SolverBase` or a descriptive name like 'explicit' or 'scipy'. The valid names are given by :meth:`pde.solvers.base.SolverBase.registered_solvers`. The default value 'auto' selects :class:`~pde.solvers.ScipySolver` if `dt` is not specified and :class:`~pde.solvers.explicit.ExplicitSolver` otherwise. Details of the solvers and additional features (like adaptive time steps) are explained in their documentation. ret_info (bool): Flag determining whether diagnostic information about the solver process should be returned. **kwargs: Additional keyword arguments are forwarded to the solver class chosen with the `method` argument. In particular, :class:`~pde.solvers.explicit.ExplicitSolver` supports several `schemes` and an adaptive stepper can be enabled using :code:`adaptive=True`. Conversely, :class:`~pde.solvers.ScipySolver` accepts the additional arguments of :func:`scipy.integrate.solve_ivp`. Returns: :class:`~pde.fields.base.FieldBase`: The state at the final time point. If `ret_info == True`, a tuple with the final state and a dictionary with additional information is returned. """ from ..solvers.base import SolverBase # @Reimport if method == "auto": method = "scipy" if dt is None else "explicit" # create solver if callable(method): solver = method(pde=self, **kwargs) if not isinstance(solver, SolverBase): self._logger.warning( "Solver is not an instance of `SolverBase`. Specified wrong method?" ) elif isinstance(method, str): solver = SolverBase.from_name(method, pde=self, **kwargs) else: raise TypeError(f"Method {method} is not supported") # create controller from ..solvers import Controller controller = Controller(solver, t_range=t_range, tracker=tracker) # run the simulation final_state = controller.run(state, dt) if ret_info: info = controller.diagnostics.copy() info["controller"].pop("solver_class") # remove redundant information return final_state, info else: return final_state
[docs]def expr_prod(factor: float, expression: str) -> str: """helper function for building an expression with an (optional) pre-factor Args: factor (float): The value of the prefactor expression (str): The remaining expression Returns: str: The expression with the factor appended if necessary """ if factor == 0: return "0" elif factor == 1: return expression elif factor == -1: return "-" + expression else: return f"{factor:g} * {expression}"