Changes between Version 4 and Version 5 of reduced_IPSLCM6
- Timestamp:
- 07/09/19 14:04:46 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
reduced_IPSLCM6
v4 v5 3 3 For the sake of simplicity the Schwarz algorithm was only implemented and tested without PISCES for the ocean and without ORCHIDEE for the atmosphere. 4 4 5 As well, regarding resolution the method was implemented on the ORCA2 grid for NEMO and a 96x95grid for LMDZ.5 As well, regarding resolution, the method was implemented on the ORCA2 grid for NEMO and a 96x95-39 grid for LMDZ. 6 6 7 7 The ice model retained was LIM3 which allows for greater control and is conservative. 8 8 9 The various steps to get a working IPSLCM6 model with these settings isnow described.9 The various steps to get a working IPSLCM6 model with these settings are now described. 10 10 11 11 == IPSLCM6 model == … … 13 13 Get the latest IPSLCM6 model from the forge repository. 14 14 15 In the workdir of your project, create a directory for your new IPSLCM6 installation, move into it and get modipsl by executing 15 In the workdir of your project, create a directory for your new IPSLCM6 installation, move into it and get modipsl by executing: 16 16 {{{ 17 17 svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl 18 18 }}} 19 19 20 Go in `modipsl/util` and execute: 21 {{{ 22 ./model -h 23 }}} 24 to get the list of downloadable models and configurations. 25 26 Choose the latest IPSLCM6 model, for instance `IPSLCM6.1.9-LR`. Download it by executing: 27 {{{ 28 ./model IPSLCM6.1.9-LR 29 }}} 30 20 31 == setting an ORCA2LIM3PISCES configuration in NEMOGCM/CONFIG == 21 32 22 Since ORCA2LIM3PISCES is not a standard configuration of NEMO in the IPSLCM6 model it is necessary to create this configuration. 23 In order to retain the latest changes to NEMO-LIM3 we use the ORCA1LIM3PISCES configuration as a template. 33 Go to the `modeles/NEMOGCM/CONFIG` directory and have a look at the available configurations with `ls`. 24 34 25 To do this, go into 35 Since ORCA2_LIM3_PISCES is not a standard configuration of NEMO in the IPSLCM6 model it is necessary to create this configuration. 36 In order to retain the latest changes to NEMO-LIM3 we use the ORCA1_LIM3_PISCES configuration as a template. 26 37 38 To do this execute the following lines: 39 {{{ 40 ./makenemo -n ORCA2_LIM3_PISCES -r ORCA1_LIM3_PISCES -m X64_IRENE -j0 41 ./makenemo -n ORCA2_LIM3_PISCES -m X64_IRENE clean 42 }}} 43 44 The first line creates a new directory `ORCA2_LIM3_PISCES` based on `ORCA1_LIM3_PISCES` retaining all changes to the sources in the MY_SRC directory. This will let you have the latest changes to NEMO-LIM3. As a side effect you also get PISCES changes which will anyway not be compiled since it is removed at compile time. 45 46