49Foam::porosityModels::DarcyForchheimer::DarcyForchheimer
52 const word& modelType,
61 D_(cellZoneIDs_.size()),
62 F_(cellZoneIDs_.size()),
63 rhoName_(coeffs_.getOrDefault<
word>(
"rho",
"rho")),
64 muName_(coeffs_.getOrDefault<
word>(
"mu",
"thermo:mu")),
65 nuName_(coeffs_.getOrDefault<
word>(
"nu",
"nu"))
80 darcyCoeff.xx() = dXYZ_.value().x();
81 darcyCoeff.yy() = dXYZ_.value().y();
82 darcyCoeff.zz() = dXYZ_.value().z();
87 forchCoeff.xx() = 0.5*fXYZ_.value().x();
88 forchCoeff.yy() = 0.5*fXYZ_.value().y();
89 forchCoeff.zz() = 0.5*fXYZ_.value().z();
93 forAll(cellZoneIDs_, zonei)
98 D_[zonei] = csys().transform(darcyCoeff);
99 F_[zonei] = csys().transform(forchCoeff);
104 forAll(cellZoneIDs_, zonei)
109 mesh_.cellZones()[cellZoneIDs_[zonei]]
112 D_[zonei] = csys().transform(cc, darcyCoeff);
113 F_[zonei] = csys().transform(cc, forchCoeff);
122 mesh_.time().writeTime()
123 || mesh_.time().timeIndex() == mesh_.time().startTimeIndex()
141 forAll(cellZoneIDs_, zonei)
145 if (csys().uniform())
147 UIndirectList<tensor>(Dout,
cells) = D_[zonei].first();
148 UIndirectList<tensor>(Fout,
cells) = F_[zonei].first();
152 UIndirectList<tensor>(Dout,
cells) = D_[zonei];
153 UIndirectList<tensor>(Fout,
cells) = F_[zonei];
177 force = Udiag*
U - Usource;
218 apply(Udiag, Usource, V, geometricOneField(),
nu,
U);
287 dict_.writeEntry(name_,
os);
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
static word scopedName(const std::string &scope, const word &name)
Create scope:name or scope_name string.
static word groupName(StringType base, const word &group)
Create dot-delimited name.group string.
T & first()
Access first element of the list, position [0].
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
const Cmpt & yy() const noexcept
const Cmpt & xx() const noexcept
const Cmpt & zz() const noexcept
A List with indirect addressing. Like IndirectList but does not store addressing.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Mesh data needed to do the Finite Volume discretisation.
A class representing the concept of a GeometricField of 1 used to avoid unnecessary manipulations for...
Top level model for porosity models.
const fvMesh & mesh_
Reference to the mesh database.
dictionary coeffs_
Model coefficients dictionary.
porosityModel(const porosityModel &)=delete
No copy construct.
const dictionary dict_
Dictionary used for model construction.
const coordinateSystem & csys() const
Local coordinate system.
const dictionary & dict() const
Return dictionary used for model construction.
void adjustNegativeResistance(dimensionedVector &resist)
Adjust negative resistance values to be multiplier of max value.
const word & name() const
Return const access to the porosity model name.
labelList cellZoneIDs_
Cell zone IDs.
virtual tmp< vectorField > force(const volVectorField &U, const volScalarField &rho, const volScalarField &mu)
Return the force over the cell zone(s).
Darcy-Forchheimer law porosity model, given by:
virtual void calcForce(const volVectorField &U, const volScalarField &rho, const volScalarField &mu, vectorField &force) const
Calculate the porosity force.
bool writeData(Ostream &os) const
Write.
virtual void correct(fvVectorMatrix &UEqn) const
Add resistance.
virtual void calcTransformModelData()
Transform the model data wrt mesh changes.
virtual bool write(const bool writeOnProc=true) const
Write using setting from DB.
A wordRe is a Foam::word, but can contain a regular expression for matching words or strings.
A class for handling words, derived from Foam::string.
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
OBJstream os(runTime.globalPath()/outputName)
A special matrix type and solver, designed for finite volume solutions of scalar equations.
Namespace for handling debugging switches.
GeometricField< vector, fvPatchField, volMesh > volVectorField
const dimensionSet dimless
Dimensionless.
List< label > labelList
A List of labels.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
const dimensionSet dimLength(0, 1, 0, 0, 0, 0, 0)
GeometricField< scalar, fvPatchField, volMesh > volScalarField
UIndirectList< point > pointUIndList
UIndirectList of point.
static void apply(bitSet &selection, const Detail::parcelSelection::actionType action, const Predicate &accept, const UList< Type > &list, const AccessOp &aop)
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
const word GlobalIOList< Tuple2< scalar, vector > >::typeName("scalarVectorTable")
GeometricField< tensor, fvPatchField, volMesh > volTensorField
fvMatrix< vector > fvVectorMatrix
const dimensionSet dimForce
Field< vector > vectorField
Specialisation of Field<T> for vector.
static constexpr const zero Zero
Global zero (0).
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for expressions::valueTypeCode::INVALID.
dimensioned< tensor > dimensionedTensor
Dimensioned tensor obtained from generic dimensioned type.
#define forAll(list, i)
Loop across all elements in list.