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
2 changes: 2 additions & 0 deletions src/finalize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "openmc/material.h"
#include "openmc/mesh.h"
#include "openmc/message_passing.h"
#include "openmc/mgxs_interface.h"
#include "openmc/nuclide.h"
#include "openmc/photon.h"
#include "openmc/plot.h"
Expand Down Expand Up @@ -163,6 +164,7 @@ int openmc_finalize()
data::energy_min = {0.0, 0.0, 0.0, 0.0};
data::temperature_min = 0.0;
data::temperature_max = INFTY;
data::mg = {};
model::root_universe = -1;
model::plotter_seed = 1;
openmc::openmc_set_seed(DEFAULT_SEED);
Expand Down
4 changes: 3 additions & 1 deletion tools/ci/gha-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ if [[ $MPI == 'y' ]]; then
export CC=mpicc
export HDF5_MPI=ON
export HDF5_DIR=/usr/lib/x86_64-linux-gnu/hdf5/mpich
pip install --no-binary=h5py h5py
# Install h5py without build isolation to pick up already installed mpi4py
pip install Cython pkgconfig
pip install --no-build-isolation --no-binary=h5py h5py
fi

# Build and install OpenMC executable
Expand Down
Loading