Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Modules
Visualization
Commits
b8d7b8e6
Commit
b8d7b8e6
authored
Jul 30, 2018
by
Mark Olesen
Browse files
COMP: adjust for change in dictionary read/readEntry
parent
f89dd729
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/catalyst/areaMesh/catalystFaMesh.C
View file @
b8d7b8e6
...
...
@@ -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 @
b8d7b8e6
...
...
@@ -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 @
b8d7b8e6
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment