/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 3 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, see . \*---------------------------------------------------------------------------*/ #include "azizChen.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace pairPotentials { // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // defineTypeNameAndDebug(azizChen, 0); addToRunTimeSelectionTable ( pairPotential, azizChen, dictionary ); // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // azizChen::azizChen ( const word& name, const dictionary& azizChen ) : pairPotential(name, azizChen), azizChenCoeffs_(azizChen.subDict(typeName + "Coeffs")), epsilon_(azizChenCoeffs_.get("epsilon")), rm_(azizChenCoeffs_.get("rm")), A_(azizChenCoeffs_.get("A")), alpha_(azizChenCoeffs_.get("alpha")), C6_(azizChenCoeffs_.get("C6")), C8_(azizChenCoeffs_.get("C8")), C10_(azizChenCoeffs_.get("C10")), D_(azizChenCoeffs_.get("D")), gamma_(azizChenCoeffs_.get("gamma")) { setLookupTables(); } // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // scalar azizChen::unscaledEnergy(const scalar r) const { scalar x = r/rm_; scalar F = 1.0; if (x < D_) { F = exp(-pow(((D_ / x) - 1.0),2)); } return epsilon_ *( A_ * Foam::pow(x, gamma_)*exp(-alpha_*x) - ( (C6_/ Foam::pow(x, 6)) + (C8_/ Foam::pow(x, 8)) + (C10_/ Foam::pow(x, 10)) ) *F ); } bool azizChen::read(const dictionary& azizChen) { pairPotential::read(azizChen); azizChenCoeffs_ = azizChen.subDict(typeName + "Coeffs"); azizChenCoeffs_.readEntry("epsilon", epsilon_); azizChenCoeffs_.readEntry("rm", rm_); azizChenCoeffs_.readEntry("A", A_); azizChenCoeffs_.readEntry("alpha", alpha_); azizChenCoeffs_.readEntry("C6", C6_); azizChenCoeffs_.readEntry("C8", C8_); azizChenCoeffs_.readEntry("C10", C10_); azizChenCoeffs_.readEntry("D", D_); azizChenCoeffs_.readEntry("gamma", gamma_); return true; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace pairPotentials } // End namespace Foam // ************************************************************************* //