2010-05-12 13:27:55 +00:00
|
|
|
/*--------------------------------*- C++ -*----------------------------------*\
|
|
|
|
| ========= | |
|
2013-12-11 16:09:41 +00:00
|
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
2016-06-20 15:00:40 +00:00
|
|
|
| \\ / O peration | Version: 4.0 |
|
2015-05-17 13:55:59 +00:00
|
|
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
2010-11-24 20:48:09 +00:00
|
|
|
| \\/ M anipulation | |
|
2010-05-12 13:27:55 +00:00
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
|
|
{
|
|
|
|
version 2.0;
|
|
|
|
format ascii;
|
|
|
|
class dictionary;
|
|
|
|
object potentials;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
// Subdictionaries specifying types of intermolecular potential.
|
|
|
|
// Sub-sub dictionaries specify the potentials themselves.
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Removal order
|
|
|
|
|
|
|
|
// This is the order in which to remove overlapping pairs if more than one
|
|
|
|
// type of molecule is present. The most valuable molecule type is at the
|
|
|
|
// right hand end, the molecule that will be removed 1st is 1st on the list.
|
|
|
|
// Not all types need to be present, a molecule that is not present is
|
|
|
|
// automatically less valuable than any on the list. For molecules of the
|
|
|
|
// same type there is no control over which is removed.
|
|
|
|
|
2010-09-23 13:04:10 +00:00
|
|
|
removalOrder ( Ar );
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Potential Energy Limit
|
|
|
|
|
|
|
|
// Maximum permissible pair energy allowed at startup. Used to remove
|
|
|
|
// overlapping molecules created during preprocessing.
|
|
|
|
|
|
|
|
potentialEnergyLimit 1e-18;
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Pair potentials
|
|
|
|
|
|
|
|
// If there are r different type of molecules, and a pair force is required
|
|
|
|
// between all combinations, then there are C = r(r+1)/2 combinations,
|
|
|
|
// i.e. for r = {1,2,3,4}, C = {1,3,6,10} (sum of triangular numbers).
|
|
|
|
|
|
|
|
// Pair potentials are specified by the combinaition of their ids,
|
|
|
|
// for MOLA and MOLB, "MOLA-MOLB" OR "MOLB-MOLA" is acceptable
|
2010-09-23 13:04:10 +00:00
|
|
|
// (strictly OR, both or neither is an error)
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
pair
|
|
|
|
{
|
|
|
|
Ar-Ar
|
|
|
|
{
|
|
|
|
pairPotential maitlandSmith;
|
|
|
|
rCut 1.0e-9;
|
|
|
|
rMin 0.15e-9;
|
|
|
|
dr 5e-14;
|
|
|
|
maitlandSmithCoeffs
|
|
|
|
{
|
|
|
|
m 13.0;
|
|
|
|
gamma 7.5;
|
|
|
|
rm 0.3756e-9;
|
|
|
|
epsilon 1.990108438e-21;
|
|
|
|
}
|
|
|
|
energyScalingFunction doubleSigmoid;
|
|
|
|
doubleSigmoidCoeffs
|
|
|
|
{
|
|
|
|
shift1 0.9e-9;
|
|
|
|
scale1 0.3e11;
|
|
|
|
shift2 0.97e-9;
|
|
|
|
scale2 1.2e11;
|
|
|
|
}
|
|
|
|
writeTables yes;
|
|
|
|
}
|
|
|
|
|
2010-09-23 13:04:10 +00:00
|
|
|
electrostatic
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-09-23 13:04:10 +00:00
|
|
|
pairPotential dampedCoulomb;
|
|
|
|
rCut 1.0e-9;
|
2010-05-12 13:27:55 +00:00
|
|
|
rMin 0.1e-9;
|
2010-09-23 13:04:10 +00:00
|
|
|
dr 2e-12;
|
|
|
|
dampedCoulombCoeffs
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-09-23 13:04:10 +00:00
|
|
|
alpha 2e9;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
energyScalingFunction shiftedForce;
|
|
|
|
writeTables yes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Tethering Potentials
|
|
|
|
|
|
|
|
tether
|
|
|
|
{
|
2010-09-23 13:04:10 +00:00
|
|
|
O
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
tetherPotential restrainedHarmonicSpring;
|
|
|
|
restrainedHarmonicSpringCoeffs
|
|
|
|
{
|
2010-09-23 13:04:10 +00:00
|
|
|
springConstant 0.277;
|
2010-05-12 13:27:55 +00:00
|
|
|
rR 1.2e-9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// External Forces
|
|
|
|
|
|
|
|
// Bulk external forces (namely gravity) will be specified as forces rather
|
|
|
|
// than potentials to allow their direction to be controlled.
|
|
|
|
|
|
|
|
external
|
|
|
|
{
|
|
|
|
gravity (0 0 0);
|
|
|
|
}
|
2010-09-23 13:04:10 +00:00
|
|
|
|
2016-06-21 12:50:08 +00:00
|
|
|
|
2010-09-23 13:04:10 +00:00
|
|
|
// ************************************************************************* //
|