https://mooseframework.inl.gov
FlinakFluidPropertiesTest.C
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 
12 
16 TEST_F(FlinakFluidPropertiesTest, fluidName) { EXPECT_EQ(_fp->fluidName(), "flinak"); }
17 
22 {
23  ABS_TEST(_fp->molarMass(), 41.291077435E-3, REL_TOL_SAVED_VALUE);
24 }
25 
30 TEST_F(FlinakFluidPropertiesTest, thermalConductivity)
31 {
32  const Real T = 800.0;
33  const Real p = 3.0 * 101325;
34  const Real e = _fp->e_from_p_T(p, T);
35  const Real v = 1. / _fp->rho_from_p_T(p, T);
36  const Real k = 0.83;
37 
38  REL_TEST(_fp->k_from_v_e(v, e), k, REL_TOL_SAVED_VALUE);
39  REL_TEST(_fp->k_from_p_T(p, T), k, REL_TOL_SAVED_VALUE);
40  DERIV_TEST(_fp->k_from_p_T, p, T, REL_TOL_DERIVATIVE);
41 }
42 
47 {
48  const Real T = 800.0;
49  const Real p = 3.0 * 101325;
50  const Real e = _fp->e_from_p_T(p, T);
51  const Real v = 1. / _fp->rho_from_p_T(p, T);
52  const Real mu = 0.0073420946394096;
53 
54  REL_TEST(_fp->mu_from_v_e(v, e), mu, REL_TOL_SAVED_VALUE);
55  REL_TEST(_fp->mu_from_p_T(p, T), mu, REL_TOL_SAVED_VALUE);
56  DERIV_TEST(_fp->mu_from_p_T, p, T, REL_TOL_DERIVATIVE);
57 }
58 
62 TEST_F(FlinakFluidPropertiesTest, isobaricSpecificHeat)
63 {
64  const Real T = 800.0;
65  const Real p = 3.0 * 101325;
66  const Real e = _fp->e_from_p_T(p, T);
67  const Real v = 1. / _fp->rho_from_p_T(p, T);
68  const Real cp = 2010.;
69 
70  REL_TEST(_fp->cp_from_v_e(v, e), cp, REL_TOL_SAVED_VALUE);
71  REL_TEST(_fp->cp_from_p_T(p, T), cp, REL_TOL_SAVED_VALUE);
72  DERIV_TEST(_fp->cp_from_p_T, p, T, REL_TOL_DERIVATIVE);
73  DERIV_TEST(_fp->cp_from_v_e, v, e, REL_TOL_DERIVATIVE);
74 }
75 
79 TEST_F(FlinakFluidPropertiesTest, isochoricSpecificHeat)
80 {
81  const Real T = 800.0;
82  const Real p = 3.0 * 101325;
83  const Real e = _fp->e_from_p_T(p, T);
84  const Real v = 1. / _fp->rho_from_p_T(p, T);
85 
86  REL_TEST(_fp->cv_from_v_e(v, e), 45.55316141330309, REL_TOL_SAVED_VALUE);
87  DERIV_TEST(_fp->cv_from_v_e, v, e, REL_TOL_DERIVATIVE);
88 }
89 
94 {
95  const Real T = 800.0;
96  const Real p = 3.0 * 101325;
97 
98  ABS_TEST(_fp->rho_from_p_T(p, T), 2145.035107086000153, REL_TOL_SAVED_VALUE);
99  DERIV_TEST(_fp->rho_from_p_T, p, T, 4.0e-6);
100 }
101 
105 TEST_F(FlinakFluidPropertiesTest, specificInternalEnergy)
106 {
107  const Real T = 800.0;
108  const Real p = 3.0 * 101325;
109  const Real e = 1607858.289032661588863;
110 
111  ABS_TEST(_fp->e_from_p_T(p, T), e, REL_TOL_SAVED_VALUE);
112  DERIV_TEST(_fp->e_from_p_T, p, T, REL_TOL_DERIVATIVE);
113 
114  ABS_TEST(_fp->e_from_p_rho(p, _fp->rho_from_p_T(p, T)), e, REL_TOL_SAVED_VALUE);
115 }
116 
121 {
122  const Real T = 800.0;
123  const Real p = 3.0 * 101325;
124  const Real e = _fp->e_from_p_T(p, T);
125  const Real v = 1. / _fp->rho_from_p_T(p, T);
126 
127  // test pressure and its derivatives with respect to v and e. We need a slightly
128  // larger tolerance for pressure because the compressibility is so small we are
129  // polluted by a little numerical error.
130  REL_TEST(_fp->p_from_v_e(v, e), p, 6e-11);
131  DERIV_TEST(_fp->p_from_v_e, v, e, 2e-9);
132 }
133 
138 {
139  const Real T = 800.0;
140  const Real p = 3.0 * 101325;
141  const Real e = _fp->e_from_p_T(p, T);
142  const Real h = _fp->h_from_p_T(p, T);
143  const Real v = 1. / _fp->rho_from_p_T(p, T);
144 
145  REL_TEST(_fp->T_from_v_e(v, e), T, REL_TOL_SAVED_VALUE);
146  DERIV_TEST(_fp->T_from_v_e, v, e, REL_TOL_DERIVATIVE);
147 
148  REL_TEST(_fp->T_from_p_rho(p, 1. / v), T, REL_TOL_SAVED_VALUE);
149  REL_TEST(_fp->T_from_p_h(p, h), T, REL_TOL_SAVED_VALUE);
150 }
151 
156 {
157  const Real T = 800.0;
158  const Real p = 3.0 * 101325;
159 
160  ABS_TEST(_fp->h_from_p_T(p, T), 1.608e+06, REL_TOL_SAVED_VALUE);
161  DERIV_TEST(_fp->h_from_p_T, p, T, REL_TOL_DERIVATIVE);
162 }
static const std::string density
Definition: NS.h:33
static const std::string temperature
Definition: NS.h:59
static const std::string cp
Definition: NS.h:121
static const std::string mu
Definition: NS.h:123
TEST_F(FlinakFluidPropertiesTest, fluidName)
Test that the fluid name is correctly returned.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static const std::string v
Definition: NS.h:84
static const std::string pressure
Definition: NS.h:56
static const std::string k
Definition: NS.h:130