Changeset 4466 for LMDZ6/trunk/libf/phylmd
- Timestamp:
- Mar 9, 2023, 10:34:39 PM (21 months ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/conf_phys_m.F90
r4458 r4466 903 903 !Config Key = zrel_oro_t 904 904 !Config Desc = zrel_oro_t 905 !Config Def = 0.905 !Config Def = 9999. 906 906 !Config Help = Connais pas ! 907 zrel_oro_t_omp = 0.907 zrel_oro_t_omp = 9999. 908 908 CALL getin('zrel_oro_t', zrel_oro_t_omp) 909 909 -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r4458 r4466 4537 4537 ! zpmm_orodr_t and zstd_orodr_t are activation thresholds set by F. Lott to 4538 4538 ! earn computation time but they are not physical. 4539 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN4539 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 4540 4540 itest(i)=1 4541 4541 igwd=igwd+1 … … 4590 4590 ! such as ice sheets (work by V. Wiener) 4591 4591 zrel_oro(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i))) 4592 IF (((zpic(i)-zmea(i)).GT.zpmm_orolf_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN4592 IF (((zpic(i)-zmea(i)).GT.zpmm_orolf_t).AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 4593 4593 itest(i)=1 4594 4594 igwd=igwd+1 … … 4780 4780 ! car on peut s'attendre a ce que les petites echelles produisent aussi de la TKE 4781 4781 ! Mais attention, cela ne va pas dans le sens de la conservation de l'energie! 4782 IF ((zstd(i).GT.1.0) .AND.(zrel_oro(i). GE.zrel_oro_t)) THEN4782 IF ((zstd(i).GT.1.0) .AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 4783 4783 itest(i)=1 4784 4784 igwd=igwd+1 … … 4792 4792 DO i=1,klon 4793 4793 itest(i)=0 4794 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN4794 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 4795 4795 itest(i)=1 4796 4796 igwd=igwd+1
Note: See TracChangeset
for help on using the changeset viewer.