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-2024 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 
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
Type & value()
Return a reference to the value.
A list of keyword definitions, which are a keyword followed by any number of values (e....
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:88
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:229
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Fixed traction boundary condition for the standard linear elastic, fixed coefficient displacement equ...
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
hydrostaticDisplacementFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
Fixed traction boundary condition for the standard linear elastic, fixed coefficient displacement equ...
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Namespace for OpenFOAM.
const dimensionSet dimPressure
const dimensionSet dimLength
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
const dimensionSet dimDensity
layerAndWeight max(const layerAndWeight &a, const layerAndWeight &b)
makePatchTypeField(fvPatchScalarField, atmBoundaryLayerInletEpsilonFvPatchScalarField)
dictionary dict
volScalarField & p