Lines Matching refs:eps
218 CeedScalar eps = 4e-7; // Finite difference step in TestRiemannHLL_fwd() local
258 Y1_left[i] *= 1 + eps; in TestRiemannHLL_fwd()
260 Y1_right[i % 5] *= 1 + eps; in TestRiemannHLL_fwd()
269 for (int j = 0; j < 5; j++) dFlux_fd[j] = (Flux1[j] - Flux0[j]) / eps; in TestRiemannHLL_fwd()
280 CeedScalar eps = 4e-7; // Finite difference step in TestRiemannHLLC_fwd() local
320 Y1_left[i] *= 1 + eps; in TestRiemannHLLC_fwd()
322 Y1_right[i % 5] *= 1 + eps; in TestRiemannHLLC_fwd()
331 for (int j = 0; j < 5; j++) dFlux_fd[j] = (Flux1[j] - Flux0[j]) / eps; in TestRiemannHLLC_fwd()
342 CeedScalar eps = 4e-7; // Finite difference step in TestComputeHLLSpeeds_Roe_fwd() local
385 Y1_left[i] *= 1 + eps; in TestComputeHLLSpeeds_Roe_fwd()
387 Y1_right[i % 5] *= 1 + eps; in TestComputeHLLSpeeds_Roe_fwd()
397 ds_left_fd = (s_left1 - s_left0) / eps; in TestComputeHLLSpeeds_Roe_fwd()
398 ds_right_fd = (s_right1 - s_right0) / eps; in TestComputeHLLSpeeds_Roe_fwd()
417 CeedScalar eps = 4e-7; // Finite difference step in TestTotalSpecificEnthalpy_fwd() local
442 Y1[i] *= 1 + eps; in TestTotalSpecificEnthalpy_fwd()
447 dH_fd = (H1 - H0) / eps; in TestTotalSpecificEnthalpy_fwd()
464 CeedScalar eps = 4e-7; // Finite difference step in TestRowSetup_fwd() local
481 rho1[i] *= 1 + eps; in TestRowSetup_fwd()
485 dR_fd.left = (R1.left - R0.left) / eps; in TestRowSetup_fwd()
486 dR_fd.right = (R1.right - R0.right) / eps; in TestRowSetup_fwd()