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
845d951d
Commit
845d951d
authored
7 years ago
by
Kilian Weishaupt
Browse files
Options
Downloads
Patches
Plain Diff
[2pnc][test] Replace initialPhasePresence(scv) by initialPhasePresenceAtPos()
parent
e0a33a35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!617
[WIP] Next
,
!491
Fix/#352 inital phase presence on next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/porousmediumflow/2pnc/implicit/fuelcellproblem.hh
+7
-7
7 additions, 7 deletions
test/porousmediumflow/2pnc/implicit/fuelcellproblem.hh
with
7 additions
and
7 deletions
test/porousmediumflow/2pnc/implicit/fuelcellproblem.hh
+
7
−
7
View file @
845d951d
...
@@ -254,14 +254,14 @@ public:
...
@@ -254,14 +254,14 @@ public:
PrimaryVariables
initialAtPos
(
const
GlobalPosition
&
globalPos
)
const
PrimaryVariables
initialAtPos
(
const
GlobalPosition
&
globalPos
)
const
{
return
initial_
(
globalPos
);
}
{
return
initial_
(
globalPos
);
}
/*!
* \brief Return the initial phase state inside a sub control volume.
*
* \param scv The sub control volume
*/
int
initialPhasePresence
(
const
SubControlVolume
&
scv
)
const
/*!
{
return
Indices
::
bothPhases
;
}
* \brief Evaluate the initial phase state at a given position
*
* \param globalPos The global position
*/
int
initialPhasePresenceAtPos
(
const
GlobalPosition
&
globalPos
)
{
return
Indices
::
bothPhases
;
}
/*!
/*!
* \brief Adds additional VTK output data to the VTKWriter. Function is called by the output module on every write.
* \brief Adds additional VTK output data to the VTKWriter. Function is called by the output module on every write.
...
...
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