Changeset 285 for trunk/LMDZ.MARS/libf/phymars/meso_inc
- Timestamp:
- Sep 8, 2011, 1:59:47 AM (13 years ago)
- Location:
- trunk/LMDZ.MARS/libf/phymars/meso_inc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/meso_inc/meso_inc_caps.F
r283 r285 1 2 !!!! see meso_inc_ini3 ! alb_lim = 0.264 ! lat_lim = 70.5 ! inertie_lim = 800.6 7 1 !!! This has to go after initracer which change dryness and watercaptag 8 2 … … 23 17 !!!! 24 18 !IF ( caps .and. (igcm_h2o_ice .ne. 0) ) THEN 19 25 20 IF ( caps .and. water ) THEN 26 21 PRINT *, 'OVERWRITING watercaptag DEFINITION in INITRACER' … … 31 26 do ig=1,ngridmx 32 27 qsurf(ig,igcm_h2o_ice)=0. !! on jette les inputs GCM 33 if ( ( lati(ig)*180./pi .gt. lat_lim) .and.34 . ( albedodat(ig) .ge. alb_lim) ) then28 if ( ( lati(ig)*180./pi .gt. 70. ) .and. 29 . ( albedodat(ig) .ge. 0.26 ) ) then 35 30 watercaptag(ig) = .true. 36 31 dryness(ig) = 1. … … 44 39 print *,'caps=T avec water=F ????' 45 40 ENDIF ! (caps) 46 !!!!!! TEST TEST TEST TEST AS+JBM 28/02/1147 !!!!!! TEST TEST TEST TEST AS+JBM 28/02/1148 !!!!!! TEST TEST TEST TEST AS+JBM 28/02/11 -
trunk/LMDZ.MARS/libf/phymars/meso_inc/meso_inc_ini.F
r283 r285 69 69 ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc 70 70 71 !!! see meso_inc_caps72 !!! this is a test to change outliers' albedo and thermal inertia73 alb_lim = 0.2674 lat_lim = 70.75 inertie_lim = 800.76 PRINT *, 'lat_lim ',lat_lim77 PRINT *, 'alb_lim ',alb_lim78 PRINT *, 'inertie_lim ',inertie_lim79 !!! 80 !!! 81 IF ( caps .and. water ) THEN82 do ig=1,ngridmx83 if ( lati(ig)*180./pi .gt. lat_lim ) then84 if ( albedodat(ig) .ge. alb_lim ) then85 albedodat(ig) = alb_surfice86 inertiedat(ig,1) = inertie_lim87 endif88 if (inertiedat(ig,1) .ge. inertie_lim ) then89 inertiedat(ig,1) = inertie_lim90 endif91 endif ! (lati, albedodat)92 end do ! (ngridmx)93 ENDIF ! (caps)71 !!!! see meso_inc_caps 72 !!!! this is a test to change outliers' albedo and thermal inertia 73 !alb_lim = 0.26 74 !lat_lim = 70. 75 !inertie_lim = 800. 76 !PRINT *, 'lat_lim ',lat_lim 77 !PRINT *, 'alb_lim ',alb_lim 78 !PRINT *, 'inertie_lim ',inertie_lim 79 !!!! 80 !!!! 81 !IF ( caps .and. water ) THEN 82 ! do ig=1,ngridmx 83 ! if ( lati(ig)*180./pi .gt. lat_lim ) then 84 ! if ( albedodat(ig) .ge. alb_lim ) then 85 ! albedodat(ig) = alb_surfice 86 ! inertiedat(ig,1) = inertie_lim 87 ! endif 88 ! if (inertiedat(ig,1) .ge. inertie_lim ) then 89 ! inertiedat(ig,1) = inertie_lim 90 ! endif 91 ! endif ! (lati, albedodat) 92 ! end do ! (ngridmx) 93 !ENDIF ! (caps) -
trunk/LMDZ.MARS/libf/phymars/meso_inc/meso_inc_var.F
r283 r285 18 18 INTEGER tracerset !!! this corresponds to config%mars 19 19 CHARACTER (len=20) :: wtnom(nqmx) ! tracer name 20 21 REAL alb_lim22 REAL lat_lim23 REAL inertie_lim
Note: See TracChangeset
for help on using the changeset viewer.