ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/solveur/src/sl_noeud.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (17 years, 11 months ago)
Content type: text/plain
Original Path: magic/lib/solveur/solveur/src/sl_noeud.h
File size: 1460 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 //---------------------------------------------------------------------------
2    
3     #ifndef sl_noeudH
4     #define sl_noeudH
5     //---------------------------------------------------------------------------
6     //---------------------------------------------------------------------------
7     #include "sl_element.h"
8     //---------------------------------------------------------------------------
9    
10    
11     #ifdef WINDOWS_VERSION
12     #ifdef BUILT_DLL_SOLVEUR
13     #define DLLPORTSOLVEUR __declspec(dllexport)
14     #else
15     #define DLLPORTSOLVEUR __declspec(dllimport)
16     #endif
17     #else
18     #define DLLPORTSOLVEUR
19     #endif
20    
21    
22     class DLLPORTSOLVEUR SL_NOEUD:public SL_ELEMENT
23    
24     {
25    
26     public:
27     SL_NOEUD(class FEM_NOEUD *mgnoeud);
28     SL_NOEUD(SL_NOEUD& mdd);
29     virtual ~SL_NOEUD();
30     virtual int nb_point_gauss(void) ;
31    
32     virtual int nb_fonction_interpolation(void);
33     virtual void get_point_gauss(int num,double *xyz,double& poids);
34     virtual double get_fonction_interpolation(int num,double *uv);
35     virtual double get_fonction_derive_interpolation(int num,int numvariable,double *uv);
36     virtual double get_jacobien(double* jac,double *uv,int& li,int& col,double unite);
37     virtual void get_elasticite(double*H,double E,double nu,int& taille);
38     virtual void get_inverse_jacob(double* jac,double* j,double unite);
39     virtual class FEM_NOEUD* get_element_de_maillage();
40     virtual int nb_point_extrapolation();
41    
42     virtual int get_dimension(void);
43    
44     private:
45     };
46     #endif