XC Open source finite element analysis program
MEDIntFieldInfo.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 //MEDIntFieldInfo.h
23 
24 #ifndef MEDINTFIELDINFO_H
25 #define MEDINTFIELDINFO_H
26 
27 #include "MEDTFieldInfo.h"
28 
29 namespace XC {
30 class Set;
31 class MEDGroupInfo;
32 
34 //
36 class MEDIntFieldInfo: public MEDTFieldInfo<int>
37  {
38  protected:
39  friend class MEDMeshing;
41 
42 
43  void populateOnNodes(const Set &,const FieldInfo &);
44  void populateOnElements(const Set &,const FieldInfo &);
45  void populateOnGaussPoints(const Set &,const FieldInfo &);
46  };
47 } // end of XC namespace
48 #endif
Information about a field defined over a set.
Definition: FieldInfo.h:39
Information about node and element sets.
Definition: MEDGroupInfo.h:36
Envoltorio para el objeto MESHING de MED.
Definition: MEDMeshing.h:45
void populateOnNodes(const Set &, const FieldInfo &)
Asigna los valores del campo en los nodos.
Definition: MEDIntFieldInfo.cc:35
MEDIntFieldInfo(const FieldInfo &, MEDGroupInfo *)
Constructor.
Definition: MEDIntFieldInfo.cc:31
void populateOnGaussPoints(const Set &, const FieldInfo &)
Asigna los valores del campo en los puntos de Gauss.
Definition: MEDIntFieldInfo.cc:97
Information about field defined over a mesh subset.
Definition: MEDIntFieldInfo.h:36
Iformation about a field defined over a mesh subset.
Definition: MEDTFieldInfo.h:42
Object set.
Definition: Set.h:63
================================================================================
Definition: ContinuaReprComponent.h:34
void populateOnElements(const Set &, const FieldInfo &)
Sets the values of the fields in the elements.
Definition: MEDIntFieldInfo.cc:66