Loading...
Searching...
No Matches
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;Info<< "Write faMesh in vtk format:"<< nl;{ vtk::uindirectPatchWriter writer(aMesh.patch(), fileName(aMesh.time().globalPath()/vtkBaseFileName));writer.writeGeometry();globalIndex procAddr(aMesh.nFaces());labelList cellIDs;if(UPstream::master()) { cellIDs.resize(procAddr.totalSize());for(const labelRange &range :procAddr.ranges()) { auto slice=cellIDs.slice(range);slice=identity(range);} } writer.beginCellData(4);writer.writeProcIDs();writer.write("cellID", cellIDs);writer.write("area", aMesh.S().field());writer.write("normal", aMesh.faceAreaNormals());writer.beginPointData(1);writer.write("normal", aMesh.pointAreaNormals());Info<< " "<< writer.output().name()<< nl;}{ vtk::lineWriter writer(aMesh.points(), aMesh.edges(), fileName(aMesh.time().globalPath()/(vtkBaseFileName+"-edges")));writer.writeGeometry();writer.beginCellData(4);writer.writeProcIDs();{ Field< scalar > fld(faMeshTools::flattenEdgeField(aMesh.magLe(), true))
constexpr Field() noexcept
SubField is a Field obtained as a section of another Field, without its own allocation....
Definition SubField.H:58
A class for managing temporary objects.
Definition tmp.H:75
label nWindow() const
Return the number of windows.
Definition windowModel.C:63
tmp< Field< Type > > apply(const Field< Type > &fld, const label windowI) const
Return the windowed data.
label nWindowsTotal(label nSamplesTotal) const
Return the total number of windows for a given number of samples.
Definition windowModel.C:69
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:45
label nOverlapSamples_
Number of overlap samples per window.
Definition windowModel.H:65
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition error.H:600
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
errorManip< error > abort(error &err)
Definition errorManip.H:139
static constexpr const zero Zero
Global zero (0).
Definition zero.H:127
error FatalError
Error stream (stdout output on all processes), with additional 'FOAM FATAL ERROR' header text and sta...
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition errorManip.H:125
constexpr char nl
The newline '\n' character (0x0a).
Definition Ostream.H:50