Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-metagrid
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
Container Registry
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
extensions
dune-metagrid
Merge requests
!14
Implement jacobian and jacobianInverse method
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Implement jacobian and jacobianInverse method
issue/geometry-jacobian
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Open
Simon Praetorius
requested to merge
issue/geometry-jacobian
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (HEAD)
and
latest version
latest version
06f4dde9
1 commit,
2 years ago
2 files
+
88
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
dune/grid/idgrid/geometry.hh
+
12
−
0
Options
@@ -32,7 +32,9 @@ namespace Dune
typedef
typename
HostGeometry
::
LocalCoordinate
LocalCoordinate
;
typedef
typename
HostGeometry
::
GlobalCoordinate
GlobalCoordinate
;
typedef
typename
HostGeometry
::
Jacobian
Jacobian
;
typedef
typename
HostGeometry
::
JacobianTransposed
JacobianTransposed
;
typedef
typename
HostGeometry
::
JacobianInverse
JacobianInverse
;
typedef
typename
HostGeometry
::
JacobianInverseTransposed
JacobianInverseTransposed
;
IdGridBasicGeometry
(
const
HostGeometry
&
hostGeometry
)
@@ -52,11 +54,21 @@ namespace Dune
ctype
integrationElement
(
const
LocalCoordinate
&
local
)
const
{
return
hostGeometry
().
integrationElement
(
local
);
}
ctype
volume
()
const
{
return
hostGeometry
().
volume
();
}
Jacobian
jacobian
(
const
LocalCoordinate
&
local
)
const
{
return
hostGeometry
().
jacobian
(
local
);
}
JacobianTransposed
jacobianTransposed
(
const
LocalCoordinate
&
local
)
const
{
return
hostGeometry
().
jacobianTransposed
(
local
);
}
JacobianInverse
jacobianInverse
(
const
LocalCoordinate
&
local
)
const
{
return
hostGeometry
().
jacobianInverse
(
local
);
}
JacobianInverseTransposed
jacobianInverseTransposed
(
const
LocalCoordinate
&
local
)
const
{
return
hostGeometry
().
jacobianInverseTransposed
(
local
);
Loading