Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
catalyst
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Community
catalyst
Commits
4575b54c
Commit
4575b54c
authored
Jul 30, 2018
by
Mark Olesen
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMP: adjust for change in dictionary read/readEntry
parent
2ac2c5ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/catalyst/areaMesh/catalystFaMesh.C
src/catalyst/areaMesh/catalystFaMesh.C
+1
-1
src/catalyst/catalystFunctionObject.C
src/catalyst/catalystFunctionObject.C
+2
-2
src/catalyst/volMesh/catalystFvMesh.C
src/catalyst/volMesh/catalystFvMesh.C
+1
-1
No files found.
src/catalyst/areaMesh/catalystFaMesh.C
View file @
4575b54c
...
@@ -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
.
read
Entry
(
"fields"
,
selectFields_
);
return
true
;
return
true
;
}
}
...
...
src/catalyst/catalystFunctionObject.C
View file @
4575b54c
...
@@ -192,8 +192,8 @@ bool Foam::functionObjects::catalystFunctionObject::read(const dictionary& dict)
...
@@ -192,8 +192,8 @@ bool Foam::functionObjects::catalystFunctionObject::read(const dictionary& dict)
Foam
::
mkDir
(
outputDir_
);
Foam
::
mkDir
(
outputDir_
);
}
}
dict
.
read
(
"scripts"
,
scripts_
);
// Python scripts
dict
.
read
Entry
(
"scripts"
,
scripts_
);
// Python scripts
expand
(
scripts_
,
dict
);
// Expand and check availability
expand
(
scripts_
,
dict
);
// Expand and check availability
// Any changes detected
// Any changes detected
...
...
src/catalyst/volMesh/catalystFvMesh.C
View file @
4575b54c
...
@@ -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
.
read
Entry
(
"fields"
,
selectFields_
);
return
true
;
return
true
;
}
}
...
...
SeongMo Yeon
@handrake0724
mentioned in issue
#7
·
Aug 17, 2018
mentioned in issue
#7
mentioned in issue #7
Toggle commit list
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