ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/geometrie/src/fem_segment3.cpp
Revision: 253
Committed: Tue Jul 13 19:40:46 2010 UTC (14 years, 10 months ago) by francois
File size: 4445 byte(s)
Log Message:
changement de hiearchie et utilisation de ccmake + mise a jour

File Contents

# User Rev Content
1 5 //------------------------------------------------------------
2     //------------------------------------------------------------
3     // MAGiC
4 francois 195 // Jean Christophe Cuilli�re et Vincent FRANCOIS
5     // D�partement de G�nie M�canique - UQTR
6 5 //------------------------------------------------------------
7 francois 195 // Le projet MAGIC est un projet de recherche du d�partement
8     // de g�nie m�canique de l'Universit� du Qu�bec �
9     // Trois Rivi�res
10     // Les librairies ne peuvent �tre utilis�es sans l'accord
11 5 // des auteurs (contact : francois@uqtr.ca)
12     //------------------------------------------------------------
13     //------------------------------------------------------------
14     //
15     // fem_segment3.cpp
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20 francois 195 // Version du 02/03/2006 � 11H22
21 5 //------------------------------------------------------------
22     //------------------------------------------------------------
23    
24    
25     #include "gestionversion.h"
26     #include "fem_segment3.h"
27     #include "fem_noeud.h"
28     #include "fem_maillage.h"
29     #include "mg_element_maillage.h"
30    
31    
32     FEM_SEGMENT3::FEM_SEGMENT3(unsigned long num,class MG_ELEMENT_MAILLAGE* mai,class FEM_NOEUD** tabnoeud):FEM_SEGMENT(num,mai),FEM_TEMPLATE_ELEMENT<3>(tabnoeud)
33     {
34 francois 195 if (liaison_topologique!=NULL) if (liaison_topologique->get_dimension()==1) liaison_topologique->get_lien_fem_maillage()->ajouter(this);
35 5 tab[0]->get_lien_segment()->ajouter(this);
36     tab[1]->get_lien_segment()->ajouter(this);
37     tab[2]->get_lien_segment()->ajouter(this);
38     get_fem_noeudpetitid()->get_lien_petit_segment()->ajouter(this);
39     }
40    
41     FEM_SEGMENT3::FEM_SEGMENT3(class MG_ELEMENT_MAILLAGE* mai,FEM_NOEUD** tabnoeud):FEM_SEGMENT(mai),FEM_TEMPLATE_ELEMENT<3>(tabnoeud)
42     {
43 francois 195 if (liaison_topologique!=NULL) if (liaison_topologique->get_dimension()==1) liaison_topologique->get_lien_fem_maillage()->ajouter(this);
44 5 tab[0]->get_lien_segment()->ajouter(this);
45     tab[1]->get_lien_segment()->ajouter(this);
46     tab[2]->get_lien_segment()->ajouter(this);
47     get_fem_noeudpetitid()->get_lien_petit_segment()->ajouter(this);
48     }
49    
50     FEM_SEGMENT3::FEM_SEGMENT3(FEM_SEGMENT3& mdd):FEM_SEGMENT(mdd),FEM_TEMPLATE_ELEMENT<3>(mdd)
51     {
52 francois 195 if (liaison_topologique!=NULL) if (liaison_topologique->get_dimension()==1) liaison_topologique->get_lien_fem_maillage()->ajouter(this);
53 5 tab[0]->get_lien_segment()->ajouter(this);
54     tab[1]->get_lien_segment()->ajouter(this);
55     tab[2]->get_lien_segment()->ajouter(this);
56     get_fem_noeudpetitid()->get_lien_petit_segment()->ajouter(this);
57     }
58    
59     FEM_SEGMENT3::~FEM_SEGMENT3()
60     {
61     if (liaison_topologique==NULL) return;
62     if (liaison_topologique->get_dimension()==0) liaison_topologique->get_lien_fem_maillage()->supprimer(this);
63     tab[0]->get_lien_segment()->supprimer(this);
64     tab[1]->get_lien_segment()->supprimer(this);
65     get_fem_noeudpetitid()->get_lien_petit_segment()->supprimer(this);
66     }
67    
68     FEM_ELEMENT_MAILLAGE* FEM_SEGMENT3::dupliquer(FEM_MAILLAGE *femmai,long decalage)
69     {
70     FEM_NOEUD* tabnoeud[3];
71     tabnoeud[0]=femmai->get_fem_noeudid(tab[0]->get_id()+decalage);
72     tabnoeud[1]=femmai->get_fem_noeudid(tab[1]->get_id()+decalage);
73     tabnoeud[2]=femmai->get_fem_noeudid(tab[2]->get_id()+decalage);
74     FEM_SEGMENT3* seg=new FEM_SEGMENT3(get_id()+decalage,maillage,tabnoeud);
75     femmai->ajouter_fem_segment(seg);
76     return seg;
77     }
78    
79    
80    
81     int FEM_SEGMENT3::get_type_entite(void)
82     {
83     return IDFEM_SEGMENT3;
84     }
85    
86     int FEM_SEGMENT3::get_dimension(void)
87     {
88     return 1;
89     }
90    
91    
92     int FEM_SEGMENT3::get_nb_fem_noeud(void)
93     {
94     return FEM_TEMPLATE_ELEMENT<3>::get_nb_fem_noeud();
95     }
96    
97     FEM_NOEUD* FEM_SEGMENT3::get_fem_noeud(int num)
98     {
99     return FEM_TEMPLATE_ELEMENT<3>::get_fem_noeud(num);
100     }
101    
102     void FEM_SEGMENT3::change_noeud(int num,FEM_NOEUD* noeud)
103     {
104     FEM_TEMPLATE_ELEMENT<3>::change_noeud(num,noeud);
105     }
106    
107     BOITE_3D& FEM_SEGMENT3::get_boite_3D(void)
108     {
109     return FEM_TEMPLATE_ELEMENT<3>::get_boite_3D();
110     }
111    
112    
113    
114     void FEM_SEGMENT3::enregistrer(std::ostream& o)
115     {
116     if (get_lien_topologie()!=NULL) o << "%" << get_id() << "=FEM_SEGMENT3($"<< get_lien_topologie()->get_id() << ",$" << maillage->get_id() << ",$" << tab[0]->get_id() << ",$" << tab[1]->get_id() << ",$" << tab[2]->get_id()<< ");" << std::endl;
117     else o << "%" << get_id() << "=FEM_SEGMENT3(NULL,$" << maillage->get_id() <<",$" << tab[0]->get_id() << ",$" << tab[1]->get_id() << ",$" << tab[2]->get_id()<< ");" << std::endl;
118     }