TrioCFD 1.9.9_beta
TrioCFD documentation
Loading...
Searching...
No Matches
IJK_Ghost_Fluid_Fields Class Reference

#include <IJK_Ghost_Fluid_Fields.h>

Inheritance diagram for IJK_Ghost_Fluid_Fields:
[legend]
Collaboration diagram for IJK_Ghost_Fluid_Fields:
[legend]

Public Member Functions

void associer (const Probleme_FTD_IJK_base &ijk_ft)
void initialize (const Domaine_IJK &splitting)
bool has_champ (const Motcle &nom) const override
bool has_champ (const Motcle &nom, OBS_PTR(Champ_base)&ref_champ) const
bool has_champ_vectoriel (const Motcle &nom) const override
const IJK_Field_double & get_IJK_field (const Motcle &nom) override
const IJK_Field_vector3_double & get_IJK_field_vector (const Motcle &nom) override
void get_noms_champs_postraitables (Noms &noms, Option opt=NONE) const
void compute_eulerian_distance ()
void enforce_zero_value_eulerian_distance ()
void enforce_distance_curvature_values_for_post_processings ()
void compute_eulerian_curvature_from_interface ()
void compute_eulerian_curvature ()
void enforce_zero_value_eulerian_curvature ()
void enforce_max_value_eulerian_curvature ()
void reset_field_computations ()
void retrieve_ghost_fluid_params (const int &compute_distance, const int &compute_curvature, const int &n_iter_distance, const int &avoid_gfm_parallel_calls, const IJK_Field_local_double &boundary_flux_kmin, const IJK_Field_local_double &boundary_flux_kmax)
const IJK_Field_double & get_eulerian_distance_ft () const
const IJK_Field_double & get_eulerian_distance_ns () const
const IJK_Field_vector3_double & get_eulerian_normal_vectors_ft () const
const IJK_Field_vector3_double & get_eulerian_facets_barycentre_ft () const
const IJK_Field_vector3_double & get_eulerian_normal_vectors_ns () const
const IJK_Field_vector3_double & get_eulerian_normal_vectors_ns_normed () const
const IJK_Field_vector3_double & get_eulerian_facets_barycentre_ns () const
const IJK_Field_double & get_eulerian_curvature_ft () const
const IJK_Field_double & get_eulerian_curvature_ns () const
const IJK_Field_double & get_eulerian_interfacial_area_ft () const
const IJK_Field_double & get_eulerian_interfacial_area_ns () const
const IJK_Field_double & get_eulerian_rising_velocities () const
const IJK_Field_vector3_int & get_dummy_int_vect () const
const IJK_Field_vector3_double & get_dummy_double_vect () const
const IJK_Field_int & get_dummy_int_field () const
const IJK_Field_double & get_dummy_double_field () const
Public Member Functions inherited from Objet_U
 ~Objet_U () override
 Destructor. Removes the object from the list of objects registered in "memory".
int numero () const
 Returns the index of the object in Memoire::data.
virtual int duplique () const =0
virtual SortieprintOn (Sortie &) const
 Writes the object to an output stream. Virtual method to override.
virtual EntreereadOn (Entree &)
 Reads an Objet_U from an input stream. Virtual method to override.
virtual unsigned taille_memoire () const =0
virtual int est_egal_a (const Objet_U &) const
 Returns 1 if x and *this are the same instance (same memory address).
virtual const Nomle_nom () const
 Returns the name of the Objet_U. Virtual method to override: returns "neant" in this implementation.
virtual void nommer (const Nom &)
 Assigns a name to the Objet_U. Virtual method to override.
virtual int reprendre (Entree &)
 Restores an Objet_U from an input stream. Virtual method to override.
virtual int sauvegarder (Sortie &) const
 Saves an Objet_U to an output stream. Virtual method to override.
int get_object_id () const
 Returns the unique identifier of the object (object_id_).
virtual const Type_infoget_info () const
 Returns type information for the Objet_U.
const Nomque_suis_je () const
 Returns the string identifying the class.
const char * le_type () const
 Returns the type name of the Objet_U.
virtual int change_num (const int *const)
 Changes the internal number of the Objet_U.
