|
| Strahlkorper (const Strahlkorper &)=default |
|
| Strahlkorper (Strahlkorper &&)=default |
|
Strahlkorper & | operator= (const Strahlkorper &)=default |
|
Strahlkorper & | operator= (Strahlkorper &&)=default |
|
| Strahlkorper (size_t l_max, size_t m_max, double radius, std::array< double, 3 > center) |
| Construct a sphere of radius radius with a given center.
|
|
| Strahlkorper (size_t l_max, double radius, std::array< double, 3 > center) |
| Construct a sphere of radius radius , setting m_max =l_max .
|
|
| Strahlkorper (size_t l_max, size_t m_max, const DataVector &radius_at_collocation_points, std::array< double, 3 > center) |
| Construct a Strahlkorper from a DataVector containing the radius at the collocation points. More...
|
|
| Strahlkorper (size_t l_max, size_t m_max, const ModalVector &spectral_coefficients, std::array< double, 3 > center) |
| Construct a Strahlkorper from a ModalVector containing the spectral coefficients. More...
|
|
template<typename OtherFrame > |
| Strahlkorper (const Strahlkorper< OtherFrame > &another_strahlkorper) |
| Copies a Strahlkorper from another frame into this Strahlkorper. More...
|
|
template<typename OtherFrame > |
| Strahlkorper (size_t l_max, size_t m_max, const Strahlkorper< OtherFrame > &another_strahlkorper) |
| Prolong or restrict another surface to the given l_max and m_max . More...
|
|
template<typename OtherFrame > |
| Strahlkorper (DataVector coefs, const Strahlkorper< OtherFrame > &another_strahlkorper) |
| Construct a Strahlkorper from another Strahlkorper, but explicitly specifying the coefficients. Here coefficients are in the same storage scheme as the coefficients() member function returns. More...
|
|
void | pup (PUP::er &p) |
| Serialization for Charm++.
|
|
const DataVector & | coefficients () const |
|
DataVector & | coefficients () |
|
const std::array< double, 3 > & | expansion_center () const |
| Point about which the spectral basis of the Strahlkorper is expanded. The center is given in the frame in which the Strahlkorper is defined. This center must be somewhere inside the Strahlkorper, but in principle it can be anywhere. See physical_center() for a different measure.
|
|
std::array< double, 3 > | physical_center () const |
| Approximate physical center (determined by coefficients) Implementation of Eqs. (38)-(40) in [91].
|
|
double | average_radius () const |
| Average radius of the surface (determined by coefficient)
|
|
size_t | l_max () const |
| Maximum in decomposition.
|
|
size_t | m_max () const |
| Maximum in decomposition.
|
|
double | radius (double theta, double phi) const |
| Radius at a particular angle . This is inefficient if done at multiple points many times. See ylm::Spherepack for alternative ways of computing this.
|
|
bool | point_is_contained (const std::array< double, 3 > &x) const |
| Determine if a point x is contained inside the surface. The point must be given in Cartesian coordinates in the frame in which the Strahlkorper is defined. This is inefficient if done at multiple points many times.
|
|
const ylm::Spherepack & | ylm_spherepack () const |
|