[1] | 1 | FUNCTION time_to_string( time ) |
---|
| 2 | |
---|
[1036] | 3 | !--------------------------------------------------------------------------------! |
---|
| 4 | ! This file is part of PALM. |
---|
| 5 | ! |
---|
| 6 | ! PALM is free software: you can redistribute it and/or modify it under the terms |
---|
| 7 | ! of the GNU General Public License as published by the Free Software Foundation, |
---|
| 8 | ! either version 3 of the License, or (at your option) any later 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 | ! |
---|
[1310] | 17 | ! Copyright 1997-2014 Leibniz Universitaet Hannover |
---|
[1036] | 18 | !--------------------------------------------------------------------------------! |
---|
| 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[1] | 21 | ! ----------------- |
---|
[1321] | 22 | ! |
---|
[1343] | 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: time_to_string.f90 1343 2014-03-26 17:07:58Z hoffmann $ |
---|
| 27 | ! |
---|
[1343] | 28 | ! 1342 2014-03-26 17:04:47Z kanani |
---|
| 29 | ! REAL constants defined as wp-kind |
---|
| 30 | ! |
---|
[1321] | 31 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
[1320] | 32 | ! kind-parameters added to all INTEGER and REAL declaration statements, |
---|
| 33 | ! kinds are defined in new module kinds, |
---|
| 34 | ! old module precision_kind is removed, |
---|
| 35 | ! revision history before 2012 removed, |
---|
| 36 | ! comment fields (!:) to be used for variable explanations added to |
---|
| 37 | ! all variable declaration statements |
---|
[1321] | 38 | ! |
---|
[1037] | 39 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
| 40 | ! code put under GPL (PALM 3.9) |
---|
| 41 | ! |
---|
[1] | 42 | ! Revision 1.1 1997/08/11 06:26:08 raasch |
---|
| 43 | ! Initial revision |
---|
| 44 | ! |
---|
| 45 | ! |
---|
| 46 | ! Description: |
---|
| 47 | ! ------------ |
---|
| 48 | ! Transforming the time from real to character-string hh:mm:ss |
---|
[3] | 49 | !------------------------------------------------------------------------------! |
---|
[1] | 50 | |
---|
[1320] | 51 | USE kinds |
---|
| 52 | |
---|
[1] | 53 | IMPLICIT NONE |
---|
| 54 | |
---|
[1320] | 55 | CHARACTER (LEN=9) :: time_to_string !: |
---|
[1] | 56 | |
---|
[1320] | 57 | INTEGER(iwp) :: hours !: |
---|
| 58 | INTEGER(iwp) :: minutes !: |
---|
| 59 | INTEGER(iwp) :: seconds !: |
---|
| 60 | |
---|
| 61 | REAL(wp) :: rest_time !: |
---|
| 62 | REAL(wp) :: time !: |
---|
| 63 | |
---|
[1] | 64 | ! |
---|
| 65 | !-- Calculate the number of hours, minutes, and seconds |
---|
[1342] | 66 | hours = INT( time / 3600.0_wp ) |
---|
| 67 | rest_time = time - hours * 3600_wp |
---|
| 68 | minutes = INT( rest_time / 60.0_wp ) |
---|
[1] | 69 | seconds = rest_time - minutes * 60 |
---|
| 70 | |
---|
| 71 | ! |
---|
| 72 | !-- Build the string |
---|
| 73 | IF ( hours < 100 ) THEN |
---|
| 74 | WRITE (time_to_string,'(I2.2,'':'',I2.2,'':'',I2.2)') hours, minutes, & |
---|
| 75 | seconds |
---|
| 76 | ELSE |
---|
| 77 | WRITE (time_to_string,'(I3.3,'':'',I2.2,'':'',I2.2)') hours, minutes, & |
---|
| 78 | seconds |
---|
| 79 | ENDIF |
---|
| 80 | |
---|
| 81 | END FUNCTION time_to_string |
---|