14#define ARCANE_TRACE_ENUMERATOR
16#include "arcane/utils/ValueConvert.h"
17#include "arcane/utils/IProfilingService.h"
18#include "arcane/utils/IMemoryRessourceMng.h"
20#include "arcane/utils/Profiling.h"
21#include "arcane/utils/internal/ProfilingInternal.h"
23#include "arcane/core/VariableTypes.h"
24#include "arcane/core/IMesh.h"
25#include "arcane/core/Item.h"
26#include "arcane/core/ITimeLoopMng.h"
27#include "arcane/core/IParallelMng.h"
30#include "arcane/core/IVariableMng.h"
31#include "arcane/core/ItemInfoListView.h"
32#include "arcane/core/internal/IVariableInternal.h"
33#include "arcane/core/internal/ItemGroupImplInternal.h"
34#include "arcane/core/materials/internal/IMeshMaterialVariableInternal.h"
35#include "arcane/core/materials/internal/IMeshMaterialMngInternal.h"
37#include "arcane/materials/MeshMaterialVariableRef.h"
38#include "arcane/materials/MeshEnvironmentBuildInfo.h"
39#include "arcane/materials/MeshMaterialInfo.h"
40#include "arcane/materials/CellToAllEnvCellConverter.h"
41#include "arcane/materials/MeshMaterialModifier.h"
42#include "arcane/materials/ComponentItemVectorView.h"
44#include "arcane/accelerator/core/IAcceleratorMng.h"
45#include "arcane/accelerator/core/RunCommand.h"
46#include "arcane/accelerator/core/RunQueue.h"
47#include "arcane/accelerator/core/Runner.h"
48#include "arcane/accelerator/core/internal/RunnerInternal.h"
54#include "arcane/accelerator/Filter.h"
59#include "arcane/tests/ArcaneTestGlobal.h"
60#include "arcane/tests/MaterialHeatTest_axl.h"
68using namespace Arcane;
76class MaterialHeatTestModule
77:
public ArcaneMaterialHeatTestObject
103 struct MaterialWorkArray
123 void resizeNbAdd(
Int32 new_size)
129 void resizeNbRemove(
Int32 new_size)
157 ~MaterialHeatTestModule();
161 void buildInit()
override;
162 void compute()
override;
163 void startInit()
override;
164 void continueInit()
override;
172 Runner m_sequential_runner;
174 bool m_is_init_with_zero =
false;
175 bool m_is_check_init_new_cells =
false;
179 void _computeCellsCenter();
180 void _buildHeatObjects();
187 void _computeGlobalTemperature();
190 void _copyToGlobal(
const HeatObject& heat_object);
192 void _computeTotalTemperature(
const HeatObject& heat_object,
bool do_check);
198 void _changeVariableAllocator();
207MaterialHeatTestModule::
209: ArcaneMaterialHeatTestObject(mbi)
216 Int32 vv = v.value();
221 m_is_init_with_zero = (vv == 1 || vv == 2);
222 m_is_check_init_new_cells = (vv == 2 || vv == 3);
229MaterialHeatTestModule::
230~MaterialHeatTestModule()
232 for (MeshMaterialVariableRef* v : m_additional_variables)
234 m_additional_variables.clear();
240void MaterialHeatTestModule::
243 m_sequential_runner.initialize(Accelerator::eExecutionPolicy::Sequential);
244 m_queue = *acceleratorMng()->defaultQueue();
250 info() <<
"MaterialHeatTestModule::buildInit()";
252 IMesh* mesh = defaultMesh();
255 int flags = options()->modificationFlags();
257 info() <<
"MaterialHeatTestModule modification_flags=" << flags;
259 m_material_mng->setModificationFlags(flags);
260 m_material_mng->setMeshModificationNotified(
true);
261 m_material_mng->setUseMaterialValueWhenRemovingPartialValue(
true);
262 m_material_mng->setDataInitialisationWithZero(m_is_init_with_zero);
263 if (subDomain()->isContinue()) {
267 UniqueArray<MeshMaterialInfo*> materials_info;
269 for (
Integer i = 0, n = options()->material().size(); i < n; ++i) {
270 String mat_name = options()->material[i].name;
271 info() <<
"Found material name=" << mat_name;
275 UniqueArray<IMeshEnvironment*> saved_envs;
278 for (
Integer i = 0, n = options()->environment().size(); i < n; ++i) {
279 String env_name = options()->environment[i].name;
280 info() <<
"Found environment name=" << env_name;
281 Materials::MeshEnvironmentBuildInfo env_build(env_name);
282 for (
Integer k = 0, kn = options()->environment[i].material.size(); k < kn; ++k) {
283 String mat_name = options()->environment[i].material[k];
284 info() <<
"Add material " << mat_name <<
" for environment " << env_name;
285 env_build.addMaterial(mat_name);
293 info() <<
"List of materials:";
294 for (MeshMaterialInfo* m : materials_info) {
295 info() <<
"MAT=" << m->name();
296 for (String s : m->environmentsName())
297 info() <<
" In ENV=" << s;
303 Int32 nb_var_to_add = options()->nbAdditionalVariable();
304 info() <<
"NbVariableToAdd = " << nb_var_to_add;
305 for (
Int32 i = 0; i < nb_var_to_add; ++i) {
306 String var_name =
"MaterialAdditionalVar" + String::fromNumber(i);
308 m_additional_variables.add(v);
315 Int32 nb_var_to_add = options()->nbAdditionalArrayVariable();
316 info() <<
"NbArrayVariableToAdd = " << nb_var_to_add;
317 for (
Int32 i = 0; i < nb_var_to_add; ++i) {
318 String var_name =
"MaterialAdditionalArrayVar" + String::fromNumber(i);
320 v->resize(1 + (i % 3));
321 m_additional_variables.add(v);
322 v->globalVariable().fill(i + 5);
323 v->fillPartialValuesWithSuperValues(LEVEL_ALLENVIRONMENT);
331void MaterialHeatTestModule::
335 m_global_deltat.assign(1.0);
336 m_mat_temperature.globalVariable().fill(0.0);
337 m_material_mng->forceRecompute();
338 _computeCellsCenter();
339 MeshUtils::markMeshConnectivitiesAsMostlyReadOnly(defaultMesh(), &m_queue,
true);
340 VariableUtils::markVariableAsMostlyReadOnly(m_cell_center);
341 VariableUtils::markVariableAsMostlyReadOnly(defaultMesh()->nodesCoordinates());
344 if (m_queue.isAcceleratorPolicy() && m_material_mng->_internalApi()->runQueue().isAcceleratorPolicy())
345 mem_ressource = eMemoryRessource::Device;
347 const bool do_change_allocator =
true;
348 if (do_change_allocator) {
349 info() <<
"Changing allocator to use device memory to '" << mem_ressource <<
"'";
350 VariableUtils::experimentalChangeAllocator(m_mat_device_temperature.materialVariable(), mem_ressource);
357 group_mem_ressource = eMemoryRessource::UnifiedMemory;
359 IMeshMaterial* mat = *imat;
363 IMeshEnvironment* env = *ienv;
372void MaterialHeatTestModule::
373_changeVariableAllocator()
375 VariableCollection used_variables = subDomain()->variableMng()->usedVariables();
377 for (VariableCollection::Enumerator ivar(used_variables); ++ivar;) {
378 IVariable* var = *ivar;
381 info() <<
"Change allocator for '" << var->
fullName() <<
"'";
389void MaterialHeatTestModule::
392 info() <<
"MaterialHeatTestModule::continueInit()";
399void MaterialHeatTestModule::
402 info() <<
"MaterialHeatTestModule::compute()";
403 Int32 iteration = m_global_iteration();
405 _changeVariableAllocator();
408 Runner runner = *acceleratorMng()->defaultRunner();
414 bool is_end = (iteration >= options()->nbIteration());
416 subDomain()->timeLoopMng()->stopComputeLoop(
true);
420 bool do_check = is_end && options()->checkNumericalResult();
422 _computeTotalTemperature(ho, do_check);
429void MaterialHeatTestModule::
432 RunQueue* queue = acceleratorMng()->defaultQueue();
435 mem = eMemoryRessource::Device;
437 const Int32 nb_heat = m_heat_objects.size();
438 UniqueArray<MaterialWorkArray> work_arrays;
440 for (
Int32 i = 0; i < nb_heat; ++i)
450 _computeCellsToRemove(ho, wa);
451 _computeCellsToAdd(ho, wa);
456 ProfilingSentryWithInitialize ps_sentry(m_profiling_service);
457 MeshMaterialModifier modifier(m_material_mng);
460 IMeshMaterial* mat = ho.material;
463 ConstArrayView<Int32> remove_ids = wa.mat_cells_to_remove;
464 if (!remove_ids.
empty()) {
465 info() <<
"MAT_MODIF: Remove n=" << remove_ids.
size() <<
" cells to material=" << mat->
name();
466 modifier.removeCells(mat, remove_ids);
470 ConstArrayView<Int32> add_ids(wa.mat_cells_to_add.constView());
471 if (!add_ids.empty()) {
472 info() <<
"MAT_MODIF: Add n=" << add_ids.size() <<
" cells to material=" << mat->
name();
473 modifier.addCells(mat, add_ids);
479 if (options()->verbosityLevel() > 0) {
481 _printCellsTemperature(work_arrays[ho.index].mat_cells_to_add.constView());
482 _printCellsTemperature(work_arrays[ho.index].mat_cells_to_remove.constView());
488 _initNewCells(ho, work_arrays[ho.index]);
498 _computeGlobalTemperature();
506 ARCCORE_HOST_DEVICE MatCell _getMatCell(AllEnvCell c,
Int32 mat_id)
509 for (MatCell mc : env_cell.subMatItems()) {
510 Int32 mid = mc.materialId();
522void MaterialHeatTestModule::
525 RunQueue* queue = this->acceleratorMng()->defaultQueue();
527 bool init_with_zero = m_material_mng->isDataInitialisationWithZero();
530 IMeshMaterial* current_mat = heat_object.material;
531 Int32 mat_id = current_mat->
id();
532 CellToAllEnvCellConverter all_env_cell_converter(m_material_mng);
533 SmallSpan<const Int32> ids(wa.mat_cells_to_add.constView());
534 const Int32 nb_id = ids.size();
535 const bool do_check = m_is_check_init_new_cells;
540 auto out_mat_temperature =
viewInOut(command, m_mat_temperature);
541 Accelerator::ReducerSum2<Int32> sum_error(command);
545 AllEnvCell all_env_cell = all_env_cell_converter[CellLocalId(ids[i])];
546 MatCell mc = _getMatCell(all_env_cell, mat_id);
549 Real v = out_mat_temperature[mc];
550 if (init_with_zero) {
552 sum_error.combine(1);
558 sum_error.combine(1);
563 Int32 nb_error = sum_error.reducedValue();
565 ARCANE_FATAL(
"Errors with new cells nb_error={0}", nb_error);
569 auto in_value_to_add =
viewIn(command, wa.mat_cells_to_add_value);
570 auto out_mat_temperature =
viewInOut(command, m_mat_temperature);
574 AllEnvCell all_env_cell = all_env_cell_converter[CellLocalId(ids[i])];
575 MatCell mc = _getMatCell(all_env_cell, mat_id);
576 out_mat_temperature[mc] = in_value_to_add[i];
584void MaterialHeatTestModule::
587 IMeshMaterial* current_mat = heat_object.material;
588 const Real cold_value = heat_object.cold_value;
590 RunQueue* queue = this->acceleratorMng()->defaultQueue();
594 auto inout_mat_temperature =
viewInOut(command, m_mat_temperature);
597 Real t = inout_mat_temperature[matcell];
599 inout_mat_temperature[matcell] = t;
605 Real t = m_mat_temperature[imatcell];
607 ARCANE_FATAL(
"Invalid negative temperature '{0}' cell_lid={1}", t, (*imatcell).globalCell().localId());
619 heat_center += heat_object.
velocity * m_global_time();
628 auto in_cell_center =
viewIn(command, m_cell_center);
629 auto inout_mat_temperature =
viewInOut(command, m_mat_temperature);
630 auto out_mat_device_temperature =
viewInOut(command, m_mat_device_temperature);
635 auto [matcell, cell] = iter();
636 Real3 center = in_cell_center[cell];
637 Real distance2 = (center - heat_center).squareNormL2();
638 if (distance2 < heat_radius_norm) {
639 Real to_add = heat_value / (1.0 + distance2);
640 inout_mat_temperature[matcell] += to_add;
641 out_mat_device_temperature[matcell] = inout_mat_temperature[matcell];
649void MaterialHeatTestModule::
650_computeCellsToAdd(
const HeatObject& heat_object, MaterialWorkArray& wa)
652 Real3 heat_center = heat_object.center;
653 heat_center += heat_object.velocity * m_global_time();
654 const Real heat_value = heat_object.heat_value;
655 Real heat_radius = heat_object.radius;
656 const Real heat_radius_norm = heat_radius * heat_radius;
660 const Int32 mat_id = current_mat->
id();
666 const Int32 nb_item = all_cells.size();
667 wa.resizeNbAdd(nb_item);
669 auto in_cell_center =
viewIn(m_queue, m_cell_center);
670 auto cells_ids =
viewIn(m_queue, all_cells.localIds());
672 auto select_functor = [=] ARCCORE_HOST_DEVICE(
Int32 index) ->
bool {
673 CellLocalId cellid(cells_ids[index]);
674 AllEnvCell all_env_cell = all_env_cell_converter[cellid];
675 Real3 center = in_cell_center[cellid];
676 Real distance2 = (center - heat_center).squareNormL2();
677 if (distance2 < heat_radius_norm) {
678 MatCell mc = _getMatCell(all_env_cell, mat_id);
687 auto cells_to_add_view =
viewOut(m_queue, wa.mat_cells_to_add);
688 auto cells_to_add_value_view =
viewOut(m_queue, wa.mat_cells_to_add_value);
689 auto setter_functor = [=] ARCCORE_HOST_DEVICE(
Int32 input_index,
Int32 output_index) {
690 CellLocalId cellid(cells_ids[input_index]);
691 Real3 center = in_cell_center[cellid];
693 Real to_add = heat_value / (1.0 + distance2);
694 cells_to_add_view[output_index] = cellid;
695 cells_to_add_value_view[output_index] = to_add;
697 filterer.applyWithIndex(nb_item, select_functor, setter_functor, A_FUNCINFO);
698 Int32 nb_out = filterer.nbOutputElement();
699 wa.resizeNbAdd(nb_out);
706void MaterialHeatTestModule::
709 IMeshMaterial* current_mat = heat_object.material;
710 const bool is_verbose =
false;
711 const Real cold_value = 300.0;
719 wa.resizeNbRemove(nb_cell);
723 auto out_cells_remove_filter =
viewOut(command, wa.mat_cells_remove_filter);
724 auto out_cells_local_id =
viewOut(command, wa.mat_cells_to_remove);
725 auto in_mat_temperature =
viewIn(command, m_mat_temperature);
728 auto [mvi, cid] = iter();
729 Int32 index = iter.index();
730 out_cells_remove_filter[index] = in_mat_temperature[mvi] < cold_value;
731 out_cells_local_id[index] = cid;
736 Accelerator::GenericFilterer filterer(m_queue);
737 SmallSpan<const Int32> in_remove_view = wa.mat_cells_to_remove.view();
738 SmallSpan<Int32> out_remove_view = wa.mat_cells_to_remove.view();
739 SmallSpan<const bool> filter_view = wa.mat_cells_remove_filter.to1DSmallSpan();
740 filterer.apply(in_remove_view, out_remove_view, filter_view);
741 Int32 nb_out = filterer.nbOutputElement();
742 wa.resizeNbRemove(nb_out);
752void MaterialHeatTestModule::
755 IMeshMaterial* mat = heat_object.material;
756 Int32 var_index = heat_object.index;
760 auto in_mat_temperature =
viewIn(command, m_mat_temperature);
761 auto out_all_temperature =
viewOut(command, m_all_temperature);
764 auto [mvi, cid] = iter();
765 Real t = in_mat_temperature[mvi];
766 out_all_temperature[cid][var_index] = t;
774void MaterialHeatTestModule::
775_computeTotalTemperature(
const HeatObject& heat_object,
bool do_check)
777 IMeshMaterial* mat = heat_object.material;
778 Real total_mat_temperature = 0.0;
782 auto in_mat_temperature =
viewIn(command, m_mat_temperature);
783 Accelerator::ReducerSum2<double> total_temperature_reducer(command);
784 CellInfoListView cells_info(defaultMesh()->cellFamily());
787 auto [mvi, cid] = iter();
788 if (cells_info.isOwn(cid)) {
789 Real t = in_mat_temperature[mvi];
790 total_temperature_reducer.combine(t);
793 total_mat_temperature = total_temperature_reducer.reducedValue();
797 info() <<
"TotalMatTemperature mat=" << mat->
name() <<
" T=" << total_mat_temperature;
799 Real ref_value = heat_object.expected_final_temperature;
800 Real current_value = total_mat_temperature;
801 Real epsilon = 1.0e-12;
803 Real relative_diff = math::abs(ref_value - current_value);
804 if (ref_value != 0.0)
805 relative_diff /= ref_value;
806 ARCANE_FATAL(
"Bad value for mat '{0}' ref={1} v={2} diff={3}",
807 mat->
name(), ref_value, current_value, relative_diff);
815void MaterialHeatTestModule::
823 auto cell_nodes = cell.
nodeIds();
824 for (NodeLocalId nodeid : cell_nodes) {
825 center += node_coord[nodeid];
827 center /= cell_nodes.size();
828 m_cell_center[icell] = center;
835void MaterialHeatTestModule::
838 info() <<
"MaterialHeatTestModule::_buildHeatObjects()";
842 for (
const auto& opt : options()->heatObject()) {
845 ho.velocity = opt->velocity;
846 ho.radius = opt->radius;
847 ho.material = _findMaterial(opt->material);
849 ho.expected_final_temperature = opt->expectedFinalTemperature;
850 m_heat_objects.add(ho);
855 m_all_temperature.resize(m_heat_objects.size());
861IMeshMaterial* MaterialHeatTestModule::
862_findMaterial(
const String& name)
864 for (IMeshMaterial* mat : m_material_mng->materials())
865 if (mat->
name() == name)
867 ARCANE_FATAL(
"No material in environment with name '{0}'", name);
873void MaterialHeatTestModule::
874_computeGlobalTemperature()
877 CellToAllEnvCellConverter all_env_cell_converter(m_material_mng);
879 auto inout_mat_temperature =
viewInOut(command, m_mat_temperature);
883 AllEnvCell all_env_cell = all_env_cell_converter[cellid];
884 Real global_temperature = 0.0;
885 for (EnvCell env_cell : all_env_cell.
subEnvItems()) {
886 Real env_temperature = 0.0;
887 for (MatCell mc : env_cell.subMatItems()) {
888 env_temperature += inout_mat_temperature[mc];
890 inout_mat_temperature[env_cell] = env_temperature;
891 global_temperature += env_temperature;
893 inout_mat_temperature[cellid] = global_temperature;
900void MaterialHeatTestModule::
903 CellToAllEnvCellConverter all_env_cell_converter(m_material_mng);
904 for (
Int32 lid : ids) {
905 CellLocalId cell_id(lid);
906 AllEnvCell all_env_cell = all_env_cell_converter[cell_id];
908 info() <<
"Cell=" << global_cell.
uniqueId() <<
" v=" << m_mat_temperature[global_cell];
910 info() <<
" EnvCell " << m_mat_temperature[ec]
911 <<
" mv=" << ec._varIndex()
912 <<
" env=" << ec.component()->name();
913 for (MatCell mc : ec.subMatItems()) {
914 info() <<
" MatCell " << m_mat_temperature[mc]
925ARCANE_REGISTER_MODULE_MATERIALHEATTEST(MaterialHeatTestModule);
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Fonctions utilitaires sur le maillage.
Types et fonctions pour gérer les synchronisations sur les accélérateurs.
Types et macros pour gérer les énumérations des entités sur les accélérateurs.
#define RUNCOMMAND_ENUMERATE(ItemTypeName, iter_name, item_group,...)
Macro pour itérer sur accélérateur sur un groupe d'entités.
Types et macros pour gérer les boucles sur les accélérateurs.
#define RUNCOMMAND_LOOP1(iter_name, x1,...)
Boucle sur accélérateur avec arguments supplémentaires pour les réductions.
Types et macros pour gérer les énumérations des matériaux et milieux sur les accélérateurs.
#define RUNCOMMAND_MAT_ENUMERATE(ConstituentItemNameType, iter_name, env_or_mat_container,...)
Macro pour itérer sur un matériau ou un milieu.
Fonctions utilitaires sur les variables.
void _addHeat(const HeatObject &heat_object)
Algorithme générique de filtrage sur accélérateur.
File d'exécution pour un accélérateur.
bool isAcceleratorPolicy() const
Indique si l'instance est associée à un accélérateur.
void printProfilingInfos(std::ostream &o)
Affiche les informations de profiling.
Gestionnaire d'exécution pour accélérateur.
RunnerInternal * _internalApi()
API interne à Arcane.
void reserve(Int64 new_capacity)
Réserve le mémoire pour new_capacity éléments.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
constexpr bool empty() const noexcept
true si le tableau est vide (size()==0)
Interface d'un service de profiling.
virtual void changeAllocator(const MemoryAllocationOptions &alloc_info)=0
Change l'allocateur de la variable.
virtual String fullName() const =0
Nom complet de la variable (avec le préfixe de la famille)
virtual String name() const =0
Nom de la variable.
virtual IVariableInternal * _internalApi()=0
API interne à Arcane.
void setMemoryRessourceForItemLocalId(eMemoryRessource mem)
Change la ressource mémoire utilisée pour conserver les localId() des entités.
Integer size() const
Nombre d'éléments du groupe.
ItemGroupImplInternal * _internalApi() const
API interne à Arcane.
NodeLocalIdView nodeIds() const
Liste des noeuds de l'entité
ItemUniqueId uniqueId() const
Identifiant unique sur tous les domaines.
Maille arcane avec info matériaux et milieux.
__host__ __device__ CellEnvCellEnumerator subEnvItems() const
Enumérateur sur les mailles milieux de cette maille.
Conversion de 'Cell' en 'AllEnvCell'.
ConstArrayView< Int32 > _internalLocalIds() const
Tableau des localId() des entités associées.
__host__ __device__ CellLocalId globalCellId() const
localId() de la maille globale
__host__ __device__ bool null() const
Indique s'il s'agit de la maille nulle.
Cell globalCell() const
Maille globale.
IMeshComponent * component() const
Constituant associé.
__host__ __device__ MatVarIndex _varIndex() const
virtual String name() const =0
Nom du composant.
virtual CellGroup cells() const =0
Groupe des mailles de ce matériau.
virtual Int32 id() const =0
Identifiant du composant.
Interface du gestionnaire des matériaux et des milieux d'un maillage.
virtual MeshMaterialInfo * registerMaterialInfo(const String &name)=0
Enregistre les infos du matériau de nom name.
virtual void endCreate(bool is_continue=false)=0
Indique qu'on a fini de créer les milieux.
virtual void recreateFromDump()=0
Recréé les infos des matériaux et milieux à partir des infos de la protection.
virtual IMeshEnvironment * createEnvironment(const MeshEnvironmentBuildInfo &infos)=0
Créé un milieu avec les infos infos.
static IMeshMaterialMng * getReference(const MeshHandleOrMesh &mesh_handle, bool create=true)
Récupère ou créé la référence associée à mesh.
Interface d'un matériau d'un maillage.
virtual MatItemVectorView matView() const =0
Vue associée à ce matériau.
Représente un matériau d'une maille multi-matériau.
constexpr __host__ __device__ Int32 arrayIndex() const
Retourne l'indice du tableau de valeur dans la liste des variables.
Options pour configurer les allocations.
Informations pour construire un module.
Tableaux multi-dimensionnels pour les types numériques accessibles sur accélérateurs.
static void setProfilingLevel(Int32 level)
Positionne le niveau de profilage.
Classe gérant un vecteur de réel de dimension 3.
Chaîne de caractères unicode.
bool startsWith(const String &s) const
Indique si la chaîne commence par les caractères de s.
Vecteur 1D de données avec sémantique par valeur (style STL).
ItemVectorViewT< Cell > CellVectorView
Vue sur un vecteur de mailles.
MeshVariableScalarRefT< Node, Real3 > VariableNodeReal3
Grandeur au noeud de type coordonnées.
RunCommand makeCommand(const RunQueue &run_queue)
Créé une commande associée à la file run_queue.
auto viewInOut(const ViewBuildInfo &vbi, CellMaterialVariableScalarRef< DataType > &var)
Vue en lecture/écriture pour les variables materiaux scalaire.
auto viewOut(const ViewBuildInfo &vbi, CellMaterialVariableScalarRef< DataType > &var)
Vue en écriture pour les variables materiaux scalaire.
auto viewIn(const ViewBuildInfo &vbi, const CellMaterialVariableScalarRef< DataType > &var)
Vue en lecture pour les variables materiaux scalaire.
Active toujours les traces dans les parties Arcane concernant les matériaux.
CellMaterialVariableArrayRef< Int32 > MaterialVariableCellArrayInt32
Variable matériau de type tableau de Int32
CellMaterialVariableScalarRef< Int32 > MaterialVariableCellInt32
Variable matériau de type Int32
MemoryAllocationOptions getAllocationOptions(eMemoryResource mem_resource)
Allocation par défaut pour la ressource mem_resource.
@ ReduceSum
Somme des valeurs.
constexpr __host__ __device__ Real squareNormL2(const Real2 &v)
Retourne la norme au carré du couple .
constexpr __host__ __device__ bool isNearlyEqualWithEpsilon(const _Type &a, const _Type &b, const _Type &epsilon)
Teste si deux valeurs sont à un peu près égales. Pour les types entiers, cette fonction est équivalen...
bool arcaneIsCheck()
Vrai si on est en mode vérification.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
double Real
Type représentant un réel.
Arcane::eMemoryResource eMemoryRessource
Typedef pour la version Arcane historique (avec 2's')
std::int32_t Int32
Type entier signé sur 32 bits.
Caractéristiques de l'objet qui chauffe (disque ou sphère)
Real cold_value
Températeure de refroissement.
Int32 index
Index de cet objet dans la liste globale.
Real expected_final_temperature
Température attendue au temps final.
Real3 center
Centre à t=0.
IMeshMaterial * material
Matériaux qui sera chauffé par cet objet.
Real heat_value
Températeure de chauffage.
Tableau de travail pour la mise à jour des liste de matériaux.
UniqueArray< Int32 > mat_cells_to_add
Liste des mailles à ajouter.
UniqueArray< Real > mat_cells_to_add_value
Liste des valeurs de température dans les mailles à ajouter.
UniqueArray< Int32 > mat_cells_to_remove
Liste des mailles à supprimer.
NumArray< bool, MDDim1 > mat_cells_remove_filter
Filtre des mailles à supprimer.