initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / compressible / rhopSonicFoam / BCs / rho / fixedRhoFvPatchScalarField.C
blobb9e8a8032509a1f34e3950f8b4c49e618518c861
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "fixedRhoFvPatchScalarField.H"
28 #include "addToRunTimeSelectionTable.H"
29 #include "fvPatchFieldMapper.H"
30 #include "volFields.H"
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 namespace Foam
37 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
39 fixedRhoFvPatchScalarField::fixedRhoFvPatchScalarField
41     const fvPatch& p,
42     const DimensionedField<scalar, volMesh>& iF
45     fixedValueFvPatchScalarField(p, iF)
49 fixedRhoFvPatchScalarField::fixedRhoFvPatchScalarField
51     const fixedRhoFvPatchScalarField& ptf,
52     const fvPatch& p,
53     const DimensionedField<scalar, volMesh>& iF,
54     const fvPatchFieldMapper& mapper
57     fixedValueFvPatchScalarField(ptf, p, iF, mapper)
61 fixedRhoFvPatchScalarField::fixedRhoFvPatchScalarField
63     const fvPatch& p,
64     const DimensionedField<scalar, volMesh>& iF,
65     const dictionary& dict
68     fixedValueFvPatchScalarField(p, iF)
72 fixedRhoFvPatchScalarField::fixedRhoFvPatchScalarField
74     const fixedRhoFvPatchScalarField& tppsf
77     fixedValueFvPatchScalarField(tppsf)
81 fixedRhoFvPatchScalarField::fixedRhoFvPatchScalarField
83     const fixedRhoFvPatchScalarField& tppsf,
84     const DimensionedField<scalar, volMesh>& iF
87     fixedValueFvPatchScalarField(tppsf, iF)
91 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
93 void fixedRhoFvPatchScalarField::updateCoeffs()
95     if (updated())
96     {
97         return;
98     }
100     const fvPatchField<scalar>& psip =
101         patch().lookupPatchField<volScalarField, scalar>("psi");
103     const fvPatchField<scalar>& pp =
104         patch().lookupPatchField<volScalarField, scalar>("p");
106     operator==(psip*pp);
108     fixedValueFvPatchScalarField::updateCoeffs();
112 void fixedRhoFvPatchScalarField::write(Ostream& os) const
114     fvPatchScalarField::write(os);
115     writeEntry("value", os);
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 makePatchTypeField(fvPatchScalarField, fixedRhoFvPatchScalarField);
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // ************************************************************************* //