Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
34f65f9c
Commit
34f65f9c
authored
Nov 01, 2010
by
Henry
Browse files
chtMultiRegionFoam: Updated the Courant-number
parent
ccc9ae67
Changes
4
Hide whitespace changes
Inline
Side-by-side
applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/chtMultiRegionSimpleFoam.C
View file @
34f65f9c
...
...
@@ -34,7 +34,6 @@ Description
#include "turbulenceModel.H"
#include "fixedGradientFvPatchFields.H"
#include "regionProperties.H"
#include "compressibleCourantNo.H"
#include "basicSolidThermo.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
...
...
applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/fluid/compressibleCourantNo.C
deleted
100644 → 0
View file @
ccc9ae67
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 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/>.
\*---------------------------------------------------------------------------*/
#include "compressibleCourantNo.H"
#include "fvc.H"
Foam
::
scalar
Foam
::
compressibleCourantNo
(
const
fvMesh
&
mesh
,
const
Time
&
runTime
,
const
volScalarField
&
rho
,
const
surfaceScalarField
&
phi
)
{
scalar
CoNum
=
0
.
0
;
scalar
meanCoNum
=
0
.
0
;
//- Can have fluid domains with 0 cells so do not test.
//if (mesh.nInternalFaces())
{
surfaceScalarField
SfUfbyDelta
=
mesh
.
surfaceInterpolation
::
deltaCoeffs
()
*
mag
(
phi
)
/
fvc
::
interpolate
(
rho
);
CoNum
=
max
(
SfUfbyDelta
/
mesh
.
magSf
())
.
value
()
*
runTime
.
deltaT
().
value
();
meanCoNum
=
(
sum
(
SfUfbyDelta
)
/
sum
(
mesh
.
magSf
()))
.
value
()
*
runTime
.
deltaT
().
value
();
}
Info
<<
"Region: "
<<
mesh
.
name
()
<<
" Courant Number mean: "
<<
meanCoNum
<<
" max: "
<<
CoNum
<<
endl
;
return
CoNum
;
}
// ************************************************************************* //
applications/solvers/heatTransfer/chtMultiRegionFoam/chtMultiRegionSimpleFoam/fluid/compressibleCourantNo.H
deleted
100644 → 0
View file @
ccc9ae67
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 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/>.
Description
Calculates and outputs the mean and maximum Courant Numbers for the fluid
regions
\*---------------------------------------------------------------------------*/
#ifndef compressibleCourantNo_H
#define compressibleCourantNo_H
#include "fvMesh.H"
namespace
Foam
{
scalar
compressibleCourantNo
(
const
fvMesh
&
mesh
,
const
Time
&
runTime
,
const
volScalarField
&
rho
,
const
surfaceScalarField
&
phi
);
}
#endif
// ************************************************************************* //
applications/solvers/heatTransfer/chtMultiRegionFoam/fluid/compressibleCourantNo.C
View file @
34f65f9c
...
...
@@ -37,20 +37,14 @@ Foam::scalar Foam::compressibleCourantNo
scalar
CoNum
=
0
.
0
;
scalar
meanCoNum
=
0
.
0
;
//- Can have fluid domains with 0 cells so do not test.
//if (mesh.nInternalFaces())
{
surfaceScalarField
SfUfbyDelta
=
mesh
.
surfaceInterpolation
::
deltaCoeffs
()
*
mag
(
phi
)
/
fvc
::
interpolate
(
rho
);
CoNum
=
max
(
SfUfbyDelta
/
mesh
.
magSf
())
.
value
()
*
runTime
.
deltaT
().
value
();
meanCoNum
=
(
sum
(
SfUfbyDelta
)
/
sum
(
mesh
.
magSf
()))
.
value
()
*
runTime
.
deltaT
().
value
();
}
scalarField
sumPhi
=
fvc
::
surfaceSum
(
mag
(
phi
))().
internalField
()
/
rho
.
internalField
();
CoNum
=
0
.
5
*
gMax
(
sumPhi
/
mesh
.
V
().
field
())
*
runTime
.
deltaTValue
();
meanCoNum
=
0
.
5
*
(
gSum
(
sumPhi
)
/
gSum
(
mesh
.
V
().
field
()))
*
runTime
.
deltaTValue
();
Info
<<
"Region: "
<<
mesh
.
name
()
<<
" Courant Number mean: "
<<
meanCoNum
<<
" max: "
<<
CoNum
<<
endl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment