Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/field/field3d.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ Field3D& Field3D::operator=(const BoutReal val) {
}

void Field3D::calcParallelSlices() {
ASSERT1(areCalcParallelSlicesAllowed());
getCoordinates()->getParallelTransform().calcParallelSlices(*this);
}

Expand Down
2 changes: 1 addition & 1 deletion src/mesh/parallel/fci.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ void FCITransform::checkInputGrid() {
}

void FCITransform::calcParallelSlices(Field3D& f) {

ASSERT1(f.areCalcParallelSlicesAllowed());
ASSERT1(f.getDirectionY() == YDirectionType::Standard);
// Only have forward_map/backward_map for CELL_CENTRE, so can only deal with
// CELL_CENTRE inputs
Expand Down
Loading