www.mooseframework.org
NestedBoundingBoxIC.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
13 
14 // Forward Declarations
16 
17 template <>
18 InputParameters validParams<NestedBoundingBoxIC>();
19 
26 {
27 public:
28  NestedBoundingBoxIC(const InputParameters & parameters);
29 
30  Real value(const Point & p);
31 
32 protected:
34  const Real _outside;
35 };
SmoothMultiBoundingBoxBaseIC.h
NestedBoundingBoxIC::value
Real value(const Point &p)
Definition: NestedBoundingBoxIC.C:32
NestedBoundingBoxIC::NestedBoundingBoxIC
NestedBoundingBoxIC(const InputParameters &parameters)
Definition: NestedBoundingBoxIC.C:26
validParams< NestedBoundingBoxIC >
InputParameters validParams< NestedBoundingBoxIC >()
Definition: NestedBoundingBoxIC.C:17
NestedBoundingBoxIC
NestedBoundingBoxIC creates several nested boxes defined by their coordinates in the domain.
Definition: NestedBoundingBoxIC.h:25
SmoothMultiBoundingBoxBaseIC
SmoothMultiBoundingBoxBaseIC is the base class for IsolatedBoundingBoxIC and NestedBoundingBoxIC.
Definition: SmoothMultiBoundingBoxBaseIC.h:24
NestedBoundingBoxIC::_outside
const Real _outside
values outside all the boxes
Definition: NestedBoundingBoxIC.h:34