2013-10-14 08:26:40 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2013-10-14 08:26:40 +00:00
|
|
|
\\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / A nd | For copyright notice see file Copyright
|
2013-10-14 08:26:40 +00:00
|
|
|
\\/ M anipulation |
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2013-10-14 08:26:40 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2013-10-14 08:26:40 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2013-10-14 08:26:40 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
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.
|
2013-10-14 08:26:40 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2013-10-14 08:26:40 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
// ************************************************************************* //
|