Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
COMP: adjust for change in dictionary read/readEntry
· 4575b54c
Mark OLESEN
authored
Jul 30, 2018
4575b54c
Hide whitespace changes
Inline
Side-by-side
src/catalyst/areaMesh/catalystFaMesh.C
View file @
4575b54c
...
...
@@ -143,7 +143,7 @@ bool Foam::catalyst::faMeshInput::read(const dictionary& dict)
// Restrict to specified meshes
meshes_
.
filterKeys
(
selectAreas_
);
dict
.
read
(
"fields"
,
selectFields_
);
dict
.
read
Entry
(
"fields"
,
selectFields_
);
return
true
;
}
...
...
src/catalyst/catalystFunctionObject.C
View file @
4575b54c
...
...
@@ -192,8 +192,8 @@ bool Foam::functionObjects::catalystFunctionObject::read(const dictionary& dict)
Foam
::
mkDir
(
outputDir_
);
}
dict
.
read
(
"scripts"
,
scripts_
);
// Python scripts
expand
(
scripts_
,
dict
);
// Expand and check availability
dict
.
read
Entry
(
"scripts"
,
scripts_
);
// Python scripts
expand
(
scripts_
,
dict
);
// Expand and check availability
// Any changes detected
...
...
src/catalyst/volMesh/catalystFvMesh.C
View file @
4575b54c
...
...
@@ -156,7 +156,7 @@ bool Foam::catalyst::fvMeshInput::read(const dictionary& dict)
// Restrict to specified meshes
meshes_
.
filterKeys
(
selectRegions_
);
dict
.
read
(
"fields"
,
selectFields_
);
dict
.
read
Entry
(
"fields"
,
selectFields_
);
return
true
;
}
...
...