windowModelTemplates.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2015-2018 OpenCFD Ltd.
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
28#include "SubField.H"
29
30// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31
32template<class Type>
34(
35 const Field<Type>& fld,
36 const label windowI
37) const
38{
39 label nSamples = this->nSamples();
40
41 if (nSamples > fld.size())
42 {
44 << "Number of samples in sampling window is greater than the "
45 << "size of the input field" << nl
46 << " input field size = " << fld.size() << nl
47 << " window size = " << nSamples << nl
48 << " requested window index = " << windowI
49 << exit(FatalError);
50 }
51
52
53 auto tresult = tmp<Field<Type>>::New(nSamples, Zero);
54 auto& result = tresult.ref();
55
56 label nWindow = nWindowsTotal(fld.size());
57 if (windowI >= nWindow)
58 {
60 << "Requested window " << windowI << " outside of range. "
61 << "Number of available windows is " << nWindow
62 << abort(FatalError);
63 }
64
65 label windowOffset = windowI*(nSamples - nOverlapSamples_);
66
67 const scalarField& wf = *this;
68 result = wf*SubField<Type>(fld, nSamples, windowOffset);
69
70 return tresult;
71}
72
73
74// ************************************************************************* //
Info<< nl<< "Wrote faMesh in vtk format: "<< writer.output().name()<< nl;}{ vtk::lineWriter writer(aMesh.points(), aMesh.edges(), fileName(aMesh.mesh().time().globalPath()/"finiteArea-edges"));writer.writeGeometry();writer.beginCellData(4);writer.writeProcIDs();{ Field< scalar > fld(faMeshTools::flattenEdgeField(aMesh.magLe(), true))
Generic templated field type.
Definition: Field.H:82
SubField is a Field obtained as a section of another Field, without its own allocation....
Definition: SubField.H:62
virtual void apply()=0
Apply bins.
A class for managing temporary objects.
Definition: tmp.H:65
label nWindow() const
Return the number of windows.
Definition: windowModel.C:62
label nWindowsTotal(label nSamplesTotal) const
Return the total number of windows for a given number of samples.
Definition: windowModel.C:68
static autoPtr< windowModel > New(const dictionary &dict, const label nSamples)
Return a reference to the selected window model.
label nSamples() const
Return the number of samples in the window.
Definition: windowModel.C:56
label nOverlapSamples_
Number of overlap samples per window.
Definition: windowModel.H:62
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:453
errorManip< error > abort(error &err)
Definition: errorManip.H:144
static constexpr const zero Zero
Global zero (0)
Definition: zero.H:131
error FatalError
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
constexpr char nl
The newline '\n' character (0x0a)
Definition: Ostream.H:53