35 GenericGSInternalUpdater(GeometryT & geom,
ITraceMng * traceMng)
36 : m_geom(geom), m_trace_mng(traceMng) { }
40 m_group_property = group_property;
43#define SAVE_PROPERTY(property,type,item,group,expr) \
44 if (m_group_property->hasProperty((property))) \
46 ItemGroupGeometryProperty::StorageInfo & storage = m_group_property->storages[property]; \
47 if (ContainerAccessorT<type>::getVarContainer(storage)) \
49 IGeometryMng::type##Variable & mMap = *ContainerAccessorT<type>::getVarContainer(storage); \
50 ENUMERATE_ITEMWITHNODES((item), (group)) { \
51 mMap[*(item)] = (expr); \
56 template<
typename ComputeLineFunctor>
63 ComputeLineFunctor functor(&m_geom);
64 ENUMERATE_ITEMWITHNODES(item, group) {
65 functor.computeOrientedMeasureAndCenter(*item,orientations[item.index()],centers[item.index()]);
68 SAVE_PROPERTY(IGeometryProperty::PMeasure,
Real,item,group,
math::normeR3(orientations[item.index()]));
69 SAVE_PROPERTY(IGeometryProperty::PLength,
Real,item,group,
math::normeR3(orientations[item.index()]));
70 SAVE_PROPERTY(IGeometryProperty::PArea,
Real,item,group,0);
71 SAVE_PROPERTY(IGeometryProperty::PVolume,
Real,item,group,0);
72 SAVE_PROPERTY(IGeometryProperty::PCenter,
Real3,item,group,centers[item.index()]);
73 SAVE_PROPERTY(IGeometryProperty::PNormal,
Real3,item,group,orientations[item.index()]);
74 SAVE_PROPERTY(IGeometryProperty::PVolumeSurfaceRatio,
Real,item,group,0);
77 template<
typename ComputeSurfaceFunctor>
84 ComputeSurfaceFunctor functor(&m_geom);
85 ENUMERATE_ITEMWITHNODES(item, group) {
86 functor.computeOrientedMeasureAndCenter(*item,normals[item.index()],centers[item.index()]);
89 SAVE_PROPERTY(IGeometryProperty::PMeasure,
Real,item,group,
math::normeR3(normals[item.index()]));
90 SAVE_PROPERTY(IGeometryProperty::PLength,
Real,item,group,0);
91 SAVE_PROPERTY(IGeometryProperty::PArea,
Real,item,group,
math::normeR3(normals[item.index()]));
92 SAVE_PROPERTY(IGeometryProperty::PVolume,
Real,item,group,0);
93 SAVE_PROPERTY(IGeometryProperty::PCenter,
Real3,item,group,centers[item.index()]);
94 SAVE_PROPERTY(IGeometryProperty::PNormal,
Real3,item,group,normals[item.index()]);
95 SAVE_PROPERTY(IGeometryProperty::PVolumeSurfaceRatio,
Real,item,group,0);
98 template<
typename ComputeVolumeFunctor>
105 ComputeVolumeFunctor functor(&m_geom);
106 ENUMERATE_ITEMWITHNODES(item, group) {
107 functor.computeOrientedMeasureAndCenter(*item,volumes[item.index()],centers[item.index()]);
110 SAVE_PROPERTY(IGeometryProperty::PMeasure,
Real,item,group,volumes[item.index()]);
111 SAVE_PROPERTY(IGeometryProperty::PLength,
Real,item,group,0);
112 SAVE_PROPERTY(IGeometryProperty::PArea,
Real,item,group,0);
113 SAVE_PROPERTY(IGeometryProperty::PVolume,
Real,item,group,volumes[item.index()]);
114 SAVE_PROPERTY(IGeometryProperty::PCenter,
Real3,item,group,centers[item.index()]);
115 SAVE_PROPERTY(IGeometryProperty::PNormal,
Real3,item,group,0);
117 if (m_group_property->hasProperty((IGeometryProperty::PVolumeSurfaceRatio)))
120 ENUMERATE_ITEMWITHNODES(item, group) {
121 functor.computeVolumeArea(*item,areas[item.index()]);
123 SAVE_PROPERTY(IGeometryProperty::PVolumeSurfaceRatio,
Real,item,group,volumes[item.index()]/areas[item.index()]);
130 applyLineTemplate<typename GeometryT::ComputeLine2>(group);
134 applySurfaceTemplate<typename GeometryT::ComputeTriangle3>(group);
138 applySurfaceTemplate<typename GeometryT::ComputeQuad4>(group);
142 applySurfaceTemplate<typename GeometryT::ComputePentagon5>(group);
146 applySurfaceTemplate<typename GeometryT::ComputeHexagon6>(group);
151 applyVolumeTemplate<typename GeometryT::ComputeTetraedron4>(group);
155 applyVolumeTemplate<typename GeometryT::ComputePyramid5>(group);
159 applyVolumeTemplate<typename GeometryT::ComputePentaedron6>(group);
163 applyVolumeTemplate<typename GeometryT::ComputeHexaedron8>(group);
167 applyVolumeTemplate<typename GeometryT::ComputeHeptaedron10>(group);
171 applyVolumeTemplate<typename GeometryT::ComputeOctaedron12>(group);
175 applyVolumeTemplate<typename GeometryT::ComputeHemiHexa7>(group);
179 applyVolumeTemplate<typename GeometryT::ComputeHemiHexa6>(group);
183 applyVolumeTemplate<typename GeometryT::ComputeHemiHexa5>(group);
187 applyVolumeTemplate<typename GeometryT::ComputeAntiWedgeLeft6>(group);
191 applyVolumeTemplate<typename GeometryT::ComputeAntiWedgeRight6>(group);
195 applyVolumeTemplate<typename GeometryT::ComputeDiTetra5>(group);
198 void applyDualNode(
ItemVectorView group) { ARCANE_UNUSED(group); }
199 void applyDualEdge(
ItemVectorView group) { ARCANE_UNUSED(group); }
200 void applyDualFace(
ItemVectorView group) { ARCANE_UNUSED(group); }
201 void applyDualCell(
ItemVectorView group) { ARCANE_UNUSED(group); }