ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/fem_element2.h
Revision: 283
Committed: Tue Sep 13 21:11:20 2011 UTC (13 years, 8 months ago) by francois
Content type: text/plain
Original Path: magic/lib/geometrie/src/fem_triangle.h
File size: 2024 byte(s)
Log Message:
structure de l'écriture

File Contents

# User Rev Content
1 francois 283 //------------------------------------------------------------
2     //------------------------------------------------------------
3     // MAGiC
4     // Jean Christophe Cuilli�e et Vincent FRANCOIS
5     // D�artement de G�ie M�anique - UQTR
6     //------------------------------------------------------------
7     // Le projet MAGIC est un projet de recherche du d�artement
8     // de g�ie m�anique de l'Universit�du Qu�ec �
9     // Trois Rivi�es
10     // Les librairies ne peuvent �re utilis�s sans l'accord
11     // des auteurs (contact : francois@uqtr.ca)
12     //------------------------------------------------------------
13     //------------------------------------------------------------
14     //
15     // mg_triangle.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 �11H22
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef _FEMTRIANGLE_
24     #define _FEMTRIANGLE_
25    
26     #ifdef WINDOWS_VERSION
27     #ifdef BUILT_DLL_GEOMETRIE
28     #define DLLPORTGEOMETRIE __declspec(dllexport)
29     #else
30     #define DLLPORTGEOMETRIE __declspec(dllimport)
31     #endif
32     #else
33     #define DLLPORTGEOMETRIE
34     #endif
35    
36    
37     #include "fem_element_maillage.h"
38     #include "ot_boite_3D.h"
39    
40     //const unsigned int IDFEM_SEGMENT=1001;
41    
42    
43    
44     class DLLPORTGEOMETRIE FEM_TRIANGLE : public FEM_ELEMENT_MAILLAGE
45     {
46     public:
47     FEM_TRIANGLE(unsigned long num,class MG_ELEMENT_MAILLAGE* mai);
48     FEM_TRIANGLE(class MG_ELEMENT_MAILLAGE* mai);
49     FEM_TRIANGLE(FEM_TRIANGLE& mdd);
50     virtual ~FEM_TRIANGLE();
51     virtual int get_type_entite(void)=0;
52    
53    
54     virtual int get_nb_fem_noeud(void)=0;
55     virtual class FEM_NOEUD* get_fem_noeud(int num)=0;
56    
57     virtual void change_noeud(int num,FEM_NOEUD* noeud)=0;
58     virtual BOITE_3D& get_boite_3D(void)=0;
59    
60     virtual int get_dimension(void)=0;
61     virtual void enregistrer(std::ostream& o)=0;
62    
63     virtual void extrapoler_solution_noeud(void);
64    
65     protected:
66    
67     };
68    
69    
70    
71    
72    
73    
74     #endif
75    
76    
77