virtual int lire_motcle_non_standard (const Motcle &motlu, Entree &is)
 Reads non-simple-type parameters of an Objet_U from an input stream.
virtual int associer_ (Objet_U &)
 Associates the Objet_U with another Objet_U. Virtual method to override.
const Interpreteinterprete () const
Interpreteinterprete ()
Public Member Functions inherited from Process
virtual ~Process ()
Public Member Functions inherited from Champs_compris_IJK_interface
virtual ~Champs_compris_IJK_interface ()

Static Public Member Functions

static void Fill_postprocessable_fields (std::vector< FieldInfo_t > &chps)
Static Public Member Functions inherited from Objet_U
static const Nomnom_du_cas ()
 Returns a constant reference to the case name. This method is static.
static Nomget_set_nom_du_cas ()
 Returns a non-constant reference to the case name (to allow modification). This method is static.
static const Type_infoinfo ()
 Returns type information for the Objet_U (static version).
static const Objet_Uself_cast (const Objet_U &)
 Method added for casting in Python.
static Objet_Uself_cast (Objet_U &)
Static Public Member Functions inherited from Process
static int me ()
 Returns the rank of the local processor in the current communication group. See Comm_Group::rank() and PE_Groups::current_group().
static int nproc ()
 Returns the number of processors in the current group. See Comm_Group::nproc() and PE_Groups::current_group().
static bool is_parallel ()
static void exit (int exit_code=-1)
 Exit routine for TRUST within a Kokkos region.
static double mp_sum (double)
 Computes the sum of x over all processors in the current group.
static float mp_sum (float)
static trustIdType mp_sum (trustIdType)
 Computes the sum of x over all processors in the current group.
static double mp_max (double)
static double mp_min (double)
static int mp_max (int)
 Returns the maximum value of x across all processors in the current group.
static int mp_min (int)
 Returns the minimum value of x across all processors in the current group.
static double mp_sum_as_double (int v)
static trustIdType mppartial_sum (trustIdType i)
 Computes the partial sum of x over processors 0 to me()-1 (returns 0 on processor 0).
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2)
 C++14 compatible mp_sum_for_each: combine multiple mp_sum calls into one collective operation Usage: mp_sum_for_each(a, b); mp_sum_for_each(a, b, c); mp_sum_for_each(a, b, c, d); mp_sum_for_each(a, b, c, d, e); All arguments must be of the same type (double or int) and are modified in place. Supports 2-5 parameters.
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2)
 C++14 compatible mp_max_for_each: combine multiple mp_max calls into one collective operation.
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2)
 C++14 compatible mp_min_for_each: combine multiple mp_min calls into one collective operation.
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename _TYPE_>
static void mp_sum_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
template<typename _TYPE_>
static void mp_max_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
template<typename _TYPE_>
static void mp_min_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
static bool mp_and (bool)
 Computes the logical AND of b across all processors in the current group.
static bool mp_or (bool)
static int check_int_overflow (trustIdType)
static int je_suis_maitre ()
 Returns 1 if on the master processor of the current group (i.e. me() == 0), 0 otherwise.
static KOKKOS_INLINE_FUNCTION void Kokkos_exit (const char *)
 Exit routine for TRUST within a Kokkos region.
static int node_master ()
 Returns 1 if on the NUMA node master processor, 0 otherwise.
static void exit (const Nom &message, int exit_code=-1)
static bool is_sequential ()
static void barrier ()
 Synchronizes all processors in the current group (waits until all processors have reached the barrier).
static void abort ()
 Abort routine for TRUST on a fatal error.
static SortieJournal (int message_level=0)
 Returns a static Sortie object used as an event journal.
static double ram_processeur ()
static void imprimer_ram_totale (int all_process=0)
static bool force_single_file (const int ranks, const Nom &filename)

Protected Member Functions

 OBS_PTR (Probleme_FTD_IJK_base) ref_ijk_ft_
Protected Member Functions inherited from Objet_U
 Objet_U ()
 Default constructor: assigns a unique identifier to the object (object_id_) and registers the object in "memory" by giving it a num_obj number.
 Objet_U (const Objet_U &)
 Copy constructor.
const Objet_Uoperator= (const Objet_U &)
 Assignment operator: does nothing (the number and identifier are preserved).
