Changeset 7652
- Timestamp:
- 2017-02-06T17:14:30+01:00 (8 years ago)
- Location:
- branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC/ASM/bias.F90
r7553 r7652 317 317 IF ( (.NOT. ln_incpc) .AND. ln_incpc_only) & 318 318 & CALL ctl_stop (' if you set ln_incpc_only to .true. then you need to set ln_incpc to .true. as well' ) 319 319 320 WRITE(numout,*) ' time step is = ',rdt,'you choose to write pcbias at nn_bias_itwrt = ',nn_bias_itwrt,'and end of iau is rday/rdt=',rday/rdt 320 321 ENDIF 321 322 IF( .NOT. ln_bias ) RETURN -
branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC/DYN/dynhpg.F90
r6328 r7652 99 99 ! 100 100 IF ( ln_bias .AND. ln_bias_pc_app ) THEN 101 IF(lwp) THEN 102 WRITE(numout,*) " ! store orig density, use pressure corrected density" 103 ENDIF 101 104 z_rhd_st(:,:,:) = rhd(:,:,:) ! store orig density 102 105 rhd(:,:,:) = rhd_pc(:,:,:) ! use pressure corrected density … … 127 130 ! 128 131 IF ( ln_bias .AND. ln_bias_pc_app ) THEN 132 IF(lwp) THEN 133 WRITE(numout,*) " ! restore original density" 134 ENDIF 129 135 rhd(:,:,:) = z_rhd_st(:,:,:) ! restore original density 130 136 gru(:,:) = z_gru_st(:,:)
Note: See TracChangeset
for help on using the changeset viewer.