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:
@ -3,7 +3,7 @@
|
|||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -56,8 +56,22 @@ License
|
|||||||
|
|
||||||
\section usingTheCode Using the code
|
\section usingTheCode Using the code
|
||||||
|
|
||||||
|
Solvers
|
||||||
- \subpage pageSolvers
|
- \subpage pageSolvers
|
||||||
|
|
||||||
|
Modelling
|
||||||
|
- \subpage pageThermophsyicalModels
|
||||||
|
- \subpage pageTurbulenceModelling
|
||||||
|
- \subpage pageLagrangianIntermediate
|
||||||
|
|
||||||
|
Boundary conditions
|
||||||
- \subpage pageBoundaryConditions
|
- \subpage pageBoundaryConditions
|
||||||
|
|
||||||
|
Numerics
|
||||||
|
- \subpage pageFiniteVolumeSchemes
|
||||||
|
- \subpage pageMatrixSolvers
|
||||||
|
|
||||||
|
Post-processing
|
||||||
- \subpage pagePostProcessing
|
- \subpage pagePostProcessing
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
36
src/OpenFOAM/matrices/lduMatrix/doc/lduMatrix.dox
Normal file
36
src/OpenFOAM/matrices/lduMatrix/doc/lduMatrix.dox
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\page pageMatrixSolvers Matrix solvers
|
||||||
|
|
||||||
|
\section secSchemes Overview
|
||||||
|
The available matrix solvers are grouped into the following categories:
|
||||||
|
- \ref grpLduMatrix
|
||||||
|
- \ref grpLduMatrixPreconditioners
|
||||||
|
- \ref grpLduMatrixSmoothers
|
||||||
|
- \ref grpLduMatrixSolvers
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
56
src/OpenFOAM/matrices/lduMatrix/doc/lduMatrixDoc.H
Normal file
56
src/OpenFOAM/matrices/lduMatrix/doc/lduMatrixDoc.H
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\defgroup grpNumerics Numerics
|
||||||
|
@{
|
||||||
|
This group contains numerics
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpLduMatrix Matrix manipulation and solvers
|
||||||
|
@{
|
||||||
|
\ingroup grpNumerics
|
||||||
|
This group contains matrices
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpLduMatrixPreconditioners Preconditioners
|
||||||
|
@{
|
||||||
|
\ingroup grpLduMatrix
|
||||||
|
This group contains matrix preconditioners
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpLduMatrixSmoothers Smoothers
|
||||||
|
@{
|
||||||
|
\ingroup grpLduMatrix
|
||||||
|
This group contains matrix smoothers
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpLduMatrixSolvers Solvers
|
||||||
|
@{
|
||||||
|
\ingroup grpLduMatrix
|
||||||
|
This group contains matrix solvers
|
||||||
|
@}
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -0,0 +1,36 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\page pageTurbulenceModelling Turbulence modelling
|
||||||
|
|
||||||
|
\section secSchemes Overview
|
||||||
|
The available turbulence models are grouped into the following categories:
|
||||||
|
- \ref grpTurbulence
|
||||||
|
- \ref grpRASTurbulence
|
||||||
|
- \ref grpDESTurbulence
|
||||||
|
- \ref grpLESTurbulence
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
40
src/finiteVolume/finiteVolume/doc/finiteVolumeSchemes.dox
Normal file
40
src/finiteVolume/finiteVolume/doc/finiteVolumeSchemes.dox
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\page pageFiniteVolumeSchemes Numerical schemes
|
||||||
|
|
||||||
|
\section secSchemes Overview
|
||||||
|
The available numerical schemes are grouped into the following categories:
|
||||||
|
- \ref grpFvGradSchemes
|
||||||
|
- \ref grpFvSnGradSchemes
|
||||||
|
- \ref grpFvDivSchemes
|
||||||
|
- \ref grpFvLaplacianSchemes
|
||||||
|
- \ref grpFvDdtSchemes
|
||||||
|
- \ref grpFvConvectionSchemes
|
||||||
|
- \ref grpFvSurfaceInterpolationSchemes
|
||||||
|
- \ref grpFvLimitedSurfaceInterpolationSchemes
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
51
src/fvOptions/doc/fvOptionsDoc.H
Normal file
51
src/fvOptions/doc/fvOptionsDoc.H
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\defgroup grpFvOptions Finite volume Options
|
||||||
|
@{
|
||||||
|
\ingroup grpNumerics
|
||||||
|
This group contains finite volume options
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpFvOptionsSources Sources
|
||||||
|
@{
|
||||||
|
\ingroup grpFvOptions
|
||||||
|
This group contains finite volume sources
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpFvOptionsCorrections Corrections
|
||||||
|
@{
|
||||||
|
\ingroup grpFvOptions
|
||||||
|
This group contains finite volume corrections
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpFvOptionsConstraints Constraints
|
||||||
|
@{
|
||||||
|
\ingroup grpFvOptions
|
||||||
|
This group contains finite volume constraints
|
||||||
|
@}
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
41
src/lagrangian/intermediate/doc/lagrangianIntermediate.dox
Normal file
41
src/lagrangian/intermediate/doc/lagrangianIntermediate.dox
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\page pageLagrangianIntermediate Lagrangian modelling
|
||||||
|
|
||||||
|
\section secSchemes Overview
|
||||||
|
The available Lagrangian models are grouped into the following categories:
|
||||||
|
- \ref grpLagrangianIntermediateClouds
|
||||||
|
- \ref grpLagrangianIntermediateParcels
|
||||||
|
- \ref grpLagrangianIntermediateSubModels
|
||||||
|
- \ref grpLagrangianIntermediateKinematicSubModels
|
||||||
|
- \ref grpLagrangianIntermediateThermoSubModels
|
||||||
|
- \ref grpLagrangianIntermediateReactingSubModels
|
||||||
|
- \ref grpLagrangianIntermediateReactingMultiphaseSubModels
|
||||||
|
- \ref grpLagrangianIntermediateMPPICSubModels
|
||||||
|
- \ref grpLagrangianIntermediateFunctionObjects
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -3,7 +3,7 @@
|
|||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2012-2014 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2012-2014 OpenFOAM Foundation
|
||||||
\\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd.
|
\\/ M anipulation | Copyright (C) 2015-2016 OpenCFD Ltd.
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
This file is part of OpenFOAM.
|
This file is part of OpenFOAM.
|
||||||
@ -44,6 +44,7 @@ The current range of features comprises of:
|
|||||||
- \ref grpIOFunctionObjects
|
- \ref grpIOFunctionObjects
|
||||||
- \ref grpJobControlFunctionObjects
|
- \ref grpJobControlFunctionObjects
|
||||||
- \ref grpUtilitiesFunctionObjects
|
- \ref grpUtilitiesFunctionObjects
|
||||||
|
- \ref grpThermophysicalFunctionObjects
|
||||||
|
|
||||||
\linebreak
|
\linebreak
|
||||||
\subsection secFieldFunctionObjectUsage Using function objects
|
\subsection secFieldFunctionObjectUsage Using function objects
|
||||||
|
|||||||
@ -25,7 +25,7 @@ Class
|
|||||||
Foam::reactionsSensitivityAnalysis
|
Foam::reactionsSensitivityAnalysis
|
||||||
|
|
||||||
Group
|
Group
|
||||||
grpUtilitiesFunctionObjects
|
grpUtilitiesFunctionObjects grpThermophysicalFunctionObjects
|
||||||
|
|
||||||
Description
|
Description
|
||||||
This function object creates four data files named:
|
This function object creates four data files named:
|
||||||
|
|||||||
33
src/thermophysicalModels/doc/thermophysicalModels.dox
Normal file
33
src/thermophysicalModels/doc/thermophysicalModels.dox
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
\page pageThermophsyicalModels Thermophsyical Models
|
||||||
|
|
||||||
|
\section secSchemes Overview
|
||||||
|
The available thermophysical models are grouped into the following categories:
|
||||||
|
- \ref grpThermophysicalModels
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -28,5 +28,11 @@ License
|
|||||||
This group contains thermophysical models
|
This group contains thermophysical models
|
||||||
@}
|
@}
|
||||||
|
|
||||||
|
\defgroup grpThermophysicalFunctionObjects Thermophysical function objects
|
||||||
|
@{
|
||||||
|
\ingroup grpFunctionObjects
|
||||||
|
This group contains thermo-based function objects
|
||||||
|
@}
|
||||||
|
|
||||||
|
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::chemistryReader
|
Foam::chemistryReader
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalChemistryReaders
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Abstract class for reading chemistry
|
Abstract class for reading chemistry
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::chemkinReader
|
Foam::chemkinReader
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalChemistryReaders
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::chemkinReader
|
Foam::chemkinReader
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::foamChemistryReader
|
Foam::foamChemistryReader
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalChemistryReaders
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Chemistry reader for OpenFOAM format
|
Chemistry reader for OpenFOAM format
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::fixedUnburntEnthalpyFvPatchScalarField
|
Foam::fixedUnburntEnthalpyFvPatchScalarField
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpThermoBoundaryConditions
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Fixed boundary condition for unburnt
|
Fixed boundary condition for unburnt
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::gradientUnburntEnthalpyFvPatchScalarField
|
Foam::gradientUnburntEnthalpyFvPatchScalarField
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpThermoBoundaryConditions
|
||||||
|
|
||||||
Description
|
Description
|
||||||
gradient boundary condition for unburnt
|
gradient boundary condition for unburnt
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::mixedUnburntEnthalpyFvPatchScalarField
|
Foam::mixedUnburntEnthalpyFvPatchScalarField
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpThermoBoundaryConditions
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Mixed boundary condition for unburnt
|
Mixed boundary condition for unburnt
|
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,43 @@
|
|||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 2016 OpenCFD Ltd.
|
||||||
|
\\/ 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/>.
|
||||||
|
|
||||||
|
\defgroup grpReactionThermophysicalModels Reaction thermophysical models
|
||||||
|
@{
|
||||||
|
\ingroup grpThermophysicalModels
|
||||||
|
This group contains reaction thermophysical models
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpReactionThermophysicalMixtures Mixtures
|
||||||
|
@{
|
||||||
|
\ingroup grpReactionThermophysicalModels
|
||||||
|
This group contains reaction mixtures
|
||||||
|
@}
|
||||||
|
|
||||||
|
\defgroup grpReactionThermophysicalChemistryReaders Chemistry readers
|
||||||
|
@{
|
||||||
|
\ingroup grpReactionThermophysicalModels
|
||||||
|
This group contains chemistry readers
|
||||||
|
@}
|
||||||
|
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::moleFractions
|
Foam::moleFractions
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpThermophysicalFunctionObjects
|
||||||
|
|
||||||
Description
|
Description
|
||||||
This function object calculates mole-fraction fields from the mass-fraction
|
This function object calculates mole-fraction fields from the mass-fraction
|
||||||
fields of the psi/rhoReactionThermo and caches them for output and further
|
fields of the psi/rhoReactionThermo and caches them for output and further
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::SpecieMixture
|
Foam::SpecieMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::SpecieMixture
|
Foam::SpecieMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::basicCombustionMixture
|
Foam::basicCombustionMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Specialization of the basicSpecieMixture for combustion.
|
Specialization of the basicSpecieMixture for combustion.
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::basicMultiComponentMixture
|
Foam::basicMultiComponentMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Multi-component mixture.
|
Multi-component mixture.
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::basicSpecieMixture
|
Foam::basicSpecieMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Specialization of basicMultiComponentMixture for a mixture consisting
|
Specialization of basicMultiComponentMixture for a mixture consisting
|
||||||
of a number for molecular species.
|
of a number for molecular species.
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::egrMixture
|
Foam::egrMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::egrMixture
|
Foam::egrMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::homogeneousMixture
|
Foam::homogeneousMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::homogeneousMixture
|
Foam::homogeneousMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::inhomogeneousMixture
|
Foam::inhomogeneousMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::inhomogeneousMixture
|
Foam::inhomogeneousMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::multiComponentMixture
|
Foam::multiComponentMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::multiComponentMixture
|
Foam::multiComponentMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::reactingMixture
|
Foam::reactingMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::reactingMixture
|
Foam::reactingMixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::singleStepReactingMixture
|
Foam::singleStepReactingMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Single step reacting mixture
|
Single step reacting mixture
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,9 @@ License
|
|||||||
Class
|
Class
|
||||||
Foam::veryInhomogeneousMixture
|
Foam::veryInhomogeneousMixture
|
||||||
|
|
||||||
|
Group
|
||||||
|
grpReactionThermophysicalMixtures
|
||||||
|
|
||||||
Description
|
Description
|
||||||
Foam::veryInhomogeneousMixture
|
Foam::veryInhomogeneousMixture
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user