namelist_ice_cfg 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  2. !! SI3 configuration namelist: Overwrites SHARED/namelist_ice_ref
  3. !! 1 - Generic parameters (nampar)
  4. !! 2 - Ice thickness discretization (namitd)
  5. !! 3 - Ice dynamics (namdyn)
  6. !! 4 - Ice ridging/rafting (namdyn_rdgrft)
  7. !! 5 - Ice rheology (namdyn_rhg)
  8. !! 6 - Ice advection (namdyn_adv)
  9. !! 7 - Ice surface boundary conditions (namsbc)
  10. !! 8 - Ice thermodynamics (namthd)
  11. !! 9 - Ice heat diffusion (namthd_zdf)
  12. !! 10 - Ice lateral melting (namthd_da)
  13. !! 11 - Ice growth in open water (namthd_do)
  14. !! 12 - Ice salinity (namthd_sal)
  15. !! 13 - Ice melt ponds (namthd_pnd)
  16. !! 14 - Ice initialization (namini)
  17. !! 15 - Ice/snow albedos (namalb)
  18. !! 16 - Ice diagnostics (namdia)
  19. !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  20. !
  21. !------------------------------------------------------------------------------
  22. &nampar ! Generic parameters
  23. !------------------------------------------------------------------------------
  24. nlay_s = 1 ! number of snow layers (only 1 is working)
  25. rn_amax_s = 0.95 ! maximum tolerated ice concentration SH
  26. /
  27. !------------------------------------------------------------------------------
  28. &namitd ! Ice discretization
  29. !------------------------------------------------------------------------------
  30. /
  31. !------------------------------------------------------------------------------
  32. &namdyn ! Ice dynamics
  33. !------------------------------------------------------------------------------
  34. /
  35. !------------------------------------------------------------------------------
  36. &namdyn_rdgrft ! Ice ridging/rafting
  37. !------------------------------------------------------------------------------
  38. /
  39. !------------------------------------------------------------------------------
  40. &namdyn_rhg ! Ice rheology
  41. !------------------------------------------------------------------------------
  42. ln_aEVP = .false. ! adaptive rheology (Kimmritz et al. 2016 & 2017)
  43. nn_nevp = 120 ! number of EVP subcycles
  44. /
  45. !------------------------------------------------------------------------------
  46. &namdyn_adv ! Ice advection
  47. !------------------------------------------------------------------------------
  48. /
  49. !------------------------------------------------------------------------------
  50. &namsbc ! Ice surface boundary conditions
  51. !------------------------------------------------------------------------------
  52. nn_qtrice = 1 ! Solar flux transmitted thru the surface scattering layer:
  53. ! = 0 Grenfell and Maykut 1977 (depends on cloudiness and is 0 when there is snow)
  54. ! = 1 Lebrun 2019 (equals 0.3 anytime with different melting/dry snw conductivities)
  55. /
  56. !------------------------------------------------------------------------------
  57. &namthd ! Ice thermodynamics
  58. !------------------------------------------------------------------------------
  59. /
  60. !------------------------------------------------------------------------------
  61. &namthd_zdf ! Ice heat diffusion
  62. !------------------------------------------------------------------------------
  63. rn_cnd_s = 0.35 ! thermal conductivity of the snow (0.31 W/m/K, Maykut and Untersteiner, 1971)
  64. ! Obs: 0.1-0.5 (Lecomte et al, JAMES 2013)
  65. /
  66. !------------------------------------------------------------------------------
  67. &namthd_da ! Ice lateral melting
  68. !------------------------------------------------------------------------------
  69. /
  70. !------------------------------------------------------------------------------
  71. &namthd_do ! Ice growth in open water
  72. !------------------------------------------------------------------------------
  73. /
  74. !------------------------------------------------------------------------------
  75. &namthd_sal ! Ice salinity
  76. !------------------------------------------------------------------------------
  77. /
  78. !------------------------------------------------------------------------------
  79. &namthd_pnd ! Melt ponds
  80. !------------------------------------------------------------------------------
  81. /
  82. !------------------------------------------------------------------------------
  83. &namini ! Ice initialization
  84. !------------------------------------------------------------------------------
  85. nn_iceini_file = 1 ! 0 = Initialise sea ice based on SSTs
  86. ! 1 = Initialise sea ice from single category netcdf file
  87. ! 2 = Initialise sea ice from multi category restart file
  88. ! -- for nn_iceini_file = 1
  89. sn_hti = 'seaice' , -1 ,'sithic' , .true. , .true., 'yearly' , '' , '', ''
  90. sn_hts = 'seaice' , -1 ,'snthic' , .true. , .true., 'yearly' , '' , '', ''
  91. sn_ati = 'seaice' , -1 ,'siconc' , .true. , .true., 'yearly' , '' , '', ''
  92. sn_smi = 'NOT USED' , -12. ,'smi' , .false. , .true., 'yearly' , '' , '', ''
  93. sn_tmi = 'NOT USED' , -12. ,'tmi' , .false. , .true., 'yearly' , '' , '', ''
  94. sn_tsu = 'NOT USED' , -12. ,'tsu' , .false. , .true., 'yearly' , '' , '', ''
  95. /
  96. !------------------------------------------------------------------------------
  97. &namalb ! albedo parameters
  98. !------------------------------------------------------------------------------
  99. /
  100. !------------------------------------------------------------------------------
  101. &namdia ! Diagnostics
  102. !------------------------------------------------------------------------------
  103. rn_icechk_cel = 100. ! check at each gridcell (1.e-4m/h)=> stops the code if violated (and writes a file)
  104. rn_icechk_glo = 1. ! check over the entire ice cover (1.e-6m/h)=> only prints warnings
  105. /