Dune Core Modules (2.7.0)

dgfoned.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_GRID_FILE_IO_DGFPARSER_DGFONED_HH
4#define DUNE_GRID_FILE_IO_DGFPARSER_DGFONED_HH
5
6//- C++ includes
7#include <algorithm>
8#include <fstream>
9#include <iostream>
10#include <istream>
11#include <vector>
12
13//- dune-common includes
15
16//- dune-grid includes
17#include <dune/grid/common/intersection.hh>
18#include <dune/grid/onedgrid.hh>
19
20//- local includes
21#include "dgfparser.hh"
22
23
24namespace
25{
26 // helper method used below
27 double getfirst ( std::vector< double > v )
28 {
29 return v[ 0 ];
30 }
31} // end anonymous namespace
32
33
34
35namespace Dune
36{
37
38 // DGFGridInfo
39 // -----------
40
41 template< >
42 struct DGFGridInfo< OneDGrid >
43 {
44 static int refineStepsForHalf ()
45 {
46 return 1;
47 }
48
49 static double refineWeight ()
50 {
51 return 0.5;
52 }
53 };
54
55
56
57 // DGFGridFactory< OneDGrid >
58 // --------------------------
59
60 template< >
61 struct DGFGridFactory< OneDGrid >
62 {
64 typedef OneDGrid Grid;
66 const static int dimension = Grid::dimension;
68 typedef MPIHelper::MPICommunicator MPICommunicatorType;
69
71 explicit DGFGridFactory ( std::istream &input,
72 MPICommunicatorType comm = MPIHelper::getCommunicator() )
73 : grid_( 0 ),
74 emptyParameters_( 0 )
75 {
76 generate( input, comm );
77 }
78
80 explicit DGFGridFactory ( const std::string &filename,
81 MPICommunicatorType comm = MPIHelper::getCommunicator() )
82 : grid_( 0 ),
83 emptyParameters_( 0 )
84 {
85 std::ifstream input( filename.c_str() );
86 generate( input, comm );
87 }
88
90 Grid *grid () const
91 {
92 return grid_;
93 }
94
96 template< class GG, class II >
97 bool wasInserted ( const Dune::Intersection< GG, II > &intersection ) const
98 {
99 return false;
100 }
101
102 template< class GG, class II >
103 int boundaryId ( const Dune::Intersection< GG, II > &intersection ) const
104 {
105 // OneDGrid returns boundary segment index;
106 // we return the index as the method boundaryId is deprecated
107 return intersection.boundarySegmentIndex();
108 }
109
111 template< class Entity >
112 int numParameters ( const Entity & ) const
113 {
114 return 0;
115 }
116
118 template< int codim >
119 int numParameters () const
120 {
121 return 0;
122 }
123
124 template< class Entity >
125 std::vector< double >& parameter ( const Entity &entity )
126 {
127 return parameter< Entity::codimension >( entity );
128 }
129
131 template< int codim >
132 std::vector< double > &parameter ( const typename Grid::Codim< codim >::Entity &element )
133 {
134 return emptyParameters_;
135 }
136
138 bool haveBoundaryParameters () const
139 {
140 return false;
141 }
142
144 template< class GG, class II >
145 const DGFBoundaryParameter::type &boundaryParameter ( const Dune::Intersection< GG, II > &intersection ) const
146 {
148 }
149
150 private:
151 // generate grid
152 void generate ( std::istream &input, MPICommunicatorType comm );
153
154 Grid *grid_;
155 std::vector< double > emptyParameters_;
156 };
157
158
159
160 // Implementation of DGFGridFactory< OneDGrid >
161 // --------------------------------------------
162
163 inline void DGFGridFactory< OneDGrid >::generate ( std::istream &input, MPICommunicatorType comm )
164 {
165 // try to open interval block
166 dgf::IntervalBlock intervalBlock( input );
167
168 // try to open vertex block
169 int dimensionworld = Grid::dimensionworld;
170 dgf::VertexBlock vertexBlock( input, dimensionworld );
171
172 // check at least one block is active
173 if( !( vertexBlock.isactive() || intervalBlock.isactive() ))
174 DUNE_THROW( DGFException, "No readable block found" );
175
176 std::vector< std::vector< double > > vertices;
177
178 // read vertices first
179 if( vertexBlock.isactive() )
180 {
181 int nparameter = 0;
182 std::vector< std::vector< double > > parameter;
183 vertexBlock.get( vertices, parameter, nparameter );
184
185 if( nparameter > 0 )
186 std::cerr << "Warning: vertex parameters will be ignored" << std::endl;
187 }
188
189 // get vertices from interval block
190 if ( intervalBlock.isactive() )
191 {
192 if( intervalBlock.dimw() != dimensionworld )
193 {
194 DUNE_THROW( DGFException, "Error: wrong coordinate dimension in interval block \
195 (got " << intervalBlock.dimw() << ", expected " << dimensionworld << ")" );
196 }
197
198 int nintervals = intervalBlock.numIntervals();
199 for( int i = 0; i < nintervals; ++i )
200 intervalBlock.getVtx( i, vertices );
201 }
202
203 // copy to vector of doubles
204 std::vector< double > vtx( vertices.size() );
205 transform( vertices.begin(), vertices.end(), vtx.begin(), getfirst );
206
207 // remove duplicates
208 std::sort( vtx.begin(), vtx.end() );
209 std::vector< double >::iterator it = std::unique( vtx.begin(), vtx.end() );
210 vtx.erase( it, vtx.end() );
211 if( vertices.size() != vtx.size() )
212 std::cerr << "Warning: removed duplicate vertices" << std::endl;
213
214 // create grid
215 grid_ = new OneDGrid( vtx );
216 }
217
218} // end namespace Dune
219
220#endif // #ifndef DUNE_GRID_FILE_IO_DGFPARSER_DGFONED_HH
@ dimensionworld
The dimension of the world the grid lives in.
Definition: grid.hh:393
@ dimension
The dimension of the grid.
Definition: grid.hh:387
Intersection of a mesh entity of codimension 0 ("element") with a "neighboring" element or with the d...
Definition: intersection.hh:162
size_t boundarySegmentIndex() const
index of the boundary segment within the macro grid
Definition: intersection.hh:246
MPI_Comm MPICommunicator
The type of the mpi communicator.
Definition: mpihelper.hh:182
static MPICommunicator getCommunicator()
get the default communicator
Definition: mpihelper.hh:190
A few common exception classes.
#define DUNE_THROW(E, m)
Definition: exceptions.hh:216
Dune namespace.
Definition: alignedallocator.hh:14
The OneDGrid class.
static const type & defaultValue()
default constructor
Definition: parser.hh:26
std::string type
type of additional boundary parameters
Definition: parser.hh:23
static double refineWeight()
static int refineStepsForHalf()
number of globalRefine steps needed to refuce h by 0.5
GridFamily::Traits::template Codim< cd >::Entity Entity
A type that is a model of a Dune::Entity<cd,dim,...>.
Definition: grid.hh:423
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)