virtual void set_param (Param &) const

Protected Attributes

IJK_Field_double eulerian_distance_ft_
IJK_Field_double eulerian_distance_ns_
IJK_Field_vector3_double eulerian_normal_vectors_ft_
IJK_Field_vector3_double eulerian_facets_barycentre_ft_
IJK_Field_vector3_double eulerian_normal_vectors_ns_
IJK_Field_vector3_double eulerian_normal_vectors_ns_normed_
IJK_Field_vector3_double eulerian_facets_barycentre_ns_
IJK_Field_vector3_double tmp_old_vector_val_
IJK_Field_vector3_double tmp_new_vector_val_
IJK_Field_int tmp_interf_cells_
IJK_Field_int tmp_propagated_cells_
FixedVector< ArrOfInt, 3 > interf_cells_indices_
FixedVector< ArrOfInt, 3 > gfm_first_cells_indices_
FixedVector< ArrOfInt, 3 > propagated_cells_indices_
IJK_Field_double tmp_old_dist_val_
IJK_Field_double tmp_new_dist_val_
IJK_Field_double tmp_old_curv_val_
IJK_Field_double tmp_new_curv_val_
IJK_Field_double eulerian_curvature_ft_
IJK_Field_double eulerian_curvature_ns_
IJK_Field_double eulerian_interfacial_area_ft_
IJK_Field_double eulerian_interfacial_area_ns_
IJK_Field_double eulerian_rising_velocities_
IJK_Field_vector3_int dummy_int_vect_
IJK_Field_vector3_double dummy_double_vect_
IJK_Field_int dummy_int_field_
IJK_Field_double dummy_double_field_
int compute_distance_ = 1
int compute_curvature_ = 1
int n_iter_distance_ = 8
int avoid_gfm_parallel_calls_ = 0
int use_n_iter_distance_ = 0
int nb_cells_gfm_parallel_calls_ = 2
IJK_Field_local_double boundary_flux_kmin_
IJK_Field_local_double boundary_flux_kmax_
bool has_computed_distance_ = false
bool has_computed_curvature_ = false
Champs_compris_IJK champs_compris_

Additional Inherited Members

Public Types inherited from Champs_compris_IJK_interface
using FieldInfo_t = std::tuple<Motcle, Entity, Nature_du_champ, bool>
Static Public Attributes inherited from Objet_U
static double precision_geom = 1e-10
static constexpr bool HAS_POINTER = false
static int dimension =0
static int format_precision_geom =11
static int axi =0
static int bidim_axi =0
static int DEACTIVATE_SIGINT_CATCH =0
static Type_info info_obj
static bool disable_TU =false
 Flag to disable or not the writing of the .TU files.
static bool stat_per_proc_perf_log =false
 Flag to enable the writing of the statistics detailed per processor in _csv.TU file.
Static Public Attributes inherited from Process
static int exception_sur_exit =0
static int multiple_files =5120

Detailed Description

Definition at line 27 of file IJK_Ghost_Fluid_Fields.h.

Member Function Documentation

◆ associer()

void IJK_Ghost_Fluid_Fields::associer ( const Probleme_FTD_IJK_base & ijk_ft)

Definition at line 42 of file IJK_Ghost_Fluid_Fields.cpp.

◆ compute_eulerian_curvature()

void IJK_Ghost_Fluid_Fields::compute_eulerian_curvature ( )

Definition at line 320 of file IJK_Ghost_Fluid_Fields.cpp.

◆ compute_eulerian_curvature_from_interface()

void IJK_Ghost_Fluid_Fields::compute_eulerian_curvature_from_interface ( )

Definition at line 339 of file IJK_Ghost_Fluid_Fields.cpp.

◆ compute_eulerian_distance()

void IJK_Ghost_Fluid_Fields::compute_eulerian_distance ( )

Definition at line 233 of file IJK_Ghost_Fluid_Fields.cpp.

◆ enforce_distance_curvature_values_for_post_processings()

void IJK_Ghost_Fluid_Fields::enforce_distance_curvature_values_for_post_processings ( )

Definition at line 299 of file IJK_Ghost_Fluid_Fields.cpp.

