Changeset 1910 for LMDZ5/branches/testing/libf/phylmd/conf_phys_m.F90
- Timestamp:
- Nov 29, 2013, 9:40:25 AM (11 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1861-1863,1865-1867,1869,1871-1875,1877-1880,1882-1891,1894-1909 -
Property
copyright
set to
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf
-
Property
copyright
set to
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
-
Property
copyright
set to
-
LMDZ5/branches/testing/libf/phylmd
-
Property
copyright
set to
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
-
Property
copyright
set to
-
LMDZ5/branches/testing/libf/phylmd/conf_phys_m.F90
-
Property
copyright
set to
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory
r1864 r1910 83 83 character (len = 10),SAVE :: type_veget_omp 84 84 CHARACTER(len = 8),SAVE :: aer_type_omp 85 logical,SAVE :: ok_snow_omp 85 86 logical,SAVE :: ok_newmicro_omp 86 87 logical,SAVE :: ok_journe_omp, ok_mensuel_omp, ok_instan_omp, ok_hf_omp … … 147 148 REAL,SAVE :: inertie_sol_omp,inertie_sno_omp,inertie_ice_omp 148 149 REAL,SAVE :: qsol0_omp 150 REAL,SAVE :: evap0_omp 151 REAL,SAVE :: albsno0_omp 149 152 REAL :: solarlong0 150 153 REAL,SAVE :: solarlong0_omp … … 160 163 REAL, SAVE :: freq_outNMC_omp(3), freq_calNMC_omp(3) 161 164 CHARACTER*4, SAVE :: type_run_omp 162 LOGICAL,SAVE :: ok_isccp_omp163 165 LOGICAL,SAVE :: ok_cosp_omp 164 166 LOGICAL,SAVE :: ok_mensuelCOSP_omp,ok_journeCOSP_omp,ok_hfCOSP_omp … … 175 177 INTEGER, SAVE :: nbapp_rad_omp, iflag_con_omp 176 178 INTEGER, SAVE :: iflag_ener_conserv_omp 179 INTEGER, SAVE :: iflag_fisrtilp_qsat_omp 177 180 LOGICAL,SAVE :: ok_strato_omp 178 181 LOGICAL,SAVE :: ok_hines_omp … … 227 230 call getin('VEGET', type_veget_omp) 228 231 ! 232 233 ! Martin 234 !Config Key = ok_snow 235 !Config Desc = Flag to activate snow model SISVAT 236 !Config Def = .false. 237 ok_snow_omp = .false. 238 call getin('ok_snow', ok_snow_omp) 239 ! Martin 240 229 241 !Config Key = OK_journe 230 242 !Config Desc = Pour des sorties journalieres … … 677 689 CALL getin('iflag_ener_conserv',iflag_ener_conserv_omp) 678 690 691 !Config Key = iflag_fisrtilp_qsat 692 !Config Desc = Flag de convection 693 !Config Def = 1 694 !Config Help = Flag pour la convection les options suivantes existent : 695 !Config -1 pour Kinetic energy correction 696 !Config 1 conservation kinetic and enthalpy 697 iflag_fisrtilp_qsat_omp = 0 698 CALL getin('iflag_fisrtilp_qsat',iflag_fisrtilp_qsat_omp) 699 679 700 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 680 701 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! … … 888 909 ! 889 910 !----------------------------------------------------------------------- 890 ! Valeur imposee de l'humidite du sol pour le modele bucket. 891 !Config Key = qsol0 892 !Config Desc = 893 !Config Def = -1. 894 !Config Help = 895 ! 911 ! Valeur imposee pour configuration idealisees 912 !Config Key = qsol0 pour le bucket, evap0 pour aquaplanetes, albsno0 913 ! Default value -1 to activate the full computation 896 914 qsol0_omp = -1. 897 915 call getin('qsol0',qsol0_omp) 916 evap0_omp = -1. 917 call getin('evap0',evap0_omp) 918 albsno0_omp = -1. 919 call getin('albsno0',albsno0_omp) 898 920 ! 899 921 !----------------------------------------------------------------------- … … 1341 1363 type_run_omp = 'AMIP' 1342 1364 call getin('type_run',type_run_omp) 1343 1344 !1345 !Config Key = ok_isccp1346 !Config Desc =1347 !Config Def = .true.1348 !Config Help =1349 !1350 ! ok_isccp = .true.1351 ok_isccp_omp = .false.1352 call getin('ok_isccp',ok_isccp_omp)1353 1365 1354 1366 ! … … 1681 1693 iflag_con = iflag_con_omp 1682 1694 iflag_ener_conserv = iflag_ener_conserv_omp 1695 iflag_fisrtilp_qsat = iflag_fisrtilp_qsat_omp 1683 1696 1684 1697 epmax = epmax_omp … … 1696 1709 solarlong0 = solarlong0_omp 1697 1710 qsol0 = qsol0_omp 1711 evap0 = evap0_omp 1712 albsno0 = albsno0_omp 1698 1713 inertie_sol = inertie_sol_omp 1699 1714 inertie_ice = inertie_ice_omp … … 1737 1752 ok_veget=.false. 1738 1753 endif 1754 ! Martin 1755 ok_snow = ok_snow_omp 1756 ! Martin 1739 1757 1740 1758 ok_newmicro = ok_newmicro_omp … … 1786 1804 iflag_cvl_sigd = iflag_cvl_sigd_omp 1787 1805 type_run = type_run_omp 1788 ok_isccp = ok_isccp_omp1789 1806 ok_cosp = ok_cosp_omp 1790 1807 ok_mensuelCOSP = ok_mensuelCOSP_omp … … 1860 1877 write(lunout,*)' Version ocean = ', version_ocean 1861 1878 write(lunout,*)' Config veget = ', ok_veget,type_veget 1879 write(lunout,*)' Snow model SISVAT : ok_snow = ', ok_snow 1862 1880 write(lunout,*)' Sortie journaliere = ', ok_journe 1863 1881 write(lunout,*)' Sortie haute frequence = ', ok_hf … … 1893 1911 write(lunout,*)'iflag_con=',iflag_con 1894 1912 write(lunout,*)'iflag_ener_conserv=',iflag_ener_conserv 1913 write(lunout,*)'iflag_fisrtilp_qsat=',iflag_fisrtilp_qsat 1895 1914 write(lunout,*)' epmax = ', epmax 1896 1915 write(lunout,*)' ok_adj_ema = ', ok_adj_ema … … 1958 1977 write(lunout,*)' iflag_clos = ', iflag_clos 1959 1978 write(lunout,*)' type_run = ',type_run 1960 write(lunout,*)' ok_isccp = ',ok_isccp1961 1979 write(lunout,*)' ok_cosp = ',ok_cosp 1962 1980 write(lunout,*)' ok_mensuelCOSP = ',ok_mensuelCOSP … … 1965 1983 write(lunout,*)' solarlong0 = ', solarlong0 1966 1984 write(lunout,*)' qsol0 = ', qsol0 1985 write(lunout,*)' evap0 = ', evap0 1986 write(lunout,*)' albsno0 = ', albsno0 1967 1987 write(lunout,*)' inertie_sol = ', inertie_sol 1968 1988 write(lunout,*)' inertie_ice = ', inertie_ice -
Property
copyright
set to
Note: See TracChangeset
for help on using the changeset viewer.