MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
fem_mini_segment2.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
2 //####//------------------------------------------------------------
3 //####// MAGiC
4 //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5 //####// Departement de Genie Mecanique - UQTR
6 //####//------------------------------------------------------------
7 //####// MAGIC est un projet de recherche de l equipe ERICCA
8 //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9 //####// http://www.uqtr.ca/ericca
10 //####// http://www.uqtr.ca/
11 //####//------------------------------------------------------------
12 //####//------------------------------------------------------------
13 //####//
14 //####// fem_mini_segment2.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:54 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _FEMMINISEGMENT2_
23 #define _FEMMINISEGMENT2_
24 
25 
26 
27 #include "fem_segment2.h"
28 
29 
30 
32 {
33 public:
34  FEM_MINI_SEGMENT2(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
35  FEM_MINI_SEGMENT2(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
36  FEM_MINI_SEGMENT2(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
38  FEM_MINI_SEGMENT2(class MG_ELEMENT_TOPOLOGIQUE* topo,class FEM_NOEUD** tabnoeud);
39  virtual ~FEM_MINI_SEGMENT2();
40 
41 
42  virtual bool est_un_mini_element1(void);
43 
44  virtual void enregistrer(std::ostream& o,double version);
45 protected:
46 
47 };
48 
49 
50 
51 
52 
53 
54 #endif
55 
56 
57 
FEM_MINI_SEGMENT2
Definition: fem_mini_segment2.h:31
FEM_MINI_SEGMENT2::est_un_mini_element1
virtual bool est_un_mini_element1(void)
Definition: fem_mini_segment2.cpp:55
MG_ELEMENT_MAILLAGE
Definition: mg_element_maillage.h:38
FEM_MINI_SEGMENT2::enregistrer
virtual void enregistrer(std::ostream &o, double version)
Definition: fem_mini_segment2.cpp:63
MG_ELEMENT_TOPOLOGIQUE
Definition: mg_element_topologique.h:51
FEM_MINI_SEGMENT2::FEM_MINI_SEGMENT2
FEM_MINI_SEGMENT2(unsigned long num, class MG_ELEMENT_MAILLAGE *mai, class FEM_NOEUD **tabnoeud)
Definition: fem_mini_segment2.cpp:30
FEM_NOEUD
Definition: fem_noeud.h:35
fem_segment2.h
FEM_SEGMENT2
Definition: fem_segment2.h:33
FEM_MINI_SEGMENT2::~FEM_MINI_SEGMENT2
virtual ~FEM_MINI_SEGMENT2()
Definition: fem_mini_segment2.cpp:50