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
31288144
Commit
31288144
authored
12 years ago
by
Nicolas Marsic
Browse files
Options
Downloads
Patches
Plain Diff
FunctionSpace cpp
parent
c2570748
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
FunctionSpace/CMakeLists.txt
+2
-0
2 additions, 0 deletions
FunctionSpace/CMakeLists.txt
FunctionSpace/FunctionSpace.cpp
+12
-0
12 additions, 0 deletions
FunctionSpace/FunctionSpace.cpp
FunctionSpace/FunctionSpace.h
+24
-4
24 additions, 4 deletions
FunctionSpace/FunctionSpace.h
with
38 additions
and
4 deletions
FunctionSpace/CMakeLists.txt
+
2
−
0
View file @
31288144
...
...
@@ -21,6 +21,8 @@ set(SRC
LocalFunctionSpaceVector.cpp
LocalFunctionSpace0Form.cpp
LocalFunctionSpace1Form.cpp
FunctionSpace.cpp
)
file
(
GLOB HDR RELATIVE
${
CMAKE_CURRENT_SOURCE_DIR
}
*.h
)
...
...
This diff is collapsed.
Click to expand it.
FunctionSpace/FunctionSpace.cpp
0 → 100644
+
12
−
0
View file @
31288144
#include
"FunctionSpace.h"
using
namespace
std
;
FunctionSpace
::
FunctionSpace
(
void
){
ebLookUp
=
new
map
<
Element
*
,
Basis
*
,
ElementComparator
>
;
}
FunctionSpace
::~
FunctionSpace
(
void
){
delete
ebLookUp
;
}
This diff is collapsed.
Click to expand it.
FunctionSpace/FunctionSpace.h
+
24
−
4
View file @
31288144
...
...
@@ -16,24 +16,44 @@
--> inheritance: FunctionSpaceScalar & FunctionSapceVector @n
"double or fullVector" interpolate(Element, pyhsical coordinate, coef) @n
"double or fullVector" interpolate(Element, ref coordinate , coef) @n
"double or fullVector" interpolate(physical coordinate, coef) --> use octree @n
"double or fullVector" interpolate(physical coordinate, coef) --> use octree?? @n
*/
class
FunctionSpace
{
private:
class
ElementComparator
{
public:
bool
operator
()(
const
Element
*
a
,
const
Element
*
b
)
const
;
};
std
::
map
<
Element
*
,
Basis
*
,
ElementComparator
>*
ETBL
;
// Element
T
o Basis Lookup
std
::
map
<
Element
*
,
Basis
*
,
ElementComparator
>*
ebLookUp
;
// Element
t
o Basis Lookup
public
:
FunctionSpace
(
void
);
~
FunctionSpace
(
void
);
void
associate
(
Element
&
element
,
Basis
&
basis
);
void
associate
(
int
physical
,
Basis
&
basis
);
Basis
&
getBasis
(
Element
&
element
)
const
;
};
//////////////////////
// Inline Functions //
//////////////////////
inline
void
FunctionSpace
::
associate
(
Element
&
element
,
Basis
&
basis
){
ebLookUp
->
insert
(
std
::
pair
<
Element
*
,
Basis
*>
(
&
element
,
&
basis
));
}
inline
Basis
&
FunctionSpace
::
getBasis
(
Element
&
element
)
const
{
return
*
(
ebLookUp
->
find
(
&
element
)
->
second
);
}
inline
bool
FunctionSpace
::
ElementComparator
::
operator
()
(
const
Element
*
a
,
const
Element
*
b
)
const
{
return
a
->
getId
()
<
b
->
getId
();
}
#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