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
c3a80f00
Commit
c3a80f00
authored
9 years ago
by
Dennis Gläser
Committed by
Timo Koch
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[ImplicitProblem] Adjust initial() method to new structure
parent
2ed8d6a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!617
[WIP] Next
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/implicit/problem.hh
+3
-7
3 additions, 7 deletions
dumux/implicit/problem.hh
with
3 additions
and
7 deletions
dumux/implicit/problem.hh
+
3
−
7
View file @
c3a80f00
...
...
@@ -428,13 +428,10 @@ public:
* For this method, the \a values parameter stores primary
* variables.
*/
void
initial
(
PrimaryVariables
&
values
,
const
Element
&
element
,
const
FVElementGeometry
&
fvGeometry
,
const
int
scvIdx
)
const
PrimaryVariables
initial
(
const
SubControlVolume
&
scv
)
const
{
// forward to generic interface
asImp_
().
initialAtPos
(
values
,
fvGeometry
.
subContVol
[
scvIdx
].
global
);
return
asImp_
().
initialAtPos
(
scv
.
dofPosition
()
);
}
/*!
...
...
@@ -447,8 +444,7 @@ public:
*
* For this method, the \a values parameter stores primary variables.
*/
void
initialAtPos
(
PrimaryVariables
&
values
,
const
GlobalPosition
&
globalPos
)
const
PrimaryVariables
initialAtPos
(
const
GlobalPosition
&
globalPos
)
const
{
// Throw an exception (there is no reasonable default value
// for initial values)
...
...
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