Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
77
Issue boards
Milestones
Wiki
Code
Merge requests
77
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
Merge requests
!766
Feature/primaryvariables numeqvector
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/primaryvariables numeqvector
feature/primaryvariables-numeqvector
into
master
Overview
0
Commits
9
Pipelines
0
Changes
40
Merged
Sina Ackermann
requested to merge
feature/primaryvariables-numeqvector
into
master
6 years ago
Overview
0
Commits
9
Pipelines
0
Changes
40
Expand
Solves
#390 (closed)
Edited
6 years ago
by
Dennis Gläser
👍
0
👎
0
Merge request reports
Compare
master
version 3
774cae13
6 years ago
version 2
3568980e
6 years ago
version 1
93817027
6 years ago
master (base)
and
latest version
latest version
b6f4a3a9
9 commits,
6 years ago
version 3
774cae13
9 commits,
6 years ago
version 2
3568980e
8 commits,
6 years ago
version 1
93817027
3 commits,
6 years ago
40 files
+
155
−
145
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
40
Search (e.g. *.vue) (Ctrl+P)
test/freeflow/navierstokes/angelitestproblem.hh
+
3
−
3
Options
@@ -98,7 +98,7 @@ class AngeliTestProblem : public NavierStokesProblem<TypeTag>
using
GlobalPosition
=
Dune
::
FieldVector
<
Scalar
,
dimWorld
>
;
using
PrimaryVariables
=
typename
GET_PROP_TYPE
(
TypeTag
,
PrimaryVariables
);
using
SourceValues
=
typename
GET_PROP_TYPE
(
TypeTag
,
NumEqVector
);
using
NumEqVector
=
typename
GET_PROP_TYPE
(
TypeTag
,
NumEqVector
);
using
SolutionVector
=
typename
GET_PROP_TYPE
(
TypeTag
,
SolutionVector
);
using
TimeLoopPtr
=
std
::
shared_ptr
<
TimeLoop
<
Scalar
>>
;
@@ -161,9 +161,9 @@ public:
*
* \param globalPos The global position
*/
SourceValues
sourceAtPos
(
const
GlobalPosition
&
globalPos
)
const
NumEqVector
sourceAtPos
(
const
GlobalPosition
&
globalPos
)
const
{
return
SourceValues
(
0.0
);
return
NumEqVector
(
0.0
);
}
// \}
Loading