-
Notifications
You must be signed in to change notification settings - Fork 6
/
random_mod.f90
223 lines (149 loc) · 4.77 KB
/
random_mod.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
module random_mod
contains
subroutine sgrnd(seed)
implicit integer(a-z)
!Period parameters
integer, parameter :: N = 624
dimension mt(0:N-1)
!The array for the state vector
common /block/mti,mt
save /block/
!setting initial seeds to mt[N] using
!the generator Line 25 of Table 1 in
![KNUTH 1981, The Art of Computer Programming
!Vol. 2 (2nd Ed.), pp102]
mt(0)= iand(seed,-1)
do mti=1,N-1
mt(mti) = iand(69069 * mt(mti-1),-1)
end do
return
end subroutine sgrnd
!-----------------------------------------------------------------------
double precision function grnd()
implicit integer(a-z)
!Period parameters
integer, parameter :: N = 624
integer, parameter :: N1 = N+1
integer, parameter :: M = 397
integer, parameter :: MATA = -1727483681
integer, parameter :: UMASK = -2147483648
integer, parameter :: LMASK = 2147483647
integer, parameter :: TMASKB = -1658038656
integer, parameter :: TMASKC = -272236544
dimension mt(0:N-1)
!the array for the state vector
common /block/mti,mt
save /block/
data mti/N1/
!mti==N+1 means mt[N] is not initialized
dimension mag01(0:1)
data mag01/0, MATA/
save mag01
!mag01(x) = x * MATA for x=0,1
TSHFTU(y)=ishft(y,-11)
TSHFTS(y)=ishft(y,7)
TSHFTT(y)=ishft(y,15)
TSHFTL(y)=ishft(y,-18)
if(mti.ge.N) then
!generate N words at one time
if(mti.eq.N+1) then
!if sgrnd() has not been called,
call sgrnd(4357)
!a default initial seed is used
endif
do kk=0,N-M-1
y=ior(iand(mt(kk),UMASK),iand(mt(kk+1),LMASK))
mt(kk)=ieor(ieor(mt(kk+M),ishft(y,-1)),mag01(iand(y,1)))
end do
do kk=N-M,N-2
y=ior(iand(mt(kk),UMASK),iand(mt(kk+1),LMASK))
mt(kk)=ieor(ieor(mt(kk+(M-N)),ishft(y,-1)),mag01(iand(y,1)))
end do
y=ior(iand(mt(N-1),UMASK),iand(mt(0),LMASK))
mt(N-1)=ieor(ieor(mt(M-1),ishft(y,-1)),mag01(iand(y,1)))
mti = 0
endif
y=mt(mti)
mti=mti+1
y=ieor(y,TSHFTU(y))
y=ieor(y,iand(TSHFTS(y),TMASKB))
y=ieor(y,iand(TSHFTT(y),TMASKC))
y=ieor(y,TSHFTL(y))
if(y.lt.0) then
grnd=(dble(y)+2.0d0**32)/(2.0d0**32-1.0d0)
else
grnd=dble(y)/(2.0d0**32-1.0d0)
endif
return
end function grnd
!-----------------------------------------------------------------------
! State saving subroutines.
! Usage: call mtsave( file_name, format_character )
! call mtget( file_name, format_character )
! where format_character = 'u' or 'U' will save in unformatted form,
! otherwise state information will be written in formatted form.
!-----------------------------------------------------------------------
subroutine mtsavef( fname, forma )
!NOTE: This subroutine APPENDS to the end of the file "fname".
implicit integer (a-z)
character(*), intent(in) :: fname
character, intent(in) :: forma
integer, parameter :: N = 624
dimension mt(0:N-1)
common /block/mti,mt
save /block/
select case (forma)
case('u','U')
open(unit=10,file=trim(fname),status='UNKNOWN',form='UNFORMATTED', &
position='APPEND')
write(10)mti
write(10)mt
case default
open(unit=10,file=trim(fname),status='UNKNOWN',form='FORMATTED', &
position='APPEND')
write(10,*)mti
write(10,*)mt
end select
close(10)
return
end subroutine mtsavef
!-----------------------------------------------------------------------
subroutine mtgetf( fname, forma )
implicit integer (a-z)
character(*), intent(in) :: fname
character, intent(in) :: forma
integer, parameter :: N = 624
dimension mt(0:N-1)
common /block/mti,mt
save /block/
select case (forma)
case('u','U')
open(unit=10,file=trim(fname),status='OLD',form='UNFORMATTED')
read(10) mti
read(10) mt
case default
open(unit=10,file=trim(fname),status='OLD',form='FORMATTED')
read(10,*) mti
read(10,*) mt
end select
close(10)
return
end subroutine mtgetf
!-----------------------------------------------------------------------
subroutine rangauss(sigma,mu,x1,x2)
implicit none
real (kind=8) :: sigma,mu,x1,x2
real (kind=8) :: u1,u2,w
do
u1 = 2.d0*grnd()-1.d0
u2 = 2.d0*grnd()-1.d0
w = u1*u1+u2*u2
if (w<=1.d0) exit
end do
w = sqrt((-2.d0*log(w))/w)
x1 = mu+sigma*u1*w
x2 = mu+sigma*u2*w
return
end subroutine rangauss
!-----------------------------------------------------------------------
end module random_mod