Ignore:
Timestamp:
Aug 26, 2024, 10:51:28 AM (3 months ago)
Author:
jbclement
Message:

PEM:
Correction for the launching script due to r3403: the job scheduler detection was missing in the case of a new cycle.
JBC

Location:
trunk/LMDZ.COMMON/libf/evolution
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/changelog.txt

    r3417 r3419  
    410410== 22/08/2024 == JBC
    411411Small update for the launching script.
     412
     413== 26/08/2024 == JBC
     414Correction for the launching script due to r3403: the job scheduler detection was missing in the case of a new cycle.
  • trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh

    r3417 r3419  
    5757        echo "This is a new cycle for the PEM simulation."
    5858        date
     59        if [ $dim -ne 1 ]; then
     60            job_scheduler
     61        fi
    5962        read i_myear n_myear convert_years iPCM iPEM nPCM nPCM_ini < info_PEM.txt
    6063        cyclelaunch $dim $nPCM
     
    115118        fi
    116119        sed -i "1s/.*/$i_myear $n_myear $convert_years $iPCM $iPEM $nPCM $nPCM_ini/" info_PEM.txt
     120        if [ -f "kill_launchPEM.sh" ]; then
     121            ./kill_launchPEM.sh
     122        fi
    117123        if [ $relaunch = "PCM" ]; then
    118124            relaunchPCM $dim
  • trunk/LMDZ.COMMON/libf/evolution/pem.F90

    r3403 r3419  
    10231023                write(*,*) "STOPPING because surface global pressure changed too much:", stopPEM, "See message above."
    10241024            case(5)
    1025                 write(*,*) "STOPPING because maximum number of iterations due to orbital parameters is reached:", stopPEM
     1025                write(*,*) "STOPPING because maximum number of iterations is reached (possibly due to orbital parameters):", stopPEM
    10261026            case(6)
    10271027                write(*,*) "STOPPING because maximum number of Martian years to be simulated is reached:", stopPEM
Note: See TracChangeset for help on using the changeset viewer.