Flow123d  release_3.0.0-1111-g6aae175
output_msh.hh
Go to the documentation of this file.
1 /*!
2  *
3  * Copyright (C) 2015 Technical University of Liberec. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU General Public License version 3 as published by the
7  * Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12  *
13  *
14  * @file output_msh.h
15  * @brief Header: The functions for MSH (GMSH) outputs.
16  */
17 
18 #ifndef OUTPUT_MSH_HH_
19 #define OUTPUT_MSH_HH_
20 
21 #include <vector> // for vector
22 #include "output_time.hh" // for OutputTime::OutputDataPtr, OutputTime, Out...
23 namespace Input { namespace Type { class Record; } }
24 namespace flow { template <class T> class VectorId; }
25 
26 
27 /**
28  * \brief This class is used for output data to VTK file format
29  */
30 class OutputMSH : public OutputTime {
31 public:
33 
34  /**
35  * \brief The constructor of this class.
36  * We open the output file in first call of write_data
37  */
38  OutputMSH();
39 
40  /**
41  * \brief The destructor of this class
42  */
43  ~OutputMSH();
44 
45  /**
46  * \brief The definition of input record for gmsh file format
47  */
48  static const Input::Type::Record & get_input_type();
49 
50  /**
51  * \brief This method writes head of GMSH (.msh) file format
52  *
53  * \return This function returns 1
54  */
55  int write_head(void);
56 
57  /**
58  * \brief This method writes data to GMSH (.msh) file format for current time
59  *
60  * \return This function returns 1
61  */
62  int write_data(void);
63 
64  /**
65  * \brief This method should write tail of GMSH (.msh) file format
66  *
67  * It is stupid file format. It doesn't write anything special at the end of
68  * the file
69  *
70  * \return This function returns 1
71  */
72  int write_tail(void);
73 
74  /// Complete information about dummy fields that are not in output_data_list_.
75  void add_dummy_fields() override;
76 
77  /**
78  * Set shared pointers of output data caches.
79  */
80  void set_output_data_caches(std::shared_ptr<OutputMeshBase> mesh_ptr) override;
81 
82 private:
83 
84  /// Registrar of class to factory
85  static const int registrar;
86 
88 
89  /**
90  * EquationOutput force output of all output fields at the time zero.
91  * We keep this list to perform single elemnent/node output in order to have correct behavior in GMSH.
92  */
94 
95  /**
96  /**
97  * \brief This function write header of GMSH (.msh) file format
98  */
99  void write_msh_header(void);
100 
101  /**
102  * \brief This function writes geometry (position of nodes) to GMSH (.msh) file
103  * format
104  */
105  void write_msh_geometry(void);
106 
107  /**
108  * \brief This function writes topology (connection of nodes) to the GMSH (.msh)
109  * file format
110  */
111  void write_msh_topology(void);
112 
113  /**
114  * \brief This function writes ascii data to GMSH (.msh) output file.
115  *
116  * \param[in] id_cache Data cache of node or element ids.
117  * \param[in] output_data The pointer at structure storing pointer at own data.
118  * \param[in] discont Flag determines continuous or discontinuous mesh.
119  */
120  void write_msh_ascii_data(std::shared_ptr<ElementDataCache<unsigned int>> id_cache, OutputDataPtr output_data, bool discont = false);
121 
122  /**
123  * \brief This function write all data on nodes to output file. This function
124  * is used for static and dynamic data
125  *
126  * \param[in] time The time from start
127  * \param[in] step The number of steps from start
128  */
129  void write_node_data(OutputDataPtr output_data);
130  /**
131  * \brief writes ElementNode data ascii GMSH (.msh) output file.
132  *
133  */
134  void write_corner_data(OutputDataPtr output_data);
135 
136 
137  /**
138  * \brief This function write all data on elements to output file. This
139  * function is used for static and dynamic data
140  *
141  * \param[in] time The time from start
142  * \param[in] step The number of steps from start
143  */
144  void write_elem_data(OutputDataPtr output_data);
145 
146  /**
147  * \brief This method add right suffix to .msh GMSH file
148  */
149  void fix_base_file_name(void);
150 
151  /// Vector gets ids of nodes.
152  std::shared_ptr<ElementDataCache<unsigned int>> node_ids_;
153  /// Vector gets ids of elements.
154  std::shared_ptr<ElementDataCache<unsigned int>> elem_ids_;
155  /// Vector gets ids of regions.
156  std::shared_ptr<ElementDataCache<unsigned int>> region_ids_;
157  /// Vector gets partitions of elements.
158  std::shared_ptr<ElementDataCache<int>> partitions_;
159 };
160 
161 #endif /* OUTPUT_MSH_HH_ */
std::vector< std::vector< OutputDataPtr > > dummy_data_list_
Definition: output_msh.hh:93
static const int registrar
Registrar of class to factory.
Definition: output_msh.hh:85
Abstract linear system class.
Definition: balance.hh:35
OutputTime FactoryBaseType
Definition: output_msh.hh:32
Small extension of Vector<T> container with support to Id numbers.
Definition: output_msh.hh:24
bool header_written
Definition: output_msh.hh:87
The class for outputting data during time.
Definition: output_time.hh:50
Record type proxy class.
Definition: type_record.hh:182
This class is used for output data to VTK file format.
Definition: output_msh.hh:30