ASPECT
|
Public Member Functions | |
EllipsoidalChunkGeometry (const InitialTopographyModel::Interface< dim > &topography, const double para_semi_major_axis_a, const double para_eccentricity, const double para_semi_minor_axis_b, const double para_bottom_depth, const std::vector< Point< 2 >> ¶_corners) | |
EllipsoidalChunkGeometry (const EllipsoidalChunkGeometry &other)=default | |
Point< 3 > | pull_back (const Point< 3 > &space_point) const override |
virtual Point< 2 > | pull_back (const Point< 2 > &space_point) const |
Point< 3 > | push_forward (const Point< 3 > &chart_point) const override |
Point< 3 > | pull_back_ellipsoid (const Point< 3 > &x, const double semi_major_axis_a, const double eccentricity) const |
Point< 3 > | push_forward_ellipsoid (const Point< 3 > &phi_theta_d, const double semi_major_axis_a, const double eccentricity) const |
std::unique_ptr< Manifold< dim, 3 > > | clone () const override |
Private Member Functions | |
Point< 3 > | push_forward_topography (const Point< 3 > &phi_theta_d_hat) const |
Point< 3 > | pull_back_topography (const Point< 3 > &phi_theta_d) const |
Private Attributes | |
const InitialTopographyModel::Interface< dim > * | topography |
const double | semi_major_axis_a |
const double | eccentricity |
const double | semi_minor_axis_b |
const double | bottom_depth |
const std::vector< Point< 2 > > | corners |
A class which describes the manifold.
Definition at line 43 of file ellipsoidal_chunk.h.
aspect::GeometryModel::internal::EllipsoidalChunkGeometry< dim >::EllipsoidalChunkGeometry | ( | const InitialTopographyModel::Interface< dim > & | topography, |
const double | para_semi_major_axis_a, | ||
const double | para_eccentricity, | ||
const double | para_semi_minor_axis_b, | ||
const double | para_bottom_depth, | ||
const std::vector< Point< 2 >> & | para_corners | ||
) |
Constructor
|
default |
Copy constructor
|
override |
The deal.ii pull back function in 3d. This function receives cartesian points x,y and z and returns spherical/ellipsoidal coordinates phi, theta and depth, also accounting for the topography.
|
virtual |
The deal.ii pull back function in 2d. This function should not be used, until the TODO in the cc file has been fixed.
|
override |
The deal.ii push forward function in 3d. This function receives spherical/ellipsoidal coordinates phi, theta and depth and returns cartesian points x,y and z, also accounting for the topography.
Point<3> aspect::GeometryModel::internal::EllipsoidalChunkGeometry< dim >::pull_back_ellipsoid | ( | const Point< 3 > & | x, |
const double | semi_major_axis_a, | ||
const double | eccentricity | ||
) | const |
This function does the actual pull back from the ellipsoid. For the equation details, please see deal.ii step 53.
Point<3> aspect::GeometryModel::internal::EllipsoidalChunkGeometry< dim >::push_forward_ellipsoid | ( | const Point< 3 > & | phi_theta_d, |
const double | semi_major_axis_a, | ||
const double | eccentricity | ||
) | const |
This function does the actual push forward to the ellipsoid. For the equation details, please see deal.ii step 53.
|
override |
Return a copy of this manifold.
|
private |
This function adds topography to the cartesian coordinates. For the equation details, please see deal.ii step 53.
|
private |
This function removes topography from the cartesian coordinates. For the equation details, please see deal.ii step 53.
|
private |
A pointer to the topography model.
Definition at line 121 of file ellipsoidal_chunk.h.
|
private |
Definition at line 123 of file ellipsoidal_chunk.h.
|
private |
Definition at line 124 of file ellipsoidal_chunk.h.
|
private |
Definition at line 125 of file ellipsoidal_chunk.h.
|
private |
Definition at line 126 of file ellipsoidal_chunk.h.
|
private |
Definition at line 127 of file ellipsoidal_chunk.h.