KADATH
|
Class that deals with flat metric. More...
#include <metric.hpp>
Public Member Functions | |
Metric_flat (const Space &sp, const Base_tensor &bb) | |
Standard constructor. More... | |
Metric_flat (const Metric_flat &) | |
Copye constructor. More... | |
virtual void | update () |
Updates the derived quantities (Christoffels etc..) This is done only for the ones that are needed, i.e. More... | |
virtual void | update (int) |
Updates the derived quantities (Christoffels etc..) in a given Domain This is done only for the ones that are needed, i.e. More... | |
virtual void | manipulate_ind (Term_eq &, int) const |
Uses the Metric to manipulate one of the index of a Term_eq (i.e. More... | |
virtual Term_eq | derive_partial (int, char, const Term_eq &) const |
Computes the partial derivative of a Term_eq (assumes Cartesian basis of decomposition). More... | |
virtual Term_eq | derive (int, char, const Term_eq &) const |
Computes the covariant derivative of a Term_eq (assumes Cartesian basis of decomposition). More... | |
Term_eq | derive_with_other (int tder, char indder, const Term_eq &so, const Metric *othermet) const |
Computes the flat covariant derivative. More... | |
virtual void | set_system (System_of_eqs &syst, const char *name) |
Associate the metric to a given system of equations. More... | |
virtual int | give_type (int) const |
Returns the type of tensorial basis of the covariant representation, in a given Domain . More... | |
virtual Term_eq | derive_flat (int typeder, char nameder, const Term_eq &so) const |
Computes the covariant flat derivative of a Term_eq . More... | |
virtual const Metric * | get_background () const |
Returns a pointer on the background metric, if it exists. More... | |
const Term_eq * | give_term (int typemet, int dd) const |
Gives one representation of the metric, in a Domain . More... | |
const Term_eq * | give_christo (int dd) const |
Gives the Christoffel symbols, in a Domain . More... | |
const Term_eq * | give_riemann (int dd) const |
Gives the Riemann tensor, in a Domain . More... | |
const Term_eq * | give_ricci_tensor (int dd) const |
Gives the Ricci tensor, in a Domain . More... | |
const Term_eq * | give_ricci_scalar (int dd) const |
Gives the Ricci scalar, in a Domain . More... | |
const Term_eq * | give_dirac (int dd) const |
Gives the potential of the Dirac gauge, in a Domain . More... | |
const Term_eq * | give_det_cov (int dd) const |
Gives the determinant of the covariant metric, in a Domain . More... | |
Protected Member Functions | |
virtual void | compute_con (int) const |
Computes the contravariant representation, in a given Domain . More... | |
virtual void | compute_cov (int) const |
Computes the covariant representation, in a given Domain . More... | |
virtual void | compute_christo (int) const |
Computes the Christoffel symbols, in a given Domain . More... | |
virtual void | compute_ricci_tensor (int) const |
Computes the Ricci tensor, in a given Domain . More... | |
virtual void | compute_ricci_scalar (int) const |
Computes the Ricci scalar, in a given Domain . More... | |
virtual void | compute_riemann (int) const |
Computes the Riemann tensor, in a given Domain . More... | |
virtual void | compute_dirac (int) const |
Computes the Dirac gauge term, in a given Domain . More... | |
virtual void | compute_det_cov (int) const |
Computes the determinant of the covariant representation, in a given Domain . More... | |
Protected Attributes | |
const Base_tensor & | basis |
The tensorial basis used. More... | |
const Space & | espace |
The associated Space . More... | |
const System_of_eqs * | syst |
Pointer of the system of equations where the metric is used (only one for now). More... | |
MMPtr_array< Term_eq > | p_met_cov |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_met_con |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_christo |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_riemann |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_ricci_tensor |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_ricci_scalar |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_dirac |
Array of pointers on various Term_eq . More... | |
MMPtr_array< Term_eq > | p_det_cov |
Array of pointers on various Term_eq . More... | |
int | type_tensor |
States if one works in the CON or COV representation. More... | |
Private Member Functions | |
Term_eq | derive_partial_spher (int tder, char indder, const Term_eq &so) const |
Computes the partial derivative part of the covariant derivative, in orthonormal spherical coordinates. More... | |
Term_eq | derive_partial_cart (int tder, char indder, const Term_eq &so) const |
Computes the partial derivative part of the covariant derivative, in Cartesian coordinates. More... | |
Term_eq | derive_partial_mtz (int tder, char indder, const Term_eq &so) const |
Computes the partial derivative part of the covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature. More... | |
Term_eq | derive_spher (int tder, char indder, const Term_eq &so) const |
Computes the flat covariant derivative, in orthonormal spherical coordinates. More... | |
Term_eq | derive_cart (int tder, char indder, const Term_eq &so) const |
Computes the flat covariant derivative, in Cartesian coordinates. More... | |
Term_eq | derive_mtz (int tder, char indder, const Term_eq &so) const |
Computes the flat covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature. More... | |
Term_eq | derive_with_other_spher (int tder, char indder, const Term_eq &so, const Metric *othermet) const |
Computes the flat covariant derivative, in orthonormal spherical coordinates. More... | |
Term_eq | derive_with_other_mtz (int tder, char indder, const Term_eq &so, const Metric *othermet) const |
Computes the flat covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature. More... | |
Term_eq | derive_with_other_cart (int tder, char indder, const Term_eq &so, const Metric *othermet) const |
Computes the flat covariant derivative, in Cartesian coordinates. More... | |
Class that deals with flat metric.
Definition at line 222 of file metric.hpp.
Kadath::Metric_flat::Metric_flat | ( | const Space & | sp, |
const Base_tensor & | bb | ||
) |
Standard constructor.
sp | : the associated Space . |
bb | : the tensorial basis. |
Definition at line 30 of file metric_flat.cpp.
Kadath::Metric_flat::Metric_flat | ( | const Metric_flat & | so | ) |
Copye constructor.
Definition at line 33 of file metric_flat.cpp.
|
protectedvirtual |
Computes the Christoffel symbols, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 77 of file metric_flat.cpp.
|
protectedvirtual |
Computes the contravariant representation, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 63 of file metric_flat.cpp.
References basis, Kadath::Metric::espace, Kadath::Space::get_ndim(), Kadath::Metric::p_met_con, Kadath::Tensor::set(), Kadath::Scalar::set_domain(), and Kadath::Tensor::std_base().
|
protectedvirtual |
Computes the covariant representation, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 44 of file metric_flat.cpp.
References basis, Kadath::Metric::espace, Kadath::Space::get_ndim(), Kadath::Metric::p_met_cov, Kadath::Tensor::set(), Kadath::Scalar::set_domain(), and Kadath::Tensor::std_base().
|
protectedvirtualinherited |
Computes the determinant of the covariant representation, in a given Domain
.
Reimplemented in Kadath::Metric_harmonic.
Definition at line 750 of file metric.cpp.
|
protectedvirtualinherited |
Computes the Dirac gauge term, in a given Domain
.
Reimplemented in Kadath::Metric_conf, and Kadath::Metric_general.
Definition at line 745 of file metric.cpp.
|
protectedvirtual |
Computes the Ricci scalar, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 113 of file metric_flat.cpp.
References basis, Kadath::Metric::espace, Kadath::Base_tensor::get_basis(), Kadath::Space::get_domain(), Kadath::Domain::get_radius(), Kadath::Metric::p_ricci_scalar, Kadath::Scalar::set_domain(), and Kadath::Scalar::std_base().
|
protectedvirtual |
Computes the Ricci tensor, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 82 of file metric_flat.cpp.
References Kadath::Scalar::annule_hard(), basis, Kadath::Metric::espace, Kadath::Base_tensor::get_basis(), Kadath::Space::get_domain(), Kadath::Domain::get_radius(), Kadath::Metric::p_ricci_tensor, Kadath::Tensor::set(), Kadath::Scalar::set_domain(), and Kadath::Tensor::std_base().
|
protectedvirtualinherited |
Computes the Riemann tensor, in a given Domain
.
Reimplemented in Kadath::Metric_nophi_AADS, Kadath::Metric_nophi, Kadath::Metric_cfc, Kadath::Metric_conf_factor, Kadath::Metric_conf, Kadath::Metric_general, and Kadath::Metric_ADS.
Definition at line 476 of file metric.cpp.
References Kadath::Metric::compute_christo(), Kadath::Val_domain::der_abs(), Kadath::Metric::espace, Kadath::Space::get_domain(), Kadath::Space::get_ndim(), Kadath::Index::inc(), Kadath::Metric::p_christo, Kadath::Metric::p_met_con, Kadath::Metric::p_met_cov, Kadath::Metric::p_riemann, Kadath::Tensor::set(), Kadath::Array< T >::set(), and Kadath::Scalar::set_domain().
Computes the covariant derivative of a Term_eq
(assumes Cartesian basis of decomposition).
The index corresponding to the derivation is given a name. If need be inner summation is performed.
typeder | : the result is either ![]() ![]() |
nameder | : the name given as the derivation index. |
so | : the Term_eq to be derived. |
Reimplemented from Kadath::Metric.
Definition at line 422 of file metric_flat.cpp.
References basis, compute_con(), compute_cov(), derive_cart(), derive_mtz(), derive_spher(), Kadath::Base_tensor::get_basis(), Kadath::Term_eq::get_dom(), Kadath::Term_eq::get_type_data(), Kadath::Metric::p_met_con, and Kadath::Metric::p_met_cov.
|
private |
Computes the flat covariant derivative, in Cartesian coordinates.
If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 315 of file metric_flat.cpp.
References derive_partial().
|
virtualinherited |
Computes the covariant flat derivative of a Term_eq
.
The index corresponding to the derivation is given a name. If need be inner summation is performed.
typeder | : the result is either ![]() ![]() |
nameder | : the name given as the derivation index. |
so | : the Term_eq to be derived. |
Reimplemented in Kadath::Metric_nophi_AADS, Kadath::Metric_nophi, Kadath::Metric_cfc, Kadath::Metric_conf_factor, Kadath::Metric_conf, and Kadath::Metric_general.
Definition at line 402 of file metric.cpp.
Computes the flat covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature.
If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 370 of file metric_flat.cpp.
References Kadath::Domain::connection_mtz(), Kadath::Term_eq::der_t, derive_partial(), Kadath::Tensor::do_summation_one_dom(), Kadath::Metric::espace, Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_name_ind(), Kadath::Tensor::get_valence(), Kadath::Tensor::is_name_affected(), manipulate_ind(), Kadath::Tensor::set_name_affected(), Kadath::Tensor::set_name_ind(), and Kadath::Term_eq::val_t.
|
virtual |
Computes the partial derivative of a Term_eq
(assumes Cartesian basis of decomposition).
The index corresponding to the derivation is given a name. If need be inner summation is performed.
typeder | : the result is either ![]() ![]() |
nameder | : the name given as the derivation index. |
so | : the Term_eq to be derived. |
Reimplemented from Kadath::Metric.
Definition at line 287 of file metric_flat.cpp.
References basis, compute_con(), compute_cov(), derive_partial_cart(), derive_partial_mtz(), derive_partial_spher(), Kadath::Base_tensor::get_basis(), Kadath::Term_eq::get_dom(), Kadath::Term_eq::get_type_data(), Kadath::Metric::p_met_con, and Kadath::Metric::p_met_cov.
|
private |
Computes the partial derivative part of the covariant derivative, in Cartesian coordinates.
If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 148 of file metric_flat.cpp.
References Kadath::Term_eq::der_t, Kadath::Tensor::do_summation_one_dom(), Kadath::Metric::espace, Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_name_ind(), Kadath::Tensor::get_valence(), Kadath::Tensor::is_name_affected(), manipulate_ind(), Kadath::Domain::partial_cart(), Kadath::Tensor::set_name_affected(), Kadath::Tensor::set_name_ind(), and Kadath::Term_eq::val_t.
|
private |
Computes the partial derivative part of the covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature.
The result is . If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 240 of file metric_flat.cpp.
References Kadath::Term_eq::der_t, Kadath::Tensor::do_summation_one_dom(), Kadath::Metric::espace, Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_name_ind(), Kadath::Tensor::get_valence(), Kadath::Tensor::is_name_affected(), manipulate_ind(), Kadath::Domain::partial_mtz(), Kadath::Tensor::set_name_affected(), Kadath::Tensor::set_name_ind(), and Kadath::Term_eq::val_t.
|
private |
Computes the partial derivative part of the covariant derivative, in orthonormal spherical coordinates.
The result is . If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 195 of file metric_flat.cpp.
References Kadath::Term_eq::der_t, Kadath::Tensor::do_summation_one_dom(), Kadath::Metric::espace, Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_name_ind(), Kadath::Tensor::get_valence(), Kadath::Tensor::is_name_affected(), manipulate_ind(), Kadath::Domain::partial_spher(), Kadath::Tensor::set_name_affected(), Kadath::Tensor::set_name_ind(), and Kadath::Term_eq::val_t.
|
private |
Computes the flat covariant derivative, in orthonormal spherical coordinates.
If need be inner summation of the result is performed and index manipulated.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
Term_eq
. Definition at line 319 of file metric_flat.cpp.
References Kadath::Domain::connection_spher(), Kadath::Term_eq::der_t, derive_partial(), Kadath::Tensor::do_summation_one_dom(), Kadath::Metric::espace, Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_name_ind(), Kadath::Tensor::get_valence(), Kadath::Tensor::is_name_affected(), manipulate_ind(), Kadath::Tensor::set_name_affected(), Kadath::Tensor::set_name_ind(), and Kadath::Term_eq::val_t.
Term_eq Kadath::Metric_flat::derive_with_other | ( | int | tder, |
char | indder, | ||
const Term_eq & | so, | ||
const Metric * | othermet | ||
) | const |
Computes the flat covariant derivative.
If need be inner summation of the result is performed. If the CON derivative is asked for, the index is NOT manipulated by the flat metric but by an arbitrary one.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
othermet | : pointer on the Metric used for index manipulation. |
Term_eq
. Definition at line 470 of file metric_flat.cpp.
References basis, compute_con(), compute_cov(), derive_with_other_cart(), derive_with_other_mtz(), derive_with_other_spher(), Kadath::Base_tensor::get_basis(), Kadath::Term_eq::get_dom(), Kadath::Term_eq::get_type_data(), Kadath::Metric::p_met_con, and Kadath::Metric::p_met_cov.
|
private |
Computes the flat covariant derivative, in Cartesian coordinates.
If need be inner summation of the result is performed. If the CON derivative is asked for, the index is NOT manipulated by the flat metric but by an arbitrary one.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
othermet | : pointer on the Metric used for index manipulation. |
Term_eq
. Definition at line 450 of file metric_flat.cpp.
References Kadath::Domain::derive_flat_cart(), Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_space(), and Kadath::Term_eq::val_t.
|
private |
Computes the flat covariant derivative, in orthonormal coordinates where the constant radii sections have a negative curvature.
If need be inner summation of the result is performed. If the CON derivative is asked for, the index is NOT manipulated by the flat metric but by an arbitrary one.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
othermet | : pointer on the Metric used for index manipulation. |
Term_eq
. Definition at line 463 of file metric_flat.cpp.
References Kadath::Domain::derive_flat_mtz(), Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_space(), and Kadath::Term_eq::val_t.
|
private |
Computes the flat covariant derivative, in orthonormal spherical coordinates.
If need be inner summation of the result is performed. If the CON derivative is asked for, the index is NOT manipulated by the flat metric but by an arbitrary one.
tder | : type of the result (COV or CON) |
indder | : name of the index corresponding to the derivative. |
so | : the field to be derived. |
othermet | : pointer on the Metric used for index manipulation. |
Term_eq
. Definition at line 456 of file metric_flat.cpp.
References Kadath::Domain::derive_flat_spher(), Kadath::Term_eq::get_dom(), Kadath::Space::get_domain(), Kadath::Tensor::get_space(), and Kadath::Term_eq::val_t.
|
virtualinherited |
Returns a pointer on the background metric, if it exists.
Reimplemented in Kadath::Metric_AADS.
Definition at line 167 of file metric.cpp.
|
inherited |
Gives the Christoffel symbols, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 124 of file metric.cpp.
References Kadath::Metric::compute_christo(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_christo.
|
inherited |
Gives the determinant of the covariant metric, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 159 of file metric.cpp.
References Kadath::Metric::compute_det_cov(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_det_cov.
|
inherited |
Gives the potential of the Dirac gauge, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 152 of file metric.cpp.
References Kadath::Metric::compute_dirac(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_dirac.
|
inherited |
Gives the Ricci scalar, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 145 of file metric.cpp.
References Kadath::Metric::compute_ricci_scalar(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_ricci_scalar.
|
inherited |
Gives the Ricci tensor, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 138 of file metric.cpp.
References Kadath::Metric::compute_ricci_tensor(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_ricci_tensor.
|
inherited |
Gives the Riemann tensor, in a Domain
.
This is the Term_eq
version.
dd | : in which Domain . |
Term_eq
). Definition at line 131 of file metric.cpp.
References Kadath::Metric::compute_riemann(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), and Kadath::Metric::p_riemann.
|
inherited |
Gives one representation of the metric, in a Domain
.
This is the Term_eq
version.
typemet | : CON or COV. |
dd | : in which Domain . |
Term_eq
). Definition at line 103 of file metric.cpp.
References Kadath::Metric::compute_con(), Kadath::Metric::compute_cov(), Kadath::Metric::espace, Kadath::Space::get_nbr_domains(), Kadath::Metric::p_met_con, and Kadath::Metric::p_met_cov.
|
virtual |
Returns the type of tensorial basis of the covariant representation, in a given Domain
.
Reimplemented from Kadath::Metric.
Definition at line 59 of file metric_flat.cpp.
References basis, and Kadath::Base_tensor::get_basis().
|
virtual |
Uses the Metric
to manipulate one of the index of a Term_eq
(i.e.
moves the index up or down)
so | : the Term_eq to be manipulated. |
ind | : index number. |
Reimplemented from Kadath::Metric.
Definition at line 140 of file metric_flat.cpp.
References Kadath::Term_eq::set_der_t(), and Kadath::Term_eq::set_val_t().
|
virtual |
Associate the metric to a given system of equations.
syst | : the System_of_eqs . |
name | : name by which the metric will be known in the system (like "g", "f"...) |
Definition at line 499 of file metric_flat.cpp.
References Kadath::System_of_eqs::met, Kadath::System_of_eqs::name_met, and Kadath::Metric::syst.
|
virtual |
Updates the derived quantities (Christoffels etc..) This is done only for the ones that are needed, i.e.
for the ones that have already been computed.
Reimplemented from Kadath::Metric.
Definition at line 36 of file metric_flat.cpp.
|
virtual |
Updates the derived quantities (Christoffels etc..) in a given Domain
This is done only for the ones that are needed, i.e.
for the ones that have already been computed.
dd | : the index of the Domain . |
Reimplemented from Kadath::Metric.
Definition at line 40 of file metric_flat.cpp.
|
protected |
The tensorial basis used.
Definition at line 225 of file metric.hpp.
|
protectedinherited |
The associated Space
.
Definition at line 42 of file metric.hpp.
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto one component of the Christoffel symbols, in a given Domain
.
Definition at line 60 of file metric.hpp.
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto determinant of the covariant representation, in a given Domain
.
Definition at line 85 of file metric.hpp.
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto the potential of the Dirac gauge, in a given Domain
.
Definition at line 80 of file metric.hpp.
|
mutableprotectedinherited |
|
mutableprotectedinherited |
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto the Ricci scalar, in a given Domain
.
Definition at line 75 of file metric.hpp.
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto one component of the Ricci tensor, in a given Domain
.
Definition at line 70 of file metric.hpp.
|
mutableprotectedinherited |
Array of pointers on various Term_eq
.
Each one points onto one component of the Riemann tensor, in a given Domain
.
Definition at line 65 of file metric.hpp.
|
protectedinherited |
Pointer of the system of equations where the metric is used (only one for now).
Definition at line 44 of file metric.hpp.
|
protectedinherited |
States if one works in the CON or COV representation.
Definition at line 86 of file metric.hpp.