Changeset 172
- Timestamp:
- Jun 22, 2011, 10:28:16 AM (14 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r171 r172 752 752 - minor improvement to newstart.F (q=x option, check that tracer index 753 753 provided by user is valid). 754 - minor correction to callradite.F (to enable compilation in debug mode 755 with ifort when there is only one tracer). -
trunk/LMDZ.MARS/libf/phymars/callradite.F
r139 r172 265 265 name_iaer(1) = "dust_conrath" !! default choice is good old Conrath profile 266 266 IF (doubleq.AND.active) name_iaer(1) = "dust_doubleq" !! two-moment scheme 267 IF (water.AND.activice) name_iaer(2) = "h2o_ice" !! radiatively-active clouds 268 IF (submicron.AND.active) name_iaer(2) = "dust_submicron" !! JBM experimental stuff 267 if (nqmx.gt.1) then 268 ! trick to avoid problems compiling with 1 tracer 269 ! and picky compilers who know name_iaer(2) is out of bounds 270 j=2 271 IF (water.AND.activice) name_iaer(j) = "h2o_ice" !! radiatively-active clouds 272 IF (submicron.AND.active) name_iaer(j) = "dust_submicron" !! JBM experimental stuff 273 endif ! of if (nqmx.gt.1) 269 274 c ---------------------------------------------------------- 270 275
Note: See TracChangeset
for help on using the changeset viewer.