diff --git a/test/IntegrationTests/refs/fv_advection_sine/fv_advection_sine.toml b/test/IntegrationTests/refs/fv_advection_sine/fv_advection_sine.toml new file mode 100644 index 0000000000000000000000000000000000000000..331a64e5d303fbf3edf03f1d68505586e2eeae18 --- /dev/null +++ b/test/IntegrationTests/refs/fv_advection_sine/fv_advection_sine.toml @@ -0,0 +1,18 @@ +[ScalarEq] +equation = "advection" +id = "sine" + +[Mesh] +range = [ 0.0, 1.0 ] +k = 256 +basis = "lgl_lumped" +scheme = "FV" + +[Output] +every_iteration = 0 +variables = [ "u" ] +aligned_ts = [ 0.25, 0.50, 0.75, 1.0, 1.25, 1.50, 1.75, 2.0 ] + +[Evolution] +tend = 2.2 +cfl = 0.9 diff --git a/test/IntegrationTests/refs/fv_advection_sine/output.h5 b/test/IntegrationTests/refs/fv_advection_sine/output.h5 new file mode 100644 index 0000000000000000000000000000000000000000..1813b5e200253908e35815ff827dbcc768cc0233 Binary files /dev/null and b/test/IntegrationTests/refs/fv_advection_sine/output.h5 differ diff --git a/test/IntegrationTests/refs/testconfig.toml b/test/IntegrationTests/refs/testconfig.toml index ee94aa62253d0f601a3a91c08d135da02307cc7c..35fc1305fc69d5bf0dfb737f19092d7ddf64b2db 100644 --- a/test/IntegrationTests/refs/testconfig.toml +++ b/test/IntegrationTests/refs/testconfig.toml @@ -7,6 +7,9 @@ default_abstol = 1e-8 [advection_sine] variables = [ "u" ] +[fv_advection_sine] +variables = [ "u" ] + [advection_sine_glgl] variables = [ "u" ]