Changeset 3847 for trunk/LMDZ.MARS


Ignore:
Timestamp:
Jul 15, 2025, 12:05:47 PM (3 weeks ago)
Author:
jbclement
Message:

Mars PCM:
New test of incompatibility: 'activice' requires 'microphys' + Correction of a flag from 'water' to 'activice'.
JBC

Location:
trunk/LMDZ.MARS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/changelog.txt

    r3843 r3847  
    49044904== 09/07/2025 == JBC
    49054905Better error handling for reading "start1D.txt" and "profile_prescribed_h2o_vap" files.
     4906
     4907== 15/07/2025 == JBC
     4908New test of incompatibility: 'activice' requires 'microphys' + Correction of a flag from 'water' to 'activice'.
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r3726 r3847  
    763763           print*,'if activice is used, water should be used too'
    764764           call abort_physic(modname,
    765      &          "activeice requires water",1)
     765     &          "activice requires water",1)
    766766         endif
    767767
     
    888888     &          "scavenging requires microphys",1)
    889889        endif
     890
     891         if (activice .and. .not. microphys) then
     892           print*,'if activice is used, then microphys must be used!'
     893           call abort_physic(modname,
     894     &          "activice requires microphys",1)
     895         endif
    890896
    891897! Instantaneous scavenging by CO2
  • trunk/LMDZ.MARS/libf/phymars/physiq_mod.F

    r3740 r3847  
    27012701        fluxsurf_dir_dn_sw(ig) = 0.
    27022702       else
    2703             if (water) then
     2703            if (activice) then
    27042704             ! both water and dust contribute
    27052705            fluxsurf_dir_dn_sw(ig) = flux_1AU/dist_sol/dist_sol*mu0(ig)*
Note: See TracChangeset for help on using the changeset viewer.