MoDeNa  1.0
Software framework facilitating sequential multi-scale modelling
foaming_globals.f90
Go to the documentation of this file.
1 
8 module foaming_globals_m
9  implicit none
10  logical :: &
11  firstrun,& !< running for the first time
12  printout = .true. ! print intermediate results during integration in bblgr
13  integer :: bub_inx
14  real(8) :: tstart, & !< starting time of the direct simulations
15  tend, & !< end time of the direct simulations
16  bub_pres, & !< bubble pressure
17  surface_tension
18  real(8), dimension(:,:), allocatable :: &
19  bub_rad,& !< first column - time; rest radius of each bubble every timestep
20  etat,& !< first column - time, second column viscosity for each timestep
21  port,& !< first column - time, second column porosity for each timestep
22  init_bub_rad
23 end module foaming_globals_m