Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf committed Dec 19, 2023
1 parent b487c58 commit 46b86ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Source/Spray/SprayParticles.H
Original file line number Diff line number Diff line change
Expand Up @@ -314,15 +314,15 @@ public:

/// \brief Problem specific injection routine, calls #sprayInjection
bool injectParticles(
amrex::Real time, amrex::Real dt, int nstep, int level, int finest_level, );
amrex::Real time, amrex::Real dt, int nstep, int level, int finest_level);

/// \brief Generalized initializer routine. Calls #InitSprayParticles and
/// #PostInitRestart
void SprayInitialize(const std::string& restart_dir = "");

/// \brief Problem specific initialization routine. Typically initializes the
/// SprayJet pointers or calls #uniformSprayInit
void InitSprayParticles(const bool init_parts, );
void InitSprayParticles(const bool init_parts);

/// \brief Should be called after Restart or initialize routine. Reads
/// injection data files if they are present. Checks to ensure all jet names
Expand Down
9 changes: 1 addition & 8 deletions Source/Spray/SpraySetup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,7 @@ SprayParticleContainer::spraySetup(const Real* body_force)
}

void
SprayParticleContainer::SprayInitialize(
#ifdef PELELM_USE_SPRAY
ProbParm const& prob_parm,
#else
ProbParmHost const& prob_parm,
ProbParmDevice const& prob_parm_d,
#endif
const std::string& restart_dir)
SprayParticleContainer::SprayInitialize(const std::string& restart_dir)
{
bool init_sprays = false;
if (restart_dir.empty() && spray_init_file.empty()) {
Expand Down

0 comments on commit 46b86ea

Please sign in to comment.