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
!137
[pointsource] fix pointsource constructor
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[pointsource] fix pointsource constructor
fix/pointsource
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Katharina Heck
requested to merge
fix/pointsource
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
d1e022f3
1 commit,
8 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dumux/common/pointsource.hh
+
2
−
2
Options
@@ -186,7 +186,7 @@ public:
//! Constructor for sol dependent point sources, when there is no
// value known at the time of initialization
IdPointSource
(
GlobalPosition
pos
,
IdType
id
)
:
ParentType
(
pos
,
0
),
id_
(
id
)
{}
:
ParentType
(
pos
,
PrimaryVariables
(
0
)
),
id_
(
id
)
{}
//! return the sources identifier
IdType
id
()
const
@@ -243,7 +243,7 @@ public:
// value known at the time of initialization
TimeDependentPointSource
(
GlobalPosition
pos
,
ValueFunction
valueFunction
)
:
ParentType
(
pos
,
0
),
valueFunction_
(
valueFunction
)
{}
:
ParentType
(
pos
,
PrimaryVariables
(
0
)
),
valueFunction_
(
valueFunction
)
{}
//! an update function called before adding the value
// to the local residual in the problem in scvPointSources
Loading