Skip to content
Snippets Groups Projects
Commit 8ceeb52d authored by Boris Sedji's avatar Boris Sedji
Browse files

No commit message

No commit message
parent 9800a737
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ set(SRC ...@@ -17,6 +17,7 @@ set(SRC
functionDerivator.cpp functionDerivator.cpp
luaFunction.cpp luaFunction.cpp
functionSpace.cpp functionSpace.cpp
filters.cpp
) )
file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h) file(GLOB HDR RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.h)
......
//
// Description : Filters for function space dof selection
//
//
// Author: <Eric Bechet>::<Boris Sedji>, 02/2010
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "filters.h"
void FilterLevelSetForLagMultSpace::SortNodes (void)
{
;
}
\ No newline at end of file
// //
// Description : Filtered and xFem function space definition // Description : Filters for function space dof selection
// //
// //
// Author: <Eric Bechet>::<Boris Sedji>, 02/2010 // Author: <Eric Bechet>::<Boris Sedji>, 02/2010
...@@ -121,5 +121,34 @@ class FilterElementsCutByLevelSet ...@@ -121,5 +121,34 @@ class FilterElementsCutByLevelSet
}; };
class FilterLevelSetForLagMultSpace
{
private :
groupOfElements * _g;
std::pair<int,int> _LevelSetEntity;
std::set<int> _winner_nodes;
std::set<int> _all_nodes;
private :
void SortNodes (void) ;
public :
FilterLevelSetForLagMultSpace(std::pair<int,int> LevelSetEntity, groupOfElements * g) : _LevelSetEntity(LevelSetEntity), _g(g)
{
SortNodes();
}
virtual bool operator () (Dof & key) const
{
;
}
};
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment