Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Allwclean
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ wclean ./src/dfCanteraMixture
wclean ./src/dfMeshTools
wclean ./applications/utilities/flameSpeed
wclean ./applications/utilities/dfAutoPatch
wclean ./applications/utilities/dfFluent3DMeshToFoam
wclean ./applications/solvers/dfSprayFoam
wclean ./applications/solvers/df0DFoam
wclean ./applications/solvers/dfLowMachFoam
Expand Down
1 change: 1 addition & 0 deletions Allwmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ wmake applications/solvers/dfSteadyFoam

wmake applications/utilities/flameSpeed
wmake applications/utilities/dfAutoPatch
wmake applications/utilities/dfFluent3DMeshToFoam
3 changes: 3 additions & 0 deletions applications/utilities/dfFluent3DMeshToFoam/Make/files
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fluent3DMeshToFoam.L

EXE = $(DF_APPBIN)/dfFluent3DMeshToFoam
7 changes: 7 additions & 0 deletions applications/utilities/dfFluent3DMeshToFoam/Make/options
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
EXE_INC = \
-I$(LIB_SRC)/meshTools/lnInclude \
-I$(LIB_SRC)/dynamicMesh/lnInclude

EXE_LIBS = \
-lmeshTools \
-ldynamicMesh
30 changes: 30 additions & 0 deletions applications/utilities/dfFluent3DMeshToFoam/fluent3DMeshToFoam.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2018 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.

OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.

Application
fluent3DMeshToFoam

Description
Converts a Fluent mesh to OpenFOAM format.

\*---------------------------------------------------------------------------*/
Loading
Loading