[4344] | 1 | --------------------------------------------------------------------------- |
---|
| 2 | |
---|
[4337] | 3 | ***** replay tools *********** |
---|
| 4 | |
---|
| 5 | Developed by F. Hourdin, 2022, frederic.hourdin@lmd.ipsl.fr |
---|
| 6 | |
---|
[4344] | 7 | --------------------------------------------------------------------------- |
---|
| 8 | |
---|
| 9 | Purpose : |
---|
| 10 | --------- |
---|
| 11 | |
---|
| 12 | The idea is to rerun a unique subroutine (which could istelf call others) from |
---|
| 13 | the LMDZ physcs package after a first simulations (i.e. routines in |
---|
| 14 | LMDZ/libf/phylmd). |
---|
[4337] | 15 | The variables in the interface of the routine are stored in binary files |
---|
| 16 | (dump_ini.bin and dump_param.bin). |
---|
[4344] | 17 | The tools also creates automatically an netcdf file phys.nc with all the |
---|
| 18 | variables of the subroutine stored at each time-step. |
---|
[4337] | 19 | |
---|
| 20 | 1D : run lmdz1d.e first and then replay1d.e |
---|
| 21 | both lmdz1d.F90 and replay1d.F90 are on libf/phylmd/dyn1d |
---|
| 22 | 3D : run gcm.e first and then replay3d.e |
---|
| 23 | both gcm.F90 and replay3d.F90 are on libf/dyn3d |
---|
| 24 | Available in sequential mode only (no parallel version so far) |
---|
| 25 | |
---|
[4344] | 26 | |
---|
[4337] | 27 | Contains : |
---|
[4344] | 28 | --------- |
---|
| 29 | |
---|
[4337] | 30 | * replay_equip.sh |
---|
| 31 | The main script, to be run on the phylmd directory. |
---|
| 32 | It equips the fortran routine before compilation. |
---|
| 33 | The main documentation of the replay tools is in this script |
---|
[4344] | 34 | |
---|
[4337] | 35 | * replay_param.sh |
---|
| 36 | a first, simpler, but less powerfull version of replay_equip.sh |
---|
[4344] | 37 | |
---|
[4337] | 38 | * replay_clean.sh |
---|
| 39 | to be run on phylmd to clean all what was added automatically by |
---|
| 40 | replay_equip.sh |
---|
[4344] | 41 | |
---|
[4337] | 42 | * replay_1D.sh |
---|
| 43 | A script to run automatically replay tools in SCM mode on |
---|
| 44 | 1D/EXEC/... |
---|
[4344] | 45 | |
---|
| 46 | It is suggested to add |
---|
| 47 | export PATH=$PATH:~/LMDZ/Replay |
---|
| 48 | (or any other location of the Replay directory on you computer) |
---|
| 49 | so that you can invoke the script from wherever on your computer. |
---|
| 50 | |
---|
| 51 | |
---|
| 52 | Available through |
---|
| 53 | ----------------- |
---|
| 54 | svn checkout https://svn.lmd.jussieu.fr/LMDZ/BOL/Replay |
---|
| 55 | Rm : svn deposit created from FH laptop through : |
---|
| 56 | svn import ./Replay https://svn.lmd.jussieu.fr/LMDZ/BOL/Replay -m "Import initial des outils Replay" |
---|
| 57 | |
---|