Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesEdgeley committed Nov 29, 2024
1 parent 7d0a03e commit 7902e6e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/ParticleSystems/ParticleSystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ class ParticleSystem : public PartSysBase
this->reflection = std::make_shared<NektarCompositeTruncatedReflection>(
Sym<REAL>("VELOCITY"), Sym<REAL>("TSP"), this->sycl_target, mesh,
reflection_composites, config);
std::cout<<"R\n";
// V initial velocity
// P uniform sample?

Expand Down Expand Up @@ -120,8 +119,7 @@ class ParticleSystem : public PartSysBase
{
ParticleSet initial_distribution(
N, this->particle_group->get_particle_spec());
// auto positions = uniform_within_extents(
// N, ndim, this->pbc->global_extent, rng_phasespace);

const int npart_per_cell = 10;
std::mt19937 rng(534234 + rank);
std::vector<std::vector<double>> positions;
Expand Down Expand Up @@ -335,7 +333,6 @@ class ParticleSystem : public PartSysBase
*/
inline void boundary_conditions()
{
// this->pbc->execute();
this->reflection->execute(particle_sub_group(this->particle_group));
}

Expand Down Expand Up @@ -459,8 +456,6 @@ class ParticleSystem : public PartSysBase
/// Simulation time
double simulation_time;

/// Periodic Boundary Conditions
// std::shared_ptr<NektarCartesianPeriodic> pbc;
/// Reflective Boundary Conditions
std::shared_ptr<NektarCompositeTruncatedReflection> reflection;

Expand Down

0 comments on commit 7902e6e

Please sign in to comment.