Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-geometry
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
Model registry
Operate
Environments
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
Core Modules
dune-geometry
Commits
abe2ebd2
Commit
abe2ebd2
authored
12 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
Minor documentation fixes
[[Imported from SVN: r124]]
parent
10cffb1c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/geometry/genericgeometry/geometry.hh
+6
-8
6 additions, 8 deletions
dune/geometry/genericgeometry/geometry.hh
dune/geometry/genericgeometry/geometrytraits.hh
+5
-6
5 additions, 6 deletions
dune/geometry/genericgeometry/geometrytraits.hh
with
11 additions
and
14 deletions
dune/geometry/genericgeometry/geometry.hh
+
6
−
8
View file @
abe2ebd2
...
...
@@ -23,7 +23,7 @@ namespace Dune
*
* Based on a recursive definition of the reference elements, a generic
* implementation of Dune::Geometry is provided. The class used for the
* implementation of the Dune::Geometry engine
,
is
* implementation of the Dune::Geometry engine is
* GenericGeometry::BasicGeometry.
*
* The BasicGeometry class takes a template argument Traits specifying
...
...
@@ -87,7 +87,7 @@ namespace Dune
* or for grids with only affine transformations - which in the case of
* the local geometries is often true - the last template
* argument (default false) can be used to switch to mappings which are
* assumed to always be affine
d
(no checking done).
* assumed to always be affine (no checking done).
* - Add to the GridFamily::Traits::Codim<codim> structure:
* \code
typedef Dune :: Geometry
...
...
@@ -122,7 +122,7 @@ namespace Dune
* element. This is achieved by calling the constructor on the
* GenericGeometry::Geometry class (with the codim template equal to
* one) passing a codimension zero geometry implementation and the number of the
* codimension one subentity
(in DUNE numbering)
.
* codimension one subentity.
* \code
GenericGeometry::Geometry<myGridDim-1,myWorldDim,MyGrid>
(inside->geometry(),numberInSelf());
...
...
@@ -156,8 +156,7 @@ namespace Dune
\endcode
* .
* - To add geometries for subentitiies of codim>0
* given a entity en of codimension zero and the subentity number subNr
* in DUNE numbering:
* given a entity en of codimension zero and the subentity number subNr :
* - geometry: the geometry can be constructed by the following line of code
\code
GenericGeometry::Geometry<myGridDim-codim,myWorldDim,MyGrid>
...
...
@@ -171,13 +170,12 @@ namespace Dune
// BasicGeometry
// -------------
/** \class BasicGeometry
* \ingroup GenericGeometry
/** \ingroup GenericGeometry
* \brief generic implementation of DUNE geometries
*
* This class is provides a generic implementation of a DUNE geometry.
*
* Parameters shared by all codimensions are summarized in
to
one class
* Parameters shared by all codimensions are summarized in one class
* parameter called Traits. The following default implementation can be
* used (via subclassing) to provide the necessary information. It contains
* exactly the required fields:
...
...
This diff is collapsed.
Click to expand it.
dune/geometry/genericgeometry/geometrytraits.hh
+
5
−
6
View file @
abe2ebd2
...
...
@@ -77,15 +77,14 @@ namespace Dune
// If not affine only volume is cached (based on intElCompute)
// otherwise all quantities can be cached using:
// ComputeOnDemand: assign if method called using barycenter
// PreCompute: assign in constructor using barycenter
/** \brief If not affine only volume is cached (based on intElCompute)
* otherwise all quantities can be cached
*/
enum
EvaluationType
{
//!
compute on demand
//!
assign if method called using barycenter
ComputeOnDemand
,
//!
compute
in constructor
//!
assign
in constructor
using barycenter
PreCompute
};
...
...
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