Updated references

See also http://www.openfoam.org/mantisbt/view.php?id=2036
This commit is contained in:
Henry Weller
2016-04-17 15:29:51 +01:00
parent 2797ec2d27
commit 2e990f19d8
7 changed files with 28 additions and 44 deletions

View File

@ -319,7 +319,7 @@ Foam::scalar Foam::tetrahedron<Point, PointRef>::barycentric
List<scalar>& bary List<scalar>& bary
) const ) const
{ {
// From: // Reference:
// http://en.wikipedia.org/wiki/Barycentric_coordinate_system_(mathematics) // http://en.wikipedia.org/wiki/Barycentric_coordinate_system_(mathematics)
vector e0(a_ - d_); vector e0(a_ - d_);

View File

@ -270,7 +270,7 @@ Foam::scalar Foam::triangle<Point, PointRef>::barycentric
List<scalar>& bary List<scalar>& bary
) const ) const
{ {
// From: // Reference:
// Real-time collision detection, Christer Ericson, 2005, p47-48 // Real-time collision detection, Christer Ericson, 2005, p47-48
vector v0 = b_ - a_; vector v0 = b_ - a_;

View File

@ -140,7 +140,7 @@ public:
// centres separated by a distance rAB. Assumes rAB < (rA + rB). // centres separated by a distance rAB. Assumes rAB < (rA + rB).
inline scalar overlapArea(scalar rA, scalar rB, scalar rAB) const inline scalar overlapArea(scalar rA, scalar rB, scalar rAB) const
{ {
// From: // Reference:
// http://mathworld.wolfram.com/Sphere-SphereIntersection.html // http://mathworld.wolfram.com/Sphere-SphereIntersection.html
return return
mathematical::pi/4.0 mathematical::pi/4.0

View File

@ -147,7 +147,7 @@ Foam::scalar Foam::distribution::mean() const
Foam::scalar Foam::distribution::median() Foam::scalar Foam::distribution::median()
{ {
// From: // Reference:
// http://mathworld.wolfram.com/StatisticalMedian.html // http://mathworld.wolfram.com/StatisticalMedian.html
// The statistical median is the value of the distribution variable // The statistical median is the value of the distribution variable
// where the cumulative distribution = 0.5. // where the cumulative distribution = 0.5.

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -25,23 +25,12 @@ Class
Foam::pairPotentials::azizChen Foam::pairPotentials::azizChen
Description Description
Foam::pairPotentials::azizChen
From: Reference:
\verbatim \verbatim
\article{MA_Aziz_Chen, Aziz, R. A. & Chen, H.H. (1977).
author = {R. A. Aziz and H. H. Chen}, An Accurate Intermolecular Potential for Argon.
collaboration = {}, Journal of Chemical Physics, Vol. 67, No. 12, p. 5179.
title = {An accurate intermolecular potential for argon},
publisher = {AIP},
year = {1977},
journal = {The Journal of Chemical Physics},
volume = {67},
number = {12},
pages = {5719-5726},
url = {http://link.aip.org/link/?JCP/67/5719/1},
doi = {10.1063/1.434827}
}
\endverbatim \endverbatim
SourceFiles SourceFiles

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -25,33 +25,19 @@ Class
Foam::pairPotentials::maitlandSmith Foam::pairPotentials::maitlandSmith
Description Description
Foam::pairPotentials::maitlandSmith
From: Reference:
\verbatim \verbatim
@ARTICLE{MA_Maitland_Smith, Maitland, G. C., & Smith, E. B. (1973).
author = {{Maitland}, G.~C. and {Smith}, E.~B.}, A simplified representation of intermolecular potential energy.
title = {A simplified representation of Chemical Physics Letters, 22(3), 443-446.
intermolecular potential energy},
journal = {Chemical Physics Letters},
year = 1973,
month = oct,
volume = 22,
pages = {443-446},
adsurl = {http://adsabs.harvard.edu/abs/1973CPL....22..443M},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
\endverbatim \endverbatim
Parameters for other monoatomics from: Parameters for other monoatomics from:
\verbatim \verbatim
@BOOK{MD_Maitland_Rigby_Smith_Wakeham, Maitland, G. C., Rigby, M., Smith, E., Wakeham, W. (1981).
AUTHOR = {Geoffrey C. Maitland and Maurice Rigby and Intermolecular forces: Their origin and determination.
E. Brian Smith and William A. Wakeham}, Oxford: Clarendon Press.
TITLE = {Intermolecular Forces: Their Origin and Determination},
PUBLISHER = {Oxford University Press},
YEAR = {1981}
}
\endverbatim \endverbatim
SourceFiles SourceFiles

View File

@ -25,7 +25,16 @@ Class
Foam::BrownianMotionForce Foam::BrownianMotionForce
Description Description
Calculates particle Brownian motion force Calculates particle Brownian motion force.
Reference:
\verbatim
Li, A., & Ahmadi, G. (1992).
Dispersion and deposition of spherical particles from point sources
in a turbulent channel flow.
Aerosol science and technology,
16(4), 209-226.
\endverbatim
SourceFiles SourceFiles
BrownianMotionForceI.H BrownianMotionForceI.H
@ -129,7 +138,7 @@ public:
//- Cache fields //- Cache fields
virtual void cacheFields(const bool store); virtual void cacheFields(const bool store);
//- Calculate the non-coupled force //- Calculate the coupled force
virtual forceSuSp calcCoupled virtual forceSuSp calcCoupled
( (
const typename CloudType::parcelType& p, const typename CloudType::parcelType& p,