00001 subroutine reset_metric_CF
00002 use grid_parameter, only : nrg, ntg, npg, ntgxy, npgxzm
00003 use def_metric, only : bvxd, bvzd
00004 use def_bh_parameter, only : bh_bctype, bh_sptype
00005 implicit none
00006
00007 if (bh_bctype.eq.'TU') then
00008 if (bh_sptype.eq.'Zp'.or.bh_sptype.eq.'Zm') then
00009
00010 bvxd(0:nrg,0:ntg,0) = 0.0d0
00011 bvxd(0:nrg,0:ntg,npgxzm) = 0.0d0
00012 bvxd(0:nrg,0:ntg,npg) = 0.0d0
00013 bvxd(0:nrg, 0,0:npg) = 0.0d0
00014 bvxd(0:nrg,ntg,0:npg) = 0.0d0
00015
00016 bvzd(0:nrg,0:ntg,0) = 0.0d0
00017 bvzd(0:nrg,0:ntg,npgxzm) = 0.0d0
00018 bvzd(0:nrg,0:ntg,npg) = 0.0d0
00019 bvzd(0:nrg, 0,0:npg) = 0.0d0
00020 bvzd(0:nrg,ntg,0:npg) = 0.0d0
00021 end if
00022 end if
00023
00024 if (bh_sptype.eq.'Zp'.or.bh_sptype.eq.'Zm') then
00025
00026 bvzd(0:nrg,ntgxy,0:npg) = 0.0d0
00027 end if
00028
00029 end subroutine reset_metric_CF