libMesh
fe_compute_data.C
Go to the documentation of this file.
1 // The libMesh Finite Element Library.
2 // Copyright (C) 2002-2025 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
12 
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 
17 #include "libmesh/fe_compute_data.h"
18 #include "libmesh/equation_systems.h"
19 
20 namespace libMesh
21 {
22 
23 
24 
26 {
27  this->shape.clear();
28  this->dshape.clear();
29  this->local_transform.clear();
30 #ifdef LIBMESH_ENABLE_INFINITE_ELEMENTS
31  this->phase = 0.;
32  this->speed = 1.;
33  this->frequency = 1.;
34 
35 #endif
36 }
37 
38 
39 
41 {
42  if (!(this->shape.empty()))
43  std::fill (this->shape.begin(), this->shape.end(), 0.);
44 
45 #ifdef LIBMESH_ENABLE_INFINITE_ELEMENTS
47  this->speed = this->equation_systems.parameters.get<Real>("speed");
48 
49  // ensure that the wavenumber k=2. * libMesh::pi * frequency / speed is well-defined.
50  libmesh_assert_not_equal_to(this->speed, 0);
51 
52  if (equation_systems.parameters.have_parameter<Number>("current frequency"))
53  this->frequency = this->equation_systems.parameters.get<Number>("current frequency");
54 
55 #if LIBMESH_USE_COMPLEX_NUMBERS
56  else if (equation_systems.parameters.have_parameter<Real>("current frequency"))
57  {
58  // please use the type Number instead.
59  libmesh_deprecated();
60  this->frequency = static_cast<Number> (this->equation_systems.parameters.get<Real>("current frequency"));
61  }
62 #endif
63 
64  this->phase = 0.;
65 
66 #endif //LIBMESH_ENABLE_INFINITE_ELEMENTS
67 
68 }
69 
70 
72 {
73  _need_dshape=true;
74  if (!(this->dshape.empty()))
75  std::fill (this->dshape.begin(), this->dshape.end(), 0);
76 }
77 
78 
79 } // namespace libMesh
const EquationSystems & equation_systems
Const reference to the EquationSystems object that contains simulation-specific data.
bool have_parameter(std::string_view) const
Definition: parameters.h:395
Real phase
Storage for the computed phase lag.
std::vector< Gradient > dshape
Storage for the computed shape derivative values.
std::vector< std::vector< Real > > local_transform
Storage for local to global mapping at p.
The libMesh namespace provides an interface to certain functionality in the library.
Real speed
The wave speed.
void clear()
Clears the output data completely.
void init()
Inits the output data to default values, provided the fields are correctly resized.
const T & get(std::string_view) const
Definition: parameters.h:426
Number frequency
The frequency to evaluate shape functions including the wave number depending terms.
std::vector< Number > shape
Storage for the computed shape function values.
bool _need_dshape
variable indicating whether the shape-derivative should be computed or not.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Parameters parameters
Data structure holding arbitrary parameters.
void enable_derivative()
Enable the computation of shape gradients (dshape).