potentialFoam: Removed the unused -noFunctionObjects option

This commit is contained in:
Henry Weller
2024-01-20 14:47:53 +00:00
parent de363dde05
commit e99466059f
2 changed files with 9 additions and 6 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2024 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -78,11 +78,7 @@ int main(int argc, char *argv[])
"Calculate and write the pressure field"
);
argList::addBoolOption
(
"withFunctionObjects",
"execute functionObjects"
);
#include "addWithFunctionObjectsOption.H"
#include "setRootCase.H"
#include "createTime.H"

View File

@ -0,0 +1,7 @@
Foam::argList::removeOption("noFunctionObjects");
Foam::argList::addBoolOption
(
"withFunctionObjects",
"Execute functionObjects"
);