Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
agnumpde
dune-solvers
Commits
70847d2f
Commit
70847d2f
authored
12 years ago
by
Oliver Sander
Committed by
sander
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
InverseJacobianTransposed --> JacobianInverseTransposed, for more consistency
[[Imported from SVN: r6886]]
parent
70535bf9
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
dune/solvers/test/common.hh
+2
-2
2 additions, 2 deletions
dune/solvers/test/common.hh
with
2 additions
and
2 deletions
dune/solvers/test/common.hh
+
2
−
2
View file @
70847d2f
...
@@ -68,7 +68,7 @@ void assemblePQ1Stiffness(const GridView& gridView, Matrix& matrix)
...
@@ -68,7 +68,7 @@ void assemblePQ1Stiffness(const GridView& gridView, Matrix& matrix)
typedef
typename
Dune
::
QuadratureRule
<
double
,
dim
>
QuadratureRule
;
typedef
typename
Dune
::
QuadratureRule
<
double
,
dim
>
QuadratureRule
;
typedef
typename
Dune
::
template
FieldVector
<
double
,
dim
>
LocalCoordinate
;
typedef
typename
Dune
::
template
FieldVector
<
double
,
dim
>
LocalCoordinate
;
typedef
typename
Dune
::
template
FieldVector
<
double
,
dimworld
>
GlobalCoordinate
;
typedef
typename
Dune
::
template
FieldVector
<
double
,
dimworld
>
GlobalCoordinate
;
typedef
typename
Element
::
Geometry
::
JacobianInverseTransposed
Inverse
JacobianTransposed
;
typedef
typename
Element
::
Geometry
::
JacobianInverseTransposed
Jacobian
Inverse
Transposed
;
typedef
typename
FiniteElement
::
Traits
::
LocalBasisType
::
Traits
::
JacobianType
JacobianType
;
typedef
typename
FiniteElement
::
Traits
::
LocalBasisType
::
Traits
::
JacobianType
JacobianType
;
const
IndexSet
&
indexSet
=
gridView
.
indexSet
();
const
IndexSet
&
indexSet
=
gridView
.
indexSet
();
...
@@ -101,7 +101,7 @@ void assemblePQ1Stiffness(const GridView& gridView, Matrix& matrix)
...
@@ -101,7 +101,7 @@ void assemblePQ1Stiffness(const GridView& gridView, Matrix& matrix)
const
LocalCoordinate
&
quadPos
=
quad
[
pt
].
position
();
const
LocalCoordinate
&
quadPos
=
quad
[
pt
].
position
();
// get transposed inverse of Jacobian of transformation
// get transposed inverse of Jacobian of transformation
const
Inverse
JacobianTransposed
&
invJacobian
=
e
.
geometry
().
jacobianInverseTransposed
(
quadPos
);
const
Jacobian
Inverse
Transposed
&
invJacobian
=
e
.
geometry
().
jacobianInverseTransposed
(
quadPos
);
// get integration factor
// get integration factor
const
double
integrationElement
=
e
.
geometry
().
integrationElement
(
quadPos
);
const
double
integrationElement
=
e
.
geometry
().
integrationElement
(
quadPos
);
...
...
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