Changeset 8029 for branches/2012/dev_v3_4_STABLE_2012/NEMOGCM
- Timestamp:
- 2017-05-16T12:14:12+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2012/dev_v3_4_STABLE_2012/NEMOGCM/NEMO/OPA_SRC/ASM/asminc.F90
r8028 r8029 88 88 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: ssh_bkg, ssh_bkginc ! Background sea surface height and its increment 89 89 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: seaice_bkginc ! Increment to the background sea ice conc 90 #if defined key_cice 90 #if defined key_cice && defined key_asminc 91 91 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: ndaice_da ! ice increment tendency into CICE 92 92 #endif … … 371 371 ALLOCATE( ssh_iau(jpi,jpj) ) 372 372 #endif 373 #if defined key_cice 373 #if defined key_cice && defined key_asminc 374 374 ALLOCATE( ndaice_da(jpi,jpj) ) 375 375 #endif … … 383 383 ssh_iau(:,:) = 0.0 384 384 #endif 385 #if defined key_cice 386 ndaice_da( jpi,jpj) = 0.0385 #if defined key_cice && defined key_asminc 386 ndaice_da(:,:) = 0.0 387 387 #endif 388 388 IF ( ( ln_trainc ).OR.( ln_dyninc ).OR.( ln_sshinc ).OR.( ln_seaiceinc ) ) THEN … … 1048 1048 #endif 1049 1049 1050 #if defined key_cice 1050 #if defined key_cice && defined key_asminc 1051 1051 1052 1052 ! Pass ice increment tendency into CICE … … 1061 1061 ELSE 1062 1062 1063 #if defined key_cice 1063 #if defined key_cice && defined key_asminc 1064 1064 1065 1065 ! Zero ice increment tendency into CICE … … 1109 1109 #endif 1110 1110 1111 #if defined key_cice 1111 #if defined key_cice && defined key_asminc 1112 1112 1113 1113 ! Pass ice increment tendency into CICE - is this correct? … … 1121 1121 ELSE 1122 1122 1123 #if defined key_cice 1123 #if defined key_cice && defined key_asminc 1124 1124 1125 1125 ! Zero ice increment tendency into CICE
Note: See TracChangeset
for help on using the changeset viewer.