www.mooseframework.org
RichardsDensityPrimeAux.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 #include "RichardsDensity.h"
15 
16 // Forward Declarations
18 
19 template <>
20 InputParameters validParams<RichardsDensityPrimeAux>();
21 
25 class RichardsDensityPrimeAux : public AuxKernel
26 {
27 public:
28  RichardsDensityPrimeAux(const InputParameters & parameters);
29 
30 protected:
31  virtual Real computeValue();
32 
34  const VariableValue & _pressure_var;
35 
38 };
39 
RichardsDensityPrimeAux
Derivative of fluid density wrt porepressure.
Definition: RichardsDensityPrimeAux.h:25
RichardsDensityPrimeAux::computeValue
virtual Real computeValue()
Definition: RichardsDensityPrimeAux.C:36
RichardsDensityPrimeAux::_pressure_var
const VariableValue & _pressure_var
porepressure
Definition: RichardsDensityPrimeAux.h:34
RichardsDensityPrimeAux::RichardsDensityPrimeAux
RichardsDensityPrimeAux(const InputParameters &parameters)
Definition: RichardsDensityPrimeAux.C:28
RichardsDensity
Base class for fluid density as a function of porepressure The functions density, ddensity and d2dens...
Definition: RichardsDensity.h:24
RichardsDensity.h
RichardsDensityPrimeAux::_density_UO
const RichardsDensity & _density_UO
userobject that defines density as a fcn of porepressure
Definition: RichardsDensityPrimeAux.h:37
validParams< RichardsDensityPrimeAux >
InputParameters validParams< RichardsDensityPrimeAux >()
Definition: RichardsDensityPrimeAux.C:18