[1682] | 1 | !> @file user_init_land_surface.f90 |
---|
[4497] | 2 | !--------------------------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1496] | 4 | ! |
---|
[4497] | 5 | ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General |
---|
| 6 | ! Public License as published by the Free Software Foundation, either version 3 of the License, or |
---|
| 7 | ! (at your option) any later version. |
---|
[1496] | 8 | ! |
---|
[4497] | 9 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the |
---|
| 10 | ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
---|
| 11 | ! Public License for more details. |
---|
[1496] | 12 | ! |
---|
[4497] | 13 | ! You should have received a copy of the GNU General Public License along with PALM. If not, see |
---|
| 14 | ! <http://www.gnu.org/licenses/>. |
---|
[1496] | 15 | ! |
---|
[4360] | 16 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
[4497] | 17 | !--------------------------------------------------------------------------------------------------! |
---|
[1496] | 18 | ! |
---|
[4497] | 19 | ! |
---|
[1496] | 20 | ! Current revisions: |
---|
| 21 | ! ----------------- |
---|
| 22 | ! |
---|
[2233] | 23 | ! |
---|
[1496] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: user_init_land_surface.f90 4497 2020-04-15 10:20:51Z moh.hefny $ |
---|
[4497] | 27 | ! file re-formatted to follow the PALM coding standard |
---|
| 28 | ! |
---|
| 29 | ! Current revisions: |
---|
| 30 | ! ----------------- |
---|
| 31 | ! |
---|
| 32 | ! |
---|
| 33 | ! 4360 2020-01-07 11:25:50Z suehring |
---|
[4182] | 34 | ! Corrected "Former revisions" section |
---|
[4497] | 35 | ! |
---|
[4182] | 36 | ! 3766 2019-02-26 16:23:41Z raasch |
---|
[3766] | 37 | ! unused variables commented out |
---|
[4497] | 38 | ! |
---|
[3766] | 39 | ! 3700 2019-01-26 17:03:42Z knoop |
---|
[2716] | 40 | ! Corrected "Former revisions" section |
---|
[4497] | 41 | ! |
---|
[4182] | 42 | ! 1496 2014-12-02 17:25:50Z maronga |
---|
| 43 | ! Initial revision |
---|
[4497] | 44 | ! |
---|
[1496] | 45 | ! Description: |
---|
| 46 | ! ------------ |
---|
[1682] | 47 | !> Execution of user-defined actions to initiate the land surface model |
---|
[4497] | 48 | !--------------------------------------------------------------------------------------------------! |
---|
[1682] | 49 | SUBROUTINE user_init_land_surface |
---|
[1496] | 50 | |
---|
[4497] | 51 | |
---|
[1496] | 52 | USE kinds |
---|
[3700] | 53 | |
---|
[1972] | 54 | USE land_surface_model_mod |
---|
[1496] | 55 | |
---|
[3700] | 56 | USE surface_mod |
---|
[2232] | 57 | |
---|
[1496] | 58 | IMPLICIT NONE |
---|
| 59 | |
---|
[3766] | 60 | ! INTEGER(iwp) :: i !< grid index |
---|
| 61 | ! INTEGER(iwp) :: j !< grid index |
---|
| 62 | ! INTEGER(iwp) :: m !< running index on 1D wall-type grid |
---|
[1496] | 63 | |
---|
| 64 | ! |
---|
[2232] | 65 | !-- Here the user-defined land surface initialization actions follow. |
---|
| 66 | !-- Example: set roughness length at natural land-surface |
---|
| 67 | ! DO m = 1, surf_lsm_h%ns |
---|
| 68 | ! surf_lsm_h%z0(m) = 0.1_wp |
---|
| 69 | ! ENDDO |
---|
[1496] | 70 | |
---|
| 71 | |
---|
| 72 | END SUBROUTINE user_init_land_surface |
---|
| 73 | |
---|