DLVO
The DLVO (Derjaguin-Landau-Verwey-Overbeek) potential combines electrostatic repulsion with van der Waals attraction to model colloidal interactions in aqueous solutions. It is the sum of a repulsive electrostatic term (Debye-Hückel) and an attractive van der Waals term (typically modeled as a Lennard-Jones potential).
where:
\(U_{DH}\) is the Debye-Hückel potential
\(U_{LJ}\) is the Lennard-Jones potential
The Debye-Hückel term is given by:
The Lennard-Jones term can be any of the three types (Type1, Type2, or Type3) as described in the LennardJones potential documentation.
type:
NonBonded,DLVOType1(orDLVOType2orDLVOType3)parameters:
cutOffNPFactor:real: Interaction range for LJ as a multiple of sigmacutOffDHFactor:real: Interaction range for DH as a multiple of the Debye lengthdielectricConstant:real: Relative permittivity of the medium \(\epsilon_r\)debyeLength:real: Debye length \(\lambda_D\) \([distance]\)
data:
name_i:string: Type of particle iname_j:string: Type of particle jepsilon:real: LJ potential well depth \([energy]\)sigma:real: LJ zero-potential distance \([distance]\)
Example:
"dlvo":{
"type":["NonBonded","DLVOType1"],
"parameters":{
"cutOffNPFactor":2.5,
"cutOffDHFactor":3.0,
"dielectricConstant":78.5,
"debyeLength":1.0,
"condition":"all"
},
"labels":["name_i", "name_j", "epsilon", "sigma"],
"data":[
["A", "A", 1.0, 1.0],
["A", "B", 1.2, 0.9],
["B", "B", 0.8, 1.1]
]
}
Note
The DLVO potential uses the charge and radius information stored in the particle data. Ensure that these properties are properly set for each particle before using this potential.
Warning
The DLVO theory has limitations and may not accurately describe all colloidal systems, especially at short distances or in highly concentrated solutions.