Abstract base class for coordination number evaluator
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=wp), | public | :: | cut | = | -1.0_wp |
Cutoff for the maximum coordination number (negative value, no cutoff) |
|
real(kind=wp), | public | :: | cutoff |
Radial cutoff for the coordination number |
|||
real(kind=wp), | public | :: | directed_factor |
Factor determining whether the CN is evaluated with direction if +1 the CN contribution is added equally to both partners if -1 (i.e. with the EN-dep.) it is added to one and subtracted from the other |
|||
real(kind=wp), | public | :: | kcn |
Steepness of counting function |
Add CN derivative of an arbitrary function
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | intent(in) | :: | trans(:,:) |
Lattice points |
||
real(kind=wp), | intent(in) | :: | dEdcn(:) |
Derivative of expression with respect to the coordination number |
||
real(kind=wp), | intent(inout) | :: | gradient(:,:) |
Derivative of the CN with respect to the Cartesian coordinates |
||
real(kind=wp), | intent(inout) | :: | sigma(:,:) |
Derivative of the CN with respect to strain deformations |
Obtains lattice information and calls get_coordination number
Wrapper for CN using the CN cutoff for the lattice
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | intent(out) | :: | cn(:) |
Error function coordination number. |
||
real(kind=wp), | intent(out), | optional | :: | dcndr(:,:,:) |
Derivative of the CN with respect to the Cartesian coordinates. |
|
real(kind=wp), | intent(out), | optional | :: | dcndL(:,:,:) |
Derivative of the CN with respect to strain deformations. |
Decides whether the energy or gradient is calculated
Geometric fractional coordination number
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | intent(in) | :: | trans(:,:) |
Lattice points |
||
real(kind=wp), | intent(out) | :: | cn(:) |
Error function coordination number. |
||
real(kind=wp), | intent(out), | optional | :: | dcndr(:,:,:) |
Derivative of the CN with respect to the Cartesian coordinates. |
|
real(kind=wp), | intent(out), | optional | :: | dcndL(:,:,:) |
Derivative of the CN with respect to strain deformations. |
Evaluates pairwise electronegativity factor
Evaluates pairwise electronegativity factor if non applies
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
integer, | intent(in) | :: | izp |
Atom i index |
||
integer, | intent(in) | :: | jzp |
Atom j index |
Evaluates the CN from the specific counting function
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | intent(in) | :: | trans(:,:) |
Lattice points |
||
real(kind=wp), | intent(out) | :: | cn(:) |
Error function coordination number. |
Evaluates the counting function (exp, dexp, erf, …)
Abstract counting function
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Instance of coordination number container |
||
integer, | intent(in) | :: | izp |
Atom i index |
||
integer, | intent(in) | :: | jzp |
Atom j index |
||
real(kind=wp), | intent(in) | :: | r |
Current distance. |
Evaluates derivative of the CN from the specific counting function
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | intent(in) | :: | trans(:,:) |
Lattice points |
||
real(kind=wp), | intent(out) | :: | cn(:) |
Error function coordination number. |
||
real(kind=wp), | intent(out) | :: | dcndr(:,:,:) |
Derivative of the CN with respect to the Cartesian coordinates. |
||
real(kind=wp), | intent(out) | :: | dcndL(:,:,:) |
Derivative of the CN with respect to strain deformations. |
Evaluates the derivative of the counting function (exp, dexp, erf, …)
Abstract derivative of the counting function w.r.t. the distance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(ncoord_type), | intent(in) | :: | self |
Instance of coordination number container |
||
integer, | intent(in) | :: | izp |
Atom i index |
||
integer, | intent(in) | :: | jzp |
Atom j index |
||
real(kind=wp), | intent(in) | :: | r |
Current distance. |
type, public, abstract :: ncoord_type !> Radial cutoff for the coordination number real(wp) :: cutoff !> Steepness of counting function real(wp) :: kcn !> Factor determining whether the CN is evaluated with direction !> if +1 the CN contribution is added equally to both partners !> if -1 (i.e. with the EN-dep.) it is added to one and subtracted from the other real(wp) :: directed_factor !> Cutoff for the maximum coordination number (negative value, no cutoff) real(wp) :: cut = -1.0_wp contains !> Obtains lattice information and calls get_coordination number procedure :: get_cn !> Decides whether the energy or gradient is calculated procedure :: get_coordination_number !> Evaluates the CN from the specific counting function procedure :: ncoord !> Evaluates derivative of the CN from the specific counting function procedure :: ncoord_d !> Evaluates pairwise electronegativity factor procedure :: get_en_factor !> Add CN derivative of an arbitrary function procedure :: add_coordination_number_derivs !> Evaluates the counting function (exp, dexp, erf, ...) procedure(ncoord_count), deferred :: ncoord_count !> Evaluates the derivative of the counting function (exp, dexp, erf, ...) procedure(ncoord_dcount), deferred :: ncoord_dcount end type ncoord_type