![]() |
|
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 linearValveFvMesh_H 00036 #define linearValveFvMesh_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 linearValveFvMesh Declaration 00050 \*---------------------------------------------------------------------------*/ 00051 00052 class linearValveFvMesh 00053 : 00054 public topoChangerFvMesh 00055 { 00056 // Private data 00057 00058 //- Motion dictionary 00059 dictionary motionDict_; 00060 00061 //- Motion solver 00062 autoPtr<motionSolver> msPtr_; 00063 00064 00065 // Private Member Functions 00066 00067 //- Disallow default bitwise copy construct 00068 linearValveFvMesh(const linearValveFvMesh&); 00069 00070 //- Disallow default bitwise assignment 00071 void operator=(const linearValveFvMesh&); 00072 00073 00074 //- Add mixer zones and modifiers 00075 void addZonesAndModifiers(); 00076 00077 //- Make layering modifiers live 00078 void makeSlidersDead(); 00079 00080 //- Make sliding modifiers live 00081 void makeSlidersLive(); 00082 00083 //- Return true if sliders are attached 00084 bool attached() const; 00085 00086 00087 public: 00088 00089 //- Runtime type information 00090 TypeName("linearValveFvMesh"); 00091 00092 00093 // Constructors 00094 00095 //- Construct from database 00096 explicit linearValveFvMesh(const IOobject& io); 00097 00098 00099 // Destructor 00100 00101 virtual ~linearValveFvMesh(); 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 // ************************************************************************* //