Lines Matching refs:eps
259 CeedScalar eps = 4e-7; // Finite difference step in TestRiemannHLL_fwd() local
299 Y1_left[i] *= 1 + eps; in TestRiemannHLL_fwd()
301 Y1_right[i % 5] *= 1 + eps; in TestRiemannHLL_fwd()
310 for (int j = 0; j < 5; j++) dFlux_fd[j] = (Flux1[j] - Flux0[j]) / eps; in TestRiemannHLL_fwd()
321 CeedScalar eps = 4e-7; // Finite difference step in TestRiemannHLLC_fwd() local
361 Y1_left[i] *= 1 + eps; in TestRiemannHLLC_fwd()
363 Y1_right[i % 5] *= 1 + eps; in TestRiemannHLLC_fwd()
372 for (int j = 0; j < 5; j++) dFlux_fd[j] = (Flux1[j] - Flux0[j]) / eps; in TestRiemannHLLC_fwd()
383 CeedScalar eps = 4e-7; // Finite difference step in TestComputeHLLSpeeds_Roe_fwd() local
426 Y1_left[i] *= 1 + eps; in TestComputeHLLSpeeds_Roe_fwd()
428 Y1_right[i % 5] *= 1 + eps; in TestComputeHLLSpeeds_Roe_fwd()
438 ds_left_fd = (s_left1 - s_left0) / eps; in TestComputeHLLSpeeds_Roe_fwd()
439 ds_right_fd = (s_right1 - s_right0) / eps; in TestComputeHLLSpeeds_Roe_fwd()
458 CeedScalar eps = 4e-7; // Finite difference step in TestTotalSpecificEnthalpy_fwd() local
483 Y1[i] *= 1 + eps; in TestTotalSpecificEnthalpy_fwd()
488 dH_fd = (H1 - H0) / eps; in TestTotalSpecificEnthalpy_fwd()
505 CeedScalar eps = 4e-7; // Finite difference step in TestRowSetup_fwd() local
522 rho1[i] *= 1 + eps; in TestRowSetup_fwd()
526 dR_fd.left = (R1.left - R0.left) / eps; in TestRowSetup_fwd()
527 dR_fd.right = (R1.right - R0.right) / eps; in TestRowSetup_fwd()