const_ec_v__ml34.F90 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #include "tm5.inc"
  2. ! ----------------------------------------------------------------------
  3. !
  4. ! NAME
  5. ! const_ec_v - vertical level definition of the driving model
  6. !
  7. ! USAGE
  8. ! use const_ec_v
  9. !
  10. ! ----------------------------------------------------------------------
  11. module const_ec_v
  12. implicit none
  13. ! --- in/out -----------------------------
  14. private
  15. public :: lme, a_ec, b_ec
  16. ! --- const --------------------------------
  17. ! number of levels:
  18. integer, parameter :: lme = 34
  19. ! Hybrid coordinate coefficients at half level interfaces,
  20. ! specifying 34 vertical ECMWF levels.
  21. ! Coefficient a is given in [Pa] .
  22. ! Pressure at a certain hybrid level is defined as: p = a + b.SP
  23. real, parameter :: a_ec(0:lme) = (/ &
  24. 0.000000, &
  25. 21.413612, 76.167656, &
  26. 204.637451, 450.685791, &
  27. 857.945801, &
  28. 1463.163940, 2292.155518, &
  29. 3358.425781, 4663.776367, &
  30. 6199.839355, 7341.469727, &
  31. 8564.624023, 9873.560547, &
  32. 11262.484375, 12713.897461, 14192.009766, &
  33. 15638.053711, 16990.623047, &
  34. 18191.029297, 19184.544922, 19919.796875, &
  35. 20348.916016, 20319.011719, &
  36. 19348.775391, &
  37. 17385.595703, 14665.645508, &
  38. 11543.166992, 8356.252930, &
  39. 5422.802734, &
  40. 3010.146973, 1297.656128, &
  41. 336.772369, 6.575628, &
  42. 0.000000 /)
  43. real, parameter :: b_ec(0:lme) = (/ &
  44. 0.000000, &
  45. 0.000000, 0.000000, &
  46. 0.000000, 0.000000, &
  47. 0.000000, &
  48. 0.000000, 0.000000, &
  49. 0.000000, 0.000000, &
  50. 0.000000, 0.000000, &
  51. 0.000055, 0.000279, &
  52. 0.001000, 0.002765, 0.006322, &
  53. 0.012508, 0.022189, &
  54. 0.036227, 0.055474, 0.080777, &
  55. 0.112979, 0.176091, &
  56. 0.259554, &
  57. 0.362203, 0.475016, &
  58. 0.589317, 0.698224, &
  59. 0.795385, &
  60. 0.875518, 0.935157, &
  61. 0.973466, 0.994204, &
  62. 1.000000 /)
  63. end module const_ec_v