Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
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
Commits
8c714c31
Commit
8c714c31
authored
7 years ago
by
Gabi Seitz
Committed by
Dennis Gläser
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[test][mpnc] Use NumEqVector for sources and neumann
parent
8e34933c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!766
Feature/primaryvariables numeqvector
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/porousmediumflow/tracer/multicomp/maxwellstefantestproblem.hh
+3
-2
3 additions, 2 deletions
...usmediumflow/tracer/multicomp/maxwellstefantestproblem.hh
with
3 additions
and
2 deletions
test/porousmediumflow/tracer/multicomp/maxwellstefantestproblem.hh
+
3
−
2
View file @
8c714c31
...
@@ -181,6 +181,7 @@ class MaxwellStefanTestProblem : public PorousMediumFlowProblem<TypeTag>
...
@@ -181,6 +181,7 @@ class MaxwellStefanTestProblem : public PorousMediumFlowProblem<TypeTag>
using
GridView
=
typename
GET_PROP_TYPE
(
TypeTag
,
GridView
);
using
GridView
=
typename
GET_PROP_TYPE
(
TypeTag
,
GridView
);
using
BoundaryTypes
=
typename
GET_PROP_TYPE
(
TypeTag
,
BoundaryTypes
);
using
BoundaryTypes
=
typename
GET_PROP_TYPE
(
TypeTag
,
BoundaryTypes
);
using
PrimaryVariables
=
typename
GET_PROP_TYPE
(
TypeTag
,
PrimaryVariables
);
using
PrimaryVariables
=
typename
GET_PROP_TYPE
(
TypeTag
,
PrimaryVariables
);
using
NumEqVector
=
typename
GET_PROP_TYPE
(
TypeTag
,
NumEqVector
);
using
FluidSystem
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
);
using
FluidSystem
=
typename
GET_PROP_TYPE
(
TypeTag
,
FluidSystem
);
using
SpatialParams
=
typename
GET_PROP_TYPE
(
TypeTag
,
SpatialParams
);
using
SpatialParams
=
typename
GET_PROP_TYPE
(
TypeTag
,
SpatialParams
);
using
FVGridGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
);
using
FVGridGeometry
=
typename
GET_PROP_TYPE
(
TypeTag
,
FVGridGeometry
);
...
@@ -339,8 +340,8 @@ public:
...
@@ -339,8 +340,8 @@ public:
* \param globalPos The position for which the bc type should be evaluated
* \param globalPos The position for which the bc type should be evaluated
* The units must be according to either using mole or mass fractions. (mole/(m^2*s) or kg/(m^2*s))
* The units must be according to either using mole or mass fractions. (mole/(m^2*s) or kg/(m^2*s))
*/
*/
PrimaryVariables
neumannAtPos
(
const
GlobalPosition
&
globalPos
)
const
NumEqVector
neumannAtPos
(
const
GlobalPosition
&
globalPos
)
const
{
return
PrimaryVariables
(
0.0
);
}
{
return
NumEqVector
(
0.0
);
}
// \}
// \}
...
...
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