https://mooseframework.inl.gov
ThermalUCProperties.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://mooseframework.inl.gov
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 "ThermalSolidProperties.h"
13 
15 {
16 public:
18 
20 
21  using ThermalSolidProperties::k_from_T;
22  virtual Real k_from_T(const Real & T) const override;
23  virtual void k_from_T(const Real & T, Real & k, Real & dk_dT) const override;
24 
25  using ThermalSolidProperties::cp_from_T;
26  virtual Real cp_from_T(const Real & T) const override;
27  virtual void cp_from_T(const Real & T, Real & cp, Real & dcp_dT) const override;
28 
29  using ThermalSolidProperties::cp_integral;
30  virtual Real cp_integral(const Real & T) const override;
31 
32  using ThermalSolidProperties::rho_from_T;
33  virtual Real rho_from_T(const Real & T) const override;
34  virtual void rho_from_T(const Real & T, Real & rho, Real & drho_dT) const override;
35 
36 protected:
38  const Real & _rho_const;
39 
40  // Constants used in specific heat relation
41  const Real _c1;
42  const Real _c2;
43  const Real _c3;
44  const Real _c4;
45 };
const Real & _rho_const
(constant) density
virtual Real cp_from_T(const Real &T) const override
Common class for solid properties that are a function of temperature.
static const std::string cp
Definition: NS.h:121
static InputParameters validParams()
virtual Real cp_integral(const Real &T) const override
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
ThermalUCProperties(const InputParameters &parameters)
virtual Real k_from_T(const Real &T) const override
static const std::string k
Definition: NS.h:130
virtual Real rho_from_T(const Real &T) const override