Changeset 9881
- Timestamp:
- 2018-07-05T17:43:55+02:00 (5 years ago)
- Location:
- branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO/LIM_SRC_3/iceistate.F90
r9499 r9881 21 21 USE dom_oce ! ocean domain 22 22 USE sbc_oce , ONLY : sst_m, sss_m, ln_ice_embd 23 USE sbc_ice , ONLY : tn_ice,snwice_mass, snwice_mass_b23 USE sbc_ice , ONLY : snwice_mass, snwice_mass_b 24 24 USE eosbn2 ! equation of state 25 25 USE domvvl ! Variable volume … … 353 353 END DO 354 354 ! 355 tn_ice (:,:,:) = t_su (:,:,:)356 355 t1_ice (:,:,:) = t_i (:,:,1,:) ! initialisation of 1st layer temp for coupled simu 357 356 … … 390 389 END DO 391 390 392 tn_ice (:,:,:) = t_i (:,:,1,:)393 391 t1_ice (:,:,:) = t_i (:,:,1,:) ! initialisation of 1st layer temp for coupled simu 394 392 -
branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO/LIM_SRC_3/icestp.F90
r9499 r9881 257 257 ! 258 258 fr_i (:,:) = at_i(:,:) ! initialisation of sea-ice fraction 259 t n_ice(:,:,:) = t_su(:,:,:) ! initialisation of surface temp for coupled simu259 t1_ice(:,:,:) = t_su(:,:,:) ! initialisation of surface temp for coupled simu 260 260 ! 261 261 ! ! set max concentration in both hemispheres -
branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO/LIM_SRC_3/iceupdate.F90
r9499 r9881 89 89 !! - sfx : salt flux 90 90 !! - fr_i : ice fraction 91 !! - t n_ice : sea-ice surface temperature91 !! - t1_ice : sea-ice surface temperature 92 92 !! - alb_ice : sea-ice albedo (recomputed only for coupled mode) 93 93 !! … … 190 190 !---------------------------------- 191 191 fr_i (:,:) = at_i(:,:) ! Sea-ice fraction 192 t n_ice(:,:,:) = t_su(:,:,:) ! Ice surface temperature192 t1_ice(:,:,:) = t_su(:,:,:) ! Ice surface temperature 193 193 194 194 ! Snow/ice albedo (only if sent to coupler, useless in forced mode) -
branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO/OPA_SRC/SBC/sbc_ice.F90
r9819 r9881 50 50 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: zevap_ice !: latent flux over ice [W/m2] 51 51 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: dqla_ice !: latent sensibility over ice [W/m2/K] 52 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: qla_ice !: latent heat flux over ice [W/m2/K] 52 53 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: dqns_ice !: non solar heat flux over ice (LW+SEN+LA) [W/m2/K] 54 #if ! defined key_lim3 53 55 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: t1_ice !: ice surface temperature [K] 56 # endif 54 57 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: alb_ice !: ice albedo [-] 55 58 … … 194 197 INTEGER , PUBLIC, PARAMETER :: jpl = 1 195 198 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) :: u_ice, v_ice ! jpi, jpj 196 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: t1_ice, alb_ice, qns_ice, dqns_ice ! (jpi,jpj,jpl) 199 #if ! defined key_lim3 200 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: t1_ice 201 #endif 202 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: alb_ice, qns_ice, dqns_ice ! (jpi,jpj,jpl) 203 197 204 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:,:) :: a_i 198 205 REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) :: emp_ice -
branches/UKMO/dev_merge_2017_CICE_interface_SI3_JGLR/NEMOGCM/NEMO/OPA_SRC/SBC/sbcblk.F90
r9499 r9881 40 40 USE fldread ! read input fields 41 41 USE sbc_oce ! Surface boundary condition: ocean fields 42 USE cyclone ! Cyclone 10m wind form trac of cyclone centres43 42 USE sbcdcy ! surface boundary condition: diurnal cycle 44 43 USE sbcwave , ONLY : cdn_wave ! wave module
Note: See TracChangeset
for help on using the changeset viewer.