Remove trailing whitespace systematically
[foam-extend-3.2.git] / src / postProcessing / foamCalcFunctions / field / randomise / randomise.C
blob7f084957a09be5ad3b1141ae41e981aa5607d70d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     |
5     \\  /    A nd           | For copyright notice see file Copyright
6      \\/     M anipulation  |
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 "randomise.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
33     namespace calcTypes
34     {
35         defineTypeNameAndDebug(randomise, 0);
36         addToRunTimeSelectionTable(calcType, randomise, dictionary);
37     }
41 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
43 Foam::calcTypes::randomise::randomise()
45     calcType()
49 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
51 Foam::calcTypes::randomise::~randomise()
55 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
57 void Foam::calcTypes::randomise::init()
59     argList::validArgs.append("randomise");
60     argList::validArgs.append("perturbation");
61     argList::validArgs.append("fieldName");
65 void Foam::calcTypes::randomise::preCalc
67     const argList& args,
68     const Time& runTime,
69     const fvMesh& mesh
74 void Foam::calcTypes::randomise::calc
76     const argList& args,
77     const Time& runTime,
78     const fvMesh& mesh
81     const stringList& params = args.additionalArgs();
82     const scalar pertMag = readScalar(IStringStream(params[1])());
83     const word& fieldName = params[2];
85     Random rand(1234567);
87     IOobject fieldHeader
88     (
89         fieldName,
90         runTime.timeName(),
91         mesh,
92         IOobject::MUST_READ
93     );
95     // Check field exists
96     if (fieldHeader.headerOk())
97     {
98         bool processed = false;
100         writeRandomField<vector>
101         (
102             fieldHeader,
103             pertMag,
104             rand,
105             mesh,
106             processed
107         );
108         writeRandomField<sphericalTensor>
109         (
110             fieldHeader,
111             pertMag,
112             rand,
113             mesh,
114             processed
115         );
116         writeRandomField<symmTensor>
117         (
118             fieldHeader,
119             pertMag,
120             rand,
121             mesh,
122             processed
123         );
124         writeRandomField<tensor>
125         (
126             fieldHeader,
127             pertMag,
128             rand,
129             mesh,
130             processed
131         );
133         if (!processed)
134         {
135             FatalError
136                 << "Unable to process " << fieldName << nl
137                 << "No call to randomise for fields of type "
138                 << fieldHeader.headerClassName() << nl << nl
139                 << exit(FatalError);
140         }
141     }
142     else
143     {
144         Info<< "    No " << fieldName << endl;
145     }
149 // ************************************************************************* //