Skip to content

Commit 2fb0f05

Browse files
committed
fix
1 parent 42b7de6 commit 2fb0f05

17 files changed

+8
-8
lines changed

examples/advection/cartesian_manifold/elixir_cubed_sphere.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ using TrixiAtmo
55
# To run a convergence test, we have two options:
66
# 1. Use the p4est variable initial_refinement_level to refine the grid:
77
# - To do this, line 46 ("initial_refinement_level = 0") must NOT be a comment
8-
# - Call convergence_test("../examples/elixir_shallowwater_cubed_sphere_shell_advection.jl", 4, initial_refinement_level = 0)
8+
# - Call convergence_test("../examples/advection/cartesian_manifold/elixir_cubed_sphere.jl", 4, initial_refinement_level = 0)
99
# - NOT OPTIMAL: Good convergence the first iterations, but then it stagnates. Reason: The geometry does not improve with refinement.
1010
# 2. Use the variable trees_per_face_dimension of P4estMeshCubedSphere2D
1111
# - To do this, line 46 ("initial_refinement_level = 0") MUST BE commented/removed.
12-
# - Call convergence_test("../examples/elixir_shallowwater_cubed_sphere_shell_advection.jl", 4, cells_per_dimension = (3,3))
12+
# - Call convergence_test("../examples/advection/cartesian_manifold/elixir_cubed_sphere.jl", 4, cells_per_dimension = (3,3))
1313
# - OPTIMAL convergence of polydeg + 1. Reason: The geometry improves with refinement.
1414

1515
###############################################################################

examples/advection/cartesian_manifold/elixir_quad_icosahedron.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ using TrixiAtmo
55
# To run a convergence test, we have two options:
66
# 1. Use the p4est variable initial_refinement_level to refine the grid:
77
# - To do this, line 46 ("initial_refinement_level = 0") must NOT be a comment
8-
# - Call convergence_test("../examples/elixir_shallowwater_quad_icosahedron_shell_advection.jl", 4, initial_refinement_level = 0)
8+
# - Call convergence_test("../examples/advection/cartesian_manifold/elixir_quad_icosahedron.jl", 4, initial_refinement_level = 0)
99
# - NOT OPTIMAL: Good convergence the first iterations, but then it stagnates. Reason: The geometry does not improve with refinement.
1010
# 2. Use the variable trees_per_face_dimension of P4estMeshQuadIcosahedron2D
1111
# - To do this, line 46 ("initial_refinement_level = 0") MUST BE commented/removed
12-
# - Call convergence_test("../examples/elixir_shallowwater_quad_icosahedron_shell_advection.jl", 4, cells_per_dimension = (1,1))
12+
# - Call convergence_test("../examples/advection/cartesian_manifold/ elixir_quad_icosahedron.jl", 4, cells_per_dimension = (1,1))
1313
# - OPTIMAL convergence of polydeg + 1. Reason: The geometry improves with refinement.
1414

1515
###############################################################################

examples/advection/covariant/elixir_cubed_sphere.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# DGSEM for the linear advection equation on the cubed sphere
33
###############################################################################
44
# To run a convergence test, use
5-
# convergence_test("../examples/elixir_spherical_advection_covariant_cubed_sphere.jl", 4, cells_per_dimension = (3,3))
5+
# convergence_test("../examples/advection/covariant/elixir_cubed_sphere.jl", 4, cells_per_dimension = (3,3))
66

77
using OrdinaryDiffEqLowStorageRK, Trixi, TrixiAtmo
88

examples/advection/covariant/elixir_quad_icosahedron.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# DGSEM for the linear advection equation on a quadrilateral icosahedral grid
33
###############################################################################
44
# To run a convergence test, use
5-
# convergence_test("../examples/elixir_spherical_advection_covariant_quad_icosahedron.jl", 4, cells_per_dimension = (1,1))
5+
# convergence_test("../examples/advection/covariant/elixir_quad_icosahedron.jl", 4, cells_per_dimension = (1,1))
66

77
using OrdinaryDiffEqLowStorageRK, Trixi, TrixiAtmo
88

examples/shallowwater/cartesian_manifold/elixir_cartesian_unsteady_solid_body_rotation_EC_projection.jl renamed to examples/shallow_water/cartesian_manifold/elixir_cartesian_unsteady_solid_body_rotation_EC_projection.jl

File renamed without changes.

examples/shallowwater/cartesian_manifold/elixir_geostrophic_balance.jl renamed to examples/shallow_water/cartesian_manifold/elixir_geostrophic_balance.jl

File renamed without changes.

examples/shallowwater/cartesian_manifold/elixir_isolated_mountain.jl renamed to examples/shallow_water/cartesian_manifold/elixir_isolated_mountain.jl

File renamed without changes.

examples/shallowwater/cartesian_manifold/elixir_unsteady_solid_body_rotation_EC_correction.jl renamed to examples/shallow_water/cartesian_manifold/elixir_unsteady_solid_body_rotation_EC_correction.jl

File renamed without changes.

examples/shallowwater/cartesian_manifold/elixir_well_balanced.jl renamed to examples/shallow_water/cartesian_manifold/elixir_well_balanced.jl

File renamed without changes.

examples/shallowwater/covariant/elixir_barotropic_instability.jl renamed to examples/shallow_water/covariant/elixir_barotropic_instability.jl

File renamed without changes.

0 commit comments

Comments
 (0)