-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCONTROL.f90
22 lines (22 loc) · 1.09 KB
/
CONTROL.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
!======================================================================!
MODULE CONTROL
!----------------------------------------------------------------------!
USE DOUBLE
!----------------------------------------------------------------------!
IMPLICIT NONE
!----------------------------------------------------------------------!
INTEGER :: fi
INTEGER :: ic
INTEGER :: kt
!----------------------------------------------------------------------!
REAL(DP) :: dT ! For temperature experiments (K)
!****adf was 100
INTEGER, PARAMETER :: nfi = 100 ! No. radial files (n)
INTEGER, PARAMETER :: ncells_max = 1000 ! Max. no. cells/file (n)
INTEGER, PARAMETER :: ndays = 365 ! No. days in year (days)
!----------------------------------------------------------------------!
INTEGER :: syr ! Start year of simulation (CE)
INTEGER :: eyr ! End year of simulation (CE)
!----------------------------------------------------------------------!
END MODULE CONTROL
!======================================================================!