Changeset 9419 for branches/NERC
- Timestamp:
- 2018-03-22T17:47:56+01:00 (7 years ago)
- Location:
- branches/NERC/dev_r5518_GO6_CFC_CDIAC/NEMOGCM/NEMO/TOP_SRC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/NERC/dev_r5518_GO6_CFC_CDIAC/NEMOGCM/NEMO/TOP_SRC/CFC/trcsms_cfc.F90
r9163 r9419 140 140 !! 2 -- Hindcast/proj 141 141 iyear_beg = MOD(nyear, 100) 142 IF (iyear_beg < 20) iyear_beg = iyear_beg + 100142 IF (iyear_beg < 15) iyear_beg = iyear_beg + 100 143 143 !! JPALM -- Same than previously, if iyear_beg is out of P_cfc range, 144 144 !! we want to set p_CFC to 0.00 --> set iyear_beg = 10 145 IF ((iyear_beg < 30) .OR. (iyear_beg > 115)) iyear_beg = 10 145 IF ( nyear < 1930) iyear_beg = 10 146 IF ( nyear >= 2015) iyear_beg = 114 146 147 ENDIF 147 148 !! -
branches/NERC/dev_r5518_GO6_CFC_CDIAC/NEMOGCM/NEMO/TOP_SRC/trcini.F90
r9262 r9419 36 36 USE sbc_oce 37 37 USE trcice ! tracers in sea ice 38 # if defined key_medusa 38 39 USE sms_medusa ! MEDUSA initialisation 40 # endif 39 41 IMPLICIT NONE 40 42 PRIVATE … … 70 72 REAL(wp), DIMENSION(6) :: loc_cycletot3, loc_cycletot2 71 73 REAL(wp), DIMENSION(jpi,jpj,jpk) :: ztot3d 72 REAL(wp), DIMENSION(jpi,jpj) :: ztot2d, carea 73 # endif 74 REAL(wp), DIMENSION(jpi,jpj) :: ztot2d 75 # endif 76 REAL(wp), DIMENSION(jpi,jpj) :: carea 74 77 CHARACTER (len=25) :: charout 75 78 !!---------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.