ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
suydam.f90
Go to the documentation of this file.
1 subroutine suydam(ipsi, t0, tbb, tbf, fact, bal)
2 !-----------------------------------------------------------------------
3 ! subroutine to verify the sign of the ballooning energy
4 ! functional according to the suydam finite difference scheme.
5 !-----------------------------------------------------------------------
6 
7  use itm_types
8  use mod_parameter
9  use mod_suydam
10 
11  implicit none
12 
13  integer(itm_i4), intent(in) :: ipsi
14  real(r8), intent(in) :: t0, tbb, tbf, fact
15  character (len=25), intent(out) :: bal
16 
17  integer(itm_i4) :: i, n
18  real(r8) :: dbt, alp, a01, a11
19  real(r8) :: t1, t2, ts
20  real(r8) :: kp1, kp2, gp1, gp2
21  real(r8) :: gp2temp
22 
23  bal = ' stable'
24  dbt = 4._r8 * asin(1._r8) / dble(ncpq - 1)
25 
26  n = int((tbf - tbb) / dbt)
27 
28  alp = 1._r8
29 
30  t2 = tbb - dbt / 2._r8
31 
32  kp2 = 0._r8
33  gp2 = 0._r8
34 
35  do i = 1, n
36  t1 = t2
37  kp1 = kp2
38  gp1 = gp2
39  t2 = t1 + dbt
40  call suydam_kgs(t2, t0, kp2, gp2temp, ipsi)
41  gp2 = gp2temp * fact
42  a11 = (kp2 + kp1) / dbt + 0.25_r8 * (gp1 + gp2) * dbt
43  a01 = - kp1 / dbt + 0.25_r8 * gp1 * dbt
44  if (i == 1) a01 = 0._r8
45  alp = a11 - a01**2 / alp
46  if(alp <= 0._r8) then
47  ts = (t1 + t2) / 2._r8
48  write(bal, 11) ts
49  exit
50  end if
51  end do
52 
53  11 format(' unstable at t = ',f8.3)
54 
55  return
56 
57 end subroutine suydam
subroutine suydam_kgs(t, t0, cp, cq, ipsi)
Definition: suydam_kgs.f90:1
subroutine suydam(ipsi, t0, tbb, tbf, fact, bal)
Definition: suydam.f90:1