00001 subroutine allocate_poisson_solver_test
00002   use phys_constant, only : long
00003   use grid_parameter
00004   use def_metric
00005   use def_matter
00006   use def_vector_x
00007   use def_vector_phi
00008   use make_array_2d
00009   use make_array_3d
00010   implicit none
00011 
00012   call alloc_array2d(rs, 0, ntf, 0, npf)
00013   call alloc_array3d(emdg, 0, nrg, 0, ntg, 0, npg)
00014   call alloc_array3d(emd, 0, nrf, 0, ntf, 0, npf)
00015   call alloc_array3d(psi, 0, nrg, 0, ntg, 0, npg)
00016   call alloc_array3d(alph, 0, nrg, 0, ntg, 0, npg)
00017   call allocate_vector_x
00018   call allocate_vector_phi
00019 
00020 end subroutine allocate_poisson_solver_test