Changeset 4466 for LMDZ6/trunk/libf/phylmdiso
- Timestamp:
- Mar 9, 2023, 10:34:39 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.