Fix tutorials: typo in tutorials/viscoelastic/viscoelasticFluidFoam/S-MDCPP/constant...
[OpenFOAM-1.6-ext.git] / src / engine / engineTopoChangerMesh / thoboisSliding / addThoboisSlidingMeshModifiers.C
blob9954576522d4e526a5060b2fd5b6cb5aeb1bd76a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2005-2010 Tommaso Lucchini
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 Class
26     verticalValvesGambit
28 \*---------------------------------------------------------------------------*/
30 #include "thoboisSliding.H"
31 #include "slidingInterface.H"
32 #include "layerAdditionRemoval.H"
33 #include "surfaceFields.H"
34 #include "regionSplit.H"
35 #include "attachDetach.H"
37 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
39 void Foam::thoboisSliding::addZonesAndModifiers()
41     // Add the zones and mesh modifiers to operate piston motion
43     if
44     (
45         pointZones().size() > 0
46      || faceZones().size() > 0
47      || cellZones().size() > 0
48      || topoChanger_.size() > 0
49     )
50     {
51         Info<< "Time = " << engTime().theta() << endl;
52         Info<< "void Foam::verticalValvesGambit::addZonesAndModifiers() : "
53             << "Zones and modifiers already present.  Skipping."
54             << endl;
56         setVirtualPositions();
57 //        checkAndCalculate();
59         Info << "Point zones found = " << pointZones().size() << endl;
60         Info << "Face zones found = " << faceZones().size() << endl;
61         Info << "Cell zones found = " << cellZones().size() << endl;
63         return;
65     }
67     if
68     (
69         engTime().engineDict().found("zOffsetGambit")
70      && engTime().engineDict().found("zDisplGambit")
71     )
72     {
73         Info << "Assembling the cylinder mesh" << endl;
75         scalar zOffset
76         (
77             readScalar(engTime().engineDict().lookup("zOffsetGambit"))
78         );
80         scalar zDispl
81         (
82             readScalar(engTime().engineDict().lookup("zDisplGambit"))
83         );
85         pointField pDispl = points();
87         forAll(points(), pointI)
88         {
89             const point p = points()[pointI];
91             if(p.z() >= zOffset)
92             {
93                 pDispl[pointI].z() -= zDispl;
94             }
95         }
97         movePoints(pDispl);
98         write();
99         resetMotion();
101         Info << "Cylinder mesh assembled" << endl;
102     }
104     Info << "checkAndCalculate()" << endl;
105 //    checkAndCalculate();
107     Info<< "Time = " << engTime().theta() << endl
108         << "Adding zones to the engine mesh" << endl;
111     Point zones
112     1) Piston points
113     1) Cut point zone for liner in head
115     nValves*
116     1) cutPointsV
117     2) valveTopPoints
118     3) valveBottomPoints
120     DynamicList<pointZone*> pz;
123     Face zones
124     1) Piston layer faces
126     nValves*
127     1) valveTopLayerFaces
128     2) valveBottomLayerFaces
129     3) valveCurtainPort
130     4) valveCurtainCyl
131     5) cutFaceV
133     DynamicList<faceZone*> fz;
136     cell zones
137     1) moving cells inside piston
139     nValves*
140     1) moving cells in the top of the valve
141     2) moving cells in the bottom of the valve
144     DynamicList<cellZone*> cz;
146     label nPointZones = 0;
147     label nFaceZones = 0;
148     label nCellZones = 0;
151     Adding the following faces zones:
152     1:  pistonLayerFaces
153     nV: pistonLayerFacesV
155     Adding the following cell zones:
156     1:  movingCellsPiston
157     nV:  movingCellsPistonV
159     Adding the following point zones:
160     1: pistonPoints
161     nV: valvePistonPointsV
165 //#   include "addPistonFacesPointZonesThoboisSliding.H"
168     Adding the following face zones:
170     nV: curtainCylZoneV
171     nV: curtainPortZoneV
172     nV: cutFaceZoneV
173     nV: poppetZoneV
174     nV: bottomZoneV
176     Adding the following point zones:
178     nV: cutPointsV
183 #   include "addValvesFacesPointZonesThoboisSliding.H"
187     Adding the following point zones:
189     nV: valveTopPointsV
190     nV: valveBottomPointsV
192     Adding the following cell zones:
194     nV: movingCellsTopV
195     nV: movingCellsBotV
199 //#   include "addValvePistonCellZonesThoboisSliding.H"
201 //#   include "addAttachDetachFacesThoboisSliding.H"
203     Info<< "Adding " << nPointZones << " point, "
204         << nFaceZones << " face zones and "
205         << nCellZones << " cell zones" << endl;
207     pz.setSize(nPointZones);
208     Info << "setSize pz" << endl;
209     fz.setSize(nFaceZones);
210     Info << "setSize fz" << endl;
211     cz.setSize(nCellZones);
212     Info << "setSize cz" << endl;
214     addZones(pz, fz, cz);
216 #   include "addMeshModifiersThoboisSliding.H"
218     // Calculating the virtual positions of piston and valves
220     setVirtualPositions();
222     Info << " Write mesh " << endl;
223     // Write mesh and modifiers
224     topoChanger_.writeOpt() = IOobject::AUTO_WRITE;
225     write();
226     Info << " Mesh written " << endl;
228 //    Info << "virtualPistonPosition = " << virtualPistonPosition() << endl;
229 //    Info << "piston position = " << pistonPosition() << endl;
233 // ************************************************************************* //