BraWl
Loading...
Searching...
No Matches
shared_data.f90
Go to the documentation of this file.
1
10
11 use kinds
12 use constants
13
14 implicit none
15
16 save
17
18 ! Random number seed
19 integer(8) :: seed
20
21 ! Arrays that are only used by rank 1
22 real(real64), allocatable, dimension(:) :: av_energies_of_t, &
23 av_c_of_t, &
25 real(real64), allocatable, dimension(:,:,:,:) :: av_rho_of_t
26 real(real64), allocatable, dimension(:,:,:,:,:,:) :: av_order_of_t
27
28 ! Arrays used on all processors
29 ! Indices run (basis, x, y, z)
30 integer(array_int), allocatable, dimension(:,:,:,:) :: config
31 real(real64), allocatable, dimension(:) :: energies_of_t, c_of_t, &
34 real(real64), allocatable, dimension(:,:,:,:,:,:) :: order_of_t
35 real(real64), allocatable, dimension(:,:,:,:) :: rho_of_t
36 real(real64), dimension(:,:,:,:), allocatable :: order
37 real(real64), dimension(:,:,:), allocatable :: v_ex
38 real(real64), allocatable, dimension(:) :: shells
39
40end module shared_data
integer, parameter real64
Longer "double" (64 bit, approx -1.8e308 to 1.8e308 and covering values down to about 2e-308 magnitud...
Definition kinds.f90:59
real(real64), dimension(:), allocatable av_energies_of_t
real(real64), dimension(:), allocatable temperature
real(real64), dimension(:,:,:,:), allocatable av_rho_of_t
real(real64), dimension(:,:,:), allocatable v_ex
real(real64), dimension(:), allocatable acceptance_of_t
integer(array_int), dimension(:,:,:,:), allocatable config
real(real64), dimension(:,:,:,:,:,:), allocatable order_of_t
integer(8) seed
real(real64), dimension(:), allocatable c_of_t
real(real64), dimension(:), allocatable shells
real(real64), dimension(:,:,:,:,:,:), allocatable av_order_of_t
real(real64), dimension(:,:,:,:), allocatable order
real(real64), dimension(:,:,:,:), allocatable rho_of_t
real(real64), dimension(:), allocatable energies_of_t
real(real64), dimension(:), allocatable av_c_of_t
real(real64), dimension(:), allocatable av_acceptance_of_t