ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/solveur/src/sl_localisation.h
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months ago) by francois
Content type: text/plain
File size: 1546 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     //####// sl_localisation.h
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:57 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 5
23     #ifndef sl_localisationH
24     #define sl_localisationH
25    
26     #include "fem_maillage.h"
27    
28    
29    
30 francois 1158
31     class SL_LOCALISATION
32 5 {
33     public:
34    
35     SL_LOCALISATION();
36     virtual ~SL_LOCALISATION();
37    
38     virtual void get_localisation(int* tab_in,int* tab_out,int t_tab_inp);
39     virtual void get_localisation_contrainte(int* tab_inp,int* tab_out,int t_tab_inp);
40     virtual void get_localisation_contrainte_equiv(FEM_MAILLAGE*mai,int* tab,int* ttab,int taille_tab);
41    
42     protected:
43    
44     };
45    
46    
47     #endif