ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
suydam_initialization.f90
Go to the documentation of this file.
1 subroutine suydam_initialization(ias, tbb, tbf)
2 !-----------------------------------------------------------------------
3 ! subroutine to initialize the input variables, also writes the header
4 ! of the output file
5 !-----------------------------------------------------------------------
6 
7  use itm_types
8  use mod_helena_io, only : out_he
9  use mod_output
10 
11  implicit none
12 
13  integer(itm_i4), intent(in) :: ias
14  real(r8), intent(out) :: tbb, tbf
15 
16  tbb = -100._r8
17  if (ias == 0) tbb = 0._r8
18  tbf = 100._r8
19 
20  if (standard_output) then
21  write(out_he, *) '******************************************'
22  write(out_he, *) '* ballooning stability *'
23  write(out_he, *) '* program suydam_ballooning version 1 *'
24  write(out_he, *) '******************************************'
25  write(out_he, *) tbb, tbf
26  end if
27 
28  return
29 end subroutine suydam_initialization
subroutine suydam_initialization(ias, tbb, tbf)