Ignore:
Timestamp:
Jun 17, 2024, 6:44:19 PM (5 months ago)
Author:
jbclement
Message:

PEM:
Small correction for the initialization value of dtphys + Corrections for the launching script.
JBC

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

Legend:

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

    r3368 r3383  
    366366== 11/06/2024 == JBC
    367367Correction related to r3367.
     368
     369== 13/06/2024 == LL
     370Fixing bug to update the CO2 ice tendency: the case when a glacier diseapper was not handled
     371
     372== 17/06/2024 == JBC
     373Small correction for the initialization value of dtphys + Corrections for the launching script.
  • trunk/LMDZ.COMMON/libf/evolution/deftank/launchPEM.sh

    r3365 r3383  
    7878            if [ $relaunch = "PCM" ]; then
    7979                echo "What is the number of the PCM run?"
    80                 echo "It should be between 1 and $iPCM."
     80                echo "It should be between 1 and $((iPCM - 1))."
    8181                read irelaunch
    82                 if [ 0 -lt $irelaunch ] && [ $irelaunch -le $iPCM ]; then
     82                if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPCM ]; then
    8383                    break
    8484                else
     
    8989                echo "It should be between 1 and $((iPEM - 1))."
    9090                read irelaunch
    91                 if [ 0 -lt $irelaunch ] && [ $irelaunch -le $iPEM ]; then
     91                if [ 0 -lt $irelaunch ] && [ $irelaunch -lt $iPEM ]; then
    9292                    break
    9393                else
  • trunk/LMDZ.COMMON/libf/evolution/deftank/lib_launchPEM.sh

    r3367 r3383  
    258258            cleanfiles diags/data2reshape .nc $irelaunch
    259259            cyclelaunch $nPCM_ini $irelaunch
    260         elif [ $irelaunch -eq 0 ]; then
     260        elif [ $irelaunch -eq $nPCM_ini ]; then
    261261            cp diags/data2reshape$(($irelaunch - 1)).nc data2reshape_Y1.nc
    262262            cp diags/data2reshape${irelaunch}.nc data2reshape_Y2.nc
  • trunk/LMDZ.COMMON/libf/evolution/pem.F90

    r3367 r3383  
    341341!------------------------
    342342#ifndef CPP_1D
    343     dtphys = 0
     343    dtphys = daysec/48. ! Dummy value (overwritten in phyetat0)
    344344    call conf_gcm(99,.true.)
    345345    call infotrac_init
Note: See TracChangeset for help on using the changeset viewer.