Changeset 2294 for trunk/LMDZ.MARS/libf/phymars
- Timestamp:
- Apr 22, 2020, 3:39:42 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.