Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
8ceeb52d
"Plugin/CutParametric.h" did not exist on "c081b9d935efb438735d5ea55ada73c32b8fd9fa"
Commit
8ceeb52d
authored
14 years ago
by
Boris Sedji
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
9800a737
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Solver/CMakeLists.txt
+1
-0
1 addition, 0 deletions
Solver/CMakeLists.txt
Solver/filters.cpp
+16
-0
16 additions, 0 deletions
Solver/filters.cpp
Solver/filters.h
+30
-1
30 additions, 1 deletion
Solver/filters.h
with
47 additions
and
1 deletion
Solver/CMakeLists.txt
+
1
−
0
View file @
8ceeb52d
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Solver/filters.cpp
0 → 100644
+
16
−
0
View file @
8ceeb52d
//
// 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
This diff is collapsed.
Click to expand it.
Solver/filters.h
+
30
−
1
View file @
8ceeb52d
//
//
// Description : Filter
ed and xFem
function space d
efini
tion
// Description : Filter
s for
function space d
of selec
tion
//
//
//
//
// 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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment