mod_gen_par.f90 Source File


This file depends on

sourcefile~~mod_gen_par.f90~~EfferentGraph sourcefile~mod_gen_par.f90 mod_gen_par.f90 sourcefile~mod_data_arch.f90 mod_data_arch.f90 sourcefile~mod_gen_par.f90->sourcefile~mod_data_arch.f90

Files dependent on this one

sourcefile~~mod_gen_par.f90~~AfferentGraph sourcefile~mod_gen_par.f90 mod_gen_par.f90 sourcefile~mod_solver.f90 mod_solver.f90 sourcefile~mod_solver.f90->sourcefile~mod_gen_par.f90 sourcefile~mod_ms_film.f90 mod_ms_film.f90 sourcefile~mod_ms_film.f90->sourcefile~mod_solver.f90 sourcefile~mod_film.f90 mod_film.f90 sourcefile~mod_ms_film.f90->sourcefile~mod_film.f90 sourcefile~mod_film.f90->sourcefile~mod_solver.f90 sourcefile~main.f90 main.f90 sourcefile~main.f90->sourcefile~mod_solver.f90 sourcefile~mod_test_musst.f90 mod_test_musst.f90 sourcefile~main.f90->sourcefile~mod_test_musst.f90 sourcefile~mod_test_musst.f90->sourcefile~mod_solver.f90 sourcefile~mod_test_musst.f90->sourcefile~mod_ms_film.f90 sourcefile~mod_test_musst.f90->sourcefile~mod_film.f90 sourcefile~mod_inout_files.f90 mod_inout_files.f90 sourcefile~mod_test_musst.f90->sourcefile~mod_inout_files.f90 sourcefile~mod_inout_files.f90->sourcefile~mod_ms_film.f90 sourcefile~mod_inout_files.f90->sourcefile~mod_film.f90

Contents

Source Code


Source Code

!< author: Noël Brunetière<br/>&emsp;Arthur Francisco
!  version: 1.0.0
!  date: july, 12 2018
!
!  <span style="color: #337ab7; font-family: cabin; font-size: 1.5em;">
!     **MUSST general parameters**
!  </span>
module gen_param
use data_arch, only : I4, R8
implicit none

! codes for message
integer(kind=I4), parameter :: NO_MESS    = 0    !! *code for no message on screen during problem solving*
integer(kind=I4), parameter :: PRINT_MESS = 1    !! *code for printing message during problem solving*

integer(kind=I4)   :: SOLV_MESS = NO_MESS        !! *Solver output detail control*

integer(kind=I4)   :: VERBOSE             !! *Output detail control*
character(len=128) :: OUTPUT_FILE         !! *When needed, output file*

endmodule gen_param