166 lines
4.1 KiB
C
166 lines
4.1 KiB
C
|
/*---------------------------------------------------------------------------*\
|
||
|
========= |
|
||
|
\\ / 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
|
||
|
cohesiveLaw
|
||
|
|
||
|
Description
|
||
|
Virtual base class for cohesive zone model.
|
||
|
|
||
|
SourceFiles
|
||
|
cohesiveLaw.C
|
||
|
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifndef cohesiveLaw_H
|
||
|
#define cohesiveLaw_H
|
||
|
|
||
|
#include "IOdictionary.H"
|
||
|
#include "autoPtr.H"
|
||
|
#include "runTimeSelectionTables.H"
|
||
|
#include "dimensionedTypes.H"
|
||
|
#include "tmp.H"
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
namespace Foam
|
||
|
{
|
||
|
|
||
|
/*---------------------------------------------------------------------------*\
|
||
|
Class cohesiveLaw Declaration
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
class cohesiveLaw
|
||
|
:
|
||
|
public refCount
|
||
|
{
|
||
|
|
||
|
private:
|
||
|
|
||
|
// Private data
|
||
|
|
||
|
//- Cohesive law coefficients
|
||
|
dictionary cohesiveLawCoeffs_;
|
||
|
|
||
|
//- Fracture energy
|
||
|
dimensionedScalar GIc_;
|
||
|
|
||
|
//- Maximum cohesive strength
|
||
|
dimensionedScalar sigmaMax_;
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
//- Runtime type information
|
||
|
TypeName("cohesiveLaw");
|
||
|
|
||
|
|
||
|
// Declare run-time constructor selection tables
|
||
|
|
||
|
declareRunTimeSelectionTable
|
||
|
(
|
||
|
autoPtr,
|
||
|
cohesiveLaw,
|
||
|
dictionary,
|
||
|
(
|
||
|
const word& cohesiveLawName,
|
||
|
const dictionary& dict
|
||
|
),
|
||
|
(cohesiveLawName, dict)
|
||
|
);
|
||
|
|
||
|
|
||
|
// Selectors
|
||
|
|
||
|
//- Select null constructed
|
||
|
static autoPtr<cohesiveLaw> New
|
||
|
(
|
||
|
const word& cohesiveLawName,
|
||
|
const dictionary& dict
|
||
|
);
|
||
|
|
||
|
|
||
|
// Constructors
|
||
|
|
||
|
//- Construct from components
|
||
|
cohesiveLaw
|
||
|
(
|
||
|
const word& cohesiveLawName,
|
||
|
const dictionary& dict
|
||
|
);
|
||
|
|
||
|
//- Construct as copy
|
||
|
cohesiveLaw(const cohesiveLaw&);
|
||
|
|
||
|
|
||
|
//- Construct and return a clone
|
||
|
virtual autoPtr<cohesiveLaw> clone() const = 0;
|
||
|
|
||
|
|
||
|
// Destructor
|
||
|
|
||
|
virtual ~cohesiveLaw();
|
||
|
|
||
|
|
||
|
// Member Functions
|
||
|
|
||
|
//- Return cohesive law coefficients
|
||
|
const dictionary& cohesiveLawCoeffs() const
|
||
|
{
|
||
|
return cohesiveLawCoeffs_;
|
||
|
}
|
||
|
|
||
|
//- Return reference to fracture energy
|
||
|
const dimensionedScalar& GIc() const
|
||
|
{
|
||
|
return GIc_;
|
||
|
}
|
||
|
|
||
|
//- Return reference to maximum cohesive strength
|
||
|
const dimensionedScalar& sigmaMax() const
|
||
|
{
|
||
|
return sigmaMax_;
|
||
|
}
|
||
|
|
||
|
//- Return reference to critical separation distance
|
||
|
virtual const dimensionedScalar& deltaC() const = 0;
|
||
|
|
||
|
//- Return current holding traction
|
||
|
virtual scalar traction(scalar delta) const = 0;
|
||
|
|
||
|
//- Write dictionary
|
||
|
void writeDict(Ostream& os) const;
|
||
|
};
|
||
|
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
} // End namespace Foam
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// ************************************************************************* //
|