www.mooseframework.org
GaussContForcing.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 "Kernel.h"
13 
14 class GaussContForcing;
15 
16 template <>
17 InputParameters validParams<GaussContForcing>();
18 
22 class GaussContForcing : public Kernel
23 {
24 public:
25  GaussContForcing(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeQpResidual();
29 
30  const Real _amplitude;
31  const Real _x_center;
32  const Real _y_center;
33  const Real _z_center;
34 
35  const Real _x_spread;
36  const Real _y_spread;
37  const Real _z_spread;
38 
39  const Real _x_min;
40  const Real _x_max;
41  const Real _y_min;
42  const Real _y_max;
43  const Real _z_min;
44  const Real _z_max;
45 };
46 
GaussContForcing::_x_center
const Real _x_center
Definition: GaussContForcing.h:31
GaussContForcing::_z_max
const Real _z_max
Definition: GaussContForcing.h:44
GaussContForcing::_y_min
const Real _y_min
Definition: GaussContForcing.h:41
GaussContForcing::_z_center
const Real _z_center
Definition: GaussContForcing.h:33
GaussContForcing::_amplitude
const Real _amplitude
Definition: GaussContForcing.h:30
GaussContForcing
Note: This class is duplicated from moose_test.
Definition: GaussContForcing.h:22
GaussContForcing::_z_min
const Real _z_min
Definition: GaussContForcing.h:43
GaussContForcing::_y_center
const Real _y_center
Definition: GaussContForcing.h:32
GaussContForcing::_y_spread
const Real _y_spread
Definition: GaussContForcing.h:36
GaussContForcing::_y_max
const Real _y_max
Definition: GaussContForcing.h:42
GaussContForcing::_z_spread
const Real _z_spread
Definition: GaussContForcing.h:37
GaussContForcing::_x_spread
const Real _x_spread
Definition: GaussContForcing.h:35
GaussContForcing::computeQpResidual
virtual Real computeQpResidual()
Definition: GaussContForcing.C:48
GaussContForcing::GaussContForcing
GaussContForcing(const InputParameters &parameters)
Definition: GaussContForcing.C:29
GaussContForcing::_x_max
const Real _x_max
Definition: GaussContForcing.h:40
GaussContForcing::_x_min
const Real _x_min
Definition: GaussContForcing.h:39
validParams< GaussContForcing >
InputParameters validParams< GaussContForcing >()
Definition: GaussContForcing.C:16