forked from jwookey/sheba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheba_main.f90
36 lines (30 loc) · 1.32 KB
/
sheba_main.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
!===============================================================================
! S H E B A - Shear-wave Birefringence Analysis
!===============================================================================
! This software is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
!===============================================================================
!
! James Wookey, School of Earth Sciences, University of Bristol
!
!===============================================================================
program sheba_main
!===============================================================================
use f90sac ! use the f90sac module
use sheba_config ! use the config module
!-------------------------------------------------------------------------------
implicit none
real, parameter :: sheba_version = 1.01
! ** print copyright information
call sheba_banner(sheba_version)
! ** initialise configuration
call sheba_config_init()
! ** get input file information
call read_config()
! ** run the analysis
call sheba()
! ** finish up
stop
end program sheba_main
!===============================================================================