MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
mstruct_analyse_erosion.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
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 //####// mstruct_analyse_erosion.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:57 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef _MSTRUCT_ANALYSE_EROSION_
23 #define _MSTRUCT_ANALYSE_EROSION_
24 #include "mstruct_analyse.h"
25 #include <vector>
27 {
28 public:
30  MSTRUCT_ANALYSE_EROSION(std::string identifiant,double epaisseur_couche,std::string nom_groupe_forme="",BOITE_3D* boite_3d=NULL);
31  MSTRUCT_ANALYSE_EROSION(std::string identifiant,MSTRUCT_ANALYSE* analyse_initiale,long nb_couche,double epaisseur_couche);
33  virtual double get_epaisseur_couche(void);
34  virtual long get_nb_analyse(void);
35  virtual int ajouter_analyse(MSTRUCT_ANALYSE* analyse);
36  virtual MSTRUCT_ANALYSE* get_premiere_analyse(std::vector<MSTRUCT_ANALYSE*>::iterator &it);
37  virtual MSTRUCT_ANALYSE* get_suivante_analyse(std::vector<MSTRUCT_ANALYSE*>::iterator &it);
38  virtual MSTRUCT_ANALYSE* get_analyse(long num);
39  virtual long get_type(void);
40  virtual void executer(void);
41  virtual void exporter(std::ofstream& ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char* prefix_graph = (char*)"");
42  virtual void enregistrer(std::ofstream& ofstrm);
43  virtual void ouvrir(std::ifstream& ifstrm);
44  virtual void affiche_contenu(fonction_affiche *fonc);
45 protected:
46 
48  std::vector<MSTRUCT_ANALYSE*> m_vector_analyse;
49 };
50 
51 #endif
MSTRUCT_ANALYSE_EROSION::affiche_contenu
virtual void affiche_contenu(fonction_affiche *fonc)
Definition: mstruct_analyse_erosion.cpp:262
MSTRUCT_ANALYSE_EROSION::m_vector_analyse
std::vector< MSTRUCT_ANALYSE * > m_vector_analyse
Definition: mstruct_analyse_erosion.h:48
MSTRUCT_ANALYSE_EROSION::m_epaisseur_couche
double m_epaisseur_couche
Definition: mstruct_analyse_erosion.h:47
MSTRUCT_ANALYSE_EROSION::get_suivante_analyse
virtual MSTRUCT_ANALYSE * get_suivante_analyse(std::vector< MSTRUCT_ANALYSE * >::iterator &it)
Definition: mstruct_analyse_erosion.cpp:162
MSTRUCT_ANALYSE_EROSION::~MSTRUCT_ANALYSE_EROSION
~MSTRUCT_ANALYSE_EROSION(void)
Definition: mstruct_analyse_erosion.cpp:130
MSTRUCT_ANALYSE_EROSION::get_nb_analyse
virtual long get_nb_analyse(void)
Definition: mstruct_analyse_erosion.cpp:141
MSTRUCT_ANALYSE_EROSION::get_epaisseur_couche
virtual double get_epaisseur_couche(void)
Definition: mstruct_analyse_erosion.cpp:136
MSTRUCT_ANALYSE_EROSION::ajouter_analyse
virtual int ajouter_analyse(MSTRUCT_ANALYSE *analyse)
Definition: mstruct_analyse_erosion.cpp:146
MSTRUCT_ANALYSE_EROSION::get_premiere_analyse
virtual MSTRUCT_ANALYSE * get_premiere_analyse(std::vector< MSTRUCT_ANALYSE * >::iterator &it)
Definition: mstruct_analyse_erosion.cpp:155
MSTRUCT_ANALYSE
Definition: mstruct_analyse.h:30
MSTRUCT_ANALYSE_EROSION::get_type
virtual long get_type(void)
Definition: mstruct_analyse_erosion.cpp:174
mstruct_analyse.h
MSTRUCT_ANALYSE_EROSION
Definition: mstruct_analyse_erosion.h:26
BOITE_3D
Definition: ot_boite_3d.h:27
MSTRUCT_ANALYSE_EROSION::ouvrir
virtual void ouvrir(std::ifstream &ifstrm)
Definition: mstruct_analyse_erosion.cpp:207
MSTRUCT_ANALYSE_EROSION::get_analyse
virtual MSTRUCT_ANALYSE * get_analyse(long num)
Definition: mstruct_analyse_erosion.cpp:169
MSTRUCT_ANALYSE_EROSION::enregistrer
virtual void enregistrer(std::ofstream &ofstrm)
Definition: mstruct_analyse_erosion.cpp:195
fonction_affiche
void fonction_affiche(char *)
Definition: fct_taille.h:28
MSTRUCT_ANALYSE_EROSION::MSTRUCT_ANALYSE_EROSION
MSTRUCT_ANALYSE_EROSION(void)
Definition: mstruct_analyse_erosion.cpp:33
MSTRUCT_ANALYSE_EROSION::executer
virtual void executer(void)
Definition: mstruct_analyse_erosion.cpp:179
MSTRUCT_ANALYSE_EROSION::exporter
virtual void exporter(std::ofstream &ofstrm, long i, bool avec_entete=false, bool avec_graph=false, char *prefix_graph=(char *)"")
Definition: mstruct_analyse_erosion.cpp:185