Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
91a43011
Commit
91a43011
authored
11 years ago
by
Henry
Browse files
Options
Downloads
Patches
Plain Diff
Simple reconstruct method using Gauss rather than least-squares
parent
93a3b7df
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/finiteVolume/finiteVolume/fvc/fvcSimpleReconstruct.C
+155
-0
155 additions, 0 deletions
src/finiteVolume/finiteVolume/fvc/fvcSimpleReconstruct.C
with
155 additions
and
0 deletions
src/finiteVolume/finiteVolume/fvc/fvcSimpleReconstruct.C
0 → 100644
+
155
−
0
View file @
91a43011
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2013 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/>.
\*---------------------------------------------------------------------------*/
#include
"fvcReconstruct.H"
#include
"fvMesh.H"
#include
"zeroGradientFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace
fvc
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
template
<
class
Type
>
tmp
<
GeometricField
<
typename
outerProduct
<
vector
,
Type
>::
type
,
fvPatchField
,
volMesh
>
>
reconstruct
(
const
GeometricField
<
Type
,
fvsPatchField
,
surfaceMesh
>&
ssf
)
{
typedef
typename
outerProduct
<
vector
,
Type
>::
type
GradType
;
const
fvMesh
&
mesh
=
ssf
.
mesh
();
const
labelUList
&
owner
=
mesh
.
owner
();
const
labelUList
&
neighbour
=
mesh
.
neighbour
();
const
volVectorField
&
C
=
mesh
.
C
();
const
surfaceVectorField
&
Cf
=
mesh
.
Cf
();
tmp
<
GeometricField
<
GradType
,
fvPatchField
,
volMesh
>
>
treconField
(
new
GeometricField
<
GradType
,
fvPatchField
,
volMesh
>
(
IOobject
(
"reconstruct("
+
ssf
.
name
()
+
')'
,
ssf
.
instance
(),
mesh
,
IOobject
::
NO_READ
,
IOobject
::
NO_WRITE
),
mesh
,
dimensioned
<
GradType
>
(
"0"
,
ssf
.
dimensions
()
/
dimArea
,
pTraits
<
GradType
>::
zero
),
zeroGradientFvPatchField
<
GradType
>::
typeName
)
);
Field
<
GradType
>&
rf
=
treconField
();
forAll
(
owner
,
facei
)
{
label
own
=
owner
[
facei
];
label
nei
=
neighbour
[
facei
];
rf
[
own
]
+=
(
Cf
[
facei
]
-
C
[
own
])
*
ssf
[
facei
];
rf
[
nei
]
-=
(
Cf
[
facei
]
-
C
[
nei
])
*
ssf
[
facei
];
}
const
typename
GeometricField
<
Type
,
fvsPatchField
,
surfaceMesh
>::
GeometricBoundaryField
&
bsf
=
ssf
.
boundaryField
();
forAll
(
bsf
,
patchi
)
{
const
fvsPatchField
<
Type
>&
psf
=
bsf
[
patchi
];
const
labelUList
&
pOwner
=
mesh
.
boundary
()[
patchi
].
faceCells
();
const
vectorField
&
pCf
=
Cf
.
boundaryField
()[
patchi
];
forAll
(
pOwner
,
pFacei
)
{
label
own
=
pOwner
[
pFacei
];
rf
[
own
]
+=
(
pCf
[
pFacei
]
-
C
[
own
])
*
psf
[
pFacei
];
}
}
rf
/=
mesh
.
V
();
treconField
().
correctBoundaryConditions
();
return
treconField
;
}
template
<
class
Type
>
tmp
<
GeometricField
<
typename
outerProduct
<
vector
,
Type
>::
type
,
fvPatchField
,
volMesh
>
>
reconstruct
(
const
tmp
<
GeometricField
<
Type
,
fvsPatchField
,
surfaceMesh
>
>&
tssf
)
{
typedef
typename
outerProduct
<
vector
,
Type
>::
type
GradType
;
tmp
<
GeometricField
<
GradType
,
fvPatchField
,
volMesh
>
>
tvf
(
fvc
::
reconstruct
(
tssf
())
);
tssf
.
clear
();
return
tvf
;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace fvc
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
}
// End namespace Foam
// ************************************************************************* //
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment