Changeset 5265 for LMDZ6/trunk/libf/phylmdiso
- Timestamp:
- Oct 23, 2024, 5:08:55 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r5256 r5265 430 430 reffclwc, cldnvi, lcc3d, lcc3dcon, lcc3dstra, icc3dcon, icc3dstra 431 431 USE output_physiqex_mod, ONLY: output_physiqex 432 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_REPROBUS, CPPKEY_STRATAER, CPPKEY_DUST 432 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_REPROBUS, CPPKEY_STRATAER, CPPKEY_DUST, CPPKEY_COSP, CPPKEY_COSP2, CPPKEY_COSPV2 433 433 434 434 … … 1295 1295 !============================================================ 1296 1296 ! AI 10-22 1297 #ifdef CPP_COSP1298 1297 include "ini_COSP.h" 1299 #endif1300 #ifdef CPP_COSPV21301 include "ini_COSP.h"1302 #endif1303 1298 real :: mr_ozone(klon,klev), phicosp(klon,klev) 1304 1299 … … 1953 1948 if (ok_cosp) then 1954 1949 1955 #ifdef CPP_COSP 1950 IF (CPPKEY_COSP) THEN 1956 1951 CALL ini_COSP(ref_liq_cosp0,ref_ice_cosp0,pctsrf_cosp0,zu10m_cosp0,zv10m_cosp0, & 1957 1952 zxtsol_cosp0,zx_rh_cosp0,cldfra_cosp0,rnebcon_cosp0,flwc_cosp0, & … … 1971 1966 pmflxr_cosp0(:,1:klev),pmflxs_cosp0(:,1:klev), & 1972 1967 mr_ozone_cosp0,cldtau_cosp0, cldemi_cosp0) 1973 #endif 1974 1975 #ifdef CPP_COSPV2 1968 END IF 1969 1970 IF (CPPKEY_COSPV2) THEN 1976 1971 CALL ini_COSP(ref_liq_cosp0,ref_ice_cosp0,pctsrf_cosp0,zu10m_cosp0,zv10m_cosp0, & 1977 1972 zxtsol_cosp0,zx_rh_cosp0,cldfra_cosp0,rnebcon_cosp0,flwc_cosp0, & … … 1991 1986 pmflxr_cosp0(:,1:klev),pmflxs_cosp0(:,1:klev), & 1992 1987 mr_ozone_cosp0,cldtau_cosp0, cldemi_cosp0) 1993 #endif 1988 END IF 1994 1989 1995 1990 endif !ok_cosp … … 6725 6720 IF (ok_cosp) THEN 6726 6721 ! adeclarer 6727 #ifdef CPP_COSP 6722 IF (CPPKEY_COSP) THEN 6728 6723 IF (itap.eq.1.or.MOD(itap,NINT(freq_cosp/phys_tstep)).EQ.0) THEN 6729 6724 … … 6754 6749 6755 6750 ENDIF 6756 #endif 6757 6758 #ifdef CPP_COSP2 6751 END IF 6752 6753 IF (CPPKEY_COSP2) THEN 6759 6754 IF (itap.eq.1.or.MOD(itap,NINT(freq_cosp/phys_tstep)).EQ.0) THEN 6760 6755 … … 6778 6773 mr_ozone,cldtau, cldemi) 6779 6774 ENDIF 6780 #endif 6781 6782 #ifdef CPP_COSPV2 6775 END IF 6776 6777 IF (CPPKEY_COSPV2) THEN 6783 6778 IF (itap.eq.1.or.MOD(itap,NINT(freq_cosp/phys_tstep)).EQ.0) THEN 6784 6779 ! IF (MOD(itap,NINT(freq_cosp/phys_tstep)).EQ.0) THEN … … 6808 6803 mr_ozone,cldtau, cldemi) 6809 6804 ENDIF 6810 #endif 6805 END IF 6811 6806 6812 6807 ENDIF !ok_cosp
Note: See TracChangeset
for help on using the changeset viewer.