libMesh
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Attributes | List of all members
libMesh::FEMPhysics Class Referenceabstract

This class provides a specific system class. More...

#include <fem_physics.h>

Inheritance diagram for libMesh::FEMPhysics:
[legend]

Public Member Functions

 FEMPhysics ()
 Constructor.
 
virtual ~FEMPhysics ()=default
 Destructor.
 
virtual bool eulerian_residual (bool request_jacobian, DiffContext &context) override
 Adds a pseudo-convection contribution on elem to elem_residual, if the nodes of elem are being translated by a moving mesh.
 
virtual bool mass_residual (bool request_jacobian, DiffContext &) override
 Subtracts a mass vector contribution on elem from elem_residual.
 
virtual std::unique_ptr< DifferentiablePhysicsclone_physics ()=0
 Copy of this object.
 
virtual void clear_physics ()
 Clear any data structures associated with the physics.
 
virtual void init_physics (const System &sys)
 Initialize any data structures associated with the physics.
 
virtual bool element_time_derivative (bool request_jacobian, DiffContext &)
 Adds the time derivative contribution on elem to elem_residual.
 
virtual bool element_constraint (bool request_jacobian, DiffContext &)
 Adds the constraint contribution on elem to elem_residual.
 
virtual bool side_time_derivative (bool request_jacobian, DiffContext &)
 Adds the time derivative contribution on side of elem to elem_residual.
 
virtual bool side_constraint (bool request_jacobian, DiffContext &)
 Adds the constraint contribution on side of elem to elem_residual.
 
