Skip to content

Commit

Permalink
tidy cmake stuff
Browse files Browse the repository at this point in the history
update pp
  • Loading branch information
baperry2 committed Nov 8, 2024
1 parent c73ed8f commit 309159a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion CMake/BuildPelePhysicsLib.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ function(build_pele_physics_lib pele_physics_lib_name)

target_sources(${pele_physics_lib_name}
PRIVATE
${PELE_PHYSICS_EOS_DIR}/EOS.cpp
${PELE_PHYSICS_EOS_DIR}/EOS.H
${PELE_PHYSICS_EOS_DIR}/GammaLaw.H
${PELE_PHYSICS_EOS_DIR}/Fuego.H
Expand Down
3 changes: 2 additions & 1 deletion Source/PeleLMeX_Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,8 @@ PeleLM::initMixtureFraction()
// error will be raised if user tries to derive mixfrac because Zfu is
// negative
return;
} else if (pele::physics::PhysicsType::eos_type::identifier() == "Manifold") {
}
if (pele::physics::PhysicsType::eos_type::identifier() == "Manifold") {
// Just take a mixture fraction if it is a manifold parameter
// otherwise do nothing (an error will later be raised if the user tries to
// derive it) also raise an error if the user requests it and it is not
Expand Down
2 changes: 1 addition & 1 deletion Submodules/PelePhysics
Submodule PelePhysics updated 1 files
+4 −4 Source/Eos/EOS.H

0 comments on commit 309159a

Please sign in to comment.