Skip to content
Snippets Groups Projects
Commit 27ea73f9 authored by Vaggelis Papoutsis's avatar Vaggelis Papoutsis Committed by Andrew Heather
Browse files

ENH: added a default word to the IOMRFZoneList constructor

to allow for constructing different MRF zones for multi-point
optimisation runs
parent 5ec8a4d4
Branches
Tags
1 merge request!400Adjoint: release candidate for v2012
......@@ -7,6 +7,7 @@
-------------------------------------------------------------------------------
Copyright (C) 2012-2017 OpenFOAM Foundation
Copyright (C) 2019 OpenCFD Ltd.
Copyright (C) 2020 PCOpt/NTUA
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -34,12 +35,13 @@ License
Foam::IOobject Foam::IOMRFZoneList::createIOobject
(
const fvMesh& mesh
const fvMesh& mesh,
const word& solverName
) const
{
IOobject io
(
"MRFProperties",
"MRFProperties" + solverName,
mesh.time().constant(),
mesh,
IOobject::MUST_READ,
......@@ -67,10 +69,11 @@ Foam::IOobject Foam::IOMRFZoneList::createIOobject
Foam::IOMRFZoneList::IOMRFZoneList
(
const fvMesh& mesh
const fvMesh& mesh,
const word& solverName
)
:
IOdictionary(createIOobject(mesh)),
IOdictionary(createIOobject(mesh, solverName)),
MRFZoneList(mesh, *this)
{}
......
......@@ -7,6 +7,7 @@
-------------------------------------------------------------------------------
Copyright (C) 2012 OpenFOAM Foundation
Copyright (C) 2019 OpenCFD Ltd.
Copyright (C) 2020 PCOpt/NTUA
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -77,7 +78,11 @@ private:
// Private Member Functions
//- Create IO object if dictionary is present
IOobject createIOobject(const fvMesh& mesh) const;
IOobject createIOobject
(
const fvMesh& mesh,
const word& solverName
) const;
//- No copy construct
IOMRFZoneList(const IOMRFZoneList&) = delete;
......@@ -91,7 +96,11 @@ public:
// Constructors
//- Construct from mesh
IOMRFZoneList(const fvMesh& mesh);
IOMRFZoneList
(
const fvMesh& mesh,
const word& solverName = word::null
);
//- Destructor
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment