Changeset 3072


Ignore:
Timestamp:
Oct 5, 2023, 11:58:22 AM (14 months ago)
Author:
jbclement
Message:

Mars PCM:
Correction of a bug introduced in commit r3069 when compiling with ifort.
JBC

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/pem.F90

    r3070 r3072  
    7272    use mod_phys_lmdz_para, only: is_parallel, is_sequential, is_mpi_root, is_omp_root, is_master
    7373    use planete_h,          only: aphelie, periheli, year_day, peri_day, obliquit
    74     use comcstfi_h,         only: r, mugaz, g
     74    use comcstfi_h,         only: r, mugaz
    7575    use paleoclimate_mod,   only: albedo_perenialco2
    7676#else
  • trunk/LMDZ.MARS/changelog.txt

    r3071 r3072  
    42354235Related to commit r3066, correction of a bug to write/read a restart/start in 1D and more adaptations of the code.
    42364236
    4237 == 03/10/2023 == AB
     4237== 05/10/2023 == AB
    42384238Add an example of setup in util/compile to compile utilitary programs on Adastra supercomputer.
    42394239Warning: on Adastra, you need to add the netcdf library path to LD_LIBRARY_PATH before running the executable
    42404240(export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$NETCDF_DIR/lib)
     4241
     4242== 05/10/2023 == JBC
     4243Correction of a bug introduced in commit r3069 when compiling with ifort.
  • trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90

    r3069 r3072  
    451451    do iq = 1,nq
    452452        read(3,*) header, (qsurf(1,iq,j), j = 1,size(qsurf,3)), (q(1,ilayer,iq), ilayer = 1,nlayer)
    453         if (trim(tname(iq)) /= trim(header)) error stop 'Tracer names not compatible for initialization with "'//trim(start1Dname)//'"!'
     453        if (trim(tname(iq)) /= trim(header)) then
     454            write(*,*) 'Tracer names not compatible for initialization with "'//trim(start1Dname)//'"!'
     455            error stop
     456        endif
    454457    enddo
    455458endif
Note: See TracChangeset for help on using the changeset viewer.