Ignore:
Timestamp:
Feb 2, 2024, 3:08:36 PM (11 months ago)
Author:
tbertrand
Message:

Cleaning newstart.F and adapting it to Pluto + small adjustments in the physics
TB

Location:
trunk/LMDZ.PLUTO/libf/phypluto
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.PLUTO/libf/phypluto/physiq_mod.F90

    r3197 r3198  
    920920               print*,'and the surface albedo is taken equal to the first visible spectral value'
    921921
     922               albedo_equivalent(1:ngrid)=albedo(1:ngrid,1)
    922923               fluxsurfabs_sw(1:ngrid) = fluxtop_dn(1:ngrid)*(1.-albedo(1:ngrid,1))
     924               ! TB24:
     925               fluxabs_sw(1:ngrid)=fluxsurfabs_sw(1:ngrid)
    923926               fluxrad_sky(1:ngrid)    = fluxsurfabs_sw(1:ngrid)
    924927               fluxtop_lw(1:ngrid)  = emis(1:ngrid)*sigma*tsurf(1:ngrid)**4
     
    16621665      if(callrad)then
    16631666
    1664          !call writediagfi(ngrid,"ALB","Surface albedo"," ",2,albedo_equivalent)
     1667         call writediagfi(ngrid,"ALB","Surface albedo"," ",2,albedo_equivalent)
    16651668         !call writediagfi(ngrid,"ALB_1st","First Band Surface albedo"," ",2,albedo(:,1))
    16661669         call writediagfi(ngrid,"ISR","incoming stellar rad.","W m-2",2,fluxtop_dn)
  • trunk/LMDZ.PLUTO/libf/phypluto/surfini.F

    r3195 r3198  
    4444      ! Step 2 : We get the bare ground albedo from the start files.
    4545      DO ig=1,ngrid
    46          albedo_bareground(ig)=albedodat(ig)
     46         albedo_bareground(ig)=0.1 ! TB24 albedodat(ig)
    4747         DO nw=1,L_NSPECTV
    48             albedo(ig,nw)=albedo_bareground(ig)
     48            albedo(ig,nw)=0.1 !albedo_bareground(ig)
    4949         ENDDO
    5050      ENDDO
  • trunk/LMDZ.PLUTO/libf/phypluto/turbdiff_mod.F90

    r3197 r3198  
    138138
    139139      IF (firstcall) THEN
     140         ivap=1 !TB24
     141         iliq=0
     142         iliq_surf=0
     143         iice_surf=0 ! simply to make the code legible                   
    140144         sensibFlux(:)=0.
    141145         firstcall=.false.
Note: See TracChangeset for help on using the changeset viewer.