Ignore:
Timestamp:
Mar 28, 2024, 6:06:40 PM (7 weeks ago)
Author:
evignon
Message:

extraction plus propre de la dissipation de TKE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/lmdz_call_atke.F90

    r4745 r4881  
    1010subroutine call_atke(dtime,ngrid,nlay,cdrag_uv,cdrag_t,u_surf,v_surf,temp_surf, &
    1111                        wind_u,wind_v,temp,qvap,play,pinterf, &
    12                         tke,Km_out,Kh_out)
     12                        tke,eps,Km_out,Kh_out)
    1313
    1414
     
    4343
    4444
    45 REAL, DIMENSION(ngrid,nlay+1), INTENT(INOUT)  :: tke  ! turbulent kinetic energy at interface between layers
     45REAL, DIMENSION(ngrid,nlay+1), INTENT(INOUT)  :: tke      ! turbulent kinetic energy at interface between layers
    4646
     47REAL, DIMENSION(ngrid,nlay+1), INTENT(OUT)    :: eps      ! output: tke dissipation rate at interface between layers
    4748REAL, DIMENSION(ngrid,nlay), INTENT(OUT)      :: Km_out   ! output: Exchange coefficient for momentum at interface between layers
    4849REAL, DIMENSION(ngrid,nlay), INTENT(OUT)      :: Kh_out   ! output: Exchange coefficient for heat flux at interface between layers
     
    5657call atke_compute_km_kh(ngrid,nlay,dtime,&
    5758                        wind_u,wind_v,temp,qvap,play,pinterf,cdrag_uv,&
    58                         tke,Km_out,Kh_out)
     59                        tke,eps,Km_out,Kh_out)
    5960
    6061
     
    7576   call atke_compute_km_kh(ngrid,nlay,dtime,&
    7677                        wind_u_predict,wind_v_predict,temp,qvap,play,pinterf,cdrag_uv, &
    77                         tke,Km_out,Kh_out)
     78                        tke,eps,Km_out,Kh_out)
    7879
    7980end if
Note: See TracChangeset for help on using the changeset viewer.