Skip to content

Commit

Permalink
Modify linked design file in dispersion test.
Browse files Browse the repository at this point in the history
  • Loading branch information
grmnptr authored and tanoret committed Dec 1, 2024
1 parent e5a7a04 commit f76a9b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions framework/src/fvbcs/FVFunctorDirichletBC.C
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,13 @@ FVFunctorDirichletBCTempl<is_ad>::boundaryValue(const FaceInfo & fi,
if (!_use_other_side)
return _functor(sfa, state);
else if (fi.elemPtr() == sfa.face_side)
return _functor({&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.neighborPtr(), nullptr},
state);
return _functor(
{&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.neighborPtr(), nullptr},
state);
else
return _functor({&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.elemPtr(), nullptr},
state);
return _functor(
{&fi, Moose::FV::LimiterType::CentralDifference, true, false, fi.elemPtr(), nullptr},
state);
}

template class FVFunctorDirichletBCTempl<false>;
Expand Down
2 changes: 1 addition & 1 deletion test/tests/fvkernels/dispersion-test/tests
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Tests]
design = 'INSFVScalarFieldAdvection.md'
design = 'FVAdvection.md'
issues = '#28891'
[bottom_left_limited_scalar_advection]
requirement = 'The system shall be able to perform a variety of limiting schemes when solving scalar transport equations in cartesian meshes with bottom-left advection. These schemes include'
Expand Down

0 comments on commit f76a9b7

Please sign in to comment.