Skip to content
Snippets Groups Projects

BUG: adjointSolverName not set correctly in adjointWallVelocityLowRe (fixes #1502)

Merged Vaggelis Papoutsis requested to merge bug-1502-adjointWallVelocityLowRe into master
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -41,7 +41,7 @@ adjointWallVelocityLowReFvPatchVectorField
@@ -41,7 +41,7 @@ adjointWallVelocityLowReFvPatchVectorField
)
)
:
:
fixedValueFvPatchVectorField(p, iF),
fixedValueFvPatchVectorField(p, iF),
adjointBoundaryCondition(p, iF, "Ua")
adjointBoundaryCondition(p, iF, word::null)
{}
{}
@@ -55,7 +55,7 @@ adjointWallVelocityLowReFvPatchVectorField
@@ -55,7 +55,7 @@ adjointWallVelocityLowReFvPatchVectorField
)
)
:
:
fixedValueFvPatchVectorField(ptf, p, iF, mapper),
fixedValueFvPatchVectorField(ptf, p, iF, mapper),
adjointBoundaryCondition(p, iF, "Ua")
adjointBoundaryCondition(p, iF, ptf.adjointSolverName_)
{}
{}
@@ -68,7 +68,7 @@ adjointWallVelocityLowReFvPatchVectorField
@@ -68,7 +68,7 @@ adjointWallVelocityLowReFvPatchVectorField
)
)
:
:
fixedValueFvPatchVectorField(p, iF),
fixedValueFvPatchVectorField(p, iF),
adjointBoundaryCondition(p, iF, "Ua")
adjointBoundaryCondition(p, iF, dict.get<word>("solverName"))
{
{
fvPatchField<vector>::operator=
fvPatchField<vector>::operator=
(
(
Loading