File: fcp_variables.f90

package info (click to toggle)
espresso 6.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 311,040 kB
  • sloc: f90: 447,429; ansic: 52,566; sh: 40,631; xml: 37,561; tcl: 20,077; lisp: 5,923; makefile: 4,502; python: 4,379; perl: 1,219; cpp: 761; fortran: 618; java: 568; awk: 128
file content (30 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
!
! Copyright (C) 2002-2011 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!------------------------------------------------------------------------------!
MODULE fcp_variables
!------------------------------------------------------------------------------!
   !
   USE kinds,      ONLY : DP
   !
   IMPLICIT NONE
   SAVE
   !
   LOGICAL          :: lfcpopt              = .FALSE.
   LOGICAL          :: lfcpdyn              = .FALSE.
   REAL(DP)         :: fcp_mu               = 0.0_DP
   REAL(DP)         :: fcp_mass             = 10000.0_DP
   REAL(DP)         :: fcp_temperature      = 0.0_DP
   CHARACTER(LEN=8) :: fcp_relax            = 'lm'
   REAL(DP)         :: fcp_relax_step       = 0.5_DP
   REAL(DP)         :: fcp_relax_crit       = 0.001_DP
   INTEGER          :: fcp_mdiis_size       = 4
   REAL(DP)         :: fcp_mdiis_step       = 0.2_DP
   REAL(DP)         :: fcp_tot_charge_first = 0.0_DP
   REAL(DP)         :: fcp_tot_charge_last  = 0.0_DP

END MODULE fcp_variables