Changeset 943


Ignore:
Timestamp:
07/05/19 16:43:15 (5 years ago)
Author:
dubos
Message:

devel/Python : fix baroclinic test case

Location:
codes/icosagcm/devel/Python/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/devel/Python/test/jobs/camelot.pbs

    r860 r943  
    33#PBS -q std 
    44#PBS -l nodes=1:ppn=64 
    5 #PBS -l walltime=05:00:00 
     5#PBS -l walltime=00:15:00 
    66#PBS -V 
    77#PBS -l mem=60gb,vmem=60gb 
     
    4444    rm -f output_dynamico_native.nc xios_client*  
    4545    ./python.sh serial py/write_Cartesian_mesh.py --nx=$NX --ny=$NY --Lx=$NX --Ly=$NY 
    46     ./python.sh mpi $((NI*NJ)) py/Baroclinic_3D_ullrich.py --mpi_ni $NI --mpi_nj $NJ --T 3600 --N 360 --ny $NY --nx $NX --dt $DT --Davies_N1 $NDAVIES --Davies_N2 $NDAVIES 
     46    ./python.sh mpi $((NI*NJ)) py/Baroclinic_3D_ullrich.py --mpi_ni $NI --mpi_nj $NJ --T 3600 --N 360 --ny $NY --nx $NX --dt $DT --Davies_N1 $NDAVIES --Davies_N2 $NDAVIES --kappa_divgrad 0. --kappa_curlcurl 0. 
    4747} 
    4848 
    4949 
    5050#run 400 84 6 300. # high-res 
    51 run 200 42 3 300. >gcm.log # low-res 
     51run 200 42 3 600. >gcm.log # low-res 
    5252 
    5353# ./python.sh mpi $((NI*NJ)) py/Baroclinic_3D_ullrich.py --mpi_ni $NI --mpi_nj $NJ --T 3600 --N 360 --ny 84 --nx 400 --dt 300. --Davies_N1 6 --Davies_N2 6 
  • codes/icosagcm/devel/Python/test/py/Baroclinic_3D_ullrich.py

    r930 r943  
    8787        A = A + exp(-(((x-xc-Lx)**2+(y-yc)**2)/lp**2)) 
    8888        A = A + exp(-(((x-xc+Lx)**2+(y-yc)**2)/lp**2)) 
    89         return  u*A 
     89        return  u + up*A 
    9090 
    9191    def tmean(eta) : return T0*eta**(Rd*lap/g) 
Note: See TracChangeset for help on using the changeset viewer.