Changeset 4466
- Timestamp:
- Mar 9, 2023, 10:34:39 PM (2 years ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 3 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 -
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r4458 r4466 5809 5809 ! zpmm_orodr_t and zstd_orodr_t are activation thresholds set by F. Lott to 5810 5810 ! earn computation time but they are not physical. 5811 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN5811 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 5812 5812 itest(i)=1 5813 5813 igwd=igwd+1 … … 5866 5866 ! such as ice sheets (work by V. Wiener) 5867 5867 zrel_oro(i)=zstd(i)/(max(zsig(i),1.E-8)*sqrt(cell_area(i))) 5868 IF (((zpic(i)-zmea(i)).GT.zpmm_orolf_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN5868 IF (((zpic(i)-zmea(i)).GT.zpmm_orolf_t).AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 5869 5869 itest(i)=1 5870 5870 igwd=igwd+1 … … 6082 6082 ! car on peut s'attendre a ce que les petites echelles produisent aussi de la TKE 6083 6083 ! Mais attention, cela ne va pas dans le sens de la conservation de l'energie! 6084 IF ((zstd(i).GT.1.0).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN6084 IF ((zstd(i).GT.1.0).AND.(zrel_oro(i).LE.zrel_oro_t)) THEN 6085 6085 itest(i)=1 6086 6086 igwd=igwd+1 … … 6094 6094 DO i=1,klon 6095 6095 itest(i)=0 6096 IF (((zpic(i)-zmea(i)).GT.zpmm_orodr_t).AND.(zstd(i).GT.zstd_orodr_t).AND.(zrel_oro(i). GE.zrel_oro_t)) THEN6096 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 6097 6097 itest(i)=1 6098 6098 igwd=igwd+1
Note: See TracChangeset
for help on using the changeset viewer.