www.mooseframework.org
CoupledDirectionalMeshHeightInterpolation.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 
12 #include "AuxKernel.h"
13 
14 // Forward Declarations
16 
17 template <>
19 
32 {
33 public:
38  CoupledDirectionalMeshHeightInterpolation(const InputParameters & parameters);
39 
41 
42 protected:
43  virtual Real computeValue();
44 
46  const VariableValue & _coupled_val;
47 
49  unsigned int _direction;
50 
53 };
54 
CoupledDirectionalMeshHeightInterpolation::_direction_min
Real _direction_min
Definition: CoupledDirectionalMeshHeightInterpolation.h:51
CoupledDirectionalMeshHeightInterpolation
Couples to some other value and modulates it by the mesh height in a direction.
Definition: CoupledDirectionalMeshHeightInterpolation.h:31
CoupledDirectionalMeshHeightInterpolation::computeValue
virtual Real computeValue()
Definition: CoupledDirectionalMeshHeightInterpolation.C:44
CoupledDirectionalMeshHeightInterpolation::_direction
unsigned int _direction
The direction to interpolate in.
Definition: CoupledDirectionalMeshHeightInterpolation.h:49
CoupledDirectionalMeshHeightInterpolation::~CoupledDirectionalMeshHeightInterpolation
virtual ~CoupledDirectionalMeshHeightInterpolation()
Definition: CoupledDirectionalMeshHeightInterpolation.h:40
CoupledDirectionalMeshHeightInterpolation::CoupledDirectionalMeshHeightInterpolation
CoupledDirectionalMeshHeightInterpolation(const InputParameters &parameters)
Factory constructor, takes parameters so that all derived classes can be built using the same constru...
Definition: CoupledDirectionalMeshHeightInterpolation.C:31
CoupledDirectionalMeshHeightInterpolation::_direction_max
Real _direction_max
Definition: CoupledDirectionalMeshHeightInterpolation.h:52
validParams< CoupledDirectionalMeshHeightInterpolation >
InputParameters validParams< CoupledDirectionalMeshHeightInterpolation >()
Definition: CoupledDirectionalMeshHeightInterpolation.C:19
CoupledDirectionalMeshHeightInterpolation::_coupled_val
const VariableValue & _coupled_val
The value of a coupled variable to modulate.
Definition: CoupledDirectionalMeshHeightInterpolation.h:46