This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
initial_conditions:sea_ice [2016/06/03 15:14] nfuckar [References] |
initial_conditions:sea_ice [2020/02/04 15:57] (current) jacosta [Brief description] |
||
|---|---|---|---|
| Line 18: | Line 18: | ||
| | m017| LIM3| ORCA025| 19930501| 20091101| 05,11| fc0| Available for testing but does not include observational information| no reference | | | m017| LIM3| ORCA025| 19930501| 20091101| 05,11| fc0| Available for testing but does not include observational information| no reference | | ||
| | m063| LIM3| ORCA025| 19580101| 20061201| all| fc0| Single-category sea-ice product using DFS4.3 surface forcing fields and EC-Earth3.1 land-sea mask | no reference | | | m063| LIM3| ORCA025| 19580101| 20061201| all| fc0| Single-category sea-ice product using DFS4.3 surface forcing fields and EC-Earth3.1 land-sea mask | no reference | | ||
| + | | a05y| LIM3| ORCA1| 19930101| 20091031 | all|fc0|5-category sea ice product using DFS5.2 surface forcing fields and EC-Earth3.2 land-sea mask| no reference | | ||
| + | | a07m| LIM3| ORCA1| 19790101| 19881231 | all|fc00-fc24|5-category sea ice product using DFS5.2 surface forcing fields, assimilation of sea ice concentration and EC-Earth3.2 land-sea mask| no reference | | ||
| + | | a09b| LIM3| ORCA1| 19890101| 19981231 | all|fc00-fc24|5-category sea ice product using DFS5.2 surface forcing fields, assimilation of sea ice concentration and EC-Earth3.2 land-sea mask| no reference | | ||
| + | | a0dc| LIM3| ORCA1| 19790101| 20150331 | all |fc01-fc25|5-category sea ice product using DFS5.2 surface forcing fields, EnKF assimilation of ESA (1992-2008) otherwise OSI-SAF sea ice concentration and EC-Earth3.2 land-sea mask| no reference | | ||
| + | | a0na| LIM3| ORCA1| 20150401| 20161231 | all |fc01-fc25|5-category sea ice product using DFS5.2 surface forcing fields, EnKF assimilation of ESA (1992-2008) otherwise OSI-SAF sea ice concentration and EC-Earth3.2 land-sea mask| no reference | | ||
| + | | a1e1/a1ue| LIM3| ORCA1| 19600101| 20151201 | all |fc00-fc04|5-category sea ice product using DFS5.2 surface forcing fields, surface restoring and subsurface nudging to ORAS4 with EC-Earth3.2 (NEMO-LIM only sims). Member fc00 should be taken from a1ue and members fc01 to fc04 should be taken from a1e1. | no reference | | ||
| + | | a1n1| LIM3| ORCA025| 19600101| 20151201 | all |fc04-fc00|5-category sea ice product using DFS5.2 surface forcing fields, surface restoring and subsurface nudging to ORAS5 with EC-Earth3.2 (NEMO-LIM only sims). | In progress | | ||
| + | | a22b| LIM3| ORCA1| 20100101| 20181201 | all |fc00-fc04|5-category sea ice product using ERA-Interim surface forcing fields, surface restoring and subsurface nudging to ORAS4 with EC-Earth3.2 (NEMO-LIM only sims). | no reference | | ||
| + | | a2fd| LIM3| ORCA1| 20180101| 20191201 | all |fc01-fc05|5-category sea ice product using ERA5 surface forcing fields, surface restoring and subsurface nudging to ORAS5 with EC-Earth3.2 (NEMO-LIM only sims). | no reference | | ||
| ==== Need for new sea ice initial conditions ==== | ==== Need for new sea ice initial conditions ==== | ||
| Line 37: | Line 46: | ||
| ==== How to generate new sea ice initial conditions? ==== | ==== How to generate new sea ice initial conditions? ==== | ||
| + | |||
| + | == i00v and i057 == | ||
| + | |||
| + | 1. Fetch ERA-interim atmospheric forcing data | ||
| + | |||
| + | Go to the cfutools GIT repository (https:// | ||
| + | |||
| + | Follow the instructions from the README. All the scripts to fetch ERA-interim files are in that same directory | ||
| + | |||
| + | 2. Prepare wind perturbations and generate members fc1-fc4 for the forcings from member fc0 | ||
| + | |||
| + | Still in the prep_nem_forcings/ | ||
| + | |||
| + | Instructions in the README and all scripts in that same directory | ||
| + | |||
| + | 3. The atmospheric forcing files need to be stored there: | ||
| + | |||
| + | / | ||
| + | |||
| + | 4. Fetch ORAS4 monthly temperature and salinity for the ocean nudging at ECMWF ecgate. Run in the $SCRATCH/ | ||
| + | |||
| + | #!/bin/ksh | ||
| + | EXPID=s4 # Tag of ORAS4 on the ECFS repository | ||
| + | DATASOURCE=" | ||
| + | YEARI=2015 # First year to download | ||
| + | YEARF=2015 # Last year to download | ||
| + | MEMBER_LST=" | ||
| + | MON_LST=" | ||
| + | YEAR=$YEARI | ||
| + | while [[ $YEAR -le $YEARF ]] ; do | ||
| + | for mem in $MEMBER_LST ; do | ||
| + | for mon in $MON_LST ; do | ||
| + | ecp ${DATASOURCE}/ | ||
| + | done | ||
| + | done | ||
| + | YEAR=$((YEAR+1)) | ||
| + | done | ||
| + | |||
| + | 5. Download the ORAS4 monthly temperature and salinity locally: | ||
| + | |||
| + | cd / | ||
| + | ftp ecaccess.ecmwf.int | ||
| + | cd ECSCRATCH/ | ||
| + | prompt | ||
| + | mget * | ||
| + | for ((jmemb=0; | ||
| + | |||
| + | 6. For i057 only, interpolate + extrapolate vertically and horizontally + fill in empty seas for the ORAS4 nudging files to be usable with EC-Earth3 | ||
| + | |||
| + | Go to the cfutools GIT repository | ||
| + | cd prep_restarts/ | ||
| + | edit loop_outputs_oras4.sh | ||
| + | | ||
| + | |||
| + | | ||
| + | | ||
| + | fc0=0 # First member to process | ||
| + | fcf=4 # Last member to process | ||
| + | |||
| + | | ||
| + | | ||
| + | |||
| + | 7. Extend i00v and i057 | ||
| + | |||
| + | For i00v, it is necessary to copy / | ||
| + | necessary to copy at ithaca / | ||
| + | be used. | ||
| + | |||
| + | For both i00v and i057, the expdef needs to be modified to run only the extension of interest. If any permission | ||
| + | issue arises, you can ask to any IT who has root access to fix these permission issues. | ||
| + | |||
| + | The chunk length is 6 months for both i00v and i057. A change in the chunk length would induce code change in | ||
| + | the template relying on Omar's pluggin for ocean nudging. | ||
| + | |||
| + | ==== Contacts ==== | ||
| + | |||
| + | jacosta@bsc.es | ||
| + | |||