Loading...
Searching...
No Matches
codedPoints0MotionSolver.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2017-2021 OpenCFD Ltd.
9-------------------------------------------------------------------------------
10License
11 This file is part of OpenFOAM.
12
13 OpenFOAM is free software: you can redistribute it and/or modify it
14 under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25
26\*---------------------------------------------------------------------------*/
27
29#include "dictionary.H"
30#include "Time.H"
31#include "dynamicCode.H"
34// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35
36namespace Foam
37{
39
41 (
47
48// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
53}
54
57{
58 return "points0MotionSolver " + name();
59}
60
61
66
67
70{
72}
73
74
76(
77 dynamicCode& dynCode,
78 const dynamicCodeContext& context
79) const
80{
81 // Set additional rewrite rules
82 dynCode.setFilterVariable("typeName", name_);
83
84 // Compile filtered C template
85 dynCode.addCompileFile(codeTemplateC);
86
87 // Copy filtered H template
88 dynCode.addCopyFile(codeTemplateH);
89
90 #ifdef FULLDEBUG
91 dynCode.setFilterVariable("verbose", "true");
93 <<"compile " << name_ << " sha1: " << context.sha1() << endl;
94 #endif
95
96 // Define Make/options
97 dynCode.setMakeOptions
98 (
99 "EXE_INC = -g \\\n"
100 "-I$(LIB_SRC)/finiteVolume/lnInclude \\\n"
101 "-I$(LIB_SRC)/meshTools/lnInclude \\\n"
102 "-I$(LIB_SRC)/dynamicMesh/lnInclude \\\n"
103 "-I$(LIB_SRC)/fvMotionSolvers/lnInclude \\\n"
104 + context.options()
105 + "\n\nLIB_LIBS = \\\n"
106 " -lfiniteVolume \\\n"
107 " -lmeshTools \\\n"
108 " -ldynamicMesh \\\n"
109 " -lfvMotionSolvers \\\n"
110 + context.libs()
111 );
112}
113
114
115// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
116
118(
119 const polyMesh& mesh,
120 const IOdictionary& dict
121)
122:
124 codedBase(),
125 name_(dict.getCompat<word>("name", {{"redirectType", 1706}})),
126 redirectMotionSolverPtr_(nullptr)
127{
128 updateLibrary(name_);
130}
131
132
133// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
134
137{
138 if (!redirectMotionSolverPtr_)
139 {
140 // Get the dictionary for the solver and override the
141 // solver name (in case it is not a subdictionary and contains
142 // the 'coded' as the motionSolver)
143 dictionary constructDict(motionSolver::coeffDict());
144 constructDict.set("solver", name_);
145 constructDict.set("motionSolver", name_);
146
147 IOobject io(*this);
148 io.readOpt(IOobject::NO_READ);
149
150 redirectMotionSolverPtr_ = motionSolver::New
151 (
152 mesh(),
153 IOdictionary(io, constructDict)
154 );
155 }
156
157 return *redirectMotionSolverPtr_;
158}
159
160
166
167
173
174
180
181
183{
184 updateLibrary(name_);
185 return redirectMotionSolver().updateMesh(mpm);
186}
187
188
189// ************************************************************************* //
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
Info<< nl;Info<< "Write faMesh in vtk format:"<< nl;{ vtk::uindirectPatchWriter writer(aMesh.patch(), fileName(aMesh.time().globalPath()/vtkBaseFileName));writer.writeGeometry();globalIndex procAddr(aMesh.nFaces());labelList cellIDs;if(UPstream::master()) { cellIDs.resize(procAddr.totalSize());for(const labelRange &range :procAddr.ranges()) { auto slice=cellIDs.slice(range);slice=identity(range);} } writer.beginCellData(4);writer.writeProcIDs();writer.write("cellID", cellIDs);writer.write("area", aMesh.S().field());writer.write("normal", aMesh.faceAreaNormals());writer.beginPointData(1);writer.write("normal", aMesh.pointAreaNormals());Info<< " "<< writer.output().name()<< nl;}{ vtk::lineWriter writer(aMesh.points(), aMesh.edges(), fileName(aMesh.time().globalPath()/(vtkBaseFileName+"-edges")));writer.writeGeometry();writer.beginCellData(4);writer.writeProcIDs();{ Field< scalar > fld(faMeshTools::flattenEdgeField(aMesh.magLe(), true))
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
@ NO_READ
Nothing to be read.
Defines the attributes of an object for which implicit objectRegistry management is supported,...
Definition IOobject.H:191
dlLibraryTable & libs() const noexcept
Mutable access to the loaded dynamic libraries.
Definition Time.H:722
Base class for function objects and boundary conditions using dynamic code that provides methods for ...
Definition codedBase.H:63
void updateLibrary(const word &name, const dynamicCodeContext &context) const
Update library as required, using the given context.
Definition codedBase.C:283
codedBase(const codedBase &)=delete
No copy construct.
Provides a general interface to enable dynamic code compilation of mesh motion solvers.
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
codedPoints0MotionSolver(const codedPoints0MotionSolver &)=delete
No copy construct.
virtual void prepare(dynamicCode &, const dynamicCodeContext &) const
Adapt the context for the current object.
word name_
Name of redirected motion solver.
virtual void movePoints(const pointField &fld)
Update local data for geometry changes.
motionSolver & redirectMotionSolver() const
Dynamically compiled motionSolver.
autoPtr< motionSolver > redirectMotionSolverPtr_
Underlying motionSolver.
virtual void updateMesh(const mapPolyMesh &mpm)
Update local data for topology changes.
static constexpr const char *const codeTemplateC
Name of the C code template to be used.
virtual const dictionary & codeDict() const
virtual void clearRedirect() const
Clear redirected object(s).
static constexpr const char *const codeTemplateH
Name of the H code template to be used.
virtual dlLibraryTable & libs() const
Mutable access to the loaded dynamic libraries.
virtual void solve()
Solve for motion.
virtual string description() const
Description (type + name) for the output.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
T getCompat(const word &keyword, std::initializer_list< std::pair< const char *, int > > compat, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T using any compatibility names if needed. FatalIOError if not found,...
entry * set(entry *entryPtr)
Assign a new entry, overwriting any existing entry.
Definition dictionary.C:765
A table of dynamically loaded libraries.
Encapsulation of dynamic code dictionaries.
const string & libs() const noexcept
The code libs (LIB_LIBS).
const SHA1 & sha1() const noexcept
The SHA1 calculated from options, libs, include, code, etc.
const string & options() const noexcept
The code options (Make/options).
Tools for handling dynamic code compilation.
Definition dynamicCode.H:57
void addCopyFile(const fileName &name)
Add a file template name, which will be found and filtered.
void setFilterVariable(const word &key, const std::string &value)
Define a filter variable.
void addCompileFile(const fileName &name)
Add a file template name, which will be found and filtered.
void setMakeOptions(const std::string &content)
Define contents for Make/options.
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Virtual base class for mesh motion solver.
const polyMesh & mesh() const
Return reference to mesh.
static autoPtr< motionSolver > New(const polyMesh &)
Select constructed from polyMesh.
motionSolver(const polyMesh &mesh)
Construct from polyMesh.
const dictionary & coeffDict() const
Const access to the coefficients dictionary.
const Time & time() const noexcept
Return time registry.
Mesh consisting of general polyhedral cells.
Definition polyMesh.H:79
A class for handling character strings derived from std::string.
Definition string.H:76
A class for managing temporary objects.
Definition tmp.H:75
A class for handling words, derived from Foam::string.
Definition word.H:66
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
Definition className.H:142
dynamicFvMesh & mesh
#define DetailInfo
Definition evalEntry.C:30
const auto & io
auto & name
Namespace for OpenFOAM.
const word GlobalIOList< Tuple2< scalar, vector > >::typeName("scalarVectorTable")
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition Ostream.H:519
vectorField pointField
pointField is a vectorField.
dictionary dict