TrioCFD 1.9.8
TrioCFD documentation
Loading...
Searching...
No Matches
DebogFT.h
1/****************************************************************************
2* Copyright (c) 2022, CEA
3* All rights reserved.
4*
5* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9*
10* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
11* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
12* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13*
14*****************************************************************************/
15#ifndef DebogFT_included
16#define DebogFT_included
17#include <Interprete.h>
18#include <EFichier.h>
19#include <SFichier.h>
20#include <TRUSTTabs_forward.h>
21
23
24
25/*! @brief : class DebogIJK
26 *
27 * <Description of class DebogIJK>
28 *
29 *
30 *
31 */
32class DebogFT : public Interprete
33{
34 Declare_instanciable(DebogFT) ;
35public :
36 Entree& interpreter(Entree&) override;
38 static void verifier_maillage_ft(const char *msg, const Maillage_FT_Disc&);
39 static void verifier_tableau_sommets(const char *msg, const Maillage_FT_Disc&, const ArrOfDouble&);
40 static void verifier_tableau_sommets(const char *msg, const Maillage_FT_Disc&, const DoubleTab&);
41 static void verifier(const double);
42protected :
43 static void verifier_(const char *msg, const ArrOfDouble& sig);
45 static int debog_mode_;
46 static Nom filename_;
49 static void compute_signature_sommets(const Maillage_FT_Disc&, const ArrOfDouble& data, ArrOfDouble& signature);
50};
51#endif /* DebogIJK_included */
: class DebogIJK
Definition DebogFT.h:33
static SFichier outfile_
Definition DebogFT.h:48
Entree & interpreter(Entree &) override
Definition DebogFT.cpp:40
DebogMode
Definition DebogFT.h:37
@ CHECK_PASS
Definition DebogFT.h:37
@ WRITE_PASS
Definition DebogFT.h:37
@ DISABLED
Definition DebogFT.h:37
static void compute_signature_sommets(const Maillage_FT_Disc &, const ArrOfDouble &data, ArrOfDouble &signature)
Definition DebogFT.cpp:72
static void verifier(const double)
static double seuil_minimum_relatif_
Definition DebogFT.h:44
static int debog_mode_
Definition DebogFT.h:45
static Nom filename_
Definition DebogFT.h:46
static void verifier_(const char *msg, const ArrOfDouble &sig)
Definition DebogFT.cpp:146
static double seuil_absolu_
Definition DebogFT.h:44
static double seuil_relatif_
Definition DebogFT.h:44
static EFichier infile_
Definition DebogFT.h:47
static void verifier_tableau_sommets(const char *msg, const Maillage_FT_Disc &, const ArrOfDouble &)
Definition DebogFT.cpp:114
static void verifier_maillage_ft(const char *msg, const Maillage_FT_Disc &)
Definition DebogFT.cpp:103
Fichier en lecture Cette classe est a la classe C++ ifstream ce que la classe Entree est a la.
Definition EFichier.h:29
Classe de base des objets "interprete".
Definition Interprete.h:38
: class Maillage_FT_Disc Cette classe decrit un maillage:
class Nom Une chaine de caractere pour nommer les objets de TRUST
Definition Nom.h:31
friend class Entree
Definition Objet_U.h:76
Cette classe est a la classe C++ ofstream ce que la classe Sortie est a la classe C++ ostream Elle re...
Definition SFichier.h:27