From 84d0638ff1a1b362745eb6a61548c2d71fe92ff1 Mon Sep 17 00:00:00 2001 From: "Marc T. Henry de Frahan" Date: Tue, 6 Aug 2024 10:17:05 -0600 Subject: [PATCH] Tightening tolerances on tests (#1185) --- .../abl_godunov_hypre/abl_godunov_hypre.inp | 2 +- .../act_abl_joukowskydisk.inp | 16 ++++++++-------- .../act_abl_uniformctdisk.inp | 16 ++++++++-------- .../test_files/act_fixed_wing/act_fixed_wing.inp | 4 ++-- .../act_fixed_wing_fllc/act_fixed_wing_fllc.inp | 4 ++-- .../test_files/act_flat_plate/act_flat_plate.inp | 4 ++-- .../act_moving_wing/act_moving_wing.inp | 4 ++-- .../channel_mol_mesh_map_x.inp | 4 ++-- .../channel_mol_mesh_map_x_seg_vel_solve.inp | 4 ++-- .../channel_mol_mesh_map_y.inp | 4 ++-- .../channel_mol_mesh_map_z.inp | 4 ++-- .../cylinder_refinement/cylinder_refinement.inp | 4 ++-- test/test_files/hbl_godunov/hbl_godunov.inp | 10 +++++----- .../ib_cylinder_Re_300/ib_cylinder_Re_300.inp | 4 ++-- .../ib_sphere_Re_100/ib_sphere_Re_100.inp | 4 ++-- .../test_files/inflow_bds_amr/inflow_bds_amr.inp | 2 +- .../inflow_godunov_amr/inflow_godunov_amr.inp | 2 +- .../uniform_ct_disk_dynamic_adaptation.inp | 4 ++-- .../uniform_ct_disk_gaussian.inp | 4 ++-- 19 files changed, 50 insertions(+), 50 deletions(-) diff --git a/test/test_files/abl_godunov_hypre/abl_godunov_hypre.inp b/test/test_files/abl_godunov_hypre/abl_godunov_hypre.inp index 0676e121c7..d274fd0c56 100644 --- a/test/test_files/abl_godunov_hypre/abl_godunov_hypre.inp +++ b/test/test_files/abl_godunov_hypre/abl_godunov_hypre.inp @@ -72,7 +72,7 @@ zhi.temperature = 0.003 # tracer is used to specify potential temperature gradie mac_proj.verbose = 0 mac_proj.bottom_verbose = 0 -mac_proj.mg_rtol = 1.0e-8 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 mac_proj.max_coarsening_level = 0 diff --git a/test/test_files/act_abl_joukowskydisk/act_abl_joukowskydisk.inp b/test/test_files/act_abl_joukowskydisk/act_abl_joukowskydisk.inp index 6ed2611cbf..35b99c6e73 100644 --- a/test/test_files/act_abl_joukowskydisk/act_abl_joukowskydisk.inp +++ b/test/test_files/act_abl_joukowskydisk/act_abl_joukowskydisk.inp @@ -65,17 +65,17 @@ zhi.temperature = 0.003 zlo.type = "wall_model" mac_proj.num_pre_smooth = 8 mac_proj.num_post_smooth = 8 -mac_proj.mg_rtol = 1.0e-4 -mac_proj.mg_atol = 1.0e-8 +mac_proj.mg_rtol = 1.0e-12 +mac_proj.mg_atol = 1.0e-12 mac_proj.maxiter = 360 nodal_proj.num_pre_smooth = 8 nodal_proj.num_post_smooth = 8 -nodal_proj.mg_rtol = 1.0e-4 -nodal_proj.mg_atol = 1.0e-8 -diffusion.mg_rtol = 1.0e-6 -diffusion.mg_atol = 1.0e-8 -temperature_diffusion.mg_rtol = 1.0e-6 -temperature_diffusion.mg_atol = 1.0e-8 +nodal_proj.mg_rtol = 1.0e-12 +nodal_proj.mg_atol = 1.0e-12 +diffusion.mg_rtol = 1.0e-12 +diffusion.mg_atol = 1.0e-12 +temperature_diffusion.mg_rtol = 1.0e-12 +temperature_diffusion.mg_atol = 1.0e-12 nodal_proj.maxiter = 360 Actuator.labels = Turb1 Turb2 Turb3 Turb4 Actuator.JoukowskyDisk.rotor_diameter = 100.0 diff --git a/test/test_files/act_abl_uniformctdisk/act_abl_uniformctdisk.inp b/test/test_files/act_abl_uniformctdisk/act_abl_uniformctdisk.inp index ce753d8e9a..20e439a186 100644 --- a/test/test_files/act_abl_uniformctdisk/act_abl_uniformctdisk.inp +++ b/test/test_files/act_abl_uniformctdisk/act_abl_uniformctdisk.inp @@ -65,17 +65,17 @@ zhi.temperature = 0.003 zlo.type = "wall_model" mac_proj.num_pre_smooth = 8 mac_proj.num_post_smooth = 8 -mac_proj.mg_rtol = 1.0e-4 -mac_proj.mg_atol = 1.0e-8 +mac_proj.mg_rtol = 1.0e-12 +mac_proj.mg_atol = 1.0e-12 mac_proj.maxiter = 360 nodal_proj.num_pre_smooth = 8 nodal_proj.num_post_smooth = 8 -nodal_proj.mg_rtol = 1.0e-4 -nodal_proj.mg_atol = 1.0e-8 -diffusion.mg_rtol = 1.0e-6 -diffusion.mg_atol = 1.0e-8 -temperature_diffusion.mg_rtol = 1.0e-6 -temperature_diffusion.mg_atol = 1.0e-8 +nodal_proj.mg_rtol = 1.0e-12 +nodal_proj.mg_atol = 1.0e-12 +diffusion.mg_rtol = 1.0e-12 +diffusion.mg_atol = 1.0e-12 +temperature_diffusion.mg_rtol = 1.0e-12 +temperature_diffusion.mg_atol = 1.0e-12 nodal_proj.maxiter = 360 Actuator.labels = Turb1 Turb2 Turb3 Turb4 Actuator.UniformCtDisk.rotor_diameter = 100.0 diff --git a/test/test_files/act_fixed_wing/act_fixed_wing.inp b/test/test_files/act_fixed_wing/act_fixed_wing.inp index a227585617..739086499f 100644 --- a/test/test_files/act_fixed_wing/act_fixed_wing.inp +++ b/test/test_files/act_fixed_wing/act_fixed_wing.inp @@ -68,7 +68,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/act_fixed_wing_fllc/act_fixed_wing_fllc.inp b/test/test_files/act_fixed_wing_fllc/act_fixed_wing_fllc.inp index baa3520fe9..a3c306b6fd 100644 --- a/test/test_files/act_fixed_wing_fllc/act_fixed_wing_fllc.inp +++ b/test/test_files/act_fixed_wing_fllc/act_fixed_wing_fllc.inp @@ -70,7 +70,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/act_flat_plate/act_flat_plate.inp b/test/test_files/act_flat_plate/act_flat_plate.inp index 27332fb3d3..0ae608ffcb 100644 --- a/test/test_files/act_flat_plate/act_flat_plate.inp +++ b/test/test_files/act_flat_plate/act_flat_plate.inp @@ -64,7 +64,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/act_moving_wing/act_moving_wing.inp b/test/test_files/act_moving_wing/act_moving_wing.inp index ad13702fb4..b70d347b20 100644 --- a/test/test_files/act_moving_wing/act_moving_wing.inp +++ b/test/test_files/act_moving_wing/act_moving_wing.inp @@ -71,7 +71,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/channel_mol_mesh_map_x/channel_mol_mesh_map_x.inp b/test/test_files/channel_mol_mesh_map_x/channel_mol_mesh_map_x.inp index 9a08401dfc..a31226eaa1 100644 --- a/test/test_files/channel_mol_mesh_map_x/channel_mol_mesh_map_x.inp +++ b/test/test_files/channel_mol_mesh_map_x/channel_mol_mesh_map_x.inp @@ -60,13 +60,13 @@ yhi.type = "no_slip_wall" diffusion.max_coarsening_level = 0 incflo.verbose = 0 -nodal_proj.mg_atol = 1.0e-09 +nodal_proj.mg_atol = 1.0e-12 nodal_proj.verbose = 0 nodal_proj.bottom_solver = hypre nodal_proj.max_coarsening_level = 0 # mac_proj.mg_rtol = 1.0e-11 -mac_proj.mg_atol = 1.0e-09 +mac_proj.mg_atol = 1.0e-12 mac_proj.do_semicoarsening = true mac_proj.bottom_solver = hypre mac_proj.bottom_verbose = 0 diff --git a/test/test_files/channel_mol_mesh_map_x_seg_vel_solve/channel_mol_mesh_map_x_seg_vel_solve.inp b/test/test_files/channel_mol_mesh_map_x_seg_vel_solve/channel_mol_mesh_map_x_seg_vel_solve.inp index 524a361904..66f28004e0 100644 --- a/test/test_files/channel_mol_mesh_map_x_seg_vel_solve/channel_mol_mesh_map_x_seg_vel_solve.inp +++ b/test/test_files/channel_mol_mesh_map_x_seg_vel_solve/channel_mol_mesh_map_x_seg_vel_solve.inp @@ -61,13 +61,13 @@ yhi.type = "no_slip_wall" diffusion.max_coarsening_level = 0 incflo.verbose = 0 -nodal_proj.mg_atol = 1.0e-09 +nodal_proj.mg_atol = 1.0e-12 nodal_proj.verbose = 0 nodal_proj.bottom_solver = hypre nodal_proj.max_coarsening_level = 0 # mac_proj.mg_rtol = 1.0e-11 -mac_proj.mg_atol = 1.0e-09 +mac_proj.mg_atol = 1.0e-12 mac_proj.do_semicoarsening = true mac_proj.bottom_solver = hypre mac_proj.bottom_verbose = 0 diff --git a/test/test_files/channel_mol_mesh_map_y/channel_mol_mesh_map_y.inp b/test/test_files/channel_mol_mesh_map_y/channel_mol_mesh_map_y.inp index 0159901879..b8be926756 100644 --- a/test/test_files/channel_mol_mesh_map_y/channel_mol_mesh_map_y.inp +++ b/test/test_files/channel_mol_mesh_map_y/channel_mol_mesh_map_y.inp @@ -63,13 +63,13 @@ incflo.verbose = 0 diffusion.max_coarsening_level = 0 -nodal_proj.mg_atol = 1.0e-09 +nodal_proj.mg_atol = 1.0e-12 nodal_proj.verbose = 0 nodal_proj.bottom_solver = hypre nodal_proj.max_coarsening_level = 0 mac_proj.mg_rtol = 1.0e-11 -mac_proj.mg_atol = 1.0e-09 +mac_proj.mg_atol = 1.0e-12 mac_proj.do_semicoarsening = true mac_proj.bottom_solver = hypre mac_proj.bottom_verbose = 0 diff --git a/test/test_files/channel_mol_mesh_map_z/channel_mol_mesh_map_z.inp b/test/test_files/channel_mol_mesh_map_z/channel_mol_mesh_map_z.inp index c6604bb8f2..fffa2c4c25 100644 --- a/test/test_files/channel_mol_mesh_map_z/channel_mol_mesh_map_z.inp +++ b/test/test_files/channel_mol_mesh_map_z/channel_mol_mesh_map_z.inp @@ -63,13 +63,13 @@ incflo.verbose = 0 diffusion.max_coarsening_level = 0 -nodal_proj.mg_atol = 1.0e-09 +nodal_proj.mg_atol = 1.0e-12 nodal_proj.verbose = 0 nodal_proj.bottom_solver = hypre nodal_proj.max_coarsening_level = 0 mac_proj.mg_rtol = 1.0e-11 -mac_proj.mg_atol = 1.0e-09 +mac_proj.mg_atol = 1.0e-12 mac_proj.do_semicoarsening = true mac_proj.bottom_solver = hypre mac_proj.bottom_verbose = 0 diff --git a/test/test_files/cylinder_refinement/cylinder_refinement.inp b/test/test_files/cylinder_refinement/cylinder_refinement.inp index 4186ac8fe3..7674408301 100755 --- a/test/test_files/cylinder_refinement/cylinder_refinement.inp +++ b/test/test_files/cylinder_refinement/cylinder_refinement.inp @@ -83,7 +83,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/hbl_godunov/hbl_godunov.inp b/test/test_files/hbl_godunov/hbl_godunov.inp index 09d83c9d3f..a5fa7a07e3 100644 --- a/test/test_files/hbl_godunov/hbl_godunov.inp +++ b/test/test_files/hbl_godunov/hbl_godunov.inp @@ -25,14 +25,14 @@ incflo.godunov_type = weno_z incflo.diffusion_type = 0 # Type of diffusion scheme used. 0 = explicit diffusion, 1 = Crank-Nicolson, 2 = fully implicit turbulence.model = OneEqKsgsM84 TKE.source_terms = KsgsM84Src -nodal_proj.mg_rtol = 1e-06 +nodal_proj.mg_rtol = 1e-12 nodal_proj.mg_atol = 1e-12 -mac_proj.mg_rtol = 1e-06 +mac_proj.mg_rtol = 1e-12 mac_proj.mg_atol = 1e-12 -diffusion.mg_rtol = 1e-06 +diffusion.mg_rtol = 1e-12 diffusion.mg_atol = 1e-12 -temperature_diffusion.mg_rtol = 1e-10 -temperature_diffusion.mg_atol = 1e-13 +temperature_diffusion.mg_rtol = 1e-12 +temperature_diffusion.mg_atol = 1e-12 incflo.gravity = 0.0 0.0 -9.81 # Gravitational acceleration vector (x,y,z) [m/s^2] incflo.density = 1.17 # Fluid density [kg/m^3] transport.viscosity = 1.853e-05 # Fluid dynamic viscosity [kg/m-s] diff --git a/test/test_files/ib_cylinder_Re_300/ib_cylinder_Re_300.inp b/test/test_files/ib_cylinder_Re_300/ib_cylinder_Re_300.inp index d9f1d405c6..6c6ca513c1 100644 --- a/test/test_files/ib_cylinder_Re_300/ib_cylinder_Re_300.inp +++ b/test/test_files/ib_cylinder_Re_300/ib_cylinder_Re_300.inp @@ -64,7 +64,7 @@ yhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-10 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-10 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/ib_sphere_Re_100/ib_sphere_Re_100.inp b/test/test_files/ib_sphere_Re_100/ib_sphere_Re_100.inp index 88a83a0a8f..6c9991261d 100644 --- a/test/test_files/ib_sphere_Re_100/ib_sphere_Re_100.inp +++ b/test/test_files/ib_sphere_Re_100/ib_sphere_Re_100.inp @@ -61,7 +61,7 @@ yhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-10 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-10 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/inflow_bds_amr/inflow_bds_amr.inp b/test/test_files/inflow_bds_amr/inflow_bds_amr.inp index 918706d694..01b8e2cf3f 100644 --- a/test/test_files/inflow_bds_amr/inflow_bds_amr.inp +++ b/test/test_files/inflow_bds_amr/inflow_bds_amr.inp @@ -48,7 +48,7 @@ amrex.throw_exception = 1 amrex.signal_handling = 0 nodal_proj.verbose = 2 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-10 # Mesh Refinement diff --git a/test/test_files/inflow_godunov_amr/inflow_godunov_amr.inp b/test/test_files/inflow_godunov_amr/inflow_godunov_amr.inp index d01e6e1cf1..62f2f4dca1 100644 --- a/test/test_files/inflow_godunov_amr/inflow_godunov_amr.inp +++ b/test/test_files/inflow_godunov_amr/inflow_godunov_amr.inp @@ -47,7 +47,7 @@ amrex.throw_exception = 1 amrex.signal_handling = 0 nodal_proj.verbose = 2 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-10 # Mesh Refinement diff --git a/test/test_files/uniform_ct_disk_dynamic_adaptation/uniform_ct_disk_dynamic_adaptation.inp b/test/test_files/uniform_ct_disk_dynamic_adaptation/uniform_ct_disk_dynamic_adaptation.inp index 8b8a683543..65c8e062db 100644 --- a/test/test_files/uniform_ct_disk_dynamic_adaptation/uniform_ct_disk_dynamic_adaptation.inp +++ b/test/test_files/uniform_ct_disk_dynamic_adaptation/uniform_ct_disk_dynamic_adaptation.inp @@ -78,7 +78,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12 diff --git a/test/test_files/uniform_ct_disk_gaussian/uniform_ct_disk_gaussian.inp b/test/test_files/uniform_ct_disk_gaussian/uniform_ct_disk_gaussian.inp index 1895ceaf60..5cc8c85dff 100755 --- a/test/test_files/uniform_ct_disk_gaussian/uniform_ct_disk_gaussian.inp +++ b/test/test_files/uniform_ct_disk_gaussian/uniform_ct_disk_gaussian.inp @@ -78,7 +78,7 @@ zhi.type = "slip_wall" incflo.verbose = 0 # incflo_level nodal_proj.verbose = 0 -nodal_proj.mg_rtol = 1.0e-6 +nodal_proj.mg_rtol = 1.0e-12 nodal_proj.mg_atol = 1.0e-12 -mac_proj.mg_rtol = 1.0e-6 +mac_proj.mg_rtol = 1.0e-12 mac_proj.mg_atol = 1.0e-12