Forward compatibility: flex
[foam-extend-3.2.git] / applications / utilities / postProcessing / miscellaneous / calcLevelSet / calcLevelSet.C
blob6739625ce9d7593098c0f9deee0f2a5fb09dc998
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 Application
25     calcLevelSet
27 Description
28     Calculates and writes the scalar magnitude of the levelSet variable
30 Author
31     Hrvoje Jasak, Wikki Ltd.  All rights reserved.
33 \*---------------------------------------------------------------------------*/
35 #include "fvCFD.H"
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 int main(int argc, char *argv[])
41     argList::validOptions.insert("normal", "vector");
42 #   include "addTimeOptions.H"
43 #   include "setRootCase.H"
45 #   include "createTime.H"
47     // Get normal
48     vector normal(0, 0, 1);
50     if (args.options().found("normal"))
51     {
52         normal = vector(IStringStream(args.options()["normal"])());
54         if (mag(normal) > SMALL)
55         {
56             normal /= mag(normal);
57         }
58         else
59         {
60             FatalErrorIn(args.executable())
61                 << "Invalid normal given: " << normal
62                 << abort(FatalError);
63         }
65     }
67     Info << "Normal vector for height field: " << normal << endl;
69     // Get times list
70     instantList Times = runTime.times();
72     // set startTime and endTime depending on -time and -latestTime options
73 #   include "checkTimeOptions.H"
75     runTime.setTime(Times[startTime], startTime);
77 #   include "createMesh.H"
79     for (label i=startTime; i<endTime; i++)
80     {
81         runTime.setTime(Times[i], i);
83         Info<< "Time = " << runTime.timeName() << endl;
85         mesh.readUpdate();
87         Info<< "    Calculating height" << endl;
88         volScalarField height
89         (
90             IOobject
91             (
92                 "height",
93                 runTime.timeName(),
94                 mesh,
95                 IOobject::NO_READ
96             ),
97             mesh.C() & normal
98         );
100         height.write();
101     }
103     Info<< "End\n" << endl;
105     return(0);
109 // ************************************************************************* //