forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule_checkerror.F
395 lines (330 loc) · 15.4 KB
/
module_checkerror.F
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
!Modified to use wrf error routines by Eric Kemp, 2 Aug 2011
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
module module_checkerror
implicit none
!--------------------------------------------------------------------------------------------------
! = Goddard Satellite Data Simulator Unit =
!
! NASA GSFC makes no representations about the suitability of software for any purpose.
! It is provided as is without express or implied warranty. Neither NASA GSFC (the US
! government) nor Principal Developers (their organizations) shall be liable for any
! damages suffered by the user of this software. In addition, please do not distribute
! the software to third party.
!
! Comments:
! This routine checks the presence of anomalous physical value.
!
! 1. How to use
!
! You can call subroutine checkerror like this.
!
! ! input input input input input input/output
! call checkerror( "subroutine name', 'parameter name', i_index, j_index, k_index, float_array(i,k,j) )
!
! a) 'subroutine_name' must be the subroutine name that call check_error.
!
!
! b) 'parameter name' can be must be following characters:
!
! 'temperature_K' This is temperature in Kelvin.
! 'temperature_degC' This is temperature in degree Celcius.
! 'pressure_Pa' This is pressure in Pascal.
! 'radiationflux_W/m2' This is radiation flux in Watts per square meter.
! 'condensate_g/m3' This is cloud rain condensates in gram per cubic meter.
! 'condensate_kg/kg' This is cloud rain condensate in mixing ratio.
! 'aerosol_g/m3' This is aerosol in gram per cubic meter.
! 'aerosol_ug/kg' This is aerosol in mixing ratio.
! 'albedo' This is surface albedo.
! 'emissivity' This is surface emissivity
!
! c) float_array can be either single or double precision. But it must be zero dimension for interface.
!
!
! History:
! 02/2010 Toshi Matsui@NASA GSFC ; Initial
!
!----------------------------------------------------------------------------------------------
!
! Encapsulation control
!
private ! All parameters and subourtines are non accessible.
public checkerror ! Only this function is accesible.
! ################################################################################
! ############################ Module Interface ###########################
! ################################################################################
interface checkerror
module procedure checkerror_single
module procedure checkerror_double
! module procedure checkerror_integer
end interface
contains
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
subroutine checkerror_single(subroutine_name, param_id,i,k,j,input_real)
use, intrinsic :: ieee_arithmetic
implicit none
character*(*),intent(in) :: subroutine_name
character*(*),intent(in) :: param_id
integer,intent(in) :: i,k,j ! array index
real(4),intent(in) :: input_real
character(len=132) :: string
select case(trim(param_id))
case('temperature_K')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('temperature_degC')
if(input_real < -274. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('pressure_Pa')
if(input_real < 0. .or. input_real > 200000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('radiationflux_W/m2')
if(input_real < -10000. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('condensate_g/m3')
if(input_real < 0. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('condensate_kg/kg')
if(input_real < 0. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('aerosol_g/m3')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('aerosol_ug/kg')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('albedo')
if(input_real < 0. .or. input_real > 1. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('emissivity')
if(input_real < 0. .or. input_real > 1. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case default
! print*,'MSG checkeror_float: There is no such param_id',trim(param_id)
! stop
write(string,*) 'MSG checkerror_float: There is no such param_id',trim(param_id)
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end select
! EMK...Check for infinity and NaNs
if (abs(input_real) >= huge(input_real)) then
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' Infinity at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end if
if (ieee_is_nan(input_real)) then
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' NaN at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end if
end subroutine checkerror_single
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
subroutine checkerror_double(subroutine_name, param_id,i,k,j,input_real)
use, intrinsic :: ieee_arithmetic
implicit none
character*(*),intent(in) :: subroutine_name
character*(*),intent(in) :: param_id
integer,intent(in) :: i,k,j ! array index
real(8),intent(in) :: input_real
character(len=132) :: string
select case(trim(param_id))
case('temperature_K')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('temperature_degC')
if(input_real < -274. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('pressure_Pa')
if(input_real < 0. .or. input_real > 200000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('radiationflux_W/m2')
if(input_real < -10000. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('condensate_g/m3')
if(input_real < 0. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('condensate_kg/kg')
if(input_real < 0. .or. input_real > 10000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('aerosol_g/m3')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('aerosol_ug/kg')
if(input_real < 0. .or. input_real > 1000. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('albedo')
if(input_real < 0. .or. input_real > 1. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case('emissivity')
if(input_real < 0. .or. input_real > 1. ) then
! print*, 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
! ' out of range at grid(i,k,j) =',i,k,j
! stop 'Terminate run.'
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' out of range at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
endif
case default
! print*,'MSG checkerror_double: There is no such param_id',trim(param_id)
! stop
write(string,*) 'MSG checkerror_double: There is no such param_id',trim(param_id)
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end select
! EMK...Check for infinity and NaNs
if (abs(input_real) >= huge(input_real)) then
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' Infinity at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end if
if (ieee_is_nan(input_real)) then
write(string,*) 'MSG '//trim(subroutine_name)//': '//trim(param_id)//' =',input_real,&
' NaN at grid(i,k,j) =',i,k,j
call wrf_message(string)
call wrf_error_fatal('Terminate run.')
end if
end subroutine checkerror_double
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
end module module_checkerror
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU
!SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU SDSU