Go to the documentation of this file.
11 #include "MooseError.h"
20 params.addClassDescription(
"Fluid properties for sodium");
31 const Real T2 = T * T;
32 const Real T3 = T2 * T;
33 return 124.67 - 0.11381 * T + 5.5226e-5 * T2 - 1.1842e-8 * T3;
39 const Real T2 = T * T;
40 const Real T3 = T2 * T;
43 return -365.77e3 + 1.6582e3 * T - 4.2395e-1 * T2 + 1.4847e-4 * T3 + 2992.6e3 / T;
49 const Real T2 = T * T;
51 return 1.6582e3 - 8.4790e-1 * T + 4.4541e-4 * T2 - 2992.6e3 / T2;
58 Real T = (H + 365.77e3) / 1.6582e3;
62 for (
unsigned iteration = 0; iteration < 10; ++iteration)
64 Real residual =
h(T) - H;
66 if (std::abs(residual / H) < 1e-6)
78 const Real rhoc = 219.0;
79 const Real f = 275.32;
80 const Real g = 511.58;
81 const Real Tc = 2503.7;
82 mooseAssert(T < Tc,
"Temperature is greater than critical temperature 2503.7 K ");
84 return rhoc + f * (1 - T / Tc) + g * std::sqrt(1 - T / Tc);
90 const Real f = 275.32;
91 const Real g = 511.58;
92 const Real Tc = 2503.7;
93 mooseAssert(T < Tc,
"Temperature is greater than critical temperature 2503.7 K ");
95 return -(f + g * (0.5) / std::sqrt(1 - T / Tc)) / Tc;
InputParameters validParams< SodiumProperties >()
Properties of liquid sodium from ANL/RE-95/2 report "Thermodynamic and Transport Properties of Sodium...
Real rho(Real temperature) const
Density as a function of temperature.
Real heatCapacity(Real temperature) const
Heat capacity of liquid Na in J/kg-K as a function of temperature.
InputParameters validParams< FluidProperties >()
Real drho_dh(Real enthalpy) const
Derivative of density w.r.t enthalpy.
Real drho_dT(Real temperature) const
Derivative of density w.r.t temperature.
registerMooseObject("FluidPropertiesApp", SodiumProperties)
Real temperature(Real enthalpy) const
Inverse solve for temperature [K] from enthalpy [J/kg].
SodiumProperties(const InputParameters ¶meters)
Real h(Real temperature) const
Enthalpy of liquid Na (relative to solid Na at STP) in J/kg as a function of temperature.
Real k(Real temperature) const
Thermal conductivity as a function of temperature.