/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2015 OpenFOAM Foundation
Copyright (C) 2020 OpenCFD Ltd.
-------------------------------------------------------------------------------
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 3 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, see .
Class
Foam::tabulated6DoFAcceleration
Description
Tabulated 6DoF acceleration.
Obtained by interpolating tabulated data for linear acceleration,
angular velocity and angular acceleration.
SourceFiles
tabulated6DoFAcceleration.C
\*---------------------------------------------------------------------------*/
#ifndef tabulated6DoFAcceleration_H
#define tabulated6DoFAcceleration_H
#include "primitiveFields.H"
#include "Vector2D.H"
#include "Time.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class tabulated6DoFAcceleration Declaration
\*---------------------------------------------------------------------------*/
class tabulated6DoFAcceleration
{
// Private Data
//- Reference to Time
const Time& time_;
//- Dictionary
dictionary accelerationCoeffs_;
//- Time data file name read from dictionary
fileName timeDataFileName_;
//- Type used to read in the acceleration "vectors"
typedef Vector accelerationVectors;
//- Field of times
scalarField times_;
//- Field of acceleration "vectors"
Field values_;
public:
//- Runtime type information
TypeName("tabulated6DoFAcceleration");
// Constructors
//- Construct from components
tabulated6DoFAcceleration
(
const dictionary& accelerationCoeffs,
const Time& runTime
);
//- No copy construct
tabulated6DoFAcceleration(const tabulated6DoFAcceleration&) = delete;
//- No copy assignment
void operator=(const tabulated6DoFAcceleration&) = delete;
//- Destructor
virtual ~tabulated6DoFAcceleration() = default;
// Member Functions
//- Return the solid-body accelerations
virtual Vector acceleration() const;
//- Update properties from given dictionary
virtual bool read(const dictionary& accelerationCoeffs);
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //