dims_levels__ml60_tropo25.F90 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #include "tm5.inc"
  2. !
  3. ! Levels.
  4. !
  5. module dims_levels
  6. use const_ec_v, only : lme, a_ec, b_ec
  7. use dims_grid, only : nregions_all
  8. implicit none
  9. ! --- in/out ------------------------------
  10. public
  11. ! --- const -------------------------------
  12. integer, parameter :: lm(0:nregions_all) = 25
  13. ! lmax_conv determines to what level the clouds and convection
  14. ! are stored in the meteo files...
  15. #ifdef without_lmax_conv
  16. ! don't bother about computation time and storage ...
  17. integer,parameter :: lmax_conv = 25
  18. #else
  19. ! Quote Michiel van Weele:
  20. ! "..., convectie kan wel tot ~70 hPa (19km) gaan in de tropen."
  21. integer,parameter :: lmax_conv = 19
  22. #endif
  23. integer,parameter :: echlevs(0:25) = (/ &
  24. 60, 58, &
  25. 56, 54, &
  26. 52, 50, &
  27. 48, 46, &
  28. 44, 42, &
  29. 40, 38, &
  30. 36, 34, &
  31. 32, 30, &
  32. 28, 26, &
  33. 24, 22, &
  34. 20, &
  35. 16, &
  36. 12, &
  37. 8, &
  38. 4, &
  39. 0 /)
  40. ! values filled in module geometry ...
  41. real :: at(1:25+1)
  42. real :: bt(1:25+1)
  43. end module dims_levels