Skip to content
Snippets Groups Projects
Commit 62a81177 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

add fixed Dof

parent 7f3005d8
No related branches found
No related tags found
No related merge requests found
...@@ -622,6 +622,14 @@ class dofManager : public dofManagerBase{ ...@@ -622,6 +622,14 @@ class dofManager : public dofManagerBase{
R.push_back(it->first); R.push_back(it->first);
} }
} }
virtual void getFixedDof(std::set<Dof>& R)
{
R.clear();
typename std::map<Dof, dataVec>::iterator it;
for(it = fixed.begin(); it != fixed.end(); ++it){
R.insert(it->first);
}
}
virtual int getDofNumber(const Dof& key) virtual int getDofNumber(const Dof& key)
{ {
......
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