decomposePar: Do not register Lagrangian IOFields as the names may conflict with those of volFields

Required change to IOobjectList to support the optional no-registration specification
This commit is contained in:
Henry
2015-02-12 21:59:17 +00:00
parent c187132816
commit 63938fb3d3
7 changed files with 36 additions and 21 deletions

View File

@ -123,7 +123,8 @@ const labelIOList& procAddressing
procMesh.meshSubDir,
procMesh,
IOobject::MUST_READ,
IOobject::NO_WRITE
IOobject::NO_WRITE,
false
)
)
);
@ -582,7 +583,10 @@ int main(int argc, char *argv[])
(
mesh,
runTime.timeName(),
cloud::prefix/cloudDirs[i]
cloud::prefix/cloudDirs[i],
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
);
IOobject* positionsPtr = sprayObjs.lookup(word("positions"));
@ -664,7 +668,10 @@ int main(int argc, char *argv[])
(
mesh,
runTime.timeName(),
cloud::prefix/cloudDirs[cloudI]
cloud::prefix/cloudDirs[cloudI],
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
);
lagrangianFieldDecomposer::readFields