Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux-course
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
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
dumux-repositories
dumux-course
Merge requests
!296
Slides update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Slides update
slides_update
into
master
Overview
8
Commits
12
Pipelines
6
Changes
1
Merged
Ivan Buntic
requested to merge
slides_update
into
master
2 months ago
Overview
8
Commits
12
Pipelines
6
Changes
1
Expand
Mainly include file paths to shown code blocks. Also, fix minor display issues.
0
0
Merge request reports
Viewing commit
d0648802
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d0648802
[slides][grid] Fix TypeTag.
· d0648802
Ivan Buntic
authored
1 month ago
slides/grid.md
+
2
−
2
Options
@@ -32,11 +32,11 @@ Implementations of the Dune grid interface
#include
<dune/grid/yaspgrid.hh>
...
template
<
class
TypeTag
>
struct
Grid
<
TypeTag
,
TTag
::
TwoPIncompressible
>
{
struct
Grid
<
TypeTag
,
TTag
::
Injection2p
>
{
using
type
=
Dune
::
YaspGrid
<
2
>
;
};
```
<span
style=
"font-size: 0.4em; position: relative; top: -38px; color: gray;"
>
File:
`dumux
/test/porousmediumflow/2p/incompressible
/properties.hh`
</span>
<span
style=
"font-size: 0.4em; position: relative; top: -38px; color: gray;"
>
File:
`dumux
-course/exercises/exercise-grids
/properties.hh`
</span>
*
Include the matching grid manager header files in main file and create the grid via a grid manager instance
```
cpp
Loading