hydrostaticDisplacementFvPatchVectorField.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2018-2026 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 
29 
30 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
31 
34 (
35  const fvPatch& p,
37  const dictionary& dict
38 )
39 :
41  rhoLiquid_(dict.lookup<scalar>("rhoLiquid", dimDensity)),
42  liquidSurfacePressure_
43  (
44  dict.lookup<scalar>("liquidSurfacePressure", dimPressure)
45  ),
46  liquidSurfacePoint_(dict.lookup<vector>("liquidSurfacePoint", dimLength))
47 {}
48 
49 
52 (
54  const fvPatch& p,
56  const fieldMapper& mapper
57 )
58 :
59  tractionDisplacementFvPatchVectorField(tdpvf, p, iF, mapper),
60  rhoLiquid_(tdpvf.rhoLiquid_),
61  liquidSurfacePressure_(tdpvf.liquidSurfacePressure_),
62  liquidSurfacePoint_(tdpvf.liquidSurfacePoint_)
63 {}
64 
65 
68 (
71 )
72 :
74  rhoLiquid_(tdpvf.rhoLiquid_),
75  liquidSurfacePressure_(tdpvf.liquidSurfacePressure_),
76  liquidSurfacePoint_(tdpvf.liquidSurfacePoint_)
77 {}
78 
79 
80 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
81 
83 {
84  if (updated())
85  {
86  return;
87  }
88 
89  const uniformDimensionedVectorField& g =
90  db().lookupObject<uniformDimensionedVectorField>("g");
91 
93  (
94  liquidSurfacePressure_
95  + rhoLiquid_
96  *max(g.value() & (patch().Cf() - liquidSurfacePoint_), scalar(0))
97  );
98 }
99 
100 
102 {
104  writeEntry(os, "rhoLiquid", rhoLiquid_);
105  writeEntry(os, "liquidSurfacePressure", liquidSurfacePressure_);
106  writeEntry(os, "liquidSurfacePoint", liquidSurfacePoint_);
107  writeEntry(os, "value", *this);
108 }
109 
110 
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 
113 namespace Foam
114 {
116  (
119  );
120 }
121 
122 
123 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keywords followed by any number of values (e.g. words and numbers) or sub-dictionaries.
Definition: dictionary.H:162
Abstract base class for field mapping.
Definition: fieldMapper.H:48
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:90
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:235
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:58
Fixed traction boundary condition for the standard linear elastic, fixed coefficient displacement equ...
hydrostaticDisplacementFvPatchVectorField(const fvPatch &, const DimensionedField< vector, fvMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Fixed traction boundary condition for the standard linear elastic, fixed coefficient displacement equ...
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
const unitSet & lookup(const word &unitName)
Lookup and return the named unit from the table.
Definition: units.C:346
Namespace for OpenFOAM.
const dimensionSet & dimLength
Definition: dimensions.C:141
makePatchTypeField(fvPatchScalarField, atmosphericBoundaryLayerTurbulentEpsilonFvPatchScalarField)
const dimensionSet & dimDensity
Definition: dimensions.C:158
const dimensionSet & dimPressure
Definition: dimensions.C:163
void writeEntry(Ostream &os, const word &key, const DimensionedFieldFunction< DimensionedFieldType > &f)
dimensioned< Type > max(const DimensionedField< Type, GeoMesh, PrimitiveField > &df)
dictionary dict
volScalarField & p
Typedefs for UniformDimensionedField.