DarcyForchheimerTemplates.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2012-2013 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
27 
28 template<class RhoFieldType>
30 (
31  scalarField& Udiag,
32  vectorField& Usource,
33  const scalarField& V,
34  const RhoFieldType& rho,
35  const scalarField& mu,
36  const vectorField& U
37 ) const
38 {
39  forAll(cellZoneIDs_, zoneI)
40  {
41  const tensorField& dZones = D_[zoneI];
42  const tensorField& fZones = F_[zoneI];
43 
44  const labelList& cells = mesh_.cellZones()[cellZoneIDs_[zoneI]];
45 
46  forAll(cells, i)
47  {
48  const label cellI = cells[i];
49  const label j = this->fieldIndex(i);
50  const tensor Cd =
51  mu[cellI]*dZones[j] + (rho[cellI]*mag(U[cellI]))*fZones[j];
52 
53  const scalar isoCd = tr(Cd);
54 
55  Udiag[cellI] += V[cellI]*isoCd;
56  Usource[cellI] -= V[cellI]*((Cd - I*isoCd) & U[cellI]);
57  }
58  }
59 }
60 
61 
62 template<class RhoFieldType>
64 (
65  tensorField& AU,
66  const RhoFieldType& rho,
67  const scalarField& mu,
68  const vectorField& U
69 ) const
70 {
71  forAll(cellZoneIDs_, zoneI)
72  {
73  const tensorField& dZones = D_[zoneI];
74  const tensorField& fZones = F_[zoneI];
75 
76  const labelList& cells = mesh_.cellZones()[cellZoneIDs_[zoneI]];
77 
78  forAll(cells, i)
79  {
80  const label cellI = cells[i];
81  const label j = this->fieldIndex(i);
82  const tensor D = dZones[j];
83  const tensor F = fZones[j];
84 
85  AU[cellI] += mu[cellI]*D + (rho[cellI]*mag(U[cellI]))*F;
86  }
87  }
88 }
89 
90 
91 // ************************************************************************* //
Foam::Tensor
Templated 3D tensor derived from VectorSpace adding construction from 9 components,...
Definition: complexI.H:224
Foam::constant::physicoChemical::mu
const dimensionedScalar mu
Atomic mass unit.
Definition: createFields.H:13
forAll
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:406
Foam::mag
dimensioned< scalar > mag(const dimensioned< Type > &)
Foam::constant::physicoChemical::F
const dimensionedScalar F
Faraday constant: default SI units: [C/mol].
U
U
Definition: pEqn.H:46
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::Field
Pre-declare SubField and related Field type.
Definition: Field.H:57
Foam::I
static const sphericalTensor I(1)
rho
rho
Definition: pEqn.H:3
Foam::List
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition: HashTable.H:59
Foam::porosityModels::DarcyForchheimer::apply
void apply(scalarField &Udiag, vectorField &Usource, const scalarField &V, const RhoFieldType &rho, const scalarField &mu, const vectorField &U) const
Apply.
Definition: DarcyForchheimerTemplates.C:30
cells
const cellShapeList & cells
Definition: gmvOutputHeader.H:3
Foam::tr
dimensionedScalar tr(const dimensionedSphericalTensor &dt)
Definition: dimensionedSphericalTensor.C:49