fvModels, fvConstraints: Updated constructor argument order for consistency with functionObjects
Following the convention chosen for functionObjects the coefficients dictionary argument is last in constructor argument list.
This commit is contained in:
@ -96,11 +96,11 @@ ${typeName}FvModel${SourceType}
|
||||
(
|
||||
const word& name,
|
||||
const word& modelType,
|
||||
const dictionary& dict,
|
||||
const fvMesh& mesh
|
||||
const fvMesh& mesh,
|
||||
const dictionary& dict
|
||||
)
|
||||
:
|
||||
fvModel(name, modelType, dict, mesh),
|
||||
fvModel(name, modelType, mesh, dict),
|
||||
set_(mesh, coeffs())
|
||||
{
|
||||
if (${verbose:-false})
|
||||
|
||||
Reference in New Issue
Block a user