[3286] | 1 | MODULE layering_mod |
---|
| 2 | |
---|
| 3 | !======================================================================= |
---|
| 4 | ! Purpose: Manage layered deposits in the PEM with a linked list data structure |
---|
| 5 | ! |
---|
| 6 | ! Author: JBC |
---|
| 7 | ! Date: 08/03/2024 |
---|
| 8 | !======================================================================= |
---|
| 9 | |
---|
| 10 | |
---|
| 11 | implicit none |
---|
| 12 | |
---|
| 13 | !---- Declarations |
---|
| 14 | ! Numerical parameter |
---|
| 15 | real, parameter :: eps = epsilon(1.), tol = 1.e2*eps |
---|
[3297] | 16 | integer :: nb_str_max |
---|
[3319] | 17 | logical :: layering_algo |
---|
[3286] | 18 | |
---|
| 19 | ! Physical parameters |
---|
[3498] | 20 | real, parameter :: d_dust = 5.78e-2 ! Tendency of dust [kg.m-2.y-1] |
---|
[3286] | 21 | real, parameter :: dry_lag_porosity = 0.5 ! Porosity of dust lag |
---|
| 22 | real, parameter :: dry_regolith_porosity = 0.45 ! Porosity of regolith |
---|
| 23 | real, parameter :: co2ice_porosity = 0.3 ! Porosity of CO2 ice |
---|
| 24 | real, parameter :: h2oice_porosity = 0.3 ! Porosity of H2O ice |
---|
| 25 | real, parameter :: rho_co2ice = 1650. ! Density of CO2 ice [kg.m-3] |
---|
| 26 | real, parameter :: rho_h2oice = 920. ! Density of H2O ice [kg.m-3] |
---|
| 27 | real, parameter :: rho_dust = 2500. ! Density of dust [kg.m-3] |
---|
| 28 | real, parameter :: rho_rock = 3200. ! Density of rock [kg.m-3] |
---|
| 29 | |
---|
[3424] | 30 | ! Lag layer parameters -> see Levrard et al. 2007 |
---|
| 31 | real, parameter :: hmin_lag = 0.5 ! Minimal height of the lag deposit to reduce the sblimation rate |
---|
| 32 | real, parameter :: fred_subl = 0.1 ! Reduction factor of sublimation rate |
---|
| 33 | |
---|
[3286] | 34 | ! Stratum = node of the linked list |
---|
| 35 | type :: stratum |
---|
[3320] | 36 | real :: thickness ! Layer thickness [m] |
---|
| 37 | real :: top_elevation ! Layer top_elevation (top height from the surface) [m] |
---|
| 38 | real :: co2ice_volfrac ! CO2 ice volumetric fraction |
---|
| 39 | real :: h2oice_volfrac ! H2O ice volumetric fraction |
---|
| 40 | real :: dust_volfrac ! Dust volumetric fraction |
---|
| 41 | real :: air_volfrac ! Air volumetric fraction inside pores |
---|
[3286] | 42 | type(stratum), pointer :: up => null() ! Upper stratum (next node) |
---|
| 43 | type(stratum), pointer :: down => null() ! Lower stratum (previous node) |
---|
| 44 | end type stratum |
---|
| 45 | |
---|
| 46 | ! Layering = linked list |
---|
| 47 | type layering |
---|
| 48 | integer :: nb_str = 0 ! Number of strata |
---|
| 49 | type(stratum), pointer :: bottom => null() ! First stratum (head of the list) |
---|
| 50 | type(stratum), pointer :: top => null() ! Last stratum (tail of the list) |
---|
| 51 | end type layering |
---|
| 52 | |
---|
[3297] | 53 | ! Array of pointers to "stratum" |
---|
| 54 | type ptrarray |
---|
| 55 | type(stratum), pointer :: p |
---|
| 56 | end type ptrarray |
---|
| 57 | |
---|
[3286] | 58 | !======================================================================= |
---|
| 59 | contains |
---|
[3297] | 60 | ! Procedures to manipulate the data structure: |
---|
| 61 | ! > print_stratum |
---|
| 62 | ! > add_stratum |
---|
| 63 | ! > insert_stratum |
---|
| 64 | ! > rm_stratum |
---|
| 65 | ! > get_stratum |
---|
| 66 | ! > ini_layering |
---|
| 67 | ! > del_layering |
---|
| 68 | ! > print_layering |
---|
| 69 | ! > get_nb_str_max |
---|
| 70 | ! > stratif2array |
---|
| 71 | ! > array2stratif |
---|
| 72 | ! > print_stratif |
---|
| 73 | ! Procedures for the algorithm to evolve the layering: |
---|
| 74 | ! > make_layering |
---|
| 75 | ! > subl_co2ice_layering |
---|
| 76 | ! > subl_h2oice_layering |
---|
| 77 | ! > lift_dust_lags |
---|
[3286] | 78 | !======================================================================= |
---|
| 79 | ! To display a stratum |
---|
| 80 | SUBROUTINE print_stratum(this) |
---|
| 81 | |
---|
| 82 | implicit none |
---|
| 83 | |
---|
| 84 | !---- Arguments |
---|
| 85 | type(stratum), intent(in) :: this |
---|
| 86 | |
---|
| 87 | !---- Code |
---|
| 88 | write(*,'(a20,es13.6)') 'Thickness : ', this%thickness |
---|
[3297] | 89 | write(*,'(a20,es13.6)') 'Top elevation : ', this%top_elevation |
---|
| 90 | write(*,'(a20,es13.6)') 'CO2 ice (m3/m3): ', this%co2ice_volfrac |
---|
| 91 | write(*,'(a20,es13.6)') 'H2O ice (m3/m3): ', this%h2oice_volfrac |
---|
| 92 | write(*,'(a20,es13.6)') 'Dust (m3/m3) : ', this%dust_volfrac |
---|
| 93 | write(*,'(a20,es13.6)') 'Air (m3/m3) : ', this%air_volfrac |
---|
[3286] | 94 | |
---|
| 95 | END SUBROUTINE print_stratum |
---|
| 96 | |
---|
| 97 | !======================================================================= |
---|
| 98 | ! To add a stratum to the top of a layering |
---|
[3297] | 99 | SUBROUTINE add_stratum(this,thickness,top_elevation,co2ice,h2oice,dust,air) |
---|
[3286] | 100 | |
---|
| 101 | implicit none |
---|
| 102 | |
---|
| 103 | !---- Arguments |
---|
| 104 | type(layering), intent(inout) :: this |
---|
[3297] | 105 | real, intent(in), optional :: thickness, top_elevation, co2ice, h2oice, dust, air |
---|
[3286] | 106 | |
---|
| 107 | !---- Local variables |
---|
| 108 | type(stratum), pointer :: str |
---|
| 109 | |
---|
| 110 | !---- Code |
---|
| 111 | ! Creation of the stratum |
---|
| 112 | allocate(str) |
---|
| 113 | nullify(str%up,str%down) |
---|
| 114 | str%thickness = 1. |
---|
[3297] | 115 | str%top_elevation = 1. |
---|
[3286] | 116 | str%co2ice_volfrac = 0. |
---|
| 117 | str%h2oice_volfrac = 0. |
---|
| 118 | str%dust_volfrac = 0. |
---|
| 119 | str%air_volfrac = 1. |
---|
| 120 | if (present(thickness)) str%thickness = thickness |
---|
[3297] | 121 | if (present(top_elevation)) str%top_elevation = top_elevation |
---|
[3286] | 122 | if (present(co2ice)) str%co2ice_volfrac = co2ice |
---|
| 123 | if (present(h2oice)) str%h2oice_volfrac = h2oice |
---|
| 124 | if (present(dust)) str%dust_volfrac = dust |
---|
| 125 | if (present(air)) str%air_volfrac = air |
---|
| 126 | |
---|
| 127 | ! Verification of volume fraction |
---|
| 128 | if (abs(1. - (str%co2ice_volfrac + str%h2oice_volfrac + str%dust_volfrac + str%air_volfrac)) > tol) & |
---|
[3317] | 129 | error stop 'add_stratum: properties for the new stratum are not possible (sum of volumetric fraction /= 1)!' |
---|
[3286] | 130 | |
---|
| 131 | ! Increment the number of strata |
---|
| 132 | this%nb_str = this%nb_str + 1 |
---|
| 133 | |
---|
| 134 | ! Add the stratum to the layering |
---|
| 135 | if (.not. associated(this%bottom)) then ! If it is the very first one |
---|
| 136 | this%bottom => str |
---|
| 137 | this%top => str |
---|
| 138 | else |
---|
| 139 | str%down => this%top |
---|
| 140 | this%top%up => str |
---|
| 141 | this%top => str |
---|
| 142 | endif |
---|
| 143 | |
---|
| 144 | END SUBROUTINE add_stratum |
---|
| 145 | |
---|
| 146 | !======================================================================= |
---|
| 147 | ! To insert a stratum after another one in a layering |
---|
[3297] | 148 | SUBROUTINE insert_stratum(this,str_prev,thickness,top_elevation,co2ice,h2oice,dust,air) |
---|
[3286] | 149 | |
---|
| 150 | implicit none |
---|
| 151 | |
---|
| 152 | !---- Arguments |
---|
| 153 | type(layering), intent(inout) :: this |
---|
| 154 | type(stratum), pointer, intent(inout) :: str_prev |
---|
[3297] | 155 | real, intent(in), optional :: thickness, top_elevation, co2ice, h2oice, dust, air |
---|
[3286] | 156 | |
---|
| 157 | !---- Local variables |
---|
| 158 | type(stratum), pointer :: str, current |
---|
| 159 | |
---|
| 160 | !---- Code |
---|
| 161 | if (.not. associated(str_prev%up)) then ! If str_prev is the top stratum of the layering |
---|
[3297] | 162 | call add_stratum(this,thickness,top_elevation,co2ice,h2oice,dust,air) |
---|
[3286] | 163 | else |
---|
| 164 | ! Creation of the stratum |
---|
| 165 | allocate(str) |
---|
| 166 | nullify(str%up,str%down) |
---|
| 167 | str%thickness = 1. |
---|
[3297] | 168 | str%top_elevation = 1. |
---|
[3286] | 169 | str%co2ice_volfrac = 0. |
---|
| 170 | str%h2oice_volfrac = 0. |
---|
| 171 | str%dust_volfrac = 0. |
---|
| 172 | str%air_volfrac = 1. |
---|
| 173 | if (present(thickness)) str%thickness = thickness |
---|
[3297] | 174 | if (present(top_elevation)) str%top_elevation = top_elevation |
---|
[3286] | 175 | if (present(co2ice)) str%co2ice_volfrac = co2ice |
---|
| 176 | if (present(h2oice)) str%h2oice_volfrac = h2oice |
---|
| 177 | if (present(dust)) str%dust_volfrac = dust |
---|
| 178 | if (present(air)) str%air_volfrac = air |
---|
| 179 | |
---|
| 180 | ! Verification of volume fraction |
---|
| 181 | if (abs(1. - (str%co2ice_volfrac + str%h2oice_volfrac + str%dust_volfrac + str%air_volfrac)) > tol) & |
---|
[3317] | 182 | error stop 'insert_stratum: properties for the new stratum are not possible (sum of volumetric fraction /= 1)!' |
---|
[3286] | 183 | |
---|
| 184 | ! Increment the number of strata |
---|
| 185 | this%nb_str = this%nb_str + 1 |
---|
| 186 | |
---|
| 187 | ! Insert the stratum into the layering at the right place |
---|
| 188 | str%down => str_prev |
---|
| 189 | str%up => str_prev%up |
---|
| 190 | str_prev%up => str |
---|
| 191 | str%up%down => str |
---|
| 192 | |
---|
[3297] | 193 | ! Correct the value of top_elevation for the upper strata |
---|
[3286] | 194 | current => str%up |
---|
| 195 | do while (associated(current)) |
---|
[3297] | 196 | current%top_elevation = current%down%top_elevation + current%thickness |
---|
[3286] | 197 | current => current%up |
---|
| 198 | enddo |
---|
| 199 | endif |
---|
| 200 | |
---|
| 201 | END SUBROUTINE insert_stratum |
---|
| 202 | |
---|
| 203 | !======================================================================= |
---|
| 204 | ! To remove a stratum in a layering |
---|
| 205 | SUBROUTINE rm_stratum(this,str) |
---|
| 206 | |
---|
| 207 | implicit none |
---|
| 208 | |
---|
| 209 | !---- Arguments |
---|
| 210 | type(layering), intent(inout) :: this |
---|
| 211 | type(stratum), pointer, intent(inout) :: str |
---|
| 212 | |
---|
| 213 | !---- Local variables |
---|
| 214 | type(stratum), pointer :: new_str |
---|
| 215 | |
---|
| 216 | !---- Code |
---|
| 217 | ! Protect the 3 sub-surface strata from removing |
---|
[3297] | 218 | if (str%top_elevation <= 0.) return |
---|
[3286] | 219 | |
---|
| 220 | ! Decrement the number of strata |
---|
| 221 | this%nb_str = this%nb_str - 1 |
---|
| 222 | |
---|
[3297] | 223 | ! Remove the stratum from the layering |
---|
[3286] | 224 | str%down%up => str%up |
---|
| 225 | if (associated(str%up)) then ! If it is not the last one at the top of the layering |
---|
| 226 | str%up%down => str%down |
---|
| 227 | else |
---|
| 228 | this%top => str%down |
---|
| 229 | endif |
---|
| 230 | new_str => str%down |
---|
| 231 | nullify(str%up,str%down) |
---|
| 232 | deallocate(str) |
---|
| 233 | nullify(str) |
---|
| 234 | str => new_str |
---|
| 235 | |
---|
| 236 | END SUBROUTINE rm_stratum |
---|
| 237 | |
---|
| 238 | !======================================================================= |
---|
[3297] | 239 | ! To get a specific stratum in a layering |
---|
| 240 | FUNCTION get_stratum(lay,i) RESULT(str) |
---|
| 241 | |
---|
| 242 | implicit none |
---|
| 243 | |
---|
| 244 | !---- Arguments |
---|
| 245 | type(layering), intent(in) :: lay |
---|
| 246 | integer, intent(in) :: i |
---|
| 247 | type(stratum), pointer :: str |
---|
| 248 | |
---|
| 249 | !---- Local variables |
---|
| 250 | integer :: k |
---|
| 251 | |
---|
| 252 | !---- Code |
---|
| 253 | if (i < 1 .or. i > lay%nb_str) error stop 'get_stratum: requested number is beyond the number of strata of the layering!' |
---|
| 254 | k = 1 |
---|
| 255 | str => lay%bottom |
---|
| 256 | do while (k /= i) |
---|
| 257 | str => str%up |
---|
| 258 | k = k + 1 |
---|
| 259 | enddo |
---|
| 260 | |
---|
| 261 | END FUNCTION get_stratum |
---|
| 262 | |
---|
| 263 | !======================================================================= |
---|
[3286] | 264 | ! To initialize the layering |
---|
| 265 | SUBROUTINE ini_layering(this) |
---|
| 266 | |
---|
| 267 | implicit none |
---|
| 268 | |
---|
| 269 | !---- Arguments |
---|
| 270 | type(layering), intent(inout) :: this |
---|
| 271 | |
---|
| 272 | !---- Code |
---|
| 273 | ! Creation of three strata at the bottom of the layering |
---|
| 274 | ! 1) Dry porous deep regolith |
---|
[3430] | 275 | !call add_stratum(this,18.,-12.,0.,0.,dry_regolith_porosity,1. - dry_regolith_porosity) |
---|
[3286] | 276 | ! 2) Ice-cemented regolith (ice table) |
---|
[3430] | 277 | !call add_stratum(this,10.,-2.,0.,1. - dry_regolith_porosity,dry_regolith_porosity,0.) |
---|
[3286] | 278 | ! 3) Dry porous regolith |
---|
| 279 | call add_stratum(this,2.,0.,0.,0.,dry_regolith_porosity,1. - dry_regolith_porosity) |
---|
| 280 | |
---|
| 281 | END SUBROUTINE ini_layering |
---|
| 282 | |
---|
| 283 | !======================================================================= |
---|
| 284 | ! To delete the entire layering |
---|
| 285 | SUBROUTINE del_layering(this) |
---|
| 286 | |
---|
| 287 | implicit none |
---|
| 288 | |
---|
| 289 | !---- Arguments |
---|
| 290 | type(layering), intent(inout) :: this |
---|
| 291 | |
---|
| 292 | !---- Local variables |
---|
| 293 | type(stratum), pointer :: current, next |
---|
| 294 | |
---|
| 295 | !---- Code |
---|
| 296 | current => this%bottom |
---|
| 297 | do while (associated(current)) |
---|
| 298 | next => current%up |
---|
| 299 | deallocate(current) |
---|
| 300 | nullify(current) |
---|
| 301 | current => next |
---|
| 302 | enddo |
---|
| 303 | this%nb_str = 0 |
---|
| 304 | |
---|
| 305 | END SUBROUTINE del_layering |
---|
| 306 | |
---|
| 307 | !======================================================================= |
---|
[3297] | 308 | ! To display a layering |
---|
| 309 | SUBROUTINE print_layering(this) |
---|
[3286] | 310 | |
---|
| 311 | implicit none |
---|
| 312 | |
---|
| 313 | !---- Arguments |
---|
[3297] | 314 | type(layering), intent(in) :: this |
---|
[3286] | 315 | |
---|
| 316 | !---- Local variables |
---|
[3297] | 317 | type(stratum), pointer :: current |
---|
| 318 | integer :: i |
---|
[3286] | 319 | |
---|
| 320 | !---- Code |
---|
[3297] | 321 | current => this%top |
---|
| 322 | |
---|
| 323 | i = this%nb_str |
---|
| 324 | do while (associated(current)) |
---|
| 325 | write(*,'(a8,i4)') 'Stratum ', i |
---|
| 326 | call print_stratum(current) |
---|
| 327 | write(*,*) |
---|
| 328 | current => current%down |
---|
| 329 | i = i - 1 |
---|
[3286] | 330 | enddo |
---|
| 331 | |
---|
[3297] | 332 | END SUBROUTINE print_layering |
---|
[3286] | 333 | |
---|
| 334 | !======================================================================= |
---|
[3297] | 335 | ! To get the maximum number of "stratum" in the stratification (layerings) |
---|
| 336 | FUNCTION get_nb_str_max(stratif,ngrid,nslope) RESULT(nb_str_max) |
---|
[3286] | 337 | |
---|
| 338 | implicit none |
---|
| 339 | |
---|
| 340 | !---- Arguments |
---|
[3297] | 341 | type(layering), dimension(ngrid,nslope), intent(in) :: stratif |
---|
| 342 | integer, intent(in) :: ngrid, nslope |
---|
| 343 | integer :: nb_str_max |
---|
[3286] | 344 | |
---|
| 345 | !---- Local variables |
---|
[3297] | 346 | integer :: ig, islope |
---|
| 347 | |
---|
| 348 | !---- Code |
---|
| 349 | nb_str_max = 0 |
---|
| 350 | do islope = 1,nslope |
---|
| 351 | do ig = 1,ngrid |
---|
| 352 | nb_str_max = max(stratif(ig,islope)%nb_str,nb_str_max) |
---|
| 353 | enddo |
---|
| 354 | enddo |
---|
| 355 | |
---|
| 356 | END FUNCTION get_nb_str_max |
---|
| 357 | |
---|
| 358 | !======================================================================= |
---|
| 359 | ! To convert the stratification data structure (layerings) into an array able to be outputted |
---|
| 360 | SUBROUTINE stratif2array(stratif,ngrid,nslope,stratif_array) |
---|
| 361 | |
---|
| 362 | implicit none |
---|
| 363 | |
---|
| 364 | !---- Arguments |
---|
| 365 | integer, intent(in) :: ngrid, nslope |
---|
| 366 | type(layering), dimension(ngrid,nslope), intent(in) :: stratif |
---|
| 367 | real, dimension(:,:,:,:), allocatable, intent(inout) :: stratif_array |
---|
| 368 | |
---|
| 369 | !---- Local variables |
---|
[3286] | 370 | type(stratum), pointer :: current |
---|
[3297] | 371 | integer :: ig, islope, k |
---|
[3286] | 372 | |
---|
| 373 | !---- Code |
---|
[3297] | 374 | stratif_array = 0. |
---|
| 375 | do islope = 1,nslope |
---|
| 376 | do ig = 1,ngrid |
---|
| 377 | current => stratif(ig,islope)%bottom |
---|
| 378 | k = 1 |
---|
| 379 | do while (associated(current)) |
---|
| 380 | stratif_array(ig,islope,k,1) = current%thickness |
---|
| 381 | stratif_array(ig,islope,k,2) = current%top_elevation |
---|
| 382 | stratif_array(ig,islope,k,3) = current%co2ice_volfrac |
---|
| 383 | stratif_array(ig,islope,k,4) = current%h2oice_volfrac |
---|
| 384 | stratif_array(ig,islope,k,5) = current%dust_volfrac |
---|
| 385 | stratif_array(ig,islope,k,6) = current%air_volfrac |
---|
| 386 | current => current%up |
---|
| 387 | k = k + 1 |
---|
| 388 | enddo |
---|
| 389 | enddo |
---|
[3286] | 390 | enddo |
---|
| 391 | |
---|
[3297] | 392 | END SUBROUTINE stratif2array |
---|
[3286] | 393 | |
---|
| 394 | !======================================================================= |
---|
[3297] | 395 | ! To convert the stratification array into the stratification data structure (layerings) |
---|
| 396 | SUBROUTINE array2stratif(stratif_array,ngrid,nslope,stratif) |
---|
[3286] | 397 | |
---|
| 398 | implicit none |
---|
| 399 | |
---|
| 400 | !---- Arguments |
---|
[3297] | 401 | integer, intent(in) :: ngrid, nslope |
---|
| 402 | real, dimension(:,:,:,:), allocatable, intent(in) :: stratif_array |
---|
| 403 | type(layering), dimension(ngrid,nslope), intent(inout) :: stratif |
---|
[3286] | 404 | |
---|
| 405 | !---- Local variables |
---|
[3430] | 406 | integer :: ig, islope, k |
---|
[3286] | 407 | |
---|
| 408 | !---- Code |
---|
[3297] | 409 | do islope = 1,nslope |
---|
| 410 | do ig = 1,ngrid |
---|
[3430] | 411 | stratif(ig,islope)%bottom%thickness = stratif_array(ig,islope,1,1) |
---|
| 412 | stratif(ig,islope)%bottom%top_elevation = stratif_array(ig,islope,1,2) |
---|
| 413 | stratif(ig,islope)%bottom%co2ice_volfrac = stratif_array(ig,islope,1,3) |
---|
| 414 | stratif(ig,islope)%bottom%h2oice_volfrac = stratif_array(ig,islope,1,4) |
---|
| 415 | stratif(ig,islope)%bottom%dust_volfrac = stratif_array(ig,islope,1,5) |
---|
| 416 | stratif(ig,islope)%bottom%air_volfrac = stratif_array(ig,islope,1,6) |
---|
| 417 | do k = 2,size(stratif_array,3) |
---|
[3297] | 418 | if (all(abs(stratif_array(ig,islope,k,:)) < eps)) exit |
---|
| 419 | call add_stratum(stratif(ig,islope),stratif_array(ig,islope,k,1),stratif_array(ig,islope,k,2),stratif_array(ig,islope,k,3),stratif_array(ig,islope,k,4),stratif_array(ig,islope,k,5),stratif_array(ig,islope,k,6)) |
---|
| 420 | enddo |
---|
| 421 | enddo |
---|
[3286] | 422 | enddo |
---|
| 423 | |
---|
[3297] | 424 | END SUBROUTINE array2stratif |
---|
[3286] | 425 | |
---|
| 426 | !======================================================================= |
---|
[3297] | 427 | ! To display a stratification (layerings) |
---|
| 428 | SUBROUTINE print_stratif(this,ngrid,nslope) |
---|
[3286] | 429 | |
---|
| 430 | implicit none |
---|
| 431 | |
---|
| 432 | !---- Arguments |
---|
[3297] | 433 | integer, intent(in) :: ngrid, nslope |
---|
| 434 | type(layering), dimension(ngrid,nslope), intent(in) :: this |
---|
[3286] | 435 | |
---|
[3297] | 436 | !---- Local variables |
---|
| 437 | integer :: ig, islope |
---|
| 438 | |
---|
[3286] | 439 | !---- Code |
---|
[3297] | 440 | do ig = 1,ngrid |
---|
| 441 | write(*,'(a10,i4)') 'Grid cell ', ig |
---|
| 442 | do islope = 1,nslope |
---|
| 443 | write(*,'(a13,i1)') 'Slope number ', islope |
---|
| 444 | call print_layering(this(ig,islope)) |
---|
| 445 | write(*,*) '~~~~~~~~~~' |
---|
| 446 | enddo |
---|
| 447 | write(*,*) '--------------------' |
---|
| 448 | enddo |
---|
[3286] | 449 | |
---|
[3297] | 450 | END SUBROUTINE print_stratif |
---|
[3286] | 451 | |
---|
| 452 | !======================================================================= |
---|
| 453 | ! Layering algorithm |
---|
[3498] | 454 | SUBROUTINE make_layering(this,d_co2ice,d_h2oice,d_dust,new_str,new_lag1,new_lag2,stopPEM,current1,current2) |
---|
[3286] | 455 | |
---|
| 456 | implicit none |
---|
| 457 | |
---|
| 458 | !---- Arguments |
---|
| 459 | type(layering), intent(inout) :: this |
---|
| 460 | type(stratum), pointer, intent(inout) :: current1, current2 |
---|
[3297] | 461 | logical, intent(inout) :: new_str, new_lag1, new_lag2 |
---|
| 462 | integer, intent(inout) :: stopPEM |
---|
[3498] | 463 | real, intent(in) :: d_co2ice, d_h2oice, d_dust |
---|
[3286] | 464 | |
---|
| 465 | !---- Local variables |
---|
[3498] | 466 | real :: dh_co2ice, dh_h2oice, dh_dust |
---|
[3424] | 467 | real :: h_co2ice_old, h_h2oice_old, h_dust_old |
---|
| 468 | real :: thickness, h2subl, h2subl_tot, h2lift, h2lift_tot |
---|
| 469 | real :: h_toplag |
---|
| 470 | type(stratum), pointer :: currentloc |
---|
[3286] | 471 | |
---|
| 472 | !---- Code |
---|
[3498] | 473 | dh_co2ice = d_co2ice/rho_co2ice |
---|
| 474 | dh_h2oice = d_h2oice/rho_h2oice |
---|
| 475 | dh_dust = d_dust/rho_dust |
---|
[3297] | 476 | |
---|
[3498] | 477 | if (dh_dust < 0.) then ! Dust lifting only |
---|
| 478 | if (abs(dh_co2ice) > eps .or. abs(dh_h2oice) > eps) error stop 'Situation not managed: dust lifting + CO2/H2O ice condensation/sublimation!' |
---|
[3297] | 479 | write(*,'(a)') ' Stratification -> Dust lifting' |
---|
[3498] | 480 | h2lift_tot = abs(dh_dust) |
---|
[3286] | 481 | do while (h2lift_tot > 0. .and. associated(current1)) |
---|
| 482 | ! Is the considered stratum a dust lag? |
---|
| 483 | if (abs(1. - (current1%dust_volfrac + current1%air_volfrac)) < tol) then ! Yes, we can lift dust |
---|
| 484 | h_dust_old = current1%dust_volfrac*current1%thickness |
---|
| 485 | ! How much dust can be lifted in the considered dust lag? |
---|
| 486 | if (h2lift_tot - h_dust_old <= eps) then ! There is enough to lift |
---|
| 487 | h2lift = h2lift_tot |
---|
| 488 | h2lift_tot = 0. |
---|
| 489 | call lift_dust_lags(this,current1,h2lift) |
---|
| 490 | else ! Only a fraction can be lifted and so we move to the underlying stratum |
---|
| 491 | h2lift = h_dust_old |
---|
| 492 | h2lift_tot = h2lift_tot - h2lift |
---|
| 493 | call lift_dust_lags(this,current1,h2lift) |
---|
| 494 | current1 => current1%down |
---|
| 495 | endif |
---|
| 496 | else ! No, we stop |
---|
[3297] | 497 | write(*,'(a)') ' Stratification -> Dust lifting: no dust lag!' |
---|
[3430] | 498 | stopPEM = 8 |
---|
[3286] | 499 | exit |
---|
| 500 | endif |
---|
| 501 | enddo |
---|
| 502 | if (h2lift_tot > 0.) then |
---|
[3297] | 503 | write(*,'(a)') ' Stratification -> Not enough dust in the lag layers to complete the lifting!' |
---|
[3430] | 504 | stopPEM = 8 |
---|
[3286] | 505 | endif |
---|
| 506 | |
---|
| 507 | else |
---|
| 508 | |
---|
[3331] | 509 | !------ Dust sedimentation only |
---|
[3498] | 510 | if (abs(dh_co2ice) < eps .and. abs(dh_h2oice) < eps) then |
---|
[3297] | 511 | write(*,'(a)') ' Stratification -> Dust sedimentation' |
---|
[3286] | 512 | ! New stratum at the layering top by sedimentation of dust |
---|
[3498] | 513 | thickness = dh_dust/(1. - dry_regolith_porosity) |
---|
[3331] | 514 | if (thickness > 0.) then ! Only if the stratum is building up |
---|
[3286] | 515 | if (new_str) then |
---|
[3498] | 516 | call add_stratum(this,thickness,this%top%top_elevation + thickness,0.,0.,dh_dust/thickness,dry_regolith_porosity) |
---|
[3286] | 517 | new_str = .false. |
---|
| 518 | else |
---|
| 519 | this%top%thickness = this%top%thickness + thickness |
---|
[3297] | 520 | this%top%top_elevation = this%top%top_elevation + thickness |
---|
[3286] | 521 | endif |
---|
| 522 | endif |
---|
| 523 | |
---|
| 524 | !------ Condensation of CO2 ice + H2O ice |
---|
[3498] | 525 | else if ((dh_co2ice >= 0. .and. dh_h2oice > 0.) .or. (dh_co2ice > 0. .and. dh_h2oice >= 0.)) then |
---|
[3297] | 526 | write(*,'(a)') ' Stratification -> CO2 and H2O ice condensation' |
---|
[3286] | 527 | ! New stratum at the layering top by condensation of CO2 and H2O ice |
---|
[3498] | 528 | thickness = dh_co2ice/(1. - co2ice_porosity) + dh_h2oice/(1. - h2oice_porosity) + dh_dust |
---|
[3331] | 529 | if (thickness > 0.) then ! Only if the stratum is building up |
---|
[3286] | 530 | if (new_str) then |
---|
[3498] | 531 | call add_stratum(this,thickness,this%top%top_elevation + thickness,dh_co2ice/thickness,dh_h2oice/thickness,dh_dust/thickness,1. - (dh_co2ice/thickness + dh_h2oice/thickness + dh_dust/thickness)) |
---|
[3286] | 532 | new_str = .false. |
---|
| 533 | else |
---|
| 534 | this%top%thickness = this%top%thickness + thickness |
---|
[3297] | 535 | this%top%top_elevation = this%top%top_elevation + thickness |
---|
[3286] | 536 | endif |
---|
| 537 | endif |
---|
| 538 | |
---|
| 539 | !------ Sublimation of CO2 ice + Condensation of H2O ice |
---|
[3498] | 540 | else if (dh_co2ice < 0. .and. dh_h2oice > 0.) then |
---|
[3297] | 541 | write(*,'(a)') ' Stratification -> Sublimation of CO2 ice + Condensation of H2O ice' |
---|
[3286] | 542 | ! CO2 ice sublimation in the considered stratum + New stratum for dust lag |
---|
[3498] | 543 | h2subl_tot = abs(dh_co2ice) |
---|
[3286] | 544 | do while (h2subl_tot > 0. .and. associated(current1)) |
---|
| 545 | h_co2ice_old = current1%co2ice_volfrac*current1%thickness |
---|
| 546 | h_h2oice_old = current1%h2oice_volfrac*current1%thickness |
---|
| 547 | h_dust_old = current1%dust_volfrac*current1%thickness |
---|
[3424] | 548 | |
---|
| 549 | ! How much is CO2 ice sublimation inhibited by the top dust lag? |
---|
| 550 | h_toplag = 0. |
---|
[3430] | 551 | if (associated(current1%up)) then ! If there is an upper stratum |
---|
| 552 | currentloc => current1%up |
---|
| 553 | do while (abs(1. - (currentloc%dust_volfrac + currentloc%air_volfrac)) < tol) |
---|
| 554 | h_toplag = h_toplag + currentloc%thickness |
---|
| 555 | if (.not. associated(currentloc%up)) exit |
---|
| 556 | currentloc => currentloc%up |
---|
| 557 | enddo |
---|
| 558 | endif |
---|
[3424] | 559 | h2subl_tot = h2subl_tot*fred_subl**(h_toplag/hmin_lag) |
---|
| 560 | |
---|
[3286] | 561 | ! How much CO2 ice can sublimate in the considered stratum? |
---|
| 562 | if (h2subl_tot - h_co2ice_old <= eps) then ! There is enough to sublimate |
---|
| 563 | h2subl = h2subl_tot |
---|
| 564 | h2subl_tot = 0. |
---|
| 565 | call subl_co2ice_layering(this,current1,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag1) |
---|
[3424] | 566 | else if (h_co2ice_old < eps) then ! There is nothing to sublimate |
---|
| 567 | ! Is the considered stratum a dust lag? |
---|
| 568 | if (abs(1. - (current1%dust_volfrac + current1%air_volfrac)) < tol) then ! Yes, we move to the underlying stratum |
---|
| 569 | current1 => current1%down |
---|
| 570 | new_lag1 = .true. |
---|
| 571 | else ! No, so we stop here |
---|
| 572 | exit |
---|
| 573 | endif |
---|
[3286] | 574 | else ! Only a fraction can sublimate and so we move to the underlying stratum |
---|
| 575 | h2subl = h_co2ice_old |
---|
| 576 | h2subl_tot = h2subl_tot - h2subl |
---|
| 577 | call subl_co2ice_layering(this,current1,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag1) |
---|
| 578 | current1 => current1%down |
---|
| 579 | new_lag1 = .true. |
---|
| 580 | endif |
---|
| 581 | enddo |
---|
| 582 | if (h2subl_tot > 0.) then |
---|
[3297] | 583 | write(*,'(a)') ' Stratification -> Not enough CO2 ice in the layering to complete the sublimation!' |
---|
[3430] | 584 | stopPEM = 8 |
---|
[3286] | 585 | endif |
---|
| 586 | ! New stratum at the layering top by condensation of H2O ice |
---|
[3498] | 587 | thickness = dh_h2oice/(1. - h2oice_porosity) + dh_dust |
---|
[3331] | 588 | if (thickness > 0.) then ! Only if the stratum is building up |
---|
[3286] | 589 | if (new_str) then |
---|
[3498] | 590 | call add_stratum(this,thickness,this%top%top_elevation + thickness,0.,dh_h2oice/thickness,dh_dust/thickness,1. - (dh_h2oice/thickness + dh_dust/thickness)) |
---|
[3286] | 591 | new_str = .false. |
---|
| 592 | else |
---|
| 593 | this%top%thickness = this%top%thickness + thickness |
---|
[3297] | 594 | this%top%top_elevation = this%top%top_elevation + thickness |
---|
[3286] | 595 | endif |
---|
| 596 | endif |
---|
| 597 | |
---|
| 598 | !------ Sublimation of CO2 ice + H2O ice |
---|
[3498] | 599 | else if ((dh_co2ice <= 0. .and. dh_h2oice < 0.) .or. (dh_co2ice < 0. .and. dh_h2oice <= 0.)) then |
---|
[3297] | 600 | write(*,'(a)') ' Stratification -> Sublimation of CO2 and H2O ice' |
---|
[3286] | 601 | ! CO2 ice sublimation in the considered stratum + New stratum for dust lag |
---|
[3498] | 602 | h2subl_tot = abs(dh_co2ice) |
---|
[3286] | 603 | do while (h2subl_tot > 0. .and. associated(current1)) |
---|
| 604 | h_co2ice_old = current1%co2ice_volfrac*current1%thickness |
---|
| 605 | h_h2oice_old = current1%h2oice_volfrac*current1%thickness |
---|
| 606 | h_dust_old = current1%dust_volfrac*current1%thickness |
---|
[3424] | 607 | |
---|
| 608 | ! How much is CO2 ice sublimation inhibited by the top dust lag? |
---|
| 609 | h_toplag = 0. |
---|
[3430] | 610 | if (associated(current1%up)) then ! If there is an upper stratum |
---|
| 611 | currentloc => current1%up |
---|
| 612 | do while (abs(1. - (currentloc%dust_volfrac + currentloc%air_volfrac)) < tol) |
---|
| 613 | h_toplag = h_toplag + currentloc%thickness |
---|
| 614 | if (.not. associated(currentloc%up)) exit |
---|
| 615 | currentloc => currentloc%up |
---|
| 616 | enddo |
---|
| 617 | endif |
---|
[3424] | 618 | h2subl_tot = h2subl_tot*fred_subl**(h_toplag/hmin_lag) |
---|
| 619 | |
---|
[3286] | 620 | ! How much CO2 ice can sublimate in the considered stratum? |
---|
| 621 | if (h2subl_tot - h_co2ice_old <= eps) then ! There is enough to sublimate |
---|
| 622 | h2subl = h2subl_tot |
---|
| 623 | h2subl_tot = 0. |
---|
| 624 | call subl_co2ice_layering(this,current1,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag1) |
---|
[3424] | 625 | else if (h_co2ice_old < eps) then ! There is nothing to sublimate |
---|
| 626 | ! Is the considered stratum a dust lag? |
---|
| 627 | if (abs(1. - (current1%dust_volfrac + current1%air_volfrac)) < tol) then ! Yes, we move to the underlying stratum |
---|
| 628 | current1 => current1%down |
---|
| 629 | new_lag1 = .true. |
---|
| 630 | else ! No, so we stop here |
---|
| 631 | exit |
---|
| 632 | endif |
---|
[3286] | 633 | else ! Only a fraction can sublimate and so we move to the underlying stratum |
---|
| 634 | h2subl = h_co2ice_old |
---|
| 635 | h2subl_tot = h2subl_tot - h2subl |
---|
| 636 | call subl_co2ice_layering(this,current1,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag1) |
---|
| 637 | current1 => current1%down |
---|
| 638 | new_lag1 = .true. |
---|
| 639 | endif |
---|
| 640 | enddo |
---|
| 641 | if (h2subl_tot > 0.) then |
---|
[3297] | 642 | write(*,'(a)') ' Stratification -> Not enough CO2 ice in the layering to complete the sublimation!' |
---|
[3430] | 643 | stopPEM = 8 |
---|
[3286] | 644 | endif |
---|
| 645 | ! H2O ice sublimation in the considered stratum + New stratum for dust lag |
---|
[3498] | 646 | h2subl_tot = abs(dh_h2oice) |
---|
[3286] | 647 | do while (h2subl_tot > 0. .and. associated(current2)) |
---|
| 648 | h_co2ice_old = current2%co2ice_volfrac*current2%thickness |
---|
| 649 | h_h2oice_old = current2%h2oice_volfrac*current2%thickness |
---|
| 650 | h_dust_old = current2%dust_volfrac*current2%thickness |
---|
[3424] | 651 | |
---|
[3430] | 652 | ! How much is H2O ice sublimation inhibited by the top dust lag? |
---|
[3424] | 653 | h_toplag = 0. |
---|
[3430] | 654 | if (associated(current2%up)) then ! If there is an upper stratum |
---|
| 655 | currentloc => current2%up |
---|
| 656 | do while (abs(1. - (currentloc%dust_volfrac + currentloc%air_volfrac)) < tol) |
---|
| 657 | h_toplag = h_toplag + currentloc%thickness |
---|
| 658 | if (.not. associated(currentloc%up)) exit |
---|
| 659 | currentloc => currentloc%up |
---|
| 660 | enddo |
---|
| 661 | endif |
---|
[3424] | 662 | h2subl_tot = h2subl_tot*fred_subl**(h_toplag/hmin_lag) |
---|
| 663 | |
---|
[3286] | 664 | ! How much H2O ice can sublimate in the considered stratum? |
---|
| 665 | if (h2subl_tot - h_h2oice_old <= eps) then ! There is enough to sublimate |
---|
| 666 | h2subl = h2subl_tot |
---|
| 667 | h2subl_tot = 0. |
---|
| 668 | call subl_h2oice_layering(this,current2,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag2) |
---|
[3424] | 669 | else if (h_h2oice_old < eps) then ! There is nothing to sublimate |
---|
| 670 | ! Is the considered stratum a dust lag? |
---|
| 671 | if (abs(1. - (current1%dust_volfrac + current1%air_volfrac)) < tol) then ! Yes, we move to the underlying stratum |
---|
| 672 | current1 => current1%down |
---|
| 673 | new_lag1 = .true. |
---|
| 674 | else ! No, so we stop here |
---|
| 675 | exit |
---|
| 676 | endif |
---|
[3286] | 677 | else ! Only a fraction can sublimate and so we move to the underlying stratum |
---|
| 678 | h2subl = h_h2oice_old |
---|
| 679 | h2subl_tot = h2subl_tot - h2subl |
---|
| 680 | call subl_h2oice_layering(this,current2,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag2) |
---|
| 681 | current2 => current2%down |
---|
| 682 | new_lag2 = .true. |
---|
| 683 | endif |
---|
| 684 | enddo |
---|
| 685 | if (h2subl_tot > 0.) then |
---|
[3297] | 686 | write(*,'(a)') ' Stratification -> Not enough H2O ice in the layering to complete the sublimation!' |
---|
[3430] | 687 | stopPEM = 8 |
---|
[3286] | 688 | endif |
---|
| 689 | |
---|
| 690 | !------ Condensation of CO2 ice + Sublimation of H2O ice |
---|
[3498] | 691 | else if (dh_co2ice > 0. .and. dh_h2oice < 0.) then |
---|
[3286] | 692 | error stop 'Impossible situation: CO2 ice condensation + H2O ice sublimation!' |
---|
| 693 | endif |
---|
| 694 | endif |
---|
| 695 | |
---|
| 696 | END SUBROUTINE make_layering |
---|
| 697 | |
---|
[3297] | 698 | !======================================================================= |
---|
| 699 | ! To sublimate CO2 ice in the layering |
---|
| 700 | SUBROUTINE subl_co2ice_layering(this,str,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag) |
---|
| 701 | |
---|
| 702 | implicit none |
---|
| 703 | |
---|
| 704 | !---- Arguments |
---|
| 705 | type(layering), intent(inout) :: this |
---|
| 706 | type(stratum), pointer, intent(inout) :: str |
---|
| 707 | logical, intent(inout) :: new_lag |
---|
| 708 | real, intent(in) :: h2subl, h_co2ice_old, h_h2oice_old, h_dust_old |
---|
| 709 | |
---|
| 710 | !---- Local variables |
---|
| 711 | real :: r_subl, hsubl_dust, h_lag |
---|
| 712 | type(stratum), pointer :: current |
---|
| 713 | |
---|
| 714 | !---- Code |
---|
| 715 | ! How much dust does CO2 ice sublimation involve to create the lag? |
---|
| 716 | r_subl = h2subl/(1. - co2ice_porosity) & |
---|
| 717 | /(str%thickness*(str%co2ice_volfrac/(1. - co2ice_porosity) + str%h2oice_volfrac/(1. - h2oice_porosity))) |
---|
| 718 | hsubl_dust = r_subl*str%dust_volfrac*str%thickness |
---|
[3321] | 719 | |
---|
[3297] | 720 | str%thickness = str%thickness - h2subl/(1. - co2ice_porosity) - hsubl_dust |
---|
[3321] | 721 | if (str%thickness < tol) then |
---|
| 722 | ! Remove the sublimating stratum if there is no ice anymore |
---|
| 723 | call rm_stratum(this,str) |
---|
| 724 | else |
---|
| 725 | ! Update of properties in the sublimating stratum |
---|
| 726 | str%top_elevation = str%top_elevation - h2subl/(1. - co2ice_porosity) - hsubl_dust |
---|
| 727 | str%co2ice_volfrac = (h_co2ice_old - h2subl)/str%thickness |
---|
| 728 | str%h2oice_volfrac = h_h2oice_old/str%thickness |
---|
| 729 | str%dust_volfrac = (h_dust_old - hsubl_dust)/str%thickness |
---|
| 730 | str%air_volfrac = 1. - (str%co2ice_volfrac + str%h2oice_volfrac + str%dust_volfrac) |
---|
| 731 | ! Correct the value of top_elevation for the upper strata |
---|
| 732 | current => str%up |
---|
| 733 | do while (associated(current)) |
---|
| 734 | current%top_elevation = current%down%top_elevation + current%thickness |
---|
| 735 | current => current%up |
---|
| 736 | enddo |
---|
| 737 | endif |
---|
| 738 | |
---|
[3297] | 739 | ! New stratum = dust lag |
---|
| 740 | h_lag = hsubl_dust/(1. - dry_lag_porosity) |
---|
| 741 | if (h_lag > 0.) then ! Only if the dust lag is building up |
---|
| 742 | if (new_lag) then |
---|
| 743 | call insert_stratum(this,str,h_lag,str%top_elevation + h_lag,0.,0.,1. - dry_lag_porosity,dry_lag_porosity) |
---|
| 744 | new_lag = .false. |
---|
| 745 | else |
---|
| 746 | str%up%thickness = str%up%thickness + h_lag |
---|
| 747 | str%up%top_elevation = str%up%top_elevation + h_lag |
---|
| 748 | endif |
---|
| 749 | endif |
---|
| 750 | |
---|
| 751 | END SUBROUTINE subl_co2ice_layering |
---|
| 752 | |
---|
| 753 | !======================================================================= |
---|
| 754 | ! To sublimate H2O ice in the layering |
---|
| 755 | SUBROUTINE subl_h2oice_layering(this,str,h2subl,h_co2ice_old,h_h2oice_old,h_dust_old,new_lag) |
---|
| 756 | |
---|
| 757 | implicit none |
---|
| 758 | |
---|
| 759 | !---- Arguments |
---|
| 760 | type(layering), intent(inout) :: this |
---|
| 761 | type(stratum), pointer, intent(inout) :: str |
---|
| 762 | logical, intent(inout) :: new_lag |
---|
| 763 | real, intent(in) :: h2subl, h_co2ice_old, h_h2oice_old, h_dust_old |
---|
| 764 | |
---|
| 765 | !---- Local variables |
---|
| 766 | real :: r_subl, hsubl_dust, h_lag |
---|
| 767 | type(stratum), pointer :: current |
---|
| 768 | |
---|
| 769 | !---- Code |
---|
| 770 | ! How much dust does CO2 ice sublimation involve to create the lag? |
---|
| 771 | r_subl = h2subl/(1. - h2oice_porosity) & |
---|
| 772 | /(str%thickness*(str%co2ice_volfrac/(1. - co2ice_porosity) + str%h2oice_volfrac/(1. - h2oice_porosity))) |
---|
| 773 | hsubl_dust = r_subl*str%dust_volfrac*str%thickness |
---|
[3321] | 774 | |
---|
[3297] | 775 | str%thickness = str%thickness - h2subl/(1. - h2oice_porosity) - hsubl_dust |
---|
[3321] | 776 | if (str%thickness < tol) then |
---|
| 777 | ! Remove the sublimating stratum if there is no ice anymore |
---|
| 778 | call rm_stratum(this,str) |
---|
| 779 | else |
---|
| 780 | ! Update of properties in the sublimating stratum |
---|
| 781 | str%top_elevation = str%top_elevation - h2subl/(1. - h2oice_porosity) - hsubl_dust |
---|
| 782 | str%co2ice_volfrac = h_co2ice_old/str%thickness |
---|
| 783 | str%h2oice_volfrac = (h_h2oice_old - h2subl)/str%thickness |
---|
| 784 | str%dust_volfrac = (h_dust_old - hsubl_dust)/str%thickness |
---|
| 785 | str%air_volfrac = 1. - (str%co2ice_volfrac + str%h2oice_volfrac + str%dust_volfrac) |
---|
| 786 | ! Correct the value of top_elevation for the upper strata |
---|
| 787 | current => str%up |
---|
| 788 | do while (associated(current)) |
---|
| 789 | current%top_elevation = current%down%top_elevation + current%thickness |
---|
| 790 | current => current%up |
---|
| 791 | enddo |
---|
| 792 | endif |
---|
| 793 | |
---|
[3297] | 794 | ! New stratum = dust lag |
---|
| 795 | h_lag = hsubl_dust/(1. - dry_lag_porosity) |
---|
| 796 | if (h_lag > 0.) then ! Only if the dust lag is building up |
---|
| 797 | if (new_lag) then |
---|
| 798 | call insert_stratum(this,str,h_lag,str%top_elevation + h_lag,0.,0.,1. - dry_lag_porosity,dry_lag_porosity) |
---|
| 799 | new_lag = .false. |
---|
| 800 | else |
---|
| 801 | str%up%thickness = str%up%thickness + h_lag |
---|
| 802 | str%up%top_elevation = str%up%top_elevation + h_lag |
---|
| 803 | endif |
---|
| 804 | endif |
---|
| 805 | |
---|
| 806 | END SUBROUTINE subl_h2oice_layering |
---|
| 807 | |
---|
| 808 | !======================================================================= |
---|
| 809 | ! To lift dust in the layering |
---|
| 810 | SUBROUTINE lift_dust_lags(this,str,h2lift) |
---|
| 811 | |
---|
| 812 | implicit none |
---|
| 813 | |
---|
| 814 | !---- Arguments |
---|
| 815 | type(layering), intent(inout) :: this |
---|
| 816 | type(stratum), pointer, intent(inout) :: str |
---|
| 817 | real, intent(in) :: h2lift |
---|
| 818 | |
---|
| 819 | !---- Code |
---|
| 820 | ! Update of properties in the eroding dust lag |
---|
| 821 | str%thickness = str%thickness - h2lift/(1. - str%air_volfrac) |
---|
| 822 | str%top_elevation = str%top_elevation - h2lift/(1. - str%air_volfrac) |
---|
| 823 | ! Remove the eroding dust lag if there is no dust anymore |
---|
| 824 | if (str%thickness < tol) call rm_stratum(this,str) |
---|
| 825 | |
---|
| 826 | END SUBROUTINE lift_dust_lags |
---|
| 827 | |
---|
[3286] | 828 | END MODULE layering_mod |
---|