diff --git a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.C b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.C index c428d9499d..0a7c8e7bea 100644 --- a/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.C +++ b/src/finiteVolume/fields/fvPatchFields/constraint/processor/processorFvPatchField.C @@ -96,6 +96,12 @@ Foam::processorFvPatchField::processorFvPatchField << " in file " << this->internalField().objectPath() << exit(FatalIOError); } + + // If the value is not supplied set to the internal field + if (!dict.found("value")) + { + fvPatchField::operator=(this->patchInternalField()); + } }