Skip to content

Commit

Permalink
IceModel::m_ice_thickness_bc_mask needs ghosts
Browse files Browse the repository at this point in the history
  • Loading branch information
ckhroulev committed Sep 29, 2021
1 parent 1d13935 commit 0ec72f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icemodel/IceModel.cc
Expand Up @@ -78,7 +78,7 @@ IceModel::IceModel(IceGrid::Ptr grid, std::shared_ptr<Context> context)
m_bedtoptemp(m_grid, "bedtoptemp", WITHOUT_GHOSTS),
m_velocity_bc_mask(m_grid, "vel_bc_mask", WITH_GHOSTS, m_wide_stencil),
m_velocity_bc_values(m_grid, "_bc", WITH_GHOSTS, m_wide_stencil), // u_bc and v_bc
m_ice_thickness_bc_mask(grid, "thk_bc_mask", WITHOUT_GHOSTS),
m_ice_thickness_bc_mask(grid, "thk_bc_mask", WITH_GHOSTS),
m_thickness_change(grid),
m_ts_times(new std::vector<double>()),
m_extra_bounds("time_bounds", m_sys),
Expand Down

0 comments on commit 0ec72f1

Please sign in to comment.