ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/fem_penta15.h
Revision: 876
Committed: Fri Mar 24 19:40:04 2017 UTC (8 years, 1 month ago) by francois
Content type: text/plain
File size: 3376 byte(s)
Log Message:
ajouts des elements pentaedriques dans le mg_maillage et dans le fem_maillage (6 et 15 noeuds).
+notion sur les coquilles minces (incomplet)
+operations sur les fem_solution

-->a venir reste sur les coquilles minces + mailleur coquille mince

File Contents

# User Rev Content
1 francois 876 //------------------------------------------------------------
2     //------------------------------------------------------------
3     // MAGiC
4     // Jean Christophe Cuilli�re et Vincent FRANCOIS
5     // D�partement de G�nie M�canique - UQTR
6     //------------------------------------------------------------
7     // Le projet MAGIC est un projet de recherche du d�partement
8     // de g�nie m�canique de l'Universit� du Qu�bec �
9     // Trois Rivi�res
10     // Les librairies ne peuvent �tre utilis�es sans l'accord
11     // des auteurs (contact : francois@uqtr.ca)
12     //------------------------------------------------------------
13     //------------------------------------------------------------
14     //
15     // mg_triangle3.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 � 11H22
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef _FEMPENTA15_
24     #define _FEMPENTA15_
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_template_element.h"
38     #include "fem_element3.h"
39    
40    
41     const unsigned int IDFEM_PENTA15=1365;
42    
43    
44     class DLLPORTGEOMETRIE FEM_PENTA15 : public FEM_ELEMENT3,FEM_TEMPLATE_ELEMENT<15>
45     {
46     public:
47     FEM_PENTA15(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
48     FEM_PENTA15(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
49     FEM_PENTA15(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class FEM_NOEUD** tabnoeud);
50     FEM_PENTA15(class MG_ELEMENT_TOPOLOGIQUE* topo,FEM_NOEUD** tabnoeud);
51     FEM_PENTA15(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
52     FEM_PENTA15(class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
53    
54     FEM_PENTA15(FEM_PENTA15& mdd);
55     virtual ~FEM_PENTA15();
56     virtual int get_type_entite(void);
57     virtual int get_nb_fem_noeud(void);
58     virtual FEM_NOEUD* get_fem_noeud(int num);
59     virtual void change_noeud(int num,FEM_NOEUD* noeud);
60     virtual int get_dimension(void);
61     virtual void enregistrer(std::ostream& o,double version);
62     virtual BOITE_3D& get_boite_3D(void);
63     virtual FEM_ELEMENT_MAILLAGE* dupliquer(class FEM_MAILLAGE *femmai,long decalage);
64     virtual bool valide_parametre_EF(double* uvw);
65     virtual int get_nb_pt_gauss(int degre);
66     virtual void get_pt_gauss(int degre,int num,double &w,double *uvw);
67     virtual int get_degre_gauss(int num);
68     virtual int get_degremax_fonction_interpolation(void);
69     virtual int get_nb_fonction_interpolation(void);
70     virtual double get_fonction_interpolation(int num,double *uv);
71     virtual double get_fonction_derive_interpolation(int num,int numvariable,double *uv);
72     virtual double get_jacobien(double* jac,double *uv,int& li,int& col,double unite=1.);
73     virtual void get_inverse_jacob(double* jac,double *uv,double unite=1.);
74     virtual void reinit_boite_3D(void);
75     virtual void get_voisin_noeud(class FEM_NOEUD* no,TPL_LISTE_ENTITE<FEM_NOEUD*> &voisin);
76     virtual int verifie_validite_decoupage_xfem(double *vol=NULL);
77     protected:
78    
79     };
80    
81    
82    
83    
84    
85    
86     #endif
87    
88    
89