![]() |
|
00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2005 OpenCFD Ltd. 00006 \\/ M anipulation | 00007 ------------------------------------------------------------------------------- 00008 License 00009 This file is part of OpenFOAM. 00010 00011 OpenFOAM is free software; you can redistribute it and/or modify it 00012 under the terms of the GNU General Public License as published by the 00013 Free Software Foundation; either version 2 of the License, or (at your 00014 option) any later version. 00015 00016 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00019 for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with OpenFOAM; if not, write to the Free Software Foundation, 00023 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00024 00025 Class 00026 staticTopoFvMesh 00027 00028 Description 00029 00030 SourceFiles 00031 linearValveFvMesh.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef linearValveLayersFvMesh_H 00036 #define linearValveLayersFvMesh_H 00037 00038 #include "topoChangerFvMesh.H" 00039 #include "motionSolver.H" 00040 00041 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00042 00043 namespace Foam 00044 { 00045 00046 // Class forward declarations 00047 00048 /*---------------------------------------------------------------------------*\ 00049 Class linearValveLayersFvMesh Declaration 00050 \*---------------------------------------------------------------------------*/ 00051 00052 class linearValveLayersFvMesh 00053 : 00054 public topoChangerFvMesh 00055 { 00056 // Private data 00057 00058 //- Motion dictionary 00059 dictionary motionDict_; 00060 00061 00062 // Private Member Functions 00063 00064 //- Disallow default bitwise copy construct 00065 linearValveLayersFvMesh(const linearValveLayersFvMesh&); 00066 00067 //- Disallow default bitwise assignment 00068 void operator=(const linearValveLayersFvMesh&); 00069 00070 00071 //- Add valve and piston zones and modifiers 00072 void addZonesAndModifiers(); 00073 00074 //- Make layering modifiers live 00075 void makeLayersLive(); 00076 00077 //- Make sliding modifiers live 00078 void makeSlidersLive(); 00079 00080 //- Return true if sliders are attached 00081 bool attached() const; 00082 00083 //- Return new point field 00084 tmp<pointField> newPoints() const; 00085 00086 00087 public: 00088 00089 //- Runtime type information 00090 TypeName("linearValveLayersFvMesh"); 00091 00092 00093 // Constructors 00094 00095 //- Construct from database 00096 explicit linearValveLayersFvMesh(const IOobject& io); 00097 00098 00099 // Destructor 00100 00101 virtual ~linearValveLayersFvMesh(); 00102 00103 00104 // Member Functions 00105 00106 //- Update the mesh for both mesh motion and topology change 00107 virtual void update(); 00108 }; 00109 00110 00111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00112 00113 } // End namespace Foam 00114 00115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00116 00117 #endif 00118 00119 // ************************************************************************* //