source: palm/trunk/SOURCE/user_init_radiation.f90 @ 4850

Last change on this file since 4850 was 4828, checked in by Giersch, 3 years ago

Copyright updated to year 2021, interface pmc_sort removed to accelarate the nesting code

  • Property svn:keywords set to Id
File size: 1.9 KB
Line 
1!> @file user_init_radiation.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-2021 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------------------------!
18!
19!
20! Current revisions:
21! -----------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: user_init_radiation.f90 4828 2021-01-05 11:21:41Z suehring $
27! file re-formatted to follow the PALM coding standard
28!
29!
30! 4360 2020-01-07 11:25:50Z suehring
31! Corrected "Former revisions" section
32!
33! 3768 2019-02-27 14:35:58Z raasch
34! unused variables commented out to avoid compiler warnings
35!
36! 3655 2019-01-07 16:51:22Z knoop
37! Corrected "Former revisions" section
38!
39! 1585 2015-04-30 07:05:52Z maronga
40! Initial revision
41!
42! Description:
43! ------------
44!> Execution of user-defined actions to initiate the radiation model
45!--------------------------------------------------------------------------------------------------!
46 SUBROUTINE user_init_radiation
47
48
49    USE arrays_3d
50
51    USE control_parameters
52
53    USE indices
54
55    USE kinds
56
57    USE radiation_model_mod
58
59    USE user
60
61    IMPLICIT NONE
62
63!    INTEGER(iwp) :: i  !< running index
64!    INTEGER(iwp) :: j  !< running index
65
66!
67!-- Here the user-defined radiation initialization actions follow:
68
69
70
71 END SUBROUTINE user_init_radiation
72
Note: See TracBrowser for help on using the repository browser.