◆ enforce_max_value_eulerian_curvature()

void IJK_Ghost_Fluid_Fields::enforce_max_value_eulerian_curvature ( )

Definition at line 382 of file IJK_Ghost_Fluid_Fields.cpp.

◆ enforce_zero_value_eulerian_curvature()

void IJK_Ghost_Fluid_Fields::enforce_zero_value_eulerian_curvature ( )

Definition at line 374 of file IJK_Ghost_Fluid_Fields.cpp.

◆ enforce_zero_value_eulerian_distance()

void IJK_Ghost_Fluid_Fields::enforce_zero_value_eulerian_distance ( )

Definition at line 309 of file IJK_Ghost_Fluid_Fields.cpp.

◆ Fill_postprocessable_fields()

void IJK_Ghost_Fluid_Fields::Fill_postprocessable_fields ( std::vector< FieldInfo_t > & chps)
static

Definition at line 128 of file IJK_Ghost_Fluid_Fields.cpp.

◆ get_dummy_double_field()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_dummy_double_field ( ) const
inline

Definition at line 142 of file IJK_Ghost_Fluid_Fields.h.

◆ get_dummy_double_vect()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_dummy_double_vect ( ) const
inline

Definition at line 134 of file IJK_Ghost_Fluid_Fields.h.

◆ get_dummy_int_field()

const IJK_Field_int & IJK_Ghost_Fluid_Fields::get_dummy_int_field ( ) const
inline

Definition at line 138 of file IJK_Ghost_Fluid_Fields.h.

◆ get_dummy_int_vect()

const IJK_Field_vector3_int & IJK_Ghost_Fluid_Fields::get_dummy_int_vect ( ) const
inline

Definition at line 130 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_curvature_ft()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_curvature_ft ( ) const
inline

Definition at line 108 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_curvature_ns()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_curvature_ns ( ) const
inline

Definition at line 112 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_distance_ft()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_distance_ft ( ) const
inline

Definition at line 78 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_distance_ns()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_distance_ns ( ) const
inline

Definition at line 82 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_facets_barycentre_ft()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_eulerian_facets_barycentre_ft ( ) const
inline

Definition at line 91 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_facets_barycentre_ns()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_eulerian_facets_barycentre_ns ( ) const
inline

Definition at line 103 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_interfacial_area_ft()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_interfacial_area_ft ( ) const
inline

Definition at line 116 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_interfacial_area_ns()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_interfacial_area_ns ( ) const
inline

Definition at line 120 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_normal_vectors_ft()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_eulerian_normal_vectors_ft ( ) const
inline

Definition at line 87 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_normal_vectors_ns()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_eulerian_normal_vectors_ns ( ) const
inline

Definition at line 95 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_normal_vectors_ns_normed()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_eulerian_normal_vectors_ns_normed ( ) const
inline

Definition at line 99 of file IJK_Ghost_Fluid_Fields.h.

◆ get_eulerian_rising_velocities()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_eulerian_rising_velocities ( ) const
inline

Definition at line 125 of file IJK_Ghost_Fluid_Fields.h.

◆ get_IJK_field()

const IJK_Field_double & IJK_Ghost_Fluid_Fields::get_IJK_field ( const Motcle & nom)
overridevirtual

Implements Champs_compris_IJK_interface.

Definition at line 161 of file IJK_Ghost_Fluid_Fields.cpp.

◆ get_IJK_field_vector()

const IJK_Field_vector3_double & IJK_Ghost_Fluid_Fields::get_IJK_field_vector ( const Motcle & nom)
overridevirtual

Implements Champs_compris_IJK_interface.

Definition at line 173 of file IJK_Ghost_Fluid_Fields.cpp.

◆ get_noms_champs_postraitables()

void IJK_Ghost_Fluid_Fields::get_noms_champs_postraitables ( Noms & noms,
Option opt = NONE ) const

Definition at line 143 of file IJK_Ghost_Fluid_Fields.cpp.

◆ has_champ() [1/2]

bool IJK_Ghost_Fluid_Fields::has_champ ( const Motcle & nom) const
overridevirtual

Implements Champs_compris_IJK_interface.

Definition at line 151 of file IJK_Ghost_Fluid_Fields.cpp.

