LORENE
|
Finite-difference array intended to store field values. More...
#include <tbl_val.h>
Public Member Functions | |
Tbl_val (const Grille_val *) | |
Constructor from a 3D grid. More... | |
Tbl_val (const Grille_val *, FILE *) | |
Constructor from a file (see sauve(FILE*) ) More... | |
Tbl_val (const Tbl_val &) | |
Copy constructor. More... | |
~Tbl_val () | |
Destructor. More... | |
void | operator= (const Tbl_val &) |
Assignment to another Tbl_val . More... | |
void | operator= (double) |
Assignment to a double . More... | |
void | operator= (int) |
Assignment to a int . More... | |
void | set_etat_nondef () |
Sets the logical state to ETATNONDEF (undefined). More... | |
void | set_etat_zero () |
Sets the logical state to ETATZERO (zero). More... | |
void | set_etat_qcq () |
Sets the logical state to ETATQCQ (ordinary state). More... | |
void | append_array (double *t_in) |
Appends an array of doubles as the main array t of this (DO NOT use it, unless you REALLY know how it works). More... | |
void | annule_hard () |
Sets the Tbl_val to zero in a hard way. More... | |
double & | set (int i) |
Read/write of a particular element (index i ) (1D case) More... | |
double & | set_zri (int i) |
Read/write of a particular element on the interface (index i ) (1D case) More... | |
double | operator() (int i) const |
Read-only of a particular element (index i ) (1D case) More... | |
double | get_zri (int i) const |
Read-only of a particular element on the interface (index i ) (1D case) More... | |
double & | set (int j, int i) |
Read/write of a particular element (index (j,i) ) (2D case) More... | |
double & | set_xti (int j, int i) |
Read/write of a particular element on the x (or ) interface (index (j,i) ) (2D case) More... | |
double & | set_zri (int j, int i) |
Read/write of a particular element on the z (or r) interface (index (j,i) ) (2D case) More... | |
double | operator() (int j, int i) const |
Read-only of a particular element (index (j,i) ) (2D case) More... | |
double | get_xti (int j, int i) const |
Read-only of a particular element on the x (or ) interface (index (j,i) ) (2D case) More... | |
double | get_zri (int j, int i) const |
Read-only of a particular element on the z (or r) interface (index (j,i) ) (2D case) More... | |
double & | set (int k, int j, int i) |
Read/write of a particular element (index (k,j,i) ) (3D case) More... | |
double & | set_ypi (int k, int j, int i) |
Read/write of a particular element on the y (or ) interface (index (k,j,i) ) (3D case) More... | |
double & | set_xti (int k, int j, int i) |
Read/write of a particular element on the x (or ) interface (index (k,j,i) ) (3D case) More... | |
double & | set_zri (int k, int j, int i) |
Read/write of a particular element on the z (or r) interface (index (k,j,i) ) (3D case) More... | |
double | operator() (int k, int j, int i) const |
Read-only of a particular element (index (k,j,i) ) (3D case) More... | |
double | get_ypi (int k, int j, int i) const |
Read-only of a particular element on the y (or ) interface (index (k,j,i) ) (3D case) More... | |
double | get_xti (int k, int j, int i) const |
Read-only of a particular element on the x (or ) interface (index (k,j,i) ) (3D case) More... | |
double | get_zri (int k, int j, int i) const |
Read-only of a particular element on the z (or r) interface (index (k,j,i) ) (3D case) More... | |
int | get_etat () const |
Gives the logical state. More... | |
int | get_taille () const |
Gives the size of the node array (including the hidden cells) More... | |
int | get_taille_i (int i) const |
Gives the size of the interface arrays (including the hidden cells) More... | |
int | get_ndim () const |
Gives the number of dimensions (ie dim->ndim ) More... | |
int | get_dim (int i) const |
Gives the i th dimension (ie dim->dim [i] , without hidden cells) More... | |
const Grille_val * | get_grille () const |
Returns a pointer on the grid on which the Tbl_val is defined. More... | |
void | sauve (FILE *) const |
Save in a file. More... | |
void | affiche_seuil (ostream &ostr, int precision=4, double threshold=1.e-7) const |
Prints only the values greater than a given threshold. More... | |
void | operator+= (const Tbl_val &) |
Addition of a Tbl_val to this . More... | |
void | operator+= (double) |
Addition of a double to this . More... | |
void | operator-= (const Tbl_val &) |
Subtraction of a Tbl_val to this . More... | |
void | operator-= (double) |
Subtraction of a double to this . More... | |
void | operator*= (const Tbl_val &) |
Multiplication of this by a Tbl_val . More... | |
void | operator*= (double) |
Multiplication of this by a double . More... | |
void | operator/= (const Tbl_val &) |
Division of this by a Tbl_val . More... | |
void | operator/= (double) |
Division of this by a double . More... | |
Scalar | to_spectral (const Map &map, const int lmax, const int lmin=0, int type_inter=2) const |
Interpolation from a Tbl_val to a Scalar . More... | |
void | from_spectral (const Scalar &meudon, int lmax, int lmin=0, bool interfr=false, bool interft=false) |
Interpolation from a Scalar to a Tbl_val (spectral summation). More... | |
void | smooth_atmosphere (double atmosphere_thr) |
Public Attributes | |
double * | t |
The array of double at the nodes. More... | |
double * | tzri |
The array at z (or r) interfaces. More... | |
double * | txti |
The array at x (or ) interfaces. More... | |
double * | typi |
The array at y (or ) interfaces. More... | |
Private Member Functions | |
void | del_t () |
Logical destructor: dellocates the memory occupied by the array t and sets the logical state to ETATNONDEF. More... | |
Private Attributes | |
int | etat |
logical state (ETATNONDEF , ETATQCQ or ETATZERO ). More... | |
const Dim_tbl * | dim |
The Dim_tbl giving the dimensions and number of points (without the hidden cells). More... | |
const Grille_val * | gval |
The Grille_val (cartesian or spherical) on which the array is defined. More... | |
Friends | |
ostream & | operator<< (ostream &, const Tbl_val &) |
Display. More... | |
Finite-difference array intended to store field values.
()
Class defined on a cartesian (Gval_cart
) or spherical (Gval_spher
) grid, in order to represent Godunov-type arrays in 1,2 or 3D.
|
explicit |
|
explicit |
Constructor from a file (see sauve(FILE*)
)
Definition at line 125 of file tbl_val.C.
References etat, and Lorene::fread_be().
Lorene::Tbl_val::Tbl_val | ( | const Tbl_val & | tc | ) |
Lorene::Tbl_val::~Tbl_val | ( | ) |
void Lorene::Tbl_val::affiche_seuil | ( | ostream & | ostr, |
int | precision = 4 , |
||
double | threshold = 1.e-7 |
||
) | const |
Prints only the values greater than a given threshold.
ostr | [input] Output stream used for the printing |
precision | [input] Number of printed digits (default: 4) |
threshold | [input] Value above which an array element is printed (default: 1.e-7) |
Definition at line 432 of file tbl_val.C.
References etat, get_dim(), Lorene::Grille_val::get_fantome(), get_ndim(), get_taille(), and gval.
void Lorene::Tbl_val::annule_hard | ( | ) |
Sets the Tbl_val
to zero in a hard way.
1/ Sets the logical state to ETATQCQ
, i.e. to an ordinary state. 2/ Allocates the memory of the double
array t
, and fills it with zeros. NB: this function must be used for debugging purposes only. For other operations, the function set_etat_zero()
must be perferred.
Definition at line 314 of file tbl_val.C.
References etat, get_ndim(), get_taille(), get_taille_i(), t, txti, typi, and tzri.
void Lorene::Tbl_val::append_array | ( | double * | t_in | ) |
|
private |
void Lorene::Tbl_val::from_spectral | ( | const Scalar & | meudon, |
int | lmax, | ||
int | lmin = 0 , |
||
bool | interfr = false , |
||
bool | interft = false |
||
) |
Interpolation from a Scalar
to a Tbl_val
(spectral summation).
The Scalar
is considered only in zones [lmin,lmax[.
meudon | [input] The Scalar from which the interpolation is done |
lmax | [input] index of the outer zone +1 |
lmin | [input] index of the inner zone |
Definition at line 309 of file tbl_val_interp.C.
References Lorene::Scalar::get_etat().
|
inline |
Gives the i
th dimension (ie dim->dim
[i] , without hidden cells)
Definition at line 485 of file tbl_val.h.
References Lorene::Dim_tbl::dim, and dim.
|
inline |
|
inline |
|
inline |
Gives the number of dimensions (ie dim->ndim
)
Definition at line 482 of file tbl_val.h.
References dim, and Lorene::Dim_tbl::ndim.
|
inline |
Gives the size of the node array (including the hidden cells)
Definition at line 462 of file tbl_val.h.
References Lorene::Dim_tbl::dim, dim, Lorene::Grille_val::get_fantome(), gval, and Lorene::Dim_tbl::ndim.
|
inline |
Gives the size of the interface arrays (including the hidden cells)
Definition at line 469 of file tbl_val.h.
References Lorene::Dim_tbl::dim, dim, Lorene::Grille_val::get_fantome(), gval, and Lorene::Dim_tbl::ndim.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
void Lorene::Tbl_val::operator*= | ( | const Tbl_val & | ti | ) |
Multiplication of this
by a Tbl_val
.
Definition at line 794 of file arithm_tbl_val.C.
void Lorene::Tbl_val::operator*= | ( | double | x | ) |
Multiplication of this
by a double
.
Definition at line 827 of file arithm_tbl_val.C.
References etat.
void Lorene::Tbl_val::operator+= | ( | const Tbl_val & | ti | ) |
Addition of a Tbl_val
to this
.
Definition at line 580 of file arithm_tbl_val.C.
void Lorene::Tbl_val::operator+= | ( | double | x | ) |
void Lorene::Tbl_val::operator-= | ( | const Tbl_val & | ti | ) |
Subtraction of a Tbl_val
to this
.
Definition at line 686 of file arithm_tbl_val.C.
void Lorene::Tbl_val::operator-= | ( | double | x | ) |
void Lorene::Tbl_val::operator/= | ( | const Tbl_val & | ti | ) |
Division of this
by a Tbl_val
.
Definition at line 858 of file arithm_tbl_val.C.
void Lorene::Tbl_val::operator/= | ( | double | x | ) |
void Lorene::Tbl_val::operator= | ( | const Tbl_val & | tx | ) |
Assignment to another Tbl_val
.
Definition at line 166 of file tbl_val.C.
References get_etat(), and gval.
void Lorene::Tbl_val::operator= | ( | double | a | ) |
Assignment to a double
.
Definition at line 199 of file tbl_val.C.
References get_taille(), get_taille_i(), set_etat_qcq(), set_etat_zero(), t, txti, typi, and tzri.
void Lorene::Tbl_val::operator= | ( | int | m | ) |
Assignment to a int
.
Definition at line 222 of file tbl_val.C.
References get_taille(), get_taille_i(), set_etat_qcq(), set_etat_zero(), t, txti, typi, and tzri.
void Lorene::Tbl_val::sauve | ( | FILE * | fd | ) | const |
|
inline |
|
inline |
|
inline |
void Lorene::Tbl_val::set_etat_nondef | ( | ) |
void Lorene::Tbl_val::set_etat_qcq | ( | ) |
void Lorene::Tbl_val::set_etat_zero | ( | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Scalar Lorene::Tbl_val::to_spectral | ( | const Map & | map, |
const int | lmax, | ||
const int | lmin = 0 , |
||
int | type_inter = 2 |
||
) | const |
Interpolation from a Tbl_val
to a Scalar
.
The Scalar
is evaluated only in zones [lmin, lmax[.
map | [input] The Mapping to which the Tbl_val is interpolated. The symetries of both grids must be the same (see Mg3d and Grille_val documentation), and the spectral grid (between lmin and lmax-1) must be included in the Godunov one. The number of points in and of the spectral grid may be different/domain. Still, the domain with the highest number of points in (resp. ) must contain the collocation points |
lmax | [input] index of the outer zone +1 |
lmin | [input] index of the inner zone |
type_inter | [input] type of interpolation: \ 0 -> uses the INSMTS routine of second derivative minimization\ 1 -> linear interpolation\ 2 -> parabolic interpolation\ 3 -> spline interpolation (not implemented yet)\ |
Definition at line 97 of file tbl_val_interp.C.
References etat.
|
friend |
|
private |
|
private |
|
private |
The Grille_val
(cartesian or spherical) on which the array is defined.
double* Lorene::Tbl_val::t |
double* Lorene::Tbl_val::txti |
double* Lorene::Tbl_val::typi |
double* Lorene::Tbl_val::tzri |