source: flexpart.git/src/skplin.f90

10.4.1_peseiGFS_025bugfixes+enhancementsdevrelease-10release-10.4.1scaling-bug
Last change on this file was 92fab65, checked in by Ignacio Pisso <ip@…>, 4 years ago

add SPDX-License-Identifier to all .f90 files

  • Property mode set to 100644
File size: 1.6 KB
Line 
1! SPDX-FileCopyrightText: FLEXPART 1998-2019, see flexpart_license.txt
2! SPDX-License-Identifier: GPL-3.0-or-later
3
4subroutine skplin(nlines,iunit)
5  !                    i      i
6  !*****************************************************************************
7  !                                                                            *
8  !   This routine reads nlines from unit iunit and discards them              *
9  !                                                                            *
10  !   Authors: Petra Seibert                                                   *
11  !                                                                            *
12  !   31 Dec 1998                                                              *
13  !                                                                            *
14  !*****************************************************************************
15  !                                                                            *
16  ! Variables:                                                                 *
17  !                                                                            *
18  ! iunit   unit number from which lines are to be skipped                     *
19  ! nlines  number of lines to be skipped                                      *
20  !                                                                            *
21  !*****************************************************************************
22
23  implicit none
24
25  integer :: i,iunit, nlines
26
27  do i=1,nlines
28    read(iunit,*)
29  end do
30
31end subroutine skplin
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG