Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dune-amdis
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Praetorius, Simon
dune-amdis
Commits
1492541a
Commit
1492541a
authored
Jan 19, 2018
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples use YaspGrid instead of AlbertaGrid
parent
0786af59
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
src/ellipt.cc
src/ellipt.cc
+2
-2
src/expressions.cc
src/expressions.cc
+2
-2
src/heat.cc
src/heat.cc
+3
-3
src/stokes1.cc
src/stokes1.cc
+1
-1
src/vecellipt.cc
src/vecellipt.cc
+2
-2
No files found.
src/ellipt.cc
View file @
1492541a
...
...
@@ -11,8 +11,8 @@
using
namespace
AMDiS
;
// 1 component with polynomial degree 1
using
Grid
=
Dune
::
AlbertaGrid
<
AMDIS_DIM
,
AMDIS_DOW
>
;
using
ElliptParam
=
LagrangeBasis
<
Grid
::
LeafGridView
,
1
>
;
//
using Grid = Dune::AlbertaGrid<AMDIS_DIM, AMDIS_DOW>;
using
ElliptParam
=
YaspGridBasis
<
AMDIS_DIM
,
1
>
;
using
ElliptProblem
=
ProblemStat
<
ElliptParam
>
;
int
main
(
int
argc
,
char
**
argv
)
...
...
src/expressions.cc
View file @
1492541a
...
...
@@ -14,8 +14,8 @@
using
namespace
AMDiS
;
// 1 component with polynomial degree 1
using
Grid
=
Dune
::
AlbertaGrid
<
AMDIS_DIM
,
AMDIS_DOW
>
;
using
ElliptParam
=
LagrangeBasis
<
Grid
::
LeafGridView
,
2
>
;
//
using Grid = Dune::AlbertaGrid<AMDIS_DIM, AMDIS_DOW>;
using
ElliptParam
=
YaspGridBasis
<
AMDIS_DIM
,
2
>
;
using
ElliptProblem
=
ProblemStat
<
ElliptParam
>
;
int
main
(
int
argc
,
char
**
argv
)
...
...
src/heat.cc
View file @
1492541a
...
...
@@ -14,8 +14,8 @@
using
namespace
AMDiS
;
// 1 component with polynomial degree 1
using
Grid
=
Dune
::
AlbertaGrid
<
AMDIS_DIM
,
AMDIS_DOW
>
;
using
HeatParam
=
LagrangeBasis
<
Grid
::
LeafGridView
,
2
>
;
//
using Grid = Dune::AlbertaGrid<AMDIS_DIM, AMDIS_DOW>;
using
HeatParam
=
YaspGridBasis
<
AMDIS_DIM
,
2
>
;
using
HeatProblem
=
ProblemStat
<
HeatParam
>
;
using
HeatProblemInstat
=
ProblemInstat
<
HeatParam
>
;
...
...
@@ -57,4 +57,4 @@ int main(int argc, char** argv)
AMDiS
::
finalize
();
return
0
;
}
\ No newline at end of file
}
src/stokes1.cc
View file @
1492541a
...
...
@@ -15,7 +15,7 @@ using namespace AMDiS;
// 3 components: velocity with polynomial degree 2 and pressure with polynomial degree 1
using
Grid
=
Dune
::
AlbertaGrid
<
AMDIS_DIM
,
AMDIS_DOW
>
;
using
Grid
=
Dune
::
YaspGrid
<
AMDIS_DIM
>
;
using
StokesParam
=
TaylorHoodBasis
<
Grid
::
LeafGridView
>
;
using
StokesProblem
=
ProblemStat
<
StokesParam
>
;
...
...
src/vecellipt.cc
View file @
1492541a
...
...
@@ -7,8 +7,8 @@
using
namespace
AMDiS
;
// 1 component with polynomial degree 1
using
Grid
=
Dune
::
AlbertaGrid
<
AMDIS_DIM
,
AMDIS_DOW
>
;
using
ElliptParam
=
LagrangeBasis
<
Grid
::
LeafGridView
,
2
,
2
>
;
//
using Grid = Dune::AlbertaGrid<AMDIS_DIM, AMDIS_DOW>;
using
ElliptParam
=
YaspGridBasis
<
AMDIS_DIM
,
2
,
2
>
;
using
ElliptProblem
=
ProblemStat
<
ElliptParam
>
;
int
main
(
int
argc
,
char
**
argv
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment