SpECTRE  v2023.05.16
domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction Class Referenceabstract

Abstract base class for the transition functions used by the domain::CoordinateMaps::TimeDependent::Shape map. More...

#include <ShapeMapTransitionFunction.hpp>

Public Member Functions

virtual std::optional< double > original_radius_over_radius (const std::array< double, 3 > &target_coords, double distorted_radius) const =0
 
virtual bool operator== (const ShapeMapTransitionFunction &other) const =0
 
virtual bool operator!= (const ShapeMapTransitionFunction &other) const =0
 
 WRAPPED_PUPable_abstract (ShapeMapTransitionFunction)
 
 ShapeMapTransitionFunction (CkMigrateMessage *m)
 
virtual double operator() (const std::array< double, 3 > &source_coords) const =0
 
virtual DataVector operator() (const std::array< DataVector, 3 > &source_coords) const =0
 
virtual double map_over_radius (const std::array< double, 3 > &source_coords) const =0
 
virtual DataVector map_over_radius (const std::array< DataVector, 3 > &source_coords) const =0
 
virtual std::array< double, 3 > gradient (const std::array< double, 3 > &source_coords) const =0
 
virtual std::array< DataVector, 3 > gradient (const std::array< DataVector, 3 > &source_coords) const =0
 
virtual std::unique_ptr< ShapeMapTransitionFunctionget_clone () const =0
 

Detailed Description

Abstract base class for the transition functions used by the domain::CoordinateMaps::TimeDependent::Shape map.

Details

This base class defines the required methods of a transition function used by the shape map. Different domains require the shape map to fall off towards the boundary in different ways. This behavior is controlled by the transition function. It is also needed to find the inverse of the shape map. Since the shape map preserves angles, the problem of finding its inverse reduces to the 1-dimensional problem of finding the original radius from the mapped radius. The mapped radius \(\tilde{r}\) is related to the original \(r\) radius by:

\begin{equation}\label{eq:shape_map_radius} \tilde{r} = r (1 - f(r,\theta,\phi) \sum_{lm} \lambda_{lm}(t)Y_{lm}(\theta, \phi)), \end{equation}

where \(f(r,\theta,\phi)\) is the transition function. Depending on the format of the transition function, it should be possible to analytically derive this map's inverse because it preserves angles and shifts only the radius of each point. Otherwise the inverse has to be computed numerically.

The transition function must also be able to compute the gradient and the value of the function divided by the radius. Care must be taken that this does not divide by zero.

All member functions with the exception of original_radius_over_radius exist as overloads for types double and DataVector so that they work with the templated shape map methods calling them. To avoid code duplication these can be forwarded to templated implementation methods held by the derived classes only.

For an example, see SphereTransition.

Design Decisions:

It was decided to make the ShapeMapTransitionFunction an abstract base class with overloads for types double and DataVector corresponding to the template parameter T of the shape map's methods. The shape map holds a unique_ptr to this abstract class using a common dynamic dispatch design pattern. This approach avoids templating the shape map all together.

An alternative approach would be to directly template the transition functions onto the shape map so that no abstract base class is necessary. These approaches can also be combined by making the transition function an abstract base class but also templating it onto the shape map. In this way the shape map does not need to hold a unique_ptr but can hold the transition function directly as a member.

Member Function Documentation

◆ get_clone()

virtual std::unique_ptr< ShapeMapTransitionFunction > domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::get_clone ( ) const
pure virtual

Evaluate the gradient of the transition function with respect to the Cartesian coordinates x, y and z at the Cartesian coordinates source_coords.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ gradient() [1/2]

virtual std::array< DataVector, 3 > domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::gradient ( const std::array< DataVector, 3 > &  source_coords) const
pure virtual

Evaluate the gradient of the transition function with respect to the Cartesian coordinates x, y and z at the Cartesian coordinates source_coords.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ gradient() [2/2]

virtual std::array< double, 3 > domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::gradient ( const std::array< double, 3 > &  source_coords) const
pure virtual

Evaluate the gradient of the transition function with respect to the Cartesian coordinates x, y and z at the Cartesian coordinates source_coords.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ map_over_radius() [1/2]

virtual DataVector domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::map_over_radius ( const std::array< DataVector, 3 > &  source_coords) const
pure virtual

Evaluate the transition function at the Cartesian coordinates divided by the radius. All divisions over the radius which could potentially be zero divisions are left to the transition function which uses its knowledge of the domain to do this safely or throw an appropriate error.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ map_over_radius() [2/2]

virtual double domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::map_over_radius ( const std::array< double, 3 > &  source_coords) const
pure virtual

Evaluate the transition function at the Cartesian coordinates divided by the radius. All divisions over the radius which could potentially be zero divisions are left to the transition function which uses its knowledge of the domain to do this safely or throw an appropriate error.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ operator()() [1/2]

virtual DataVector domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::operator() ( const std::array< DataVector, 3 > &  source_coords) const
pure virtual

Evaluate the transition function at the Cartesian coordinates source_coords.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ operator()() [2/2]

virtual double domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::operator() ( const std::array< double, 3 > &  source_coords) const
pure virtual

Evaluate the transition function at the Cartesian coordinates source_coords.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.

◆ original_radius_over_radius()

virtual std::optional< double > domain::CoordinateMaps::ShapeMapTransitionFunctions::ShapeMapTransitionFunction::original_radius_over_radius ( const std::array< double, 3 > &  target_coords,
double  distorted_radius 
) const
pure virtual

Given the mapped coordinates target_coords and the corresponding spherical harmonic expansion \(\sum_{lm} \lambda_{lm}(t)Y_{lm}\), distorted_radius, this method evaluates the original radius from the mapped radius by inverting the domain::CoordinateMaps::TimeDependent::Shape map. It also divides by the mapped radius to simplify calculations in the shape map.

Implemented in domain::CoordinateMaps::ShapeMapTransitionFunctions::SphereTransition.


The documentation for this class was generated from the following file: