Skip to content
Snippets Groups Projects
Commit 2e5d837b authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Fixed bug with dirichlet values.

parent 2fc80215
No related branches found
No related tags found
No related merge requests found
......@@ -537,7 +537,7 @@ namespace AMDiS {
inserter_type &ins = *inserter;
for (std::set<int>::iterator it = dirichletDofs.begin();
it != dirichletDofs.end(); ++it)
ins[*it][*it] = 1.0;
ins[*it][*it] = 1.0;
}
......
......@@ -81,4 +81,13 @@ namespace AMDiS {
}
}
void DirichletBC::initVector(DOFVectorBase<double>* vec)
{
FUNCNAME("DirichletBC::initVector()");
if (dynamic_cast<DOFVector<double>*>(vec))
dynamic_cast<DOFVector<double>*>(vec)->getDirichletValues().clear();
}
}
......@@ -68,6 +68,9 @@ namespace AMDiS {
const BoundaryType* localBound,
int nBasFcts);
///
void initVector(DOFVectorBase<double>*);
/// Implementation of BoundaryCondition::boundResidual().
double boundResidual(ElInfo*,
DOFMatrix *,
......
......@@ -11,6 +11,7 @@
#include <mpi.h>
#include "DirichletBC.h"
#include "DOFVector.h"
#include "parallel/PetscSolverGlobalMatrix.h"
#include "parallel/StdMpi.h"
#include "parallel/MpiHelper.h"
......@@ -750,7 +751,7 @@ namespace AMDiS {
for (dofIt.reset(); !dofIt.end(); ++dofIt) {
DegreeOfFreedom dof = dofIt.getDOFIndex();
if (rankOnly && !(*interiorMap)[rowComp].isRankDof(dof))
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment