mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: redistributePar: softlink uniform. Fixes #163
This commit is contained in:
@ -251,8 +251,18 @@ void decomposeUniform
|
|||||||
<< runTime.timePath()/uniformDir
|
<< runTime.timePath()/uniformDir
|
||||||
<< endl;
|
<< endl;
|
||||||
|
|
||||||
const fileName timePath =
|
// Bit of trickery to synthesise the correct directory base,
|
||||||
fileHandler().filePath(processorDb.timePath());
|
// e.g. processors4/0.01
|
||||||
|
const fileName timePath = fileHandler().objectPath
|
||||||
|
(
|
||||||
|
IOobject
|
||||||
|
(
|
||||||
|
"dummy",
|
||||||
|
runTime.timeName(),
|
||||||
|
processorDb
|
||||||
|
),
|
||||||
|
word::null
|
||||||
|
).path();
|
||||||
|
|
||||||
// If no fields have been decomposed the destination
|
// If no fields have been decomposed the destination
|
||||||
// directory will not have been created so make sure.
|
// directory will not have been created so make sure.
|
||||||
|
|||||||
Reference in New Issue
Block a user