Forward compatibility: flex
[foam-extend-3.2.git] / src / postProcessing / functionObjects / field / surfaceInterpolateFields / surfaceInterpolateFields.C
blobed0488b5d623b02d87481563f2ff1cd40bb41155
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "surfaceInterpolateFields.H"
27 //#include "dictionary.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
33     defineTypeNameAndDebug(surfaceInterpolateFields, 0);
37 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
39 Foam::surfaceInterpolateFields::surfaceInterpolateFields
41     const word& name,
42     const objectRegistry& obr,
43     const dictionary& dict,
44     const bool loadFromFiles
47     name_(name),
48     obr_(obr),
49     active_(true),
50     fieldSet_()
52     // Check if the available mesh is an fvMesh otherise deactivate
53     if (!isA<fvMesh>(obr_))
54     {
55         active_ = false;
56         WarningIn
57         (
58             "surfaceInterpolateFields::surfaceInterpolateFields"
59             "("
60                 "const word&, "
61                 "const objectRegistry&, "
62                 "const dictionary&, "
63                 "const bool"
64             ")"
65         )   << "No fvMesh available, deactivating."
66             << endl;
67     }
69     read(dict);
73 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
75 Foam::surfaceInterpolateFields::~surfaceInterpolateFields()
79 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
81 void Foam::surfaceInterpolateFields::read(const dictionary& dict)
83     if (active_)
84     {
85         dict.lookup("fields") >> fieldSet_;
86     }
90 void Foam::surfaceInterpolateFields::execute()
92     //Info<< type() << " " << name_ << ":" << nl;
94     // Clear out any previously loaded fields
95     ssf_.clear();
96     svf_.clear();
97     sSpheretf_.clear();
98     sSymmtf_.clear();
99     stf_.clear();
101     interpolateFields<scalar>(ssf_);
102     interpolateFields<vector>(svf_);
103     interpolateFields<sphericalTensor>(sSpheretf_);
104     interpolateFields<symmTensor>(sSymmtf_);
105     interpolateFields<tensor>(stf_);
109 void Foam::surfaceInterpolateFields::end()
111     // Do nothing
115 void Foam::surfaceInterpolateFields::write()
117     // Do nothing
121 // ************************************************************************* //