Changeset 3665 for palm/trunk/SOURCE/date_and_time_mod.f90
- Timestamp:
- Jan 10, 2019 8:28:24 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/date_and_time_mod.f90
r3655 r3665 25 25 ! ----------------- 26 26 ! $Id$ 27 ! further tabs removed, unused variables removed 28 ! 29 ! 3655 2019-01-07 16:51:22Z knoop 27 30 ! further tabs removed 28 31 ! … … 100 103 INTEGER(iwp) :: hour_call_emis=0 !< index used to call the emissions just once every hour 101 104 102 INTEGER(iwp) :: ihour103 105 INTEGER(iwp) :: index_mm !< index months of the default emission mode 104 106 INTEGER(iwp) :: index_dd !< index days of the default emission mode 105 107 INTEGER(iwp) :: index_hh !< index hours of the emission mode 106 INTEGER(iwp) :: hours_since_reference_point !< hours of current simulation107 108 108 109 REAL(wp) :: time_utc !< current model time in UTC … … 297 298 298 299 !-- Variables Definition 299 INTEGER 300 INTEGER :: i_mon !< Index for going through the different months 300 301 301 302 !> Update simulation time in seconds … … 494 495 !> ------------------------------------------------------------------------ 495 496 496 INTEGER 497 INTEGER :: weekday 497 498 498 499 !> CONSTANTS … … 542 543 543 544 !> IN/OUTPUT 544 INTEGER, INTENT(INOUT) 545 INTEGER, INTENT(INOUT) 546 INTEGER, INTENT(INOUT) 547 INTEGER, INTENT(INOUT) 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 548 549 549 550 !> Additional Variables for calculateing indices 550 INTEGER 551 INTEGER 552 INTEGER 553 INTEGER 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 554 555 555 556 !> CONSTANTS 556 INTEGER, PARAMETER :: nmonth=12 557 INTEGER, PARAMETER :: nday = 7 558 INTEGER, PARAMETER :: nhour = 24 557 INTEGER, PARAMETER :: nhour = 24 559 558 INTEGER, PARAMETER, DIMENSION(12) :: days = (/31,28,31,30,31,30,31,31,30,31,30,31/) ! no leap year 560 559
Note: See TracChangeset
for help on using the changeset viewer.