Changeset 7476
- Timestamp:
- 2016-12-08T11:11:29+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_25hr_mean_assim_bkg/NEMOGCM/NEMO/OPA_SRC/ASM/asmbkg.F90
r6809 r7476 102 102 CALL ctl_stop( 'asm_wri_bkg: unable to allocate tn_tavg' ) ; RETURN 103 103 ENDIF 104 tn_tavg =0104 tn_tavg(:,:,:)=0 105 105 ALLOCATE( sn_tavg(jpi,jpj,jpk), STAT=ierror ) 106 106 IF( ierror > 0 ) THEN 107 107 CALL ctl_stop( 'asm_wri_bkg: unable to allocate sn_tavg' ) ; RETURN 108 108 ENDIF 109 sn_tavg =0109 sn_tavg(:,:,:)=0 110 110 ALLOCATE( un_tavg(jpi,jpj,jpk), STAT=ierror ) 111 111 IF( ierror > 0 ) THEN 112 112 CALL ctl_stop( 'asm_wri_bkg: unable to allocate un_tavg' ) ; RETURN 113 113 ENDIF 114 un_tavg =0114 un_tavg(:,:,:)=0 115 115 ALLOCATE( vn_tavg(jpi,jpj,jpk), STAT=ierror ) 116 116 IF( ierror > 0 ) THEN 117 117 CALL ctl_stop( 'asm_wri_bkg: unable to allocate vn_tavg' ) ; RETURN 118 118 ENDIF 119 vn_tavg =0119 vn_tavg(:,:,:)=0 120 120 ALLOCATE( sshn_tavg(jpi,jpj), STAT=ierror ) 121 121 IF( ierror > 0 ) THEN 122 122 CALL ctl_stop( 'asm_wri_bkg: unable to allocate sshn_tavg' ) ; RETURN 123 123 ENDIF 124 sshn_tavg =0124 sshn_tavg(:,:)=0 125 125 #if defined key_zdftke 126 126 ALLOCATE( en_tavg(jpi,jpj,jpk), STAT=ierror ) … … 128 128 CALL ctl_stop( 'asm_wri_bkg: unable to allocate en_tavg' ) ; RETURN 129 129 ENDIF 130 en_tavg =0130 en_tavg(:,:,:)=0 131 131 #endif 132 132 ALLOCATE( avt_tavg(jpi,jpj,jpk), STAT=ierror ) … … 134 134 CALL ctl_stop( 'asm_wri_bkg: unable to allocate avt_tavg' ) ; RETURN 135 135 ENDIF 136 avt_tavg =0136 avt_tavg(:,:,:)=0 137 137 138 138 numtimes_tavg = REAL ( nitavgbkg_r - nn_it000 + 1 )
Note: See TracChangeset
for help on using the changeset viewer.