[2544] | 1 | !> @file date_and_time_mod.f90 |
---|
| 2 | !------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[2544] | 4 | ! |
---|
| 5 | ! PALM is free software: you can redistribute it and/or modify it under the |
---|
| 6 | ! terms of the GNU General Public License as published by the Free Software |
---|
| 7 | ! Foundation, either version 3 of the License, or (at your option) any later |
---|
| 8 | ! version. |
---|
| 9 | ! |
---|
| 10 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 13 | ! |
---|
| 14 | ! You should have received a copy of the GNU General Public License along with |
---|
| 15 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | ! |
---|
[3655] | 17 | ! Copyright 1997-2019 Leibniz Universitaet Hannover |
---|
[2544] | 18 | !------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
| 20 | ! Current revisions: |
---|
[3458] | 21 | ! ------------------ |
---|
[2544] | 22 | ! |
---|
[2701] | 23 | ! |
---|
[2544] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: date_and_time_mod.f90 3665 2019-01-10 08:28:24Z eckhard $ |
---|
[3665] | 27 | ! further tabs removed, unused variables removed |
---|
| 28 | ! |
---|
| 29 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
[3614] | 30 | ! further tabs removed |
---|
| 31 | ! |
---|
| 32 | ! 3467 2018-10-30 19:05:21Z suehring |
---|
[3467] | 33 | ! Tabs removed |
---|
| 34 | ! |
---|
| 35 | ! 3458 2018-10-30 14:51:23Z kanani |
---|
[3458] | 36 | ! from chemistry branch r3443, banzhafs: |
---|
| 37 | ! Added initial hour_of_day, hour_of_year, day_of_year and month_of_year to |
---|
| 38 | ! init_date_and_time |
---|
| 39 | ! |
---|
| 40 | ! 3298 2018-10-02 12:21:11Z kanani |
---|
[3298] | 41 | ! - Minor formatting (kanani) |
---|
| 42 | ! - Added Routines for DEFAULT mode of chemistry emissions (Russo) |
---|
| 43 | ! - Added routine for reading-in real dates: format has to be in DDMMYYYY and |
---|
| 44 | ! passed in the namelist parameter date_init (Russo) |
---|
| 45 | ! - Added calculation of several time indices useful in several routines |
---|
| 46 | ! of the model (Russo) |
---|
| 47 | ! |
---|
| 48 | ! 2718 2018-01-02 08:49:38Z maronga |
---|
[2716] | 49 | ! Corrected "Former revisions" section |
---|
| 50 | ! |
---|
| 51 | ! 2701 2017-12-15 15:40:50Z suehring |
---|
| 52 | ! Changes from last commit documented |
---|
| 53 | ! |
---|
| 54 | ! 2698 2017-12-14 18:46:24Z suehring |
---|
[2701] | 55 | ! Bugfix in definition of d_seconds_year. |
---|
[2716] | 56 | ! |
---|
| 57 | ! 2696 2017-12-14 17:12:51Z kanani |
---|
| 58 | ! Change in file header (GPL part) |
---|
[2701] | 59 | ! |
---|
[2716] | 60 | ! 2544 2017-10-13 18:09:32Z maronga |
---|
[2544] | 61 | ! Initial revision |
---|
| 62 | ! |
---|
| 63 | ! |
---|
| 64 | |
---|
| 65 | ! |
---|
| 66 | ! Description: |
---|
| 67 | ! ------------ |
---|
| 68 | !> This routine calculates all needed information on date and time used by |
---|
| 69 | !> other modules |
---|
[3298] | 70 | !> @todo Further testing and revision of routines for updating indices of |
---|
| 71 | !> emissions in the default mode |
---|
| 72 | !> @todo Add routine for recognizing leap years |
---|
| 73 | !> @todo Add recognition of exact days of week (Monday, Tuesday, etc.) |
---|
| 74 | !> @todo Reconsider whether to remove day_of_year_init from the namelist: we |
---|
| 75 | !> already implemented changes for calculating it from date_init in |
---|
| 76 | !> calc_date_and_time |
---|
[3458] | 77 | !> @todo time_utc during spin-up |
---|
[2544] | 78 | !------------------------------------------------------------------------------! |
---|
| 79 | MODULE date_and_time_mod |
---|
[3298] | 80 | |
---|
| 81 | USE control_parameters, & |
---|
| 82 | ONLY: coupling_start_time, days_since_reference_point, & |
---|
| 83 | message_string, simulated_time, time_since_reference_point |
---|
| 84 | |
---|
[2544] | 85 | USE kinds |
---|
| 86 | |
---|
[3298] | 87 | |
---|
[2544] | 88 | IMPLICIT NONE |
---|
| 89 | |
---|
| 90 | PRIVATE |
---|
| 91 | |
---|
[3298] | 92 | !-- Variables Declaration |
---|
[2544] | 93 | |
---|
[3298] | 94 | INTEGER(iwp) :: day_of_year = 0 !< day of the year (DOY) |
---|
| 95 | INTEGER(iwp) :: day_of_year_init = 0 !< DOY at model start (default: 0) |
---|
[2544] | 96 | |
---|
[3298] | 97 | ! --- Most of these indices are updated by the routine calc_date_and_time according to the current date and time of the simulation |
---|
| 98 | INTEGER(iwp) :: hour_of_year = 1 !< hour of the current year (1:8760(8784)) |
---|
| 99 | INTEGER(iwp) :: hour_of_day=1 !< hour of the current day (1:24) |
---|
| 100 | INTEGER(iwp) :: day_of_month=0 !< day of the current month (1:31) |
---|
| 101 | INTEGER(iwp) :: month_of_year=0 !< month of the current year (1:12) |
---|
| 102 | INTEGER(iwp) :: current_year=0 !< current year |
---|
| 103 | INTEGER(iwp) :: hour_call_emis=0 !< index used to call the emissions just once every hour |
---|
[2544] | 104 | |
---|
[3298] | 105 | INTEGER(iwp) :: index_mm !< index months of the default emission mode |
---|
| 106 | INTEGER(iwp) :: index_dd !< index days of the default emission mode |
---|
[3458] | 107 | INTEGER(iwp) :: index_hh !< index hours of the emission mode |
---|
[3298] | 108 | |
---|
| 109 | REAL(wp) :: time_utc !< current model time in UTC |
---|
| 110 | REAL(wp) :: time_utc_emis !< current emission module time in UTC |
---|
| 111 | REAL(wp) :: time_utc_init = 43200.0_wp !< UTC time at model start |
---|
| 112 | REAL(wp) :: time_update !< used to calculate actual second of the simulation |
---|
| 113 | |
---|
[2698] | 114 | REAL(wp), PARAMETER :: d_hours_day = 1.0_wp / 24.0_wp !< inverse of hours per day (1/24) |
---|
| 115 | REAL(wp), PARAMETER :: d_seconds_hour = 1.0_wp / 3600.0_wp !< inverse of seconds per hour (1/3600) |
---|
| 116 | REAL(wp), PARAMETER :: d_seconds_year = 1.0_wp / 31536000.0_wp !< inverse of the seconds per year (1/(365*86400)) |
---|
[2544] | 117 | |
---|
[3458] | 118 | CHARACTER(len=8) :: date_init = "21062017" !< Starting date of simulation: We selected this because it was a monday |
---|
[3298] | 119 | |
---|
| 120 | !> --- Parameters |
---|
| 121 | INTEGER, PARAMETER, DIMENSION(12) :: days = (/31,28,31,30,31,30,31,31,30,31,30,31/) ! total number of days for each month (no leap year) |
---|
| 122 | |
---|
[2544] | 123 | SAVE |
---|
| 124 | |
---|
[3298] | 125 | !-- INTERFACES PART |
---|
| 126 | !-- Read initial day and time of simulation |
---|
| 127 | INTERFACE init_date_and_time |
---|
| 128 | MODULE PROCEDURE init_date_and_time |
---|
| 129 | END INTERFACE init_date_and_time |
---|
| 130 | |
---|
| 131 | !-- Get hour index in the DEAFULT case of chemistry emissions : |
---|
| 132 | INTERFACE time_default_indices |
---|
| 133 | MODULE PROCEDURE time_mdh_indices |
---|
| 134 | MODULE PROCEDURE time_hour_indices |
---|
| 135 | END INTERFACE time_default_indices |
---|
| 136 | |
---|
[3458] | 137 | !-- Get hour index in the PRE-PROCESSED case of chemistry emissions : |
---|
| 138 | INTERFACE time_preprocessed_indices |
---|
| 139 | MODULE PROCEDURE time_preprocessed_indices |
---|
| 140 | END INTERFACE time_preprocessed_indices |
---|
| 141 | |
---|
| 142 | |
---|
[3298] | 143 | !-- Calculate current date and time |
---|
| 144 | INTERFACE calc_date_and_time |
---|
| 145 | MODULE PROCEDURE calc_date_and_time |
---|
| 146 | END INTERFACE |
---|
| 147 | |
---|
| 148 | |
---|
| 149 | !-- Public Interfaces |
---|
[3458] | 150 | PUBLIC calc_date_and_time, time_default_indices, init_date_and_time, time_preprocessed_indices |
---|
[3298] | 151 | |
---|
| 152 | !-- Public Variables |
---|
| 153 | PUBLIC date_init, d_hours_day, d_seconds_hour, d_seconds_year, & |
---|
| 154 | day_of_year, day_of_year_init, time_utc, time_utc_init, day_of_month, & |
---|
| 155 | month_of_year, index_mm, index_dd, index_hh, hour_of_day, hour_of_year, & |
---|
| 156 | hour_call_emis |
---|
| 157 | |
---|
[2544] | 158 | CONTAINS |
---|
| 159 | |
---|
[3298] | 160 | |
---|
| 161 | !------------------------------------------------------------------------------! |
---|
| 162 | !> Reads starting date from namelist |
---|
| 163 | !------------------------------------------------------------------------------! |
---|
| 164 | |
---|
| 165 | SUBROUTINE init_date_and_time |
---|
| 166 | |
---|
| 167 | IMPLICIT NONE |
---|
| 168 | |
---|
[3458] | 169 | !-- Variables Definition |
---|
| 170 | INTEGER :: i_mon !< Index for going through the different months |
---|
| 171 | |
---|
[3298] | 172 | IF (day_of_year_init == 0) THEN |
---|
| 173 | ! Day of the month at starting time |
---|
| 174 | READ(UNIT=date_init(1:2),fmt=*)day_of_month |
---|
| 175 | |
---|
| 176 | ! Month of the year at starting time |
---|
| 177 | READ(UNIT=date_init(3:4),fmt=*)month_of_year |
---|
| 178 | |
---|
| 179 | ! Year at starting time |
---|
| 180 | READ(UNIT=date_init(5:8),fmt=*)current_year |
---|
| 181 | |
---|
| 182 | ENDIF |
---|
| 183 | |
---|
[3458] | 184 | |
---|
| 185 | !-- Calculate initial hour of the day: the first hour of the day is from 00:00:00 to 00:59:59. |
---|
| 186 | |
---|
| 187 | hour_of_day = INT( FLOOR( time_utc_init/3600.0_wp ) ) + 1 |
---|
| 188 | |
---|
| 189 | !-- Calculate initial day day_of_year_init in case date_init is given or day_of_year_init is given |
---|
| 190 | IF ( day_of_year_init == 0 ) THEN |
---|
| 191 | |
---|
| 192 | !> Condition for printing an error when date_init is not provided when day_of_year_init is not given in the namelist or when the format of the date is not the one required by PALM. |
---|
| 193 | IF ( day_of_month .GT. 0 .AND. day_of_month .LE. 31 .AND. month_of_year .GT. 0 .AND. month_of_year .LE. 12) THEN |
---|
| 194 | |
---|
| 195 | IF ( month_of_year == 1 ) THEN !!month of year is read in input |
---|
| 196 | |
---|
| 197 | day_of_year_init = day_of_month |
---|
| 198 | |
---|
| 199 | ELSE |
---|
| 200 | |
---|
| 201 | day_of_year_init= SUM(days( 1:(month_of_year-1) )) + day_of_month !day_of_month is read in input in this case |
---|
| 202 | |
---|
| 203 | ENDIF |
---|
| 204 | !kanani: Revise, we cannot force users to provide date_init, maybe set a default value? |
---|
| 205 | ! ELSE |
---|
| 206 | ! |
---|
| 207 | ! message_string = 'date_init not provided in the namelist or' // & |
---|
| 208 | ! ' given in the wrong format: MUST BE DDMMYYYY' |
---|
| 209 | ! CALL message( 'calc_date_and_time', 'DT0100', 2, 2, 0, 6, 0 ) |
---|
| 210 | |
---|
| 211 | ENDIF |
---|
| 212 | |
---|
| 213 | ENDIF |
---|
| 214 | |
---|
| 215 | |
---|
| 216 | !-- Initial day of the year |
---|
| 217 | day_of_year = day_of_year_init |
---|
| 218 | |
---|
| 219 | !-- Initial hour of the year |
---|
| 220 | hour_of_year = ( (day_of_year-1) * 24 ) + hour_of_day |
---|
| 221 | |
---|
| 222 | !--Initial day of the month and month of the year |
---|
| 223 | !> -------------------------------------------------------------------------------- |
---|
| 224 | !> The first case is when date_init is not provided: we only know day_of_year_init |
---|
| 225 | IF ( month_of_year == 0 .AND. day_of_month == 0) THEN |
---|
| 226 | |
---|
| 227 | |
---|
| 228 | IF ( day_of_year .LE. 31 ) THEN |
---|
| 229 | |
---|
| 230 | month_of_year=1 |
---|
| 231 | day_of_month=day_of_year |
---|
| 232 | |
---|
| 233 | ELSE |
---|
| 234 | |
---|
| 235 | DO i_mon=2,12 !january is considered in the first case |
---|
| 236 | IF ( day_of_year .LE. SUM(days(1:i_mon)) .AND. day_of_year .GT. SUM(days(1:(i_mon-1))) ) THEN |
---|
| 237 | |
---|
| 238 | month_of_year=i_mon |
---|
| 239 | |
---|
| 240 | day_of_month=INT(MOD(day_of_year, SUM(days(1:(i_mon-1))))) |
---|
| 241 | |
---|
| 242 | GOTO 38 |
---|
| 243 | |
---|
| 244 | ENDIF |
---|
| 245 | |
---|
| 246 | 38 ENDDO |
---|
| 247 | ENDIF |
---|
| 248 | !> -------------------------------------------------------------------------------- |
---|
| 249 | !> in the second condition both day of month and month_of_year are either given in input (passed to date_init) or we are in some day successive to the initial one, so that day_of_month has already be computed in previous step |
---|
| 250 | !>TBD: something to calculate the current year is missing |
---|
| 251 | ELSEIF ( day_of_month .GT. 0 .AND. day_of_month .LE. 31 .AND. month_of_year .GT. 0 .AND. month_of_year .LE. 12) THEN |
---|
| 252 | |
---|
| 253 | !> calculate month_of_year. TBD: test the condition when day_of_year==31 |
---|
| 254 | |
---|
| 255 | IF (day_of_year==1) THEN !> this allows to turn from december to January when passing from a year to another |
---|
| 256 | |
---|
| 257 | month_of_year = 1 |
---|
| 258 | |
---|
| 259 | ELSE IF (day_of_year .GT. 1 .AND. day_of_year .GT. SUM(days(1:month_of_year))) THEN |
---|
| 260 | |
---|
| 261 | month_of_year = month_of_year + 1 |
---|
| 262 | |
---|
| 263 | ENDIF |
---|
| 264 | |
---|
| 265 | !> calculate day_of_month |
---|
| 266 | IF ( month_of_year == 1 ) THEN |
---|
| 267 | |
---|
| 268 | day_of_month=day_of_year |
---|
| 269 | |
---|
| 270 | ELSE |
---|
| 271 | |
---|
| 272 | day_of_month=INT(MOD(day_of_year, SUM(days(1:(month_of_year-1))))) |
---|
| 273 | |
---|
| 274 | ENDIF |
---|
| 275 | |
---|
| 276 | |
---|
| 277 | ELSE |
---|
| 278 | |
---|
| 279 | !> Condition when date_init is provided but it is given in the wrong format |
---|
| 280 | message_string = 'date_init not provided in the namelist or' // & |
---|
| 281 | ' given in the wrong format: MUST BE DDMMYYYY' |
---|
| 282 | CALL message( 'init_date_and_time', 'DT0102', 2, 2, 0, 6, 0 ) |
---|
| 283 | |
---|
| 284 | ENDIF |
---|
| 285 | |
---|
| 286 | |
---|
[3298] | 287 | END SUBROUTINE init_date_and_time |
---|
| 288 | |
---|
[2544] | 289 | !------------------------------------------------------------------------------! |
---|
| 290 | ! Description: |
---|
| 291 | ! ------------ |
---|
[3298] | 292 | !> Calculate current date and time of the simulation |
---|
[2544] | 293 | !------------------------------------------------------------------------------! |
---|
| 294 | |
---|
| 295 | SUBROUTINE calc_date_and_time |
---|
| 296 | |
---|
| 297 | IMPLICIT NONE |
---|
| 298 | |
---|
[3298] | 299 | !-- Variables Definition |
---|
[3665] | 300 | INTEGER :: i_mon !< Index for going through the different months |
---|
[3298] | 301 | |
---|
| 302 | !> Update simulation time in seconds |
---|
| 303 | time_update = simulated_time-coupling_start_time |
---|
| 304 | |
---|
| 305 | !-- Calculate current day of the simulated time |
---|
| 306 | days_since_reference_point=INT(FLOOR( (time_utc_init + time_update) & |
---|
| 307 | / 86400.0_wp ) ) |
---|
| 308 | |
---|
| 309 | !-- Calculate actual UTC time |
---|
[2544] | 310 | time_utc = MOD((time_utc_init + time_since_reference_point), 86400.0_wp) |
---|
| 311 | |
---|
[3458] | 312 | !sB PRILIMINARY workaround for time_utc changes due to changes in time_since_reference_point in |
---|
| 313 | !sB radiation_model_mod during runtime: |
---|
[3298] | 314 | time_utc_emis = MOD((time_utc_init + time_update), 86400.0_wp) |
---|
[2544] | 315 | |
---|
[3298] | 316 | !-- Calculate initial day of the year: it is calculated only once. In fact, day_of_year_init is initialized to 0 and then a positive value is passed. This condition is also called only when day_of_year_init is not given in the namelist. |
---|
| 317 | |
---|
| 318 | IF ( day_of_year_init == 0 ) THEN |
---|
| 319 | |
---|
| 320 | !> Condition for printing an error when date_init is not provided when day_of_year_init is not given in the namelist or when the format of the date is not the one required by PALM. |
---|
| 321 | IF ( day_of_month .GT. 0 .AND. day_of_month .LE. 31 .AND. month_of_year .GT. 0 .AND. month_of_year .LE. 12) THEN |
---|
| 322 | |
---|
| 323 | IF ( month_of_year == 1 ) THEN !!month of year is read in input |
---|
| 324 | |
---|
| 325 | day_of_year_init = day_of_month |
---|
| 326 | |
---|
| 327 | ELSE |
---|
| 328 | |
---|
| 329 | day_of_year_init= SUM(days( 1:(month_of_year-1) )) + day_of_month !day_of_month is read in input in this case |
---|
| 330 | |
---|
| 331 | ENDIF |
---|
| 332 | !kanani: Revise, we cannot force users to provide date_init, maybe set a default value? |
---|
| 333 | ! ELSE |
---|
| 334 | ! |
---|
| 335 | ! message_string = 'date_init not provided in the namelist or' // & |
---|
| 336 | ! ' given in the wrong format: MUST BE DDMMYYYY' |
---|
| 337 | ! CALL message( 'calc_date_and_time', 'DT0100', 2, 2, 0, 6, 0 ) |
---|
| 338 | |
---|
| 339 | ENDIF |
---|
| 340 | |
---|
| 341 | ENDIF |
---|
| 342 | |
---|
| 343 | !-- Calculate actual hour of the day: the first hour of the day is from 00:00:00 to 00:59:59. |
---|
| 344 | |
---|
| 345 | hour_of_day = INT( FLOOR( time_utc_emis/3600.0_wp ) ) + 1 |
---|
| 346 | |
---|
| 347 | !-- Calculate current day of the year !TBD: considetr leap years |
---|
| 348 | IF ( (day_of_year_init + days_since_reference_point) .GT. 365 ) THEN |
---|
| 349 | |
---|
| 350 | day_of_year=INT(MOD((day_of_year_init + days_since_reference_point), 365.0_wp)) |
---|
| 351 | |
---|
| 352 | ELSE |
---|
| 353 | |
---|
| 354 | day_of_year = day_of_year_init + days_since_reference_point |
---|
| 355 | |
---|
| 356 | ENDIF |
---|
| 357 | |
---|
| 358 | ! |
---|
| 359 | !-- Calculate current hour of the year |
---|
| 360 | hour_of_year = ( (day_of_year-1) * 24 ) + hour_of_day !> actual hour of the year |
---|
| 361 | |
---|
| 362 | |
---|
| 363 | ! |
---|
| 364 | !-- UPDATE actual day of the month and month of the year |
---|
| 365 | !> -------------------------------------------------------------------------------- |
---|
| 366 | !> The first case is when date_init is not provided: we only know day_of_year_init |
---|
| 367 | IF ( month_of_year == 0 .AND. day_of_month == 0) THEN |
---|
| 368 | |
---|
| 369 | !> The first case is when date_init is not provided: we only know day_of_year_init |
---|
| 370 | !DO i_mon=1,12 |
---|
| 371 | !IF (day_of_year .LE. SUM(days(1:i_mon))) THEN |
---|
| 372 | IF ( day_of_year .LE. 31 ) THEN |
---|
| 373 | |
---|
| 374 | month_of_year=1 |
---|
| 375 | day_of_month=day_of_year |
---|
| 376 | |
---|
| 377 | ELSE |
---|
| 378 | |
---|
| 379 | DO i_mon=2,12 !january is considered in the first case |
---|
| 380 | IF ( day_of_year .LE. SUM(days(1:i_mon)) .AND. day_of_year .GT. SUM(days(1:(i_mon-1))) ) THEN |
---|
| 381 | |
---|
| 382 | month_of_year=i_mon |
---|
| 383 | |
---|
| 384 | day_of_month=INT(MOD(day_of_year, SUM(days(1:(i_mon-1))))) |
---|
| 385 | |
---|
| 386 | GOTO 38 |
---|
| 387 | |
---|
| 388 | ENDIF |
---|
| 389 | |
---|
| 390 | 38 ENDDO |
---|
| 391 | ENDIF |
---|
| 392 | !> -------------------------------------------------------------------------------- |
---|
| 393 | !> in the second condition both day of month and month_of_year are either given in input (passed to date_init) or we are in some day successive to the initial one, so that day_of_month has already be computed in previous step |
---|
| 394 | !>TBD: something to calculate the current year is missing |
---|
| 395 | ELSEIF ( day_of_month .GT. 0 .AND. day_of_month .LE. 31 .AND. month_of_year .GT. 0 .AND. month_of_year .LE. 12) THEN |
---|
| 396 | |
---|
| 397 | !> calculate month_of_year. TBD: test the condition when day_of_year==31 |
---|
| 398 | |
---|
| 399 | IF (day_of_year==1) THEN !> this allows to turn from december to January when passing from a year to another |
---|
| 400 | |
---|
| 401 | month_of_year = 1 |
---|
| 402 | |
---|
| 403 | ELSE IF (day_of_year .GT. 1 .AND. day_of_year .GT. SUM(days(1:month_of_year))) THEN |
---|
| 404 | |
---|
| 405 | month_of_year = month_of_year + 1 |
---|
| 406 | |
---|
| 407 | ENDIF |
---|
| 408 | |
---|
| 409 | !> calculate day_of_month |
---|
| 410 | IF ( month_of_year == 1 ) THEN |
---|
| 411 | |
---|
| 412 | day_of_month=day_of_year |
---|
| 413 | |
---|
| 414 | ELSE |
---|
| 415 | |
---|
| 416 | day_of_month=INT(MOD(day_of_year, SUM(days(1:(month_of_year-1))))) |
---|
| 417 | |
---|
| 418 | ENDIF |
---|
| 419 | |
---|
| 420 | |
---|
| 421 | |
---|
| 422 | |
---|
| 423 | ELSE |
---|
| 424 | |
---|
| 425 | !> Condition when date_init is provided but it is given in the wrong format |
---|
| 426 | message_string = 'date_init not provided in the namelist or' // & |
---|
| 427 | ' given in the wrong format: MUST BE DDMMYYYY' |
---|
| 428 | CALL message( 'calc_date_and_time', 'DT0101', 2, 2, 0, 6, 0 ) |
---|
| 429 | |
---|
| 430 | ENDIF |
---|
[3458] | 431 | |
---|
[2544] | 432 | END SUBROUTINE calc_date_and_time |
---|
| 433 | |
---|
[3458] | 434 | |
---|
[3298] | 435 | !------------------------------------------------------------------------------! |
---|
| 436 | ! Description: |
---|
| 437 | ! ------------ |
---|
[3458] | 438 | !> This routine determines the time factor index in the PRE-PROCESSED emissions mode. |
---|
| 439 | !------------------------------------------------------------------------------! |
---|
| 440 | |
---|
| 441 | SUBROUTINE time_preprocessed_indices(index_hh) |
---|
| 442 | |
---|
| 443 | USE indices |
---|
| 444 | |
---|
| 445 | IMPLICIT NONE |
---|
| 446 | |
---|
| 447 | ! |
---|
| 448 | !-- In/output |
---|
| 449 | INTEGER, INTENT(INOUT) :: index_hh !> Index Hour |
---|
| 450 | ! |
---|
| 451 | !-- Additional Variables for calculateing indices |
---|
| 452 | !-- Constants |
---|
| 453 | INTEGER, PARAMETER :: nhour = 24 |
---|
| 454 | |
---|
| 455 | IF (days_since_reference_point == 0) THEN |
---|
| 456 | |
---|
| 457 | index_hh=hour_of_day |
---|
| 458 | |
---|
| 459 | ELSE |
---|
| 460 | |
---|
| 461 | index_hh=(days_since_reference_point*nhour)+(hour_of_day) |
---|
| 462 | |
---|
| 463 | ENDIF |
---|
| 464 | |
---|
| 465 | |
---|
| 466 | END SUBROUTINE time_preprocessed_indices |
---|
| 467 | |
---|
| 468 | |
---|
| 469 | !------------------------------------------------------------------------------! |
---|
| 470 | ! Description: |
---|
| 471 | ! ------------ |
---|
[3298] | 472 | !> This routine determines the time factor index in the mdh case of the DEFAULT chemistry emissions mode. |
---|
| 473 | !------------------------------------------------------------------------------! |
---|
[2544] | 474 | |
---|
[3298] | 475 | SUBROUTINE time_mdh_indices(daytype_mdh,mo, dd, hh, index_mm, index_dd, index_hh) |
---|
[2544] | 476 | |
---|
[3298] | 477 | USE indices |
---|
| 478 | |
---|
| 479 | IMPLICIT NONE |
---|
| 480 | |
---|
| 481 | !> IN/OUTPUT |
---|
| 482 | INTEGER, INTENT(INOUT) :: mo !> Month of year |
---|
| 483 | INTEGER, INTENT(INOUT) :: dd !> Day of month |
---|
| 484 | INTEGER, INTENT(INOUT) :: hh !> Hour of day |
---|
| 485 | INTEGER, INTENT(INOUT) :: index_mm !> Index Month |
---|
| 486 | INTEGER, INTENT(INOUT) :: index_dd !> Index Day |
---|
| 487 | INTEGER, INTENT(INOUT) :: index_hh !> Index Hour |
---|
| 488 | |
---|
| 489 | CHARACTER(len=80), INTENT(INOUT) :: daytype_mdh !> type of the day in mdh mode: one of 1-WORKDAY |
---|
| 490 | ! 2-WEEKEND |
---|
| 491 | ! 3-HOLIDAY |
---|
| 492 | |
---|
| 493 | REAL(wp) :: frac_day=0 |
---|
| 494 | |
---|
| 495 | !> ------------------------------------------------------------------------ |
---|
| 496 | |
---|
[3665] | 497 | INTEGER :: weekday |
---|
[3298] | 498 | |
---|
| 499 | !> CONSTANTS |
---|
| 500 | INTEGER, PARAMETER :: nmonth = 12 |
---|
| 501 | INTEGER, PARAMETER :: nday = 7 |
---|
| 502 | INTEGER, PARAMETER :: nhour = 24 |
---|
| 503 | |
---|
| 504 | frac_day= (dd-1)/nday !> indicates the week of the month, supposing the month starts on monday |
---|
| 505 | |
---|
| 506 | ! 1:7 1:31 7 (0:30)/7 |
---|
| 507 | weekday = dd-( nday * (INT( CEILING( frac_day ) ) ) ) ! for now we let the year start on Monday. |
---|
| 508 | |
---|
| 509 | !TBD: set weekday correct based on date |
---|
| 510 | index_mm = mo |
---|
| 511 | index_dd = nmonth + weekday !> Index of the days in the mdh mode (13:20) |
---|
| 512 | |
---|
| 513 | SELECT CASE(TRIM(daytype_mdh)) |
---|
| 514 | |
---|
[3614] | 515 | CASE ("workday") |
---|
| 516 | |
---|
| 517 | index_hh = nmonth+ nday + hh |
---|
[3298] | 518 | |
---|
[3614] | 519 | CASE ("weekend") |
---|
| 520 | |
---|
| 521 | index_hh = nmonth+ nday + nhour + hh |
---|
[3298] | 522 | |
---|
[3614] | 523 | CASE ("holiday") |
---|
| 524 | |
---|
| 525 | index_hh = nmonth+ nday + 2*nhour + hh |
---|
| 526 | |
---|
[3298] | 527 | END SELECT |
---|
| 528 | |
---|
| 529 | |
---|
| 530 | END SUBROUTINE time_mdh_indices |
---|
| 531 | |
---|
| 532 | !------------------------------------------------------------------------------! |
---|
| 533 | ! Description: |
---|
| 534 | ! ------------ |
---|
| 535 | !> This routine determines the time factor index in the HOURLY case of the DEFAULT emissions mode. |
---|
| 536 | !------------------------------------------------------------------------------! |
---|
| 537 | |
---|
| 538 | SUBROUTINE time_hour_indices(mo,dd,hh,index_hh) |
---|
| 539 | |
---|
| 540 | USE indices |
---|
| 541 | |
---|
| 542 | IMPLICIT NONE |
---|
| 543 | |
---|
| 544 | !> IN/OUTPUT |
---|
[3665] | 545 | INTEGER, INTENT(INOUT) :: mo !> Month |
---|
| 546 | INTEGER, INTENT(INOUT) :: hh !> Hour |
---|
| 547 | INTEGER, INTENT(INOUT) :: dd !> Day |
---|
| 548 | INTEGER, INTENT(INOUT) :: index_hh !> Index Hour |
---|
[3298] | 549 | |
---|
| 550 | !> Additional Variables for calculateing indices |
---|
[3665] | 551 | INTEGER :: index_mm !> Index Month |
---|
| 552 | INTEGER :: index_dd !> Index Day |
---|
| 553 | INTEGER :: i_mon !> Index for going through the different months |
---|
| 554 | INTEGER :: sum_dd !> Sum days |
---|
[3298] | 555 | |
---|
| 556 | !> CONSTANTS |
---|
[3665] | 557 | INTEGER, PARAMETER :: nhour = 24 |
---|
[3298] | 558 | INTEGER, PARAMETER, DIMENSION(12) :: days = (/31,28,31,30,31,30,31,31,30,31,30,31/) ! no leap year |
---|
| 559 | |
---|
| 560 | |
---|
| 561 | index_mm = mo-1 |
---|
| 562 | index_dd = dd-1 |
---|
| 563 | sum_dd=0 |
---|
| 564 | |
---|
| 565 | IF (mo == 1) THEN |
---|
| 566 | |
---|
| 567 | index_hh=(index_dd*nhour)+hh |
---|
| 568 | |
---|
| 569 | ELSE |
---|
| 570 | |
---|
[3614] | 571 | DO i_mon=1,index_mm |
---|
[3298] | 572 | |
---|
[3614] | 573 | sum_dd=sum_dd+days(i_mon) |
---|
| 574 | |
---|
| 575 | ENDDO |
---|
[3298] | 576 | |
---|
[3614] | 577 | index_hh=(sum_dd*nhour)+(index_dd*nhour)+(hh) |
---|
[3298] | 578 | |
---|
| 579 | ENDIF |
---|
| 580 | |
---|
| 581 | |
---|
| 582 | END SUBROUTINE time_hour_indices |
---|
| 583 | |
---|
| 584 | |
---|
| 585 | END MODULE date_and_time_mod |
---|