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
8bcf2a25
Commit
8bcf2a25
authored
12 years ago
by
Nicolas Marsic
Browse files
Options
Downloads
Patches
Plain Diff
Steady Wave
parent
7624f64e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
FunctionSpace/FunctionSpace.h
+10
-0
10 additions, 0 deletions
FunctionSpace/FunctionSpace.h
with
10 additions
and
0 deletions
FunctionSpace/FunctionSpace.h
+
10
−
0
View file @
8bcf2a25
...
@@ -67,6 +67,7 @@ class FunctionSpace{
...
@@ -67,6 +67,7 @@ class FunctionSpace{
const
GroupOfElement
&
getSupport
(
void
)
const
;
const
GroupOfElement
&
getSupport
(
void
)
const
;
unsigned
int
getType
(
void
)
const
;
unsigned
int
getType
(
void
)
const
;
unsigned
int
getOrder
(
void
)
const
;
unsigned
int
getNFunctionPerVertex
(
const
MElement
&
element
)
const
;
unsigned
int
getNFunctionPerVertex
(
const
MElement
&
element
)
const
;
unsigned
int
getNFunctionPerEdge
(
const
MElement
&
element
)
const
;
unsigned
int
getNFunctionPerEdge
(
const
MElement
&
element
)
const
;
...
@@ -138,6 +139,11 @@ class FunctionSpace{
...
@@ -138,6 +139,11 @@ class FunctionSpace{
@see Basis::getType()
@see Basis::getType()
**
**
@fn FunctionSpace::getOrder
@return Return the @em order
of this FunctionSpace
**
@fn FunctionSpace::getNFunctionPerVertex
@fn FunctionSpace::getNFunctionPerVertex
@param element A MElement of the support
@param element A MElement of the support
@return Returns the number of @em Vertex Based
@return Returns the number of @em Vertex Based
...
@@ -218,6 +224,10 @@ inline unsigned int FunctionSpace::getType(void) const{
...
@@ -218,6 +224,10 @@ inline unsigned int FunctionSpace::getType(void) const{
return
type
;
return
type
;
}
}
inline
unsigned
int
FunctionSpace
::
getOrder
(
void
)
const
{
return
(
unsigned
int
)(
basis
->
getOrder
());
}
inline
unsigned
int
FunctionSpace
::
getNFunctionPerVertex
(
const
MElement
&
element
)
const
{
inline
unsigned
int
FunctionSpace
::
getNFunctionPerVertex
(
const
MElement
&
element
)
const
{
return
fPerVertex
;
return
fPerVertex
;
}
}
...
...
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