00001 subroutine allocate_SEM_tensor
00002 use phys_constant, only : long
00003 use grid_parameter, only : nrf, ntf, npf
00004 use def_SEM_tensor
00005 use make_array_3d
00006 use make_array_4d
00007 use make_array_5d
00008 implicit none
00009
00010 call alloc_array3d(rhoH, 0, nrf, 0, ntf, 0, npf)
00011 call alloc_array4d(jmd, 0, nrf, 0, ntf, 0, npf, 1, 3)
00012 call alloc_array4d(jmu, 0, nrf, 0, ntf, 0, npf, 1, 3)
00013 call alloc_array5d(smijd, 0, nrf, 0, ntf, 0, npf, 1, 3, 1, 3)
00014 call alloc_array5d(smiju, 0, nrf, 0, ntf, 0, npf, 1, 3, 1, 3)
00015 call alloc_array3d(trsm, 0, nrf, 0, ntf, 0, npf)
00016
00017
00018
00019
00020
00021
00022
00023
00024 end subroutine allocate_SEM_tensor