www.mooseframework.org
IsolatedBoundingBoxIC.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<IsolatedBoundingBoxIC>();
19 
26 {
27 public:
28  IsolatedBoundingBoxIC(const InputParameters & parameters);
29 
30  Real value(const Point & p);
31 
32 protected:
34  const Real _outside;
35 };
SmoothMultiBoundingBoxBaseIC.h
IsolatedBoundingBoxIC::value
Real value(const Point &p)
Definition: IsolatedBoundingBoxIC.C:33
IsolatedBoundingBoxIC::_outside
const Real _outside
values outside all the boxes
Definition: IsolatedBoundingBoxIC.h:34
IsolatedBoundingBoxIC::IsolatedBoundingBoxIC
IsolatedBoundingBoxIC(const InputParameters &parameters)
Definition: IsolatedBoundingBoxIC.C:27
SmoothMultiBoundingBoxBaseIC
SmoothMultiBoundingBoxBaseIC is the base class for IsolatedBoundingBoxIC and NestedBoundingBoxIC.
Definition: SmoothMultiBoundingBoxBaseIC.h:24
IsolatedBoundingBoxIC
IsolatedBoundingBoxIC creates several isolated boxes defined by their coordinates in the domain.
Definition: IsolatedBoundingBoxIC.h:25
validParams< IsolatedBoundingBoxIC >
InputParameters validParams< IsolatedBoundingBoxIC >()
Definition: IsolatedBoundingBoxIC.C:17