mo_m7_box.F90 999 B

1234567891011121314151617181920212223242526
  1. #include "tm5.inc"
  2. MODULE mo_m7_box
  3. ! *mo_m7_box* contains parameters and switches for the
  4. ! m7 interface *m7_int*
  5. !
  6. ! Author:
  7. ! -------
  8. ! E. Vignati 2005
  9. ! Philip Stier, MPI 2001
  10. !
  11. !
  12. !--- 1) Time control: -------------------------------------------------------------------------
  13. REAL, PARAMETER :: sunrise = 6., & ! Dawn
  14. sunset = 18., & ! Dusk
  15. start = 6., & ! Initial time of day of the simulation
  16. timetot = 3600.*24.*15., & ! Total time of simulation
  17. tprint = 1800. ! Printing interval
  18. ! tprint = 3600.*6. ! Printing interval
  19. !--- 2) Chemical constants: -------------------------------------------------------------------
  20. REAL, PARAMETER :: ck1=1.1e-12 ! Constant of reaction between oh and so2
  21. END MODULE mo_m7_box