00001 subroutine iteration_peos(iter_count)
00002 use phys_constant, only : long, nnrg, nntg, nnpg
00003 use grid_parameter
00004 use coordinate_grav_r
00005 use coordinate_grav_phi
00006 use coordinate_grav_theta
00007 use weight_midpoint_grav
00008 use make_array_2d
00009 use make_array_3d
00010 use make_array_4d
00011 use def_metric
00012 use def_matter
00013 use def_matter_parameter
00014 use interface_interpo_fl2gr
00015 use interface_poisson_solver
00016 use interface_sourceterm_HaC_peos
00017 use interface_sourceterm_trG_peos
00018 use interface_source_MoC_CF
00019 use interface_sourceterm_MoC_peos
00020 use interface_compute_shift
00021 use interface_compute_alps2alph
00022 use interface_hydrostatic_eq_peos
00023 use interface_calc_surface
00024 use interface_update_grfield
00025 use interface_update_matter
00026 use interface_update_parameter_peos
00027 use interface_update_surface
00028 use interface_error_matter
00029 use interface_error_matter_type2
00030 use interface_error_metric
00031 use interface_error_metric_type0
00032 use interface_error_metric_type2
00033 implicit none
00034 real(long), pointer :: sou(:,:,:), pot(:,:,:), sou2(:,:,:)
00035 real(long), pointer :: potf(:,:,:), emd_bak(:,:,:)
00036 real(long), pointer :: potrs(:,:)
00037 real(long), pointer :: potx(:,:,:), poty(:,:,:), potz(:,:,:)
00038 real(long), pointer :: potx_bak(:,:,:), poty_bak(:,:,:), potz_bak(:,:,:)
00039 real(long), pointer :: souvec(:,:,:,:)
00040 real(long) :: work(0:nnrg,0:nntg,0:nnpg)
00041 real(long) :: error_emd, count
00042 real(long) :: error_psi = 0.0d0, error_alph = 0.0d0, error_tmp = 0.0d0,
00043 error_bvxd = 0.0d0, error_bvyd = 0.0d0, error_bvzd = 0.0d0
00044 real(long) :: error_emd_tmp = 1.0d0, error_metric_tmp = 1.0d0
00045 integer :: iter_count, flag = 0, hydro_iter = 4
00046 integer :: flag_tmp = 0, flag_param = 99,
00047 flag_psi = 0, flag_alph = 0, &
00048 flag_bvxd = 0, flag_bvyd = 0, flag_bvzd = 0
00049 integer :: irf, itf, ipf, irg, itg, ipg, ihy
00050
00051 call alloc_array3d(sou,0,nrg,0,ntg,0,npg)
00052 call alloc_array3d(sou2,0,nrg,0,ntg,0,npg)
00053 call alloc_array3d(potx,0,nrg,0,ntg,0,npg)
00054 call alloc_array3d(poty,0,nrg,0,ntg,0,npg)
00055 call alloc_array3d(potz,0,nrg,0,ntg,0,npg)
00056 call alloc_array3d(pot,0,nrg,0,ntg,0,npg)
00057 call alloc_array3d(potf,0,nrf,0,ntf,0,npf)
00058 call alloc_array3d(emd_bak,0,nrf,0,ntf,0,npf)
00059 call alloc_array3d(potx_bak,0,nrg,0,ntg,0,npg)
00060 call alloc_array3d(poty_bak,0,nrg,0,ntg,0,npg)
00061 call alloc_array3d(potz_bak,0,nrg,0,ntg,0,npg)
00062 call alloc_array2d(potrs,0,ntf,0,npf)
00063 call alloc_array4d(souvec,0,nrg,0,ntg,0,npg,1,3)
00064
00065 iter_count = 0
00066 do
00067 iter_count = iter_count + 1
00068 count = dble(iter_count)
00069 conv_gra = dmin1(conv0_gra,conv_ini*count)
00070 conv_den = dmin1(conv0_den,conv_ini*count)
00071
00072 emdg = 0.0d0
00073 call calc_vector_x_grav(1)
00074 call calc_vector_x_matter(1)
00075 call calc_vector_phi_grav(1)
00076 call calc_vector_phi_matter(1)
00077 call interpo_fl2gr(emd, emdg)
00078 call interpo_gr2fl_metric_CF
00079 call rotation_law
00080 call excurve
00081
00082 call sourceterm_HaC_peos(sou)
00083 call poisson_solver(sou,pot)
00084 pot = pot + 1.0d0
00085 call update_grfield(pot,psi,conv_gra)
00086 call update_parameter_peos(conv_den)
00087
00088
00089 call sourceterm_trG_peos(sou)
00090 call poisson_solver(sou,pot)
00091 pot = pot + 1.0d0
00092 call compute_alps2alph(pot,psi)
00093 call update_grfield(pot,alph,conv_gra)
00094 call update_parameter_peos(conv_den)
00095
00096
00097
00098 call source_MoC_CF(souvec)
00099 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 1)
00100 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00101 call poisson_solver(sou2,potx)
00102 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 2)
00103 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00104 call poisson_solver(sou2,poty)
00105 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 3)
00106 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00107 call poisson_solver(sou2,potz)
00108
00109 work( 0:nrg, 0:ntg, 0:npg) = potx(0:nrg, 0:ntg, 0:npg)
00110 souvec(0:nrg, 0:ntg, 0:npg, 1) = work(0:nrg, 0:ntg, 0:npg)
00111 work( 0:nrg, 0:ntg, 0:npg) = poty(0:nrg, 0:ntg, 0:npg)
00112 souvec(0:nrg, 0:ntg, 0:npg, 2) = work(0:nrg, 0:ntg, 0:npg)
00113 work( 0:nrg, 0:ntg, 0:npg) = potz(0:nrg, 0:ntg, 0:npg)
00114 souvec(0:nrg, 0:ntg, 0:npg, 3) = work(0:nrg, 0:ntg, 0:npg)
00115
00116 potx_bak(0:nrg,0:ntg,0:npg) = bvxd(0:nrg,0:ntg,0:npg)
00117 poty_bak(0:nrg,0:ntg,0:npg) = bvyd(0:nrg,0:ntg,0:npg)
00118 potz_bak(0:nrg,0:ntg,0:npg) = bvzd(0:nrg,0:ntg,0:npg)
00119 call update_grfield(potx,bvxd,conv_gra)
00120 call update_grfield(poty,bvyd,conv_gra)
00121 call update_grfield(potz,bvzd,conv_gra)
00122 call update_parameter_peos(conv_den)
00123
00124 call error_metric_type2(bvxd,potx_bak,error_tmp,flag_tmp,'ns')
00125 flag_bvxd = max ( flag_bvxd, flag_tmp)
00126 error_bvxd = dmax1(error_bvxd,error_tmp)
00127 call error_metric_type2(bvyd,poty_bak,error_tmp,flag_tmp,'ns')
00128 flag_bvyd = max ( flag_bvyd, flag_tmp)
00129 error_bvyd = dmax1(error_bvyd,error_tmp)
00130 call error_metric_type2(bvzd,potz_bak,error_tmp,flag_tmp,'ns')
00131 flag_bvzd = max ( flag_bvzd, flag_tmp)
00132 error_bvzd = dmax1(error_bvzd,error_tmp)
00133 call printout_error_metric(iter_count,error_bvxd)
00134 call printout_error_metric(iter_count,error_bvyd)
00135 call printout_error_metric(iter_count,error_bvzd)
00136
00137
00138 if (error_emd_tmp.le.eps*0.1d0.and.error_metric_tmp.gt.eps*2.0d0) then
00139 write(6,*)' ## SKIP HYDRO ##'
00140 else
00141 do ihy = 1, hydro_iter
00142 call interpo_gr2fl_metric_CF
00143 call rotation_law
00144 call hydrostatic_eq_peos(potf)
00145 call calc_surface(potrs, potf)
00146 emd_bak = emd
00147 call update_matter(potf,emd,conv_den)
00148
00149 call update_surface(potrs,rs,conv_den)
00150 call reset_fluid
00151 call update_parameter_peos(conv_den)
00152 call calc_vector_x_matter(1)
00153 call calc_vector_phi_matter(1)
00154
00155 if (ihy.eq.1) then
00156 call error_matter_type2(emd,emd_bak,error_emd,flag)
00157 call printout_error(iter_count,error_emd)
00158 end if
00159 end do
00160 end if
00161
00162
00163
00164
00165 if (flag == 0) exit
00166 if (iter_count >= iter_max) exit
00167
00168 error_emd_tmp = error_emd
00169 error_metric_tmp = dmax1(error_psi,error_alph, &
00170 & error_bvxd,error_bvyd,error_bvzd)
00171
00172 flag = 0
00173 flag_psi = 0
00174 flag_alph = 0
00175 flag_bvxd = 0
00176 flag_bvyd = 0
00177 flag_bvzd = 0
00178 flag_param= 0
00179 error_emd = 0.0d0
00180 error_psi = 0.0d0
00181 error_alph = 0.0d0
00182 error_bvxd = 0.0d0
00183 error_bvyd = 0.0d0
00184 error_bvzd = 0.0d0
00185
00186 end do
00187
00188 deallocate(sou)
00189 deallocate(sou2)
00190 deallocate(potx)
00191 deallocate(poty)
00192 deallocate(potz)
00193 deallocate(pot)
00194 deallocate(potf)
00195 deallocate(emd_bak)
00196 deallocate(potx_bak)
00197 deallocate(poty_bak)
00198 deallocate(potz_bak)
00199 deallocate(potrs)
00200 deallocate(souvec)
00201 end subroutine iteration_peos