ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mtu/src/fem_segment3.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months, 1 week ago) by francois
Content type: text/plain
File size: 2936 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_segment3.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:54 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 francois 283 #ifndef _FEMSEGMENT3_
23     #define _FEMSEGMENT3_
24    
25    
26    
27     #include "fem_template_element.h"
28 francois 309 #include "fem_element1.h"
29 francois 283
30    
31    
32 francois 1158 class FEM_SEGMENT3 : public FEM_ELEMENT1,FEM_TEMPLATE_ELEMENT<3>
33 francois 283 {
34     public:
35 francois 378 FEM_SEGMENT3(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
36     FEM_SEGMENT3(class MG_ELEMENT_TOPOLOGIQUE* topo,FEM_NOEUD** tabnoeud);
37     FEM_SEGMENT3(class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
38 francois 283 FEM_SEGMENT3(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud);
39 francois 378 FEM_SEGMENT3(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,FEM_NOEUD** tabnoeud);
40     FEM_SEGMENT3(unsigned long num,class MG_ELEMENT_TOPOLOGIQUE* topo,class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud);
41 francois 283 FEM_SEGMENT3(FEM_SEGMENT3& mdd);
42     virtual ~FEM_SEGMENT3();
43     virtual int get_type_entite(void);
44     virtual int get_nb_fem_noeud(void);
45     virtual FEM_NOEUD* get_fem_noeud(int num);
46     virtual void change_noeud(int num,FEM_NOEUD* noeud);
47     virtual int get_dimension(void);
48 francois 763 virtual void enregistrer(std::ostream& o,double version);
49 francois 283 virtual BOITE_3D& get_boite_3D(void);
50 francois 684 virtual void reinit_boite_3D(void);
51 francois 283 virtual FEM_ELEMENT_MAILLAGE* dupliquer(FEM_MAILLAGE *femmai,long decalage);
52 francois 635 virtual bool valide_parametre_EF(double* uvw);
53 francois 637 virtual int get_nb_pt_gauss(int degre);
54     virtual void get_pt_gauss(int degre,int num,double &w,double *u);
55 francois 757 virtual int get_degre_gauss(int num);
56 francois 638 virtual int get_degremax_fonction_interpolation(void);
57     virtual int get_nb_fonction_interpolation(void);
58 francois 310 virtual double get_fonction_interpolation(int num,double *uv);
59     virtual double get_fonction_derive_interpolation(int num,int numvariable,double *uv);
60 francois 786 virtual void get_voisin_noeud(class FEM_NOEUD* no,TPL_LISTE_ENTITE<FEM_NOEUD*> &voisin);
61 francois 283 protected:
62    
63     };
64    
65    
66    
67    
68    
69    
70     #endif
71    
72    
73