https://mooseframework.inl.gov
RichardsExcav.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
12 #include "NodalBC.h"
13 
14 // Forward Declarations
15 class Function;
16 
23 class RichardsExcav : public NodalBC
24 {
25 public:
27 
29 
30 protected:
31  virtual Real computeQpResidual();
32 
37  virtual bool shouldApply() const;
38 
44 
51  const Function & _func;
52 };
RichardsExcav(const InputParameters &parameters)
Definition: RichardsExcav.C:33
const Function & _func
Controls which points are "active" on the boundary An "active" point is where _func != 0...
Definition: RichardsExcav.h:51
Real _p_excav
The variable will be made equal to _p_excav at the "active" points on the boundary.
Definition: RichardsExcav.h:43
virtual bool shouldApply() const
if excav_geom_function is != 0 at the point on the boundary then apply the dirichlet BC ...
Definition: RichardsExcav.C:41
Allows specification of Dirichlet BCs on an evolving boundary RichardsExcav is applied on a sideset...
Definition: RichardsExcav.h:23
virtual Real computeQpResidual()
Definition: RichardsExcav.C:50
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
static InputParameters validParams()
Definition: RichardsExcav.C:18