00001 subroutine allocate_BNS_CF_spin
00002 use phys_constant, only : long
00003 use grid_parameter
00004 use def_matter
00005 use def_velocity_potential
00006 use def_velocity_rot
00007 use make_array_2d
00008 use make_array_3d
00009 use make_array_4d
00010 implicit none
00011
00012 call alloc_array3d(vep , 0, nrf, 0, ntf, 0, npf)
00013 call alloc_array3d(vepxf, 0, nrf, 0, ntf, 0, npf)
00014 call alloc_array3d(vepyf, 0, nrf, 0, ntf, 0, npf)
00015 call alloc_array3d(vepzf, 0, nrf, 0, ntf, 0, npf)
00016
00017 call alloc_array3d(vepxg, 0, nrg, 0, ntg, 0, npg)
00018 call alloc_array3d(vepyg, 0, nrg, 0, ntg, 0, npg)
00019 call alloc_array3d(vepzg, 0, nrg, 0, ntg, 0, npg)
00020
00021 call alloc_array2d(alm, 0, nlg, 0, nlg)
00022
00023 call alloc_array3d(wxspf, 0, nrf, 0, ntf, 0, npf)
00024 call alloc_array3d(wyspf, 0, nrf, 0, ntf, 0, npf)
00025 call alloc_array3d(wzspf, 0, nrf, 0, ntf, 0, npf)
00026
00027 call alloc_array3d(wxspg, 0, nrg, 0, ntg, 0, npg)
00028 call alloc_array3d(wyspg, 0, nrg, 0, ntg, 0, npg)
00029 call alloc_array3d(wzspg, 0, nrg, 0, ntg, 0, npg)
00030
00031 wxspf=0.0d0; wyspf=0.0d0; wzspf=0.0d0
00032 wxspg=0.0d0; wyspg=0.0d0; wzspg=0.0d0
00033
00034 end subroutine allocate_BNS_CF_spin