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