virtual bool nonlocal_time_derivative (bool request_jacobian, DiffContext &)
 Adds any nonlocal time derivative contributions (e.g.
 
virtual bool nonlocal_constraint (bool request_jacobian, DiffContext &)
 Adds any nonlocal constraint contributions (e.g.
 
virtual void time_evolving (unsigned int var, unsigned int order)
 Tells the DiffSystem that variable var is evolving with respect to time.
 
bool is_time_evolving (unsigned int var) const
 
virtual bool side_mass_residual (bool request_jacobian, DiffContext &)
 Subtracts a mass vector contribution on side of elem from elem_residual.
 
virtual bool nonlocal_mass_residual (bool request_jacobian, DiffContext &c)
 Subtracts any nonlocal mass vector contributions (e.g.
 
virtual bool damping_residual (bool request_jacobian, DiffContext &)
 Subtracts a damping vector contribution on elem from elem_residual.
 
virtual bool side_damping_residual (bool request_jacobian, DiffContext &)
 Subtracts a damping vector contribution on side of elem from elem_residual.
 
virtual bool nonlocal_damping_residual (bool request_jacobian, DiffContext &)
 Subtracts any nonlocal damping vector contributions (e.g.
 
virtual void init_context (DiffContext &)
 
virtual void set_mesh_system (System *sys)
 Tells the DifferentiablePhysics that system sys contains the isoparametric Lagrangian variables which correspond to the coordinates of mesh nodes, in problems where the mesh itself is expected to move in time.
 
const Systemget_mesh_system () const
 
Systemget_mesh_system ()
 
virtual void set_mesh_x_var (unsigned int var)
 Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the x coordinate of mesh nodes, in problems where the mesh itself is expected to move in time.
 
unsigned int get_mesh_x_var () const
 
virtual void set_mesh_y_var (unsigned int var)
 Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the y coordinate of mesh nodes.
 
unsigned int get_mesh_y_var () const
 
virtual void set_mesh_z_var (unsigned int var)
 Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the z coordinate of mesh nodes.
 
unsigned int get_mesh_z_var () const
 
bool _eulerian_time_deriv (bool request_jacobian, DiffContext &)
 This method simply combines element_time_derivative() and eulerian_residual(), which makes its address useful as a pointer-to-member-function when refactoring.
 
bool have_first_order_vars () const
 
const std::set< unsigned int > & get_first_order_vars () const
 
bool is_first_order_var (unsigned int var) const
 
bool have_second_order_vars () const
 
const std::set< unsigned int > & get_second_order_vars () const
 
bool is_second_order_var (unsigned int var) const
 

Public Attributes

bool compute_internal_sides
 compute_internal_sides is false by default, indicating that side_* computations will only be done on boundary sides.
 

Protected Attributes

System_mesh_sys
 System from which to acquire moving mesh information.
 
unsigned int _mesh_x_var
 Variables from which to acquire moving mesh information.
 
unsigned int _mesh_y_var
 
unsigned int _mesh_z_var
 
std::vector< unsigned int_time_evolving
 Stores unsigned int to tell us which variables are evolving as first order in time (1), second order in time (2), or are not time evolving (0).
 
std::set< unsigned int_first_order_vars
 Variable indices for those variables that are first order in time.
 
std::set< unsigned int_second_order_vars
 Variable indices for those variables that are second order in time.
 
std::map< unsigned int, unsigned int_second_order_dot_vars
 If the user adds any second order variables, then we need to also cache the map to their corresponding dot variable that will be added by this TimeSolver class.
 

Detailed Description

This class provides a specific system class.

It aims to generalize any system, linear or nonlinear, which provides both a residual and a Jacobian.

This class is part of the new DifferentiableSystem framework, which is still experimental. Users of this framework should beware of bugs and future API changes.

Author
Roy H. Stogner
Date
2012

Definition at line 44 of file fem_physics.h.

Constructor & Destructor Documentation

◆ FEMPhysics()

libMesh::FEMPhysics::FEMPhysics ( )
inline

Constructor.

Definition at line 51 of file fem_physics.h.

51 :
53 {}

◆ ~FEMPhysics()

virtual libMesh::FEMPhysics::~FEMPhysics ( )
virtualdefault

Destructor.

Member Function Documentation

◆ _eulerian_time_deriv()

bool libMesh::DifferentiablePhysics::_eulerian_time_deriv ( bool  request_jacobian,
DiffContext context 
)
inherited

This method simply combines element_time_derivative() and eulerian_residual(), which makes its address useful as a pointer-to-member-function when refactoring.

Definition at line 97 of file diff_physics.C.

99{
100 // For any problem we need time derivative terms
101 request_jacobian =
102 this->element_time_derivative(request_jacobian, context);
103
104 // For a moving mesh problem we may need the pseudoconvection term too
105 return this->eulerian_residual(request_jacobian, context) &&
106 request_jacobian;
107}
virtual bool element_time_derivative(bool request_jacobian, DiffContext &)
Adds the time derivative contribution on elem to elem_residual.
virtual bool eulerian_residual(bool request_jacobian, DiffContext &)
Adds a pseudo-convection contribution on elem to elem_residual, if the nodes of elem are being transl...

References libMesh::DifferentiablePhysics::element_time_derivative(), and libMesh::DifferentiablePhysics::eulerian_residual().

Referenced by libMesh::Euler2Solver::element_residual(), libMesh::EulerSolver::element_residual(), and libMesh::NewmarkSolver::element_residual().

◆ clear_physics()

void libMesh::DifferentiablePhysics::clear_physics ( )
virtualinherited

Clear any data structures associated with the physics.

Definition at line 29 of file diff_physics.C.

30{
31 _time_evolving.resize(0);
32}
std::vector< unsigned int > _time_evolving
Stores unsigned int to tell us which variables are evolving as first order in time (1),...

References libMesh::DifferentiablePhysics::_time_evolving.

Referenced by libMesh::DifferentiableSystem::clear().

◆ clone_physics()

virtual std::unique_ptr< DifferentiablePhysics > libMesh::DifferentiablePhysics::clone_physics ( )
pure virtualinherited

Copy of this object.

User should override to copy any needed state.

Implemented in SigmaPhysics, and libMesh::DifferentiableSystem.

Referenced by libMesh::DifferentiableSystem::attach_physics(), and libMesh::DifferentiableSystem::push_physics().

◆ damping_residual()

virtual bool libMesh::DifferentiablePhysics::damping_residual ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Subtracts a damping vector contribution on elem from elem_residual.

This method is not used in first-order-in-time problems. For second-order-in-time problems, this is the \( C(u,\ddot{u})\ddot{u} \) term. This method is only called for UnsteadySolver-based TimeSolvers.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

If the problem has no damping, the default "do-nothing" is correct. Otherwise, this must be reimplemented.

Reimplemented in SecondOrderScalarSystemSecondOrderTimeSolverBase, and SecondOrderScalarSystemFirstOrderTimeSolverBase.

Definition at line 360 of file diff_physics.h.

362 {
363 return request_jacobian;
364 }

Referenced by libMesh::Euler2Solver::element_residual(), libMesh::EulerSolver::element_residual(), and libMesh::NewmarkSolver::element_residual().

◆ element_constraint()

virtual bool libMesh::DifferentiablePhysics::element_constraint ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds the constraint contribution on elem to elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

Users may need to reimplement this for their particular PDE.

To implement the constraint 0 = G(u), the user should examine u = elem_solution and add (G(u), phi_i) to elem_residual in elem_constraint().

Reimplemented in CoupledSystem, and NavierSystem.

Definition at line 144 of file diff_physics.h.

146 {
147 return request_jacobian;
148 }

Referenced by libMesh::EigenTimeSolver::element_residual(), libMesh::Euler2Solver::element_residual(), libMesh::EulerSolver::element_residual(), libMesh::NewmarkSolver::element_residual(), and libMesh::SteadySolver::element_residual().

◆ element_time_derivative()

virtual bool libMesh::DifferentiablePhysics::element_time_derivative ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds the time derivative contribution on elem to elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

Users need to reimplement this for their particular PDE.

To implement the physics model du/dt = F(u), the user should examine u = elem_solution and add (F(u), phi_i) to elem_residual in elem_time_derivative().

Reimplemented in LaplaceSystem, LaplaceSystem, CoupledSystem, LaplaceSystem, HeatSystem, PoissonSystem, HeatSystem, NavierSystem, SolidSystem, ElasticitySystem, ElasticitySystem, LaplaceSystem, CurlCurlSystem, CurlCurlSystem, SigmaPhysics, FirstOrderScalarSystemBase, SecondOrderScalarSystemFirstOrderTimeSolverBase, HeatSystem, HilbertSystem, and libMesh::VariationalSmootherSystem.

Definition at line 125 of file diff_physics.h.

127 {
128 return request_jacobian;
129 }

Referenced by libMesh::DifferentiablePhysics::_eulerian_time_deriv(), libMesh::EigenTimeSolver::element_residual(), and libMesh::SteadySolver::element_residual().

◆ eulerian_residual()

bool libMesh::FEMPhysics::eulerian_residual ( bool  request_jacobian,
DiffContext context 
)
overridevirtual

Adds a pseudo-convection contribution on elem to elem_residual, if the nodes of elem are being translated by a moving mesh.

This function assumes that the user's time derivative equations (except for any equations involving unknown mesh xyz coordinates themselves) are expressed in an Eulerian frame of reference, and that the user is satisfied with an unstabilized convection term. Lagrangian equations will probably require overriding eulerian_residual() with a blank function; ALE or stabilized formulations will require reimplementing eulerian_residual() entirely.

Reimplemented from libMesh::DifferentiablePhysics.

Reimplemented in SolidSystem.

Definition at line 38 of file fem_physics.C.

40{
41 // Only calculate a mesh movement residual if it's necessary
42 if (!_mesh_sys)
43 return request_jacobian;
44
45 libmesh_not_implemented();
46
47#if 0
48 FEMContext & context = cast_ref<FEMContext &>(c);
49
50 // This function only supports fully coupled mesh motion for now
51 libmesh_assert_equal_to (_mesh_sys, this);
52
53 unsigned int n_qpoints = (context.get_element_qrule())->n_points();
54
55 const unsigned int n_x_dofs = (_mesh_x_var == libMesh::invalid_uint) ?
56 0 : context.dof_indices_var[_mesh_x_var].size();
57 const unsigned int n_y_dofs = (_mesh_y_var == libMesh::invalid_uint) ?
58 0 : context.dof_indices_var[_mesh_y_var].size();
59 const unsigned int n_z_dofs = (_mesh_z_var == libMesh::invalid_uint) ?
60 0 : context.dof_indices_var[_mesh_z_var].size();
61
62 const unsigned int mesh_xyz_var = n_x_dofs ? _mesh_x_var :
63 (n_y_dofs ? _mesh_y_var :
64 (n_z_dofs ? _mesh_z_var :
66
67 // If we're our own _mesh_sys, we'd better be in charge of
68 // at least one coordinate, and we'd better have the same
69 // FE type for all coordinates we are in charge of
70 libmesh_assert_not_equal_to (mesh_xyz_var, libMesh::invalid_uint);
71 libmesh_assert(!n_x_dofs || context.element_fe_var[_mesh_x_var] ==
72 context.element_fe_var[mesh_xyz_var]);
73 libmesh_assert(!n_y_dofs || context.element_fe_var[_mesh_y_var] ==
74 context.element_fe_var[mesh_xyz_var]);
75 libmesh_assert(!n_z_dofs || context.element_fe_var[_mesh_z_var] ==
76 context.element_fe_var[mesh_xyz_var]);
77
78 const std::vector<std::vector<Real>> & psi =
79 context.element_fe_var[mesh_xyz_var]->get_phi();
80
81 for (auto var : make_range(context.n_vars()))
82 {
83 // Mesh motion only affects time-evolving variables
84 if (this->is_time_evolving(var))
85 continue;
86
87 // The mesh coordinate variables themselves are Lagrangian,
88 // not Eulerian, and no convective term is desired.
89 if (/*_mesh_sys == this && */
90 (var == _mesh_x_var ||
91 var == _mesh_y_var ||
92 var == _mesh_z_var))
93 continue;
94
95 // Some of this code currently relies on the assumption that
96 // we can pull mesh coordinate data from our own system
97 if (_mesh_sys != this)
98 libmesh_not_implemented();
99
100 // This residual should only be called by unsteady solvers:
101 // if the mesh is steady, there's no mesh convection term!
102 UnsteadySolver * unsteady;
103 if (this->time_solver->is_steady())
104 return request_jacobian;
105 else
106 unsteady = cast_ptr<UnsteadySolver*>(this->time_solver.get());
107
108 const std::vector<Real> & JxW =
109 context.element_fe_var[var]->get_JxW();
110
111 const std::vector<std::vector<Real>> & phi =
112 context.element_fe_var[var]->get_phi();
113
114 const std::vector<std::vector<RealGradient>> & dphi =
115 context.element_fe_var[var]->get_dphi();
116
117 const unsigned int n_u_dofs = context.dof_indices_var[var].size();
118
119 DenseSubVector<Number> & Fu = *context.elem_subresiduals[var];
120 DenseSubMatrix<Number> & Kuu = *context.elem_subjacobians[var][var];
121
122 DenseSubMatrix<Number> * Kux = n_x_dofs ?
123 context.elem_subjacobians[var][_mesh_x_var] : nullptr;
124 DenseSubMatrix<Number> * Kuy = n_y_dofs ?
125 context.elem_subjacobians[var][_mesh_y_var] : nullptr;
126 DenseSubMatrix<Number> * Kuz = n_z_dofs ?
127 context.elem_subjacobians[var][_mesh_z_var] : nullptr;
128
129 std::vector<Real> delta_x(n_x_dofs, 0.);
130 std::vector<Real> delta_y(n_y_dofs, 0.);
131 std::vector<Real> delta_z(n_z_dofs, 0.);
132
133 for (unsigned int i = 0; i != n_x_dofs; ++i)
134 {
135 unsigned int j = context.dof_indices_var[_mesh_x_var][i];
136 delta_x[i] = libmesh_real(this->current_solution(j)) -
137 libmesh_real(unsteady->old_nonlinear_solution(j));
138 }
139
140 for (unsigned int i = 0; i != n_y_dofs; ++i)
141 {
142 unsigned int j = context.dof_indices_var[_mesh_y_var][i];
143 delta_y[i] = libmesh_real(this->current_solution(j)) -
144 libmesh_real(unsteady->old_nonlinear_solution(j));
145 }
146
147 for (unsigned int i = 0; i != n_z_dofs; ++i)
148 {
149 unsigned int j = context.dof_indices_var[_mesh_z_var][i];
150 delta_z[i] = libmesh_real(this->current_solution(j)) -
151 libmesh_real(unsteady->old_nonlinear_solution(j));
152 }
153
154 for (unsigned int qp = 0; qp != n_qpoints; ++qp)
155 {
156 Gradient grad_u = context.interior_gradient(var, qp);
157 RealGradient convection(0.);
158
159 for (unsigned int i = 0; i != n_x_dofs; ++i)
160 convection(0) += delta_x[i] * psi[i][qp];
161 for (unsigned int i = 0; i != n_y_dofs; ++i)
162 convection(1) += delta_y[i] * psi[i][qp];
163 for (unsigned int i = 0; i != n_z_dofs; ++i)
164 convection(2) += delta_z[i] * psi[i][qp];
165
166 for (unsigned int i = 0; i != n_u_dofs; ++i)
167 {
168 Number JxWxPhiI = JxW[qp] * phi[i][qp];
169 Fu(i) += (convection * grad_u) * JxWxPhiI;
170 if (request_jacobian)
171 {
172 Number JxWxPhiI = JxW[qp] * phi[i][qp];
173 for (unsigned int j = 0; j != n_u_dofs; ++j)
174 Kuu(i,j) += JxWxPhiI * (convection * dphi[j][qp]);
175
176 Number JxWxPhiIoverDT = JxWxPhiI/this->deltat;
177
178 Number JxWxPhiIxDUDXoverDT = JxWxPhiIoverDT * grad_u(0);
179 for (unsigned int j = 0; j != n_x_dofs; ++j)
180 (*Kux)(i,j) += JxWxPhiIxDUDXoverDT * psi[j][qp];
181
182 Number JxWxPhiIxDUDYoverDT = JxWxPhiIoverDT * grad_u(1);
183 for (unsigned int j = 0; j != n_y_dofs; ++j)
184 (*Kuy)(i,j) += JxWxPhiIxDUDYoverDT * psi[j][qp];
185
186 Number JxWxPhiIxDUDZoverDT = JxWxPhiIoverDT * grad_u(2);
187 for (unsigned int j = 0; j != n_z_dofs; ++j)
188 (*Kuz)(i,j) += JxWxPhiIxDUDZoverDT * psi[j][qp];
189 }
190 }
191 }
192 }
193#endif // 0
194
195 return request_jacobian;
196}
unsigned int n_vars
unsigned int _mesh_x_var
Variables from which to acquire moving mesh information.
bool is_time_evolving(unsigned int var) const
System * _mesh_sys
System from which to acquire moving mesh information.
NumberVectorValue Gradient
T libmesh_real(T a)
libmesh_assert(ctx)
const unsigned int invalid_uint
A number which is used quite often to represent an invalid or uninitialized value for an unsigned int...
Definition libmesh.h:303
RealVectorValue RealGradient
IntRange< T > make_range(T beg, T end)
The 2-parameter make_range() helper function returns an IntRange<T> when both input parameters are of...
Definition int_range.h:176

References libMesh::DifferentiablePhysics::_mesh_sys, libMesh::DifferentiablePhysics::_mesh_x_var, libMesh::DifferentiablePhysics::_mesh_y_var, libMesh::DifferentiablePhysics::_mesh_z_var, libMesh::FEMContext::get_element_qrule(), libMesh::FEMContext::interior_gradient(), libMesh::invalid_uint, libMesh::DifferentiablePhysics::is_time_evolving(), libMesh::libmesh_assert(), libMesh::libmesh_real(), libMesh::make_range(), libMesh::DiffContext::n_vars(), and libMesh::UnsteadySolver::old_nonlinear_solution().

◆ get_first_order_vars()

const std::set< unsigned int > & libMesh::DifferentiablePhysics::get_first_order_vars ( ) const
inlineinherited
Returns
The set of first order in time variable indices. May be empty.

Definition at line 506 of file diff_physics.h.

507 { return _first_order_vars; }
std::set< unsigned int > _first_order_vars
Variable indices for those variables that are first order in time.

References libMesh::DifferentiablePhysics::_first_order_vars.

Referenced by libMesh::DifferentiableSystem::have_first_order_scalar_vars().

◆ get_mesh_system() [1/2]

System * libMesh::DifferentiablePhysics::get_mesh_system ( )
inlineinherited
Returns
A reference to the system with variables corresponding to mesh nodal coordinates, or nullptr if the mesh is fixed.

Definition at line 619 of file diff_physics.h.

620{
621 return _mesh_sys;
622}

References libMesh::DifferentiablePhysics::_mesh_sys.

◆ get_mesh_system() [2/2]

const System * libMesh::DifferentiablePhysics::get_mesh_system ( ) const
inlineinherited
Returns
A const reference to the system with variables corresponding to mesh nodal coordinates, or nullptr if the mesh is fixed. Useful for ALE calculations.

Definition at line 613 of file diff_physics.h.

614{
615 return _mesh_sys;
616}

References libMesh::DifferentiablePhysics::_mesh_sys.

Referenced by libMesh::FEMSystem::build_context().

◆ get_mesh_x_var()

unsigned int libMesh::DifferentiablePhysics::get_mesh_x_var ( ) const
inlineinherited
Returns
The variable number corresponding to the mesh x coordinate. Useful for ALE calculations.

Definition at line 625 of file diff_physics.h.

626{
627 return _mesh_x_var;
628}

References libMesh::DifferentiablePhysics::_mesh_x_var.

Referenced by libMesh::FEMSystem::build_context().

◆ get_mesh_y_var()

unsigned int libMesh::DifferentiablePhysics::get_mesh_y_var ( ) const
inlineinherited
Returns
The variable number corresponding to the mesh y coordinate. Useful for ALE calculations.

Definition at line 631 of file diff_physics.h.

632{
633 return _mesh_y_var;
634}

References libMesh::DifferentiablePhysics::_mesh_y_var.

Referenced by libMesh::FEMSystem::build_context().

◆ get_mesh_z_var()

unsigned int libMesh::DifferentiablePhysics::get_mesh_z_var ( ) const
inlineinherited
Returns
The variable number corresponding to the mesh z coordinate. Useful for ALE calculations.

Definition at line 637 of file diff_physics.h.

638{
639 return _mesh_z_var;
640}

References libMesh::DifferentiablePhysics::_mesh_z_var.

Referenced by libMesh::FEMSystem::build_context().

◆ get_second_order_vars()

const std::set< unsigned int > & libMesh::DifferentiablePhysics::get_second_order_vars ( ) const
inlineinherited
Returns
The set of second order in time variable indices. May be empty.

Definition at line 519 of file diff_physics.h.

520 { return _second_order_vars; }
std::set< unsigned int > _second_order_vars
Variable indices for those variables that are second order in time.

References libMesh::DifferentiablePhysics::_second_order_vars.

Referenced by libMesh::DifferentiableSystem::add_second_order_dot_vars(), libMesh::DiffContext::DiffContext(), libMesh::Euler2Solver::element_residual(), libMesh::DifferentiableSystem::have_second_order_scalar_vars(), and libMesh::FEMContext::pre_fe_reinit().

◆ have_first_order_vars()

bool libMesh::DifferentiablePhysics::have_first_order_vars ( ) const
inlineinherited

◆ have_second_order_vars()

bool libMesh::DifferentiablePhysics::have_second_order_vars ( ) const
inlineinherited

◆ init_context()

virtual void libMesh::DifferentiablePhysics::init_context ( DiffContext )
inlinevirtualinherited

◆ init_physics()

void libMesh::DifferentiablePhysics::init_physics ( const System sys)
virtualinherited

Initialize any data structures associated with the physics.

Definition at line 36 of file diff_physics.C.

37{
38 // give us flags for every variable that might be time evolving
39 _time_evolving.resize(sys.n_vars(), false);
40}

References libMesh::DifferentiablePhysics::_time_evolving, and libMesh::System::n_vars().

Referenced by libMesh::DifferentiableSystem::init_data().

◆ is_first_order_var()

bool libMesh::DifferentiablePhysics::is_first_order_var ( unsigned int  var) const
inlineinherited

Definition at line 509 of file diff_physics.h.

510 { return _first_order_vars.find(var) != _first_order_vars.end(); }

References libMesh::DifferentiablePhysics::_first_order_vars.

◆ is_second_order_var()

bool libMesh::DifferentiablePhysics::is_second_order_var ( unsigned int  var) const
inlineinherited

◆ is_time_evolving()

bool libMesh::DifferentiablePhysics::is_time_evolving ( unsigned int  var) const
inlineinherited
Returns
true iff variable var is evolving with respect to time. In general, the user's init() function should have set time_evolving() for any variables which behave like du/dt = F(u), and should not call time_evolving() for any variables which behave like 0 = G(u).

Definition at line 260 of file diff_physics.h.

261 {
262 libmesh_assert_less(var,_time_evolving.size());
263 libmesh_assert( _time_evolving[var] == 0 ||
264 _time_evolving[var] == 1 ||
265 _time_evolving[var] == 2 );
266 return _time_evolving[var];
267 }

References libMesh::DifferentiablePhysics::_time_evolving, and libMesh::libmesh_assert().

Referenced by eulerian_residual(), libMesh::FEMSystem::init_context(), mass_residual(), and libMesh::DifferentiablePhysics::nonlocal_mass_residual().

◆ mass_residual()

bool libMesh::FEMPhysics::mass_residual ( bool  request_jacobian,
DiffContext c 
)
overridevirtual

Subtracts a mass vector contribution on elem from elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

Many problems can use the reimplementation in FEMPhysics::mass_residual which subtracts (du/dt,v) for each transient variable u; users with more complicated transient problems will need to reimplement this themselves.

Reimplemented from libMesh::DifferentiablePhysics.

Reimplemented in NavierSystem, ElasticitySystem, ElasticitySystem, FirstOrderScalarSystemBase, SecondOrderScalarSystemSecondOrderTimeSolverBase, and SecondOrderScalarSystemFirstOrderTimeSolverBase.

Definition at line 200 of file fem_physics.C.

202{
203 FEMContext & context = cast_ref<FEMContext &>(c);
204
205 unsigned int n_qpoints = context.get_element_qrule().n_points();
206
207 for (auto var : make_range(context.n_vars()))
208 {
209 if (!this->is_time_evolving(var))
210 continue;
211
212 FEBase * elem_fe = nullptr;
213 context.get_element_fe( var, elem_fe );
214
215 const std::vector<Real> & JxW = elem_fe->get_JxW();
216
217 const std::vector<std::vector<Real>> & phi = elem_fe->get_phi();
218
219 const unsigned int n_dofs = cast_int<unsigned int>
220 (context.get_dof_indices(var).size());
221
222 DenseSubVector<Number> & Fu = context.get_elem_residual(var);
223 DenseSubMatrix<Number> & Kuu = context.get_elem_jacobian( var, var );
224
225 for (unsigned int qp = 0; qp != n_qpoints; ++qp)
226 {
227 Number uprime;
228 context.interior_rate(var, qp, uprime);
229 const Number JxWxU = JxW[qp] * uprime;
230 for (unsigned int i = 0; i != n_dofs; ++i)
231 {
232 Fu(i) -= JxWxU * phi[i][qp];
233 if (request_jacobian && context.elem_solution_rate_derivative)
234 {
235 const Number JxWxPhiIxDeriv = JxW[qp] * phi[i][qp] *
236 context.elem_solution_rate_derivative;
237 Kuu(i,i) -= JxWxPhiIxDeriv * phi[i][qp];
238 for (unsigned int j = i+1; j < n_dofs; ++j)
239 {
240 const Number Kij = JxWxPhiIxDeriv * phi[j][qp];
241 Kuu(i,j) -= Kij;
242 Kuu(j,i) -= Kij;
243 }
244 }
245 }
246 }
247 }
248
249 return request_jacobian;
250}
FEGenericBase< Real > FEBase

References libMesh::DiffContext::elem_solution_rate_derivative, libMesh::DiffContext::get_dof_indices(), libMesh::DiffContext::get_elem_jacobian(), libMesh::DiffContext::get_elem_residual(), libMesh::FEMContext::get_element_fe(), libMesh::FEMContext::get_element_qrule(), libMesh::FEAbstract::get_JxW(), libMesh::FEGenericBase< OutputType >::get_phi(), libMesh::FEMContext::interior_rate(), libMesh::DifferentiablePhysics::is_time_evolving(), libMesh::make_range(), libMesh::QBase::n_points(), and libMesh::DiffContext::n_vars().

◆ nonlocal_constraint()

virtual bool libMesh::DifferentiablePhysics::nonlocal_constraint ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds any nonlocal constraint contributions (e.g.

some components of constraints in scalar variable equations) to elem_residual

If this method receives request_jacobian = true, then it should also modify elem_jacobian and return true if possible. If the Jacobian changes have not been computed then the method should return false.

Users may need to reimplement this for PDEs on systems to which SCALAR variables with non-transient equations have been added.

Definition at line 233 of file diff_physics.h.

235 {
236 return request_jacobian;
237 }

Referenced by libMesh::EigenTimeSolver::nonlocal_residual(), libMesh::Euler2Solver::nonlocal_residual(), libMesh::EulerSolver::nonlocal_residual(), libMesh::NewmarkSolver::nonlocal_residual(), and libMesh::SteadySolver::nonlocal_residual().

◆ nonlocal_damping_residual()

virtual bool libMesh::DifferentiablePhysics::nonlocal_damping_residual ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Subtracts any nonlocal damping vector contributions (e.g.

any first time derivative coefficients in scalar variable equations) from elem_residual

If this method receives request_jacobian = true, then it should also modify elem_jacobian and return true if possible. If the Jacobian changes have not been computed then the method should return false.

Definition at line 394 of file diff_physics.h.

396 {
397 return request_jacobian;
398 }

Referenced by libMesh::Euler2Solver::nonlocal_residual(), libMesh::EulerSolver::nonlocal_residual(), and libMesh::NewmarkSolver::nonlocal_residual().

◆ nonlocal_mass_residual()

bool libMesh::DifferentiablePhysics::nonlocal_mass_residual ( bool  request_jacobian,
DiffContext c 
)
virtualinherited

Subtracts any nonlocal mass vector contributions (e.g.

any time derivative coefficients in scalar variable equations) from elem_residual

If this method receives request_jacobian = true, then it should also modify elem_jacobian and return true if possible. If the Jacobian changes have not been computed then the method should return false.

Many problems can use the reimplementation in FEMPhysics::mass_residual which subtracts (du/dt,v) for each transient scalar variable u; users with more complicated transient scalar variable equations will need to reimplement this themselves.

Definition at line 58 of file diff_physics.C.

60{
61 FEMContext & context = cast_ref<FEMContext &>(c);
62
63 for (auto var : make_range(context.n_vars()))
64 {
65 if (!this->is_time_evolving(var))
66 continue;
67
68 if (c.get_system().variable(var).type().family != SCALAR)
69 continue;
70
71 const std::vector<dof_id_type> & dof_indices =
72 context.get_dof_indices(var);
73
74 const unsigned int n_dofs = cast_int<unsigned int>
75 (dof_indices.size());
76
77 DenseSubVector<Number> & Fs = context.get_elem_residual(var);
78 DenseSubMatrix<Number> & Kss = context.get_elem_jacobian( var, var );
79
81 context.get_elem_solution(var);
82
83 for (unsigned int i=0; i != n_dofs; ++i)
84 {
85 Fs(i) -= Us(i);
86
87 if (request_jacobian)
88 Kss(i,i) -= context.elem_solution_rate_derivative;
89 }
90 }
91
92 return request_jacobian;
93}
Defines a dense subvector for use in finite element computations.

References libMesh::DiffContext::elem_solution_rate_derivative, libMesh::FEType::family, libMesh::DiffContext::get_dof_indices(), libMesh::DiffContext::get_elem_jacobian(), libMesh::DiffContext::get_elem_residual(), libMesh::DiffContext::get_elem_solution(), libMesh::DiffContext::get_system(), libMesh::DifferentiablePhysics::is_time_evolving(), libMesh::make_range(), libMesh::DiffContext::n_vars(), libMesh::SCALAR, libMesh::Variable::type(), and libMesh::System::variable().

Referenced by libMesh::EigenTimeSolver::nonlocal_residual(), libMesh::Euler2Solver::nonlocal_residual(), libMesh::EulerSolver::nonlocal_residual(), and libMesh::NewmarkSolver::nonlocal_residual().

◆ nonlocal_time_derivative()

virtual bool libMesh::DifferentiablePhysics::nonlocal_time_derivative ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds any nonlocal time derivative contributions (e.g.

some components of time derivatives in scalar variable equations) to elem_residual

If this method receives request_jacobian = true, then it should also modify elem_jacobian and return true if possible. If the Jacobian changes have not been computed then the method should return false.

Users may need to reimplement this for PDEs on systems to which SCALAR variables have been added.

Definition at line 214 of file diff_physics.h.

216 {
217 return request_jacobian;
218 }

Referenced by libMesh::EigenTimeSolver::nonlocal_residual(), libMesh::Euler2Solver::nonlocal_residual(), libMesh::EulerSolver::nonlocal_residual(), libMesh::NewmarkSolver::nonlocal_residual(), and libMesh::SteadySolver::nonlocal_residual().

◆ set_mesh_system()

void libMesh::DifferentiablePhysics::set_mesh_system ( System sys)
inlinevirtualinherited

Tells the DifferentiablePhysics that system sys contains the isoparametric Lagrangian variables which correspond to the coordinates of mesh nodes, in problems where the mesh itself is expected to move in time.

The system with mesh coordinate data (which may be this system itself, for fully coupled moving mesh problems) is currently assumed to have new (end of time step) mesh coordinates stored in solution, old (beginning of time step) mesh coordinates stored in _old_nonlinear_solution, and constant velocity motion during each time step.

Activating this function ensures that local (but not neighbor!) element geometry is correctly repositioned when evaluating element residuals.

Currently sys must be *this for a tightly coupled moving mesh problem or nullptr to stop mesh movement; loosely coupled moving mesh problems are not implemented.

This code is experimental. "Trust but verify, and not in that order"

Definition at line 569 of file diff_physics.h.

570{
571 // For now we assume that we're doing fully coupled mesh motion
572 // if (sys && sys != this)
573 // libmesh_not_implemented();
574
575 // For the foreseeable future we'll assume that we keep these
576 // Systems in the same EquationSystems
577 // libmesh_assert_equal_to (&this->get_equation_systems(),
578 // &sys->get_equation_systems());
579
580 // And for the immediate future this code may not even work
581 libmesh_experimental();
582
583 _mesh_sys = sys;
584}

References libMesh::DifferentiablePhysics::_mesh_sys.

Referenced by SolidSystem::init_data().

◆ set_mesh_x_var()

void libMesh::DifferentiablePhysics::set_mesh_x_var ( unsigned int  var)
inlinevirtualinherited

Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the x coordinate of mesh nodes, in problems where the mesh itself is expected to move in time.

The system with mesh coordinate data (which may be this system itself, for fully coupled moving mesh problems) is currently assumed to have new (end of time step) mesh coordinates stored in solution, old (beginning of time step) mesh coordinates stored in _old_nonlinear_solution, and constant velocity motion during each time step.

Activating this function ensures that local (but not neighbor!) element geometry is correctly repositioned when evaluating element residuals.

Definition at line 589 of file diff_physics.h.

590{
591 _mesh_x_var = var;
592}

References libMesh::DifferentiablePhysics::_mesh_x_var.

Referenced by SolidSystem::init_data().

◆ set_mesh_y_var()

void libMesh::DifferentiablePhysics::set_mesh_y_var ( unsigned int  var)
inlinevirtualinherited

Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the y coordinate of mesh nodes.

Definition at line 597 of file diff_physics.h.

598{
599 _mesh_y_var = var;
600}

References libMesh::DifferentiablePhysics::_mesh_y_var.

Referenced by SolidSystem::init_data().

◆ set_mesh_z_var()

void libMesh::DifferentiablePhysics::set_mesh_z_var ( unsigned int  var)
inlinevirtualinherited

Tells the DifferentiablePhysics that variable var from the mesh system should be used to update the z coordinate of mesh nodes.

Definition at line 605 of file diff_physics.h.

606{
607 _mesh_z_var = var;
608}

References libMesh::DifferentiablePhysics::_mesh_z_var.

Referenced by SolidSystem::init_data().

◆ side_constraint()

virtual bool libMesh::DifferentiablePhysics::side_constraint ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds the constraint contribution on side of elem to elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

Users may need to reimplement this for their particular PDE depending on the boundary conditions.

To implement a weak form of the constraint 0 = G(u), the user should examine u = elem_solution and add (G(u), phi_i) boundary integral contributions to elem_residual in side_constraint().

Reimplemented in LaplaceSystem, LaplaceSystem, LaplaceSystem, and NavierSystem.

Definition at line 195 of file diff_physics.h.

197 {
198 return request_jacobian;
199 }

Referenced by libMesh::EigenTimeSolver::side_residual(), libMesh::Euler2Solver::side_residual(), libMesh::EulerSolver::side_residual(), libMesh::NewmarkSolver::side_residual(), and libMesh::SteadySolver::side_residual().

◆ side_damping_residual()

virtual bool libMesh::DifferentiablePhysics::side_damping_residual ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Subtracts a damping vector contribution on side of elem from elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

For most problems, the default implementation of "do nothing" is correct; users with boundary conditions including first time derivatives may need to reimplement this themselves.

Definition at line 378 of file diff_physics.h.

380 {
381 return request_jacobian;
382 }

Referenced by libMesh::Euler2Solver::side_residual(), libMesh::EulerSolver::side_residual(), and libMesh::NewmarkSolver::side_residual().

◆ side_mass_residual()

virtual bool libMesh::DifferentiablePhysics::side_mass_residual ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Subtracts a mass vector contribution on side of elem from elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

For most problems, the default implementation of "do nothing" is correct; users with boundary conditions including time derivatives may need to reimplement this themselves.

Definition at line 320 of file diff_physics.h.

322 {
323 return request_jacobian;
324 }

Referenced by libMesh::EigenTimeSolver::side_residual(), libMesh::Euler2Solver::side_residual(), libMesh::EulerSolver::side_residual(), and libMesh::NewmarkSolver::side_residual().

◆ side_time_derivative()

virtual bool libMesh::DifferentiablePhysics::side_time_derivative ( bool  request_jacobian,
DiffContext  
)
inlinevirtualinherited

Adds the time derivative contribution on side of elem to elem_residual.

If this method receives request_jacobian = true, then it should compute elem_jacobian and return true if possible. If elem_jacobian has not been computed then the method should return false.

Users may need to reimplement this for their particular PDE depending on the boundary conditions.

To implement a weak form of the source term du/dt = F(u) on sides, such as might arise in a flux boundary condition, the user should examine u = elem_solution and add (F(u), phi_i) boundary integral contributions to elem_residual in side_constraint().

Reimplemented in SolidSystem, ElasticitySystem, ElasticitySystem, CurlCurlSystem, and CurlCurlSystem.

Definition at line 174 of file diff_physics.h.

176 {
177 return request_jacobian;
178 }

Referenced by libMesh::EigenTimeSolver::side_residual(), libMesh::Euler2Solver::side_residual(), libMesh::EulerSolver::side_residual(), libMesh::NewmarkSolver::side_residual(), and libMesh::SteadySolver::side_residual().

◆ time_evolving()

void libMesh::DifferentiablePhysics::time_evolving ( unsigned int  var,
unsigned int  order 
)
virtualinherited

Tells the DiffSystem that variable var is evolving with respect to time.

In general, the user's init() function should call time_evolving() with order 1 for any variables which behave like du/dt = F(u), with order 2 for any variables that behave like d^2u/dt^2 = F(u), and should not call time_evolving() for any variables which behave like 0 = G(u).

Most derived systems will not have to reimplement this function; however any system which reimplements mass_residual() may have to reimplement time_evolving() to prepare data structures.

Definition at line 42 of file diff_physics.C.

44{
45 libmesh_error_msg_if(order != 1 && order != 2, "Input order must be 1 or 2!");
46
47 if (_time_evolving.size() <= var)
48 _time_evolving.resize(var+1, 0);
49
50 _time_evolving[var] = order;
51
52 if (order == 1)
53 _first_order_vars.insert(var);
54 else
55 _second_order_vars.insert(var);
56}

References libMesh::DifferentiablePhysics::_first_order_vars, libMesh::DifferentiablePhysics::_second_order_vars, and libMesh::DifferentiablePhysics::_time_evolving.

Referenced by libMesh::DifferentiableSystem::add_second_order_dot_vars(), LaplaceSystem::init_data(), CoupledSystem::init_data(), HeatSystem::init_data(), PoissonSystem::init_data(), NavierSystem::init_data(), ElasticitySystem::init_data(), CurlCurlSystem::init_data(), FirstOrderScalarSystemBase::init_data(), SecondOrderScalarSystemSecondOrderTimeSolverBase::init_data(), and SigmaPhysics::init_data().

Member Data Documentation

◆ _first_order_vars

std::set<unsigned int> libMesh::DifferentiablePhysics::_first_order_vars
protectedinherited

◆ _mesh_sys

System* libMesh::DifferentiablePhysics::_mesh_sys
protectedinherited

◆ _mesh_x_var

unsigned int libMesh::DifferentiablePhysics::_mesh_x_var
protectedinherited

◆ _mesh_y_var

unsigned int libMesh::DifferentiablePhysics::_mesh_y_var
protectedinherited

◆ _mesh_z_var

unsigned int libMesh::DifferentiablePhysics::_mesh_z_var
protectedinherited

◆ _second_order_dot_vars

std::map<unsigned int,unsigned int> libMesh::DifferentiablePhysics::_second_order_dot_vars
protectedinherited

If the user adds any second order variables, then we need to also cache the map to their corresponding dot variable that will be added by this TimeSolver class.

Definition at line 560 of file diff_physics.h.

Referenced by libMesh::DifferentiableSystem::add_second_order_dot_vars(), and libMesh::DifferentiableSystem::get_second_order_dot_var().

◆ _second_order_vars

std::set<unsigned int> libMesh::DifferentiablePhysics::_second_order_vars
protectedinherited

◆ _time_evolving

std::vector<unsigned int> libMesh::DifferentiablePhysics::_time_evolving
protectedinherited

Stores unsigned int to tell us which variables are evolving as first order in time (1), second order in time (2), or are not time evolving (0).

Definition at line 543 of file diff_physics.h.

Referenced by libMesh::DifferentiablePhysics::clear_physics(), libMesh::DifferentiablePhysics::init_physics(), libMesh::DifferentiablePhysics::is_time_evolving(), and libMesh::DifferentiablePhysics::time_evolving().

◆ compute_internal_sides

bool libMesh::DifferentiablePhysics::compute_internal_sides
inherited

compute_internal_sides is false by default, indicating that side_* computations will only be done on boundary sides.

If compute_internal_sides is true, computations will be done on sides between elements as well.

Definition at line 156 of file diff_physics.h.


The documentation for this class was generated from the following files: