KADATH
|
A class derived from Tensor
to deal specificaly with objects of valence 1 (and so also 1-forms).
More...
#include <vector.hpp>
Public Member Functions | |
Vector (const Space &sp, int tipe, const Base_tensor &ba) | |
Standard constructor. More... | |
Vector (const Vector &a) | |
Copy constructor. More... | |
Vector (const Space &sp, FILE *ff) | |
Constructor from file. More... | |
Vector (const Tensor &a) | |
Constructor from a Tensor . More... | |
Vector & | operator= (const Vector &) |
Assignment to another Vector . More... | |
Vector & | operator= (const Tensor &) override |
Assignment to a Tensor . More... | |
Vector & | operator= (double) override |
Assignment to a double (the same value for all the components at all the collocation points). More... | |
void | annule_hard () override |
Sets the Tensor to zero (hard version ; no logical state used). More... | |
Scalar & | set (int) |
Read/write access to a component. More... | |
const Scalar & | operator() (int) const |
Readonly access to a component. More... | |
const Scalar & | at (int) const |
Readonly access to a component. More... | |
virtual int | position (const Array< int > &idx) const |
Gives the location of a given component in the array used for storage (Array version). More... | |
virtual int | position (const Index &idx) const |
Gives the location of a given component in the array used for storage (Index version). More... | |
int | get_index_type () const |
Returns the type of the objects (CON or COV) More... | |
virtual Array< int > | indices (int place) const |
Gives the values of the indices corresponding to a location in the array used for storage of the components. More... | |
Scalar & | set (const Array< int > &ind) |
Returns the value of a component (read/write version). More... | |
Scalar & | set (const Index &ind) |
Returns the value of a component (read/write version). More... | |
Scalar & | set () |
Read/write for a Scalar . More... | |
Scalar & | set (int i) |
Returns the value of a component for a tensor of valence 1 (read/write version). More... | |
Scalar & | set (int i1, int i2) |
Returns the value of a component for a tensor of valence 2 (read/write version). More... | |
Scalar & | set (int i1, int i2, int i3) |
Returns the value of a component for a tensor of valence 3 (read/write version). More... | |
Scalar & | set (int i1, int i2, int i3, int i4) |
Returns the value of a component for a tensor of valence 4 (read/write version). More... | |
void | swap (Tensor &) noexcept |
Swap method. More... | |
virtual void | save (FILE *) const |
Saving operator. More... | |
const Param_tensor & | get_parameters () const |
Returns a pointer on the possible additional parameter. More... | |
Param_tensor & | set_parameters () |
Read/write of the parameters. More... | |
void | affect_parameters () |
The function affect_parameters is deprecated and actually does nothing since the parameters are now always stored in order to lower usage of the memory heap. More... | |
bool | is_m_order_affected () const |
Checks whether the additional parameter order is affected (not very used). More... | |
bool | is_m_quant_affected () const |
Checks whether the additional parameter ![]() | |
int & | set_basis (int dd) |
Assigns a new tensorial basis in a given domain. More... | |
Scalar & | set (const Array< int > &ind) |
Returns the value of a component (read/write version). More... | |
Scalar & | set (const Index &ind) |
Returns the value of a component (read/write version). More... | |
Scalar & | set (int i1, int i2) |
Returns the value of a component for a tensor of valence 2 (read/write version). More... | |
Scalar & | set (int i1, int i2, int i3) |
Returns the value of a component for a tensor of valence 3 (read/write version). More... | |
Scalar & | set (int i1, int i2, int i3, int i4) |
Returns the value of a component for a tensor of valence 4 (read/write version). More... | |
void | set_name_ind (int dd, char name) |
Sets the name of one index ; the names must have been affected first. More... | |
char const * | get_name_ind () const |
bool | is_name_affected () const |
Check whether the names of the indices have been affected. More... | |
void | set_name_affected () |
Affects the name of the indices. More... | |
Tensor | do_summation () const |
Does the inner contraction of the Tensor . More... | |
Tensor | do_summation_one_dom (int dd) const |
Does the inner contraction of the Tensor in a given domain. More... | |
Tensor | grad () const |
Computes the flat gradient, in Cartesian coordinates. More... | |
virtual void | std_base () |
Sets the standard spectal bases of decomposition for each component. More... | |
const Space & | get_space () const |
Returns the Space . More... | |
const Base_tensor & | get_basis () const |
Returns the vectorial basis (triad) on which the components are defined. More... | |
int | get_valence () const |
Returns the valence. More... | |
int | get_n_comp () const |
Returns the number of stored components. More... | |
int | get_ndim () const |
Returns the number dimension. More... | |
int | get_index_type (int i) const |
Gives the type (covariant or contravariant) of a given index. More... | |
int & | set_index_type (int i) |
Sets the type of the index number. More... | |
Array< int > & | set_index_type () |
Sets the types of all the indices. More... | |
const Scalar & | operator() (const Array< int > &ind) const |
Returns the value of a component (read only version). More... | |
const Scalar & | operator() (const Index &ind) const |
Returns the value of a component (read only version). More... | |
const Scalar & | operator() () const |
Read only for a Scalar . More... | |
const Scalar & | operator() (int i1, int i2) const |
Returns the value of a component for a tensor of valence 2 (read only version). More... | |
const Scalar & | operator() (int i1, int i2, int i3) const |
Returns the value of a component for a tensor of valence 3 (read only version). More... | |
const Scalar & | operator() (int i1, int i2, int i3, int i4) const |
Returns the value of a component for a tensor of valence 4 (read only version). More... | |
const Scalar & | at (int i1, int i2) const |
Sylvain' stuff. More... | |
void | change_basis_spher_to_cart () |
Changes the tensorial basis from orthonormal spherical to Cartesian. More... | |
void | change_basis_cart_to_spher () |
Changes the tensorial basis from Cartesian to orthonormal spherical. More... | |
void | filter (double tre) |
Sets all the coefficients below a given treshold, to zero (maintaining regularity). More... | |
void | coef () const |
Computes the coefficients. More... | |
void | coef_i () const |
Computes the values in the configuration space. More... | |
void | operator+= (const Tensor &) |
+= Tensor More... | |
void | operator-= (const Tensor &) |
-= Tensor More... | |
void | filter_phi (int dom, int ncf) |
Sets to zero all the coefficients above a given order, for the ![]() Domain . More... | |
Protected Attributes | |
const Space & | espace |
The Space . More... | |
int | ndom |
The number of Domain . More... | |
int | ndim |
The dimension/. More... | |
int | valence |
Valence of the tensor (0 = scalar, 1 = vector, etc...) More... | |
Base_tensor | basis |
Tensorial basis with respect to which the tensor components are defined. More... | |
Array< int > | type_indice |
1D array of integers of size valence containing the type of each index: COV for a covariant one and CON for a contravariant one. More... | |
bool | name_affected |
Indicator that states if the indices have been given names. More... | |
Memory_mapped_array< char > | name_indice |
If the indices haves names they are stored here. More... | |
int | n_comp |
Number of stored components, depending on the symmetry. More... | |
Memory_mapped_array< Scalar * > | cmp |
Array of size n_comp of pointers onto the components. More... | |
Param_tensor | parameters |
Possible additional parameters relevant for the current Tensor . More... | |
int(* | give_place_array )(const Array< int > &, int) |
Pointer on the function that gives the storage location corresponding to a set of indices values. (Array version) More... | |
int(* | give_place_index )(const Index &, int) |
Pointer on the function that gives the storage location corresponding to a set of indices values. (Index version) More... | |
Array< int >(* | give_indices )(int, int, int) |
Pointer on the function that gives the indices corresponding to a give storage location. More... | |
Private Member Functions | |
bool | find_indices (const Tensor &tt, Array< int > &output_ind) const |
Checks whether the current Tensor and tt have compatible indices (i.e. More... | |
A class derived from Tensor
to deal specificaly with objects of valence 1 (and so also 1-forms).
Definition at line 41 of file vector.hpp.
|
inline |
Standard constructor.
sp | : the Space . |
tipe | : the type tensor (COV vs CON). |
ba | : the tensorial basis used. |
Definition at line 49 of file vector.hpp.
|
inline |
Copy constructor.
Definition at line 51 of file vector.hpp.
|
inline |
Constructor from file.
Definition at line 52 of file vector.hpp.
References Kadath::Tensor::valence.
|
inline |
Constructor from a Tensor
.
The Tensor
must be of valence one.
Definition at line 57 of file vector.hpp.
References Kadath::Tensor::valence.
|
inlineinherited |
The function affect_parameters
is deprecated and actually does nothing since the parameters are now always stored in order to lower usage of the memory heap.
Definition at line 320 of file tensor.hpp.
|
inlineoverridevirtual |
Sets the Tensor
to zero (hard version ; no logical state used).
Reimplemented from Kadath::Tensor.
Definition at line 229 of file tensor_impl.hpp.
References Kadath::Tensor::cmp.
|
inlineinherited |
Sylvain' stuff.
Definition at line 164 of file tensor_impl.hpp.
References Kadath::Tensor::operator()().
|
inline |
Readonly access to a component.
Definition at line 249 of file tensor_impl.hpp.
References Kadath::Tensor::operator()().
|
inherited |
Changes the tensorial basis from Cartesian to orthonormal spherical.
Definition at line 489 of file tensor.cpp.
References Kadath::Domain::change_basis_cart_to_spher(), Kadath::Tensor::espace, Kadath::Tensor::get_basis(), Kadath::Space::get_domain(), Kadath::Tensor::get_index_type(), Kadath::Space::get_nbr_domains(), Kadath::Tensor::get_valence(), Kadath::Index::inc(), Kadath::Tensor::set(), Kadath::Tensor::set_basis(), and Kadath::Scalar::set_domain().
|
inherited |
Changes the tensorial basis from orthonormal spherical to Cartesian.
Definition at line 474 of file tensor.cpp.
References Kadath::Domain::change_basis_spher_to_cart(), Kadath::Tensor::espace, Kadath::Tensor::get_basis(), Kadath::Space::get_domain(), Kadath::Tensor::get_index_type(), Kadath::Space::get_nbr_domains(), Kadath::Tensor::get_valence(), Kadath::Index::inc(), Kadath::Tensor::set(), Kadath::Tensor::set_basis(), and Kadath::Scalar::set_domain().
|
inlineinherited |
Computes the coefficients.
Definition at line 193 of file tensor_impl.hpp.
References Kadath::Index::inc().
|
inlineinherited |
Computes the values in the configuration space.
Definition at line 202 of file tensor_impl.hpp.
References Kadath::Index::inc().
|
inherited |
Does the inner contraction of the Tensor
.
It assumes exactly two indices of different types have the same name.
Tensor
(with valence -2). Definition at line 24 of file tensor_calculus.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::espace, Kadath::Tensor::get_n_comp(), Kadath::Space::get_nbr_domains(), Kadath::Index::inc(), Kadath::Tensor::name_affected, Kadath::Tensor::name_indice, Kadath::Tensor::position(), Kadath::Tensor::set(), Kadath::Array< T >::set(), Kadath::Base_spectral::set(), Kadath::Index::set(), Kadath::Val_domain::set_base(), Kadath::Scalar::set_domain(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inherited |
Does the inner contraction of the Tensor
in a given domain.
The values in the other domains are undefined. It assumes exactly two indices of different types have the same name.
dd | : the Domain where the contraction is performed. |
Tensor
(with valence -2). Definition at line 590 of file tensor_math_one_dom.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::espace, Kadath::Tensor::get_n_comp(), Kadath::Index::inc(), Kadath::Tensor::name_affected, Kadath::Tensor::name_indice, Kadath::Tensor::position(), Kadath::Tensor::set(), Kadath::Array< T >::set(), Kadath::Val_domain::set_base(), Kadath::Scalar::set_domain(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inlineinherited |
Sets all the coefficients below a given treshold, to zero (maintaining regularity).
tre | : the threshold. |
Definition at line 221 of file tensor_impl.hpp.
References Kadath::Tensor::espace, Kadath::Domain::filter(), Kadath::Space::get_domain(), and Kadath::Space::get_nbr_domains().
|
inlineinherited |
Sets to zero all the coefficients above a given order, for the coefficients, in a gicen
Domain
.
Takes into account the various Galerkin basis to maintain regularity.
dom | : the Domain where the filter is applied. |
ncf | : the coefficients which index is above this are set to zero. |
Definition at line 211 of file tensor_impl.hpp.
References Kadath::Scalar::filter_phi(), Kadath::Index::inc(), and Kadath::Tensor::set().
|
privateinherited |
Checks whether the current Tensor
and tt
have compatible indices (i.e.
same names and types, possibly in a different order).
tt | : the Tensor used for the comparison. |
output_ind | : if the indices are compatible, it contains the permutation of the indices. |
Definition at line 445 of file tensor.cpp.
References Kadath::Tensor::name_affected, Kadath::Tensor::name_indice, Kadath::Array< T >::set(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inlineinherited |
Returns the vectorial basis (triad) on which the components are defined.
Definition at line 504 of file tensor.hpp.
References Kadath::Tensor::basis.
|
inline |
Returns the type of the objects (CON or COV)
Definition at line 98 of file vector.hpp.
References Kadath::Tensor::type_indice.
|
inlineinherited |
Gives the type (covariant or contravariant) of a given index.
i | : the index number (>=1) |
Definition at line 526 of file tensor.hpp.
References Kadath::Tensor::type_indice.
|
inlineinherited |
Returns the number of stored components.
Definition at line 514 of file tensor.hpp.
References Kadath::Tensor::n_comp.
|
inlineinherited |
Definition at line 424 of file tensor.hpp.
References Kadath::Tensor::name_indice.
|
inlineinherited |
Returns the number dimension.
Definition at line 519 of file tensor.hpp.
References Kadath::Tensor::ndim.
|
inlineinherited |
Returns a pointer on the possible additional parameter.
Definition at line 311 of file tensor.hpp.
References Kadath::Tensor::parameters.
|
inlineinherited |
|
inlineinherited |
|
inherited |
Computes the flat gradient, in Cartesian coordinates.
Definition at line 133 of file tensor_calculus.cpp.
References Kadath::Tensor::basis, Kadath::Scalar::der_abs(), Kadath::Tensor::espace, Kadath::Base_tensor::get_basis(), Kadath::Tensor::indices(), Kadath::Tensor::n_comp, Kadath::Tensor::ndim, Kadath::Tensor::ndom, Kadath::Tensor::operator()(), Kadath::Tensor::set(), Kadath::Array< T >::set(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inlinevirtual |
Gives the values of the indices corresponding to a location in the array used for storage of the components.
pos | : the storage location. |
Reimplemented from Kadath::Tensor.
Definition at line 100 of file vector.hpp.
References Kadath::Tensor::espace, and Kadath::Space::get_ndim().
|
inlineinherited |
Checks whether the additional parameter order is affected (not very used).
Definition at line 323 of file tensor.hpp.
References Kadath::Param_tensor::m_order_affected, and Kadath::Tensor::parameters.
|
inlineinherited |
Checks whether the additional parameter is affected (used for boson stars for instance).
Definition at line 326 of file tensor.hpp.
References Kadath::Param_tensor::m_quant_affected, and Kadath::Tensor::parameters.
|
inlineinherited |
Check whether the names of the indices have been affected.
Definition at line 429 of file tensor.hpp.
References Kadath::Tensor::name_affected.
|
inlineinherited |
Read only for a Scalar
.
Definition at line 110 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, and Kadath::Tensor::valence.
Returns the value of a component (read only version).
ind | Array of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 169 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Array< T >::get_ndim(), Kadath::Array< T >::get_size(), Kadath::Tensor::position(), and Kadath::Tensor::valence.
Returns the value of a component (read only version).
ind | Index of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 177 of file tensor_impl.hpp.
References Kadath::Tensor::operator()(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inlineinherited |
Returns the value of a component for a tensor of valence 2 (read only version).
i1 | value of the first index |
i2 | value of the second index |
(i1,i2) Definition at line 128 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inlineinherited |
Returns the value of a component for a tensor of valence 3 (read only version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
(i1,i2,i3) Definition at line 139 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inlineinherited |
Returns the value of a component for a tensor of valence 4 (read only version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
i4 | value of the fourth index |
(i1,i2,i3,i4) Definition at line 151 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inline |
Readonly access to a component.
Definition at line 244 of file tensor_impl.hpp.
References Kadath::Tensor::cmp.
|
inherited |
+= Tensor
Definition at line 69 of file tensor_math.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Tensor::espace, Kadath::Tensor::find_indices(), Kadath::Tensor::indices(), Kadath::Tensor::n_comp, Kadath::Tensor::name_affected, Kadath::Tensor::position(), Kadath::Tensor::set(), Kadath::Array< T >::set(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inherited |
-= Tensor
Definition at line 105 of file tensor_math.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Tensor::espace, Kadath::Tensor::find_indices(), Kadath::Tensor::indices(), Kadath::Tensor::n_comp, Kadath::Tensor::name_affected, Kadath::Tensor::position(), Kadath::Tensor::set(), Kadath::Array< T >::set(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
Assignment to a Tensor
.
Reimplemented from Kadath::Tensor.
Definition at line 36 of file vector.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Tensor::espace, Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
Assignment to another Vector
.
Definition at line 25 of file vector.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Tensor::espace, and Kadath::Tensor::type_indice.
|
overridevirtual |
Assignment to a double (the same value for all the components at all the collocation points).
Reimplemented from Kadath::Tensor.
Definition at line 51 of file vector.cpp.
References Kadath::Tensor::cmp.
|
inlinevirtual |
Gives the location of a given component in the array used for storage (Array
version).
idx | : values of the indices. |
Reimplemented from Kadath::Tensor.
Definition at line 82 of file vector.hpp.
References Kadath::Tensor::espace, Kadath::Array< T >::get_ndim(), Kadath::Space::get_ndim(), and Kadath::Array< T >::get_size().
|
inlinevirtual |
Gives the location of a given component in the array used for storage (Index
version).
idx | : values of the indices. |
Reimplemented from Kadath::Tensor.
Definition at line 90 of file vector.hpp.
References Kadath::Tensor::ndim.
|
virtualinherited |
Saving operator.
Reimplemented in Kadath::Scalar.
Definition at line 327 of file tensor.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Array< T >::get_size(), Kadath::Tensor::n_comp, Kadath::Base_tensor::save(), Kadath::Array< T >::save(), Kadath::Tensor::type_indice, and Kadath::Tensor::valence.
|
inline |
Read/write for a Scalar
.
Definition at line 364 of file tensor.hpp.
Returns the value of a component (read/write version).
ind | Array of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 91 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Array< T >::get_ndim(), Kadath::Array< T >::get_size(), Kadath::Tensor::position(), and Kadath::Tensor::valence.
|
inline |
Returns the value of a component (read/write version).
ind | Array of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 349 of file tensor_impl.hpp.
Returns the value of a component (read/write version).
ind | 1-D Index of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 101 of file tensor_impl.hpp.
References Kadath::Tensor::set(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inline |
Returns the value of a component (read/write version).
ind | 1-D Index of size valence containing the values of each index specifing the component, with the following storage convention:
|
ind
Definition at line 362 of file tensor_impl.hpp.
|
inline |
Returns the value of a component for a tensor of valence 1 (read/write version).
i | value of the first index |
(i1) Definition at line 375 of file tensor_impl.hpp.
|
inlineinherited |
Returns the value of a component for a tensor of valence 2 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
(i1,i2) Definition at line 46 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inline |
Returns the value of a component for a tensor of valence 2 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
(i1,i2) Definition at line 386 of file tensor_impl.hpp.
|
inlineinherited |
Returns the value of a component for a tensor of valence 3 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
(i1,i2,i3) Definition at line 60 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inline |
Returns the value of a component for a tensor of valence 3 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
(i1,i2,i3) Definition at line 399 of file tensor_impl.hpp.
|
inlineinherited |
Returns the value of a component for a tensor of valence 4 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
i4 | value of the fourth index |
(i1,i2,i3,i4) Definition at line 75 of file tensor_impl.hpp.
References Kadath::Tensor::cmp, Kadath::Tensor::position(), Kadath::Array< T >::set(), and Kadath::Tensor::valence.
|
inline |
Returns the value of a component for a tensor of valence 4 (read/write version).
i1 | value of the first index |
i2 | value of the second index |
i3 | value of the third index |
i4 | value of the fourth index |
(i1,i2,i3,i4) Definition at line 412 of file tensor_impl.hpp.
|
inline |
Read/write access to a component.
Definition at line 239 of file tensor_impl.hpp.
References Kadath::Tensor::cmp.
|
inlineinherited |
Assigns a new tensorial basis in a given domain.
dd | : the index of the Domain . |
Definition at line 331 of file tensor.hpp.
References Kadath::Tensor::basis, and Kadath::Base_tensor::set_basis().
|
inlineinherited |
Sets the types of all the indices.
Definition at line 545 of file tensor.hpp.
References Kadath::Tensor::type_indice.
|
inlineinherited |
Sets the type of the index number.
i | : the index number (>=1) |
Definition at line 538 of file tensor.hpp.
References Kadath::Array< T >::set(), and Kadath::Tensor::type_indice.
|
inlineinherited |
Affects the name of the indices.
They have to be given values afterwards.
Definition at line 435 of file tensor.hpp.
References Kadath::Tensor::name_affected.
|
inlineinherited |
Sets the name of one index ; the names must have been affected first.
dd | : which index ? |
name | : the name. |
Definition at line 186 of file tensor_impl.hpp.
References Kadath::Tensor::name_affected, Kadath::Tensor::name_indice, and Kadath::Tensor::valence.
|
inlineinherited |
Read/write of the parameters.
Definition at line 314 of file tensor.hpp.
References Kadath::Tensor::parameters.
|
virtualinherited |
Sets the standard spectal bases of decomposition for each component.
To be used only with valence
lower than or equal 2.
Reimplemented in Kadath::Scalar.
Definition at line 385 of file tensor.cpp.
References Kadath::Tensor::basis, Kadath::Tensor::cmp, Kadath::Tensor::espace, Kadath::Base_tensor::get_basis(), Kadath::Space::get_domain(), Kadath::Param_tensor::get_m_quant(), Kadath::Tensor::indices(), Kadath::Tensor::is_m_quant_affected(), Kadath::Domain::mult(), Kadath::Tensor::n_comp, Kadath::Tensor::ndom, Kadath::Tensor::parameters, Kadath::Tensor::std_base(), and Kadath::Tensor::valence.
|
noexceptinherited |
Swap method.
Definition at line 270 of file tensor.cpp.
|
protectedinherited |
Tensorial basis with respect to which the tensor components are defined.
Definition at line 163 of file tensor.hpp.
|
protectedinherited |
Array of size n_comp
of pointers onto the components.
Definition at line 179 of file tensor.hpp.
|
protectedinherited |
The Space
.
Definition at line 154 of file tensor.hpp.
|
protectedinherited |
Pointer on the function that gives the indices corresponding to a give storage location.
Definition at line 185 of file tensor.hpp.
|
protectedinherited |
Pointer on the function that gives the storage location corresponding to a set of indices values. (Array
version)
Definition at line 184 of file tensor.hpp.
|
protectedinherited |
Pointer on the function that gives the storage location corresponding to a set of indices values. (Index
version)
Definition at line 185 of file tensor.hpp.
|
protectedinherited |
Number of stored components, depending on the symmetry.
Definition at line 178 of file tensor.hpp.
|
protectedinherited |
Indicator that states if the indices have been given names.
Definition at line 172 of file tensor.hpp.
|
protectedinherited |
If the indices haves names they are stored here.
Each index is associated with a character.
Definition at line 176 of file tensor.hpp.
|
protectedinherited |
The dimension/.
Definition at line 156 of file tensor.hpp.
|
protectedinherited |
The number of Domain
.
Definition at line 155 of file tensor.hpp.
|
protectedinherited |
Possible additional parameters relevant for the current Tensor
.
Definition at line 181 of file tensor.hpp.
|
protectedinherited |
1D array of integers of size valence
containing the type of each index: COV
for a covariant one and CON
for a contravariant one.
Definition at line 170 of file tensor.hpp.
|
protectedinherited |
Valence of the tensor (0 = scalar, 1 = vector, etc...)
Definition at line 157 of file tensor.hpp.