XC Open source finite element analysis program
MEDDblFieldInfo.h
1 //----------------------------------------------------------------------------
2 // XC program; finite element analysis code
3 // for structural analysis and design.
4 //
5 // Copyright (C) Luis Claudio PĂ©rez Tato
6 //
7 // XC is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // This software is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program.
20 // If not, see <http://www.gnu.org/licenses/>.
21 //----------------------------------------------------------------------------
22 //MEDDblFieldInfo.h
23 
24 #ifndef MEDDBLFIELDINFO_H
25 #define MEDDBLFIELDINFO_H
26 
27 #include "MEDTFieldInfo.h"
28 #include "xc_basic/src/med_xc/MEDMEM_ArrayInterface.hxx"
29 
30 namespace XC {
31 class Set;
32 class MEDGroupInfo;
33 
35 //
37 class MEDDblFieldInfo: public MEDTFieldInfo<double>
38  {
39  protected:
40  friend class MEDMeshing;
42 
43 
44  void populateOnNodes(const Set &,const FieldInfo &);
45  void populateOnElements(const Set &,const FieldInfo &);
46  void populateOnGaussPoints(const Set &,const FieldInfo &);
47  };
48 } // end of XC namespace
49 #endif
Information about a field defined over a set.
Definition: FieldInfo.h:39
void populateOnNodes(const Set &, const FieldInfo &)
Asigna los valores del campo en los nodos.
Definition: MEDDblFieldInfo.cc:37
Information about an scalar field defined on a mesh subset.
Definition: MEDDblFieldInfo.h:37
Information about node and element sets.
Definition: MEDGroupInfo.h:36
Envoltorio para el objeto MESHING de MED.
Definition: MEDMeshing.h:45
void populateOnElements(const Set &, const FieldInfo &)
Set the field values for the elements.
Definition: MEDDblFieldInfo.cc:68
MEDDblFieldInfo(const FieldInfo &, MEDGroupInfo *)
Constructor.
Definition: MEDDblFieldInfo.cc:33
void populateOnGaussPoints(const Set &, const FieldInfo &)
Asigna los valores del campo en los puntos de Gauss.
Definition: MEDDblFieldInfo.cc:99
Iformation about a field defined over a mesh subset.
Definition: MEDTFieldInfo.h:42
Object set.
Definition: Set.h:63
================================================================================
Definition: ContinuaReprComponent.h:34