Changeset 12718
- Timestamp:
- 2020-04-08T17:21:05+02:00 (3 years ago)
- Location:
- NEMO/branches/2020/r12581_ticket2418
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2020/r12581_ticket2418/cfgs/C1D_PAPA/EXPREF/file_def_nemo-oce.xml
r9799 r12718 53 53 <file id="file4" name_suffix="_grid_W" description="ocean W grid variables" > 54 54 <field field_ref="e3w" /> 55 <field field_ref="woce" name="wo" />56 55 <field field_ref="avt" name="difvho" /> 57 56 </file> -
NEMO/branches/2020/r12581_ticket2418/cfgs/C1D_PAPA/EXPREF/namelist_cfg
r12489 r12718 49 49 &namdom ! time and space domain 50 50 !----------------------------------------------------------------------- 51 ln_linssh = .true. ! =T linear free surface ==>> model level are fixed in time 52 ! 51 53 rn_Dt = 360. ! time step for the dynamics and tracer 52 54 / … … 358 360 &namdyn_spg ! surface pressure gradient (default: NO selection) 359 361 !----------------------------------------------------------------------- 360 ln_dynspg_ts = .true. ! split-explicit free surface361 ln_bt_fw = .false. ! Forward integration of barotropic Eqs.362 ln_bt_av = .true. ! Time filtering of barotropic variables363 362 / 364 363 !----------------------------------------------------------------------- -
NEMO/branches/2020/r12581_ticket2418/src/OCE/C1D/step_c1d.F90
r12593 r12718 85 85 !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 86 86 CALL dia_wri( kstp, Nnn ) ! ocean model: outputs 87 IF( lk_diahth )CALL dia_hth( kstp, Nnn ) ! Thermocline depth (20°C)87 CALL dia_hth( kstp, Nnn ) ! Thermocline depth (20°C) 88 88 89 89 … … 108 108 CALL eos( ts(:,:,:,:,Nnn), rhd, rhop, gdept_0(:,:,:) ) ! now potential density for zdfmxl 109 109 IF( ln_zdfnpc ) CALL tra_npc( kstp, Nnn, Nrhs, ts, Naa ) ! applied non penetrative convective adjustment on (t,s) 110 CALL tra_atf( kstp, Nbb, Nnn, Nrhs, Naa, ts ) ! time filtering of "now" tracer fields 111 112 110 CALL tra_atf( kstp, Nbb, Nnn, Naa, ts ) ! time filtering of "now" tracer arrays 113 111 114 112 !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -
NEMO/branches/2020/r12581_ticket2418/tests/STATION_ASF/MY_SRC/stpctl.F90
r12704 r12718 142 142 IF( lwm .AND. kt /= nitend ) istatus = NF90_CLOSE(nrunid) 143 143 ! get global loc on the min/max 144 CALL mpp_maxloc( 'stpctl', taum(:,:) 145 CALL mpp_maxloc( 'stpctl',ABS( qns(:,:) ) 146 CALL mpp_minloc( 'stpctl', emp(:,:) - 273.15_wp, tmask(:,:,1), zzz, iloc(1:2,3) )144 CALL mpp_maxloc( 'stpctl', taum(:,:) , tmask(:,:,1), zzz, iloc(1:2,1) ) ! mpp_maxloc ok if mask = F 145 CALL mpp_maxloc( 'stpctl',ABS( qns(:,:) ), tmask(:,:,1), zzz, iloc(1:2,2) ) 146 CALL mpp_minloc( 'stpctl',ABS( emp(:,:) ), tmask(:,:,1), zzz, iloc(1:2,3) ) 147 147 ! find which subdomain has the max. 148 148 zarea(:) = 0._wp … … 153 153 ELSE ! find local min and max locations: 154 154 ! if we are here, this means that the subdomain contains some oce points -> no need to test the mask used in maxloc 155 iloc(1:2,1) = MAXLOC( taum(:,:) 156 iloc(1:2,2) = MAXLOC( ABS( qns(:,:) ) 157 iloc(1:2,3) = MINLOC( emp(:,:) - 273.15_wp, mask = llmsk ) + (/ nimpp - 1, njmpp - 1/)155 iloc(1:2,1) = MAXLOC( taum(:,:) , mask = llmsk ) + (/ nimpp - 1, njmpp - 1/) 156 iloc(1:2,2) = MAXLOC( ABS( qns(:,:) ), mask = llmsk ) + (/ nimpp - 1, njmpp - 1/) 157 iloc(1:2,3) = MINLOC( ABS( emp(:,:) ), mask = llmsk ) + (/ nimpp - 1, njmpp - 1/) 158 158 zarea(:) = narea ! this is local information 159 159 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.