Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(exp_ncoord_type), | intent(out) | :: | self |
Coordination number container |
||
type(structure_type), | intent(in) | :: | mol |
Molecular structure data |
||
real(kind=wp), | optional | :: | kcn |
Steepness of counting function |
||
real(kind=wp), | intent(in), | optional | :: | cutoff |
Real space cutoff |
|
real(kind=wp), | intent(in), | optional | :: | rcov(:) |
Covalent radii |
|
real(kind=wp), | intent(in), | optional | :: | cut |
Cutoff for the maximum coordination number |
subroutine new_exp_ncoord(self, mol, kcn, cutoff, rcov, cut) !> Coordination number container type(exp_ncoord_type), intent(out) :: self !> Molecular structure data type(structure_type), intent(in) :: mol !> Steepness of counting function real(wp), optional :: kcn !> Real space cutoff real(wp), intent(in), optional :: cutoff !> Covalent radii real(wp), intent(in), optional :: rcov(:) !> Cutoff for the maximum coordination number real(wp), intent(in), optional :: cut if(present(kcn)) then self%kcn = kcn else self%kcn = default_kcn end if if (present(cutoff)) then self%cutoff = cutoff else self%cutoff = default_cutoff end if allocate(self%rcov(mol%nid)) if (present(rcov)) then self%rcov(:) = rcov else self%rcov(:) = get_covalent_rad(mol%num) end if self%directed_factor = 1.0_wp if (present(cut)) then self%cut = cut else ! Negative value deactivates the cutoff self%cut = -1.0_wp end if end subroutine new_exp_ncoord