source: trunk/LMDZ.COMMON/libf/evolution/deftank/README @ 3495

Last change on this file since 3495 was 3495, checked in by jbclement, 2 weeks ago

PEM:
Modifications related to the launching script:

  • There is actually no launching difference between the 1D and 3D models. It is more about how and where you want to execute. So now, the user can choose between two launching modes with the parameter "mode" (0 = "processing scripts"; any other values = "submitting jobs"). The former option is usually used to process the script on a local machine while the latter is used to submit jobs on supercomputer;
  • The execution command line in the job scripts that should be modified by the user according to the set-up is now given as an argument at the beginning to be more identifiable and adaptable;
  • Making the job scripts more robust to detect a successful end.

JBC

File size: 4.3 KB
Line 
1This folder contains all the files needed to run the Planetary Evolution Model (PEM).
2
3# launchPEM.sh:
4  Bash script file to launch the chained simulation of PEM and PCM runs.
5  The user has to specify:
6      (i)   n_mars_years, n_earth_years -> the number of Mars/Earth years to be simulated in total;
7      (ii)  nPCM_ini -> the number of initial PCM runs (at least 2);
8      (iii) nPCM -> the number of PCM runs between each PEM run (usually 2);
9      (iv)  mode -> the launching mode (0 = "processing scripts"; any other values = "submitting jobs"). The former option is usually used to process the script on a local machine while the latter is used to submit jobs on supercomputer.
10  The script can take an argument:
11      - If there is no argument, then the script initiates a PEM simulation from scratch.
12      - If the argument is 're', then the script relaunches an existing PEM simulation. It will ask for parameters to know the starting point that you want to.
13  To submit chained jobs, the script works with the job schedulers SLURM and PBS/TORQUE.
14
15# liblaunchPEM.sh:
16  Library of bash functions used by the PEM launching script "launchPEM.sh".
17
18# PCMrun.job:
19  Bash script file to submit a PCM job (with SLURM or PBS/TORQUE). The headers correspond to the ADASTRA supercomputer and should be changed for other machines and job schedulers. In case of "processiong scripts" launching mode, the headers are naturally omitted.
20  The path to source the arch file should be adapted to the machine.
21  The name of the PCM executable file should be adapted.
22  The execution command should also be adapted according to the set-up.
23
24# PEMrun.job:
25  Bash script file to submit PEM job (with SLURM or PBS/TORQUE).The headers correspond to the ADASTRA supercomputer and should be changed for other machines and job schedulers. In case of "processiong scripts" launching mode, the headers are naturally omitted.
26  The path to source the arch file should be adapted to the machine.
27  The name of the PEM executable file and Reshaping executable file should be adapted.
28  The PEM executable can have an optional argument which should be specified according to the set-up. This the job ID to make the PEM detect the job time limit.
29
30# run_PEM.def
31  All the possible parameters to define a PEM run (read in "conf_pem.F90").
32  It needs to be included in "run_PCM.def" with "INCLUDEDEF=run_PEM.def".
33
34# obl_ecc_lsp.asc
35  File describing orbital parameters for Mars from Laskar data. It contains the Earth year and the corresponding obliquity, eccentricity and Ls of perihelion.
36
37# modify_startfi_orbit.sh:
38  Bash script file to modify orbital parameters in the file "startfi.nc" (obliquity, eccentricity, Ls perihelion and possibly initial Ls). They should be consistent with Laskar's data in "obl_ecc_lsp.asc" to start a chained simulation at a specific date.
39
40# modify_startfi_var.sh:
41  Bash script file to modify the value of a variable in a file "startfi.nc".
42
43# inipem_orbit.sh:
44  Bash script file to modify the orbital parameters of a file "startfi.nc" according to the date set in the file "run_PEM.def".
45
46# concat_diagpem.sh:
47  Bash script file to concatenate along the variable 'Time' all the "diagpem.nc" files of the PEM into one NetCDF file. 'Time' is re-indexed with the numbering of Martian years simulated by the PEM run.
48
49# clean.sh:
50  Bash script file to clean the folder after a PEM simulation.
51
52# multiple_exec.sh:
53  Bash script to execute multiple scripts in subdirectories, useful to launch multiple simulations at once.
54
55# visu_layering.py:
56  Python script file to output the stratification data from the "startpem.nc" files.
57
58# visu_evol_layering.py:
59  Python script file to output the stratification data over time from the "startpem.nc" files.
60
61Note:
62  To run the chained simulation, be careful to have:
63      (i)   the xml files for XIOS. There should be "iodef.xml", "context_lmdz_physics.xml", "file_def_physics_mars.xml" and "field_def_physics_mars.xml" which can be found in the planetary deftank folder. In "context_lmdz_physics.xml", the line for Xdiurnalave should be activated (enabled=".true.");
64      (ii)  the usual def files to run the PCM. "run.def" should be renamed in "run_PCM.def";
65      (iii  the starting files ("startfi.nc" and "start.nc"). The former can be modified by "modify_startfi_orbit.sh";
66      (iv)  some optional files. For example, "diagfi.def" and "diagpem.def".
Note: See TracBrowser for help on using the repository browser.