1 /*---------------------------------------------------------------------------*\
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 -------------------------------------------------------------------------------
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/>.
25 Foam::pairPotentials::maitlandSmith
28 Foam::pairPotentials::maitlandSmith
32 @ARTICLE{MA_Maitland_Smith,
33 author = {{Maitland}, G.~C. and {Smith}, E.~B.},
34 title = {A simplified representation of intermolecular potential energy},
35 journal = {Chemical Physics Letters},
40 adsurl = {http://adsabs.harvard.edu/abs/1973CPL....22..443M},
41 adsnote = {Provided by the SAO/NASA Astrophysics Data System}
45 Parameters for other monoatomics from:
47 @BOOK{MD_Maitland_Rigby_Smith_Wakeham,
48 AUTHOR = {Geoffrey C. Maitland and Maurice Rigby and E. Brian Smith and William A. Wakeham},
49 TITLE = {Intermolecular Forces: Their Origin and Determination},
50 PUBLISHER = {Oxford University Press},
58 \*---------------------------------------------------------------------------*/
60 #ifndef maitlandSmith_H
61 #define maitlandSmith_H
63 #include "pairPotential.H"
65 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 namespace pairPotentials
73 /*---------------------------------------------------------------------------*\
74 Class maitlandSmith Declaration
75 \*---------------------------------------------------------------------------*/
83 dictionary maitlandSmithCoeffs_;
93 //- Runtime type information
94 TypeName("maitlandSmith");
99 //- Construct from components
103 const dictionary& pairPotentialProperties
115 scalar unscaledEnergy(const scalar r) const;
118 bool read(const dictionary& pairPotentialProperties);
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 } // End namespace pairPotentials
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 // ************************************************************************* //