◆ has_champ() [2/2]

bool IJK_Ghost_Fluid_Fields::has_champ ( const Motcle & nom,
OBS_PTR(Champ_base)& ref_champ ) const
inline

Definition at line 39 of file IJK_Ghost_Fluid_Fields.h.

◆ has_champ_vectoriel()

bool IJK_Ghost_Fluid_Fields::has_champ_vectoriel ( const Motcle & nom) const
inlineoverridevirtual

Implements Champs_compris_IJK_interface.

Definition at line 40 of file IJK_Ghost_Fluid_Fields.h.

◆ initialize()

void IJK_Ghost_Fluid_Fields::initialize ( const Domaine_IJK & splitting)

Definition at line 47 of file IJK_Ghost_Fluid_Fields.cpp.

◆ OBS_PTR()

IJK_Ghost_Fluid_Fields::OBS_PTR ( Probleme_FTD_IJK_base )
protected

◆ reset_field_computations()

void IJK_Ghost_Fluid_Fields::reset_field_computations ( )
inline

Definition at line 56 of file IJK_Ghost_Fluid_Fields.h.

◆ retrieve_ghost_fluid_params()

void IJK_Ghost_Fluid_Fields::retrieve_ghost_fluid_params ( const int & compute_distance,
const int & compute_curvature,
const int & n_iter_distance,
const int & avoid_gfm_parallel_calls,
const IJK_Field_local_double & boundary_flux_kmin,
const IJK_Field_local_double & boundary_flux_kmax )
inline

Definition at line 61 of file IJK_Ghost_Fluid_Fields.h.

Member Data Documentation

◆ avoid_gfm_parallel_calls_

int IJK_Ghost_Fluid_Fields::avoid_gfm_parallel_calls_ = 0
protected

Definition at line 187 of file IJK_Ghost_Fluid_Fields.h.

◆ boundary_flux_kmax_

IJK_Field_local_double IJK_Ghost_Fluid_Fields::boundary_flux_kmax_
protected

Definition at line 191 of file IJK_Ghost_Fluid_Fields.h.

◆ boundary_flux_kmin_

IJK_Field_local_double IJK_Ghost_Fluid_Fields::boundary_flux_kmin_
protected

Definition at line 190 of file IJK_Ghost_Fluid_Fields.h.

◆ champs_compris_

Champs_compris_IJK IJK_Ghost_Fluid_Fields::champs_compris_
protected

Definition at line 197 of file IJK_Ghost_Fluid_Fields.h.

◆ compute_curvature_

int IJK_Ghost_Fluid_Fields::compute_curvature_ = 1
protected

Definition at line 185 of file IJK_Ghost_Fluid_Fields.h.

◆ compute_distance_

int IJK_Ghost_Fluid_Fields::compute_distance_ = 1
protected

Definition at line 184 of file IJK_Ghost_Fluid_Fields.h.

◆ dummy_double_field_

IJK_Field_double IJK_Ghost_Fluid_Fields::dummy_double_field_
protected

Definition at line 181 of file IJK_Ghost_Fluid_Fields.h.

◆ dummy_double_vect_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::dummy_double_vect_
protected

Definition at line 179 of file IJK_Ghost_Fluid_Fields.h.

◆ dummy_int_field_

IJK_Field_int IJK_Ghost_Fluid_Fields::dummy_int_field_
protected

Definition at line 180 of file IJK_Ghost_Fluid_Fields.h.

◆ dummy_int_vect_

IJK_Field_vector3_int IJK_Ghost_Fluid_Fields::dummy_int_vect_
protected

Definition at line 178 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_curvature_ft_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_curvature_ft_
protected

Definition at line 171 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_curvature_ns_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_curvature_ns_
protected

Definition at line 172 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_distance_ft_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_distance_ft_
protected

Definition at line 148 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_distance_ns_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_distance_ns_
protected

Definition at line 149 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_facets_barycentre_ft_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::eulerian_facets_barycentre_ft_
protected

Definition at line 152 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_facets_barycentre_ns_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::eulerian_facets_barycentre_ns_
protected

Definition at line 155 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_interfacial_area_ft_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_interfacial_area_ft_
protected

