Skip to content

Commit

Permalink
setup with coalbure 0d box model
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctoyotta1024 committed Jan 18, 2024
1 parent c7bb8df commit 6a4bf69
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,17 +126,17 @@ config_condensation(const Config &config, const Timesteps &tsteps)
inline MicrophysicalProcess auto
config_collisions(const Config &config, const Timesteps &tsteps)
{
// const PairProbability auto collprob = LongHydroProb();
// // const NFragments auto nfrags = ConstNFrags(5.0);
// const NFragments auto nfrags = CollisionKineticEnergyNFrags{};
// // const CoalBuReFlag auto coalbure_flag = SUCoalBuReFlag{};
// const CoalBuReFlag auto coalbure_flag = TSCoalBuReFlag{};
// const MicrophysicalProcess auto colls = CoalBuRe(tsteps.get_collstep(),
// &step2realtime,
// collprob,
// nfrags,
// coalbure_flag);
// return colls;
const PairProbability auto collprob = LongHydroProb();
// const NFragments auto nfrags = ConstNFrags(5.0);
const NFragments auto nfrags = CollisionKineticEnergyNFrags{};
// const CoalBuReFlag auto coalbure_flag = SUCoalBuReFlag{};
const CoalBuReFlag auto coalbure_flag = TSCoalBuReFlag{};
const MicrophysicalProcess auto colls = CoalBuRe(tsteps.get_collstep(),
&step2realtime,
collprob,
nfrags,
coalbure_flag);
return colls;

// const PairProbability auto buprob = LowListBuProb();
// const NFragments auto nfrags = ConstNFrags(5.0);
Expand All @@ -145,14 +145,14 @@ config_collisions(const Config &config, const Timesteps &tsteps)
// buprob,
// nfrags);

// const PairProbability auto coalprob = LowListCoalProb();
// const PairProbability auto coalprob = GolovinProb();
const PairProbability auto coalprob = LongHydroProb(1.0);
const MicrophysicalProcess auto coal = CollCoal(tsteps.get_collstep(),
&step2realtime,
coalprob);
// // const PairProbability auto coalprob = LowListCoalProb();
// // const PairProbability auto coalprob = GolovinProb();
// const PairProbability auto coalprob = LongHydroProb(1.0);
// const MicrophysicalProcess auto coal = CollCoal(tsteps.get_collstep(),
// &step2realtime,
// coalprob);

return coal;
// return coal;
// // return coal >> bu;
}

Expand Down

0 comments on commit 6a4bf69

Please sign in to comment.