ASPECT
free_surface.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 - 2024 by the authors of the ASPECT code.
3 
4  This file is part of ASPECT.
5 
6  ASPECT is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2, or (at your option)
9  any later version.
10 
11  ASPECT is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with ASPECT; see the file LICENSE. If not see
18  <http://www.gnu.org/licenses/>.
19 */
20 
21 
22 #ifndef _aspect_mesh_deformation_free_surface_h
23 #define _aspect_mesh_deformation_free_surface_h
24 
26 
29 
30 
31 namespace aspect
32 {
33  using namespace dealii;
34 
35  namespace MeshDeformation
36  {
45  template <int dim>
46  class FreeSurface : public Interface<dim>, public SimulatorAccess<dim>
47  {
48  public:
53  void initialize() override;
54 
59  void set_assemblers(const SimulatorAccess<dim> &simulator_access,
60  aspect::Assemblers::Manager<dim> &assemblers) const;
61 
62 
69  void
70  compute_velocity_constraints_on_boundary(const DoFHandler<dim> &mesh_deformation_dof_handler,
71  AffineConstraints<double> &mesh_velocity_constraints,
72  const std::set<types::boundary_id> &boundary_id) const override;
73 
77  bool needs_surface_stabilization () const override;
78 
82  static
83  void declare_parameters (ParameterHandler &prm);
84 
88  void parse_parameters (ParameterHandler &prm) override;
89 
90  private:
95  void project_velocity_onto_boundary (const DoFHandler<dim> &free_surface_dof_handler,
96  const IndexSet &mesh_locally_owned,
97  const IndexSet &mesh_locally_relevant,
98  LinearAlgebra::Vector &output) const;
99 
104  {
105  enum Direction { normal, vertical };
106  };
107 
113  };
114  }
115 }
116 
117 
118 #endif
::TrilinosWrappers::MPI::Vector Vector
Definition: global.h:255
void declare_parameters(ParameterHandler &prm)
Definition: compat.h:59
SurfaceAdvection::Direction advection_direction
Definition: free_surface.h:112
Definition: compat.h:42