https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ThermalSS316Properties.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
13
19{
20public:
22
24
25#pragma GCC diagnostic push
26#pragma GCC diagnostic ignored "-Woverloaded-virtual"
27
28 virtual Real k_from_T(const Real & T) const override;
29
30 virtual void k_from_T(const Real & T, Real & k, Real & dk_dT) const override;
31
32 virtual Real cp_from_T(const Real & T) const override;
33
34 virtual void cp_from_T(const Real & T, Real & cp, Real & dcp_dT) const override;
35
36 virtual Real cp_integral(const Real & T) const override;
37
38 virtual Real rho_from_T(const Real & T) const override;
39
40 virtual void rho_from_T(const Real & T, Real & rho, Real & drho_dT) const override;
41
42protected:
43 // Constants used in specific heat relation
44 const Real _c1;
45 const Real _c2;
46};
47
48#pragma GCC diagnostic pop
const double rho
const double T
const InputParameters & parameters() const
Stainless steel alloy 316 thermal solid properties as a function of temperature.
virtual Real rho_from_T(const Real &T) const override
virtual Real cp_integral(const Real &T) const override
virtual Real cp_from_T(const Real &T) const override
virtual Real k_from_T(const Real &T) const override
static InputParameters validParams()
Common class for solid properties that are a function of temperature.