simplification of file handling
This commit is contained in:
parent
95bb8d6577
commit
44d5e5cdbb
@ -206,10 +206,7 @@ void Foam::fieldToCell::applyToSet
|
||||
}
|
||||
else if (fieldObject.headerClassName() == "volScalarField")
|
||||
{
|
||||
IFstream str
|
||||
(
|
||||
mesh().time().path()/mesh().time().timeName()/fieldName_
|
||||
);
|
||||
IFstream str(fieldObject.filePath());
|
||||
|
||||
// Read dictionary
|
||||
dictionary fieldDict(str);
|
||||
@ -220,10 +217,7 @@ void Foam::fieldToCell::applyToSet
|
||||
}
|
||||
else if (fieldObject.headerClassName() == "volVectorField")
|
||||
{
|
||||
IFstream str
|
||||
(
|
||||
mesh().time().path()/mesh().time().timeName()/fieldName_
|
||||
);
|
||||
IFstream str(fieldObject.filePath());
|
||||
|
||||
// Read dictionary
|
||||
dictionary fieldDict(str);
|
||||
|
Loading…
Reference in New Issue
Block a user