mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop
This commit is contained in:
@ -288,7 +288,7 @@ Foam::tmp<Foam::triSurfacePointScalarField> Foam::automatic::load()
|
||||
vtkSurfaceWriter().write
|
||||
(
|
||||
surface_.searchableSurface::time().constant()/"triSurface",
|
||||
surfaceName_.lessExt().name(),
|
||||
surfaceName_.nameLessExt(),
|
||||
meshedSurfRef
|
||||
(
|
||||
surface_.points(),
|
||||
|
||||
@ -193,12 +193,9 @@ void writeRays
|
||||
}
|
||||
str.flush();
|
||||
|
||||
DynamicList<string> cmd(3);
|
||||
cmd.append("objToVTK");
|
||||
cmd.append(fName);
|
||||
cmd.append(fName.lessExt() + ".vtk");
|
||||
|
||||
Pout<< "cmd: objToVTK " << fName.c_str() << endl;
|
||||
|
||||
stringList cmd{"objToVTK", fName, fName.lessExt().ext("vtk")};
|
||||
Foam::system(cmd);
|
||||
}
|
||||
|
||||
|
||||
@ -1657,9 +1657,9 @@ int main(int argc, char *argv[])
|
||||
|
||||
const fileName sFeatFileName
|
||||
(
|
||||
fileName(surf1Name).lessExt().name()
|
||||
fileName(surf1Name).nameLessExt()
|
||||
+ "_"
|
||||
+ fileName(surf2Name).lessExt().name()
|
||||
+ fileName(surf2Name).nameLessExt()
|
||||
+ "_"
|
||||
+ action
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user