SICOPOLIS V3.3
sico_vars_m.F90
Go to the documentation of this file.
1 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 !
3 ! Module : s i c o _ v a r s _ m
4 !
5 !> @file
6 !!
7 !! Declarations of global variables for SICOPOLIS (for the ANT domain).
8 !!
9 !! @section Copyright
10 !!
11 !! Copyright 2009-2017 Ralf Greve
12 !!
13 !! @section License
14 !!
15 !! This file is part of SICOPOLIS.
16 !!
17 !! SICOPOLIS is free software: you can redistribute it and/or modify
18 !! it under the terms of the GNU General Public License as published by
19 !! the Free Software Foundation, either version 3 of the License, or
20 !! (at your option) any later version.
21 !!
22 !! SICOPOLIS is distributed in the hope that it will be useful,
23 !! but WITHOUT ANY WARRANTY; without even the implied warranty of
24 !! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 !! GNU General Public License for more details.
26 !!
27 !! You should have received a copy of the GNU General Public License
28 !! along with SICOPOLIS. If not, see <http://www.gnu.org/licenses/>.
29 !<
30 !+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31 
32 !-------------------------------------------------------------------------------
33 !> Declarations of global variables for SICOPOLIS (for the ANT domain).
34 !<------------------------------------------------------------------------------
36 
37 use sico_types_m
38 
39 implicit none
40 save
41 
42 #if (defined(INITMIP_SMB_ANOM_FILE))
43 !> as_anom_initmip(j,i): InitMIP anomaly of the accumulation-ablation function
44 !> at the ice surface (surface mass balance)
45  real(dp), dimension(0:JMAX,0:IMAX) :: as_anom_initmip
46 #endif
47 
48 #if (defined(INITMIP_BMB_ANOM_FILE))
49 !> ab_anom_initmip(j,i): InitMIP anomaly of the basal melting rate
50 !> under floating ice
51  real(dp), dimension(0:JMAX,0:IMAX) :: ab_anom_initmip
52 #endif
53 
54 !> n_sector(j,i): Marker for the different sectors for ice shelf basal melting.
55  integer(i2b), dimension(0:JMAX,0:IMAX) :: n_sector
56 
57 #if (defined(SEDI_SLIDE) \
58  && sedi_slide==2) /* with sediment sliding */
59 !> maske_sedi(j,i): Sediment mask.
60 !> 1: hard rock,
61 !> 7: soft sediment,
62 !> 2: ocean.
63  integer(i2b), dimension(0:JMAX,0:IMAX) :: maske_sedi
64 !> r_mask_sedi(j,i): Continuous sediment mask.
65 !> 0: hard rock,
66 !> 1: soft sediment or ocean,
67 !> between 0 and 1: transition.
68  real(dp), dimension(0:JMAX,0:IMAX) :: r_mask_sedi
69 #endif
70 
71 end module sico_vars_m
72 !
integer(i2b), dimension(0:jmax, 0:imax) n_sector
n_sector(j,i): Marker for the different sectors for ice shelf basal melting.
Definition: sico_vars_m.F90:55
integer(i2b), dimension(0:jmax, 0:imax) maske_sedi
maske_sedi(j,i): Sediment mask. 1: hard rock, 7: soft sediment, 2: ocean.
Definition: sico_vars_m.F90:46
Declarations of global variables for SICOPOLIS (for the ANT domain).
Definition: sico_vars_m.F90:35
Declarations of kind types for SICOPOLIS.