fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / engine / engineTopoChangerMesh / twoStrokeEngine / twoStrokeEngineCalculate.C
blobb8fb6fd8765dd252edc71ba815773d1356bad809
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM 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 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
28 #include "twoStrokeEngine.H"
29 #include "slidingInterface.H"
30 #include "layerAdditionRemoval.H"
31 #include "surfaceFields.H"
32 #include "regionSplit.H"
33 #include "componentMixedTetPolyPatchVectorField.H"
35 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
37 void Foam::twoStrokeEngine::correctVerticalMotion()
41 void Foam::twoStrokeEngine::calcMovingMasks() const
43     if (debug)
44     {
45         Info<< "void movingSquaresTM::calcMovingMasks() const : "
46             << "Calculating point and cell masks"
47             << endl;
48     }
50     if (movingPointsMaskPtr_)
51     {
52         FatalErrorIn("void movingSquaresTM::calcMovingMasks() const")
53             << "point mask already calculated"
54             << abort(FatalError);
55     }
57     // Set the point mask
58     movingPointsMaskPtr_ = new scalarField(allPoints().size(), 0);
59     scalarField& movingPointsMask = *movingPointsMaskPtr_;
61     const cellList& c = cells();
62     const faceList& f = allFaces();
64     const labelList& cellAddr =
65         cellZones()[cellZones().findZoneID("movingCells")];
67     forAll (cellAddr, cellI)
68     {
69         const cell& curCell = c[cellAddr[cellI]];
71         forAll (curCell, faceI)
72         {
73             // Mark all the points as moving
74             const face& curFace = f[curCell[faceI]];
76             forAll (curFace, pointI)
77             {
78                 movingPointsMask[curFace[pointI]] = 1;
79             }
80         }
81     }
85 // Return moving points mask.  Moving points marked with 1
86 const Foam::scalarField& Foam::twoStrokeEngine::movingPointsMask() const
88     if(movingPointsMaskPtr_)
89     {
90         movingPointsMaskPtr_ = NULL;
91     }
93     if (!movingPointsMaskPtr_)
94     {
95         calcMovingMasks();
96     }
98     return *movingPointsMaskPtr_;
101 void Foam::twoStrokeEngine::applyMovingMask()