Changeset 3570 for LMDZ6/trunk/libf/phylmd/cloudth_mod.F90
- Timestamp:
- Sep 27, 2019, 11:17:19 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/cloudth_mod.F90
r3495 r3570 885 885 REAL,SAVE :: sigma1s_factor=1.1 886 886 REAL,SAVE :: sigma1s_power=0.6 887 REAL,SAVE :: sigma2s_factor=0.09 888 REAL,SAVE :: sigma2s_power=0.5 887 889 REAL,SAVE :: cloudth_ratqsmin=-1. 888 !$OMP THREADPRIVATE(sigma1s_factor,sigma1s_power, cloudth_ratqsmin)890 !$OMP THREADPRIVATE(sigma1s_factor,sigma1s_power,sigma2s_factor,sigma2s_power,cloudth_ratqsmin) 889 891 INTEGER, SAVE :: iflag_cloudth_vert_noratqs=0 890 892 !$OMP THREADPRIVATE(iflag_cloudth_vert_noratqs) … … 951 953 CALL getin_p('cloudth_sigma1s_power',sigma1s_power) 952 954 WRITE(*,*) 'cloudth_sigma1s_power = ', sigma1s_power 955 ! Factor used in the calculation of sigma2s 956 CALL getin_p('cloudth_sigma2s_factor',sigma2s_factor) 957 WRITE(*,*) 'cloudth_sigma2s_factor = ', sigma2s_factor 958 ! Power used in the calculation of sigma2s 959 CALL getin_p('cloudth_sigma2s_power',sigma2s_power) 960 WRITE(*,*) 'cloudth_sigma2s_power = ', sigma2s_power 953 961 ! Minimum value for the environmental air subgrid water distrib 954 962 CALL getin_p('cloudth_ratqsmin',cloudth_ratqsmin) … … 1019 1027 ENDIF 1020 1028 sigma1s = sigma1s_fraca + sigma1s_ratqs 1021 sigma2s=( 0.09*(((sth-senv)**2)**0.5)/((fraca(ind1,ind2)+0.02)**0.5))+0.002*zqta(ind1,ind2)1029 sigma2s=(sigma2s_factor*(((sth-senv)**2)**0.5)/((fraca(ind1,ind2)+0.02)**sigma2s_power))+0.002*zqta(ind1,ind2) 1022 1030 ! tests 1023 1031 ! sigma1s=(0.92**0.5)*(fraca(ind1,ind2)**0.5)/(1-fraca(ind1,ind2))*((sth-senv)**2)**0.5+ratqs(ind1,ind2)*po(ind1)
Note: See TracChangeset
for help on using the changeset viewer.