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 |
|||
real(kind=wp), | public, | allocatable | :: | rcov(:) |
Covalent radii |
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 dexp counting function
Double-exponential counting function for coordination number contributions.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dexp_ncoord_type), | intent(in) | :: | self |
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 dexp counting function
Derivative of the double-exponential counting function w.r.t. the distance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(dexp_ncoord_type), | intent(in) | :: | self |
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, extends(ncoord_type) :: dexp_ncoord_type !> Covalent radii real(wp), allocatable :: rcov(:) contains !> Evaluates the dexp counting function procedure :: ncoord_count !> Evaluates the derivative of the dexp counting function procedure :: ncoord_dcount end type dexp_ncoord_type