Skip to content

Commit

Permalink
Merge branch 'development' into always_use_eb
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren committed Jan 7, 2025
2 parents 89bd144 + 9689125 commit 3ea239c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/TimeIntegration/ERF_SlowRhsPost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void erf_slow_rhs_post (int level, int finest_level,
TurbChoice tc = solverChoice.turbChoice[level];

const MultiFab* t_mean_mf = nullptr;
if (most) t_mean_mf = most->get_mac_avg(0,2);
if (most) t_mean_mf = most->get_mac_avg(level,2);

const bool l_use_terrain = (solverChoice.mesh_type != MeshType::ConstantDz);
const bool l_moving_terrain = (solverChoice.terrain_type == TerrainType::MovingFittedMesh);
Expand Down
2 changes: 1 addition & 1 deletion Source/TimeIntegration/ERF_SlowRhsPre.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void erf_slow_rhs_pre (int level, int finest_level,
TurbChoice tc = solverChoice.turbChoice[level];

const MultiFab* t_mean_mf = nullptr;
if (most) t_mean_mf = most->get_mac_avg(0,2);
if (most) t_mean_mf = most->get_mac_avg(level,2);

int start_comp = 0;
int num_comp = 2;
Expand Down

0 comments on commit 3ea239c

Please sign in to comment.