Changeset 2294
- Timestamp:
- Apr 22, 2020, 3:39:42 PM (5 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2293 r2294 2959 2959 == 20/04/2020 == EM 2960 2960 Fix for the 1D, follow up from the recent addition of watercap. 2961 2962 == 22/04/2020 == AD 2963 Minor update of revision 2281 about initialisation of emissivity and albedo when no startfi 2964 Now default emissivity/albedo is 0.95/0.1 2965 Flags to change these fields are now more explicit: surfemis_without_startfi instead of surfemis (idem for surfalbedo) -
trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90
r2281 r2294 107 107 write(*,*) "phyetat0: startphy_file", startphy_file 108 108 109 if(.not.startphy_file) then110 surfemis = -999111 surfalbedo = -999112 call getin_p("surfemis",surfemis)113 call getin_p("surfalbedo",surfalbedo)114 if (surfemis.eq.-999) then115 call abort_physic(modname, &116 "Missing value for surfemis in def files!",1)117 endif118 if (surfalbedo.eq.-999) then119 call abort_physic(modname, &120 "Missing value for surfalbedo in def files!",1)121 endif122 write(*,*) "phyetat0: surfemis: ", surfemis123 write(*,*) "phyetat0: surfalbedo: ", surfalbedo124 endif125 126 109 if (startphy_file) then 127 110 ! open physics initial state file: … … 159 142 endif 160 143 else ! If no startfi file, use parameter surfalbedo in def file 161 surfalbedo=0. 5162 call getin_p("surfalbedo ",surfalbedo)163 print*,"surfalbedo ",surfalbedo144 surfalbedo=0.1 145 call getin_p("surfalbedo_without_startfi",surfalbedo) 146 print*,"surfalbedo_without_startfi",surfalbedo 164 147 albedodat(:)=surfalbedo 165 148 endif ! of if (startphy_file) … … 508 491 else 509 492 ! If no startfi file, use parameter surfemis in def file 510 surfemis= 1.0511 call getin_p("surfemis ",surfemis)512 print*,"surfemis ",surfemis493 surfemis=0.95 494 call getin_p("surfemis_without_startfi",surfemis) 495 print*,"surfemis_without_startfi",surfemis 513 496 emis(:)=surfemis 514 497 endif ! of if (startphy_file)
Note: See TracChangeset
for help on using the changeset viewer.