1 | !> @file user_init_land_surface.f90 |
---|
2 | !--------------------------------------------------------------------------------------------------! |
---|
3 | ! This file is part of the PALM model system. |
---|
4 | ! |
---|
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. |
---|
8 | ! |
---|
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. |
---|
12 | ! |
---|
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/>. |
---|
15 | ! |
---|
16 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
17 | !--------------------------------------------------------------------------------------------------! |
---|
18 | ! |
---|
19 | ! |
---|
20 | ! Current revisions: |
---|
21 | ! ----------------- |
---|
22 | ! |
---|
23 | ! |
---|
24 | ! Former revisions: |
---|
25 | ! ----------------- |
---|
26 | ! $Id: user_init_land_surface.f90 4497 2020-04-15 10:20:51Z raasch $ |
---|
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 |
---|
34 | ! Corrected "Former revisions" section |
---|
35 | ! |
---|
36 | ! 3766 2019-02-26 16:23:41Z raasch |
---|
37 | ! unused variables commented out |
---|
38 | ! |
---|
39 | ! 3700 2019-01-26 17:03:42Z knoop |
---|
40 | ! Corrected "Former revisions" section |
---|
41 | ! |
---|
42 | ! 1496 2014-12-02 17:25:50Z maronga |
---|
43 | ! Initial revision |
---|
44 | ! |
---|
45 | ! Description: |
---|
46 | ! ------------ |
---|
47 | !> Execution of user-defined actions to initiate the land surface model |
---|
48 | !--------------------------------------------------------------------------------------------------! |
---|
49 | SUBROUTINE user_init_land_surface |
---|
50 | |
---|
51 | |
---|
52 | USE kinds |
---|
53 | |
---|
54 | USE land_surface_model_mod |
---|
55 | |
---|
56 | USE surface_mod |
---|
57 | |
---|
58 | IMPLICIT NONE |
---|
59 | |
---|
60 | ! INTEGER(iwp) :: i !< grid index |
---|
61 | ! INTEGER(iwp) :: j !< grid index |
---|
62 | ! INTEGER(iwp) :: m !< running index on 1D wall-type grid |
---|
63 | |
---|
64 | ! |
---|
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 |
---|
70 | |
---|
71 | |
---|
72 | END SUBROUTINE user_init_land_surface |
---|
73 | |
---|