[1682] | 1 | !> @file user_init_radiation.f90 |
---|
[4497] | 2 | !--------------------------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1585] | 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. |
---|
[1585] | 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. |
---|
[1585] | 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/>. |
---|
[1585] | 15 | ! |
---|
[4360] | 16 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
[4497] | 17 | !--------------------------------------------------------------------------------------------------! |
---|
[1585] | 18 | ! |
---|
[4497] | 19 | ! |
---|
[1585] | 20 | ! Current revisions: |
---|
| 21 | ! ----------------- |
---|
| 22 | ! |
---|
[2001] | 23 | ! |
---|
[1585] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: user_init_radiation.f90 4497 2020-04-15 10:20:51Z moh.hefny $ |
---|
[4497] | 27 | ! file re-formatted to follow the PALM coding standard |
---|
| 28 | ! |
---|
| 29 | ! |
---|
| 30 | ! 4360 2020-01-07 11:25:50Z suehring |
---|
[4182] | 31 | ! Corrected "Former revisions" section |
---|
[4497] | 32 | ! |
---|
[4182] | 33 | ! 3768 2019-02-27 14:35:58Z raasch |
---|
[3768] | 34 | ! unused variables commented out to avoid compiler warnings |
---|
[4497] | 35 | ! |
---|
[3768] | 36 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
[2716] | 37 | ! Corrected "Former revisions" section |
---|
[4497] | 38 | ! |
---|
[4182] | 39 | ! 1585 2015-04-30 07:05:52Z maronga |
---|
| 40 | ! Initial revision |
---|
[4497] | 41 | ! |
---|
[1585] | 42 | ! Description: |
---|
| 43 | ! ------------ |
---|
[1682] | 44 | !> Execution of user-defined actions to initiate the radiation model |
---|
[4497] | 45 | !--------------------------------------------------------------------------------------------------! |
---|
[1682] | 46 | SUBROUTINE user_init_radiation |
---|
[1585] | 47 | |
---|
[4497] | 48 | |
---|
[1585] | 49 | USE arrays_3d |
---|
[4497] | 50 | |
---|
[1585] | 51 | USE control_parameters |
---|
[4497] | 52 | |
---|
[1585] | 53 | USE indices |
---|
[4497] | 54 | |
---|
[1585] | 55 | USE kinds |
---|
| 56 | |
---|
| 57 | USE radiation_model_mod |
---|
[4497] | 58 | |
---|
[1585] | 59 | USE user |
---|
| 60 | |
---|
| 61 | IMPLICIT NONE |
---|
| 62 | |
---|
[4497] | 63 | ! INTEGER(iwp) :: i !< running index |
---|
| 64 | ! INTEGER(iwp) :: j !< running index |
---|
[1585] | 65 | |
---|
| 66 | ! |
---|
| 67 | !-- Here the user-defined radiation initialization actions follow: |
---|
| 68 | |
---|
| 69 | |
---|
| 70 | |
---|
| 71 | END SUBROUTINE user_init_radiation |
---|
| 72 | |
---|