SpECTRE Documentation Coverage Report
Current view: top level - Domain/FunctionsOfTime - FunctionOfTime.hpp Hit Total Coverage
Commit: a6a8ee404306bec9d92da8ab89f636b037aefc25 Lines: 8 18 44.4 %
Date: 2024-07-26 22:35:59
Legend: Lines: hit not hit

          Line data    Source code
       1           0 : // Distributed under the MIT License.
       2             : // See LICENSE.txt for details.
       3             : 
       4             : #pragma once
       5             : 
       6             : #include <array>
       7             : #include <memory>
       8             : #include <pup.h>
       9             : #include <vector>
      10             : 
      11             : #include "DataStructures/DataVector.hpp"
      12             : #include "Utilities/ErrorHandling/Error.hpp"
      13             : #include "Utilities/Serialization/CharmPupable.hpp"
      14             : 
      15             : namespace domain {
      16             : /// \ingroup ComputationalDomainGroup
      17             : /// \brief Contains functions of time to support the dual frame system.
      18             : namespace FunctionsOfTime {
      19             : /// \ingroup ComputationalDomainGroup
      20             : /// \brief Base class for FunctionsOfTime
      21             : ///
      22             : /// A FunctionOfTime is a function that will return the same value for
      23             : /// a time `t`, regardless of when that function is called during a run
      24             : /// (provided that the time `t` is in the domain of validity of the function).
      25             : /// All FunctionsOfTime have members
      26             : ///   - `func`, that returns a `std::array<DataVector, 1>`
      27             : ///   - `func_and_deriv`, that returns a `std::array<DataVector, 2>`
      28             : ///   - `func_and_2_derivs`, that returns a `std::array<DataVector, 3>`
      29             : ///
      30             : /// The DataVectors that are returned can be of any size: e.g. a scalar
      31             : /// FunctionOfTime will have DataVectors with one component and a 3-vector
      32             : /// FunctionOfTime will have DataVectors with three components.
      33             : ///
      34             : /// The domain of validity of the function is given by the `time_bounds` member
      35             : /// function.
      36             : ///
      37             : /// The function and all of its derivatives are left-continuous, that
      38             : /// is, when evaluated at a time when the function was updated, they
      39             : /// return the values just before the update, ignoring the updated
      40             : /// value.
      41           1 : class FunctionOfTime : public PUP::able {
      42             :  public:
      43           0 :   FunctionOfTime() = default;
      44           0 :   FunctionOfTime(FunctionOfTime&&) = default;
      45           0 :   FunctionOfTime& operator=(FunctionOfTime&&) = default;
      46           0 :   FunctionOfTime(const FunctionOfTime&) = default;
      47           0 :   FunctionOfTime& operator=(const FunctionOfTime&) = default;
      48           0 :   ~FunctionOfTime() override = default;
      49             : 
      50           0 :   virtual auto get_clone() const -> std::unique_ptr<FunctionOfTime> = 0;
      51             : 
      52             :   /// Returns the domain of validity of the function.
      53             :   /// For FunctionsOfTime that allow a small amount of time extrapolation,
      54             :   /// `time_bounds` tells you the bounds including the allowed extrapolation
      55             :   /// interval.
      56           1 :   virtual std::array<double, 2> time_bounds() const = 0;
      57             : 
      58             :   /// \brief The first expiration time after \p time.
      59             :   ///
      60             :   /// \details For non-updatable functions, this returns infinity. For
      61             :   /// updatable functions, the first expiration time after \p time is
      62             :   /// found by determining the update immediately before \p time. The
      63             :   /// expiration time of this update is what is returned. If \p time
      64             :   /// happens to be an update itself, then the expiration of that
      65             :   /// update is returned.
      66           1 :   virtual double expiration_after(double time) const = 0;
      67             : 
      68             :   /// Updates the maximum derivative of the FunctionOfTime at a given time while
      69             :   /// also resetting the expiration. By default, a FunctionOfTime cannot be
      70             :   /// updated.
      71           1 :   virtual void update(double /*time_of_update*/,
      72             :                       DataVector /*updated_max_deriv*/,
      73             :                       double /*next_expiration_time*/) {
      74             :     ERROR("Cannot update this FunctionOfTime.");
      75             :   }
      76             : 
      77             :   /// The DataVector can be of any size
      78           1 :   virtual std::array<DataVector, 1> func(double t) const = 0;
      79             :   /// The DataVector can be of any size
      80           1 :   virtual std::array<DataVector, 2> func_and_deriv(double t) const = 0;
      81             :   /// The DataVector can be of any size
      82           1 :   virtual std::array<DataVector, 3> func_and_2_derivs(double t) const = 0;
      83             : 
      84             :   /// \brief All derivatives a function of time has to offer (because it can be
      85             :   /// more than 2)
      86             :   ///
      87             :   /// \details Defaults to the return values from `func_and_2_derivs` since some
      88             :   /// functions of time only go up to 2 derivatives by design
      89           1 :   virtual std::vector<DataVector> func_and_all_derivs(double t) const {
      90             :     std::array<DataVector, 3> tmp_func_and_2_derivs = func_and_2_derivs(t);
      91             : 
      92             :     return std::vector{std::move(tmp_func_and_2_derivs[0]),
      93             :                        std::move(tmp_func_and_2_derivs[1]),
      94             :                        std::move(tmp_func_and_2_derivs[2])};
      95             :   }
      96             : 
      97           0 :   WRAPPED_PUPable_abstract(FunctionOfTime);  // NOLINT
      98             : };
      99             : }  // namespace FunctionsOfTime
     100             : 
     101           0 : using FunctionsOfTimeMap = std::unordered_map<
     102             :     std::string, std::unique_ptr<domain::FunctionsOfTime::FunctionOfTime>>;
     103             : 
     104             : }  // namespace domain

Generated by: LCOV version 1.14