www.mooseframework.org
SodiumProperties.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 "FluidProperties.h"
13 #include "Moose.h"
14 
15 class SodiumProperties;
16 
17 template <>
18 InputParameters validParams<SodiumProperties>();
19 
25 {
26 
27 public:
28  SodiumProperties(const InputParameters & parameters);
29 
35  Real k(Real temperature) const;
36 
42  Real h(Real temperature) const;
43 
49  Real heatCapacity(Real temperature) const;
50 
55  Real temperature(Real enthalpy) const;
56 
61  Real rho(Real temperature) const;
62 
67  Real drho_dT(Real temperature) const;
68 
73  Real drho_dh(Real enthalpy) const;
74 };
75 
validParams< SodiumProperties >
InputParameters validParams< SodiumProperties >()
Definition: SodiumProperties.C:17
FluidProperties.h
NS::enthalpy
const std::string enthalpy
Definition: NS.h:27
SodiumProperties
Properties of liquid sodium from ANL/RE-95/2 report "Thermodynamic and Transport Properties of Sodium...
Definition: SodiumProperties.h:24
SodiumProperties::rho
Real rho(Real temperature) const
Density as a function of temperature.
Definition: SodiumProperties.C:76
SodiumProperties::heatCapacity
Real heatCapacity(Real temperature) const
Heat capacity of liquid Na in J/kg-K as a function of temperature.
Definition: SodiumProperties.C:47
SodiumProperties::drho_dh
Real drho_dh(Real enthalpy) const
Derivative of density w.r.t enthalpy.
Definition: SodiumProperties.C:99
SodiumProperties::drho_dT
Real drho_dT(Real temperature) const
Derivative of density w.r.t temperature.
Definition: SodiumProperties.C:88
FluidProperties
Definition: FluidProperties.h:28
SodiumProperties::temperature
Real temperature(Real enthalpy) const
Inverse solve for temperature [K] from enthalpy [J/kg].
Definition: SodiumProperties.C:55
SodiumProperties::SodiumProperties
SodiumProperties(const InputParameters &parameters)
Definition: SodiumProperties.C:24
SodiumProperties::h
Real h(Real temperature) const
Enthalpy of liquid Na (relative to solid Na at STP) in J/kg as a function of temperature.
Definition: SodiumProperties.C:37
SodiumProperties::k
Real k(Real temperature) const
Thermal conductivity as a function of temperature.
Definition: SodiumProperties.C:29