Changeset e85cfd for src/units/particle/interface_fcs.cpp
- Timestamp:
- Apr 9, 2013, 9:45:13 AM (13 years ago)
- Children:
- 0bd47e
- Parents:
- 4a709e
- File:
-
- 1 edited
-
src/units/particle/interface_fcs.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/units/particle/interface_fcs.cpp
r4a709e re85cfd 63 63 64 64 #include "cycles/cycle_cs_periodic_debug.hpp" 65 65 //TODO: Remove Debug 66 66 67 67 using namespace VMG; … … 112 112 periodic[2] ? Periodic : Open); 113 113 114 const bool singular = periodic[0] * periodic[1] * periodic[2]; 114 const bool singular = boundary[0] == Periodic && 115 boundary[1] == Periodic && 116 boundary[2] == Periodic; 115 117 116 118 /* … … 121 123 new Particle::CommMPI(boundary, new DomainDecompositionMPI(), mpi_comm); 122 124 new DiscretizationPoissonFD(discretization_order); 123 new InterfaceParticles(boundary, 2, level, Vector(box_offset), box_size, near_field_cells , 0, 1.0);125 new InterfaceParticles(boundary, 2, level, Vector(box_offset), box_size, near_field_cells); 124 126 new LevelOperatorCS(Stencils::RestrictionFullWeight, Stencils::InterpolationTrilinear); 125 127 new Givens<SolverSingular>(); 126 new CycleCSPeriodic Debug(cycle_type);128 new CycleCSPeriodic(cycle_type); 127 129 128 130 }else { … … 130 132 new Particle::CommMPI(boundary, new DomainDecompositionMPI(), mpi_comm); 131 133 new DiscretizationPoissonFV(discretization_order); 132 new InterfaceParticles(boundary, 2, level, Vector(box_offset), box_size, near_field_cells, 2, 1.6);134 new InterfaceParticles(boundary, 2, level, Vector(box_offset), box_size, near_field_cells, 9, 1.6); 133 135 new LevelOperatorFAS(Stencils::RestrictionFullWeight, Stencils::Injection, Stencils::InterpolationTrilinear); 134 136 new Givens<SolverRegular>();
Note:
See TracChangeset
for help on using the changeset viewer.
