Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / solvers / solidMechanics / deprecatedSolvers / materialModels / rheologyModel / rheologyLaws / PronyViscoelastic / PronyViscoelastic.H
blob2edee59caf0524316293ca6971260ef294809db9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     PronyViscoelastic
27 Description
28     Linear elastic rheology
30 SourceFiles
31     PronyViscoelastic.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef PronyViscoelastic_H
36 #define PronyViscoelastic_H
38 #include "rheologyLaw.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                          Class PronyViscoelastic Declaration
47 \*---------------------------------------------------------------------------*/
49 class PronyViscoelastic
51     public rheologyLaw
53     // Private data
55         //- Density
56         dimensionedScalar rho_;
58         //- Linear spring constants of generalised Maxwell model
59         Field<scalar> k_;
61         //- Dimension set for k field
62         dimensionSet kDimensions_;
64         //- Relaxation times of generalised Maxwell model
65         Field<scalar> tau_;
67         //- Dimension set for tau field
68         dimensionSet tauDimensions_;
70         //- Poisson's ratio
71         dimensionedScalar nu_;
73     // Private Member Functions
75         //- Disallow default bitwise copy construct
76         PronyViscoelastic(const PronyViscoelastic&);
78         //- Disallow default bitwise assignment
79         void operator=(const PronyViscoelastic&);
82 public:
84     //- Runtime type information
85     TypeName("PronyViscoelastic");
87     // Static data members
90     // Constructors
92         //- Construct from dictionary
93         PronyViscoelastic
94         (
95             const word& name,
96             const volSymmTensorField& sigma,
97             const dictionary& dict
98         );
101     // Destructor
103         virtual ~PronyViscoelastic();
106     // Member Functions
108         //- Return density
109         virtual tmp<volScalarField> rho() const
110         {
111             return rho(0);
112         }
114         //- Return modulus of elasticity
115         virtual tmp<volScalarField> E() const
116         {
117             return E(0);
118         }
120         //- Return Poisson's ratio
121         virtual tmp<volScalarField> nu() const
122         {
123             return nu(0);
124         }
126         //- Return density
127         virtual tmp<volScalarField> rho(scalar t) const;
129         //- Return modulus of elasticity
130         virtual tmp<volScalarField> E(scalar t) const;
132         //- Return Poisson's ratio
133         virtual tmp<volScalarField> nu(scalar t) const;
135         //- Return creep compliance
136         virtual tmp<volScalarField> J(scalar t) const;
138         //- Correct the rheological model
139         virtual void correct()
140         {}
144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
146 } // End namespace Foam
148 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
150 #endif
152 // ************************************************************************* //