diff options
Diffstat (limited to 'src/refinement/coupler2D.hh')
| -rw-r--r-- | src/refinement/coupler2D.hh | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/src/refinement/coupler2D.hh b/src/refinement/coupler2D.hh index 92c8d26..373a6de 100644 --- a/src/refinement/coupler2D.hh +++ b/src/refinement/coupler2D.hh @@ -73,7 +73,8 @@ Coupler2D<T,DESCRIPTOR>::Coupler2D(Grid2D<T,DESCRIPTOR>& coarse, Grid2D<T,DESCRI    const auto& fineGeometry   = _fine.getCuboidGeometry();    const T deltaX = _fine.getConverter().getPhysDeltaX(); -  const Vector<T,2> stepPhysR = _vertical ? Vector<T,2> {0, deltaX} : Vector<T,2> {deltaX, 0}; +  const Vector<T,2> stepPhysR = _vertical ? Vector<T,2> {0, deltaX} : +                                Vector<T,2> {deltaX, 0};    for (int i=0; i < _fineSize; ++i) {      if (i % 2 == 0) { @@ -212,7 +213,8 @@ void FineCoupler2D<T,DESCRIPTOR>::couple()      fineLattice.get(finePos, fineCell);      for (int iPop=0; iPop < DESCRIPTOR<T>::q; ++iPop) { -      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) + this->getScalingFactor() * fneq[iPop]; +      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) +                       + this->getScalingFactor() * fneq[iPop];      }      fineLattice.set(finePos, fineCell); @@ -230,7 +232,8 @@ void FineCoupler2D<T,DESCRIPTOR>::couple()      fineLattice.get(finePos, fineCell);      for (int iPop=0; iPop < DESCRIPTOR<T>::q; ++iPop) { -      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) + this->getScalingFactor() * fneq[iPop]; +      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) +                       + this->getScalingFactor() * fneq[iPop];      }      fineLattice.set(finePos, fineCell); @@ -248,7 +251,8 @@ void FineCoupler2D<T,DESCRIPTOR>::couple()      fineLattice.get(finePos, fineCell);      for (int iPop=0; iPop < DESCRIPTOR<T>::q; ++iPop) { -      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) + this->getScalingFactor() * fneq[iPop]; +      fineCell[iPop] = lbHelpers<T,DESCRIPTOR>::equilibrium(iPop, rho[0], u.data, uSqr) +                       + this->getScalingFactor() * fneq[iPop];      }      fineLattice.set(finePos, fineCell); | 
