Skip to content

Commit

Permalink
Minor changes, re-trigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aprilnovak committed Jan 17, 2023
1 parent 6c07e81 commit a0b74ce
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
# * POTASSIUM_DIR : Top-level potassium dir (default: $(CONTRIB_DIR)/potassium)
# * IAPWS95_DIR : Top-level iapws95 dir (default: $(CONTRIB_DIR)/iapws95)

# * EIGEN3_DIR : Top-level eigen3 dir (should contain FindEigen3.cmake). This
# is only needed if enabling DagMC.

# To control where OpenMC grabs HDF5 from; you don't need to set any of these unless
# you don't want to use the HDF5 that comes with PETSc

Expand Down Expand Up @@ -57,6 +60,12 @@ SOCKEYE_DIR ?= $(CONTRIB_DIR)/sockeye
SODIUM_DIR ?= $(CONTRIB_DIR)/sodium
POTASSIUM_DIR ?= $(CONTRIB_DIR)/potassium
IAPWS95_DIR ?= $(CONTRIB_DIR)/iapws95

# This is the Eigen3 location on CIVET. If you are using MOOSE's conda environment,
# you don't need to set these variables, because conda sets them for you. The only
# scenario where you might need to manually set these is if you're not using the
# conda environment. You will get a compile error about FindEigen3.cmake if you
# do indeed need to set these.
EIGEN3_DIR ?= $(LIBMESH_DIR)/include
Eigen3_DIR ?= $(EIGEN3_DIR)

Expand Down Expand Up @@ -254,7 +263,6 @@ ifeq ($(ENABLE_OPENMC), yes)
endif

ifeq ($(ENABLE_DAGMC), yes)
ADDITIONAL_CPPFLAGS += $(DAGMC_INCLUDES)
libmesh_CXXFLAGS += -DENABLE_DAGMC
endif

Expand Down
2 changes: 1 addition & 1 deletion doc/content/compiletime.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This page collects some common issues encountered when compiling Cardinal.

## Switching 3-rd Party Options
## Switching 3rd Party Options

If you are toggling `ENABLE_NEK`, `ENABLE_OPENMC` and/or `ENABLE_DAGMC`,
you may need to clear out the `build/` and `install/` directories in-between
Expand Down
1 change: 1 addition & 0 deletions tutorials/dagmc/openmc.i
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
type = OpenMCCellAverageProblem
verbose = true
tally_type = mesh
mesh_template = mesh_in.e
tally_name = 'heat_source'
solid_cell_level = 0
solid_blocks = '2 3'
Expand Down
1 change: 0 additions & 1 deletion tutorials/dagmc/tests
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
cli_args = 'Executioner/num_steps=2'
min_parallel = 2
prereq = mesh
mesh_mode = 'replicated'
requirement = 'The system shall couple DAGMC OpenMC models to MOOSE.'
required_objects = 'DagMCPostprocessor'
[]
Expand Down

0 comments on commit a0b74ce

Please sign in to comment.