const_ec_v__ml91.F90 3.8 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 = 91
  19. ! Hybrid coordinate coefficients at half level interfaces,
  20. ! specifying 91 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, 2.000040, 3.980832, 7.387186, 12.908319, &
  25. 21.413612, 33.952858, 51.746601, 76.167656, 108.715561, &
  26. 150.986023, 204.637451, 271.356506, 352.824493, 450.685791, &
  27. 566.519226, 701.813354, 857.945801, 1036.166504, 1237.585449, &
  28. 1463.163940, 1713.709595, 1989.874390, 2292.155518, 2620.898438, &
  29. 2976.302246, 3358.425781, 3767.196045, 4202.416504, 4663.776367, &
  30. 5150.859863, 5663.156250, 6199.839355, 6759.727051, 7341.469727, &
  31. 7942.926270, 8564.624023, 9208.305664, 9873.560547, 10558.881836, &
  32. 11262.484375, 11982.662109, 12713.897461, 13453.225586, 14192.009766, &
  33. 14922.685547, 15638.053711, 16329.560547, 16990.623047, 17613.281250, &
  34. 18191.029297, 18716.968750, 19184.544922, 19587.513672, 19919.796875, &
  35. 20175.394531, 20348.916016, 20434.158203, 20426.218750, 20319.011719, &
  36. 20107.031250, 19785.357422, 19348.775391, 18798.822266, 18141.296875, &
  37. 17385.595703, 16544.585938, 15633.566406, 14665.645508, 13653.219727, &
  38. 12608.383789, 11543.166992, 10471.310547, 9405.222656, 8356.252930, &
  39. 7335.164551, 6353.920898, 5422.802734, 4550.215820, 3743.464355, &
  40. 3010.146973, 2356.202637, 1784.854614, 1297.656128, 895.193542, &
  41. 576.314148, 336.772369, 162.043427, 54.208336, 6.575628, &
  42. 0.003160, 0.000000 /)
  43. real, parameter :: b_ec(0:lme) = (/ &
  44. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  45. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  46. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  47. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  48. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  49. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  50. 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, &
  51. 0.000014, 0.000055, 0.000131, 0.000279, 0.000548, &
  52. 0.001000, 0.001701, 0.002765, 0.004267, 0.006322, &
  53. 0.009035, 0.012508, 0.016860, 0.022189, 0.028610, &
  54. 0.036227, 0.045146, 0.055474, 0.067316, 0.080777, &
  55. 0.095964, 0.112979, 0.131935, 0.152934, 0.176091, &
  56. 0.201520, 0.229315, 0.259554, 0.291993, 0.326329, &
  57. 0.362203, 0.399205, 0.436906, 0.475016, 0.513280, &
  58. 0.551458, 0.589317, 0.626559, 0.662934, 0.698224, &
  59. 0.732224, 0.764679, 0.795385, 0.824185, 0.850950, &
  60. 0.875518, 0.897767, 0.917651, 0.935157, 0.950274, &
  61. 0.963007, 0.973466, 0.982238, 0.989153, 0.994204, &
  62. 0.997630, 1.000000 /)
  63. end module const_ec_v