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
00017
00018 use interface_source_HaC_CF
00019 use interface_source_trG_CF
00020 use interface_source_MoC_CF
00021 use interface_sourceterm_MoC_peos
00022 use interface_compute_shift
00023 use interface_compute_alps2alph
00024 use interface_hydrostatic_eq_peos
00025 use interface_calc_surface
00026 use interface_update_grfield
00027 use interface_update_matter
00028 use interface_update_parameter_peos
00029 use interface_update_surface
00030 use interface_error_matter
00031 use interface_error_matter_type2
00032 use interface_error_surface
00033 use interface_error_monitor_matter
00034 use interface_error_monitor_surface
00035 use interface_error_metric
00036 use interface_error_metric_type0
00037 use interface_error_metric_type2
00038 implicit none
00039 real(long), pointer :: sou(:,:,:), pot(:,:,:), sou2(:,:,:)
00040 real(long), pointer :: potf(:,:,:), emd_bak(:,:,:)
00041 real(long), pointer :: potrs(:,:), rs_bak(:,:)
00042 real(long), pointer :: potx(:,:,:), poty(:,:,:), potz(:,:,:)
00043 real(long), pointer :: potx_bak(:,:,:), poty_bak(:,:,:), potz_bak(:,:,:)
00044 real(long), pointer :: souvec(:,:,:,:)
00045 real(long) :: work(0:nnrg,0:nntg,0:nnpg)
00046 real(long) :: error_emd, error_rs, count
00047 real(long) :: error_psi = 0.0d0, error_alph = 0.0d0, error_tmp = 0.0d0,
00048 error_bvxd = 0.0d0, error_bvyd = 0.0d0, error_bvzd = 0.0d0
00049 real(long) :: error_emd_tmp = 1.0d0, error_metric_tmp = 1.0d0
00050 integer :: iter_count, flag = 0, hydro_iter = 4, conv_rs_count = 0
00051 integer :: flag_A2DR= 99, flag_B2DR= 99, flag_A2B2= 99, istep_st
00052 integer :: flag_tmp = 0, flag_param= 99,
00053 flag_psi = 0, flag_alph = 0, flag_rs = 0, &
00054 flag_bvxd = 0, flag_bvyd = 0, flag_bvzd = 0
00055 integer :: irf, itf, ipf, irg, itg, ipg, ihy
00056
00057 call alloc_array3d(sou,0,nrg,0,ntg,0,npg)
00058 call alloc_array3d(sou2,0,nrg,0,ntg,0,npg)
00059 call alloc_array3d(potx,0,nrg,0,ntg,0,npg)
00060 call alloc_array3d(poty,0,nrg,0,ntg,0,npg)
00061 call alloc_array3d(potz,0,nrg,0,ntg,0,npg)
00062 call alloc_array3d(pot,0,nrg,0,ntg,0,npg)
00063 call alloc_array3d(potf,0,nrf,0,ntf,0,npf)
00064 call alloc_array3d(emd_bak,0,nrf,0,ntf,0,npf)
00065 call alloc_array3d(potx_bak,0,nrg,0,ntg,0,npg)
00066 call alloc_array3d(poty_bak,0,nrg,0,ntg,0,npg)
00067 call alloc_array3d(potz_bak,0,nrg,0,ntg,0,npg)
00068 call alloc_array2d(potrs,0,ntf,0,npf)
00069 call alloc_array2d(rs_bak,0,ntf,0,npf)
00070 call alloc_array4d(souvec,0,nrg,0,ntg,0,npg,1,3)
00071
00072 iter_count = 0
00073 istep_st =-1
00074
00075 do
00076 iter_count = iter_count + 1
00077 count = dble(iter_count)
00078 conv_gra = dmin1(conv0_gra,conv_ini*count)
00079 conv_den = dmin1(conv0_den,conv_ini*count)
00080
00081 emdg = 0.0d0 ; omeg = 0.0d0
00082 call calc_vector_x_grav(1)
00083 call calc_vector_x_matter(1)
00084 call calc_vector_phi_grav(1)
00085 call calc_vector_phi_matter(1)
00086 call interpo_fl2gr(emd, emdg)
00087 call interpo_fl2gr(omef,omeg)
00088 call interpo_gr2fl_metric_CF
00089 call rotation_law
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105 call excurve
00106
00107
00108 call source_HaC_CF(sou)
00109 call poisson_solver(sou,pot)
00110 pot = pot + 1.0d0
00111 call update_grfield(pot,psi,conv_gra)
00112
00113 call update_parameter_peos(conv_den)
00114
00115
00116 call source_trG_CF(sou)
00117 call poisson_solver(sou,pot)
00118 pot = pot + 1.0d0
00119 call compute_alps2alph(pot,psi)
00120 call update_grfield(pot,alph,conv_gra)
00121
00122 call update_parameter_peos(conv_den)
00123
00124
00125
00126 call source_MoC_CF(souvec)
00127 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 1)
00128 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00129 call poisson_solver(sou2,potx)
00130 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 2)
00131 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00132 call poisson_solver(sou2,poty)
00133 work(1:nrg, 1:ntg, 1:npg) = souvec(1:nrg, 1:ntg, 1:npg, 3)
00134 sou2(1:nrg, 1:ntg, 1:npg) = work(1:nrg, 1:ntg, 1:npg)
00135 call poisson_solver(sou2,potz)
00136
00137 work( 0:nrg, 0:ntg, 0:npg) = potx(0:nrg, 0:ntg, 0:npg)
00138 souvec(0:nrg, 0:ntg, 0:npg, 1) = work(0:nrg, 0:ntg, 0:npg)
00139 work( 0:nrg, 0:ntg, 0:npg) = poty(0:nrg, 0:ntg, 0:npg)
00140 souvec(0:nrg, 0:ntg, 0:npg, 2) = work(0:nrg, 0:ntg, 0:npg)
00141 work( 0:nrg, 0:ntg, 0:npg) = potz(0:nrg, 0:ntg, 0:npg)
00142 souvec(0:nrg, 0:ntg, 0:npg, 3) = work(0:nrg, 0:ntg, 0:npg)
00143
00144 potx_bak(0:nrg,0:ntg,0:npg) = bvxd(0:nrg,0:ntg,0:npg)
00145 poty_bak(0:nrg,0:ntg,0:npg) = bvyd(0:nrg,0:ntg,0:npg)
00146 potz_bak(0:nrg,0:ntg,0:npg) = bvzd(0:nrg,0:ntg,0:npg)
00147 call update_grfield(potx,bvxd,conv_gra)
00148 call update_grfield(poty,bvyd,conv_gra)
00149 call update_grfield(potz,bvzd,conv_gra)
00150 call update_parameter_peos(conv_den)
00151
00152 call error_metric_type2(bvxd,potx_bak,error_tmp,flag_tmp,'ns')
00153 flag_bvxd = max ( flag_bvxd, flag_tmp)
00154 error_bvxd = dmax1(error_bvxd,error_tmp)
00155 call error_metric_type2(bvyd,poty_bak,error_tmp,flag_tmp,'ns')
00156 flag_bvyd = max ( flag_bvyd, flag_tmp)
00157 error_bvyd = dmax1(error_bvyd,error_tmp)
00158 call error_metric_type2(bvzd,potz_bak,error_tmp,flag_tmp,'ns')
00159 flag_bvzd = max ( flag_bvzd, flag_tmp)
00160 error_bvzd = dmax1(error_bvzd,error_tmp)
00161 call printout_error_metric(iter_count,error_bvxd)
00162 call printout_error_metric(iter_count,error_bvyd)
00163 call printout_error_metric(iter_count,error_bvzd)
00164
00165
00166 if (error_emd_tmp.le.eps*0.1d0.and.error_metric_tmp.gt.eps*2.0d0) then
00167 write(6,*)' ## SKIP HYDRO ##'
00168 else
00169 do ihy = 1, hydro_iter
00170 call interpo_gr2fl_metric_CF
00171 call rotation_law
00172 call hydrostatic_eq_peos(potf)
00173
00174 emd_bak = emd
00175 rs_bak = rs
00176 call update_matter(potf,emd,conv_den)
00177 call calc_surface(potrs, emd)
00178
00179
00180
00181 call update_surface(potrs,rs,conv_den)
00182
00183 call reset_fluid
00184 call update_parameter_peos(conv_den)
00185 call calc_vector_x_matter(1)
00186 call calc_vector_phi_matter(1)
00187
00188
00189
00190
00191
00192
00193
00194
00195 if (ihy.eq.1) then
00196
00197
00198
00199
00200 call error_matter_type2(emd,emd_bak,error_emd,flag)
00201 call error_surface(rs,rs_bak,error_rs,flag_rs)
00202 call printout_error(iter_count,error_emd)
00203 call printout_error_matter('emd ',iter_count,error_emd)
00204 call printout_error_matter('rs ',iter_count,error_rs)
00205 call error_monitor_matter(emd,emd_bak,'emd ',2,ntf/2,2)
00206 call error_monitor_surface(rs, rs_bak,'rs ',2,2)
00207 end if
00208 end do
00209
00210 end if
00211
00212
00213
00214
00215
00216
00217 if ((flag == 0).and.(flag_param==0)) exit
00218 if (iter_count >= iter_max) exit
00219
00220 error_emd_tmp = error_emd
00221 error_metric_tmp = dmax1(error_psi,error_alph, &
00222 & error_bvxd,error_bvyd,error_bvzd)
00223
00224 flag = 0
00225 flag_psi = 0
00226 flag_alph = 0
00227 flag_bvxd = 0
00228 flag_bvyd = 0
00229 flag_bvzd = 0
00230 flag_param= 0
00231 error_emd = 0.0d0
00232 error_psi = 0.0d0
00233 error_alph = 0.0d0
00234 error_bvxd = 0.0d0
00235 error_bvyd = 0.0d0
00236 error_bvzd = 0.0d0
00237
00238 end do
00239
00240 deallocate(sou)
00241 deallocate(sou2)
00242 deallocate(potx)
00243 deallocate(poty)
00244 deallocate(potz)
00245 deallocate(pot)
00246 deallocate(potf)
00247 deallocate(emd_bak)
00248 deallocate(potx_bak)
00249 deallocate(poty_bak)
00250 deallocate(potz_bak)
00251 deallocate(potrs)
00252 deallocate(rs_bak)
00253 deallocate(souvec)
00254 end subroutine iteration_peos