SPEED
READ_FILEVS.f90
Go to the documentation of this file.
1
! Copyright (C) 2012 The SPEED FOUNDATION
2
! Author: Ilario Mazzieri
3
!
4
! This file is part of SPEED.
5
!
6
! SPEED is free software; you can redistribute it and/or modify it
7
! under the terms of the GNU Affero General Public License as
8
! published by the Free Software Foundation, either version 3 of the
9
! License, or (at your option) any later version.
10
!
11
! SPEED is distributed in the hope that it will be useful, but
12
! WITHOUT ANY WARRANTY; without even the implied warranty of
13
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
! Affero General Public License for more details.
15
!
16
! You should have received a copy of the GNU Affero General Public License
17
! along with SPEED. If not, see <http://www.gnu.org/licenses/>.
18
27
28
subroutine
read_filevs
(filec,num_tria,velocity,sediments)
29
30
implicit none
31
32
integer*4
:: num_tria
33
integer*4
:: i
34
integer*4
:: trash
35
36
character*70
:: filec
37
real*8,
dimension(num_tria)
:: velocity, sediments
38
39
open
(20,file=filec)
40
41
do
i = 1,num_tria
42
read
(20,*) trash, velocity(i), sediments(i)
43
enddo
44
45
close
(20)
46
47
return
48
49
end subroutine
read_filevs
50
read_filevs
subroutine read_filevs(filec, num_tria, velocity, sediments)
Reads vs30 and thickness from VS_RS.out.
Definition
READ_FILEVS.f90:29
speed
READ_FILEVS.f90
Generated by
1.9.8