- Timestamp:
- Jan 21, 2021, 10:19:50 AM (4 years ago)
- Location:
- trunk/LMDZ.MARS/libf/phymars
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/call_dayperi.F
r2228 r2448 1 c ******************************************************* *1 c ******************************************************* 2 2 subroutine call_dayperi(Lsperi,e_elips,dayperi,year_day) 3 3 IMPLICIT NONE -
trunk/LMDZ.MARS/libf/phymars/dimradmars_mod.F90
r2409 r2448 39 39 ! method (doubleq) 40 40 integer iaer_h2o_ice ! Water ice particles 41 integer iaer_co2_ice ! CO2 ice particles 41 42 42 43 ! AS: was in aeropacity -
trunk/LMDZ.MARS/libf/phymars/newsedim_mod.F
r1913 r2448 209 209 end do 210 210 end do 211 212 211 call vlz_fi(ngrid,nlay,pqi,2.,masse,w,wq) 213 212 c write(*,*) ' newsed: wq(6), wq(7), q(6)', -
trunk/LMDZ.MARS/libf/phymars/nltecool.F
r1268 r2448 142 142 143 143 endif 144 145 144 c 146 145 c MAIN LOOP, for each gridpoint and altitude: -
trunk/LMDZ.MARS/libf/phymars/rocketduststorm_mod.F90
r2417 r2448 172 172 REAL rice(ngrid,nlayer) 173 173 REAL nuice(ngrid,nlayer) 174 174 REAL riceco2(ngrid,nlayer) 175 REAL nuiceco2(ngrid,nlayer) 175 176 176 177 ! ********************************************************************** … … 251 252 fluxtop_sw1,tau_pref_scenario,tau_pref_gcm, & 252 253 tau,aerosol,dsodust,tauscaling,dust_rad_adjust, & 253 taucloudtes,rdust,rice,nuice, co2ice,rstormdust,rtopdust, &254 taucloudtes,rdust,rice,nuice,riceco2,nuiceco2,co2ice,rstormdust,rtopdust, & 254 255 totstormfract,clearatm,dsords,dsotop,alpha_hmons,nohmons,& 255 256 clearsky,totcloudfrac) -
trunk/LMDZ.MARS/libf/phymars/topmons_mod.F90
r2417 r2448 126 126 REAL rice(ngrid,nlayer) 127 127 REAL nuice(ngrid,nlayer) 128 REAL riceco2(ngrid,nlayer) 129 REAL nuiceco2(ngrid,nlayer) 128 130 129 131 ! Temperature profile … … 277 279 fluxtop_sw1,tau_pref_scenario,tau_pref_gcm, & 278 280 tau,aerosol,dsodust,tauscaling,dust_rad_adjust, & 279 taucloudtes,rdust,rice,nuice, co2ice,rstormdust,rtopdust, &281 taucloudtes,rdust,rice,nuice,riceco2,nuiceco2,co2ice,rstormdust,rtopdust, & 280 282 totstormfract,clearatm,dsords,dsotop,alpha_hmons,nohmons,& 281 283 clearsky,totcloudfrac) -
trunk/LMDZ.MARS/libf/phymars/vlz_fi.F
r2311 r2448 90 90 do l = 1,nlay ! loop different than when w<0 91 91 do ij = 1,ngrid 92 93 92 if(w(ij,l).gt.0.)then 94 93 … … 191 190 end if 192 191 193 q(ij,l)=q(ij,l) + (wq(ij,l+1)-wq(ij,l))/masse(ij,l) 194 192 q(ij,l)=q(ij,l) + (wq(ij,l+1)-wq(ij,l))/masse(ij,l) 195 193 enddo 196 194 enddo 197 195 198 199 200 196 return 201 197 end
Note: See TracChangeset
for help on using the changeset viewer.