Skip to content

Commit 095d780

Browse files
committed
keyword argument
1 parent 283153f commit 095d780

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/moist_euler/rainy_bubble/elixir_rainy_euler_rainy_bubble.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ atmosphere_data = AtmosphereLayersRainyBubble(equations; total_height = coordina
1818

1919
# Create the initial condition with the initial data set
2020
function initial_condition_rainy(x, t, equations::CompressibleRainyEulerEquations2D)
21-
return initial_condition_bubble_rainy(x, t, equations; atmosphere_data)
21+
return initial_condition_bubble_rainy(x, t, equations;
22+
atmosphere_layers = atmosphere_data)
2223
end
2324

2425
###############################################################################

examples/moist_euler/rainy_bubble/elixir_rainy_euler_rainy_bubble_diffusion.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ atmosphere_data = AtmosphereLayersRainyBubble(equations; total_height = coordina
2121

2222
# Create the initial condition with the initial data set
2323
function initial_condition_rainy(x, t, equations::CompressibleRainyEulerEquations2D)
24-
return initial_condition_bubble_rainy(x, t, equations; atmosphere_data)
24+
return initial_condition_bubble_rainy(x, t, equations;
25+
atmosphere_layers = atmosphere_data)
2526
end
2627

2728
###############################################################################

0 commit comments

Comments
 (0)