ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/solveur/src/sl_noeud.cpp
Revision: 1158
Committed: Thu Jun 13 22:18:49 2024 UTC (11 months, 1 week ago) by francois
File size: 2243 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_noeud.cpp
15     //####//
16     //####//------------------------------------------------------------
17     //####//------------------------------------------------------------
18     //####// COPYRIGHT 2000-2024
19     //####// jeu 13 jun 2024 11:58:57 EDT
20     //####//------------------------------------------------------------
21     //####//------------------------------------------------------------
22 5 #include "gestionversion.h"
23    
24     #pragma hdrstop
25    
26     #include "sl_noeud.h"
27     #include "fem_noeud.h"
28     #pragma package(smart_init)
29    
30    
31     SL_NOEUD::SL_NOEUD(FEM_NOEUD *mgnoeud):SL_ELEMENT(mgnoeud)
32     {
33     }
34    
35     SL_NOEUD::SL_NOEUD(SL_NOEUD& mdd):SL_ELEMENT(mdd)
36     {
37     }
38    
39     SL_NOEUD::~SL_NOEUD()
40     {
41     }
42    
43    
44     int SL_NOEUD::nb_point_gauss(void)
45     {
46     return 0;
47     }
48    
49    
50    
51     void SL_NOEUD::get_point_gauss(int num,double *xyz,double& poids)
52     {
53     return;
54     }
55    
56     int SL_NOEUD::nb_fonction_interpolation(void)
57     {
58     return 0;
59     }
60     double SL_NOEUD::get_fonction_interpolation(int num,double *uv)
61     {
62     return 0.0;
63     }
64     double SL_NOEUD::get_fonction_derive_interpolation(int num,int numvariable,double *uv)
65     {
66     return 0.0;
67     }
68    
69    
70    
71     int SL_NOEUD:: get_dimension(void)
72     {
73     return 0;
74     }
75    
76     int SL_NOEUD::nb_point_extrapolation()
77     {
78     return 0;
79     }
80    
81    
82     double SL_NOEUD::get_jacobien(double* jac,double *uv,int& li,int& col,double unite)
83     {
84     return 0.0;
85     }
86    
87    
88     void SL_NOEUD::get_inverse_jacob(double* jac,double* j,double unite)
89     {
90     return;
91     }
92    
93     FEM_NOEUD* SL_NOEUD::get_element_de_maillage()
94     {
95     return (FEM_NOEUD*)mai;
96     }
97    
98    
99    
100     void SL_NOEUD::get_elasticite(double*H,double E,double nu,int& taille)
101     {
102     }