blockMesh: Correct handling of the -case option
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1773
This commit is contained in:
parent
5b9303962b
commit
3f4dc50d8a
1 changed files with 2 additions and 2 deletions
|
|
@ -126,13 +126,13 @@ int main(int argc, char *argv[])
|
|||
)
|
||||
{
|
||||
dictPath =
|
||||
runTime.path()/runTime.constant()
|
||||
runTime.constant()
|
||||
/regionPath/polyMesh::meshSubDir/dictName;
|
||||
}
|
||||
// Otherwise assume the dictionary is present in the system directory
|
||||
else
|
||||
{
|
||||
dictPath = runTime.path()/runTime.system()/regionPath/dictName;
|
||||
dictPath = runTime.system()/regionPath/dictName;
|
||||
}
|
||||
|
||||
IOobject meshDictIO
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue