source: palm/trunk/SOURCE/wrd_write_string.f90 @ 4186

Last change on this file since 4186 was 3687, checked in by knoop, 5 years ago

Moved all user routunes that are dependencies of the PALM core only, to user_module.f90
The files that formerly contained these routines, have been deleted.
Also module_interface routines for init_mask and last_actions have been added.

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1!> @file wrd_write_string.f90
2!------------------------------------------------------------------------------!
3! This file is part of the PALM model system.
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!
17! Copyright 1997-2019 Leibniz Universitaet Hannover
18!------------------------------------------------------------------------------!
19!
20! Current revisions:
21! -----------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: wrd_write_string.f90 3687 2019-01-22 10:42:06Z suehring $
27! Initial revision
28!
29!
30! Description:
31! ------------
32!> Calculates length of string and write the respective value together with the
33!> string into binary file(s) for restart runs
34!------------------------------------------------------------------------------!
35 
36 SUBROUTINE wrd_write_string( string )
37
38
39    USE kinds
40
41
42    IMPLICIT NONE
43
44    CHARACTER (LEN=*), INTENT (IN) ::  string  !< for storing strings in case of writing/reading restart data
45
46    INTEGER(iwp) ::  length  !< integer that specifies the length of a string in case of writing/reading restart
47                             !< data
48
49
50    length = LEN_TRIM( string )
51
52    WRITE ( 14 )  length
53    WRITE ( 14 )  string(1:length)
54
55
56 END SUBROUTINE wrd_write_string
Note: See TracBrowser for help on using the repository browser.