Changeset 4540 for palm/trunk/SOURCE/time_to_string.f90
- Timestamp:
- May 18, 2020 3:23:29 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/time_to_string.f90
r4360 r4540 1 1 !> @file time_to_string.f90 2 !------------------------------------------------------------------------------ !2 !--------------------------------------------------------------------------------------------------! 3 3 ! This file is part of the PALM model system. 4 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. 5 ! PALM is free software: you can redistribute it and/or modify it under the terms of the GNU General 6 ! Public License as published by the Free Software Foundation, either version 3 of the License, or 7 ! (at your option) any later version. 9 8 ! 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 FOR12 ! A PARTICULAR PURPOSE. See the GNU GeneralPublic License for more details.9 ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 10 ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 11 ! Public License for more details. 13 12 ! 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/>.13 ! You should have received a copy of the GNU General Public License along with PALM. If not, see 14 ! <http://www.gnu.org/licenses/>. 16 15 ! 17 16 ! Copyright 1997-2020 Leibniz Universitaet Hannover 18 !------------------------------------------------------------------------------! 17 !--------------------------------------------------------------------------------------------------! 18 ! 19 19 ! 20 20 ! Current revisions: … … 25 25 ! ----------------- 26 26 ! $Id$ 27 ! File re-formatted to follow the PALM coding standard 28 ! 29 ! 30 ! 4360 2020-01-07 11:25:50Z suehring 27 31 ! Corrected "Former revisions" section 28 ! 32 ! 29 33 ! 3655 2019-01-07 16:51:22Z knoop 30 34 ! Corrected "Former revisions" section … … 37 41 ! ------------ 38 42 !> Transforming the time from real to character-string hh:mm:ss 39 !------------------------------------------------------------------------------ !43 !--------------------------------------------------------------------------------------------------! 40 44 FUNCTION time_to_string( time ) 41 45 42 46 43 47 USE kinds … … 45 49 IMPLICIT NONE 46 50 47 CHARACTER (LEN=9) :: time_to_string !<51 CHARACTER(LEN=9) :: time_to_string !< 48 52 49 INTEGER(iwp) :: hours !<50 INTEGER(iwp) :: minutes !<51 INTEGER(iwp) :: seconds !<53 INTEGER(iwp) :: hours !< 54 INTEGER(iwp) :: minutes !< 55 INTEGER(iwp) :: seconds !< 52 56 53 REAL(wp) :: rest_time !<54 REAL(wp) :: time !<57 REAL(wp) :: rest_time !< 58 REAL(wp) :: time !< 55 59 56 60 ! … … 64 68 !-- Build the string 65 69 IF ( hours < 100 ) THEN 66 WRITE (time_to_string,'(I2.2,'':'',I2.2,'':'',I2.2)') hours, minutes, & 67 seconds 70 WRITE (time_to_string,'(I2.2,'':'',I2.2,'':'',I2.2)') hours, minutes, seconds 68 71 ELSE 69 WRITE (time_to_string,'(I3.3,'':'',I2.2,'':'',I2.2)') hours, minutes, & 70 seconds 72 WRITE (time_to_string,'(I3.3,'':'',I2.2,'':'',I2.2)') hours, minutes, seconds 71 73 ENDIF 72 74
Note: See TracChangeset
for help on using the changeset viewer.