Skip to content

Commit

Permalink
Fix interface
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrete committed Nov 29, 2024
1 parent 1bac2ee commit 53250dc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/outputs/per_block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,7 @@ void UserOutput::WriteOutputFile(Mesh *pm, ParameterInput *pin, SimTime *tm,
info_group);

// Boundary conditions
std::vector<std::string> boundary_condition_str(BOUNDARY_NFACES);
for (size_t i = 0; i < boundary_condition_str.size(); i++) {
boundary_condition_str[i] = GetBoundaryString(pm->mesh_bcs[i]);
}

HDF5WriteAttribute("BoundaryConditions", boundary_condition_str, info_group);
HDF5WriteAttribute("BoundaryConditions", pm->mesh_bc_names, info_group);
Kokkos::Profiling::popRegion(); // write Info
} // Info section

Expand Down

0 comments on commit 53250dc

Please sign in to comment.