ENH: Uptoda topoSet in tutorial for fireFoam

This commit is contained in:
Sergio Ferraris
2011-11-23 11:42:19 +00:00
parent 240709f3d3
commit 93c8dc69e1
14 changed files with 201 additions and 17 deletions

View File

@ -7,7 +7,7 @@
application=`getApplication`
runApplication blockMesh
runApplication setSet -batch makeFaceSet.setSet
runApplication topoSet
runApplication createPatch -overwrite
runApplication decomposePar -force

View File

@ -1 +0,0 @@
faceSet f0 new boxToFace (-0.1 -0.001 -0.1)(0.1 0.005 0.1)

View File

@ -0,0 +1,32 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object topoSetDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
actions
(
{
name f0;
type faceSet;
action new;
source boxToFace;
sourceInfo
{
box (-0.1 -0.001 -0.1)(0.1 0.005 0.1);
}
}
);
// ************************************************************************* //