calculatedFvPatchField: 'value' entry is now required to avoid problems with non-initialization
This commit is contained in:
@ -39,7 +39,7 @@ Description
|
||||
myPatch
|
||||
{
|
||||
type calculated;
|
||||
value uniform (0 0 0); // optional value entry
|
||||
value uniform (0 0 0); // Required value entry
|
||||
}
|
||||
\endverbatim
|
||||
|
||||
@ -89,7 +89,7 @@ public:
|
||||
const fvPatch&,
|
||||
const DimensionedField<Type, volMesh>&,
|
||||
const dictionary&,
|
||||
const bool valueRequired=false
|
||||
const bool valueRequired=true
|
||||
);
|
||||
|
||||
//- Construct by mapping given patchField<Type> onto a new patch
|
||||
|
||||
@ -24,6 +24,7 @@ boundaryField
|
||||
".*"
|
||||
{
|
||||
type calculated;
|
||||
value $internalField;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
|
||||
Reference in New Issue
Block a user