Changeset 8444
- Timestamp:
- 2017-08-18T16:35:46+02:00 (7 years ago)
- Location:
- branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC/ASM/bias.F90
r8435 r8444 959 959 960 960 IF(lwp) WRITE(numout,*) 'dyn_bias( kt ) calculating rhd_pc, kt =', kt 961 961 962 CALL eos( tsw, rhd_pc, rhop, fsdept_n(:,:,:) ) 962 963 -
branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC/TRA/eosbn2.F90
r6277 r8444 456 456 END SELECT 457 457 ! 458 CALL lbc_lnk( prd, 'T', 1.0_wp ) 459 ! 458 460 IF(ln_ctl) CALL prt_ctl( tab3d_1=prd, clinfo1=' eos-pot: ', tab3d_2=prhop, clinfo2=' pot : ', ovlap=1, kdim=jpk ) 459 461 ! -
branches/UKMO/dev_r5518_pcbias_ipc/NEMOGCM/NEMO/OPA_SRC/step.F90
r8435 r8444 33 33 USE step_oce ! time stepping definition modules 34 34 USE iom 35 35 36 IMPLICIT NONE 36 37 PRIVATE … … 273 274 CALL tra_nxt( kstp ) ! tracer fields at next time step 274 275 IF( ln_sto_eos ) CALL sto_pts( tsn ) ! Random T/S fluctuations 275 CALL eos ( tsa, rhd, rhop, fsdept_n(:,:,:) ) ! Time-filtered in situ density for hpg computation 276 CALL lbc_lnk( rhd, 'T', 1.0_wp ) 276 CALL eos ( tsa, rhd, rhop, fsdept_n(:,:,:) ) ! Time-filtered in situ density for hpg computation 277 277 IF( ln_zps .AND. .NOT. ln_isfcav) & 278 278 & CALL zps_hde ( kstp, jpts, tsa, gtsu, gtsv, & ! Partial steps: before horizontal gradient … … 286 286 IF ( .NOT. lk_dynspg_ts ) THEN ! eos already called in time-split case 287 287 IF( ln_sto_eos ) CALL sto_pts( tsn ) ! Random T/S fluctuations 288 CALL eos ( tsn, rhd, rhop, fsdept_n(:,:,:) ) ! now in situ density for hpg computation 289 CALL lbc_lnk( rhd, 'T', 1.0_wp ) 288 CALL eos ( tsn, rhd, rhop, fsdept_n(:,:,:) ) ! now in situ density for hpg computation 290 289 IF( ln_zps .AND. .NOT. ln_isfcav) & 291 290 & CALL zps_hde ( kstp, jpts, tsn, gtsu, gtsv, & ! Partial steps: before horizontal gradient
Note: See TracChangeset
for help on using the changeset viewer.