Skip to content
Snippets Groups Projects
Commit b8d7b8e6 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

COMP: adjust for change in dictionary read/readEntry

parent f89dd729
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,7 @@ bool Foam::catalyst::faMeshInput::read(const dictionary& dict) ...@@ -143,7 +143,7 @@ bool Foam::catalyst::faMeshInput::read(const dictionary& dict)
// Restrict to specified meshes // Restrict to specified meshes
meshes_.filterKeys(selectAreas_); meshes_.filterKeys(selectAreas_);
dict.read("fields", selectFields_); dict.readEntry("fields", selectFields_);
return true; return true;
} }
......
...@@ -192,7 +192,7 @@ bool Foam::functionObjects::catalystFunctionObject::read(const dictionary& dict) ...@@ -192,7 +192,7 @@ bool Foam::functionObjects::catalystFunctionObject::read(const dictionary& dict)
Foam::mkDir(outputDir_); Foam::mkDir(outputDir_);
} }
dict.read("scripts", scripts_); // Python scripts dict.readEntry("scripts", scripts_); // Python scripts
expand(scripts_, dict); // Expand and check availability expand(scripts_, dict); // Expand and check availability
......
...@@ -156,7 +156,7 @@ bool Foam::catalyst::fvMeshInput::read(const dictionary& dict) ...@@ -156,7 +156,7 @@ bool Foam::catalyst::fvMeshInput::read(const dictionary& dict)
// Restrict to specified meshes // Restrict to specified meshes
meshes_.filterKeys(selectRegions_); meshes_.filterKeys(selectRegions_);
dict.read("fields", selectFields_); dict.readEntry("fields", selectFields_);
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment