Changeset 3422 for trunk/LMDZ.PLUTO
- Timestamp:
- Aug 26, 2024, 6:11:23 PM (3 months ago)
- Location:
- trunk/LMDZ.PLUTO
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.PLUTO/libf/dynphy_lonlat/phypluto/leapfrog_nogcm.F
r3421 r3422 13 13 #endif 14 14 USE infotrac, ONLY: nqtot,ok_iso_verif,tname 15 USE guide_mod, ONLY : guide_main16 15 USE write_field, ONLY: writefield 17 16 USE callkeys_mod, only: tau_n2, tau_ch4, tau_co … … 24 23 use exner_milieu_m, only: exner_milieu 25 24 use cpdet_mod, only: cpdet,tpot2t,t2tpot 26 use sponge_mod, only: callsponge,mode_sponge,sponge27 25 use comuforc_h 28 26 USE comvert_mod, ONLY: ap,bp,pressure_exner,presnivs, -
trunk/LMDZ.PLUTO/libf/phypluto/callcorrk_pluto_mod.F90
r3406 r3422 621 621 print*,'transfer kmatrix bounds, exiting.' 622 622 print*,'t(',k,')=',tlevrad(k),' < ',tgasmin 623 call abort623 ! call abort 624 624 elseif(tlevrad(k).gt.tgasmax)then 625 625 print*,'Maximum temperature is outside the radiative' -
trunk/LMDZ.PLUTO/libf/phypluto/inifis_mod.F90
r3412 r3422 1387 1387 if (is_master) write(*,*)trim(rname)//": generic_condensation = ",generic_condensation 1388 1388 1389 ! Test of incompatibility:1390 1389 if (is_master) write(*,*)trim(rname)//": Spectral Dependant albedo ?" 1391 1390 albedo_spectral_mode=.false. ! default value … … 1436 1435 call getin_p("cpp_mugaz_mode",cpp_mugaz_mode) 1437 1436 if (is_master) write(*,*)trim(rname)//": cpp_mugaz_mode = ",cpp_mugaz_mode 1437 1438 1439 ! Test of incompatibility: 1440 if (condcosurf.and.no_n2frost) then 1441 call abort_physic(rname, "CO surface condensation and no_n2frost are both active which may not be relevant", 1) 1442 end if 1438 1443 1439 1444 if ((cpp_mugaz_mode >= 1).and.(is_master).and.(ngrid>1)) then -
trunk/LMDZ.PLUTO/libf/phypluto/physiq_mod.F90
r3421 r3422 2287 2287 2288 2288 ! ! Oceanic layers !AF24: removed 2289 2290 2289 ! ! Thermal plume model !AF24: removed 2291 2292 2290 ! GW non-oro outputs !AF24: removed 2293 2291 … … 2309 2307 ! call writediagfi(ngrid,"fluxsurflwcs","lw back radiation (cs).","W m-2",2,fluxsurf_lw1) 2310 2308 2311 ! if(ok_slab_ocean) then2312 ! call writediagfi(ngrid,"GND","heat flux from ground","W m-2",2,fluxgrdocean)2313 ! else2314 2309 call writediagfi(ngrid,"GND","heat flux from ground","W m-2",2,fluxgrd) 2315 2310 ! endif … … 2366 2361 call writediagfi(ngrid,"zdtlw","LW heating","T s-1",3,zdtlw) 2367 2362 call writediagfi(ngrid,"dtrad","radiative heating","K s-1",3,dtrad) 2368 !call writediagfi(ngrid,"zdtdyn","Dyn. heating","T s-1",3,zdtdyn)2363 call writediagfi(ngrid,"zdtdyn","Dyn. heating","T s-1",3,zdtdyn) 2369 2364 2370 2365 !Pluto specific … … 2396 2391 do iq=1,nq 2397 2392 call writediagfi(ngrid,noms(iq),noms(iq),'kg/kg',3,zq(1,1,iq)) 2398 !call writediagfi(ngrid,trim(noms(iq))//'_surf',trim(noms(iq))//'_surf', &2399 !'kg m^-2',2,qsurf_hist(1,iq) )2393 ! call writediagfi(ngrid,trim(noms(iq))//'_surf',trim(noms(iq))//'_surf', & 2394 ! 'kg m^-2',2,qsurf_hist(1,iq) ) 2400 2395 call writediagfi(ngrid,trim(noms(iq))//'_col',trim(noms(iq))//'_col', & 2401 2396 'kg m^-2',2,qcol(1,iq) ) 2402 !call writediagfi(ngrid,trim(noms(iq))//'_surf',trim(noms(iq))//'_surf', &2403 !'kg m^-2',2,qsurf(1,iq) )2397 call writediagfi(ngrid,trim(noms(iq))//'_surf',trim(noms(iq))//'_surf', & 2398 'kg m^-2',2,qsurf(1,iq) ) 2404 2399 2405 2400 ! if(watercond.or.CLFvarying)then !AF24: removed … … 2419 2414 2420 2415 !Pluto specific 2421 !call writediagfi(ngrid,'n2_iceflux','n2_iceflux',"kg m^-2 s^-1",2,flusurf(1,igcm_n2) )2422 !call writediagfi(ngrid,'haze_reff','haze_reff','m',3,reffrad(1,1,1))2416 call writediagfi(ngrid,'n2_iceflux','n2_iceflux',"kg m^-2 s^-1",2,flusurf(1,igcm_n2) ) 2417 call writediagfi(ngrid,'haze_reff','haze_reff','m',3,reffrad(1,1,1)) 2423 2418 if (methane) then 2424 2419 call writediagfi(ngrid,'ch4_iceflux','ch4_iceflux',&
Note: See TracChangeset
for help on using the changeset viewer.