mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -50,6 +50,7 @@ namespace Foam
|
|||||||
void Foam::fvMesh::clearGeomNotOldVol()
|
void Foam::fvMesh::clearGeomNotOldVol()
|
||||||
{
|
{
|
||||||
meshObject::clear<fvMesh, GeometricMeshObject>(*this);
|
meshObject::clear<fvMesh, GeometricMeshObject>(*this);
|
||||||
|
meshObject::clear<lduMesh, GeometricMeshObject>(*this);
|
||||||
|
|
||||||
slicedVolScalarField::DimensionedInternalField* VPtr =
|
slicedVolScalarField::DimensionedInternalField* VPtr =
|
||||||
static_cast<slicedVolScalarField::DimensionedInternalField*>(VPtr_);
|
static_cast<slicedVolScalarField::DimensionedInternalField*>(VPtr_);
|
||||||
@ -112,6 +113,7 @@ void Foam::fvMesh::clearGeom()
|
|||||||
void Foam::fvMesh::clearAddressing()
|
void Foam::fvMesh::clearAddressing()
|
||||||
{
|
{
|
||||||
meshObject::clear<fvMesh, TopologicalMeshObject>(*this);
|
meshObject::clear<fvMesh, TopologicalMeshObject>(*this);
|
||||||
|
meshObject::clear<lduMesh, TopologicalMeshObject>(*this);
|
||||||
deleteDemandDrivenData(lduPtr_);
|
deleteDemandDrivenData(lduPtr_);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -632,6 +634,7 @@ Foam::tmp<Foam::scalarField> Foam::fvMesh::movePoints(const pointField& p)
|
|||||||
surfaceInterpolation::movePoints();
|
surfaceInterpolation::movePoints();
|
||||||
|
|
||||||
meshObject::movePoints<fvMesh>(*this);
|
meshObject::movePoints<fvMesh>(*this);
|
||||||
|
meshObject::movePoints<lduMesh>(*this);
|
||||||
|
|
||||||
return tsweptVols;
|
return tsweptVols;
|
||||||
}
|
}
|
||||||
@ -654,6 +657,7 @@ void Foam::fvMesh::updateMesh(const mapPolyMesh& mpm)
|
|||||||
clearAddressing();
|
clearAddressing();
|
||||||
|
|
||||||
meshObject::updateMesh<fvMesh>(*this, mpm);
|
meshObject::updateMesh<fvMesh>(*this, mpm);
|
||||||
|
meshObject::updateMesh<lduMesh>(*this, mpm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -55,7 +55,7 @@ int yyFlexLexer::yylex()
|
|||||||
// It is called by yylex but is not used as the mechanism to change file.
|
// It is called by yylex but is not used as the mechanism to change file.
|
||||||
// See <<EOF>>
|
// See <<EOF>>
|
||||||
//! \cond dummy
|
//! \cond dummy
|
||||||
#if YY_FLEX_SUBMINOR_VERSION < 34
|
#if YY_FLEX_SUBMINOR_VERSION < 34 || YY_FLEX_SUBMINOR_VERSION > 36
|
||||||
extern "C" int yywrap()
|
extern "C" int yywrap()
|
||||||
#else
|
#else
|
||||||
int yyFlexLexer::yywrap()
|
int yyFlexLexer::yywrap()
|
||||||
|
|||||||
Reference in New Issue
Block a user