Changeset 4021 for LMDZ6/branches


Ignore:
Timestamp:
Nov 26, 2021, 8:27:27 AM (2 years ago)
Author:
lguez
Message:

Polish

Location:
LMDZ6/branches/Ocean_skin/libf/phylmd
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Ocean_skin/libf/phylmd/phyredem.F90

    r4020 r4021  
    162162    CALL put_field_srf1(pass,"TS","Temperature",ftsol(:,:))
    163163
    164 !!    CALL put_field_srf1(pass,"DELTA_TS","w-x surface temperature difference", delta_tsurf(:,:))
    165164    CALL put_field_srf1(pass,"DELTATS","w-x surface temperature difference", delta_tsurf(:,:))
    166 
    167 !    CALL put_field_srf1(pass,"BETA_S","Aridity factor", beta_aridity(:,:))
    168165    CALL put_field_srf1(pass,"BETAS","Aridity factor", beta_aridity(:,:))
    169166!    End surface variables
  • LMDZ6/branches/Ocean_skin/libf/phylmd/phys_output_var_mod.F90

    r4020 r4021  
    134134  ! Ocean-atmosphere interface, subskin ocean and near-surface ocean:
    135135 
    136   REAL, SAVE, ALLOCATABLE:: tkt(:)
     136  REAL, SAVE, ALLOCATABLE:: tkt(:) ! (klon)
    137137  ! épaisseur (m) de la couche de diffusion thermique (microlayer)
    138138  ! cool skin thickness
    139139
    140   REAL, SAVE, ALLOCATABLE:: tks(:)
     140  REAL, SAVE, ALLOCATABLE:: tks(:) ! (klon)
    141141  ! épaisseur (m) de la couche de diffusion de masse (microlayer)
    142142 
    143   REAL, SAVE, ALLOCATABLE:: taur(:) ! momentum flux due to rain, in Pa
    144 
    145   REAL, SAVE, ALLOCATABLE:: sss(:)
     143  REAL, SAVE, ALLOCATABLE:: taur(:) ! (klon) momentum flux due to rain, in Pa
     144
     145  REAL, SAVE, ALLOCATABLE:: sss(:) ! (klon)
    146146  ! bulk salinity of the surface layer of the ocean, in ppt
    147147 
  • LMDZ6/branches/Ocean_skin/libf/phylmd/surf_ocean_mod.F90

    r4020 r4021  
    334334       delta_sst = t_int - tsurf_new(:knon)
    335335       delta_sal = s_int - sss(:knon)
    336        if (activate_ocean_skin >= 2) tsurf_new(:knon) = t_int
    337        if (activate_ocean_skin == 2 .and. type_ocean == 'couple') &
    338             dt_ds = (tks / tkt) * dter
     336
     337       if (activate_ocean_skin == 2) then
     338          tsurf_new(:knon) = t_int
     339          if (type_ocean == 'couple') dt_ds = (tks / tkt) * dter
     340       end if
    339341    end if
    340342   
  • LMDZ6/branches/Ocean_skin/libf/phylmd/wake.F90

    r3798 r4021  
    22402240    d_deltaqw, sigmaw, d_sigmaw, alpha)
    22412241  ! ------------------------------------------------------
    2242   ! Dtermination du coefficient alpha tel que les tendances
     2242  ! D\'etermination du coefficient alpha tel que les tendances
    22432243  ! corriges alpha*d_G, pour toutes les grandeurs G, correspondent
    22442244  ! a une humidite positive dans la zone (x) et dans la zone (w).
Note: See TracChangeset for help on using the changeset viewer.