ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/solveur/src/sl_sommet.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_sommet.h
File size: 1428 byte(s)
Log Message:

File Contents

# User Rev Content
1 5 //---------------------------------------------------------------------------
2    
3     #ifndef sl_sommetH
4     #define sl_sommetH
5     //---------------------------------------------------------------------------
6     #include "sl_element.h"
7     //---------------------------------------------------------------------------
8    
9    
10     #ifdef WINDOWS_VERSION
11     #ifdef BUILT_DLL_SOLVEUR
12     #define DLLPORTSOLVEUR __declspec(dllexport)
13     #else
14     #define DLLPORTSOLVEUR __declspec(dllimport)
15     #endif
16     #else
17     #define DLLPORTSOLVEUR
18     #endif
19    
20     //class SL_SOMMET:public SL_ELEMENT
21    
22     class DLLPORTSOLVEUR SL_SOMMET:public SL_ELEMENT
23    
24     {
25    
26     public:
27     SL_SOMMET(class FEM_NOEUD *mgnoeud);
28     SL_SOMMET(SL_SOMMET& mdd);
29     virtual ~SL_SOMMET();
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