The motion of the bodies is integrated using the rigidBodyDynamics library with joints, restraints and external forces. The mesh-motion is interpolated using septernion averaging. This development is sponsored by Carnegie Wave Energy Ltd.
55 lines
1.9 KiB
C
55 lines
1.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2016 OpenFOAM Foundation
|
|
\\/ 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 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 <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "rigidBodyModelState.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::RBD::rigidBodyModelState::rigidBodyModelState
|
|
(
|
|
const rigidBodyModel& model
|
|
)
|
|
:
|
|
q_(model.nDoF(), Zero),
|
|
qDot_(model.nDoF(), Zero),
|
|
qDdot_(model.nDoF(), Zero),
|
|
deltaT_(0)
|
|
{}
|
|
|
|
|
|
Foam::RBD::rigidBodyModelState::rigidBodyModelState
|
|
(
|
|
const rigidBodyModel& model,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
q_(dict.lookupOrDefault("q", scalarField(model.nDoF(), Zero))),
|
|
qDot_(dict.lookupOrDefault("qDot", scalarField(model.nDoF(), Zero))),
|
|
qDdot_(dict.lookupOrDefault("qDdot", scalarField(model.nDoF(), Zero))),
|
|
deltaT_(dict.lookupOrDefault<scalar>("deltaT", 0))
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|