00001 subroutine initial_metric_CF_pBH
00002 use phys_constant, only : long, pi
00003 use grid_parameter, only : nrg, ntg, npg, rgin, ntgxy, npgxzm
00004 use def_metric, only : psi, alph, alps, bvxd, bvyd, bvzd
00005 use def_metric_pBH, only : psi_trpBH, alph_trpBH
00006 implicit none
00007 integer :: irg, itg, ipg
00008
00009 call calc_TrpBH
00010 do ipg = 0, npg
00011 do itg = 0, ntg
00012 psi(0:nrg,itg,ipg) = psi_trpBH(0:nrg)
00013 alph(0:nrg,itg,ipg) = alph_trpBH(0:nrg)
00014 end do
00015 end do
00016 alps(0:nrg,0:ntg,0:npg) = alph(0:nrg,0:ntg,0:npg)*psi(0:nrg,0:ntg,0:npg)
00017 bvxd(0:nrg,0:ntg,0:npg) = 0.0d0
00018 bvyd(0:nrg,0:ntg,0:npg) = 0.0d0
00019 bvzd(0:nrg,0:ntg,0:npg) = 0.0d0
00020
00021 end subroutine initial_metric_CF_pBH