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
dcb4b43c
Commit
dcb4b43c
authored
1 year ago
by
Tufan Ghosh
Committed by
Timo Koch
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
[assembler] Remove deprecated interface residualNorm
parent
bf210c45
No related branches found
No related tags found
1 merge request
!3557
[cleanup] Simplify and remove some code deprecated in the previous release
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/assembly/fvassembler.hh
+0
-47
0 additions, 47 deletions
dumux/assembly/fvassembler.hh
with
0 additions
and
47 deletions
dumux/assembly/fvassembler.hh
+
0
−
47
View file @
dcb4b43c
...
...
@@ -216,53 +216,6 @@ public:
});
}
//! compute a residual's vector norm (this is a temporary interface introduced during the deprecation period)
[[
deprecated
(
"Use the linear solver's norm. Will be deleted after 3.7"
)]]
Scalar
normOfResidual
(
ResidualType
&
residual
)
const
{
// issue a warning if the calculation is used in parallel with overlap
static
bool
warningIssued
=
false
;
if
(
gridView
().
comm
().
size
()
>
1
&&
gridView
().
overlapSize
(
0
)
==
0
)
{
if
constexpr
(
isBox
)
{
using
DM
=
typename
GridGeometry
::
VertexMapper
;
using
PVHelper
=
ParallelVectorHelper
<
GridView
,
DM
,
GridView
::
dimension
>
;
PVHelper
vectorHelper
(
gridView
(),
gridGeometry_
->
vertexMapper
());
vectorHelper
.
makeNonOverlappingConsistent
(
residual
);
}
}
else
if
(
!
warningIssued
)
{
if
(
gridView
().
comm
().
size
()
>
1
&&
gridView
().
comm
().
rank
()
==
0
)
std
::
cout
<<
"
\n
Warning: norm calculation adds entries corresponding to
\n
"
<<
"overlapping entities multiple times. Please use the norm
\n
"
<<
"function provided by a linear solver instead."
<<
std
::
endl
;
warningIssued
=
true
;
}
// calculate the square norm of the residual
Scalar
result2
=
residual
.
two_norm2
();
if
(
gridView
().
comm
().
size
()
>
1
)
result2
=
gridView
().
comm
().
sum
(
result2
);
using
std
::
sqrt
;
return
sqrt
(
result2
);
}
//! compute the residual and return it's vector norm
[[
deprecated
(
"Use assembleResidual and the linear solver's norm. Will be deleted after 3.7"
)]]
Scalar
residualNorm
(
const
SolutionVector
&
curSol
)
const
{
ResidualType
residual
(
numDofs
());
assembleResidual
(
residual
,
curSol
);
return
normOfResidual
(
residual
);
}
/*!
* \brief Tells the assembler which jacobian and residual to use.
* This also resizes the containers to the required sizes and sets the
...
...
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