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/deprecatedSolvers/materialModels/rheologyModel/rheologyModel.H
2018-06-01 18:11:37 +02:00

157 lines
3.9 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | foam-extend: Open Source CFD
\\ / O peration | Version: 4.1
\\ / A nd | Web: http://www.foam-extend.org
\\/ M anipulation | For copyright notice see file Copyright
-------------------------------------------------------------------------------
License
This file is part of foam-extend.
foam-extend 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.
foam-extend 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 foam-extend. If not, see <http://www.gnu.org/licenses/>.
Class
rheologyModel
Description
Material rheology for solids.
SourceFiles
rheologyModel.C
\*---------------------------------------------------------------------------*/
#ifndef rheologyModel_H
#define rheologyModel_H
#include "IOdictionary.H"
#include "typeInfo.H"
#include "runTimeSelectionTables.H"
#include "volFields.H"
#include "tmp.H"
#include "rheologyLaw.H"
#include "Switch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class rheologyModel Declaration
\*---------------------------------------------------------------------------*/
class rheologyModel
:
public IOdictionary
{
// Private data
//- Reference to stress field
const volSymmTensorField& sigma_;
//- Plane stress
Switch planeStress_;
//- Rheology law
autoPtr<rheologyLaw> lawPtr_;
// Private Member Functions
//- Disallow copy construct
rheologyModel(const rheologyModel&);
//- Disallow default bitwise assignment
void operator=(const rheologyModel&);
public:
//- Runtime type information
TypeName("rheologyModel");
// Constructors
//- Construct from dictionary
rheologyModel
(
const volSymmTensorField& sigma
);
// Destructor
virtual ~rheologyModel()
{}
// Member Functions
//- Return true for plane stress
const Switch& planeStress() const
{
return planeStress_;
}
//- Return rheology law
const rheologyLaw& law() const
{
return lawPtr_();
}
//- Return density
tmp<volScalarField> rho() const
{
return lawPtr_->rho();
}
//- Return first Lame's coefficient
tmp<volScalarField> mu() const;
//- Return second Lame's coefficient
tmp<volScalarField> lambda() const;
//- Return threeK
tmp<volScalarField> threeK() const;
//- Return density
tmp<volScalarField> rho(scalar t) const
{
return lawPtr_->rho(t);
}
//- Return first Lame's coefficient
tmp<volScalarField> mu(scalar t) const;
//- Return second Lame's coefficient
tmp<volScalarField> lambda(scalar t) const;
//- Correct the rheological model
void correct();
//- Read rheologyProperties dictionary
virtual bool read();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //