Ignore:
Timestamp:
Mar 30, 2013, 2:44:52 PM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
Children:
8180d8
Parents:
d13e27
git-author:
Julian Iseringhausen <isering@…> (06/11/12 14:02:16)
git-committer:
Julian Iseringhausen <isering@…> (03/30/13 14:44:52)
Message:

Open boundary conditions.

Conflicts:

lib/vmg/src/Makefile.am
lib/vmg/src/base/factory.cpp
lib/vmg/test/unit_test/library/dirichlet_fas_lr_mpi.cpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/samples/discretization_poisson_fv.hpp

    rd13e27 rf57182  
    4444    Discretization(order)
    4545  {
    46     stencil.SetDiag(6.0);
    47     stencil.push_back(-1,  0,  0, -1.0);
    48     stencil.push_back( 1,  0,  0, -1.0);
    49     stencil.push_back( 0, -1,  0, -1.0);
    50     stencil.push_back( 0,  1,  0, -1.0);
    51     stencil.push_back( 0,  0, -1, -1.0);
    52     stencil.push_back( 0,  0,  1, -1.0);
     46    InitDiscretizationPoissonFV();
    5347  }
    5448
     
    5852  }
    5953
     54  void ModifyRightHandSide();
     55
    6056private:
     57  void InitDiscretizationPoissonFV();
    6158  void SetInnerBoundaryCompute(Grid& sol_f, Grid& rhs_f, Grid& sol_c) const;
    6259};
Note: See TracChangeset for help on using the changeset viewer.