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 = tk::ncomp_t;
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 ncomp, const std::vector< EOS >&, 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 : 315 : class CGPDE {
71 : :
72 : : private:
73 : : using ncomp_t = tk::ncomp_t;
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 [ - + ]: 311 : explicit CGPDE( std::function<T(Args...)> x, Args&&... args ) :
107 : : self( std::make_unique< Model<T> >(
108 [ + - ]: 311 : 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 : : const std::vector< std::size_t >& inpoel,
113 : : const std::unordered_map< std::size_t, std::set< std::size_t > >& elemblkid,
114 : : std::vector< std::unordered_set< std::size_t > >& inbox,
115 : : std::unordered_map< std::size_t, std::set< std::size_t > >& nodeblkid,
116 : : std::size_t& nuserblk )
117 : 828 : { self->IcBoxNodes( coord, inpoel, elemblkid, inbox, nodeblkid, nuserblk );
118 : : }
119 : :
120 : : //! Public interface to setting the initial conditions for the diff eq
121 : : void initialize(
122 : : const std::array< std::vector< real >, 3 >& coord,
123 : : tk::Fields& unk,
124 : : real t,
125 : : real V,
126 : : const std::vector< std::unordered_set< std::size_t > >& inbox,
127 : : const std::vector< tk::real >& blkvols,
128 : : const std::unordered_map< std::size_t, std::set< std::size_t > >&
129 : : nodeblkid )
130 [ + - ][ + - ]: 1010 : { self->initialize( coord, unk, t, V, inbox, blkvols, nodeblkid ); }
131 : :
132 : : //! Public interface to querying a velocity
133 : : void velocity( const tk::Fields& u, tk::UnsMesh::Coords& v ) const
134 [ + - ]: 41542 : { self->velocity(u,v); }
135 : :
136 : : //! Public interface to querying a sound speed
137 : : void soundspeed( const tk::Fields& u, std::vector< tk::real >& s ) const
138 [ + - ]: 41542 : { self->soundspeed(u,s); }
139 : :
140 : : //! Public interface to computing the nodal gradients for ALECG
141 : : void chBndGrad( const std::array< std::vector< real >, 3 >& coord,
142 : : const std::vector< std::size_t >& inpoel,
143 : : const std::vector< std::size_t >& bndel,
144 : : const std::vector< std::size_t >& gid,
145 : : const std::unordered_map< std::size_t, std::size_t >& bid,
146 : : const tk::Fields& U,
147 : : tk::Fields& G ) const
148 : 50001 : { self->chBndGrad( coord, inpoel, bndel, gid, bid, U, G ); }
149 : :
150 : : //! Public interface to computing the right-hand side vector for ALECG
151 : : void rhs(
152 : : real t,
153 : : const std::array< std::vector< real >, 3 >& coord,
154 : : const std::vector< std::size_t >& inpoel,
155 : : const std::vector< std::size_t >& triinpoel,
156 : : const std::vector< std::size_t >& gid,
157 : : const std::unordered_map< std::size_t, std::size_t >& bid,
158 : : const std::unordered_map< std::size_t, std::size_t >& lid,
159 : : const std::vector< real >& dfn,
160 : : const std::pair< std::vector< std::size_t >,
161 : : std::vector< std::size_t > >& psup,
162 : : const std::pair< std::vector< std::size_t >,
163 : : std::vector< std::size_t > >& esup,
164 : : const std::vector< int >& symbctri,
165 : : const std::vector< real >& vol,
166 : : const std::vector< std::size_t >& edgenode,
167 : : const std::vector< std::size_t >& edgeid,
168 : : const std::vector< std::unordered_set< std::size_t > >& boxnodes,
169 : : const tk::Fields& G,
170 : : const tk::Fields& U,
171 : : const tk::Fields& W,
172 : : const std::vector< real >& tp,
173 : : real V,
174 : : tk::Fields& R ) const
175 : 50001 : { self->rhs( t, coord, inpoel, triinpoel, gid, bid, lid, dfn, psup,
176 : : esup, symbctri, vol, edgenode, edgeid,
177 : 50001 : boxnodes, G, U, W, tp, V, R ); }
178 : :
179 : : //! Public interface to compute boundary surface integrals of pressure
180 : : void bndPressureInt(
181 : : const std::array< std::vector< real >, 3 >& coord,
182 : : const std::vector< std::size_t >& triinpoel,
183 : : const std::vector< int >& symbctri,
184 : : const tk::Fields& U,
185 : : const std::array< tk::real, 3 >& CM,
186 : : std::vector< real >& F ) const
187 [ - - ]: 0 : { self->bndPressureInt( coord, triinpoel, symbctri, U, CM, F ); }
188 : :
189 : : //! Public interface for computing the minimum time step size
190 : : real dt( const std::array< std::vector< real >, 3 >& coord,
191 : : const std::vector< std::size_t >& inpoel,
192 : : tk::real t,
193 : : tk::real dtn,
194 : : const tk::Fields& U,
195 : : const std::vector< tk::real >& vol,
196 : : const std::vector< tk::real >& voln ) const
197 : 6377 : { return self->dt( coord, inpoel, t, dtn, U, vol, voln ); }
198 : :
199 : : //! Public interface for computing a time step size for each mesh node
200 : : void dt( uint64_t it,
201 : : const std::vector< real >& vol,
202 : : const tk::Fields& U,
203 : : std::vector< real >& dtp ) const
204 : 200 : { self->dt( it, vol, U, dtp ); }
205 : :
206 : : //! \brief Public interface for querying Dirichlet boundary condition values
207 : : //! set by the user on a given side set for all components in a PDE system
208 : : std::map< std::size_t, std::vector< std::pair<bool,real> > >
209 : : dirbc( real t,
210 : : real deltat,
211 : : const std::vector< real >& tp,
212 : : const std::vector< real >& dtp,
213 : : const std::pair< const int, std::vector< std::size_t > >& sides,
214 : : const std::array< std::vector< real >, 3 >& coord,
215 : : bool increment ) const
216 [ + - ]: 63502 : { return self->dirbc( t, deltat, tp, dtp, sides, coord, increment ); }
217 : :
218 : : //! Public interface to set symmetry boundary conditions at nodes
219 : : void
220 : : symbc( tk::Fields& U,
221 : : const std::array< std::vector< real >, 3 >& coord,
222 : : const std::unordered_map< int,
223 : : std::unordered_map< std::size_t,
224 : : std::array< real, 4 > > >& bnorm,
225 : : const std::unordered_set< std::size_t >& nodes ) const
226 [ + - ]: 57991 : { self->symbc( U, coord, bnorm, nodes ); }
227 : :
228 : : //! Public interface to set farfield boundary conditions at nodes
229 : : void
230 : : farfieldbc( tk::Fields& U,
231 : : const std::array< std::vector< real >, 3 >& coord,
232 : : const std::unordered_map< int,
233 : : std::unordered_map< std::size_t,
234 : : std::array< real, 4 > > >& bnorm,
235 : : const std::unordered_set< std::size_t >& nodes ) const
236 [ + - ]: 57982 : { self->farfieldbc( U, coord, bnorm, 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 [ + - ]: 41770 : { self->timedepbc( t, U, nodes, timedepfn ); }
245 : :
246 : : //! Public interface to returning maps of output var functions
247 : : std::map< std::string, tk::GetVarFn > OutVarFn() const
248 [ + - ]: 1403 : { return self->OutVarFn(); }
249 : :
250 : : //! Public interface to returning analytic field output labels
251 : : std::vector< std::string > analyticFieldNames() const
252 : 1195 : { return self->analyticFieldNames(); }
253 : :
254 : : //! Public interface to returning surface field output labels
255 [ + - ]: 1403 : std::vector< std::string > surfNames() const { return self->surfNames(); }
256 : :
257 : : //! Public interface to returning time history field output labels
258 [ + - ]: 22 : std::vector< std::string > histNames() const { return self->histNames(); }
259 : :
260 : : //! Public interface to returning variable names
261 : : std::vector< std::string > names() const { return self->names(); }
262 : :
263 : : //! Public interface to returning nodal surface field output
264 : : std::vector< std::vector< real > >
265 : : surfOutput( const std::map< int, std::vector< std::size_t > >& bnd,
266 : : const tk::Fields& U ) const
267 [ + - ]: 1403 : { return self->surfOutput( bnd, U ); }
268 : :
269 : : //! Public interface to returning elemental surface field output
270 : : std::vector< std::vector< real > >
271 : : elemSurfOutput( const std::map< int, std::vector< std::size_t > >& bface,
272 : : const std::vector< std::size_t >& triinpoel,
273 : : const tk::Fields& U ) const
274 [ + - ]: 1403 : { return self->elemSurfOutput( bface, triinpoel, U ); }
275 : :
276 : : //! Public interface to returning time history output
277 : : std::vector< std::vector< real > >
278 : : histOutput( const std::vector< HistData >& h,
279 : : const std::vector< std::size_t >& inpoel,
280 : : const tk::Fields& U ) const
281 [ + - ]: 214 : { return self->histOutput( h, inpoel, U ); }
282 : :
283 : : //! Public interface to returning analytic solution
284 : : tk::InitializeFn::result_type
285 : : analyticSolution( real xi, real yi, real zi, real t ) const
286 : 111097 : { return self->analyticSolution( xi, yi, zi, t ); }
287 : :
288 : : //! Public interface to returning the analytic solution for conserved vars
289 : : tk::InitializeFn::result_type
290 : : solution( tk::real xi, tk::real yi, tk::real zi, tk::real t ) const
291 [ + - ]: 1456210 : { return self->solution( xi, yi, zi, t ); }
292 : :
293 : : //! Copy assignment
294 : : CGPDE& operator=( const CGPDE& x )
295 : : { CGPDE tmp(x); *this = std::move(tmp); return *this; }
296 : : //! Copy constructor
297 : : CGPDE( const CGPDE& x ) : self( x.self->copy() ) {}
298 : : //! Move assignment
299 : : CGPDE& operator=( CGPDE&& ) noexcept = default;
300 : : //! Move constructor
301 [ - + ]: 4 : CGPDE( CGPDE&& ) noexcept = default;
302 : :
303 : : private:
304 : : //! \brief Concept is a pure virtual base class specifying the requirements
305 : : //! of polymorphic objects deriving from it
306 : : struct Concept {
307 : : Concept() = default;
308 : 0 : Concept( const Concept& ) = default;
309 : : virtual ~Concept() = default;
310 : : virtual Concept* copy() const = 0;
311 : : virtual void IcBoxNodes( const tk::UnsMesh::Coords&,
312 : : const std::vector< std::size_t >&,
313 : : const std::unordered_map< std::size_t, std::set< std::size_t > >&,
314 : : std::vector< std::unordered_set< std::size_t > >&,
315 : : std::unordered_map< std::size_t, std::set< std::size_t > >&,
316 : : std::size_t& ) = 0;
317 : : virtual void initialize(
318 : : const std::array< std::vector< real >, 3 >&,
319 : : tk::Fields&,
320 : : real,
321 : : real,
322 : : const std::vector< std::unordered_set< std::size_t > >&,
323 : : const std::vector< tk::real >&,
324 : : const std::unordered_map< std::size_t, std::set< std::size_t > >& ) = 0;
325 : : virtual void velocity( const tk::Fields&, tk::UnsMesh::Coords& )
326 : : const = 0;
327 : : virtual void soundspeed( const tk::Fields&, std::vector< tk::real >& )
328 : : const = 0;
329 : : virtual void chBndGrad( const std::array< std::vector< real >, 3 >&,
330 : : const std::vector< std::size_t >&,
331 : : const std::vector< std::size_t >&,
332 : : const std::vector< std::size_t >&,
333 : : const std::unordered_map< std::size_t, std::size_t >&,
334 : : const tk::Fields&,
335 : : tk::Fields& ) const = 0;
336 : : virtual void rhs(
337 : : real,
338 : : const std::array< std::vector< real >, 3 >&,
339 : : const std::vector< std::size_t >&,
340 : : const std::vector< std::size_t >&,
341 : : const std::vector< std::size_t >&,
342 : : const std::unordered_map< std::size_t, std::size_t >&,
343 : : const std::unordered_map< std::size_t, std::size_t >&,
344 : : const std::vector< real >&,
345 : : const std::pair< std::vector< std::size_t >,
346 : : std::vector< std::size_t > >&,
347 : : const std::pair< std::vector< std::size_t >,
348 : : std::vector< std::size_t > >&,
349 : : const std::vector< int >&,
350 : : const std::vector< real >&,
351 : : const std::vector< std::size_t >&,
352 : : const std::vector< std::size_t >&,
353 : : const std::vector< std::unordered_set< std::size_t > >&,
354 : : const tk::Fields&,
355 : : const tk::Fields&,
356 : : const tk::Fields&,
357 : : const std::vector< real >&,
358 : : real,
359 : : tk::Fields& ) const = 0;
360 : : virtual void bndPressureInt(
361 : : const std::array< std::vector< real >, 3 >&,
362 : : const std::vector< std::size_t >&,
363 : : const std::vector< int >&,
364 : : const tk::Fields&,
365 : : const std::array< tk::real, 3 >&,
366 : : std::vector< real >& ) const = 0;
367 : : virtual real dt( const std::array< std::vector< real >, 3 >&,
368 : : const std::vector< std::size_t >&,
369 : : tk::real,
370 : : tk::real,
371 : : const tk::Fields&,
372 : : const std::vector< tk::real >& ,
373 : : const std::vector< tk::real >& ) const = 0;
374 : : virtual void dt( uint64_t,
375 : : const std::vector< real > &,
376 : : const tk::Fields&,
377 : : std::vector< real >& ) const = 0;
378 : : virtual std::map< std::size_t, std::vector< std::pair<bool,real> > >
379 : : dirbc( real,
380 : : real,
381 : : const std::vector< real >&,
382 : : const std::vector< real >&,
383 : : const std::pair< const int, std::vector< std::size_t > >&,
384 : : const std::array< std::vector< real >, 3 >&,
385 : : bool ) const = 0;
386 : : virtual void symbc(
387 : : tk::Fields& U,
388 : : const std::array< std::vector< real >, 3 >&,
389 : : const std::unordered_map< int,
390 : : std::unordered_map< std::size_t,
391 : : std::array< real, 4 > > >&,
392 : : const std::unordered_set< std::size_t >& ) const = 0;
393 : : virtual void farfieldbc(
394 : : tk::Fields&,
395 : : const std::array< std::vector< real >, 3 >&,
396 : : const std::unordered_map< int,
397 : : std::unordered_map< std::size_t,
398 : : std::array< real, 4 > > >&,
399 : : const std::unordered_set< std::size_t >& ) const = 0;
400 : : virtual void timedepbc(
401 : : tk::real,
402 : : tk::Fields&,
403 : : const std::vector< std::unordered_set< std::size_t > >&,
404 : : const std::vector< tk::Table<5> >& ) const = 0;
405 : : virtual std::map< std::string, tk::GetVarFn > OutVarFn() const = 0;
406 : : virtual std::vector< std::string > analyticFieldNames() const = 0;
407 : : virtual std::vector< std::string > surfNames() const = 0;
408 : : virtual std::vector< std::string > histNames() const = 0;
409 : : virtual std::vector< std::string > names() const = 0;
410 : : virtual std::vector< std::vector< real > > surfOutput(
411 : : const std::map< int, std::vector< std::size_t > >&,
412 : : const tk::Fields& ) const = 0;
413 : : virtual std::vector< std::vector< real > > elemSurfOutput(
414 : : const std::map< int, std::vector< std::size_t > >&,
415 : : const std::vector< std::size_t >&,
416 : : const tk::Fields& ) const = 0;
417 : : virtual std::vector< std::vector< real > > histOutput(
418 : : const std::vector< HistData >&,
419 : : const std::vector< std::size_t >&,
420 : : const tk::Fields& ) const = 0;
421 : : virtual tk::InitializeFn::result_type analyticSolution(
422 : : real xi, real yi, real zi, real t ) const = 0;
423 : : virtual tk::InitializeFn::result_type solution(
424 : : tk::real xi, tk::real yi, tk::real zi, tk::real t ) const = 0;
425 : : };
426 : :
427 : : //! \brief Model models the Concept above by deriving from it and overriding
428 : : //! the virtual functions required by Concept
429 : : template< typename T >
430 [ - - ][ - - ]: 0 : struct Model : Concept {
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ]
431 [ - - ][ - - ]: 311 : explicit Model( T x ) : data( std::move(x) ) {}
[ - - ][ - - ]
[ - - ][ - - ]
[ - - ][ + - ]
[ + - ][ - - ]
432 : 0 : Concept* copy() const override { return new Model( *this ); }
433 : 828 : void IcBoxNodes( const tk::UnsMesh::Coords& coord,
434 : : const std::vector< std::size_t >& inpoel,
435 : : const std::unordered_map< std::size_t, std::set< std::size_t > >& elemblkid,
436 : : std::vector< std::unordered_set< std::size_t > >& inbox,
437 : : std::unordered_map< std::size_t, std::set< std::size_t > >& nodeblkid,
438 : : std::size_t& nuserblk )
439 : 138 : override { data.IcBoxNodes( coord, inpoel, elemblkid, inbox, nodeblkid,
440 : 828 : nuserblk ); }
441 : 1010 : void initialize(
442 : : const std::array< std::vector< real >, 3 >& coord,
443 : : tk::Fields& unk,
444 : : real t,
445 : : real V,
446 : : const std::vector< std::unordered_set< std::size_t > >& inbox,
447 : : const std::vector< tk::real >& blkvols,
448 : : const std::unordered_map< std::size_t, std::set< std::size_t > >&
449 : : nodeblkid)
450 : 1010 : override { data.initialize( coord, unk, t, V, inbox, blkvols, nodeblkid ); }
451 : 41542 : void velocity( const tk::Fields& u, tk::UnsMesh::Coords& v ) const
452 : 41542 : override { data.velocity(u,v); }
453 : 41542 : void soundspeed( const tk::Fields& u, std::vector< tk::real >& s ) const
454 : 41542 : override { data.soundspeed(u,s); }
455 : 50001 : void chBndGrad( const std::array< std::vector< real >, 3 >& coord,
456 : : const std::vector< std::size_t >& inpoel,
457 : : const std::vector< std::size_t >& bndel,
458 : : const std::vector< std::size_t >& gid,
459 : : const std::unordered_map< std::size_t, std::size_t >& bid,
460 : : const tk::Fields& U,
461 : : tk::Fields& G ) const override
462 : 50001 : { data.chBndGrad( coord, inpoel, bndel, gid, bid, U, G ); }
463 : 50001 : void rhs(
464 : : real t,
465 : : const std::array< std::vector< real >, 3 >& coord,
466 : : const std::vector< std::size_t >& inpoel,
467 : : const std::vector< std::size_t >& triinpoel,
468 : : const std::vector< std::size_t >& gid,
469 : : const std::unordered_map< std::size_t, std::size_t >& bid,
470 : : const std::unordered_map< std::size_t, std::size_t >& lid,
471 : : const std::vector< real >& dfn,
472 : : const std::pair< std::vector< std::size_t >,
473 : : std::vector< std::size_t > >& psup,
474 : : const std::pair< std::vector< std::size_t >,
475 : : std::vector< std::size_t > >& esup,
476 : : const std::vector< int >& symbctri,
477 : : const std::vector< real >& vol,
478 : : const std::vector< std::size_t >& edgenode,
479 : : const std::vector< std::size_t >& edgeid,
480 : : const std::vector< std::unordered_set< std::size_t > >& boxnodes,
481 : : const tk::Fields& G,
482 : : const tk::Fields& U,
483 : : const tk::Fields& W,
484 : : const std::vector< real >& tp,
485 : : real V,
486 : : tk::Fields& R ) const override
487 : 50001 : { data.rhs( t, coord, inpoel, triinpoel, gid, bid, lid, dfn, psup,
488 : : esup, symbctri, vol, edgenode,
489 : 50001 : edgeid, boxnodes, G, U, W, tp, V, R ); }
490 : 0 : void bndPressureInt(
491 : : const std::array< std::vector< real >, 3 >& coord,
492 : : const std::vector< std::size_t >& triinpoel,
493 : : const std::vector< int >& symbctri,
494 : : const tk::Fields& U,
495 : : const std::array< tk::real, 3 >& CM,
496 : : std::vector< real >& F ) const override
497 : 0 : { data.bndPressureInt( coord, triinpoel, symbctri, U, CM, F ); }
498 : 6377 : real dt( const std::array< std::vector< real >, 3 >& coord,
499 : : const std::vector< std::size_t >& inpoel,
500 : : tk::real t,
501 : : tk::real dtn,
502 : : const tk::Fields& U,
503 : : const std::vector< tk::real >& vol,
504 : : const std::vector< tk::real >& voln ) const override
505 : 6377 : { return data.dt( coord, inpoel, t, dtn, U, vol, voln ); }
506 : 200 : void dt( uint64_t it,
507 : : const std::vector< real > & vol,
508 : : const tk::Fields& U,
509 : : std::vector< real >& dtp ) const override
510 : 200 : { data.dt( it, vol, U, dtp ); }
511 : : std::map< std::size_t, std::vector< std::pair<bool,real> > >
512 : 63502 : dirbc( real t,
513 : : real deltat,
514 : : const std::vector< real >& tp,
515 : : const std::vector< real >& dtp,
516 : : const std::pair< const int, std::vector< std::size_t > >& sides,
517 : : const std::array< std::vector< real >, 3 >& coord,
518 : : bool increment ) const
519 : : override { return data.dirbc( t, deltat, tp, dtp, sides, coord,
520 : 63502 : increment ); }
521 : 57991 : void symbc(
522 : : tk::Fields& U,
523 : : const std::array< std::vector< real >, 3 >& coord,
524 : : const std::unordered_map< int,
525 : : std::unordered_map< std::size_t,
526 : : std::array< real, 4 > > >& bnorm,
527 : : const std::unordered_set< std::size_t >& nodes ) const override
528 : 57991 : { data.symbc( U, coord, bnorm, nodes ); }
529 : 57982 : void farfieldbc(
530 : : tk::Fields& U,
531 : : const std::array< std::vector< real >, 3 >& coord,
532 : : const std::unordered_map< int,
533 : : std::unordered_map< std::size_t,
534 : : std::array< real, 4 > > >& bnorm,
535 : : const std::unordered_set< std::size_t >& nodes ) const override
536 : 57982 : { data.farfieldbc( U, coord, bnorm, nodes ); }
537 : : void
538 : 41770 : timedepbc(
539 : : tk::real t,
540 : : tk::Fields& U,
541 : : const std::vector< std::unordered_set< std::size_t > >& nodes,
542 : : const std::vector< tk::Table<5> >& timedepfn ) const override
543 : 41770 : { data.timedepbc( t, U, nodes, timedepfn ); }
544 : 1403 : std::map< std::string, tk::GetVarFn > OutVarFn() const override
545 : 1403 : { return data.OutVarFn(); }
546 : 1195 : std::vector< std::string > analyticFieldNames() const override
547 : 1195 : { return data.analyticFieldNames(); }
548 : 1403 : std::vector< std::string > surfNames() const override
549 : 1403 : { return data.surfNames(); }
550 : 22 : std::vector< std::string > histNames() const override
551 : 22 : { return data.histNames(); }
552 : 85 : std::vector< std::string > names() const override
553 : 85 : { return data.names(); }
554 : 1403 : std::vector< std::vector< real > > surfOutput(
555 : : const std::map< int, std::vector< std::size_t > >& bnd,
556 : : const tk::Fields& U ) const override
557 : 1403 : { return data.surfOutput( bnd, U ); }
558 : 1403 : std::vector< std::vector< real > > elemSurfOutput(
559 : : const std::map< int, std::vector< std::size_t > >& bface,
560 : : const std::vector< std::size_t >& triinpoel,
561 : : const tk::Fields& U ) const override
562 : 1403 : { return data.elemSurfOutput( bface, triinpoel, U ); }
563 : 214 : std::vector< std::vector< real > > histOutput(
564 : : const std::vector< HistData >& h,
565 : : const std::vector< std::size_t >& inpoel,
566 : : const tk::Fields& U ) const override
567 : 214 : { return data.histOutput( h, inpoel, U ); }
568 : : tk::InitializeFn::result_type
569 : 111097 : analyticSolution( real xi, real yi, real zi, real t )
570 : 111097 : const override { return data.analyticSolution( xi, yi, zi, t ); }
571 : : tk::InitializeFn::result_type
572 : 1456210 : solution( real xi, real yi, real zi, real t )
573 : 1456210 : const override { return data.solution( xi, yi, zi, t ); }
574 : : T data;
575 : : };
576 : :
577 : : std::unique_ptr< Concept > self; //!< Base pointer used polymorphically
578 : : };
579 : :
580 : : } // inciter::
581 : :
582 : : #endif // CGPDE_h
|