Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/PDE/CGPDE.hpp
4 : : \copyright 2012-2015 J. Bakosi,
5 : : 2016-2018 Los Alamos National Security, LLC.,
6 : : 2019-2021 Triad National Security, LLC.
7 : : All rights reserved. See the LICENSE file for details.
8 : : \brief Partial differential equation base for continuous Galerkin PDEs
9 : : \details This file defines a generic partial differential equation (PDE)
10 : : class for PDEs that use continuous Galerkin spatial discretization.
11 : : The class uses runtime polymorphism without client-side inheritance:
12 : : inheritance is confined to the internals of the class, invisible to
13 : : client-code. The class exclusively deals with ownership enabling client-side
14 : : value semantics. Credit goes to Sean Parent at Adobe:
15 : : https://github.com/sean-parent/sean-parent.github.com/wiki/
16 : : Papers-and-Presentations.
17 : : */
18 : : // *****************************************************************************
19 : : #ifndef CGPDE_h
20 : : #define CGPDE_h
21 : :
22 : : #include <array>
23 : : #include <string>
24 : : #include <vector>
25 : : #include <functional>
26 : : #include <memory>
27 : : #include <unordered_set>
28 : : #include <unordered_map>
29 : :
30 : : #include "Types.hpp"
31 : : #include "Fields.hpp"
32 : : #include "UnsMesh.hpp"
33 : : #include "FunctionPrototypes.hpp"
34 : : #include "Mesh/CommMap.hpp"
35 : : #include "History.hpp"
36 : : #include "Table.hpp"
37 : :
38 : : namespace inciter {
39 : :
40 : : namespace cg {
41 : :
42 : : using ncomp_t = kw::ncomp::info::expect::type;
43 : :
44 : : //! \brief Evaluate the increment from t to t+dt of an analytical solution at
45 : : //! (x,y,z) for all components
46 : : std::vector< tk::real >
47 : : solinc( tk::ncomp_t system, tk::ncomp_t ncomp, tk::real x, tk::real y,
48 : : tk::real z, tk::real t, tk::real dt, tk::InitializeFn solution );
49 : :
50 : : //! Compute boundary point normals
51 : : std::unordered_map< int,
52 : : std::unordered_map< std::size_t, std::array< tk::real, 4 > > >
53 : : bnorm( const std::map< int, std::vector< std::size_t > >& bface,
54 : : const std::vector< std::size_t >& triinpoel,
55 : : const std::array< std::vector< tk::real >, 3 >& coord,
56 : : const std::vector< std::size_t >& gid,
57 : : const std::unordered_map< int,
58 : : std::unordered_set< std::size_t > >& bcnodes );
59 : :
60 : : } // cg::
61 : :
62 : : //! \brief Partial differential equation base for continuous Galerkin PDEs
63 : : //! \details This class uses runtime polymorphism without client-side
64 : : //! inheritance: inheritance is confined to the internals of the this class,
65 : : //! invisible to client-code. The class exclusively deals with ownership
66 : : //! enabling client-side value semantics. Credit goes to Sean Parent at Adobe:
67 : : //! https://github.com/sean-parent/sean-parent.github.com/wiki/
68 : : //! Papers-and-Presentations. For example client code that models a CGPDE,
69 : : //! see inciter::CompFlow.
70 : 393 : class CGPDE {
71 : :
72 : : private:
73 : : using ncomp_t = kw::ncomp::info::expect::type;
74 : : using real = tk::real;
75 : :
76 : : public:
77 : : //! Default constructor taking no arguments for Charm++
78 : : explicit CGPDE() = default;
79 : :
80 : : //! Constructor taking an object modeling Concept.
81 : : //! \details The object of class T comes pre-constructed.
82 : : //! \param[in] x Instantiated object of type T given by the template
83 : : //! argument.
84 : : template< typename T > explicit CGPDE( T x ) :
85 : : self( std::make_unique< Model<T> >( std::move(x) ) ) {}
86 : :
87 : : //! \brief Constructor taking a function pointer to a constructor of an
88 : : //! object modeling Concept.
89 : : //! \details Passing std::function allows late execution of the constructor,
90 : : //! i.e., as late as inside this class' constructor, and thus usage from
91 : : //! a factory. Note that there are at least two different ways of using
92 : : //! this constructor:
93 : : //! - Bind T's constructor arguments and place it in std::function<T()>
94 : : //! and passing no arguments as args.... This case then instantiates the
95 : : //! model via its constructor and stores it in here.
96 : : //! - Bind a single placeholder argument to T's constructor and pass it in
97 : : //! as host's args..., which then forwards it to model's constructor. This
98 : : //! allows late binding, i.e., binding the argument only here.
99 : : //! \see See also the wrapper tk::recordModel() which does the former and
100 : : //! tk::recordModelLate() which does the latter, both defined in
101 : : //! src/Base/Factory.h.
102 : : //! \param[in] x Function pointer to a constructor of an object modeling
103 : : //! Concept.
104 : : //! \param[in] args Zero or more constructor arguments
105 : : template< typename T, typename...Args >
106 [ - + ]: 393 : explicit CGPDE( std::function<T(Args...)> x, Args&&... args ) :
107 : : self( std::make_unique< Model<T> >(
108 [ + - ]: 393 : std::move( x( std::forward<Args>(args)... ) ) ) ) {}
109 : :
110 : : //! Public interface to determining which nodes are in IC box
111 : : void IcBoxNodes( const tk::UnsMesh::Coords& coord,
112 : : std::vector< std::unordered_set< std::size_t > >& inbox )
113 : 1188 : { self->IcBoxNodes( coord, inbox ); }
114 : :
115 : : //! Public interface to setting the initial conditions for the diff eq
116 : : void initialize(
117 : : const std::array< std::vector< real >, 3 >& coord,
118 : : tk::Fields& unk,
119 : : real t,
120 : : real V,
121 : : const std::vector< std::unordered_set< std::size_t > >& inbox )
122 [ + - ][ + - ]: 3457 : { self->initialize( coord, unk, t, V, inbox ); }
123 : :
124 : : //! Public interface to querying a velocity
125 : : void velocity( const tk::Fields& u, tk::UnsMesh::Coords& v ) const
126 [ + - ]: 47340 : { self->velocity(u,v); }
127 : :
128 : : //! Public interface to querying a sound speed
129 : : void soundspeed( const tk::Fields& u, std::vector< tk::real >& s ) const
130 [ + - ]: 47340 : { self->soundspeed(u,s); }
131 : :
132 : : //! Public interface to computing the nodal gradients for ALECG
133 : : void chBndGrad( const std::array< std::vector< real >, 3 >& coord,
134 : : const std::vector< std::size_t >& inpoel,
135 : : const std::vector< std::size_t >& bndel,
136 : : const std::vector< std::size_t >& gid,
137 : : const std::unordered_map< std::size_t, std::size_t >& bid,
138 : : const tk::Fields& U,
139 : : tk::Fields& G ) const
140 : 46806 : { self->chBndGrad( coord, inpoel, bndel, gid, bid, U, G ); }
141 : :
142 : : //! Public interface to computing the right-hand side vector for DiagCG
143 : : void rhs( real t,
144 : : real deltat,
145 : : const std::array< std::vector< real >, 3 >& coord,
146 : : const std::vector< std::size_t >& inpoel,
147 : : const tk::Fields& U,
148 : : tk::Fields& Ue,
149 : : tk::Fields& R ) const
150 : 18283 : { self->rhs( t, deltat, coord, inpoel, U, Ue, R ); }
151 : :
152 : : //! Public interface to computing the right-hand side vector for ALECG
153 : : void rhs(
154 : : real t,
155 : : const std::array< std::vector< real >, 3 >& coord,
156 : : const std::vector< std::size_t >& inpoel,
157 : : const std::vector< std::size_t >& triinpoel,
158 : : const std::vector< std::size_t >& gid,
159 : : const std::unordered_map< std::size_t, std::size_t >& bid,
160 : : const std::unordered_map< std::size_t, std::size_t >& lid,
161 : : const std::vector< real >& dfn,
162 : : const std::pair< std::vector< std::size_t >,
163 : : std::vector< std::size_t > >& psup,
164 : : const std::pair< std::vector< std::size_t >,
165 : : std::vector< std::size_t > >& esup,
166 : : const std::vector< int >& symbctri,
167 : : const std::unordered_set< std::size_t >& spongenodes,
168 : : const std::vector< real >& vol,
169 : : const std::vector< std::size_t >& edgenode,
170 : : const std::vector< std::size_t >& edgeid,
171 : : const std::vector< std::unordered_set< std::size_t > >& boxnodes,
172 : : const tk::Fields& G,
173 : : const tk::Fields& U,
174 : : const tk::Fields& W,
175 : : const std::vector< real >& tp,
176 : : real V,
177 : : tk::Fields& R ) const
178 : 46806 : { self->rhs( t, coord, inpoel, triinpoel, gid, bid, lid, dfn, psup,
179 : : esup, symbctri, spongenodes, vol, edgenode, edgeid,
180 : 46806 : boxnodes, G, U, W, tp, V, R ); }
181 : :
182 : : //! Public interface for computing the minimum time step size
183 : : real dt( const std::array< std::vector< real >, 3 >& coord,
184 : : const std::vector< std::size_t >& inpoel,
185 : : tk::real t,
186 : : tk::real dtn,
187 : : const tk::Fields& U,
188 : : const std::vector< tk::real >& vol,
189 : : const std::vector< tk::real >& voln ) const
190 : 23275 : { return self->dt( coord, inpoel, t, dtn, U, vol, voln ); }
191 : :
192 : : //! Public interface for computing a time step size for each mesh node
193 : : void dt( uint64_t it,
194 : : const std::vector< real >& vol,
195 : : const tk::Fields& U,
196 : : std::vector< real >& dtp ) const
197 : 200 : { self->dt( it, vol, U, dtp ); }
198 : :
199 : : //! \brief Public interface for querying Dirichlet boundary condition values
200 : : //! set by the user on a given side set for all components in a PDE system
201 : : std::map< std::size_t, std::vector< std::pair<bool,real> > >
202 : : dirbc( real t,
203 : : real deltat,
204 : : const std::vector< real >& tp,
205 : : const std::vector< real >& dtp,
206 : : const std::pair< const int, std::vector< std::size_t > >& sides,
207 : : const std::array< std::vector< real >, 3 >& coord,
208 : : bool increment ) const
209 [ + - ]: 111917 : { return self->dirbc( t, deltat, tp, dtp, sides, coord, increment ); }
210 : :
211 : : //! Public interface to set symmetry boundary conditions at nodes
212 : : void
213 : : symbc( tk::Fields& U,
214 : : const std::array< std::vector< real >, 3 >& coord,
215 : : const std::unordered_map< int,
216 : : std::unordered_map< std::size_t,
217 : : std::array< real, 4 > > >& bnorm,
218 : : const std::unordered_set< std::size_t >& nodes ) const
219 [ + - ][ + - ]: 99084 : { self->symbc( U, coord, bnorm, nodes ); }
[ + - ]
220 : :
221 : : //! Public interface to set farfield boundary conditions at nodes
222 : : void
223 : : farfieldbc( tk::Fields& U,
224 : : const std::array< std::vector< real >, 3 >& coord,
225 : : const std::unordered_map< int,
226 : : std::unordered_map< std::size_t,
227 : : std::array< real, 4 > > >& bnorm,
228 : : const std::unordered_set< std::size_t >& nodes ) const
229 [ + - ][ + - ]: 99084 : { self->farfieldbc( U, coord, bnorm, nodes ); }
230 : :
231 : : //! Public interface to applying sponge conditions at nodes
232 : : void
233 : : sponge( tk::Fields& U,
234 : : const std::array< std::vector< real >, 3 >& coord,
235 : : const std::unordered_set< std::size_t >& nodes ) const
236 : 47340 : { self->sponge( U, coord, nodes ); }
237 : :
238 : : //! Public interface to applying time dependent boundary conditions at nodes
239 : : void
240 : : timedepbc( tk::real t,
241 : : tk::Fields& U,
242 : : const std::vector< std::unordered_set< std::size_t > >& nodes,
243 : : const std::vector< tk::Table<5> >& timedepfn ) const
244 : 47340 : { self->timedepbc( t, U, nodes, timedepfn ); }
245 : :
246 : : //! Public interface to returning analytic field output labels
247 : : std::vector< std::string > analyticFieldNames() const
248 : 3299 : { return self->analyticFieldNames(); }
249 : :
250 : : //! Public interface to returning surface field output labels
251 [ + - ]: 3619 : std::vector< std::string > surfNames() const { return self->surfNames(); }
252 : :
253 : : //! Public interface to returning time history field output labels
254 [ + - ]: 28 : std::vector< std::string > histNames() const { return self->histNames(); }
255 : :
256 : : //! Public interface to returning variable names
257 : : std::vector< std::string > names() const { return self->names(); }
258 : :
259 : : //! Public interface to returning surface field output
260 : : std::vector< std::vector< real > >
261 : : surfOutput( const std::map< int, std::vector< std::size_t > >& bnd,
262 : : const tk::Fields& U ) const
263 [ + - ]: 3619 : { return self->surfOutput( bnd, U ); }
264 : :
265 : : //! Public interface to returning time history output
266 : : std::vector< std::vector< real > >
267 : : histOutput( const std::vector< HistData >& h,
268 : : const std::vector< std::size_t >& inpoel,
269 : : const tk::Fields& U ) const
270 [ + - ]: 898 : { return self->histOutput( h, inpoel, U ); }
271 : :
272 : : //! Public interface to returning analytic solution
273 : : tk::InitializeFn::result_type
274 : : analyticSolution( real xi, real yi, real zi, real t ) const
275 : 554044 : { return self->analyticSolution( xi, yi, zi, t ); }
276 : :
277 : : //! Public interface to returning the analytic solution for conserved vars
278 : : tk::InitializeFn::result_type
279 : : solution( tk::real xi, tk::real yi, tk::real zi, tk::real t ) const
280 [ + - ]: 5569714 : { return self->solution( xi, yi, zi, t ); }
281 : :
282 : : //! Copy assignment
283 : : CGPDE& operator=( const CGPDE& x )
284 : : { CGPDE tmp(x); *this = std::move(tmp); return *this; }
285 : : //! Copy constructor
286 : : CGPDE( const CGPDE& x ) : self( x.self->copy() ) {}
287 : : //! Move assignment
288 : : CGPDE& operator=( CGPDE&& ) noexcept = default;
289 : : //! Move constructor
290 [ - - ]: 0 : CGPDE( CGPDE&& ) noexcept = default;
291 : :
292 : : private:
293 : : //! \brief Concept is a pure virtual base class specifying the requirements
294 : : //! of polymorphic objects deriving from it
295 : : struct Concept {
296 : : Concept() = default;
297 : 0 : Concept( const Concept& ) = default;
298 : : virtual ~Concept() = default;
299 : : virtual Concept* copy() const = 0;
300 : : virtual void IcBoxNodes( const tk::UnsMesh::Coords&,
301 : : std::vector< std::unordered_set< std::size_t > >& inbox ) = 0;
302 : : virtual void initialize(
303 : : const std::array< std::vector< real >, 3 >&,
304 : : tk::Fields&,
305 : : real,
306 : : real,
307 : : const std::vector< std::unordered_set< std::size_t > >& ) = 0;
308 : : virtual void velocity( const tk::Fields&, tk::UnsMesh::Coords& )
309 : : const = 0;
310 : : virtual void soundspeed( const tk::Fields&, std::vector< tk::real >& )
311 : : const = 0;
312 : : virtual void chBndGrad( const std::array< std::vector< real >, 3 >&,
313 : : const std::vector< std::size_t >&,
314 : : const std::vector< std::size_t >&,
315 : : const std::vector< std::size_t >&,
316 : : const std::unordered_map< std::size_t, std::size_t >&,
317 : : const tk::Fields&,
318 : : tk::Fields& ) const = 0;
319 : : virtual void rhs( real,
320 : : real,
321 : : const std::array< std::vector< real >, 3 >&,
322 : : const std::vector< std::size_t >&,
323 : : const tk::Fields&,
324 : : tk::Fields&,
325 : : tk::Fields& ) const = 0;
326 : : virtual void rhs(
327 : : real,
328 : : const std::array< std::vector< real >, 3 >&,
329 : : const std::vector< std::size_t >&,
330 : : const std::vector< std::size_t >&,
331 : : const std::vector< std::size_t >&,
332 : : const std::unordered_map< std::size_t, std::size_t >&,
333 : : const std::unordered_map< std::size_t, std::size_t >&,
334 : : const std::vector< real >&,
335 : : const std::pair< std::vector< std::size_t >,
336 : : std::vector< std::size_t > >&,
337 : : const std::pair< std::vector< std::size_t >,
338 : : std::vector< std::size_t > >&,
339 : : const std::vector< int >&,
340 : : const std::unordered_set< std::size_t >&,
341 : : const std::vector< real >&,
342 : : const std::vector< std::size_t >&,
343 : : const std::vector< std::size_t >&,
344 : : const std::vector< std::unordered_set< std::size_t > >&,
345 : : const tk::Fields&,
346 : : const tk::Fields&,
347 : : const tk::Fields&,
348 : : const std::vector< real >&,
349 : : real,
350 : : tk::Fields& ) const = 0;
351 : : virtual real dt( const std::array< std::vector< real >, 3 >&,
352 : : const std::vector< std::size_t >&,
353 : : tk::real,
354 : : tk::real,
355 : : const tk::Fields&,
356 : : const std::vector< tk::real >& ,
357 : : const std::vector< tk::real >& ) const = 0;
358 : : virtual void dt( uint64_t,
359 : : const std::vector< real > &,
360 : : const tk::Fields&,
361 : : std::vector< real >& ) const = 0;
362 : : virtual std::map< std::size_t, std::vector< std::pair<bool,real> > >
363 : : dirbc( real,
364 : : real,
365 : : const std::vector< real >&,
366 : : const std::vector< real >&,
367 : : const std::pair< const int, std::vector< std::size_t > >&,
368 : : const std::array< std::vector< real >, 3 >&,
369 : : bool ) const = 0;
370 : : virtual void symbc(
371 : : tk::Fields& U,
372 : : const std::array< std::vector< real >, 3 >&,
373 : : const std::unordered_map< int,
374 : : std::unordered_map< std::size_t,
375 : : std::array< real, 4 > > >&,
376 : : const std::unordered_set< std::size_t >& ) const = 0;
377 : : virtual void farfieldbc(
378 : : tk::Fields&,
379 : : const std::array< std::vector< real >, 3 >&,
380 : : const std::unordered_map< int,
381 : : std::unordered_map< std::size_t,
382 : : std::array< real, 4 > > >&,
383 : : const std::unordered_set< std::size_t >& ) const = 0;
384 : : virtual void sponge(
385 : : tk::Fields&,
386 : : const std::array< std::vector< real >, 3 >&,
387 : : const std::unordered_set< std::size_t >& ) const = 0;
388 : : virtual void timedepbc(
389 : : tk::real,
390 : : tk::Fields&,
391 : : const std::vector< std::unordered_set< std::size_t > >&,
392 : : const std::vector< tk::Table<5> >& ) const = 0;
393 : : virtual std::vector< std::string > analyticFieldNames() const = 0;
394 : : virtual std::vector< std::string > surfNames() const = 0;
395 : : virtual std::vector< std::string > histNames() const = 0;
396 : : virtual std::vector< std::string > names() const = 0;
397 : : virtual std::vector< std::vector< real > > surfOutput(
398 : : const std::map< int, std::vector< std::size_t > >&,
399 : : const tk::Fields& ) const = 0;
400 : : virtual std::vector< std::vector< real > > histOutput(
401 : : const std::vector< HistData >&,
402 : : const std::vector< std::size_t >&,
403 : : const tk::Fields& ) const = 0;
404 : : virtual tk::InitializeFn::result_type analyticSolution(
405 : : real xi, real yi, real zi, real t ) const = 0;
406 : : virtual tk::InitializeFn::result_type solution(
407 : : tk::real xi, tk::real yi, tk::real zi, tk::real t ) const = 0;
408 : : };
409 : :
410 : : //! \brief Model models the Concept above by deriving from it and overriding
411 : : //! the virtual functions required by Concept
412 : : template< typename T >
413 [ - - ][ - - ]: 0 : struct Model : Concept {
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
414 [ - - ][ - - ]: 393 : explicit Model( T x ) : data( std::move(x) ) {}
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ + - ][ + - ]
[ + - ][ + - ]
[ + - ][ + - ]
415 : 0 : Concept* copy() const override { return new Model( *this ); }
416 : 1188 : void IcBoxNodes( const tk::UnsMesh::Coords& coord,
417 : : std::vector< std::unordered_set< std::size_t > >& inbox )
418 : 1188 : override { data.IcBoxNodes( coord, inbox ); }
419 : 3457 : void initialize(
420 : : const std::array< std::vector< real >, 3 >& coord,
421 : : tk::Fields& unk,
422 : : real t,
423 : : real V,
424 : : const std::vector< std::unordered_set< std::size_t > >& inbox )
425 : 3457 : override { data.initialize( coord, unk, t, V, inbox ); }
426 : 47340 : void velocity( const tk::Fields& u, tk::UnsMesh::Coords& v ) const
427 : 47340 : override { data.velocity(u,v); }
428 : 47340 : void soundspeed( const tk::Fields& u, std::vector< tk::real >& s ) const
429 : 47340 : override { data.soundspeed(u,s); }
430 : 46806 : void chBndGrad( const std::array< std::vector< real >, 3 >& coord,
431 : : const std::vector< std::size_t >& inpoel,
432 : : const std::vector< std::size_t >& bndel,
433 : : const std::vector< std::size_t >& gid,
434 : : const std::unordered_map< std::size_t, std::size_t >& bid,
435 : : const tk::Fields& U,
436 : : tk::Fields& G ) const override
437 : 46806 : { data.chBndGrad( coord, inpoel, bndel, gid, bid, U, G ); }
438 : 18283 : void rhs( real t,
439 : : real deltat,
440 : : const std::array< std::vector< real >, 3 >& coord,
441 : : const std::vector< std::size_t >& inpoel,
442 : : const tk::Fields& U,
443 : : tk::Fields& Ue,
444 : : tk::Fields& R ) const override
445 : 18283 : { data.rhs( t, deltat, coord, inpoel, U, Ue, R ); }
446 : 46806 : void rhs(
447 : : real t,
448 : : const std::array< std::vector< real >, 3 >& coord,
449 : : const std::vector< std::size_t >& inpoel,
450 : : const std::vector< std::size_t >& triinpoel,
451 : : const std::vector< std::size_t >& gid,
452 : : const std::unordered_map< std::size_t, std::size_t >& bid,
453 : : const std::unordered_map< std::size_t, std::size_t >& lid,
454 : : const std::vector< real >& dfn,
455 : : const std::pair< std::vector< std::size_t >,
456 : : std::vector< std::size_t > >& psup,
457 : : const std::pair< std::vector< std::size_t >,
458 : : std::vector< std::size_t > >& esup,
459 : : const std::vector< int >& symbctri,
460 : : const std::unordered_set< std::size_t >& spongenodes,
461 : : const std::vector< real >& vol,
462 : : const std::vector< std::size_t >& edgenode,
463 : : const std::vector< std::size_t >& edgeid,
464 : : const std::vector< std::unordered_set< std::size_t > >& boxnodes,
465 : : const tk::Fields& G,
466 : : const tk::Fields& U,
467 : : const tk::Fields& W,
468 : : const std::vector< real >& tp,
469 : : real V,
470 : : tk::Fields& R ) const override
471 : 46806 : { data.rhs( t, coord, inpoel, triinpoel, gid, bid, lid, dfn, psup,
472 : : esup, symbctri, spongenodes, vol, edgenode,
473 : 46806 : edgeid, boxnodes, G, U, W, tp, V, R ); }
474 : 23275 : real dt( const std::array< std::vector< real >, 3 >& coord,
475 : : const std::vector< std::size_t >& inpoel,
476 : : tk::real t,
477 : : tk::real dtn,
478 : : const tk::Fields& U,
479 : : const std::vector< tk::real >& vol,
480 : : const std::vector< tk::real >& voln ) const override
481 : 23275 : { return data.dt( coord, inpoel, t, dtn, U, vol, voln ); }
482 : 200 : void dt( uint64_t it,
483 : : const std::vector< real > & vol,
484 : : const tk::Fields& U,
485 : : std::vector< real >& dtp ) const override
486 : 200 : { data.dt( it, vol, U, dtp ); }
487 : : std::map< std::size_t, std::vector< std::pair<bool,real> > >
488 : 111917 : dirbc( real t,
489 : : real deltat,
490 : : const std::vector< real >& tp,
491 : : const std::vector< real >& dtp,
492 : : const std::pair< const int, std::vector< std::size_t > >& sides,
493 : : const std::array< std::vector< real >, 3 >& coord,
494 : : bool increment ) const
495 : : override { return data.dirbc( t, deltat, tp, dtp, sides, coord,
496 : 111917 : increment ); }
497 : 135650 : void symbc(
498 : : tk::Fields& U,
499 : : const std::array< std::vector< real >, 3 >& coord,
500 : : const std::unordered_map< int,
501 : : std::unordered_map< std::size_t,
502 : : std::array< real, 4 > > >& bnorm,
503 : : const std::unordered_set< std::size_t >& nodes ) const override
504 : 135650 : { data.symbc( U, coord, bnorm, nodes ); }
505 : 117367 : void farfieldbc(
506 : : tk::Fields& U,
507 : : const std::array< std::vector< real >, 3 >& coord,
508 : : const std::unordered_map< int,
509 : : std::unordered_map< std::size_t,
510 : : std::array< real, 4 > > >& bnorm,
511 : : const std::unordered_set< std::size_t >& nodes ) const override
512 : 117367 : { data.farfieldbc( U, coord, bnorm, nodes ); }
513 : 47340 : void sponge(
514 : : tk::Fields& U,
515 : : const std::array< std::vector< real >, 3 >& coord,
516 : : const std::unordered_set< std::size_t >& nodes ) const override
517 : 47340 : { data.sponge( U, coord, nodes ); }
518 : : void
519 : 47340 : timedepbc(
520 : : tk::real t,
521 : : tk::Fields& U,
522 : : const std::vector< std::unordered_set< std::size_t > >& nodes,
523 : : const std::vector< tk::Table<5> >& timedepfn ) const override
524 : 47340 : { data.timedepbc( t, U, nodes, timedepfn ); }
525 : 3299 : std::vector< std::string > analyticFieldNames() const override
526 : 3299 : { return data.analyticFieldNames(); }
527 : 3619 : std::vector< std::string > surfNames() const override
528 : 3619 : { return data.surfNames(); }
529 : 28 : std::vector< std::string > histNames() const override
530 : 28 : { return data.histNames(); }
531 : 137 : std::vector< std::string > names() const override
532 : 137 : { return data.names(); }
533 : 3619 : std::vector< std::vector< real > > surfOutput(
534 : : const std::map< int, std::vector< std::size_t > >& bnd,
535 : : const tk::Fields& U ) const override
536 : 3619 : { return data.surfOutput( bnd, U ); }
537 : 898 : std::vector< std::vector< real > > histOutput(
538 : : const std::vector< HistData >& h,
539 : : const std::vector< std::size_t >& inpoel,
540 : : const tk::Fields& U ) const override
541 : 898 : { return data.histOutput( h, inpoel, U ); }
542 : : tk::InitializeFn::result_type
543 : 554044 : analyticSolution( real xi, real yi, real zi, real t )
544 : 554044 : const override { return data.analyticSolution( xi, yi, zi, t ); }
545 : : tk::InitializeFn::result_type
546 : 5569714 : solution( real xi, real yi, real zi, real t )
547 : 5569714 : const override { return data.solution( xi, yi, zi, t ); }
548 : : T data;
549 : : };
550 : :
551 : : std::unique_ptr< Concept > self; //!< Base pointer used polymorphically
552 : : };
553 : :
554 : : } // inciter::
555 : :
556 : : #endif // CGPDE_h
|