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

File Contents

# User Rev Content
1 5 #include "gestionversion.h"
2     //---------------------------------------------------------------------------
3    
4     #pragma hdrstop
5    
6     #include "sl_sommet.h"
7     #include "fem_noeud.h"
8     //---------------------------------------------------------------------------
9     #pragma package(smart_init)
10    
11    
12    
13    
14     SL_SOMMET::SL_SOMMET(FEM_NOEUD *mgnoeud):SL_ELEMENT(mgnoeud)
15     {
16     }
17    
18     SL_SOMMET::SL_SOMMET(SL_SOMMET& mdd):SL_ELEMENT(mdd)
19     {
20     }
21    
22     SL_SOMMET::~SL_SOMMET()
23     {
24     }
25    
26    
27     int SL_SOMMET::nb_point_gauss(void)
28     {
29     return 0;
30     }
31    
32    
33    
34     void SL_SOMMET::get_point_gauss(int num,double *xyz,double& poids)
35     {
36     return;
37     }
38    
39     int SL_SOMMET::nb_fonction_interpolation(void)
40     {
41     return 0;
42     }
43     double SL_SOMMET::get_fonction_interpolation(int num,double *uv)
44     {
45     return 0.0;
46     }
47     double SL_SOMMET::get_fonction_derive_interpolation(int num,int numvariable,double *uv)
48     {
49     return 0.0;
50     }
51    
52    
53    
54     int SL_SOMMET:: get_dimension(void)
55     {
56     return 0;
57     }
58    
59     int SL_SOMMET::nb_point_extrapolation()
60     {
61     return 0;
62     }
63    
64    
65     double SL_SOMMET::get_jacobien(double* jac,double *uv,int& li,int& col,double unite)
66     {
67     return 0.0;
68     }
69    
70    
71     void SL_SOMMET::get_inverse_jacob(double* jac,double* j,double unite)
72     {
73     return;
74     }
75    
76     FEM_NOEUD* SL_SOMMET::get_element_de_maillage()
77     {
78     return (FEM_NOEUD*)mai;
79     }
80    
81