KADATH
|
The Space_critic
; set the space with two critic domains, separated at .
More...
#include <critic.hpp>
Public Member Functions | |
Space_critic (int ttype, double xl, const Dim_array &nbr_inner, const Dim_array &nbr_outer) | |
Standard constructor. More... | |
Space_critic (FILE *) | |
Constructor from a file. More... | |
virtual void | save (FILE *) const |
Saving function. More... | |
void | add_bc_zero (System_of_eqs &syst, const char *eq, int nused=-1, Array< int > **pused=0x0) |
Sets a boundary condition at ![]() | |
void | add_bc_one (System_of_eqs &syst, const char *eq, int nused=-1, Array< int > **pused=0x0) |
Sets a boundary condition at ![]() | |
void | add_eq_zero_mode_center (System_of_eqs &syst, const char *f, int jtarget) |
Adds an equation saying that one coefficient of a field is zero (at ![]() | |
virtual Array< int > | get_indices_matching_non_std (int, int) const |
Gives the number of the other domains, touching a given boundary. More... | |
int | get_ndim () const |
Returns the number of dimensions. More... | |
int | get_nbr_domains () const |
Returns the number of Domains . More... | |
int | get_type_base () const |
Returns the type of basis. More... | |
const Domain * | get_domain (int i) const |
returns a pointer on the domain. More... | |
virtual int | nbr_unknowns_from_variable_domains () const |
Gives the number of unknowns coming from the variable shape of the domain. More... | |
virtual void | affecte_coef_to_variable_domains (int &conte, int cc, Array< int > &doms) const |
The variation of the functions describing the shape of the Domain are affected from the unknowns of the system. More... | |
virtual void | xx_to_ders_variable_domains (const Array< double > &xx, int &conte) const |
Update the vairable domains from a set of values. More... | |
virtual void | xx_to_vars_variable_domains (System_of_eqs *syst, const Array< double > &xx, int &conte) const |
Update the variables of a system, from the variation of the shape of the domains. More... | |
Protected Attributes | |
int | nbr_domains |
Number od Domains . More... | |
int | ndim |
Number of dimensions (should be the same for all the Domains ). More... | |
int | type_base |
Type of basis used (i.e. using either Chebyshev or Legendre polynomials). More... | |
Domain ** | domains |
Pointers on the various Domains . More... | |
The Space_critic
; set the space with two critic domains, separated at .
Definition at line 329 of file critic.hpp.
Kadath::Space_critic::Space_critic | ( | int | ttype, |
double | xl, | ||
const Dim_array & | nbr_inner, | ||
const Dim_array & | nbr_outer | ||
) |
Standard constructor.
ttype | [input] : the type of basis. |
xl | [input] : ![]() |
nbr_inner | [input] : number of points in the inner domain. |
nbr_outer | [input] : number of points in the outer domain. |
Definition at line 27 of file space_critic.cpp.
References Kadath::Space::domains, Kadath::Space::nbr_domains, Kadath::Space::ndim, and Kadath::Space::type_base.
Kadath::Space_critic::Space_critic | ( | FILE * | fd | ) |
Constructor from a file.
Definition at line 40 of file space_critic.cpp.
References Kadath::Space::domains, Kadath::Space::nbr_domains, Kadath::Space::ndim, and Kadath::Space::type_base.
void Kadath::Space_critic::add_bc_one | ( | System_of_eqs & | syst, |
const char * | eq, | ||
int | nused = -1 , |
||
Array< int > ** | pused = 0x0 |
||
) |
Sets a boundary condition at .
syst | : the System_of_eqs . |
eq | : the string describing the boundary condition. |
nused | : number of components of eq to be considered. All the components are used of it is -1. |
pused | : pointer on the indexes of the components to be considered. Not used of nused = -1 . |
Definition at line 29 of file critic_add_eq.cpp.
References Kadath::System_of_eqs::add_eq_bc().
void Kadath::Space_critic::add_bc_zero | ( | System_of_eqs & | syst, |
const char * | eq, | ||
int | nused = -1 , |
||
Array< int > ** | pused = 0x0 |
||
) |
Sets a boundary condition at .
syst | : the System_of_eqs . |
eq | : the string describing the boundary condition. |
nused | : number of components of eq to be considered. All the components are used of it is -1. |
pused | : pointer on the indexes of the components to be considered. Not used of nused = -1 . |
Definition at line 25 of file critic_add_eq.cpp.
References Kadath::System_of_eqs::add_eq_bc().
void Kadath::Space_critic::add_eq_zero_mode_center | ( | System_of_eqs & | syst, |
const char * | f, | ||
int | jtarget | ||
) |
Adds an equation saying that one coefficient of a field is zero (at )
syst | : the System_of_eqs . |
f | : the field |
jtarget | : the index ![]() |
Definition at line 33 of file critic_add_eq.cpp.
References Kadath::System_of_eqs::add_eq_mode(), Kadath::Space::domains, and Kadath::Index::set().
|
inlinevirtualinherited |
The variation of the functions describing the shape of the Domain
are affected from the unknowns of the system.
conte | : current position if the unknowns. |
cc | : position of the unknown to be set. |
doms | : Array containing the index of the variable domains present in this space. |
Reimplemented in Kadath::Space_bin_ns, Kadath::Space_bin_bh, Kadath::Space_bbh, Kadath::Space_polar_adapted, Kadath::Space_adapted_bh, and Kadath::Space_spheric_adapted.
|
inlineinherited |
returns a pointer on the domain.
i | [input] : the index of the domain. |
Definition at line 1385 of file space.hpp.
References Kadath::Space::domains, and Kadath::Space::nbr_domains.
|
virtual |
Gives the number of the other domains, touching a given boundary.
It also gives the name of the boundary, as seen by the other domain.
dom | : the domain considered. |
bound | : the boundary. |
Reimplemented from Kadath::Space.
Definition at line 61 of file space_critic.cpp.
References Kadath::Array< T >::set().
|
inlineinherited |
Returns the number of Domains
.
Definition at line 1375 of file space.hpp.
References Kadath::Space::nbr_domains.
|
inlineinherited |
Returns the number of dimensions.
Definition at line 1373 of file space.hpp.
References Kadath::Space::ndim.
|
inlineinherited |
Returns the type of basis.
Definition at line 1377 of file space.hpp.
References Kadath::Space::type_base.
|
inlinevirtualinherited |
Gives the number of unknowns coming from the variable shape of the domain.
Reimplemented in Kadath::Space_bin_ns, Kadath::Space_bin_bh, Kadath::Space_bbh, Kadath::Space_polar_adapted, Kadath::Space_adapted_bh, and Kadath::Space_spheric_adapted.
|
virtual |
Saving function.
Reimplemented from Kadath::Space.
Definition at line 54 of file space_critic.cpp.
References Kadath::Space::domains, Kadath::Space::ndim, Kadath::Domain::save(), and Kadath::Space::type_base.
|
inlinevirtualinherited |
Update the vairable domains from a set of values.
xx | : set of values used by the affectation |
conte | : current position in the values vector. |
Reimplemented in Kadath::Space_bin_ns, Kadath::Space_bin_bh, Kadath::Space_bbh, Kadath::Space_polar_adapted, Kadath::Space_adapted_bh, and Kadath::Space_spheric_adapted.
|
inlinevirtualinherited |
Update the variables of a system, from the variation of the shape of the domains.
syst | : the System_of_eqs considered. |
xx | : set of values used by the affectation |
conte | : current position in the values vector. |
Reimplemented in Kadath::Space_bin_ns, Kadath::Space_bin_bh, Kadath::Space_bbh, Kadath::Space_polar_adapted, Kadath::Space_adapted_bh, and Kadath::Space_spheric_adapted.
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |