Ignore:
Timestamp:
Nov 23, 2022, 11:11:26 AM (2 years ago)
Author:
romain.vande
Message:

Mars GCM:
The variable co2ice is deleted. All the co2 ice on surface is now in qsurf(:,igcm_co2).
CO2 tracer is now mandatory. diagfi output is unchanged.
RV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/tracer_mod.F90

    r2589 r2826  
    166166      integer :: iq, count
    167167      character(len=20) :: txt ! to store some text
     168
     169      logical :: co2_tracer_found=.false.
    168170     
    169171      ! set dimension and tracer names
     
    173175        noms(iq)=tname(iq)
    174176        write(*,*) "tracer_mod names : ", trim(noms(iq))
     177        if(noms(iq).eq."co2") then
     178           co2_tracer_found=.true.
     179        endif
    175180      enddo
     181
     182      if(co2_tracer_found .eq. .false.) then
     183         call abort_physic("ini_tracer_mod","co2 tracer is now mandatory",1)
     184      endif
    176185
    177186      !MVals: isotopes variables initialisation
Note: See TracChangeset for help on using the changeset viewer.