1 | !> @file random_gauss.f90 |
---|
2 | !--------------------------------------------------------------------------------! |
---|
3 | ! This file is part of PALM. |
---|
4 | ! |
---|
5 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
6 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
7 | ! either version 3 of the License, or (at your option) any later version. |
---|
8 | ! |
---|
9 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
10 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
11 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
12 | ! |
---|
13 | ! You should have received a copy of the GNU General Public License along with |
---|
14 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
15 | ! |
---|
16 | ! Copyright 1997-2016 Leibniz Universitaet Hannover |
---|
17 | !--------------------------------------------------------------------------------! |
---|
18 | ! |
---|
19 | ! Current revisions: |
---|
20 | ! ----------------- |
---|
21 | ! |
---|
22 | ! |
---|
23 | ! Former revisions: |
---|
24 | ! ----------------- |
---|
25 | ! $Id: random_gauss.f90 1818 2016-04-06 15:53:27Z suehring $ |
---|
26 | ! |
---|
27 | ! 1682 2015-10-07 23:56:08Z knoop |
---|
28 | ! Code annotations made doxygen readable |
---|
29 | ! |
---|
30 | ! 1342 2014-03-26 17:04:47Z kanani |
---|
31 | ! REAL constants defined as wp-kind |
---|
32 | ! |
---|
33 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
34 | ! ONLY-attribute added to USE-statements, |
---|
35 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
36 | ! kinds are defined in new module kinds, |
---|
37 | ! old module precision_kind is removed, |
---|
38 | ! revision history before 2012 removed, |
---|
39 | ! comment fields (!:) to be used for variable explanations added to |
---|
40 | ! all variable declaration statements |
---|
41 | ! |
---|
42 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
43 | ! code put under GPL (PALM 3.9) |
---|
44 | ! |
---|
45 | ! RCS Log replace by Id keyword, revision history cleaned up |
---|
46 | ! |
---|
47 | ! Revision 1.1 1998/03/25 20:09:47 raasch |
---|
48 | ! Initial revision |
---|
49 | ! |
---|
50 | ! |
---|
51 | ! Description: |
---|
52 | ! ------------ |
---|
53 | !> Generates a gaussian distributed random number (mean value 1, sigma = 1) |
---|
54 | !> This routine is taken from the "numerical recipies". |
---|
55 | !------------------------------------------------------------------------------! |
---|
56 | FUNCTION random_gauss( idum, upper_limit ) |
---|
57 | |
---|
58 | |
---|
59 | USE kinds |
---|
60 | |
---|
61 | USE random_function_mod, & |
---|
62 | ONLY: random_function |
---|
63 | |
---|
64 | IMPLICIT NONE |
---|
65 | |
---|
66 | INTEGER(iwp) :: idum !< |
---|
67 | INTEGER(iwp) :: iset !< |
---|
68 | |
---|
69 | REAL(wp) :: fac !< |
---|
70 | REAL(wp) :: gset !< |
---|
71 | REAL(wp) :: random_gauss !< |
---|
72 | REAL(wp) :: rsq !< |
---|
73 | REAL(wp) :: upper_limit !< |
---|
74 | REAL(wp) :: v1 !< |
---|
75 | REAL(wp) :: v2 !< |
---|
76 | |
---|
77 | SAVE iset, gset |
---|
78 | |
---|
79 | DATA iset /0/ |
---|
80 | |
---|
81 | ! |
---|
82 | !-- Random numbers are created as long as they do not fall below the given |
---|
83 | !-- upper limit |
---|
84 | DO |
---|
85 | |
---|
86 | IF ( iset == 0 ) THEN |
---|
87 | rsq = 0.0_wp |
---|
88 | DO WHILE ( rsq >= 1.0_wp .OR. rsq == 0.0_wp ) |
---|
89 | v1 = 2.0_wp * random_function( idum ) - 1.0_wp |
---|
90 | v2 = 2.0_wp * random_function( idum ) - 1.0_wp |
---|
91 | rsq = v1**2 + v2**2 |
---|
92 | ENDDO |
---|
93 | fac = SQRT( -2.0_wp * LOG( rsq ) / rsq ) |
---|
94 | gset = v1 * fac |
---|
95 | random_gauss = v2 * fac + 1.0_wp |
---|
96 | iset = 1 |
---|
97 | ELSE |
---|
98 | random_gauss = gset + 1.0_wp |
---|
99 | iset = 0 |
---|
100 | ENDIF |
---|
101 | |
---|
102 | IF ( ABS( random_gauss - 1.0_wp ) <= upper_limit ) EXIT |
---|
103 | |
---|
104 | ENDDO |
---|
105 | |
---|
106 | END FUNCTION random_gauss |
---|