ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/fem_penta6.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months, 2 weeks ago) by francois
Content type: text/plain
File size: 3005 byte(s)
Log Message:
compatibilité Ubuntu 22.04
Suppression des refeences à Windows
Ajout d'une banière

File Contents

# User Rev Content
1 francois 1158 //####//------------------------------------------------------------
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_penta6.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:53 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 francois 876 #ifndef _FEMPENTA6_
23     #define _FEMPENTA6_
24    
25    
26    
27 francois 1158
28 francois 876 #include "fem_template_element.h"
29     #include "fem_element3.h"
30    
31    
32    
33    
34 francois 1158 class FEM_PENTA6 : public FEM_ELEMENT3,FEM_TEMPLATE_ELEMENT<6>
35 francois 876 {
36     public:
37     FEM_PENTA6(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
38     FEM_PENTA6(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
39     FEM_PENTA6(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class FEM_NOEUD** tabnoeud);
40     FEM_PENTA6(class MG_ELEMENT_TOPOLOGIQUE* topo,FEM_NOEUD** tabnoeud);
41     FEM_PENTA6(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
42     FEM_PENTA6(class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
43    
44     FEM_PENTA6(FEM_PENTA6& mdd);
45     virtual ~FEM_PENTA6();
46     virtual int get_type_entite(void);
47     virtual int get_nb_fem_noeud(void);
48     virtual FEM_NOEUD* get_fem_noeud(int num);
49     virtual void change_noeud(int num,FEM_NOEUD* noeud);
50     virtual int get_dimension(void);
51     virtual void enregistrer(std::ostream& o,double version);
52     virtual BOITE_3D& get_boite_3D(void);
53     virtual FEM_ELEMENT_MAILLAGE* dupliquer(class FEM_MAILLAGE *femmai,long decalage);
54     virtual bool valide_parametre_EF(double* uvw);
55     virtual int get_nb_pt_gauss(int degre);
56     virtual void get_pt_gauss(int degre,int num,double &w,double *uvw);
57     virtual int get_degre_gauss(int num);
58     virtual int get_degremax_fonction_interpolation(void);
59     virtual int get_nb_fonction_interpolation(void);
60     virtual double get_fonction_interpolation(int num,double *uv);
61     virtual double get_fonction_derive_interpolation(int num,int numvariable,double *uv);
62     virtual void reinit_boite_3D(void);
63     virtual void get_voisin_noeud(class FEM_NOEUD* no,TPL_LISTE_ENTITE<FEM_NOEUD*> &voisin);
64     virtual int verifie_validite_decoupage_xfem(double *vol=NULL);
65     protected:
66    
67     };
68    
69    
70    
71    
72    
73    
74     #endif
75    
76    
77