This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/solidMechanics/solidModels/interpolation/leastSquaresVolPointInterpolation/leastSquaresVolPointInterpolation.H

136 lines
3.9 KiB
C
Raw Normal View History

2012-09-11 15:42:55 +00:00
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright held by original author
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::leastSquaresVolPointInterpolation
Description
Interpolate volVectorField to mesh points using least squares best fit
planes
SourceFiles
leastSquaresVolPointInterpolation.C
Author
philip.cardiff@ucd.ie
\*---------------------------------------------------------------------------*/
#ifndef leastSquaresVolPointInterpolation_H
#define leastSquaresVolPointInterpolation_H
#include "fvMesh.H"
#include "volFields.H"
#include "pointFields.H"
#include "simpleMatrix.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
class fvMesh;
/*---------------------------------------------------------------------------*\
Class leastSquaresVolPointInterpolation Declaration
\*---------------------------------------------------------------------------*/
class leastSquaresVolPointInterpolation
{
// Private data
//- mesh
const fvMesh& mesh_;
//- A matrix (in Ax=B) for each point
//- A is the same for all components of phi
//- A is a 4x4 for each point
//List<scalarSquareMatrix> A_;
//- B vector for each point
//- each point has a 4 vectors
//List<Field<vector> > B_;
// Private member functions
//- calculate A matrix for each point
//- A is the same for all components of phi
void calcA(List<scalarSquareMatrix>& A) const;
//- calc B source for each point
void calcB(List<Field<vector> >& B, const GeometricField<vector, fvPatchField, volMesh>&) const;
//- Disallow default bitwise copy construct
leastSquaresVolPointInterpolation(const leastSquaresVolPointInterpolation&);
//- Disallow default bitwise assignment
void operator=(const leastSquaresVolPointInterpolation&);
public:
// Declare name of the class and its debug switch
TypeName("leastSquaresVolPointInterpolation");
// Constructors
//- Constructor given fvMesh.
explicit leastSquaresVolPointInterpolation(const fvMesh&);
// Destructor
virtual ~leastSquaresVolPointInterpolation();
// Member functions
// Access
// Edit
// Interpolation functions
//- Interpolate phi internal field and boundary field from volField
//- to pointField using least squares fitted plane
void interpolate
(
const GeometricField<vector, fvPatchField, volMesh>& vf,
GeometricField<vector, pointPatchField, pointMesh>& pf
) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //