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
Development
openfoam
Commits
17f37056
Commit
17f37056
authored
Feb 05, 2015
by
Henry
Browse files
foamUpgradeFvSolution: No longer maintained
parent
a029f59a
Changes
3
Hide whitespace changes
Inline
Side-by-side
applications/utilities/preProcessing/foamUpgradeFvSolution/Make/files
deleted
100644 → 0
View file @
a029f59a
foamUpgradeFvSolution.C
EXE = $(FOAM_APPBIN)/foamUpgradeFvSolution
applications/utilities/preProcessing/foamUpgradeFvSolution/Make/options
deleted
100644 → 0
View file @
a029f59a
applications/utilities/preProcessing/foamUpgradeFvSolution/foamUpgradeFvSolution.C
deleted
100644 → 0
View file @
a029f59a
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
foamUpgradeFvSolution
Description
Simple tool to upgrade the syntax of system/fvSolution.solvers.
Usage
foamUpgradeFvSolution [OPTION]
\param -test \n
Suppress writing the updated fvSolution file
\*---------------------------------------------------------------------------*/
#include "argList.H"
#include "Time.H"
#include "IOdictionary.H"
#include "solution.H"
using
namespace
Foam
;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
int
main
(
int
argc
,
char
*
argv
[])
{
argList
::
addNote
(
"upgrade the syntax of system/fvSolution::solvers"
);
argList
::
noParallel
();
argList
::
addBoolOption
(
"test"
,
"suppress writing the updated system/fvSolution file"
);
#include "setRootCase.H"
#include "createTime.H"
IOdictionary
solutionDict
(
IOobject
(
"fvSolution"
,
runTime
.
system
(),
runTime
,
IOobject
::
MUST_READ_IF_MODIFIED
,
IOobject
::
NO_WRITE
,
false
)
);
label
nChanged
=
0
;
entry
*
e
=
solutionDict
.
lookupEntryPtr
(
"solvers"
,
false
,
false
);
if
(
e
&&
e
->
isDict
())
{
nChanged
=
solution
::
upgradeSolverDict
(
e
->
dict
(),
true
);
}
Info
<<
nChanged
<<
" solver settings changed"
<<
nl
<<
endl
;
if
(
nChanged
)
{
if
(
args
.
optionFound
(
"test"
))
{
Info
<<
"-test option: no changes made"
<<
nl
<<
endl
;
}
else
{
if
(
mvBak
(
solutionDict
.
objectPath
(),
"old"
))
{
Info
<<
"Backup to "
<<
(
solutionDict
.
objectPath
()
+
".old"
)
<<
nl
;
}
solutionDict
.
writeObject
(
IOstream
::
ASCII
,
IOstream
::
currentVersion
,
IOstream
::
UNCOMPRESSED
);
Info
<<
"Write to "
<<
solutionDict
.
objectPath
()
<<
nl
<<
endl
;
}
}
return
0
;
}
// ************************************************************************* //
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