00001 subroutine allocate_poisson_solver_test_mpt
00002   use phys_constant, only : nmpt
00003   use grid_parameter, only : ntf, nrf, npf, nrg, ntg, npg
00004   use def_metric_mpt
00005   use def_matter_mpt
00006   use make_array_3d
00007   use make_array_4d
00008   implicit none
00009 
00010   call alloc_array3d(rs_, 0, ntf, 0, npf, 1, nmpt)
00011   call alloc_array4d(emd_, 0, nrf, 0, ntf, 0, npf, 1, nmpt)
00012   call alloc_array4d(emdg_, 0, nrg, 0, ntg, 0, npg, 1, nmpt)
00013   call alloc_array4d(psi_, 0, nrg, 0, ntg, 0, npg, 1, nmpt)
00014   call alloc_array4d(alph_, 0, nrg, 0, ntg, 0, npg, 1, nmpt)
00015 
00016 end subroutine allocate_poisson_solver_test_mpt