-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathHC_tests.f90
More file actions
143 lines (124 loc) · 4.27 KB
/
HC_tests.f90
File metadata and controls
143 lines (124 loc) · 4.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
subroutine HC_tests
use parameters,only:pi
use globalvar,only:ix,jx,kx,U_h,U_m,flag_bnd,beta,flag_b_stg,dtout,&
flag_mhd,flag_mpi,my_rank,flag_pip,gm,beta,tend,&
x,y,z,dx,dy,dz,n_fraction,gra,flag_grav,scl_height,margin,&
debug_direction
use scheme_rot,only:pv2cq_mhd,pv2cq_hd
use model_rot, only:set_coordinate,setcq
use matrix_rot,only:inverse_tridiagonal
implicit none
double precision :: ro_h(1:ix,1:jx,1:kx),ro_m(1:ix,1:jx,1:kx)
double precision :: vx_h(1:ix,1:jx,1:kx),vx_m(1:ix,1:jx,1:kx)
double precision :: vy_h(1:ix,1:jx,1:kx),vy_m(1:ix,1:jx,1:kx)
double precision :: vz_h(1:ix,1:jx,1:kx),vz_m(1:ix,1:jx,1:kx)
double precision :: P_h (1:ix,1:jx,1:kx),P_m (1:ix,1:jx,1:kx)
double precision :: B_x (1:ix,1:jx,1:kx)
double precision :: B_y (1:ix,1:jx,1:kx)
double precision :: B_z (1:ix,1:jx,1:kx)
double precision f_n,f_p,f_p_n,f_p_p,start(3),end(3)
double precision T0(1:ix,1:jx,1:kx),r,theta
double precision, allocatable:: p_tot(:),ro_tot(:),temp(:),b0(:)
integer i,j,k
integer, allocatable:: new(:), old(:)
integer size, seed(2), gseed(2), hiseed(2), zseed(2)
!set ionization fraction-----------------
if(flag_pip.eq.0) then
f_n=1.0d0
f_p=1.0d0
f_p_n=1.0d0
f_p_p=1.0d0
else
f_n=n_fraction
f_p=1.0d0-n_fraction
f_p_n=f_n/(f_n+2.0d0*f_p)
f_p_p=2.0d0*f_p/(f_n+2.0d0*f_p)
endif
!----------------------------------------
if(debug_direction .eq. 1) then
print*,'1D test of thermal conduction from Rempel 2017'
!Set coordinate (uniform grid)--------------------------
!!set lower and upper coordinate
start(1)=0.0d0 ;end(1)=1.0d0
start(2)=0.0d0 ;end(2)=1.0d0
start(3)=0.0d0 ;end(3)=1.0d0
call set_coordinate(start,end)
!---------------------------------------
!!default boundary condition----------------------
if (flag_bnd(1) .eq.-1) flag_bnd(1)=99
if (flag_bnd(2) .eq.-1) flag_bnd(2)=99
if (flag_bnd(3) .eq.-1) flag_bnd(3)=1
if (flag_bnd(4) .eq.-1) flag_bnd(4)=1
if (flag_bnd(5) .eq.-1) flag_bnd(5)=1
if (flag_bnd(6) .eq.-1) flag_bnd(6)=1
!-------------------------------------------------
!Initial temperature profile, see EQN 12 in https://iopscience.iop.org/article/10.3847/1538-4357/834/1/10/pdf
T0(1:ix,1,1)=0.1+0.9*x**5
!Set MHD properties
ro_m=1.0
do j=1,jx; do k=1,kx
P_m(1:ix,j,k)=ro_m(1:ix,j,k)*T0(:,1,1)/gm
enddo;enddo
vx_m=0.0
vy_m=0.0
vz_m=0.0
B_x=1.0
B_y=0.0
B_z=0.0
!Set HD values to zero but should be used anyway!
ro_h=0.0
P_h=0.0
vx_h=0.0
vy_h=0.0
vz_h=0.0
else if(debug_direction .eq. 2) then
print*,'2D test of thermal conduction from Navaro+2022'
!Set coordinate (uniform grid)--------------------------
!!set lower and upper coordinate
start(1)=-1.0d0 ;end(1)=1.0d0
start(2)=-1.0d0 ;end(2)=1.0d0
start(3)=0.0d0 ;end(3)=1.0d0
call set_coordinate(start,end)
!---------------------------------------
!!default boundary condition----------------------
if (flag_bnd(1) .eq.-1) flag_bnd(1)=99
if (flag_bnd(2) .eq.-1) flag_bnd(2)=99
if (flag_bnd(3) .eq.-1) flag_bnd(3)=99
if (flag_bnd(4) .eq.-1) flag_bnd(4)=99
if (flag_bnd(5) .eq.-1) flag_bnd(5)=1
if (flag_bnd(6) .eq.-1) flag_bnd(6)=1
!-------------------------------------------------
ro_m=1.d0
T0=10.d0
do i=1,ix;do j=1,jx
r=dsqrt(x(i)**2+y(j)**2)
theta=(datan2(y(j),x(i)))
B_x(i,j,:)=1.0*dcos(theta+pi/2.d0)/r
B_y(i,j,:)=1.0*dsin(theta+pi/2.d0)/r
B_z(i,j,:)=0.d0
if((abs(theta) .ge. 11.d0/12.d0*pi).and.(abs(theta) .le. 13.d0/12.d0*pi)&
.and.(r .ge. 0.5).and.(r .le. 0.7)) then
T0(i,j,:)=12.d0
endif
P_m(i,j,:)=ro_m(i,j,:)*T0(i,j,:)/gm
enddo;enddo
vx_m=0.d0
vy_m=0.d0
vz_m=0.d0
else
print*,'Choose a valid test case!'
stop
endif
!!!========================================================
!convert PV2cq and set that value to global variable 'U_h' and/or 'U_m'
call setcq(ro_m,vx_m,vy_m,vz_m,p_m,B_x,B_y,B_z, &
ro_h,vx_h,vy_h,vz_h,p_h)
!---------------------------------------------------------------------
!set default output period and time duration--------------------------
if(tend.lt.0.0) then
tend=4.0d0
dtout=tend/4.0/5.d0
if(flag_mpi.eq.0 .or.my_rank.eq.0) print *,"TEND",dtout,tend
endif
!---------------------------------------------------------------------
end subroutine HC_tests