Definition at line 173 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_interfacial_area_ns_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_interfacial_area_ns_
protected

Definition at line 174 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_normal_vectors_ft_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::eulerian_normal_vectors_ft_
protected

Definition at line 151 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_normal_vectors_ns_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::eulerian_normal_vectors_ns_
protected

Definition at line 153 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_normal_vectors_ns_normed_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::eulerian_normal_vectors_ns_normed_
protected

Definition at line 154 of file IJK_Ghost_Fluid_Fields.h.

◆ eulerian_rising_velocities_

IJK_Field_double IJK_Ghost_Fluid_Fields::eulerian_rising_velocities_
protected

Definition at line 176 of file IJK_Ghost_Fluid_Fields.h.

◆ gfm_first_cells_indices_

FixedVector<ArrOfInt,3> IJK_Ghost_Fluid_Fields::gfm_first_cells_indices_
protected

Definition at line 163 of file IJK_Ghost_Fluid_Fields.h.

◆ has_computed_curvature_

bool IJK_Ghost_Fluid_Fields::has_computed_curvature_ = false
protected

Definition at line 194 of file IJK_Ghost_Fluid_Fields.h.

◆ has_computed_distance_

bool IJK_Ghost_Fluid_Fields::has_computed_distance_ = false
protected

Definition at line 193 of file IJK_Ghost_Fluid_Fields.h.

◆ interf_cells_indices_

FixedVector<ArrOfInt,3> IJK_Ghost_Fluid_Fields::interf_cells_indices_
protected

Definition at line 162 of file IJK_Ghost_Fluid_Fields.h.

◆ n_iter_distance_

int IJK_Ghost_Fluid_Fields::n_iter_distance_ = 8
protected

Definition at line 186 of file IJK_Ghost_Fluid_Fields.h.

◆ nb_cells_gfm_parallel_calls_

int IJK_Ghost_Fluid_Fields::nb_cells_gfm_parallel_calls_ = 2
protected

Definition at line 189 of file IJK_Ghost_Fluid_Fields.h.

◆ propagated_cells_indices_

FixedVector<ArrOfInt,3> IJK_Ghost_Fluid_Fields::propagated_cells_indices_
protected

Definition at line 164 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_interf_cells_

IJK_Field_int IJK_Ghost_Fluid_Fields::tmp_interf_cells_
protected

Definition at line 160 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_new_curv_val_

IJK_Field_double IJK_Ghost_Fluid_Fields::tmp_new_curv_val_
protected

Definition at line 169 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_new_dist_val_

IJK_Field_double IJK_Ghost_Fluid_Fields::tmp_new_dist_val_
protected

Definition at line 167 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_new_vector_val_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::tmp_new_vector_val_
protected

Definition at line 158 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_old_curv_val_

IJK_Field_double IJK_Ghost_Fluid_Fields::tmp_old_curv_val_
protected

Definition at line 168 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_old_dist_val_

IJK_Field_double IJK_Ghost_Fluid_Fields::tmp_old_dist_val_
protected

Definition at line 166 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_old_vector_val_

IJK_Field_vector3_double IJK_Ghost_Fluid_Fields::tmp_old_vector_val_
protected

Definition at line 157 of file IJK_Ghost_Fluid_Fields.h.

◆ tmp_propagated_cells_

IJK_Field_int IJK_Ghost_Fluid_Fields::tmp_propagated_cells_
protected

Definition at line 161 of file IJK_Ghost_Fluid_Fields.h.

◆ use_n_iter_distance_

int IJK_Ghost_Fluid_Fields::use_n_iter_distance_ = 0
protected

Definition at line 188 of file IJK_Ghost_Fluid_Fields.h.


The documentation for this class was generated from the following files:
  • /home/docs/checkouts/readthedocs.org/user_builds/triocfd-documentation/checkouts/next/src/Multiphase/Front_tracking_discontinu/IJK/Temperature/IJK_Ghost_Fluid_Fields.h
  • /home/docs/checkouts/readthedocs.org/user_builds/triocfd-documentation/checkouts/next/src/Multiphase/Front_tracking_discontinu/IJK/Temperature/IJK_Ghost_Fluid_Fields.cpp