Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Leibner
dune-common
Commits
c0a4f8a0
Commit
c0a4f8a0
authored
20 years ago
by
Adrian Burri
Browse files
Options
Downloads
Patches
Plain Diff
Some docu
[[Imported from SVN: r1657]]
parent
443b06ce
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
fem/common/basefunctions.hh
+4
-3
4 additions, 3 deletions
fem/common/basefunctions.hh
with
4 additions
and
3 deletions
fem/common/basefunctions.hh
+
4
−
3
View file @
c0a4f8a0
...
@@ -61,17 +61,18 @@ namespace Dune {
...
@@ -61,17 +61,18 @@ namespace Dune {
//! methods with template parameter "length of Vec".
//! methods with template parameter "length of Vec".
//! Though the evaluate Methods can be spezialized for each
//! Though the evaluate Methods can be spezialized for each
//! differentiation order
//! differentiation order
//! \param x The local coordinate in the reference element
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
0
>
&
diffVariable
,
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
0
>
&
diffVariable
,
const
Domain
&
,
Range
&
)
const
{};
// = 0 ?
const
Domain
&
,
Range
&
)
const
{};
//! diffVariable contain the component of the gradient which is delivered.
//! diffVariable contain the component of the gradient which is delivered.
//! for example gradient of the basefunction x component ==>
//! for example gradient of the basefunction x component ==>
//! diffVariable(0) == 0, y component ==> diffVariable(0) == 1 ...
//! diffVariable(0) == 0, y component ==> diffVariable(0) == 1 ...
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
1
>
&
diffVariable
,
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
1
>
&
diffVariable
,
const
Domain
&
,
Range
&
)
const
{};
// = 0 ?
const
Domain
&
,
Range
&
)
const
{};
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
2
>
&
diffVariable
,
virtual
void
evaluate
(
const
FieldVector
<
deriType
,
2
>
&
diffVariable
,
const
Domain
&
,
Range
&
)
const
{};
// = 0 ?
const
Domain
&
,
Range
&
)
const
{};
private
:
private
:
const
FunctionSpaceType
&
functionSpace_
;
const
FunctionSpaceType
&
functionSpace_
;
...
...
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