00001
00002
00003 module weight_midpoint_fluid_sphcoord
00004 use phys_constant, only : long
00005 implicit none
00006
00007 real(long), pointer :: hwrtpg_fc(:,:,:)
00008 real(long), pointer :: hwtpg_fc(:,:)
00009
00010 contains
00011
00012 subroutine allocate_weight_midpoint_fluid_sphcoord
00013 use grid_parameter, only : nrf, ntg, npg
00014 use make_array_2d
00015 use make_array_3d
00016 implicit none
00017 call alloc_array3d(hwrtpg_fc,1,nrf,1,ntg,1,npg)
00018 call alloc_array2d(hwtpg_fc,1,ntg,1,npg)
00019 end subroutine allocate_weight_midpoint_fluid_sphcoord
00020
00021 end module weight_midpoint_fluid_sphcoord