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

File Contents

# User Rev Content
1 5 //---------------------------------------------------------------------------
2    
3     #ifndef sl_segment11H
4     #define sl_segment11H
5     #include "fem_segment.h"
6    
7     #include "sl_segment.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     //class SL_SEGMENT11:public SL_SEGMENT
21    
22     class DLLPORTSOLVEUR SL_SEGMENT11:public SL_SEGMENT
23    
24     {
25     public:
26     SL_SEGMENT11(class FEM_SEGMENT *mgseg);
27     SL_SEGMENT11(SL_SEGMENT11& mdd);
28     virtual~SL_SEGMENT11();
29    
30    
31     virtual int nb_point_gauss(void);
32    
33     virtual int nb_fonction_interpolation(void);
34     virtual void get_point_gauss(int num,double *xyz,double& poids);
35     virtual double get_fonction_interpolation(int num,double *uv);
36     virtual double get_fonction_derive_interpolation(int num,int numvariable,double *uv);
37     virtual double get_jacobien(double* jac,double *uv,int& li,int& col,double unite);
38     virtual void get_inverse_jacob(double* jac,double*j,double unite);
39    
40     virtual int nb_point_extrapolation();
41    
42    
43     private:
44     };
45    
46    
47     #endif