Go to the source code of this file.
◆ TEST_F() [1/8]
Definition at line 13 of file PBSodiumFluidPropertiesTest.C.
14{
15 const Real T = 1000.0;
16 const Real p = 2.0 * 101325;
17
18 ABS_TEST(_fp->rho_from_p_T(
p,
T), 779.284, REL_TOL_SAVED_VALUE);
19 DERIV_TEST(_fp->rho_from_p_T,
p,
T, REL_TOL_DERIVATIVE);
20}
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
◆ TEST_F() [2/8]
Definition at line 40 of file PBSodiumFluidPropertiesTest.C.
41{
42 const Real T = 1000.0;
43 const Real p = 2.0 * 101325;
44
45 REL_TEST(_fp->cp_from_p_T(
p,
T), 1263.22170053911, REL_TOL_SAVED_VALUE);
46 DERIV_TEST(_fp->cp_from_p_T,
p,
T, REL_TOL_DERIVATIVE);
47}
◆ TEST_F() [3/8]
◆ TEST_F() [4/8]
Definition at line 22 of file PBSodiumFluidPropertiesTest.C.
23{
24 const Real T = 1000.0;
25 const Real p = 2.0 * 101325;
26
27 ABS_TEST(_fp->h_from_p_T(
p,
T), 1.274762047677502967e+06, 1000 * REL_TOL_SAVED_VALUE);
28 DERIV_TEST(_fp->h_from_p_T,
p,
T, REL_TOL_DERIVATIVE);
29}
◆ TEST_F() [5/8]
◆ TEST_F() [6/8]
◆ TEST_F() [7/8]
Definition at line 57 of file PBSodiumFluidPropertiesTest.C.
58{
59 {
60 const Real T = 1000.0;
61 const Real p = 2.0 * 101325;
62
63 REL_TEST(_fp->mu_from_p_T(
p,
T), 0.0001858273, REL_TOL_SAVED_VALUE);
64 }
65
66 {
68 const Real T = 1000.0;
69
70 REL_TEST(_fp->mu_from_rho_T(
rho,
T), 0.0001858273, REL_TOL_SAVED_VALUE);
71 }
72}
◆ TEST_F() [8/8]