Ignore:
Timestamp:
Mar 4, 2026, 3:15:26 PM (3 weeks ago)
Author:
jbclement
Message:

Mars PCM:

  • Incompatibility check for dustscaling_mode = 2 and iaervar = 1.
  • Move "start1D.txt" from "deftank/" to "startfiles/".

JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r4091 r4102  
    566566         call getin_p("dustscaling_mode",dustscaling_mode)
    567567         write(*,*) "dustscaling_mode=",dustscaling_mode
    568          if ((dustscaling_mode.eq.1).and.freedust) then
     568         if (dustscaling_mode == 1 .and. freedust) then
    569569           print*,'freedust and dustscaling_mode=1 are incompatible !'
    570570           call abort_physic(modname,
    571571     &          "freedust and dustscaling_mode=1 are incompatible",1)
    572          endif         
     572         endif
     573         if (dustscaling_mode == 2 .and. iaervar == 1) then
     574           print*,'iaervar=1 and dustscaling_mode=2 are incompatible !'
     575           call abort_physic(modname,
     576     &          "iaervar=1 and dustscaling_mode=2 are incompatible",1)
     577         endif
    573578
    574579#ifndef MESOSCALE
Note: See TracChangeset for help on using the changeset viewer.