Changeset 10289
- Timestamp:
- 2018-11-08T11:48:53+01:00 (2 years ago)
- Location:
- NEMO/branches/2018/dev_r9866_HPC_03_globcom
- Files:
-
- 12 deleted
- 182 edited
- 64 copied
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2018/dev_r9866_HPC_03_globcom/INSTALL.rst
r9596 r10289 1 Install the modelling framework (NEMO and XIOS) 1 ********************* 2 Install the framework 3 ********************* 2 4 3 Last edition: 2018-02-14 21:32 CET by nicolasmartin 5 .. contents:: 6 :local: 7 8 Dependencies 9 ============ 4 10 5 Extract the NEMO code 6 Description of NEMOGCM directory tree 7 Extract and install XIOS 8 Setup your architecture configuration file 9 Compile and create NEMO executable 10 More options 11 Default behaviour 12 Tools used during the process 13 Examples 14 Running the model 15 Viewing and changing list of active CPP keys 11 | The NEMO source code is written in Fortran 95 and part of its dependencies are already included (``./ext``): 12 AGRIF preprocessing program "conv", FCM build system and IOIPSL library for outputs. 13 | And some Perl 5, Fortran compiler (ifort, gfortran, pgfortran, ...), MPI library (Open MPI or MPICH) 16 14 17 Extract the NEMO code 15 But The following dependencies should be from the official repositories of your Linux distribution but 16 you will probably have to compile them from source for enabling parallel I/O support. 18 17 19 Using your account registered here ('my_login' with password) 18 - `HDF5`_ (C library) 19 - `NetCDF`_ (C and Fortran libraries) 20 21 Extract the source code 22 ======================= 23 24 Download the source code 25 ------------------------ 20 26 21 27 .. code:: console 22 svn --username 'mylogin' co http://forge.ipsl.jussieu.fr/nemo/svn/branches/2015/nemo_v3_6_STABLE/NEMOGCM23 28 24 Description of NEMOGCM directory tree 29 $ svn co http://forge.ipsl.jussieu.fr/nemo/svn/NEMO/releases/release-4.0 25 30 26 The image below shows the directory tree: 31 Description of directory tree 32 ----------------------------- 27 33 28 simple table: 29 ARCH Compilation option files, with format arch_compiler.fcm, the compiler name has to be provided with –m option 30 CONFIG All configurations and a cpp.fcm file containing the list of CPP keys to each configuration 31 EXTERNAL Package to implement an embedded model (AGRIF) 32 NEMO FORTRAN source codes in several sub-directories 33 SETTE Package to make tests to ensure the reproducibility and restartability of the code after changes 34 TOOLS Useful softwares to different utilities 34 +-----------+------------------------------------------------------------+ 35 | Folder | Purpose | 36 +===========+============================================================+ 37 | ``arch`` | Settings (per architecture-compiler pair) | 38 +-----------+------------------------------------------------------------+ 39 | ``cfgs`` | :doc:`Reference configurations <configurations>` | 40 +-----------+------------------------------------------------------------+ 41 | ``doc`` | - ``latex``: reference manuals for |OPA|, |SI3| & |TOP| | 42 | | - ``namelists``: k start guide | 43 | | - ``rst``: quick start guide | 44 +-----------+------------------------------------------------------------+ 45 | ``ext`` | Dependencies included (AGRIF, FCM & IOIPSL) | 46 +-----------+------------------------------------------------------------+ 47 | ``mk`` | Building routines | 48 +-----------+------------------------------------------------------------+ 49 | ``src`` | Modelling routines | 50 | | | 51 | | - ``ICE``: |SI3| for sea ice | 52 | | - ``NST``: AGRIF for embedded zooms | 53 | | - ``OCE``: |OPA| for ocean dynamics | 54 | | - ``MBG``: |TOP| for tracers | 55 +-----------+------------------------------------------------------------+ 56 | ``tests`` | :doc:`Test cases <test_cases>` (unsupported) | 57 +-----------+------------------------------------------------------------+ 58 | ``tools`` | :doc:`Utilities <tools>` to [pre|post]process data | 59 +-----------+------------------------------------------------------------+ 35 60 36 61 Extract and install XIOS 62 ======================== 37 63 38 64 Diagnostic outputs from NEMO are handled by the third party XIOS library. … … 42 68 43 69 When you compile NEMO you will need to specify the following CPP keys: 44 70 45 71 key_iomput 46 72 key_mpp_mpi (if you want to run with multiple processes and/or use "detached mode" for the IOs system XIOS) … … 48 74 49 75 Setup your architecture configuration file 76 ========================================== 50 77 51 78 All compiler options in NEMO are controlled using files in NEMOGCM/ARCH/arch-'my_arch'.fcm where 'my_arch' is the name of the computing architecture. … … 58 85 59 86 Compile and create NEMO executable 87 ================================== 60 88 61 89 The main script to compile and create executable is called makenemo and located in the CONFIG directory, it is used to identify the routines you need from the source code, to build the makefile and run it. 62 90 As an example, compile GYRE with 'my_arch' to create a 'MY_GYRE' configuration: 63 91 64 cd NEMOGCM/CONFIG; ./makenemo –m 'my_arch' –r GYRE -n 'MY_GYRE' 92 .. code-block:: sh 93 94 ./makenemo –m 'my_arch' –r GYRE -n 'MY_GYRE' 65 95 66 96 The image below shows the structure and some content of "MY_CONFIG" directory from the launching of the configuration creation (directories and fundamental files created by makenemo). 67 97 68 98 +------------+----------------------------------------------------+ 99 | Folder | Purpose | 100 +============+====================================================+ 101 | ``BLD`` | | 102 +------------+----------------------------------------------------+ 103 | ``EXP00`` | | 104 +------------+----------------------------------------------------+ 105 | ``EXPREF`` | | 106 +------------+----------------------------------------------------+ 107 | ``MY_SRC`` | | 108 +------------+----------------------------------------------------+ 109 | ``WORK`` | | 110 +------------+----------------------------------------------------+ 69 111 70 WORK 71 72 73 74 Folder with the symbolic links to all unpreprocessed routines considered in the configuration 75 76 BLD 77 78 79 80 Compilation folder (executables, headers files, libraries, preprocessed routines, flags, …) 81 82 EXP00 83 84 85 86 Computation folder for running the model (namelists, xml, executables and inputs-outputs) 87 88 MY_SRC 89 90 91 92 Folder intended to contain your customized routines (modified from initial ones or new entire routines) 112 Folder with the symbolic links to all unpreprocessed routines considered in the configuration 113 Compilation folder (executables, headers files, libraries, preprocessed routines, flags, …) 114 Computation folder for running the model (namelists, xml, executables and inputs-outputs) 115 Folder intended to contain your customised routines (modified from initial ones or new entire routines) 93 116 94 117 After successful execution of makenemo command, the executable called opa is created in the EXP00 directory (in the example above, the executable is created in CONFIG/MY_GYRE/EXP00). 95 118 More options 96 119 97 echo "Usage : "${b_n} \ 98 " [-h] [-n name] [-m arch] [-d "dir1 dir2"] [-r conf] [-u conf] [-s Path] [-e Path] [-j No] [-v No] [-k 0/1]"; 99 echo " -h : help"; 100 echo " -h institute : specific help for consortium members"; 101 echo " -n name : config name, [-n help] to list existing configurations"; 102 echo " -m arch : choose compiler, [-m help] to list existing compilers"; 103 echo " -d dir : choose NEMO sub-directories"; 104 echo " -r conf : choose reference configuration"; 105 echo " -u conf : choose an unsupported (external) configuration"; 106 echo " -s Path : choose alternative location for NEMO main directory"; 107 echo " -e Path : choose alternative location for MY_SRC directory"; 108 echo " -j No : number of processes used to compile (0=nocompilation)"; 109 echo " -v No : set verbosity level for compilation [0-3]"; 110 echo " -k 0/1 : used cpp keys check (default = 1 -> check activated)"; 111 echo " -t dir : temporary directory for compilation" 112 echo ""; 120 .. 121 .. literalinclude:: 113 122 114 123 Default behaviour 124 ----------------- 115 125 116 126 At the first use, you need the -m option to specify the architecture configuration file (compiler and its options, routines and libraries to include), then for next compilation, it is assumed you will be using the same compiler. … … 118 128 119 129 Tools used during the process 130 ----------------------------- 120 131 121 132 functions.sh : bash functions used by makenemo, for instance to create the WORK directory … … 124 135 125 136 Examples 137 -------- 126 138 127 139 echo "Example to install a new configuration MY_CONFIG"; … … 149 161 150 162 Running the model 163 ================= 151 164 152 Once makenemo has run successfully, the opa executable is available in CONFIG/"MY_CONFIG"/EXP00153 For the reference configurations, the EXP00 folder also contains the initial input files (namelists, *xml files for the IOs…). If the configuration also needs NetCDF input files, this should be downloaded here from the corresponding tar file, see Users/Reference Configurations165 Once makenemo has run successfully, the opa executable is available in ``CONFIG/MY_CONFIG/EXP00`` 166 For the reference configurations, the EXP00 folder also contains the initial input files (namelists, \*xml files for the IOs…). If the configuration also needs NetCDF input files, this should be downloaded here from the corresponding tar file, see Users/Reference Configurations 154 167 155 168 cd 'MY_CONFIG'/EXP00 … … 157 170 158 171 Viewing and changing list of active CPP keys 172 ============================================ 159 173 160 For a given configuration (here called MY_CONFIG), the list of active CPP keys can be found in 174 For a given configuration (here called MY_CONFIG), the list of active CPP keys can be found in:: 161 175 162 176 NEMOGCM/CONFIG/'MYCONFIG'/cpp_'MY_CONFIG'.fcm 163 177 164 178 This text file can be edited to change the list of active CPP keys. Once changed, one needs to recompile opa executable using makenemo command in order for this change to be taken in account. 179 180 .. _HDF5: http://www.hdfgroup.org/downloads/hdf5 181 .. _NetCDF: http://www.unidata.ucar.edu/downloads/netcdf -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/README.rst
r9650 r10289 1 .. role:: rstblue 2 .. role:: rstgrey 3 .. role:: rstgreen 1 :Authors: NEMO System Team 2 :Release: |release| 3 :Date: |today| 4 4 5 ================ 6 NEMO Ocean Model 7 ================ 5 `NEMO`_ for *Nucleus for European Modelling of the Ocean* is a state-of-the-art modelling framework for 6 research activities and forecasting services in ocean and climate sciences. 8 7 9 NEMO_ (Nucleus for European Modelling of the Ocean) is a state-of-the-art modelling framework of 10 ocean related engines for oceanographic research, operational oceanography, seasonal forecast and 11 [paleo]climate studies. 8 .. contents:: 9 :local: 10 11 Overview 12 ======== 12 13 13 14 The NEMO ocean model has 3 major components: 14 15 15 - :rstblue:`OPA` is fundamental to all users by modelling the ocean [thermo]dynamics and16 solving the primitive equations;17 - :rstgrey:`LIM` for sea-ice simulates ice [thermo]dynamics, brine inclusions and18 subgrid-scale thickness variations;19 - :rstgreen:`TOP-PISCES` models biogeochemistry with TOP for20 the on/offline oceanic tracers transport and PISCES for the biogeochemical processes.16 - |OPA| models the ocean [thermo]dynamics and solves the primitive equations 17 (``./src/OCE``) :cite:`NEMO_manual`; 18 - |SI3| simulates ice [thermo]dynamics, brine inclusions and subgrid-scale thickness variations 19 (``./src/ICE``) :cite:`SI3_manual`; 20 - |TOP| models the [on|off]line oceanic tracers transport and the biogeochemical processes 21 (``./src/MBG``) :cite:`TOP_manual`. 21 22 22 These physical engines are described in their respective `reference publications`_. 23 These physical core engines are described in their respective <reference publications> that must be cited for 24 any work related to their use. 23 25 24 They are complemented by a 2-way nesting software (AGRIF_) and 25 a versatile data assimilation interface with 3 different modules 26 (linear-tangent TAM, observational operators OBS, and increment ASM). 26 Applications and capabilities 27 ============================= 27 28 28 ------------ 29 Applications 30 ------------ 29 Not only does the NEMO framework model the ocean circulation, 30 it offers various features to enable 31 31 32 | Distributed under CeCILL license (GNU GPL compatible - see ``LICENSE``), 33 the framework offers several builtins reference configurations to 34 check your computing architecture and evaluate the model skills and performances (``./cfgs``).35 | The end user could also find some idealized test cases on the web to serve as examples and 36 to study particular processes.32 - Create :doc:`embedded zooms <zooms>` seamlessly with 2-way nesting package `AGRIF`_. 33 - :doc:`Low cost biogeochemistry <coarsening>` and :doc:`alternative model opportunity <tracers>`. 34 - Versatile :doc:`assimilation <assimilation>`. 35 - :doc:`Output diagnostics <diagnostics>` with `XIOS`_ server. 36 - :doc:`Coupling <coupling>` via `OASIS`_ for Earth system modelling. 37 37 38 A set of tools is also provided to setup your own configuration and 39 [pre|post]process your data (``./tools``). 38 | Several :doc:`builtins configurations <configurations>` are provided to assess the skills and performances of 39 the model which can be used as templates for :doc:`setting up a new configuration <setup>` (``./cfgs``). 40 | The end user could also find some :doc:`idealised test cases <test_cases>` online to serve as templates and 41 to study particular processes (``./tests``). 40 42 41 ------- 42 Options 43 ------- 43 A set of :doc:`utilities <tools>` is also provided to [pre|post]process your data (``./tools``). 44 44 45 For writing diagnostics in a efficient way, NEMO make use of XIOS_ server which 46 controlled the outputs using XML input file. 45 Literature 46 ========== 47 47 48 To enable Earth system modelling, NEMO can be interfaced via 49 OASIS_ coupleur to external components such as atmospheric models or 50 alternative models of sea-ice or biogeochemistry. 48 :doc:`install` 51 49 52 ------------- 53 Documentation 54 ------------- 50 The reference documentation is archived online 55 51 56 The NEMO reference manual can be generated from the LaTeX source code (``./doc``), 57 either in PDF or in HTML format, but it mights require some additionnal installations. 52 +-------+-------------------+----------------+ 53 | | Reference manual | |NEMO manual|_ | 54 | |OPA| +-------------------+----------------+ 55 | | Quick start guide | |NEMO guide|_ | 56 +-------+-------------------+----------------+ 57 | |SI3| | |SI3 manual|_ | 58 +---------------------------+----------------+ 59 | |TOP| | |TOP manual|_ | 60 +---------------------------+----------------+ 58 61 59 In any case, both formats are available online on the `NEMO website`__. 62 .. |NEMO manual| image:: http://zenodo.org/badge/DOI/10.5281/zenodo.1464816.svg 63 .. |NEMO guide| image:: http://zenodo.org/badge/DOI/10.5281/zenodo.1475325.svg 64 .. |SI3 manual| image:: http://zenodo.org/badge/DOI/10.5281/zenodo.1471689.svg 65 .. |TOP manual| image:: http://zenodo.org/badge/DOI/10.5281/zenodo.1471700.svg 60 66 61 --------------------- 67 | Reference manuals and quick start guide can be build from source and exported to HTML or PDF (``./doc``). 68 | In any case, one can find them online: 69 70 Since 2014 the project has a `Special Issue <http://www.geosci-model-dev.net/special_issue40.html>`_ in 71 the open-access journal Geoscientific Model Development (GMD) from the European Geosciences Union (EGU). 72 The main scope is to collect relevant manuscripts covering various topics and to provide a single portal to 73 assess the model potential and evolution. 74 75 Used by a wide audience, numerous :website:`associated projects <projects>` have been carried out and 76 extensive :website:`bibliography <bibliography/publications>` published. 77 62 78 Community development 63 --------------------- 79 ===================== 64 80 65 | The NEMO Consortium gathering 6 European institutes organises the sustainable development in order to 66 keep a reliable evolving system since 2008. 67 | It defined the multiyear development strategy which is implemented by the NEMO System Team. 81 | The NEMO Consortium pulling together 5 European institutes (`CMCC`_, `CNRS`_, `MOI`_, `Met Office`_ and `NERC`_) 82 plans the sustainable development in order to keep a reliable evolving framework since 2008. 83 | It defines the |NEMO strategy|_ which is implemented by the System Team on 84 a yearly basis in order to release a new version almost every four years. 68 85 69 -------- 70 Acronyms 71 -------- 86 .. |NEMO strategy| replace:: multi-year development strategy 72 87 73 AGRIF 74 Adaptive Grid Refinement In Fortran 75 76 LIM 77 Louvain-la-Neuve Ice Model 78 79 OPA 80 "Océan PArallélisé" (french) 81 82 PISCES 83 Pelagic Interactions Scheme for Carbon and Ecosystem Studies 84 85 TAM 86 Tangent Adjoint Model 87 88 TOP 89 Tracers in Ocean Paradigm 90 91 XIOS 92 XML Input Output Server 93 94 ---- 95 96 .. _AGRIF: http://agrif.imag.fr 97 .. _Forge: http://forge.ipsl.jussieu.fr/nemo 98 .. _NEMO: http://www.nemo-ocean.eu 99 .. _OASIS: http://verc.enes.org/oasis 100 .. _reference publications: http://www.nemo-ocean.eu/bibliography/documentation 101 .. _XIOS: http://forge.ipsl.jussieu.fr/ioserver 102 103 .. __: NEMO_ 88 When the need arises, :forge:`working groups <wiki/WorkingGroups>` are created or resumed to 89 gather the community expertise for advising on the development activities. -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/1_context_nemo.xml
r9572 r10289 43 43 <domain_definition src="./domain_def_nemo.xml"/> 44 44 45 <grid_definition> 46 47 <!-- --> 48 <grid id="grid_T_2D" > 49 <domain id="grid_T" /> 50 </grid> 51 <!-- --> 52 <grid id="grid_T_3D_ncatice" > 53 <domain id="grid_T" /> 54 <axis id="ncatice" /> 55 </grid> 56 <!-- --> 57 <grid id="grid_T_3D" > 58 <domain id="grid_T" /> 59 <axis id="deptht" /> 60 </grid> 61 <!-- --> 62 <grid id="grid_U_2D" > 63 <domain id="grid_U" /> 64 </grid> 65 <!-- --> 66 <grid id="grid_U_3D" > 67 <domain id="grid_U" /> 68 <axis id="depthu" /> 69 </grid> 70 <!-- --> 71 <grid id="grid_V_2D" > 72 <domain id="grid_V" /> 73 </grid> 74 <!-- --> 75 <grid id="grid_V_3D" > 76 <domain id="grid_V" /> 77 <axis id="depthv" /> 78 </grid> 79 <!-- --> 80 <grid id="grid_W_2D" > 81 <domain id="grid_W" /> 82 </grid> 83 <!-- --> 84 <grid id="grid_W_3D" > 85 <domain id="grid_W" /> 86 <axis id="depthw" /> 87 </grid> 88 <!-- --> 89 <grid id="grid_1point" > 90 <domain domain_ref="1point"/> 91 </grid> 92 <!-- --> 93 <grid id="grid_T_nfloat" > 94 <domain id="grid_T" /> 95 <axis id="nfloat" /> 96 </grid> 97 <!-- --> 98 <grid id="grid_EqT" > 99 <domain domain_ref="EqT" /> 100 </grid> 101 <!-- --> 102 <grid id="grid_znl_T_2D"> 103 <domain id="gznl" /> 104 </grid> 105 <!-- --> 106 <grid id="grid_znl_T_3D"> 107 <domain id="gznl" /> 108 <axis id="deptht" /> 109 </grid> 110 <!-- --> 111 <grid id="grid_znl_W_3D"> 112 <domain id="gznl" /> 113 <axis id="depthw" /> 114 </grid> 115 116 <grid id="grid_ptr_T_2D"> 117 <domain id="ptr" /> 118 </grid> 119 120 <grid id="grid_ptr_T_3D"> 121 <domain id="ptr" /> 122 <axis id="deptht" /> 123 </grid> 124 125 <grid id="grid_ptr_W_3D"> 126 <domain id="ptr" /> 127 <axis id="depthw" /> 128 </grid> 129 130 </grid_definition> 45 <grid_definition src="./grid_def_nemo.xml"/> 131 46 132 47 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/1_namelist_cfg
r9773 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 ! AGRIF ICE configuration ! … … 127 127 &namsbc_rnf ! runoffs (ln_rnf =T) 128 128 !----------------------------------------------------------------------- 129 ln_rnf_mouth = .true. ! specific treatment at rivers mouths129 ln_rnf_mouth = .true. ! specific treatment at rivers mouths 130 130 rn_hrnf = 15.e0 ! depth over which enhanced vertical mixing is used (ln_rnf_mouth=T) 131 131 rn_avt_rnf = 1.e-3 ! value of the additional vertical mixing coef. [m2/s] (ln_rnf_mouth=T) -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/2_context_nemo.xml
r9572 r10289 43 43 <domain_definition src="./domain_def_nemo.xml"/> 44 44 45 <grid_definition> 46 47 <!-- --> 48 <grid id="grid_T_2D" > 49 <domain id="grid_T" /> 50 </grid> 51 <!-- --> 52 <grid id="grid_T_3D_ncatice" > 53 <domain id="grid_T" /> 54 <axis id="ncatice" /> 55 </grid> 56 <!-- --> 57 <grid id="grid_T_3D" > 58 <domain id="grid_T" /> 59 <axis id="deptht" /> 60 </grid> 61 <!-- --> 62 <grid id="grid_U_2D" > 63 <domain id="grid_U" /> 64 </grid> 65 <!-- --> 66 <grid id="grid_U_3D" > 67 <domain id="grid_U" /> 68 <axis id="depthu" /> 69 </grid> 70 <!-- --> 71 <grid id="grid_V_2D" > 72 <domain id="grid_V" /> 73 </grid> 74 <!-- --> 75 <grid id="grid_V_3D" > 76 <domain id="grid_V" /> 77 <axis id="depthv" /> 78 </grid> 79 <!-- --> 80 <grid id="grid_W_2D" > 81 <domain id="grid_W" /> 82 </grid> 83 <!-- --> 84 <grid id="grid_W_3D" > 85 <domain id="grid_W" /> 86 <axis id="depthw" /> 87 </grid> 88 <!-- --> 89 <grid id="grid_1point" > 90 <domain domain_ref="1point"/> 91 </grid> 92 <!-- --> 93 <grid id="grid_T_nfloat" > 94 <domain id="grid_T" /> 95 <axis id="nfloat" /> 96 </grid> 97 <!-- --> 98 <grid id="grid_EqT" > 99 <domain domain_ref="EqT" /> 100 </grid> 101 <!-- --> 102 <grid id="grid_znl_T_2D"> 103 <domain id="gznl" /> 104 </grid> 105 <!-- --> 106 <grid id="grid_znl_T_3D"> 107 <domain id="gznl" /> 108 <axis id="deptht" /> 109 </grid> 110 <!-- --> 111 <grid id="grid_znl_W_3D"> 112 <domain id="gznl" /> 113 <axis id="depthw" /> 114 </grid> 115 116 <grid id="grid_ptr_T_2D"> 117 <domain id="ptr" /> 118 </grid> 119 120 <grid id="grid_ptr_T_3D"> 121 <domain id="ptr" /> 122 <axis id="deptht" /> 123 </grid> 124 125 <grid id="grid_ptr_W_3D"> 126 <domain id="ptr" /> 127 <axis id="depthw" /> 128 </grid> 129 130 </grid_definition> 45 <grid_definition src="./grid_def_nemo.xml"/> 131 46 132 47 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/2_namelist_cfg
r9773 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/1_namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/1_namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 ! AGRIF ICE configuration ! -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/3_context_nemo.xml
r9770 r10289 43 43 <domain_definition src="./domain_def_nemo.xml"/> 44 44 45 <grid_definition> 46 47 <!-- --> 48 <grid id="grid_T_2D" > 49 <domain id="grid_T" /> 50 </grid> 51 <!-- --> 52 <grid id="grid_T_3D_ncatice" > 53 <domain id="grid_T" /> 54 <axis id="ncatice" /> 55 </grid> 56 <!-- --> 57 <grid id="grid_T_3D" > 58 <domain id="grid_T" /> 59 <axis id="deptht" /> 60 </grid> 61 <!-- --> 62 <grid id="grid_U_2D" > 63 <domain id="grid_U" /> 64 </grid> 65 <!-- --> 66 <grid id="grid_U_3D" > 67 <domain id="grid_U" /> 68 <axis id="depthu" /> 69 </grid> 70 <!-- --> 71 <grid id="grid_V_2D" > 72 <domain id="grid_V" /> 73 </grid> 74 <!-- --> 75 <grid id="grid_V_3D" > 76 <domain id="grid_V" /> 77 <axis id="depthv" /> 78 </grid> 79 <!-- --> 80 <grid id="grid_W_2D" > 81 <domain id="grid_W" /> 82 </grid> 83 <!-- --> 84 <grid id="grid_W_3D" > 85 <domain id="grid_W" /> 86 <axis id="depthw" /> 87 </grid> 88 <!-- --> 89 <grid id="grid_1point" > 90 <domain domain_ref="1point"/> 91 </grid> 92 <!-- --> 93 <grid id="grid_T_nfloat" > 94 <domain id="grid_T" /> 95 <axis id="nfloat" /> 96 </grid> 97 <!-- --> 98 <grid id="grid_EqT" > 99 <domain domain_ref="EqT" /> 100 </grid> 101 <!-- --> 102 <grid id="grid_znl_T_2D"> 103 <domain id="gznl" /> 104 </grid> 105 <!-- --> 106 <grid id="grid_znl_T_3D"> 107 <domain id="gznl" /> 108 <axis id="deptht" /> 109 </grid> 110 <!-- --> 111 <grid id="grid_znl_W_3D"> 112 <domain id="gznl" /> 113 <axis id="depthw" /> 114 </grid> 115 116 <grid id="grid_ptr_T_2D"> 117 <domain id="ptr" /> 118 </grid> 119 120 <grid id="grid_ptr_T_3D"> 121 <domain id="ptr" /> 122 <axis id="deptht" /> 123 </grid> 124 125 <grid id="grid_ptr_W_3D"> 126 <domain id="ptr" /> 127 <axis id="depthw" /> 128 </grid> 129 130 </grid_definition> 45 <grid_definition src="./grid_def_nemo.xml"/> 131 46 132 47 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/3_namelist_cfg
r9773 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/1_namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/1_namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 ! AGRIF ICE configuration ! -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/context_nemo.xml
r9572 r10289 43 43 <domain_definition src="./domain_def_nemo.xml"/> 44 44 45 <grid_definition> 46 47 <!-- --> 48 <grid id="grid_T_2D" > 49 <domain id="grid_T" /> 50 </grid> 51 <!-- --> 52 <grid id="grid_T_3D_ncatice" > 53 <domain id="grid_T" /> 54 <axis id="ncatice" /> 55 </grid> 56 <!-- --> 57 <grid id="grid_T_3D" > 58 <domain id="grid_T" /> 59 <axis id="deptht" /> 60 </grid> 61 <!-- --> 62 <grid id="grid_U_2D" > 63 <domain id="grid_U" /> 64 </grid> 65 <!-- --> 66 <grid id="grid_U_3D" > 67 <domain id="grid_U" /> 68 <axis id="depthu" /> 69 </grid> 70 <!-- --> 71 <grid id="grid_V_2D" > 72 <domain id="grid_V" /> 73 </grid> 74 <!-- --> 75 <grid id="grid_V_3D" > 76 <domain id="grid_V" /> 77 <axis id="depthv" /> 78 </grid> 79 <!-- --> 80 <grid id="grid_W_2D" > 81 <domain id="grid_W" /> 82 </grid> 83 <!-- --> 84 <grid id="grid_W_3D" > 85 <domain id="grid_W" /> 86 <axis id="depthw" /> 87 </grid> 88 <!-- --> 89 <grid id="grid_1point" > 90 <domain domain_ref="1point"/> 91 </grid> 92 <!-- --> 93 <grid id="grid_T_nfloat" > 94 <domain id="grid_T" /> 95 <axis id="nfloat" /> 96 </grid> 97 <!-- --> 98 <grid id="grid_EqT" > 99 <domain domain_ref="EqT" /> 100 </grid> 101 <!-- --> 102 <grid id="grid_znl_T_2D"> 103 <domain id="gznl" /> 104 </grid> 105 <!-- --> 106 <grid id="grid_znl_T_3D"> 107 <domain id="gznl" /> 108 <axis id="deptht" /> 109 </grid> 110 <!-- --> 111 <grid id="grid_znl_W_3D"> 112 <domain id="gznl" /> 113 <axis id="depthw" /> 114 </grid> 115 116 <grid id="grid_ptr_T_2D"> 117 <domain id="ptr" /> 118 </grid> 119 120 <grid id="grid_ptr_T_3D"> 121 <domain id="ptr" /> 122 <axis id="deptht" /> 123 </grid> 124 125 <grid id="grid_ptr_W_3D"> 126 <domain id="ptr" /> 127 <axis id="depthw" /> 128 </grid> 129 130 </grid_definition> 45 <grid_definition src="./grid_def_nemo.xml"/> 131 46 132 47 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/file_def_nemo-ice.xml
r9572 r10289 5 5 ============================================================================================================ 6 6 = output files definition = 7 = Define your own files for lim3=7 = Define your own files for sea ice = 8 8 = put the variables you want... = 9 9 ============================================================================================================ -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AGRIF_DEMO/EXPREF/namelist_cfg
r9771 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 ! AGRIF ICE configuration ! … … 127 127 &namsbc_rnf ! runoffs (ln_rnf =T) 128 128 !----------------------------------------------------------------------- 129 ln_rnf_mouth = .true. ! specific treatment at rivers mouths129 ln_rnf_mouth = .true. ! specific treatment at rivers mouths 130 130 rn_hrnf = 15.e0 ! depth over which enhanced vertical mixing is used (ln_rnf_mouth=T) 131 131 rn_avt_rnf = 1.e-3 ! value of the additional vertical mixing coef. [m2/s] (ln_rnf_mouth=T) -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AMM12/EXPREF/context_nemo.xml
r9572 r10289 31 31 <domain_definition src="./domain_def_nemo.xml"/> 32 32 33 <grid_definition> 34 35 <!-- --> 36 <grid id="grid_T_2D" > 37 <domain id="grid_T" /> 38 </grid> 39 <!-- --> 40 <grid id="grid_T_3D_ncatice" > 41 <domain id="grid_T" /> 42 <axis id="ncatice" /> 43 </grid> 44 <!-- --> 45 <grid id="grid_T_3D" > 46 <domain id="grid_T" /> 47 <axis id="deptht" /> 48 </grid> 49 <!-- --> 50 <grid id="grid_U_2D" > 51 <domain id="grid_U" /> 52 </grid> 53 <!-- --> 54 <grid id="grid_U_3D" > 55 <domain id="grid_U" /> 56 <axis id="depthu" /> 57 </grid> 58 <!-- --> 59 <grid id="grid_V_2D" > 60 <domain id="grid_V" /> 61 </grid> 62 <!-- --> 63 <grid id="grid_V_3D" > 64 <domain id="grid_V" /> 65 <axis id="depthv" /> 66 </grid> 67 <!-- --> 68 <grid id="grid_W_2D" > 69 <domain id="grid_W" /> 70 </grid> 71 <!-- --> 72 <grid id="grid_W_3D" > 73 <domain id="grid_W" /> 74 <axis id="depthw" /> 75 </grid> 76 <!-- --> 77 <grid id="grid_1point" > 78 <domain domain_ref="1point"/> 79 </grid> 80 <!-- --> 81 <grid id="grid_T_nfloat" > 82 <domain id="grid_T" /> 83 <axis id="nfloat" /> 84 </grid> 85 <!-- --> 86 <grid id="grid_EqT" > 87 <domain domain_ref="EqT" /> 88 </grid> 89 <!-- --> 90 <grid id="grid_znl_T_2D"> 91 <domain id="gznl" /> 92 </grid> 93 <!-- --> 94 <grid id="grid_znl_T_3D"> 95 <domain id="gznl" /> 96 <axis id="deptht" /> 97 </grid> 98 <!-- --> 99 <grid id="grid_znl_W_3D"> 100 <domain id="gznl" /> 101 <axis id="depthw" /> 102 </grid> 103 104 <grid id="grid_ptr_T_2D"> 105 <domain id="ptr" /> 106 </grid> 107 108 <grid id="grid_ptr_T_3D"> 109 <domain id="ptr" /> 110 <axis id="deptht" /> 111 </grid> 112 113 <grid id="grid_ptr_W_3D"> 114 <domain id="ptr" /> 115 <axis id="depthw" /> 116 </grid> 117 118 </grid_definition> 33 <grid_definition src="./grid_def_nemo.xml"/> 119 34 120 35 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/AMM12/EXPREF/namelist_cfg
r9742 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 ! AMM12 configuration ! … … 219 219 &namdrg ! top/bottom drag coefficient (default: NO selection) 220 220 !----------------------------------------------------------------------- 221 ln_loglayer = .true. ! logarithmic drag: Cd = vkarmn/log(z/z0) |U|221 ln_loglayer = .true. ! logarithmic drag: Cd = vkarmn/log(z/z0) |U| 222 222 / 223 223 !----------------------------------------------------------------------- -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/C1D_PAPA/EXPREF/context_nemo.xml
r9799 r10289 31 31 <domain_definition src="./domain_def_nemo.xml"/> 32 32 33 <grid_definition> 34 35 <!-- --> 36 <grid id="grid_T_2D" > 37 <domain id="grid_T" /> 38 </grid> 39 <!-- --> 40 <grid id="grid_T_3D_ncatice" > 41 <domain id="grid_T" /> 42 <axis id="ncatice" /> 43 </grid> 44 <!-- --> 45 <grid id="grid_T_3D" > 46 <domain id="grid_T" /> 47 <axis id="deptht" /> 48 </grid> 49 <!-- --> 50 <grid id="grid_U_2D" > 51 <domain id="grid_U" /> 52 </grid> 53 <!-- --> 54 <grid id="grid_U_3D" > 55 <domain id="grid_U" /> 56 <axis id="depthu" /> 57 </grid> 58 <!-- --> 59 <grid id="grid_V_2D" > 60 <domain id="grid_V" /> 61 </grid> 62 <!-- --> 63 <grid id="grid_V_3D" > 64 <domain id="grid_V" /> 65 <axis id="depthv" /> 66 </grid> 67 <!-- --> 68 <grid id="grid_W_2D" > 69 <domain id="grid_W" /> 70 </grid> 71 <!-- --> 72 <grid id="grid_W_3D" > 73 <domain id="grid_W" /> 74 <axis id="depthw" /> 75 </grid> 76 <!-- --> 77 <grid id="grid_1point" > 78 <domain domain_ref="1point"/> 79 </grid> 80 <!-- --> 81 <grid id="grid_T_nfloat" > 82 <domain id="grid_T" /> 83 <axis id="nfloat" /> 84 </grid> 85 <!-- --> 86 <grid id="grid_EqT" > 87 <domain domain_ref="EqT" /> 88 </grid> 89 <!-- --> 90 <grid id="grid_znl_T_2D"> 91 <domain id="gznl" /> 92 </grid> 93 <!-- --> 94 <grid id="grid_znl_T_3D"> 95 <domain id="gznl" /> 96 <axis id="deptht" /> 97 </grid> 98 <!-- --> 99 <grid id="grid_znl_W_3D"> 100 <domain id="gznl" /> 101 <axis id="depthw" /> 102 </grid> 103 104 <grid id="grid_ptr_T_2D"> 105 <domain id="ptr" /> 106 </grid> 107 108 <grid id="grid_ptr_T_3D"> 109 <domain id="ptr" /> 110 <axis id="deptht" /> 111 </grid> 112 113 <grid id="grid_ptr_W_3D"> 114 <domain id="ptr" /> 115 <axis id="depthw" /> 116 </grid> 117 118 </grid_definition> 119 33 <grid_definition src="./grid_def_nemo.xml"/> 34 120 35 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/C1D_PAPA/EXPREF/namelist_cfg
r9799 r10289 2 2 !! NEMO/OCE : Reference namelist_ref !! 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 !! NEMO/O PA: 1 - Domain & run manager (namrun, namcfg, namdom, namtsd, namcrs, namc1d, namc1d_uvd)4 !! NEMO/OCE : 1 - Domain & run manager (namrun, namcfg, namdom, namtsd, namcrs, namc1d, namc1d_uvd) 5 5 !! namelists 2 - Surface boundary (namsbc, namsbc_flx, namsbc_blk, namsbc_cpl, 6 6 !! namsbc_sas, namtra_qsr, namsbc_rnf, … … 81 81 rn_lat1d = 50 ! Column latitude 82 82 rn_lon1d = -145 ! Column longitude 83 ln_c1d_locpt = .true. ! Localization of 1D config in a grid (T) or independant point (F)83 ln_c1d_locpt = .true. ! Localization of 1D config in a grid (T) or independant point (F) 84 84 / 85 85 !----------------------------------------------------------------------- -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/C1D_PAPA/MY_SRC/usrdef_hgr.F90
- Property svn:keywords set to Id
r9799 r10289 29 29 !!---------------------------------------------------------------------- 30 30 !! NEMO/OCE 4.0 , NEMO Consortium (2018) 31 !! $Id :$32 !! Software governed by the CeCILL licen ce (./LICENSE)31 !! $Id$ 32 !! Software governed by the CeCILL license (see ./LICENSE) 33 33 !!---------------------------------------------------------------------- 34 34 CONTAINS -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/C1D_PAPA/MY_SRC/usrdef_nam.F90
- Property svn:keywords set to Id
r9799 r10289 34 34 !!---------------------------------------------------------------------- 35 35 !! NEMO/OCE 4.0 , NEMO Consortium (2018) 36 !! $Id :$37 !! Software governed by the CeCILL licen ce (./LICENSE)36 !! $Id$ 37 !! Software governed by the CeCILL license (see ./LICENSE) 38 38 !!---------------------------------------------------------------------- 39 39 CONTAINS -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/C1D_PAPA/MY_SRC/usrdef_zgr.F90
- Property svn:keywords set to Id
r9799 r10289 34 34 !!---------------------------------------------------------------------- 35 35 !! NEMO/OCE 4.0 , NEMO Consortium (2018) 36 !! $Id :$37 !! Software governed by the CeCILL licen ce (./LICENSE)36 !! $Id$ 37 !! Software governed by the CeCILL license (see ./LICENSE) 38 38 !!---------------------------------------------------------------------- 39 39 CONTAINS -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/GYRE_BFM/EXPREF/context_nemo.xml
r9572 r10289 32 32 <domain_definition src="./domain_def_nemo.xml"/> 33 33 34 <grid_definition> 35 36 <!-- --> 37 <grid id="grid_T_2D" > 38 <domain id="grid_T" /> 39 </grid> 40 <!-- --> 41 <grid id="grid_T_3D_ncatice" > 42 <domain id="grid_T" /> 43 <axis id="ncatice" /> 44 </grid> 45 <!-- --> 46 <grid id="grid_T_3D" > 47 <domain id="grid_T" /> 48 <axis id="deptht" /> 49 </grid> 50 <!-- --> 51 <grid id="grid_U_2D" > 52 <domain id="grid_U" /> 53 </grid> 54 <!-- --> 55 <grid id="grid_U_3D" > 56 <domain id="grid_U" /> 57 <axis id="depthu" /> 58 </grid> 59 <!-- --> 60 <grid id="grid_V_2D" > 61 <domain id="grid_V" /> 62 </grid> 63 <!-- --> 64 <grid id="grid_V_3D" > 65 <domain id="grid_V" /> 66 <axis id="depthv" /> 67 </grid> 68 <!-- --> 69 <grid id="grid_W_2D" > 70 <domain id="grid_W" /> 71 </grid> 72 <!-- --> 73 <grid id="grid_W_3D" > 74 <domain id="grid_W" /> 75 <axis id="depthw" /> 76 </grid> 77 <!-- --> 78 <grid id="grid_1point" > 79 <domain domain_ref="1point"/> 80 </grid> 81 <!-- --> 82 <grid id="grid_T_nfloat" > 83 <domain id="grid_T" /> 84 <axis id="nfloat" /> 85 </grid> 86 <!-- --> 87 <grid id="grid_EqT" > 88 <domain domain_ref="EqT" /> 89 </grid> 90 <!-- --> 91 <grid id="grid_znl_T_2D"> 92 <domain id="gznl" /> 93 </grid> 94 <!-- --> 95 <grid id="grid_znl_T_3D"> 96 <domain id="gznl" /> 97 <axis id="deptht" /> 98 </grid> 99 <!-- --> 100 <grid id="grid_znl_W_3D"> 101 <domain id="gznl" /> 102 <axis id="depthw" /> 103 </grid> 104 105 <grid id="grid_ptr_T_2D"> 106 <domain id="ptr" /> 107 </grid> 108 109 <grid id="grid_ptr_T_3D"> 110 <domain id="ptr" /> 111 <axis id="deptht" /> 112 </grid> 113 114 <grid id="grid_ptr_W_3D"> 115 <domain id="ptr" /> 116 <axis id="depthw" /> 117 </grid> 118 119 </grid_definition> 34 <grid_definition src="./grid_def_nemo.xml"/> 120 35 121 36 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/GYRE_BFM/EXPREF/namelist_cfg
r9560 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PA: GYRE Configuration namelist : overwrite reference namelist2 !! NEMO/OCE : GYRE Configuration namelist : overwrite reference namelist 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/GYRE_PISCES/EXPREF/context_nemo.xml
r9572 r10289 32 32 <domain_definition src="./domain_def_nemo.xml"/> 33 33 34 <grid_definition> 35 36 <!-- --> 37 <grid id="grid_T_2D" > 38 <domain id="grid_T" /> 39 </grid> 40 <!-- --> 41 <grid id="grid_T_3D_ncatice" > 42 <domain id="grid_T" /> 43 <axis id="ncatice" /> 44 </grid> 45 <!-- --> 46 <grid id="grid_T_3D" > 47 <domain id="grid_T" /> 48 <axis id="deptht" /> 49 </grid> 50 <!-- --> 51 <grid id="grid_U_2D" > 52 <domain id="grid_U" /> 53 </grid> 54 <!-- --> 55 <grid id="grid_U_3D" > 56 <domain id="grid_U" /> 57 <axis id="depthu" /> 58 </grid> 59 <!-- --> 60 <grid id="grid_V_2D" > 61 <domain id="grid_V" /> 62 </grid> 63 <!-- --> 64 <grid id="grid_V_3D" > 65 <domain id="grid_V" /> 66 <axis id="depthv" /> 67 </grid> 68 <!-- --> 69 <grid id="grid_W_2D" > 70 <domain id="grid_W" /> 71 </grid> 72 <!-- --> 73 <grid id="grid_W_3D" > 74 <domain id="grid_W" /> 75 <axis id="depthw" /> 76 </grid> 77 <!-- --> 78 <grid id="grid_1point" > 79 <domain domain_ref="1point"/> 80 </grid> 81 <!-- --> 82 <grid id="grid_T_nfloat" > 83 <domain id="grid_T" /> 84 <axis id="nfloat" /> 85 </grid> 86 <!-- --> 87 <grid id="grid_EqT" > 88 <domain domain_ref="EqT" /> 89 </grid> 90 <!-- --> 91 <grid id="grid_znl_T_2D"> 92 <domain id="gznl" /> 93 </grid> 94 <!-- --> 95 <grid id="grid_znl_T_3D"> 96 <domain id="gznl" /> 97 <axis id="deptht" /> 98 </grid> 99 <!-- --> 100 <grid id="grid_znl_W_3D"> 101 <domain id="gznl" /> 102 <axis id="depthw" /> 103 </grid> 104 105 <grid id="grid_ptr_T_2D"> 106 <domain id="ptr" /> 107 </grid> 108 109 <grid id="grid_ptr_T_3D"> 110 <domain id="ptr" /> 111 <axis id="deptht" /> 112 </grid> 113 114 <grid id="grid_ptr_W_3D"> 115 <domain id="ptr" /> 116 <axis id="depthw" /> 117 </grid> 118 119 </grid_definition> 34 <grid_definition src="./grid_def_nemo.xml"/> 120 35 121 36 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/GYRE_PISCES/EXPREF/namelist_cfg
r9742 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite reference namelist2 !! NEMO/OCE Configuration namelist : overwrite reference namelist 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 !! GYRE PISCES configuration !! -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/context_nemo.xml
r9572 r10289 6 6 <context id="nemo"> 7 7 <!-- $id$ --> 8 <variable_definition>9 <!-- Year of time origin for NetCDF files; defaults to 1800 -->10 <variable id="ref_year" type="int" > 1800 </variable>11 <variable id="rau0" type="float" > 1026.0 </variable>12 <variable id="cpocean" type="float" > 3991.86795711963 </variable>13 <variable id="convSpsu" type="float" > 0.99530670233846 </variable>14 <variable id="rhoic" type="float" > 917.0 </variable>15 <variable id="rhosn" type="float" > 330.0 </variable>16 <variable id="missval" type="float" > 1.e20 </variable>17 </variable_definition>18 8 <!-- Fields definition --> 19 <field_definition src="./field_def_nemo-oce.xml"/> <!-- NEMO ocean dynamics --> 20 <field_definition src="./field_def_nemo-ice.xml"/> <!-- NEMO sea-ice model --> 21 <field_definition src="./field_def_nemo-pisces.xml"/> <!-- NEMO ocean biology --> 9 <field_definition src="./field_def_nemo-oce.xml"/> <!-- NEMO ocean dynamics --> 10 <field_definition src="./field_def_nemo-ice.xml"/> <!-- NEMO sea-ice model --> 11 <field_definition src="./field_def_nemo-pisces.xml"/> <!-- NEMO ocean biology --> 22 12 23 13 <!-- Files definition --> 24 <file_definition src="./file_def_nemo-oce.xml"/> <!-- NEMO ocean dynamics --> 25 <file_definition src="./file_def_nemo-ice.xml"/> <!-- NEMO sea-ice model --> 26 <file_definition src="./file_def_nemo-pisces.xml"/> <!-- NEMO ocean biology --> 14 <file_definition src="./file_def_nemo-oce.xml"/> <!-- NEMO ocean dynamics --> 15 <file_definition src="./file_def_nemo-ice.xml"/> <!-- NEMO sea-ice model --> 16 <file_definition src="./file_def_nemo-pisces.xml"/> <!-- NEMO ocean biology --> 27 17 <!-- 28 18 ============================================================================================================ … … 32 22 33 23 <axis_definition> 34 <axis id="deptht" long_name="Vertical T levels" unit="m" positive="down" /> 35 <axis id="depthu" long_name="Vertical U levels" unit="m" positive="down" /> 36 <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" /> 37 <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" /> 38 <axis id="nfloat" long_name="Float number" unit="-" /> 39 <axis id="icbcla" long_name="Iceberg class" unit="1" /> 40 <axis id="ncatice" long_name="Ice category" unit="1" /> 41 <axis id="iax_20C" long_name="20 degC isotherm" unit="degC" /> 42 <axis id="iax_28C" long_name="28 degC isotherm" unit="degC" /> 24 <axis id="deptht" long_name="Vertical T levels" unit="m" positive="down" /> 25 <axis id="depthu" long_name="Vertical U levels" unit="m" positive="down" /> 26 <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" /> 27 <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" /> 28 <axis id="profsed" long_name="Vertical S levels" unit="cm" positive="down" /> 29 <axis id="nfloat" long_name="Float number" unit="-" /> 30 <axis id="icbcla" long_name="Iceberg class" unit="1" /> 31 <axis id="ncatice" long_name="Ice category" unit="1" /> 32 <axis id="iax_20C" long_name="20 degC isotherm" unit="degC" /> 33 <axis id="iax_28C" long_name="28 degC isotherm" unit="degC" /> 43 34 </axis_definition> 44 35 45 36 <domain_definition src="./domain_def_nemo.xml"/> 46 37 47 <grid_definition> 48 49 <!-- --> 50 <grid id="grid_T_2D" > 51 <domain id="grid_T" /> 52 </grid> 53 <!-- --> 54 <grid id="grid_T_3D_ncatice" > 55 <domain id="grid_T" /> 56 <axis id="ncatice" /> 57 </grid> 58 <!-- --> 59 <grid id="grid_T_3D" > 60 <domain id="grid_T" /> 61 <axis id="deptht" /> 62 </grid> 63 <!-- --> 64 <grid id="grid_U_2D" > 65 <domain id="grid_U" /> 66 </grid> 67 <!-- --> 68 <grid id="grid_U_3D" > 69 <domain id="grid_U" /> 70 <axis id="depthu" /> 71 </grid> 72 <!-- --> 73 <grid id="grid_V_2D" > 74 <domain id="grid_V" /> 75 </grid> 76 <!-- --> 77 <grid id="grid_V_3D" > 78 <domain id="grid_V" /> 79 <axis id="depthv" /> 80 </grid> 81 <!-- --> 82 <grid id="grid_W_2D" > 83 <domain id="grid_W" /> 84 </grid> 85 <!-- --> 86 <grid id="grid_W_3D" > 87 <domain id="grid_W" /> 88 <axis id="depthw" /> 89 </grid> 90 <!-- --> 91 <grid id="grid_1point" > 92 <domain domain_ref="1point"/> 93 </grid> 94 <!-- --> 95 <grid id="grid_T_nfloat" > 96 <domain id="grid_T" /> 97 <axis id="nfloat" /> 98 </grid> 99 <!-- --> 100 <grid id="grid_EqT" > 101 <domain domain_ref="EqT" /> 102 </grid> 103 <!-- --> 104 <grid id="grid_znl_T_2D"> 105 <domain id="gznl" /> 106 </grid> 107 <!-- --> 108 <grid id="grid_znl_T_3D"> 109 <domain id="gznl" /> 110 <axis id="deptht" /> 111 </grid> 112 <!-- --> 113 <grid id="grid_znl_W_3D"> 114 <domain id="gznl" /> 115 <axis id="depthw" /> 116 </grid> 117 118 <grid id="grid_ptr_T_2D"> 119 <domain id="ptr" /> 120 </grid> 121 122 <grid id="grid_ptr_T_3D"> 123 <domain id="ptr" /> 124 <axis id="deptht" /> 125 </grid> 126 127 <grid id="grid_ptr_W_3D"> 128 <domain id="ptr" /> 129 <axis id="depthw" /> 130 </grid> 131 132 </grid_definition> 133 38 <grid_definition src="./grid_def_nemo.xml"/> 39 134 40 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/file_def_nemo-ice.xml
r9572 r10289 5 5 ============================================================================================================ 6 6 = output files definition = 7 = Define your own files for lim3=7 = Define your own files for sea ice = 8 8 = put the variables you want... = 9 9 ============================================================================================================ … … 79 79 <field field_ref="vfxsnw" name="vfxsnw" /> 80 80 81 <!-- diag error for negative ice volume after advection --> 82 <field field_ref="iceneg_pres" name="sineg_pres" /> 83 <field field_ref="iceneg_volu" name="sineg_volu" /> 84 <field field_ref="iceneg_hfx" name="sineg_hfx" /> 85 81 86 <!-- categories --> 82 87 <field field_ref="icemask_cat" name="simskcat"/> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/file_def_nemo-oce.xml
r9572 r10289 37 37 <field field_ref="wspd" name="windsp" /> 38 38 <field field_ref="precip" name="precip" /> 39 <field field_ref="berg_melt_qlat" name="berg_melt_qlat" /> 39 40 <!-- ice and snow --> 40 41 <field field_ref="snowpre" /> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/file_def_nemo-pisces.xml
r9572 r10289 14 14 15 15 <file id="file31" name_suffix="_bioscalar" description="pisces sms variables" > 16 <field field_ref="tdenit" name="tdenit" unit="TgN/yr" operation="instant" > tdenit * 14. * 86400. * 365. / 1e12 </field>17 <field field_ref="tnfix" name="tnfix" unit="TgN/yr" operation="instant" > tnfix * 14. * 86400. * 365. / 1e12 </field>18 <field field_ref="tcflx" name="tcflx" unit="PgC/yr" operation="instant" > tcflx * -1. * 12. * 86400. * 365. / 1e15 </field>19 <field field_ref="tcflxcum" name="tcflxcum" unit="PgC" operation="instant" > tcflxcum * -1. * 12. / 1e15 </field>20 <field field_ref="tcexp" name="tcexp" unit="PgC/yr" operation="instant" > tcexp * 12. * 86400. * 365. / 1e15 </field>21 <field field_ref="tintpp" name="tintpp" unit="PgC/yr" operation="instant" > tintpp * 12. * 86400. * 365. / 1e15 </field>22 <field field_ref="pno3tot" name="pno3tot" unit="umolN" > pno3tot * 16. / 122. * 1e6 </field>23 <field field_ref="ppo4tot" name="ppo4tot" unit="umolP" > ppo4tot * 1. / 122. * 1e6 </field>24 <field field_ref="psiltot" name="psiltot" unit="umolC" > psiltot * 1e6 </field>25 <field field_ref="palktot" name="palktot" unit="umolC" > palktot * 1e6 </field>26 <field field_ref="pfertot" name="pfertot" unit="nmolFe" > pfertot * 1e9 </field>16 <field field_ref="tdenit" name="tdenit" grid_ref="grid_1point" unit="TgN/yr" operation="instant" > tdenit * 14. * 86400. * 365. / 1e12 </field> 17 <field field_ref="tnfix" name="tnfix" grid_ref="grid_1point" unit="TgN/yr" operation="instant" > tnfix * 14. * 86400. * 365. / 1e12 </field> 18 <field field_ref="tcflx" name="tcflx" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tcflx * -1. * 12. * 86400. * 365. / 1e15 </field> 19 <field field_ref="tcflxcum" name="tcflxcum" grid_ref="grid_1point" unit="PgC" operation="instant" > tcflxcum * -1. * 12. / 1e15 </field> 20 <field field_ref="tcexp" name="tcexp" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tcexp * 12. * 86400. * 365. / 1e15 </field> 21 <field field_ref="tintpp" name="tintpp" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tintpp * 12. * 86400. * 365. / 1e15 </field> 22 <field field_ref="pno3tot" name="pno3tot" grid_ref="grid_1point" unit="umolN" > pno3tot * 16. / 122. * 1e6 </field> 23 <field field_ref="ppo4tot" name="ppo4tot" grid_ref="grid_1point" unit="umolP" > ppo4tot * 1. / 122. * 1e6 </field> 24 <field field_ref="psiltot" name="psiltot" grid_ref="grid_1point" unit="umolC" > psiltot * 1e6 </field> 25 <field field_ref="palktot" name="palktot" grid_ref="grid_1point" unit="umolC" > palktot * 1e6 </field> 26 <field field_ref="pfertot" name="pfertot" grid_ref="grid_1point" unit="nmolFe" > pfertot * 1e9 </field> 27 27 </file> 28 28 -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/namelist_cfg
r9838 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 !! ORCA2 - ICE - PISCES configuration !! … … 88 88 nn_fwb = 2 ! FreshWater Budget: 89 89 ! ! =2 annual global mean of e-p-r set to zero 90 ln_wave = .false. ! Activate coupling with wave (T => fill namsbc_wave) 91 ln_cdgw = .false. ! Neutral drag coefficient read from wave model (T => ln_wave=.true. & fill namsbc_wave) 92 ln_sdw = .false. ! Read 2D Surf Stokes Drift & Computation of 3D stokes drift (T => ln_wave=.true. & fill namsbc_wave) 93 nn_sdrift = 0 ! Parameterization for the calculation of 3D-Stokes drift from the surface Stokes drift 94 ! ! = 0 Breivik 2015 parameterization: v_z=v_0*[exp(2*k*z)/(1-8*k*z)] 95 ! ! = 1 Phillips: v_z=v_o*[exp(2*k*z)-beta*sqrt(-2*k*pi*z)*erfc(sqrt(-2*k*z))] 96 ! ! = 2 Phillips as (1) but using the wave frequency from a wave model 97 ln_tauwoc = .false. ! Activate ocean stress modified by external wave induced stress (T => ln_wave=.true. & fill namsbc_wave) 98 ln_tauw = .false. ! Activate ocean stress components from wave model 99 ln_stcor = .false. ! Activate Stokes Coriolis term (T => ln_wave=.true. & ln_sdw=.true. & fill namsbc_wave) 90 100 / 91 101 !----------------------------------------------------------------------- … … 135 145 &namsbc_rnf ! runoffs (ln_rnf =T) 136 146 !----------------------------------------------------------------------- 137 ln_rnf_mouth = .true. ! specific treatment at rivers mouths147 ln_rnf_mouth = .true. ! specific treatment at rivers mouths 138 148 rn_hrnf = 15.e0 ! depth over which enhanced vertical mixing is used (ln_rnf_mouth=T) 139 149 rn_avt_rnf = 1.e-3 ! value of the additional vertical mixing coef. [m2/s] (ln_rnf_mouth=T) … … 149 159 sn_t_rnf = 'runoffs' , 24 , 'rotemper', .true. , .true. , 'yearly' , '' , '' , '' 150 160 sn_dep_rnf = 'runoffs' , 0 , 'rodepth' , .false. , .true. , 'yearly' , '' , '' , '' 161 / 162 !----------------------------------------------------------------------- 163 &namsbc_wave ! External fields from wave model (ln_wave=T) 164 !----------------------------------------------------------------------- 151 165 / 152 166 !----------------------------------------------------------------------- -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_ICE_PISCES/EXPREF/namelist_pisces_cfg
r9572 r10289 16 16 / 17 17 !----------------------------------------------------------------------- 18 &namp4z ice! parameters for nutrient limitations for PISCES std - ln_p4z18 &namp4zlim ! parameters for nutrient limitations for PISCES std - ln_p4z 19 19 !----------------------------------------------------------------------- 20 20 / 21 21 !----------------------------------------------------------------------- 22 &namp5z ice! parameters for nutrient limitations PISCES QUOTA - ln_p5z22 &namp5zlim ! parameters for nutrient limitations PISCES QUOTA - ln_p5z 23 23 !----------------------------------------------------------------------- 24 24 / -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_OFF_PISCES/EXPREF/context_nemo.xml
r9572 r10289 23 23 <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" /> 24 24 <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" /> 25 <axis id="profsed" long_name="Vertical S levels" unit="cm" positive="down" /> 25 26 <axis id="nfloat" long_name="Float number" unit="-" /> 26 27 <axis id="icbcla" long_name="Iceberg class" unit="1" /> … … 32 33 <domain_definition src="./domain_def_nemo.xml"/> 33 34 34 <grid_definition> 35 36 <!-- --> 37 <grid id="grid_T_2D" > 38 <domain id="grid_T" /> 39 </grid> 40 <!-- --> 41 <grid id="grid_T_3D_ncatice" > 42 <domain id="grid_T" /> 43 <axis id="ncatice" /> 44 </grid> 45 <!-- --> 46 <grid id="grid_T_3D" > 47 <domain id="grid_T" /> 48 <axis id="deptht" /> 49 </grid> 50 <!-- --> 51 <grid id="grid_U_2D" > 52 <domain id="grid_U" /> 53 </grid> 54 <!-- --> 55 <grid id="grid_U_3D" > 56 <domain id="grid_U" /> 57 <axis id="depthu" /> 58 </grid> 59 <!-- --> 60 <grid id="grid_V_2D" > 61 <domain id="grid_V" /> 62 </grid> 63 <!-- --> 64 <grid id="grid_V_3D" > 65 <domain id="grid_V" /> 66 <axis id="depthv" /> 67 </grid> 68 <!-- --> 69 <grid id="grid_W_2D" > 70 <domain id="grid_W" /> 71 </grid> 72 <!-- --> 73 <grid id="grid_W_3D" > 74 <domain id="grid_W" /> 75 <axis id="depthw" /> 76 </grid> 77 <!-- --> 78 <grid id="grid_1point" > 79 <domain domain_ref="1point"/> 80 </grid> 81 <!-- --> 82 <grid id="grid_T_nfloat" > 83 <domain id="grid_T" /> 84 <axis id="nfloat" /> 85 </grid> 86 <!-- --> 87 <grid id="grid_EqT" > 88 <domain domain_ref="EqT" /> 89 </grid> 90 <!-- --> 91 <grid id="grid_znl_T_2D"> 92 <domain id="gznl" /> 93 </grid> 94 <!-- --> 95 <grid id="grid_znl_T_3D"> 96 <domain id="gznl" /> 97 <axis id="deptht" /> 98 </grid> 99 <!-- --> 100 <grid id="grid_znl_W_3D"> 101 <domain id="gznl" /> 102 <axis id="depthw" /> 103 </grid> 104 105 <grid id="grid_ptr_T_2D"> 106 <domain id="ptr" /> 107 </grid> 108 109 <grid id="grid_ptr_T_3D"> 110 <domain id="ptr" /> 111 <axis id="deptht" /> 112 </grid> 113 114 <grid id="grid_ptr_W_3D"> 115 <domain id="ptr" /> 116 <axis id="depthw" /> 117 </grid> 118 119 </grid_definition> 120 35 <grid_definition src="./grid_def_nemo.xml"/> 36 121 37 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_OFF_PISCES/EXPREF/file_def_nemo.xml
r9539 r10289 19 19 <file_group id="1d" output_freq="1d" output_level="10" enabled=".TRUE."> <!-- 1d files --> 20 20 <file id="file1" name_suffix="_bioscalar" description="pisces sms variables" > 21 <field field_ref="tdenit" name="tdenit" unit="TgN/yr" operation="instant" > tdenit * 14. * 86400. * 365. / 1e12 </field>22 <field field_ref="tnfix" name="tnfix" unit="TgN/yr" operation="instant" > tnfix * 14. * 86400. * 365. / 1e12 </field>23 <field field_ref="tcflx" name="tcflx" unit="PgC/yr" operation="instant" > tcflx * -1. * 12. * 86400. * 365. / 1e15 </field>24 <field field_ref="tcflxcum" name="tcflxcum" unit="PgC" operation="instant" > tcflxcum * -1. * 12. / 1e15 </field>25 <field field_ref="tcexp" name="tcexp" unit="PgC/yr" operation="instant" > tcexp * 12. * 86400. * 365. / 1e15 </field>26 <field field_ref="tintpp" name="tintpp" unit="PgC/yr" operation="instant" > tintpp * 12. * 86400. * 365. / 1e15 </field>27 <field field_ref="pno3tot" name="pno3tot" unit="umolN" > pno3tot * 16. / 122. * 1e6 </field>28 <field field_ref="ppo4tot" name="ppo4tot" unit="umolP" > ppo4tot * 1. / 122. * 1e6 </field>29 <field field_ref="psiltot" name="psiltot" unit="umolC" > psiltot * 1e6 </field>30 <field field_ref="palktot" name="palktot" unit="umolC" > palktot * 1e6 </field>31 <field field_ref="pfertot" name="pfertot" unit="nmolFe" > pfertot * 1e9 </field>21 <field field_ref="tdenit" name="tdenit" grid_ref="grid_1point" unit="TgN/yr" operation="instant" > tdenit * 14. * 86400. * 365. / 1e12 </field> 22 <field field_ref="tnfix" name="tnfix" grid_ref="grid_1point" unit="TgN/yr" operation="instant" > tnfix * 14. * 86400. * 365. / 1e12 </field> 23 <field field_ref="tcflx" name="tcflx" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tcflx * -1. * 12. * 86400. * 365. / 1e15 </field> 24 <field field_ref="tcflxcum" name="tcflxcum" grid_ref="grid_1point" unit="PgC" operation="instant" > tcflxcum * -1. * 12. / 1e15 </field> 25 <field field_ref="tcexp" name="tcexp" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tcexp * 12. * 86400. * 365. / 1e15 </field> 26 <field field_ref="tintpp" name="tintpp" grid_ref="grid_1point" unit="PgC/yr" operation="instant" > tintpp * 12. * 86400. * 365. / 1e15 </field> 27 <field field_ref="pno3tot" name="pno3tot" grid_ref="grid_1point" unit="umolN" > pno3tot * 16. / 122. * 1e6 </field> 28 <field field_ref="ppo4tot" name="ppo4tot" grid_ref="grid_1point" unit="umolP" > ppo4tot * 1. / 122. * 1e6 </field> 29 <field field_ref="psiltot" name="psiltot" grid_ref="grid_1point" unit="umolC" > psiltot * 1e6 </field> 30 <field field_ref="palktot" name="palktot" grid_ref="grid_1point" unit="umolC" > palktot * 1e6 </field> 31 <field field_ref="pfertot" name="pfertot" grid_ref="grid_1point" unit="nmolFe" > pfertot * 1e9 </field> 32 32 </file> 33 33 </file_group> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_OFF_PISCES/EXPREF/namelist_pisces_cfg
r9572 r10289 17 17 / 18 18 !----------------------------------------------------------------------- 19 &namp4z ice! parameters for nutrient limitations for PISCES std - ln_p4z19 &namp4zlim ! parameters for nutrient limitations for PISCES std - ln_p4z 20 20 !----------------------------------------------------------------------- 21 21 / 22 22 !----------------------------------------------------------------------- 23 &namp5z ice! parameters for nutrient limitations PISCES QUOTA - ln_p5z23 &namp5zlim ! parameters for nutrient limitations PISCES QUOTA - ln_p5z 24 24 !----------------------------------------------------------------------- 25 25 / -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_OFF_TRC/EXPREF/context_nemo.xml
r9572 r10289 32 32 <domain_definition src="./domain_def_nemo.xml"/> 33 33 34 <grid_definition> 35 36 <!-- --> 37 <grid id="grid_T_2D" > 38 <domain id="grid_T" /> 39 </grid> 40 <!-- --> 41 <grid id="grid_T_3D_ncatice" > 42 <domain id="grid_T" /> 43 <axis id="ncatice" /> 44 </grid> 45 <!-- --> 46 <grid id="grid_T_3D" > 47 <domain id="grid_T" /> 48 <axis id="deptht" /> 49 </grid> 50 <!-- --> 51 <grid id="grid_U_2D" > 52 <domain id="grid_U" /> 53 </grid> 54 <!-- --> 55 <grid id="grid_U_3D" > 56 <domain id="grid_U" /> 57 <axis id="depthu" /> 58 </grid> 59 <!-- --> 60 <grid id="grid_V_2D" > 61 <domain id="grid_V" /> 62 </grid> 63 <!-- --> 64 <grid id="grid_V_3D" > 65 <domain id="grid_V" /> 66 <axis id="depthv" /> 67 </grid> 68 <!-- --> 69 <grid id="grid_W_2D" > 70 <domain id="grid_W" /> 71 </grid> 72 <!-- --> 73 <grid id="grid_W_3D" > 74 <domain id="grid_W" /> 75 <axis id="depthw" /> 76 </grid> 77 <!-- --> 78 <grid id="grid_1point" > 79 <domain domain_ref="1point"/> 80 </grid> 81 <!-- --> 82 <grid id="grid_T_nfloat" > 83 <domain id="grid_T" /> 84 <axis id="nfloat" /> 85 </grid> 86 <!-- --> 87 <grid id="grid_EqT" > 88 <domain domain_ref="EqT" /> 89 </grid> 90 <!-- --> 91 <grid id="grid_znl_T_2D"> 92 <domain id="gznl" /> 93 </grid> 94 <!-- --> 95 <grid id="grid_znl_T_3D"> 96 <domain id="gznl" /> 97 <axis id="deptht" /> 98 </grid> 99 <!-- --> 100 <grid id="grid_znl_W_3D"> 101 <domain id="gznl" /> 102 <axis id="depthw" /> 103 </grid> 104 105 <grid id="grid_ptr_T_2D"> 106 <domain id="ptr" /> 107 </grid> 108 109 <grid id="grid_ptr_T_3D"> 110 <domain id="ptr" /> 111 <axis id="deptht" /> 112 </grid> 113 114 <grid id="grid_ptr_W_3D"> 115 <domain id="ptr" /> 116 <axis id="depthw" /> 117 </grid> 118 119 </grid_definition> 120 34 <grid_definition src="./grid_def_nemo.xml"/> 35 121 36 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_OFF_TRC/EXPREF/namelist_cfg
r9742 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 !! ORCA2 - OFF - TRC configuration !! -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_SAS_ICE/EXPREF/context_nemo.xml
r9572 r10289 43 43 <domain_definition src="./domain_def_nemo.xml"/> 44 44 45 <grid_definition> 46 47 <!-- --> 48 <grid id="grid_T_2D" > 49 <domain id="grid_T" /> 50 </grid> 51 <!-- --> 52 <grid id="grid_T_3D_ncatice" > 53 <domain id="grid_T" /> 54 <axis id="ncatice" /> 55 </grid> 56 <!-- --> 57 <grid id="grid_T_3D" > 58 <domain id="grid_T" /> 59 <axis id="deptht" /> 60 </grid> 61 <!-- --> 62 <grid id="grid_U_2D" > 63 <domain id="grid_U" /> 64 </grid> 65 <!-- --> 66 <grid id="grid_U_3D" > 67 <domain id="grid_U" /> 68 <axis id="depthu" /> 69 </grid> 70 <!-- --> 71 <grid id="grid_V_2D" > 72 <domain id="grid_V" /> 73 </grid> 74 <!-- --> 75 <grid id="grid_V_3D" > 76 <domain id="grid_V" /> 77 <axis id="depthv" /> 78 </grid> 79 <!-- --> 80 <grid id="grid_W_2D" > 81 <domain id="grid_W" /> 82 </grid> 83 <!-- --> 84 <grid id="grid_W_3D" > 85 <domain id="grid_W" /> 86 <axis id="depthw" /> 87 </grid> 88 <!-- --> 89 <grid id="grid_1point" > 90 <domain domain_ref="1point"/> 91 </grid> 92 <!-- --> 93 <grid id="grid_T_nfloat" > 94 <domain id="grid_T" /> 95 <axis id="nfloat" /> 96 </grid> 97 <!-- --> 98 <grid id="grid_EqT" > 99 <domain domain_ref="EqT" /> 100 </grid> 101 <!-- --> 102 <grid id="grid_znl_T_2D"> 103 <domain id="gznl" /> 104 </grid> 105 <!-- --> 106 <grid id="grid_znl_T_3D"> 107 <domain id="gznl" /> 108 <axis id="deptht" /> 109 </grid> 110 <!-- --> 111 <grid id="grid_znl_W_3D"> 112 <domain id="gznl" /> 113 <axis id="depthw" /> 114 </grid> 115 116 <grid id="grid_ptr_T_2D"> 117 <domain id="ptr" /> 118 </grid> 119 120 <grid id="grid_ptr_T_3D"> 121 <domain id="ptr" /> 122 <axis id="deptht" /> 123 </grid> 124 125 <grid id="grid_ptr_W_3D"> 126 <domain id="ptr" /> 127 <axis id="depthw" /> 128 </grid> 129 130 </grid_definition> 45 <grid_definition src="./grid_def_nemo.xml"/> 131 46 132 47 </context> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_SAS_ICE/EXPREF/file_def_nemo-ice.xml
r9572 r10289 5 5 ============================================================================================================ 6 6 = output files definition = 7 = Define your own files for lim3=7 = Define your own files for sea ice = 8 8 = put the variables you want... = 9 9 ============================================================================================================ -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/ORCA2_SAS_ICE/EXPREF/namelist_cfg
r9742 r10289 1 1 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 2 !! NEMO/O PAConfiguration namelist : overwrite default values defined in SHARED/namelist_ref2 !! NEMO/OCE Configuration namelist : overwrite default values defined in SHARED/namelist_ref 3 3 !!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 4 4 !! ORCA2-ICE (with SAS) configuration !! -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/SHARED/domain_def_nemo.xml
r9650 r10289 1 1 2 2 <domain_definition> 3 <domain_group id="grid_T">4 <domain id="grid_T" long_name="grid T"/>5 <!-- My zoom: example of hand defined zoom -->6 3 7 <domain id="moorT" ibegin="1" jbegin="1" ni="1" nj="1" /> 4 <!-- T grid --> 5 <domain id="grid_T" long_name="grid T"/> 6 7 <!-- My zoom: example of hand defined zoom --> 8 <domain id="myzoomT" domain_ref="grid_T" > 9 <zoom_domain ibegin="1" jbegin="1" ni="2" nj="3"/> 10 </domain> 8 11 9 <domain id="1point" domain_ref="grid_T" > 10 <zoom_domain id="1point" ibegin="1" jbegin="1" ni="1" nj="1" /> 11 </domain> 12 <!-- Eq section --> 13 <domain id="EqT" domain_ref="grid_T" > 14 <zoom_domain id="EqT" ibegin="0" jbegin="0000" ni="0000" nj="1" /> 15 </domain> 16 <!-- TAO : see example above --> 17 <!-- 137e --> 18 <!-- <domain id="2n137eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 19 <!-- <domain id="5n137eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 20 <!-- <domain id="8n137eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 21 <!-- <\!-- 147e -\-> --> 22 <!-- <domain id="0n147eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 23 <!-- <domain id="2n147eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 24 <!-- <domain id="5n147eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 25 <!-- <\!-- 156e -\-> --> 26 <!-- <domain id="5s156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 27 <!-- <domain id="2s156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 28 <!-- <domain id="0n156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 29 <!-- <domain id="2n156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 30 <!-- <domain id="5n156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 31 <!-- <domain id="8n156eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 32 <!-- <\!-- 165e -\-> --> 33 <!-- <domain id="8s165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 34 <!-- <domain id="5s165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 35 <!-- <domain id="2s165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 36 <!-- <domain id="0n165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 37 <!-- <domain id="2n165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 38 <!-- <domain id="5n165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 39 <!-- <domain id="8n165eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 40 <!-- <\!-- 180w -\-> --> 41 <!-- <domain id="8s180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 42 <!-- <domain id="5s180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 43 <!-- <domain id="2s180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 44 <!-- <domain id="0n180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 45 <!-- <domain id="2n180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 46 <!-- <domain id="5n180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 47 <!-- <domain id="8n180wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 48 <!-- <\!-- 170w -\-> --> 49 <!-- <domain id="8s170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 50 <!-- <domain id="5s170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 51 <!-- <domain id="2s170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 52 <!-- <domain id="0n170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 53 <!-- <domain id="2n170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 54 <!-- <domain id="5n170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 55 <!-- <domain id="8n170wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 56 <!-- <\!-- 155w -\-> --> 57 <!-- <domain id="8s155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 58 <!-- <domain id="5s155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 59 <!-- <domain id="2s155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 60 <!-- <domain id="0n155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 61 <!-- <domain id="2n155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 62 <!-- <domain id="5n155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 63 <!-- <domain id="8n155wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 64 <!-- <\!-- 140w -\-> --> 65 <!-- <domain id="8s140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 66 <!-- <domain id="5s140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 67 <!-- <domain id="2s140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 68 <!-- <domain id="0n140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 69 <!-- <domain id="2n140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 70 <!-- <domain id="5n140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 71 <!-- <domain id="8n140wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 72 <!-- <\!-- 125w -\-> --> 73 <!-- <domain id="8s125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 74 <!-- <domain id="5s125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 75 <!-- <domain id="2s125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 76 <!-- <domain id="0n125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 77 <!-- <domain id="2n125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 78 <!-- <domain id="5n125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 79 <!-- <domain id="8n125wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 80 <!-- <\!-- 110w -\-> --> 81 <!-- <domain id="8s110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 82 <!-- <domain id="5s110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 83 <!-- <domain id="2s110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 84 <!-- <domain id="0n110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 85 <!-- <domain id="2n110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 86 <!-- <domain id="5n110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 87 <!-- <domain id="8n110wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 88 <!-- <\!-- 95w -\-> --> 89 <!-- <domain id="8s95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 90 <!-- <domain id="5s95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 91 <!-- <domain id="2s95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 92 <!-- <domain id="0n95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 93 <!-- <domain id="2n95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 94 <!-- <domain id="5n95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 95 <!-- <domain id="8n95wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 96 <!-- <\!-- RAMA -\-> --> 97 <!-- <\!-- 55e -\-> --> 98 <!-- <domain id="16s55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 99 <!-- <domain id="12s55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 100 <!-- <domain id="8s55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 101 <!-- <domain id="4s55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 102 <!-- <domain id="1.5s55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 103 <!-- <domain id="0n55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 104 <!-- <domain id="1.5n55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 105 <!-- <domain id="4n55eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 106 <!-- <\!-- 65e -\-> --> 107 <!-- <domain id="15n65eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 108 <!-- <\!-- 67e -\-> --> 109 <!-- <domain id="16s67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 110 <!-- <domain id="12s67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 111 <!-- <domain id="8s67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 112 <!-- <domain id="4s67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 113 <!-- <domain id="1.5s67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 114 <!-- <domain id="0n67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 115 <!-- <domain id="1.5n67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 116 <!-- <domain id="4n67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 117 <!-- <domain id="8n67eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 118 <!-- <\!-- 80.5e -\-> --> 119 <!-- <domain id="16s80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 120 <!-- <domain id="12s80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 121 <!-- <domain id="8s80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 122 <!-- <domain id="4s80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 123 <!-- <domain id="1.5s80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 124 <!-- <domain id="0n80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 125 <!-- <domain id="1.5n80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 126 <!-- <domain id="4n80.5eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 127 <!-- <\!-- 90e -\-> --> 128 <!-- <domain id="1.5s90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 129 <!-- <domain id="0n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 130 <!-- <domain id="1.5n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 131 <!-- <domain id="4n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 132 <!-- <domain id="8n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 133 <!-- <domain id="12n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 134 <!-- <domain id="15n90eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 135 <!-- <\!-- 95e -\-> --> 136 <!-- <domain id="16s95eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 137 <!-- <domain id="12s95eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 138 <!-- <domain id="8s95eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 139 <!-- <domain id="5s95eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 140 <!-- <\!-- PIRATA -\-> --> 141 <!-- <\!-- 38w-30w -\-> --> 142 <!-- <domain id="19s34wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 143 <!-- <domain id="14s32wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 144 <!-- <domain id="8s30wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 145 <!-- <domain id="0n35wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 146 <!-- <domain id="4n38wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 147 <!-- <domain id="8n38wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 148 <!-- <domain id="12n38wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 149 <!-- <domain id="15n38wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 150 <!-- <domain id="20n38wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 151 <!-- <\!-- 23w -\-> --> 152 <!-- <domain id="0n23wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 153 <!-- <domain id="4n23wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 154 <!-- <domain id="12n23wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 155 <!-- <domain id="21n23wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 156 <!-- <\!-- 10w -\-> --> 157 <!-- <domain id="10s10wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 158 <!-- <domain id="6s10wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 159 <!-- <domain id="0n10wT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 160 <!-- <\!-- 0e -\-> --> 161 <!-- <domain id="0n0eT" domain_ref="grid_T" ibegin="0000" jbegin="0000" ni="1" nj="1" /> --> 162 163 </domain_group> 12 <domain id="1point" domain_ref="grid_T" > 13 <zoom_domain ibegin="1" jbegin="1" ni="1" nj="1"/> 14 </domain> 15 <!-- Eq section --> 16 <domain id="EqT" domain_ref="grid_T" > <zoom_domain id="EqT"/> </domain> 17 <!-- TAO : see example above --> 18 <!-- 137e --> 19 <domain id="2n137eT" domain_ref="grid_T" > <zoom_domain id="2n137eT"/> </domain> 20 <domain id="5n137eT" domain_ref="grid_T" > <zoom_domain id="5n137eT"/> </domain> 21 <domain id="8n137eT" domain_ref="grid_T" > <zoom_domain id="8n137eT"/> </domain> 22 <!-- <\!-- 147e -\-> --> 23 <domain id="0n147eT" domain_ref="grid_T" > <zoom_domain id="0n147eT"/> </domain> 24 <domain id="2n147eT" domain_ref="grid_T" > <zoom_domain id="2n147eT"/> </domain> 25 <domain id="5n147eT" domain_ref="grid_T" > <zoom_domain id="5n147eT"/> </domain> 26 <!-- <\!-- 156e -\-> --> 27 <domain id="5s156eT" domain_ref="grid_T" > <zoom_domain id="5s156eT"/> </domain> 28 <domain id="2s156eT" domain_ref="grid_T" > <zoom_domain id="2s156eT"/> </domain> 29 <domain id="0n156eT" domain_ref="grid_T" > <zoom_domain id="0n156eT"/> </domain> 30 <domain id="2n156eT" domain_ref="grid_T" > <zoom_domain id="2n156eT"/> </domain> 31 <domain id="5n156eT" domain_ref="grid_T" > <zoom_domain id="5n156eT"/> </domain> 32 <domain id="8n156eT" domain_ref="grid_T" > <zoom_domain id="8n156eT"/> </domain> 33 <!-- <\!-- 165e -\-> --> 34 <domain id="8s165eT" domain_ref="grid_T" > <zoom_domain id="8s165eT"/> </domain> 35 <domain id="5s165eT" domain_ref="grid_T" > <zoom_domain id="5s165eT"/> </domain> 36 <domain id="2s165eT" domain_ref="grid_T" > <zoom_domain id="2s165eT"/> </domain> 37 <domain id="0n165eT" domain_ref="grid_T" > <zoom_domain id="0n165eT"/> </domain> 38 <domain id="2n165eT" domain_ref="grid_T" > <zoom_domain id="2n165eT"/> </domain> 39 <domain id="5n165eT" domain_ref="grid_T" > <zoom_domain id="5n165eT"/> </domain> 40 <domain id="8n165eT" domain_ref="grid_T" > <zoom_domain id="8n165eT"/> </domain> 41 <!-- <\!-- 180w -\-> --> 42 <domain id="8s180wT" domain_ref="grid_T" > <zoom_domain id="8s180wT"/> </domain> 43 <domain id="5s180wT" domain_ref="grid_T" > <zoom_domain id="5s180wT"/> </domain> 44 <domain id="2s180wT" domain_ref="grid_T" > <zoom_domain id="2s180wT"/> </domain> 45 <domain id="0n180wT" domain_ref="grid_T" > <zoom_domain id="0n180wT"/> </domain> 46 <domain id="2n180wT" domain_ref="grid_T" > <zoom_domain id="2n180wT"/> </domain> 47 <domain id="5n180wT" domain_ref="grid_T" > <zoom_domain id="5n180wT"/> </domain> 48 <domain id="8n180wT" domain_ref="grid_T" > <zoom_domain id="8n180wT"/> </domain> 49 <!-- <\!-- 170w -\-> --> 50 <domain id="8s170wT" domain_ref="grid_T" > <zoom_domain id="8s170wT"/> </domain> 51 <domain id="5s170wT" domain_ref="grid_T" > <zoom_domain id="5s170wT"/> </domain> 52 <domain id="2s170wT" domain_ref="grid_T" > <zoom_domain id="2s170wT"/> </domain> 53 <domain id="0n170wT" domain_ref="grid_T" > <zoom_domain id="0n170wT"/> </domain> 54 <domain id="2n170wT" domain_ref="grid_T" > <zoom_domain id="2n170wT"/> </domain> 55 <domain id="5n170wT" domain_ref="grid_T" > <zoom_domain id="5n170wT"/> </domain> 56 <domain id="8n170wT" domain_ref="grid_T" > <zoom_domain id="8n170wT"/> </domain> 57 <!-- <\!-- 155w -\-> --> 58 <domain id="8s155wT" domain_ref="grid_T" > <zoom_domain id="8s155wT"/> </domain> 59 <domain id="5s155wT" domain_ref="grid_T" > <zoom_domain id="5s155wT"/> </domain> 60 <domain id="2s155wT" domain_ref="grid_T" > <zoom_domain id="2s155wT"/> </domain> 61 <domain id="0n155wT" domain_ref="grid_T" > <zoom_domain id="0n155wT"/> </domain> 62 <domain id="2n155wT" domain_ref="grid_T" > <zoom_domain id="2n155wT"/> </domain> 63 <domain id="5n155wT" domain_ref="grid_T" > <zoom_domain id="5n155wT"/> </domain> 64 <domain id="8n155wT" domain_ref="grid_T" > <zoom_domain id="8n155wT"/> </domain> 65 <!-- <\!-- 140w -\-> --> 66 <domain id="8s140wT" domain_ref="grid_T" > <zoom_domain id="8s140wT"/> </domain> 67 <domain id="5s140wT" domain_ref="grid_T" > <zoom_domain id="5s140wT"/> </domain> 68 <domain id="2s140wT" domain_ref="grid_T" > <zoom_domain id="2s140wT"/> </domain> 69 <domain id="0n140wT" domain_ref="grid_T" > <zoom_domain id="0n140wT"/> </domain> 70 <domain id="2n140wT" domain_ref="grid_T" > <zoom_domain id="2n140wT"/> </domain> 71 <domain id="5n140wT" domain_ref="grid_T" > <zoom_domain id="5n140wT"/> </domain> 72 <domain id="8n140wT" domain_ref="grid_T" > <zoom_domain id="8n140wT"/> </domain> 73 <!-- <\!-- 125w -\-> --> 74 <domain id="8s125wT" domain_ref="grid_T" > <zoom_domain id="8s125wT"/> </domain> 75 <domain id="5s125wT" domain_ref="grid_T" > <zoom_domain id="5s125wT"/> </domain> 76 <domain id="2s125wT" domain_ref="grid_T" > <zoom_domain id="2s125wT"/> </domain> 77 <domain id="0n125wT" domain_ref="grid_T" > <zoom_domain id="0n125wT"/> </domain> 78 <domain id="2n125wT" domain_ref="grid_T" > <zoom_domain id="2n125wT"/> </domain> 79 <domain id="5n125wT" domain_ref="grid_T" > <zoom_domain id="5n125wT"/> </domain> 80 <domain id="8n125wT" domain_ref="grid_T" > <zoom_domain id="8n125wT"/> </domain> 81 <!-- <\!-- 110w -\-> --> 82 <domain id="8s110wT" domain_ref="grid_T" > <zoom_domain id="8s110wT"/> </domain> 83 <domain id="5s110wT" domain_ref="grid_T" > <zoom_domain id="5s110wT"/> </domain> 84 <domain id="2s110wT" domain_ref="grid_T" > <zoom_domain id="2s110wT"/> </domain> 85 <domain id="0n110wT" domain_ref="grid_T" > <zoom_domain id="0n110wT"/> </domain> 86 <domain id="2n110wT" domain_ref="grid_T" > <zoom_domain id="2n110wT"/> </domain> 87 <domain id="5n110wT" domain_ref="grid_T" > <zoom_domain id="5n110wT"/> </domain> 88 <domain id="8n110wT" domain_ref="grid_T" > <zoom_domain id="8n110wT"/> </domain> 89 <!-- <\!-- 95w -\-> --> 90 <domain id="8s95wT" domain_ref="grid_T" > <zoom_domain id="8s95wT"/> </domain> 91 <domain id="5s95wT" domain_ref="grid_T" > <zoom_domain id="5s95wT"/> </domain> 92 <domain id="2s95wT" domain_ref="grid_T" > <zoom_domain id="2s95wT"/> </domain> 93 <domain id="0n95wT" domain_ref="grid_T" > <zoom_domain id="0n95wT"/> </domain> 94 <domain id="2n95wT" domain_ref="grid_T" > <zoom_domain id="2n95wT"/> </domain> 95 <domain id="5n95wT" domain_ref="grid_T" > <zoom_domain id="5n95wT"/> </domain> 96 <domain id="8n95wT" domain_ref="grid_T" > <zoom_domain id="8n95wT"/> </domain> 97 <!-- <\!-- RAMA -\-> --> 98 <!-- <\!-- 55e -\-> --> 99 <domain id="16s55eT" domain_ref="grid_T" > <zoom_domain id="16s55eT" /> </domain> 100 <domain id="12s55eT" domain_ref="grid_T" > <zoom_domain id="12s55eT" /> </domain> 101 <domain id="8s55eT" domain_ref="grid_T" > <zoom_domain id="8s55eT" /> </domain> 102 <domain id="4s55eT" domain_ref="grid_T" > <zoom_domain id="4s55eT" /> </domain> 103 <domain id="1.5s55eT" domain_ref="grid_T" > <zoom_domain id="1.5s55eT" /> </domain> 104 <domain id="0n55eT" domain_ref="grid_T" > <zoom_domain id="0n55eT" /> </domain> 105 <domain id="1.5n55eT" domain_ref="grid_T" > <zoom_domain id="1.5n55eT" /> </domain> 106 <domain id="4n55eT" domain_ref="grid_T" > <zoom_domain id="4n55eT" /> </domain> 107 <!-- <\!-- 65e -\-> --> 108 <domain id="15n65eT" domain_ref="grid_T" > <zoom_domain id="15n65eT" /> </domain> 109 <!-- <\!-- 67e -\-> --> 110 <domain id="16s67eT" domain_ref="grid_T" > <zoom_domain id="16s67eT" /> </domain> 111 <domain id="12s67eT" domain_ref="grid_T" > <zoom_domain id="12s67eT" /> </domain> 112 <domain id="8s67eT" domain_ref="grid_T" > <zoom_domain id="8s67eT" /> </domain> 113 <domain id="4s67eT" domain_ref="grid_T" > <zoom_domain id="4s67eT" /> </domain> 114 <domain id="1.5s67eT" domain_ref="grid_T" > <zoom_domain id="1.5s67eT" /> </domain> 115 <domain id="0n67eT" domain_ref="grid_T" > <zoom_domain id="0n67eT" /> </domain> 116 <domain id="1.5n67eT" domain_ref="grid_T" > <zoom_domain id="1.5n67eT" /> </domain> 117 <domain id="4n67eT" domain_ref="grid_T" > <zoom_domain id="4n67eT" /> </domain> 118 <domain id="8n67eT" domain_ref="grid_T" > <zoom_domain id="8n67eT" /> </domain> 119 <!-- <\!-- 80.5e -\-> --> 120 <domain id="16s80.5eT" domain_ref="grid_T" > <zoom_domain id="16s80.5eT" /> </domain> 121 <domain id="12s80.5eT" domain_ref="grid_T" > <zoom_domain id="12s80.5eT" /> </domain> 122 <domain id="8s80.5eT" domain_ref="grid_T" > <zoom_domain id="8s80.5eT" /> </domain> 123 <domain id="4s80.5eT" domain_ref="grid_T" > <zoom_domain id="4s80.5eT" /> </domain> 124 <domain id="1.5s80.5eT" domain_ref="grid_T" > <zoom_domain id="1.5s80.5eT"/> </domain> 125 <domain id="0n80.5eT" domain_ref="grid_T" > <zoom_domain id="0n80.5eT" /> </domain> 126 <domain id="1.5n80.5eT" domain_ref="grid_T" > <zoom_domain id="1.5n80.5eT"/> </domain> 127 <domain id="4n80.5eT" domain_ref="grid_T" > <zoom_domain id="4n80.5eT" /> </domain> 128 <!-- <\!-- 90e -\-> --> 129 <domain id="1.5s90eT" domain_ref="grid_T" > <zoom_domain id="1.5s90eT" /> </domain> 130 <domain id="0n90eT" domain_ref="grid_T" > <zoom_domain id="0n90eT" /> </domain> 131 <domain id="1.5n90eT" domain_ref="grid_T" > <zoom_domain id="1.5n90eT" /> </domain> 132 <domain id="4n90eT" domain_ref="grid_T" > <zoom_domain id="4n90eT" /> </domain> 133 <domain id="8n90eT" domain_ref="grid_T" > <zoom_domain id="8n90eT" /> </domain> 134 <domain id="12n90eT" domain_ref="grid_T" > <zoom_domain id="12n90eT" /> </domain> 135 <domain id="15n90eT" domain_ref="grid_T" > <zoom_domain id="15n90eT" /> </domain> 136 <!-- <\!-- 95e -\-> --> 137 <domain id="16s95eT" domain_ref="grid_T" > <zoom_domain id="16s95eT" /> </domain> 138 <domain id="12s95eT" domain_ref="grid_T" > <zoom_domain id="12s95eT" /> </domain> 139 <domain id="8s95eT" domain_ref="grid_T" > <zoom_domain id="8s95eT" /> </domain> 140 <domain id="5s95eT" domain_ref="grid_T" > <zoom_domain id="5s95eT" /> </domain> 141 <!-- <\!-- PIRATA -\-> --> 142 <!-- <\!-- 38w-30w -\-> --> 143 <domain id="19s34wT" domain_ref="grid_T" > <zoom_domain id="19s34wT"/> </domain> 144 <domain id="14s32wT" domain_ref="grid_T" > <zoom_domain id="14s32wT"/> </domain> 145 <domain id="8s30wT" domain_ref="grid_T" > <zoom_domain id="8s30wT" /> </domain> 146 <domain id="0n35wT" domain_ref="grid_T" > <zoom_domain id="0n35wT" /> </domain> 147 <domain id="4n38wT" domain_ref="grid_T" > <zoom_domain id="4n38wT" /> </domain> 148 <domain id="8n38wT" domain_ref="grid_T" > <zoom_domain id="8n38wT" /> </domain> 149 <domain id="12n38wT" domain_ref="grid_T" > <zoom_domain id="12n38wT"/> </domain> 150 <domain id="15n38wT" domain_ref="grid_T" > <zoom_domain id="15n38wT"/> </domain> 151 <domain id="20n38wT" domain_ref="grid_T" > <zoom_domain id="20n38wT"/> </domain> 152 <!-- <\!-- 23w -\-> --> 153 <domain id="0n23wT" domain_ref="grid_T" > <zoom_domain id="0n23wT" /> </domain> 154 <domain id="4n23wT" domain_ref="grid_T" > <zoom_domain id="4n23wT" /> </domain> 155 <domain id="12n23wT" domain_ref="grid_T" > <zoom_domain id="12n23wT"/> </domain> 156 <domain id="21n23wT" domain_ref="grid_T" > <zoom_domain id="21n23wT"/> </domain> 157 <!-- <\!-- 10w -\-> --> 158 <domain id="10s10wT" domain_ref="grid_T" > <zoom_domain id="10s10wT"/> </domain> 159 <domain id="6s10wT" domain_ref="grid_T" > <zoom_domain id="6s10wT" /> </domain> 160 <domain id="0n10wT" domain_ref="grid_T" > <zoom_domain id="0n10wT" /> </domain> 161 <!-- <\!-- 0e -\-> --> 162 <domain id="0n0eT" domain_ref="grid_T" > <zoom_domain id="0n0eT" /> </domain> 164 163 165 <domain_group id="grid_U"> 166 <domain id="grid_U" long_name="grid U"/> 167 <!-- Eq section --> 168 <domain id="EqU" ibegin="1" jbegin="0000" ni="0000" nj="1" /> 164 165 <!-- U grid --> 166 <domain id="grid_U" long_name="grid U"/> 167 <!-- Eq section --> 168 <domain id="EqU" domain_ref="grid_U" > <zoom_domain id="EqU"/> </domain> 169 169 170 </domain_group>171 170 172 <domain_group id="grid_V"> 173 <domain id="grid_V" long_name="grid V"/> 174 <!-- My zoom: example of hand defined zoom --> 175 <domain id="moorV" ibegin="1" jbegin="1" ni="1" nj="1" /> 176 </domain_group> 171 <!-- V grid --> 172 <domain id="grid_V" long_name="grid V"/> 173 <!-- Eq section : no V point on the Equator... --> 177 174 178 <domain_group id="grid_W"> 179 <domain id="grid_W" long_name="grid W"/> 180 <!-- My zoom: example of hand defined zoom --> 181 <domain id="moorW" ibegin="1" jbegin="1" ni="1" nj="1" /> 182 <!-- Eq section --> 183 <domain id="EqW" ibegin="1" jbegin="0000" ni="0000" nj="1" /> 184 </domain_group> 175 176 <!-- W grid --> 177 <domain id="grid_W" long_name="grid W"/> 178 <!-- Eq section --> 179 <domain id="EqW" domain_ref="grid_W" > <zoom_domain id="EqW"/> </domain> 185 180 186 <domain_group id="scalarpoint"> 187 <domain id="scalarpoint" long_name="scalar"/> 188 </domain_group> 181 182 <!-- zonal mean grid --> 183 <domain id="gznl" long_name="gznl"/> 184 <domain id="znl_T" domain_ref="gznl" > <zoom_domain id="znl_T"/> </domain> 185 <domain id="znl_W" domain_ref="gznl" > <zoom_domain id="znl_W"/> </domain> 189 186 190 <domain_group id="gznl"> 191 <domain id="gznl" long_name="gznl"/> 192 <domain id="ptr" domain_ref="gznl" > 193 <zoom_domain id="ptr" ibegin="0000" jbegin="0" ni="1" nj="0000" /> 194 </domain> 195 </domain_group> 187 188 <!-- other grids --> 189 <domain id="scalarpoint" long_name="scalar"/> 196 190 197 191 -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/SHARED/field_def_nemo-ice.xml
r9572 r10289 4 4 <!-- 5 5 ============================================================================================================ 6 = definition of all existingice variables =6 = definition of all existing sea ice variables = 7 7 = DO NOT CHANGE = 8 8 ============================================================================================================ 9 9 --> 10 <field_definition level="1" prec="4" operation="average" enabled=".TRUE." default_value="1.e20" > <!-- time step automaticaly defined --> 11 12 <field_group id="SBC" grid_ref="grid_T_2D" > <!-- time step automaticaly defined based on nn_fsbc --> 13 14 <!-- =================== --> 15 <!-- standard ice fields --> 16 <!-- =================== --> 17 <!-- ice presence masks --> 18 <field id="icemask" long_name="Fraction of time steps with sea ice" standard_name="sea_ice_mask" unit="" /> 19 <field id="icemask05" long_name="Ice mask (0 if ice conc. lower than 5%, 1 otherwise)" standard_name="sea_ice_mask05" unit="" /> 20 <field id="icemask15" long_name="Ice mask (0 if ice conc. lower than 15%, 1 otherwise)" standard_name="sea_ice_mask15" unit="" /> 21 <field id="icepres" long_name="Fraction of time steps with sea ice" standard_name="sea_ice_time_fraction" unit="" /> 10 <field_definition level="1" prec="4" operation="average" enabled=".TRUE." default_value="1.e20" > <!-- time step automaticaly defined --> 11 12 <!-- 13 ============================================================================================================ 14 Physical sea ice model variables 15 ============================================================================================================ 16 --> 17 18 <field_group id="SBC" > <!-- time step automaticaly defined based on nn_fsbc --> 19 20 <!-- 2D variables --> 21 <field_group id="SBC_2D" grid_ref="grid_T_2D" > 22 23 <!-- =================== --> 24 <!-- standard ice fields --> 25 <!-- =================== --> 26 <!-- ice presence masks --> 27 <field id="icemask" long_name="Fraction of time steps with sea ice" standard_name="sea_ice_mask" unit="" /> 28 <field id="icemask05" long_name="Ice mask (0 if ice conc. lower than 5%, 1 otherwise)" standard_name="sea_ice_mask05" unit="" /> 29 <field id="icemask15" long_name="Ice mask (0 if ice conc. lower than 15%, 1 otherwise)" standard_name="sea_ice_mask15" unit="" /> 30 <field id="icepres" long_name="Fraction of time steps with sea ice" standard_name="sea_ice_time_fraction" unit="" /> 31 32 <!-- general fields --> 33 <field id="icemass" long_name="Sea-ice mass per area" standard_name="sea_ice_amount" unit="kg/m2"/> 34 <field id="snwmass" long_name="Snow mass per area" standard_name="liquid_water_content_of_surface_snow" unit="kg/m2"/> 35 <field id="iceconc" long_name="Sea-ice area fraction" standard_name="sea_ice_area_fraction" unit="" /> 36 <field id="icevolu" long_name="Sea-ice volume per area" standard_name="sea_ice_thickness" unit="m" /> 37 <field id="icethic" long_name="Sea-ice thickness per area" standard_name="sea_ice_thickness" unit="m" /> 38 <field id="snwthic" long_name="Snow thickness per area" standard_name="snow_thickness" unit="m" /> 39 <field id="icebrv" long_name="brine volume" unit="%" /> 40 <field id="iceage" long_name="ice age" unit="days"/> 41 <field id="icehnew" long_name="frazil ice collection thickness" unit="m" /> 42 <field id="snwvolu" long_name="snow volume" unit="m" /> 43 <field id="icefrb" long_name="Sea-ice freeboard" standard_name="sea_ice_freeboard" unit="m" /> 44 <field id="icealb" long_name="Sea-ice or snow albedo" standard_name="sea_ice_albedo" unit="" /> 45 <field id="tau_icebfr" long_name="ice friction on ocean bottom for landfast ice" unit="N/2" /> 46 47 <!-- melt ponds --> 48 <field id="iceapnd" long_name="melt pond fraction" standard_name="sea_ice_meltpond_fraction" unit="%" /> 49 <field id="icevpnd" long_name="melt pond volume" standard_name="sea_ice_meltpond_volume" unit="m" /> 50 51 <!-- heat --> 52 <field id="icetemp" long_name="Mean ice temperature" unit="degC" /> 53 <field id="snwtemp" long_name="Mean snow temperature" unit="degC" /> 54 <field id="icettop" long_name="temperature at the ice surface" unit="degC" /> 55 <field id="icetbot" long_name="temperature at the ice bottom" unit="degC" /> 56 <field id="icetsni" long_name="temperature at the snow-ice interface" unit="degC" /> 57 <field id="icehc" long_name="ice heat content" unit="J/m2" /> 58 <field id="snwhc" long_name="snow heat content" unit="J/m2" /> 59 60 <!-- salt --> 61 <field id="icesalt" long_name="Sea ice salinity" unit="g/kg" /> 62 <field id="icesalm" long_name="Mass of salt in sea ice per area" standard_name="sea_ice_salt_mass" unit="kg/m2" /> 63 64 <!-- momentum (rheology) --> 65 <field id="uice" long_name="X-component of sea ice velocity" standard_name="sea_ice_x_velocity" unit="m/s" /> 66 <field id="vice" long_name="Y-component of sea ice velocity" standard_name="sea_ice_y_velocity" unit="m/s" /> 67 <field id="icevel" long_name="Sea-ice speed" standard_name="sea_ice_speed" unit="m/s" /> 68 <field id="utau_ai" long_name="X-component of atmospheric stress on sea ice" standard_name="surface_downward_x_stress" unit="N/m2" /> 69 <field id="vtau_ai" long_name="Y-component of atmospheric stress on sea ice" standard_name="surface_downward_y_stress" unit="N/m2" /> 70 <field id="utau_oi" long_name="X-component of ocean stress on sea ice" standard_name="sea_ice_base_upward_x_stress" unit="N/m2" /> 71 <field id="vtau_oi" long_name="Y-component of ocean stress on sea ice" standard_name="sea_ice_base_upward_y_stress" unit="N/m2" /> 72 <field id="isig1" long_name="1st principal stress component for EVP rhg" unit="" /> 73 <field id="isig2" long_name="2nd principal stress component for EVP rhg" unit="" /> 74 <field id="isig3" long_name="convergence measure for EVP rheology (must be around 1)" unit="" /> 75 <field id="normstr" long_name="Average normal stress in sea ice" standard_name="average_normal_stress" unit="N/m" /> 76 <field id="sheastr" long_name="Maximum shear stress in sea ice" standard_name="maximum_shear_stress" unit="N/m" /> 77 <field id="icestr" long_name="Compressive sea ice strength" standard_name="compressive_strength_of_sea_ice" unit="N/m" /> 78 <field id="icediv" long_name="Divergence of the sea-ice velocity field" standard_name="divergence_of_sea_ice_velocity" unit="s-1" /> 79 <field id="iceshe" long_name="Maximum shear of sea-ice velocity field" standard_name="maximum_shear_of_sea_ice_velocity" unit="s-1" /> 80 81 <!-- surface heat fluxes --> 82 <field id="qt_ice" long_name="total heat flux at ice surface" standard_name="surface_downward_heat_flux_in_air" unit="W/m2" /> 83 <field id="qsr_ice" long_name="solar heat flux at ice surface" standard_name="surface_downwelling_shortwave_flux_in_air" unit="W/m2" /> 84 <field id="qns_ice" long_name="non-solar heat flux at ice surface (including E-P)" unit="W/m2" /> 85 <field id="qtr_ice_bot" long_name="solar heat flux transmitted through the ice (to the ocean)" unit="W/m2" /> 86 <field id="qtr_ice_top" long_name="solar heat flux transmitted through the ice surface" unit="W/m2" /> 87 <field id="qt_oce_ai" long_name="total heat flux at the ocean surface: interface oce-(ice+atm)" unit="W/m2" /> 88 <field id="qt_atm_oi" long_name="total heat flux at the oce-ice surface: interface atm-(ice+oce)" unit="W/m2" /> 89 <field id="qemp_ice" long_name="Downward Heat Flux from E-P over ice" unit="W/m2" /> 90 <field id="albedo" long_name="Mean albedo over sea ice and ocean" unit="" /> 91 92 <!-- trends --> 93 <field id="afxthd" long_name="sea-ice area fraction change from thermodynamics" standard_name="tendency_of_sea_ice_area_fraction_due_to_dynamics" unit="s-1" /> 94 <field id="afxdyn" long_name="sea-ice area fraction change from dynamics" standard_name="tendency_of_sea_ice_area_fraction_due_to_dynamics" unit="s-1" /> 95 <field id="afxtot" long_name="area tendency (total)" unit="s-1" /> 96 97 <!-- momentum (advection) --> 98 <field id="icemtrp" long_name="ice mass transport" unit="kg/m2/s" /> 99 <field id="snwmtrp" long_name="snw mass transport" unit="kg/m2/s" /> 100 <field id="salmtrp" long_name="salt mass transport" unit="kg/m2/s" /> 101 <field id="dihctrp" long_name="ice heat content transport" unit="W/m2" /> 102 <field id="dshctrp" long_name="snw heat content transport" unit="W/m2" /> 103 104 <!-- salt fluxes --> 105 <field id="sfxice" long_name="ice-ocean salt flux from ice growth/melt (neg = growth)" unit="kg/m2/s" /> 106 <field id="sfxbog" long_name="ice-ocean salt flux from ice bottom growth" unit="kg/m2/s" /> 107 <field id="sfxbom" long_name="ice-ocean salt flux from ice bottom melt" unit="kg/m2/s" /> 108 <field id="sfxsum" long_name="ice-ocean salt flux from ice surface melt" unit="kg/m2/s" /> 109 <field id="sfxlam" long_name="ice-ocean salt flux from ice lateral melt" unit="kg/m2/s" /> 110 <field id="sfxsni" long_name="ice-ocean salt flux from snow-ice formation" unit="kg/m2/s" /> 111 <field id="sfxopw" long_name="ice-ocean salt flux from ice formation in open water" unit="kg/m2/s" /> 112 <field id="sfxdyn" long_name="ice-ocean salt flux from ice dynamics (ridging)" unit="kg/m2/s" /> 113 <field id="sfxbri" long_name="ice-ocean salt flux from brines" unit="kg/m2/s" /> 114 <field id="sfxres" long_name="ice-ocean salt flux from undiagnosed processes" unit="kg/m2/s" /> 115 <field id="sfxsub" long_name="ice-ocean salt flux from ice sublimation" unit="kg/m2/s" /> 116 117 <!-- mass fluxes --> 118 <field id="vfxice" long_name="ice-ocean mass flux from ice melt/growth (neg = growth)" unit="kg/m2/s" /> 119 <field id="vfxbog" long_name="ice-ocean mass flux from ice bottom growth" unit="kg/m2/s" /> 120 <field id="vfxbom" long_name="ice-ocean mass flux from ice bottom melt" unit="kg/m2/s" /> 121 <field id="vfxsum" long_name="ice-ocean mass flux from ice surface melt" unit="kg/m2/s" /> 122 <field id="vfxlam" long_name="ice-ocean mass flux from ice lateral melt" unit="kg/m2/s" /> 123 <field id="vfxsni" long_name="ice-ocean mass flux from snow-ice formation" unit="kg/m2/s" /> 124 <field id="vfxopw" long_name="ice-ocean mass flux from ice growth in open water" unit="kg/m2/s" /> 125 <field id="vfxdyn" long_name="ice-ocean mass flux from ice dynamics (ridging)" unit="kg/m2/s" /> 126 <field id="vfxres" long_name="ice-ocean mass flux from undiagnosed processes" unit="kg/m2/s" /> 127 <field id="vfxpnd" long_name="ice-ocean mass flux from ice melt ponds" unit="kg/m2/s" /> 128 <field id="vfxsub" long_name="ice-atm. mass flux from ice sublimation" unit="kg/m2/s" /> 129 <field id="vfxsub_err" long_name="ice-ocean mass flux from unbalance in sublimation (incl. in qt_oce_ai)" unit="kg/m2/s" /> 130 <field id="vfxthin" long_name="ice-ocean mass flux from ice growth in open water + thin ice(20cm)" unit="kg/m2/s" /> 131 132 <field id="vfxsnw" long_name="ice-ocean mass flux from snw melt/growth (neg = growth)" unit="kg/m2/s" /> 133 <field id="vfxsnw_sum" long_name="ice-ocean mass flux from snw surface melt" unit="kg/m2/s" /> 134 <field id="vfxsnw_sni" long_name="ice-ocean mass flux from snow-ice formation" unit="kg/m2/s" /> 135 <field id="vfxsnw_dyn" long_name="ice-ocean mass flux from dynamics (ridging)" unit="kg/m2/s" /> 136 <field id="vfxsnw_sub" long_name="ice-atm. mass flux from snw sublimation" unit="kg/m2/s" /> 137 <field id="vfxsnw_pre" long_name="snw precipitation on ice" unit="kg/m2/s" /> 138 139 <!-- heat fluxes --> 140 <field id="hfxbog" long_name="heat flux used for bottom ice growth (neg.)" unit="W/m2" /> 141 <field id="hfxbom" long_name="heat flux used for bottom ice melt (pos.)" unit="W/m2" /> 142 <field id="hfxsum" long_name="heat flux used for surface ice melt" unit="W/m2" /> 143 <field id="hfxopw" long_name="heat flux used for open water ice formation" unit="W/m2" /> 144 <field id="hfxdif" long_name="heat flux used for ice temperature change" unit="W/m2" /> 145 <field id="hfxsnw" long_name="heat flux used for snow melt" unit="W/m2" /> 146 <field id="hfxerr" long_name="heat flux error after heat diffusion" unit="W/m2" /> 147 <!-- heat fluxes associated with mass exchange --> 148 <field id="hfxthd" long_name="heat fluxes from ice-ocean mass exchange during thermo" unit="W/m2" /> 149 <field id="hfxdyn" long_name="heat fluxes from ice-ocean mass exchange during dynamic" unit="W/m2" /> 150 <field id="hfxres" long_name="heat fluxes from ice-ocean mass exchange during resultant" unit="W/m2" /> 151 <field id="hfxsub" long_name="heat fluxes from ice-atm. mass exchange during sublimation" unit="W/m2" /> 152 <field id="hfxspr" long_name="heat fluxes from ice-atm. mass exchange during snow precip" unit="W/m2" /> 153 154 <field id="hfxsensib" long_name="Net sensible heat flux under sea ice (neg = ice cooling)" standard_name="ice_ocean_heat_flux" unit="W/m2" /> 155 <field id="hfxcndtop" long_name="Net conductive heat flux at the ice surface (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_surface" unit="W/m2" /> 156 <field id="hfxcndbot" long_name="Net conductive heat flux at the ice bottom (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_bottom" unit="W/m2" /> 157 158 <!-- diags --> 159 <field id="hfxdhc" long_name="Heat content variation in snow and ice (neg = ice cooling)" unit="W/m2" /> 160 161 <!-- diagnostics of the negative values resulting from the advection scheme --> 162 <field id="iceneg_pres" long_name="Fraction of time steps with negative sea ice volume" unit="" /> 163 <field id="iceneg_volu" long_name="Negative sea ice volume per area arising from advection" unit="m" /> 164 <field id="iceneg_hfx" long_name="Negative sea ice heat content (eq. heat flux) arising from advection" unit="W/m2" /> 165 166 <!-- sbcssm variables --> 167 <field id="sst_m" unit="degC" /> 168 <field id="sss_m" unit="psu" /> 169 <field id="ssu_m" unit="m/s" /> 170 <field id="ssv_m" unit="m/s" /> 171 <field id="ssh_m" unit="m" /> 172 <field id="e3t_m" unit="m" /> 173 <field id="frq_m" unit="-" /> 174 175 <!-- categories --> 176 <field id="iceconc_cat" long_name="Sea-ice concentration per category" unit="" grid_ref="grid_T_3D_ncatice" /> 177 <field id="icethic_cat" long_name="Sea-ice thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 178 <field id="snwthic_cat" long_name="Snow thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 179 <field id="icesalt_cat" long_name="Sea-Ice Bulk salinity per category" unit="g/kg" grid_ref="grid_T_3D_ncatice" /> 180 <field id="icetemp_cat" long_name="Ice temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 181 <field id="snwtemp_cat" long_name="Snow temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 182 <field id="icettop_cat" long_name="Ice/snow surface temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 183 <field id="iceapnd_cat" long_name="Ice melt pond concentration per category" unit="%" grid_ref="grid_T_3D_ncatice" /> 184 <field id="icehpnd_cat" long_name="Ice melt pond thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 185 <field id="iceafpnd_cat" long_name="Ice melt pond fraction per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 186 <field id="icemask_cat" long_name="Fraction of time step with sea ice (per category)" unit="" grid_ref="grid_T_3D_ncatice" /> 187 <field id="iceage_cat" long_name="Ice age per category" unit="days" grid_ref="grid_T_3D_ncatice" /> 188 <field id="icebrv_cat" long_name="Brine volume per category" unit="%" grid_ref="grid_T_3D_ncatice" /> 189 190 <!-- ================= --> 191 <!-- Add-ons for SIMIP --> 192 <!-- ================= --> 193 <field id="icemass_cmip" long_name="Sea-ice mass per area" standard_name="sea_ice_amount" detect_missing_value="true" unit="kg/m2" > icemass * icemask + $missval * (1.-icemask ) </field> 194 <field id="icethic_cmip" long_name="Sea-ice thickness" standard_name="sea_ice_thickness" detect_missing_value="true" unit="m" > icethic * icemask05 + $missval * (1.-icemask05) </field> 195 <field id="snwmass_cmip" long_name="Snow mass per area" standard_name="liquid_water_content_of_surface_snow" detect_missing_value="true" unit="kg/m2" > snwmass * icemask + $missval * (1.-icemask ) </field> 196 <field id="snwthic_cmip" long_name="Snow thickness" standard_name="surface_snow_thickness" detect_missing_value="true" unit="m" > snwthic * icemask05 + $missval * (1.-icemask05) </field> 197 <field id="iceconc_pct" long_name="Sea-ice area fraction in percent" standard_name="sea_ice_area_fraction_in_percent" unit="%" > iceconc * 100. </field> 198 <field id="iceage_cmip" long_name="Age of sea ice" standard_name="age_of_sea_ice" detect_missing_value="true" unit="days" > iceage * icemask15 + $missval * (1.-icemask15) </field> 199 <field id="icesalt_cmip" long_name="Sea ice salinity" standard_name="sea_ice_salinity" detect_missing_value="true" unit="g/kg" > icesalt * icemask + $missval * (1.-icemask ) </field> 200 <field id="icefrb_cmip" long_name="Sea-ice freeboard" standard_name="sea_ice_freeboard" detect_missing_value="true" unit="m" > icefrb * icemask + $missval * (1.-icemask ) </field> 201 202 <!-- heat --> 203 <field id="icettop_cmip" long_name="Surface temperature of sea ice" standard_name="sea_ice_surface_temperature" detect_missing_value="true" unit="K" > (icettop+273.15) * icemask + $missval * (1.-icemask) </field> 204 <field id="icetsni_cmip" long_name="Temperature at snow-ice interface" standard_name="sea_ice_snow_interface_temperature" detect_missing_value="true" unit="K" > (icetsni+273.15) * icemask + $missval * (1.-icemask) </field> 205 <field id="icetbot_cmip" long_name="Temperature at ice-ocean interface" standard_name="sea_ice_bottom_temperature" detect_missing_value="true" unit="K" > (icetbot+273.15) * icemask + $missval * (1.-icemask) </field> 206 <field id="icehc_cmip" long_name="Sea-ice heat content per unit area" standard_name="integral_of_sea_ice_temperature_wrt_depth_expressed_as_heat_content" detect_missing_value="true" unit="J/m2" > icehc * icemask + $missval * (1.-icemask) </field> 207 <field id="snwhc_cmip" long_name="Snow-heat content per unit area" standard_name="thermal_energy_content_of_surface_snow" detect_missing_value="true" unit="J/m2" > snwhc * icemask + $missval * (1.-icemask) </field> 208 209 <!-- fluxes (mass, heat, salt) --> 210 <field id="vfxsum_cmip" long_name="Freshwater flux from sea-ice surface" standard_name="freshwater_flux_from_ice_surface" detect_missing_value="true" unit="kg/m2/s" > vfxsum * icemask + $missval * (1.-icemask) </field> 211 <field id="vfxice_cmip" long_name="Freshwater flux from sea ice" standard_name="freshwater_flux_from_ice" detect_missing_value="true" unit="kg/m2/s" > vfxice * icemask + $missval * (1.-icemask) </field> 212 <field id="hfxsensib_cmip" long_name="Net sensible heat flux under sea ice" standard_name="ice_ocean_heat_flux" detect_missing_value="true" unit="W/m2" > hfxsensib * icemask + $missval * (1.-icemask) </field> 213 <field id="hfxcndtop_cmip" long_name="Net conductive heat flux at the ice surface" standard_name="conductive_heat_flux_at_sea_ice_surface" detect_missing_value="true" unit="W/m2" > hfxcndtop * icemask + $missval * (1.-icemask) </field> 214 <field id="hfxcndbot_cmip" long_name="Net conductive heat flux at the ice bottom" standard_name="conductive_heat_flux_at_sea_ice_bottom" detect_missing_value="true" unit="W/m2" > hfxcndbot * icemask + $missval * (1.-icemask) </field> 215 <field id="sfxice_cmip" long_name="Salt flux from sea ice" standard_name="salt_flux_from_ice" detect_missing_value="true" unit="kg/m2/s" > sfxice * icemask + $missval * (1.-icemask) </field> 216 217 <!-- trends --> 218 <field id="dmithd" long_name="sea-ice mass change from thermodynamics" standard_name="tendency_of_sea_ice_amount_due_to_thermodynamics" unit="kg/m2/s" /> 219 <field id="dmidyn" long_name="sea-ice mass change from dynamics" standard_name="tendency_of_sea_ice_amount_due_to_dynamics" unit="kg/m2/s" /> 220 <field id="dmiopw" long_name="sea-ice mass change through growth in supercooled open water (frazil)" standard_name="tendency_of_sea_ice_amount_due_to_freezing_in_open_water" unit="kg/m2/s" /> 221 <field id="dmibog" long_name="sea-ice mass change through basal growth" standard_name="tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation" unit="kg/m2/s" /> 222 <field id="dmisni" long_name="sea-ice mass change through snow-to-ice conversion" standard_name="tendency_of_sea_ice_amount_due_to_snow_conversion" unit="kg/m2/s" /> 223 <field id="dmtsub" long_name="snow and sea ice mass change through sublimation" standard_name="tendency_of_snow_and_ice_amount_due_to_sublimation" unit="kg/m2/s" /> 224 <field id="dmssub" long_name="sea-ice mass change through evaporation and sublimation" standard_name="water_evaporation_flux" unit="kg/m2/s" /> 225 <field id="dmisub" long_name="snow mass change through evaporation or sublimation" standard_name="surface_snow_sublimation_flux" unit="kg/m2/s" /> 226 <field id="dmisum" long_name="sea-ice mass change through surface melting" standard_name="tendency_of_sea_ice_amount_due_to_surface_melting" unit="kg/m2/s" /> 227 <field id="dmibom" long_name="sea-ice mass change through bottom melting" standard_name="tendency_of_sea_ice_amount_due_to_basal_melting" unit="kg/m2/s" /> 228 <field id="dmsspr" long_name="snow mass change through snow fall" standard_name="snowfall_flux" unit="kg/m2/s" /> 229 <field id="dmsmel" long_name="snow mass change through melt" standard_name="surface_snow_melt_flux" unit="kg/m2/s" /> 230 <field id="dmsdyn" long_name="snow mass change through advection by sea-ice dynamics" standard_name="tendency_of_snow_mass_due_to_sea_ice_dynamics" unit="kg/m2/s" /> 231 <field id="dmsssi" long_name="snow mass change through snow-to-ice conversion" standard_name="tendency_of_snow_mass_due_to_snow_to_ice_conversion" unit="kg/m2/s" /> 232 233 <!-- momentum (rheology) --> 234 <field id="uice_cmip" long_name="X-component of sea ice velocity" standard_name="sea_ice_x_velocity" detect_missing_value="true" unit="m/s" > uice * icemask + $missval * (1.-icemask) </field> 235 <field id="vice_cmip" long_name="Y-component of sea ice velocity" standard_name="sea_ice_y_velocity" detect_missing_value="true" unit="m/s" > vice * icemask + $missval * (1.-icemask) </field> 236 <field id="icevel_cmip" long_name="Sea-ice speed" standard_name="sea_ice_speed" detect_missing_value="true" unit="m/s" > icevel * icemask + $missval * (1.-icemask) </field> 237 <field id="utau_ai_cmip" long_name="X-component of atmospheric stress on sea ice" standard_name="surface_downward_x_stress" detect_missing_value="true" unit="N/m2" > utau_ai * icemask + $missval * (1.-icemask) </field> 238 <field id="vtau_ai_cmip" long_name="Y-component of atmospheric stress on sea ice" standard_name="surface_downward_y_stress" detect_missing_value="true" unit="N/m2" > vtau_ai * icemask + $missval * (1.-icemask) </field> 239 <field id="dssh_dx" long_name="Sea-surface tilt term in force balance (x-component)" standard_name="sea_surface_tilt_force_on_sea_ice_x" unit="N/m2" /> 240 <field id="dssh_dy" long_name="Sea-surface tilt term in force balance (y-component)" standard_name="sea_surface_tilt_force_on_sea_ice_y" unit="N/m2" /> 241 <field id="corstrx" long_name="Coriolis force term in force balance (x-component)" standard_name="coriolis_force_on_sea_ice_x" unit="N/m2" /> 242 <field id="corstry" long_name="Coriolis force term in force balance (y-component)" standard_name="coriolis_force_on_sea_ice_y" unit="N/m2" /> 243 <field id="intstrx" long_name="Internal stress term in force balance (x-component)" standard_name="internal_stress_in_sea_ice_x" unit="N/m2" /> 244 <field id="intstry" long_name="Internal stress term in force balance (y-component)" standard_name="internal_stress_in_sea_ice_y" unit="N/m2" /> 245 246 <!-- momentum (advection) --> 247 <field id="xmtrpice" long_name="X-component of ice mass transport" standard_name="ice_x_transport" unit="kg/s" /> 248 <field id="ymtrpice" long_name="Y-component of ice mass transport" standard_name="ice_y_transport" unit="kg/s" /> 249 <field id="xmtrpsnw" long_name="X-component of snw mass transport" standard_name="snw_x_transport" unit="kg/s" /> 250 <field id="ymtrpsnw" long_name="Y-component of snw mass transport" standard_name="snw_y_transport" unit="kg/s" /> 251 <field id="xatrp" long_name="X-component of ice area transport" standard_name="area_x_transport" unit="m2/s" /> 252 <field id="yatrp" long_name="Y-component of ice area transport" standard_name="area_y_transport" unit="m2/s" /> 253 <field id="xmtrptot" long_name="X-component of sea-ice mass transport" standard_name="sea_ice_x_transport" unit="kg/s" > xmtrpice + xmtrpsnw </field> 254 <field id="ymtrptot" long_name="Y-component of sea-ice mass transport" standard_name="sea_ice_y_transport" unit="kg/s" > ymtrpice + ymtrpsnw </field> 255 256 <!-- categories --> 257 <field id="iceconc_cat_cmip" long_name="Sea-ice area fractions in thickness categories" standard_name="sea_ice_area_fraction_over_categories" detect_missing_value="true" unit="" grid_ref="grid_T_3D_ncatice" > iceconc_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 258 <field id="icethic_cat_cmip" long_name="Sea-ice thickness in thickness categories" standard_name="sea_ice_thickness_over_categories" detect_missing_value="true" unit="m" grid_ref="grid_T_3D_ncatice" > icethic_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 259 <field id="snwthic_cat_cmip" long_name="Snow thickness in thickness categories" standard_name="snow_thickness_over_categories" detect_missing_value="true" unit="m" grid_ref="grid_T_3D_ncatice" > snwthic_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 260 <field id="iceconc_cat_pct_cmip" long_name="Sea-ice area fractions in thickness categories" standard_name="sea_ice_area_fraction_over_categories" detect_missing_value="true" unit="%" grid_ref="grid_T_3D_ncatice" > iceconc_cat*100. * icemask_cat + $missval * (1.-icemask_cat) </field> 22 261 23 <!-- general fields --> 24 <field id="icemass" long_name="Sea-ice mass per area" standard_name="sea_ice_amount" unit="kg/m2"/> 25 <field id="snwmass" long_name="Snow mass per area" standard_name="liquid_water_content_of_surface_snow" unit="kg/m2"/> 26 <field id="iceconc" long_name="Sea-ice area fraction" standard_name="sea_ice_area_fraction" unit="" /> 27 <field id="icevolu" long_name="Sea-ice volume per area" standard_name="sea_ice_thickness" unit="m" /> 28 <field id="icethic" long_name="Sea-ice thickness per area" standard_name="sea_ice_thickness" unit="m" /> 29 <field id="snwthic" long_name="Snow thickness per area" standard_name="snow_thickness" unit="m" /> 30 <field id="icebrv" long_name="brine volume" unit="%" /> 31 <field id="iceage" long_name="ice age" unit="days"/> 32 <field id="icehnew" long_name="frazil ice collection thickness" unit="m" /> 33 <field id="snwvolu" long_name="snow volume" unit="m" /> 34 <field id="icefrb" long_name="Sea-ice freeboard" standard_name="sea_ice_freeboard" unit="m" /> 35 <field id="icealb" long_name="Sea-ice or snow albedo" standard_name="sea_ice_albedo" unit="" /> 36 <field id="tau_icebfr" long_name="ice friction on ocean bottom for landfast ice" unit="N/2" /> 37 38 <!-- melt ponds --> 39 <field id="iceapnd" long_name="melt pond fraction" standard_name="sea_ice_meltpond_fraction" unit="%" /> 40 <field id="icevpnd" long_name="melt pond volume" standard_name="sea_ice_meltpond_volume" unit="m" /> 41 42 <!-- heat --> 43 <field id="icetemp" long_name="Mean ice temperature" unit="degC" /> 44 <field id="snwtemp" long_name="Mean snow temperature" unit="degC" /> 45 <field id="icettop" long_name="temperature at the ice surface" unit="degC" /> 46 <field id="icetbot" long_name="temperature at the ice bottom" unit="degC" /> 47 <field id="icetsni" long_name="temperature at the snow-ice interface" unit="degC" /> 48 <field id="icehc" long_name="ice heat content" unit="J/m2" /> 49 <field id="snwhc" long_name="snow heat content" unit="J/m2" /> 50 51 <!-- salt --> 52 <field id="icesalt" long_name="Sea ice salinity" unit="g/kg" /> 53 <field id="icesalm" long_name="Mass of salt in sea ice per area" standard_name="sea_ice_salt_mass" unit="kg/m2" /> 54 55 <!-- momentum (rheology) --> 56 <field id="uice" long_name="X-component of sea ice velocity" standard_name="sea_ice_x_velocity" unit="m/s" /> 57 <field id="vice" long_name="Y-component of sea ice velocity" standard_name="sea_ice_y_velocity" unit="m/s" /> 58 <field id="icevel" long_name="Sea-ice speed" standard_name="sea_ice_speed" unit="m/s" /> 59 <field id="utau_ai" long_name="X-component of atmospheric stress on sea ice" standard_name="surface_downward_x_stress" unit="N/m2" /> 60 <field id="vtau_ai" long_name="Y-component of atmospheric stress on sea ice" standard_name="surface_downward_y_stress" unit="N/m2" /> 61 <field id="utau_oi" long_name="X-component of ocean stress on sea ice" standard_name="sea_ice_base_upward_x_stress" unit="N/m2" /> 62 <field id="vtau_oi" long_name="Y-component of ocean stress on sea ice" standard_name="sea_ice_base_upward_y_stress" unit="N/m2" /> 63 <field id="isig1" long_name="1st principal stress component for EVP rhg" unit="" /> 64 <field id="isig2" long_name="2nd principal stress component for EVP rhg" unit="" /> 65 <field id="isig3" long_name="convergence measure for EVP rheology (must be around 1)" unit="" /> 66 <field id="normstr" long_name="Average normal stress in sea ice" standard_name="average_normal_stress" unit="N/m" /> 67 <field id="sheastr" long_name="Maximum shear stress in sea ice" standard_name="maximum_shear_stress" unit="N/m" /> 68 <field id="icestr" long_name="Compressive sea ice strength" standard_name="compressive_strength_of_sea_ice" unit="N/m" /> 69 <field id="icediv" long_name="Divergence of the sea-ice velocity field" standard_name="divergence_of_sea_ice_velocity" unit="s-1" /> 70 <field id="iceshe" long_name="Maximum shear of sea-ice velocity field" standard_name="maximum_shear_of_sea_ice_velocity" unit="s-1" /> 71 72 <!-- surface heat fluxes --> 73 <field id="qt_ice" long_name="total heat flux at ice surface" standard_name="surface_downward_heat_flux_in_air" unit="W/m2" /> 74 <field id="qsr_ice" long_name="solar heat flux at ice surface" standard_name="surface_downwelling_shortwave_flux_in_air" unit="W/m2" /> 75 <field id="qns_ice" long_name="non-solar heat flux at ice surface (including E-P)" unit="W/m2" /> 76 <field id="qtr_ice_bot" long_name="solar heat flux transmitted through the ice (to the ocean)" unit="W/m2" /> 77 <field id="qtr_ice_top" long_name="solar heat flux transmitted through the ice surface" unit="W/m2" /> 78 <field id="qt_oce_ai" long_name="total heat flux at the ocean surface: interface oce-(ice+atm)" unit="W/m2" /> 79 <field id="qt_atm_oi" long_name="total heat flux at the oce-ice surface: interface atm-(ice+oce)" unit="W/m2" /> 80 <field id="qemp_ice" long_name="Downward Heat Flux from E-P over ice" unit="W/m2" /> 81 <field id="albedo" long_name="Mean albedo over sea ice and ocean" unit="" /> 82 83 <!-- trends --> 84 <field id="afxthd" long_name="sea-ice area fraction change from thermodynamics" standard_name="tendency_of_sea_ice_area_fraction_due_to_dynamics" unit="s-1" /> 85 <field id="afxdyn" long_name="sea-ice area fraction change from dynamics" standard_name="tendency_of_sea_ice_area_fraction_due_to_dynamics" unit="s-1" /> 86 <field id="afxtot" long_name="area tendency (total)" unit="s-1" /> 87 88 <!-- momentum (advection) --> 89 <field id="icemtrp" long_name="ice mass transport" unit="kg/m2/s" /> 90 <field id="snwmtrp" long_name="snw mass transport" unit="kg/m2/s" /> 91 <field id="salmtrp" long_name="salt mass transport" unit="kg/m2/s" /> 92 <field id="dihctrp" long_name="ice heat content transport" unit="W/m2" /> 93 <field id="dshctrp" long_name="snw heat content transport" unit="W/m2" /> 94 95 <!-- salt fluxes --> 96 <field id="sfxice" long_name="ice-ocean salt flux from ice growth/melt (neg = growth)" unit="kg/m2/s" /> 97 <field id="sfxbog" long_name="ice-ocean salt flux from ice bottom growth" unit="kg/m2/s" /> 98 <field id="sfxbom" long_name="ice-ocean salt flux from ice bottom melt" unit="kg/m2/s" /> 99 <field id="sfxsum" long_name="ice-ocean salt flux from ice surface melt" unit="kg/m2/s" /> 100 <field id="sfxlam" long_name="ice-ocean salt flux from ice lateral melt" unit="kg/m2/s" /> 101 <field id="sfxsni" long_name="ice-ocean salt flux from snow-ice formation" unit="kg/m2/s" /> 102 <field id="sfxopw" long_name="ice-ocean salt flux from ice formation in open water" unit="kg/m2/s" /> 103 <field id="sfxdyn" long_name="ice-ocean salt flux from ice dynamics (ridging)" unit="kg/m2/s" /> 104 <field id="sfxbri" long_name="ice-ocean salt flux from brines" unit="kg/m2/s" /> 105 <field id="sfxres" long_name="ice-ocean salt flux from undiagnosed processes" unit="kg/m2/s" /> 106 <field id="sfxsub" long_name="ice-ocean salt flux from ice sublimation" unit="kg/m2/s" /> 107 108 <!-- mass fluxes --> 109 <field id="vfxice" long_name="ice-ocean mass flux from ice melt/growth (neg = growth)" unit="kg/m2/s" /> 110 <field id="vfxbog" long_name="ice-ocean mass flux from ice bottom growth" unit="kg/m2/s" /> 111 <field id="vfxbom" long_name="ice-ocean mass flux from ice bottom melt" unit="kg/m2/s" /> 112 <field id="vfxsum" long_name="ice-ocean mass flux from ice surface melt" unit="kg/m2/s" /> 113 <field id="vfxlam" long_name="ice-ocean mass flux from ice lateral melt" unit="kg/m2/s" /> 114 <field id="vfxsni" long_name="ice-ocean mass flux from snow-ice formation" unit="kg/m2/s" /> 115 <field id="vfxopw" long_name="ice-ocean mass flux from ice growth in open water" unit="kg/m2/s" /> 116 <field id="vfxdyn" long_name="ice-ocean mass flux from ice dynamics (ridging)" unit="kg/m2/s" /> 117 <field id="vfxres" long_name="ice-ocean mass flux from undiagnosed processes" unit="kg/m2/s" /> 118 <field id="vfxpnd" long_name="ice-ocean mass flux from ice melt ponds" unit="kg/m2/s" /> 119 <field id="vfxsub" long_name="ice-atm. mass flux from ice sublimation" unit="kg/m2/s" /> 120 <field id="vfxsub_err" long_name="ice-ocean mass flux from unbalance in sublimation (incl. in qt_oce_ai)" unit="kg/m2/s" /> 121 <field id="vfxthin" long_name="ice-ocean mass flux from ice growth in open water + thin ice(20cm)" unit="kg/m2/s" /> 122 123 <field id="vfxsnw" long_name="ice-ocean mass flux from snw melt/growth (neg = growth)" unit="kg/m2/s" /> 124 <field id="vfxsnw_sum" long_name="ice-ocean mass flux from snw surface melt" unit="kg/m2/s" /> 125 <field id="vfxsnw_sni" long_name="ice-ocean mass flux from snow-ice formation" unit="kg/m2/s" /> 126 <field id="vfxsnw_dyn" long_name="ice-ocean mass flux from dynamics (ridging)" unit="kg/m2/s" /> 127 <field id="vfxsnw_sub" long_name="ice-atm. mass flux from snw sublimation" unit="kg/m2/s" /> 128 <field id="vfxsnw_pre" long_name="snw precipitation on ice" unit="kg/m2/s" /> 129 130 <!-- heat fluxes --> 131 <field id="hfxbog" long_name="heat flux used for bottom ice growth (neg.)" unit="W/m2" /> 132 <field id="hfxbom" long_name="heat flux used for bottom ice melt (pos.)" unit="W/m2" /> 133 <field id="hfxsum" long_name="heat flux used for surface ice melt" unit="W/m2" /> 134 <field id="hfxopw" long_name="heat flux used for open water ice formation" unit="W/m2" /> 135 <field id="hfxdif" long_name="heat flux used for ice temperature change" unit="W/m2" /> 136 <field id="hfxsnw" long_name="heat flux used for snow melt" unit="W/m2" /> 137 <field id="hfxerr" long_name="heat flux error after heat diffusion" unit="W/m2" /> 138 <!-- heat fluxes associated with mass exchange --> 139 <field id="hfxthd" long_name="heat fluxes from ice-ocean mass exchange during thermo" unit="W/m2" /> 140 <field id="hfxdyn" long_name="heat fluxes from ice-ocean mass exchange during dynamic" unit="W/m2" /> 141 <field id="hfxres" long_name="heat fluxes from ice-ocean mass exchange during resultant" unit="W/m2" /> 142 <field id="hfxsub" long_name="heat fluxes from ice-atm. mass exchange during sublimation" unit="W/m2" /> 143 <field id="hfxspr" long_name="heat fluxes from ice-atm. mass exchange during snow precip" unit="W/m2" /> 144 145 <field id="hfxsensib" long_name="Net sensible heat flux under sea ice (neg = ice cooling)" standard_name="ice_ocean_heat_flux" unit="W/m2" /> 146 <field id="hfxcndtop" long_name="Net conductive heat flux at the ice surface (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_surface" unit="W/m2" /> 147 <field id="hfxcndbot" long_name="Net conductive heat flux at the ice bottom (neg = ice cooling)" standard_name="conductive_heat_flux_at_sea_ice_bottom" unit="W/m2" /> 148 149 <!-- diags --> 150 <field id="hfxdhc" long_name="Heat content variation in snow and ice (neg = ice cooling)" unit="W/m2" /> 151 152 <!-- sbcssm variables --> 153 <field id="sst_m" unit="degC" /> 154 <field id="sss_m" unit="psu" /> 155 <field id="ssu_m" unit="m/s" /> 156 <field id="ssv_m" unit="m/s" /> 157 <field id="ssh_m" unit="m" /> 158 <field id="e3t_m" unit="m" /> 159 <field id="frq_m" unit="-" /> 160 161 <!-- categories --> 162 <field id="iceconc_cat" long_name="Sea-ice concentration per category" unit="" grid_ref="grid_T_3D_ncatice" /> 163 <field id="icethic_cat" long_name="Sea-ice thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 164 <field id="snwthic_cat" long_name="Snow thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 165 <field id="icesalt_cat" long_name="Sea-Ice Bulk salinity per category" unit="g/kg" grid_ref="grid_T_3D_ncatice" /> 166 <field id="icetemp_cat" long_name="Ice temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 167 <field id="snwtemp_cat" long_name="Snow temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 168 <field id="icettop_cat" long_name="Ice/snow surface temperature per category" unit="degC" grid_ref="grid_T_3D_ncatice" /> 169 <field id="iceapnd_cat" long_name="Ice melt pond concentration per category" unit="%" grid_ref="grid_T_3D_ncatice" /> 170 <field id="icehpnd_cat" long_name="Ice melt pond thickness per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 171 <field id="iceafpnd_cat" long_name="Ice melt pond fraction per category" unit="m" grid_ref="grid_T_3D_ncatice" /> 172 <field id="icemask_cat" long_name="Ice mask (0 if no ice, 1 otherwise) per category" unit="" grid_ref="grid_T_3D_ncatice" /> 173 <field id="iceage_cat" long_name="Ice age per category" unit="days" grid_ref="grid_T_3D_ncatice" /> 174 <field id="icebrv_cat" long_name="Brine volume per category" unit="%" grid_ref="grid_T_3D_ncatice" /> 175 176 <!-- ================= --> 177 <!-- Add-ons for SIMIP --> 178 <!-- ================= --> 179 <field id="icemass_cmip" long_name="Sea-ice mass per area" standard_name="sea_ice_amount" detect_missing_value="true" unit="kg/m2" > icemass * icemask + $missval * (1.-icemask ) </field> 180 <field id="icethic_cmip" long_name="Sea-ice thickness" standard_name="sea_ice_thickness" detect_missing_value="true" unit="m" > icethic * icemask05 + $missval * (1.-icemask05) </field> 181 <field id="snwmass_cmip" long_name="Snow mass per area" standard_name="liquid_water_content_of_surface_snow" detect_missing_value="true" unit="kg/m2" > snwmass * icemask + $missval * (1.-icemask ) </field> 182 <field id="snwthic_cmip" long_name="Snow thickness" standard_name="surface_snow_thickness" detect_missing_value="true" unit="m" > snwthic * icemask05 + $missval * (1.-icemask05) </field> 183 <field id="iceconc_pct" long_name="Sea-ice area fraction in percent" standard_name="sea_ice_area_fraction_in_percent" unit="%" > iceconc * 100. </field> 184 <field id="iceage_cmip" long_name="Age of sea ice" standard_name="age_of_sea_ice" detect_missing_value="true" unit="days" > iceage * icemask15 + $missval * (1.-icemask15) </field> 185 <field id="icesalt_cmip" long_name="Sea ice salinity" standard_name="sea_ice_salinity" detect_missing_value="true" unit="g/kg" > icesalt * icemask + $missval * (1.-icemask ) </field> 186 <field id="icefrb_cmip" long_name="Sea-ice freeboard" standard_name="sea_ice_freeboard" detect_missing_value="true" unit="m" > icefrb * icemask + $missval * (1.-icemask ) </field> 187 188 <!-- heat --> 189 <field id="icettop_cmip" long_name="Surface temperature of sea ice" standard_name="sea_ice_surface_temperature" detect_missing_value="true" unit="K" > (icettop+273.15) * icemask + $missval * (1.-icemask) </field> 190 <field id="icetsni_cmip" long_name="Temperature at snow-ice interface" standard_name="sea_ice_snow_interface_temperature" detect_missing_value="true" unit="K" > (icetsni+273.15) * icemask + $missval * (1.-icemask) </field> 191 <field id="icetbot_cmip" long_name="Temperature at ice-ocean interface" standard_name="sea_ice_bottom_temperature" detect_missing_value="true" unit="K" > (icetbot+273.15) * icemask + $missval * (1.-icemask) </field> 192 <field id="icehc_cmip" long_name="Sea-ice heat content per unit area" standard_name="integral_of_sea_ice_temperature_wrt_depth_expressed_as_heat_content" detect_missing_value="true" unit="J/m2" > icehc * icemask + $missval * (1.-icemask) </field> 193 <field id="snwhc_cmip" long_name="Snow-heat content per unit area" standard_name="thermal_energy_content_of_surface_snow" detect_missing_value="true" unit="J/m2" > snwhc * icemask + $missval * (1.-icemask) </field> 194 195 <!-- fluxes (mass, heat, salt) --> 196 <field id="vfxsum_cmip" long_name="Freshwater flux from sea-ice surface" standard_name="freshwater_flux_from_ice_surface" detect_missing_value="true" unit="kg/m2/s" > vfxsum * icemask + $missval * (1.-icemask) </field> 197 <field id="vfxice_cmip" long_name="Freshwater flux from sea ice" standard_name="freshwater_flux_from_ice" detect_missing_value="true" unit="kg/m2/s" > vfxice * icemask + $missval * (1.-icemask) </field> 198 <field id="hfxsensib_cmip" long_name="Net sensible heat flux under sea ice" standard_name="ice_ocean_heat_flux" detect_missing_value="true" unit="W/m2" > hfxsensib * icemask + $missval * (1.-icemask) </field> 199 <field id="hfxcndtop_cmip" long_name="Net conductive heat flux at the ice surface" standard_name="conductive_heat_flux_at_sea_ice_surface" detect_missing_value="true" unit="W/m2" > hfxcndtop * icemask + $missval * (1.-icemask) </field> 200 <field id="hfxcndbot_cmip" long_name="Net conductive heat flux at the ice bottom" standard_name="conductive_heat_flux_at_sea_ice_bottom" detect_missing_value="true" unit="W/m2" > hfxcndbot * icemask + $missval * (1.-icemask) </field> 201 <field id="sfxice_cmip" long_name="Salt flux from sea ice" standard_name="salt_flux_from_ice" detect_missing_value="true" unit="kg/m2/s" > sfxice * icemask + $missval * (1.-icemask) </field> 202 203 <!-- trends --> 204 <field id="dmithd" long_name="sea-ice mass change from thermodynamics" standard_name="tendency_of_sea_ice_amount_due_to_thermodynamics" unit="kg/m2/s" /> 205 <field id="dmidyn" long_name="sea-ice mass change from dynamics" standard_name="tendency_of_sea_ice_amount_due_to_dynamics" unit="kg/m2/s" /> 206 <field id="dmiopw" long_name="sea-ice mass change through growth in supercooled open water (frazil)" standard_name="tendency_of_sea_ice_amount_due_to_freezing_in_open_water" unit="kg/m2/s" /> 207 <field id="dmibog" long_name="sea-ice mass change through basal growth" standard_name="tendency_of_sea_ice_amount_due_to_congelation_ice_accumulation" unit="kg/m2/s" /> 208 <field id="dmisni" long_name="sea-ice mass change through snow-to-ice conversion" standard_name="tendency_of_sea_ice_amount_due_to_snow_conversion" unit="kg/m2/s" /> 209 <field id="dmtsub" long_name="snow and sea ice mass change through sublimation" standard_name="tendency_of_snow_and_ice_amount_due_to_sublimation" unit="kg/m2/s" /> 210 <field id="dmssub" long_name="sea-ice mass change through evaporation and sublimation" standard_name="water_evaporation_flux" unit="kg/m2/s" /> 211 <field id="dmisub" long_name="snow mass change through evaporation or sublimation" standard_name="surface_snow_sublimation_flux" unit="kg/m2/s" /> 212 <field id="dmisum" long_name="sea-ice mass change through surface melting" standard_name="tendency_of_sea_ice_amount_due_to_surface_melting" unit="kg/m2/s" /> 213 <field id="dmibom" long_name="sea-ice mass change through bottom melting" standard_name="tendency_of_sea_ice_amount_due_to_basal_melting" unit="kg/m2/s" /> 214 <field id="dmsspr" long_name="snow mass change through snow fall" standard_name="snowfall_flux" unit="kg/m2/s" /> 215 <field id="dmsmel" long_name="snow mass change through melt" standard_name="surface_snow_melt_flux" unit="kg/m2/s" /> 216 <field id="dmsdyn" long_name="snow mass change through advection by sea-ice dynamics" standard_name="tendency_of_snow_mass_due_to_sea_ice_dynamics" unit="kg/m2/s" /> 217 <field id="dmsssi" long_name="snow mass change through snow-to-ice conversion" standard_name="tendency_of_snow_mass_due_to_snow_to_ice_conversion" unit="kg/m2/s" /> 218 219 <!-- momentum (rheology) --> 220 <field id="uice_cmip" long_name="X-component of sea ice velocity" standard_name="sea_ice_x_velocity" detect_missing_value="true" unit="m/s" > uice * icemask + $missval * (1.-icemask) </field> 221 <field id="vice_cmip" long_name="Y-component of sea ice velocity" standard_name="sea_ice_y_velocity" detect_missing_value="true" unit="m/s" > vice * icemask + $missval * (1.-icemask) </field> 222 <field id="icevel_cmip" long_name="Sea-ice speed" standard_name="sea_ice_speed" detect_missing_value="true" unit="m/s" > icevel * icemask + $missval * (1.-icemask) </field> 223 <field id="utau_ai_cmip" long_name="X-component of atmospheric stress on sea ice" standard_name="surface_downward_x_stress" detect_missing_value="true" unit="N/m2" > utau_ai * icemask + $missval * (1.-icemask) </field> 224 <field id="vtau_ai_cmip" long_name="Y-component of atmospheric stress on sea ice" standard_name="surface_downward_y_stress" detect_missing_value="true" unit="N/m2" > vtau_ai * icemask + $missval * (1.-icemask) </field> 225 <field id="dssh_dx" long_name="Sea-surface tilt term in force balance (x-component)" standard_name="sea_surface_tilt_force_on_sea_ice_x" unit="N/m2" /> 226 <field id="dssh_dy" long_name="Sea-surface tilt term in force balance (y-component)" standard_name="sea_surface_tilt_force_on_sea_ice_y" unit="N/m2" /> 227 <field id="corstrx" long_name="Coriolis force term in force balance (x-component)" standard_name="coriolis_force_on_sea_ice_x" unit="N/m2" /> 228 <field id="corstry" long_name="Coriolis force term in force balance (y-component)" standard_name="coriolis_force_on_sea_ice_y" unit="N/m2" /> 229 <field id="intstrx" long_name="Internal stress term in force balance (x-component)" standard_name="internal_stress_in_sea_ice_x" unit="N/m2" /> 230 <field id="intstry" long_name="Internal stress term in force balance (y-component)" standard_name="internal_stress_in_sea_ice_y" unit="N/m2" /> 231 232 <!-- momentum (advection) --> 233 <field id="xmtrpice" long_name="X-component of ice mass transport" standard_name="ice_x_transport" unit="kg/s" /> 234 <field id="ymtrpice" long_name="Y-component of ice mass transport" standard_name="ice_y_transport" unit="kg/s" /> 235 <field id="xmtrpsnw" long_name="X-component of snw mass transport" standard_name="snw_x_transport" unit="kg/s" /> 236 <field id="ymtrpsnw" long_name="Y-component of snw mass transport" standard_name="snw_y_transport" unit="kg/s" /> 237 <field id="xatrp" long_name="X-component of ice area transport" standard_name="area_x_transport" unit="m2/s" /> 238 <field id="yatrp" long_name="Y-component of ice area transport" standard_name="area_y_transport" unit="m2/s" /> 239 <field id="xmtrptot" long_name="X-component of sea-ice mass transport" standard_name="sea_ice_x_transport" unit="kg/s" > xmtrpice + xmtrpsnw </field> 240 <field id="ymtrptot" long_name="Y-component of sea-ice mass transport" standard_name="sea_ice_y_transport" unit="kg/s" > ymtrpice + ymtrpsnw </field> 241 242 <!-- categories --> 243 <field id="iceconc_cat_cmip" long_name="Sea-ice area fractions in thickness categories" standard_name="sea_ice_area_fraction_over_categories" detect_missing_value="true" unit="" grid_ref="grid_T_3D_ncatice" > iceconc_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 244 <field id="icethic_cat_cmip" long_name="Sea-ice thickness in thickness categories" standard_name="sea_ice_thickness_over_categories" detect_missing_value="true" unit="m" grid_ref="grid_T_3D_ncatice" > icethic_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 245 <field id="snwthic_cat_cmip" long_name="Snow thickness in thickness categories" standard_name="snow_thickness_over_categories" detect_missing_value="true" unit="m" grid_ref="grid_T_3D_ncatice" > snwthic_cat * icemask_cat + $missval * (1.-icemask_cat) </field> 246 <field id="iceconc_cat_pct_cmip" long_name="Sea-ice area fractions in thickness categories" standard_name="sea_ice_area_fraction_over_categories" detect_missing_value="true" unit="%" grid_ref="grid_T_3D_ncatice" > iceconc_cat*100. * icemask_cat + $missval * (1.-icemask_cat) </field> 247 248 </field_group> 249 250 <!-- scalar variables --> 251 <field_group id="SBC_scalar" grid_ref="grid_T_2D" > 252 <!-- available with ln_icediaout --> 253 <field id="ibgfrcvoltop" long_name="global mean ice/snow forcing at interface ice/snow-atm (volume equivalent ocean volume)" unit="km3" /> 254 <field id="ibgfrcvolbot" long_name="global mean ice/snow forcing at interface ice/snow-ocean (volume equivalent ocean volume)" unit="km3" /> 255 <field id="ibgfrctemtop" long_name="global mean heat on top of ice/snw/ocean-atm " unit="1e20J" /> 256 <field id="ibgfrctembot" long_name="global mean heat below ice (on top of ocean) " unit="1e20J" /> 257 <field id="ibgfrcsal" long_name="global mean ice/snow forcing (salt equivalent ocean volume)" unit="pss*km3" /> 258 <field id="ibgfrchfxtop" long_name="global mean heat flux on top of ice/snw/ocean-atm " unit="W/m2" /> 259 <field id="ibgfrchfxbot" long_name="global mean heat flux below ice (on top of ocean) " unit="W/m2" /> 260 261 <field id="ibgvolume" long_name="drift in ice/snow volume (equivalent ocean volume)" unit="km3" /> 262 <field id="ibgsaltco" long_name="drift in ice salt content (equivalent ocean volume)" unit="pss*km3" /> 263 <field id="ibgheatco" long_name="drift in ice/snow heat content" unit="1e20J" /> 264 <field id="ibgheatfx" long_name="drift in ice/snow heat flux" unit="W/m2" /> 265 266 <field id="ibgvol_tot" long_name="global mean ice volume" unit="km3" /> 267 <field id="sbgvol_tot" long_name="global mean snow volume" unit="km3" /> 268 <field id="ibgarea_tot" long_name="global mean ice area" unit="km2" /> 269 <field id="ibgsalt_tot" long_name="global mean ice salt content" unit="1e-3*km3" /> 270 <field id="ibgheat_tot" long_name="global mean ice heat content" unit="1e20J" /> 271 <field id="sbgheat_tot" long_name="global mean snow heat content" unit="1e20J" /> 272 273 <field id="NH_iceextt" long_name="Sea ice extent North" standard_name="sea_ice_extent_n" unit="1e6_km2" /> 274 <field id="SH_iceextt" long_name="Sea ice extent South" standard_name="sea_ice_extent_s" unit="1e6_km2" /> 275 <field id="NH_icevolu" long_name="Sea ice volume North" standard_name="sea_ice_volume_n" unit="1e3_km3" /> 276 <field id="SH_icevolu" long_name="Sea ice volume South" standard_name="sea_ice_volume_s" unit="1e3_km3" /> 277 <field id="NH_icearea" long_name="Sea ice area North" standard_name="sea_ice_area_n" unit="1e6_km2" /> 278 <field id="SH_icearea" long_name="Sea ice area South" standard_name="sea_ice_area_s" unit="1e6_km2" /> 279 280 <field id="strait_mifl" long_name="Sea ice mass flux through straits" standard_name="sea_ice_mass_transport_across_line" unit="kg/s" grid_ref="grid_4strait" /> 281 <field id="strait_arfl" long_name="Sea ice area flux through straits" standard_name="sea_ice_area_transport_across_line" unit="m2/s" grid_ref="grid_4strait" /> 282 <field id="strait_msfl" long_name="Sea ice snow flux through straits" standard_name="snow_mass_transport_across_line" unit="kg/s" grid_ref="grid_4strait" /> 283 284 </field_group> 262 </field_group> <!-- SBC_2D --> 263 264 <!-- scalar variables --> 265 <field_group id="SBC_0D" grid_ref="grid_1point" > 266 <!-- available with ln_icediaout --> 267 <field id="ibgfrcvoltop" long_name="global mean ice/snow forcing at interface ice/snow-atm (volume equivalent ocean volume)" unit="km3" /> 268 <field id="ibgfrcvolbot" long_name="global mean ice/snow forcing at interface ice/snow-ocean (volume equivalent ocean volume)" unit="km3" /> 269 <field id="ibgfrctemtop" long_name="global mean heat on top of ice/snw/ocean-atm " unit="1e20J" /> 270 <field id="ibgfrctembot" long_name="global mean heat below ice (on top of ocean) " unit="1e20J" /> 271 <field id="ibgfrcsal" long_name="global mean ice/snow forcing (salt equivalent ocean volume)" unit="pss*km3" /> 272 <field id="ibgfrchfxtop" long_name="global mean heat flux on top of ice/snw/ocean-atm " unit="W/m2" /> 273 <field id="ibgfrchfxbot" long_name="global mean heat flux below ice (on top of ocean) " unit="W/m2" /> 274 275 <field id="ibgvolume" long_name="drift in ice/snow volume (equivalent ocean volume)" unit="km3" /> 276 <field id="ibgsaltco" long_name="drift in ice salt content (equivalent ocean volume)" unit="pss*km3" /> 277 <field id="ibgheatco" long_name="drift in ice/snow heat content" unit="1e20J" /> 278 <field id="ibgheatfx" long_name="drift in ice/snow heat flux" unit="W/m2" /> 279 280 <field id="ibgvol_tot" long_name="global mean ice volume" unit="km3" /> 281 <field id="sbgvol_tot" long_name="global mean snow volume" unit="km3" /> 282 <field id="ibgarea_tot" long_name="global mean ice area" unit="km2" /> 283 <field id="ibgsalt_tot" long_name="global mean ice salt content" unit="1e-3*km3" /> 284 <field id="ibgheat_tot" long_name="global mean ice heat content" unit="1e20J" /> 285 <field id="sbgheat_tot" long_name="global mean snow heat content" unit="1e20J" /> 286 287 <field id="NH_iceextt" long_name="Sea ice extent North" standard_name="sea_ice_extent_n" unit="1e6_km2" /> 288 <field id="SH_iceextt" long_name="Sea ice extent South" standard_name="sea_ice_extent_s" unit="1e6_km2" /> 289 <field id="NH_icevolu" long_name="Sea ice volume North" standard_name="sea_ice_volume_n" unit="1e3_km3" /> 290 <field id="SH_icevolu" long_name="Sea ice volume South" standard_name="sea_ice_volume_s" unit="1e3_km3" /> 291 <field id="NH_icearea" long_name="Sea ice area North" standard_name="sea_ice_area_n" unit="1e6_km2" /> 292 <field id="SH_icearea" long_name="Sea ice area South" standard_name="sea_ice_area_s" unit="1e6_km2" /> 293 294 <field id="strait_mifl" long_name="Sea ice mass flux through straits" standard_name="sea_ice_mass_transport_across_line" unit="kg/s" grid_ref="grid_4strait" /> 295 <field id="strait_arfl" long_name="Sea ice area flux through straits" standard_name="sea_ice_area_transport_across_line" unit="m2/s" grid_ref="grid_4strait" /> 296 <field id="strait_msfl" long_name="Sea ice snow flux through straits" standard_name="snow_mass_transport_across_line" unit="kg/s" grid_ref="grid_4strait" /> 297 </field_group> <!-- SBC_0D --> 285 298 286 299 <!-- 287 300 ============================================================================================================ 288 301 --> 289 302 <!-- output variables for my configuration (example) --> 290 303 291 <field_group id="myvarICE" > 292 <field field_ref="icethic" name="sithic" /> 293 <field field_ref="icevolu" name="sivolu" /> 294 <field field_ref="iceconc" name="siconc" /> 295 </field_group> 296 297 <field_group id="ICE_globalbudget"> 298 299 <field field_ref="ibgvol_tot" grid_ref="grid_1point" name="ibgvol_tot" /> 300 <field field_ref="sbgvol_tot" grid_ref="grid_1point" name="sbgvol_tot" /> 301 <field field_ref="ibgarea_tot" grid_ref="grid_1point" name="ibgarea_tot" /> 302 <field field_ref="ibgsalt_tot" grid_ref="grid_1point" name="ibgsalt_tot" /> 303 <field field_ref="ibgheat_tot" grid_ref="grid_1point" name="ibgheat_tot" /> 304 <field field_ref="sbgheat_tot" grid_ref="grid_1point" name="sbgheat_tot" /> 305 306 <field field_ref="ibgvolume" grid_ref="grid_1point" name="ibgvolume" /> 307 <field field_ref="ibgsaltco" grid_ref="grid_1point" name="ibgsaltco" /> 308 <field field_ref="ibgheatco" grid_ref="grid_1point" name="ibgheatco" /> 309 <field field_ref="ibgheatfx" grid_ref="grid_1point" name="ibgheatfx" /> 310 311 <field field_ref="ibgfrcvoltop" grid_ref="grid_1point" name="ibgfrcvoltop" /> 312 <field field_ref="ibgfrcvolbot" grid_ref="grid_1point" name="ibgfrcvolbot" /> 313 <field field_ref="ibgfrctemtop" grid_ref="grid_1point" name="ibgfrctemtop" /> 314 <field field_ref="ibgfrctembot" grid_ref="grid_1point" name="ibgfrctembot" /> 315 <field field_ref="ibgfrcsal" grid_ref="grid_1point" name="ibgfrcsal" /> 316 <field field_ref="ibgfrchfxtop" grid_ref="grid_1point" name="ibgfrchfxtop" /> 317 <field field_ref="ibgfrchfxbot" grid_ref="grid_1point" name="ibgfrchfxbot" /> 318 319 </field_group> 320 321 322 <!--============================--> 323 <!-- SIMIP sea ice field groups --> 324 <!-- Notz et al 2016 --> 325 <!--============================--> 326 327 <!-- SIMIP monthly scalar variables --> 328 <field_group id="SImon_scalars"> 329 <!-- Integrated quantities --> 330 <field field_ref="NH_iceextt" grid_ref="grid_1point" name="siextentn" /> 331 <field field_ref="SH_iceextt" grid_ref="grid_1point" name="siextents" /> 332 <field field_ref="NH_icevolu" grid_ref="grid_1point" name="sivoln" /> 333 <field field_ref="SH_icevolu" grid_ref="grid_1point" name="sivols" /> 334 <field field_ref="NH_icearea" grid_ref="grid_1point" name="siarean" /> 335 <field field_ref="SH_icearea" grid_ref="grid_1point" name="siareas" /> 336 </field_group> 337 338 <!-- SIMIP daily fields --> 339 <field_group id="SIday_fields"> 304 <field_group id="myvarICE" grid_ref="grid_T_2D" > 305 <field field_ref="icethic" name="sithic" /> 306 <field field_ref="icevolu" name="sivolu" /> 307 <field field_ref="iceconc" name="siconc" /> 308 </field_group> 309 310 <field_group id="ICE_globalbudget" grid_ref="grid_1point" > 311 <field field_ref="ibgvol_tot" name="ibgvol_tot" /> 312 <field field_ref="sbgvol_tot" name="sbgvol_tot" /> 313 <field field_ref="ibgarea_tot" name="ibgarea_tot" /> 314 <field field_ref="ibgsalt_tot" name="ibgsalt_tot" /> 315 <field field_ref="ibgheat_tot" name="ibgheat_tot" /> 316 <field field_ref="sbgheat_tot" name="sbgheat_tot" /> 317 318 <field field_ref="ibgvolume" name="ibgvolume" /> 319 <field field_ref="ibgsaltco" name="ibgsaltco" /> 320 <field field_ref="ibgheatco" name="ibgheatco" /> 321 <field field_ref="ibgheatfx" name="ibgheatfx" /> 322 323 <field field_ref="ibgfrcvoltop" name="ibgfrcvoltop" /> 324 <field field_ref="ibgfrcvolbot" name="ibgfrcvolbot" /> 325 <field field_ref="ibgfrctemtop" name="ibgfrctemtop" /> 326 <field field_ref="ibgfrctembot" name="ibgfrctembot" /> 327 <field field_ref="ibgfrcsal" name="ibgfrcsal" /> 328 <field field_ref="ibgfrchfxtop" name="ibgfrchfxtop" /> 329 <field field_ref="ibgfrchfxbot" name="ibgfrchfxbot" /> 330 </field_group> 331 332 333 <!--============================--> 334 <!-- SIMIP sea ice field groups --> 335 <!-- Notz et al 2016 --> 336 <!--============================--> 337 338 <!-- SIMIP monthly scalar variables --> 339 <field_group id="SImon_scalars" grid_ref="grid_1point" > 340 <!-- Integrated quantities --> 341 <field field_ref="NH_iceextt" name="siextentn" /> 342 <field field_ref="SH_iceextt" name="siextents" /> 343 <field field_ref="NH_icevolu" name="sivoln" /> 344 <field field_ref="SH_icevolu" name="sivols" /> 345 <field field_ref="NH_icearea" name="siarean" /> 346 <field field_ref="SH_icearea" name="siareas" /> 347 </field_group> 348 349 <!-- SIMIP daily fields --> 350 <field_group id="SIday_fields" grid_ref="grid_T_2D" > 340 351 <field field_ref="icepres" name="sitimefrac" /> 341 352 <field field_ref="iceconc_pct" name="siconc" /> … … 346 357 <field field_ref="vice_cmip" name="siv" /> 347 358 <field field_ref="icevel_cmip" name="sispeed" /> 348 349 350 351 <field_group id="SImon_fields">359 </field_group> 360 361 <!-- SIMIP monthly fields --> 362 <field_group id="SImon_fields" grid_ref="grid_T_2D" > 352 363 <!-- Sea-ice state variables --> 353 364 <field field_ref="icepres" name="sitimefrac" /> … … 358 369 <field field_ref="snwmass_cmip" name="sisnmass" /> 359 370 <field field_ref="snwthic_cmip" name="sisnthick" /> 360 371 361 372 <!-- additional state variables--> 362 373 <field field_ref="icettop_cmip" name="sitemptop" /> … … 435 446 <field field_ref="icethic_cat_cmip" name="siitdthick" /> 436 447 <field field_ref="snwthic_cat_cmip" name="siitdsnthick" /> 437 438 </field_group> 439 440 </field_definition> 448 </field_group> 449 450 </field_group> <!-- SBC --> 451 452 </field_definition> -
NEMO/branches/2018/dev_r9866_HPC_03_globcom/cfgs/SHARED/field_def_nemo-oce.xml
r9812 r10289 8 8 ============================================================================================================ 9 9 --> 10 <field_definition level="1" prec="4" operation="average" enabled=".TRUE." default_value="1.e20" > <!-- time step automaticaly defined -->10 <field_definition level="1" prec="4" operation="average" enabled=".TRUE." default_value="1.e20" > <!-- time step automaticaly defined --> 11 11 12 12 <!-- … … 19 19 20 20 <field_group id="grid_T" grid_ref="grid_T_2D" > 21 <field id="e3t" long_name="T-cell thickness" standard_name="cell_thickness" unit="m" grid_ref="grid_T_3D"/>22 <field id="e3t_surf" long_name="T-cell thickness" field_ref="e3t" standard_name="cell_thickness"unit="m" grid_ref="grid_T_SFC"/>23 <field id="e3t_0" long_name="Initial T-cell thickness" standard_name="ref_cell_thickness" unit="m" grid_ref="grid_T_3D"/>24 25 <field id="toce" long_name="temperature"standard_name="sea_water_potential_temperature" unit="degC" grid_ref="grid_T_3D"/>26 <field id="toce_e3t" long_name="temperature (thickness weighted)"unit="degC" grid_ref="grid_T_3D" > toce * e3t </field >27 <field id="soce" long_name="salinity"standard_name="sea_water_practical_salinity" unit="1e-3" grid_ref="grid_T_3D"/>28 <field id="soce_e3t" long_name="salinity (thickness weighted)"unit="1e-3" grid_ref="grid_T_3D" > soce * e3t </field >29 30 31 <field id="ahmt_2d" long_name=" surface t-eddy viscosity coefficient" unit="m2/s or m4/s"/>32 <field id="ahmt_3d" long_name=" 3D t-eddy viscosity coefficient" unit="m2/s or m4/s"grid_ref="grid_T_3D"/>33 34 <field id="sst" long_name="sea surface temperature"standard_name="sea_surface_temperature" unit="degC" />35 <field id="sst2" long_name="square of sea surface temperature"standard_name="square_of_sea_surface_temperature" unit="degC2" > sst * sst </field >36 <field id="sstmax" long_name="max of sea surface temperature" field_ref="sst" operation="maximum"/>37 <field id="sstmin" long_name="min of sea surface temperature" field_ref="sst" operation="minimum"/>38 <field id="sstgrad" long_name="module of sst gradient"unit="degC/m" />39 <field id="sstgrad2" long_name="square of module of sst gradient"unit="degC2/m2" />40 <field id="sbt" long_name="sea bottom temperature"unit="degC" />41 <field id="tosmint" long_name="vertical integral of temperature times density"standard_name="integral_wrt_depth_of_product_of_density_and_potential_temperature" unit="(kg m2) degree_C" />42 <field id="sst_wl" long_name="Delta SST of warm layer"unit="degC" />43 <field id="sst_cs" long_name="Delta SST of cool skin"unit="degC" />44 <field id="temp_3m" long_name="temperature at 3m"unit="degC" />45 46 <field id="sss" long_name="sea surface salinity" standard_name="sea_surface_salinity" unit="1e-3"/>47 <field id="sss2" long_name="square of sea surface salinity" unit="1e-6"> sss * sss </field >48 <field id="sssmax" long_name="max of sea surface salinity" field_ref="sss" operation="maximum"/>49 <field id="sssmin" long_name="min of sea surface salinity" field_ref="sss" operation="minimum"/>50 <field id="sbs" long_name="sea bottom salinity" unit="0.001"/>51 <field id="somint" long_name="vertical integral of salinity times density"standard_name="integral_wrt_depth_of_product_of_density_and_salinity" unit="(kg m2) x (1e-3)" />52 53 <field id="taubot" long_name="bottom stress module" unit="N/m2"/>54 55 <field id="ssh" long_name="sea surface height"standard_name="sea_surface_height_above_geoid" unit="m" />56 <field id="ssh2" long_name="square of sea surface height"standard_name="square_of_sea_surface_height_above_geoid" unit="m2" > ssh * ssh </field >57 <field id="wetdep" long_name="wet depth" standard_name="wet_depth"unit="m" />58 <field id="sshmax" long_name="max of sea surface height" field_ref="ssh" operation="maximum"/>59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 <field id="botpres" long_name="Sea Water Pressure at Sea Floor" standard_name="sea_water_pressure_at_sea_floor"unit="dbar" />97 <field id="sshdyn" long_name="dynamic sea surface height" standard_name="dynamic_sea_surface_height_above_geoid" unit="m"/>98 <field id="sshdyn2" long_name="square of dynamic sea surface height" standard_name="dynamic_sea_surface_height_above_geoid_squared" unit="m2"> sshdyn * sshdyn </field>99 <field id="tnpeo" long_name="Tendency of ocean potential energy content" unit="W/m2"/>100 101 102 103 104 </field_group> 21 <field id="e3t" long_name="T-cell thickness" standard_name="cell_thickness" unit="m" grid_ref="grid_T_3D" /> 22 <field id="e3t_surf" long_name="T-cell thickness" field_ref="e3t" standard_name="cell_thickness" unit="m" grid_ref="grid_T_SFC"/> 23 <field id="e3t_0" long_name="Initial T-cell thickness" standard_name="ref_cell_thickness" unit="m" grid_ref="grid_T_3D" /> 24 25 <field id="toce" long_name="temperature" standard_name="sea_water_potential_temperature" unit="degC" grid_ref="grid_T_3D"/> 26 <field id="toce_e3t" long_name="temperature (thickness weighted)" unit="degC" grid_ref="grid_T_3D" > toce * e3t </field > 27 <field id="soce" long_name="salinity" standard_name="sea_water_practical_salinity" unit="1e-3" grid_ref="grid_T_3D"/> 28 <field id="soce_e3t" long_name="salinity (thickness weighted)" unit="1e-3" grid_ref="grid_T_3D" > soce * e3t </field > 29 30 <!-- t-eddy viscosity coefficients (ldfdyn) --> 31 <field id="ahmt_2d" long_name=" surface t-eddy viscosity coefficient" unit="m2/s or m4/s" /> 32 <field id="ahmt_3d" long_name=" 3D t-eddy viscosity coefficient" unit="m2/s or m4/s" grid_ref="grid_T_3D"/> 33 34 <field id="sst" long_name="sea surface temperature" standard_name="sea_surface_temperature" unit="degC" /> 35 <field id="sst2" long_name="square of sea surface temperature" standard_name="square_of_sea_surface_temperature" unit="degC2" > sst * sst </field > 36 <field id="sstmax" long_name="max of sea surface temperature" field_ref="sst" operation="maximum" /> 37 <field id="sstmin" long_name="min of sea surface temperature" field_ref="sst" operation="minimum" /> 38 <field id="sstgrad" long_name="module of sst gradient" unit="degC/m" /> 39 <field id="sstgrad2" long_name="square of module of sst gradient" unit="degC2/m2" /> 40 <field id="sbt" long_name="sea bottom temperature" unit="degC" /> 41 <field id="tosmint" long_name="vertical integral of temperature times density" standard_name="integral_wrt_depth_of_product_of_density_and_potential_temperature" unit="(kg m2) degree_C" /> 42 <field id="sst_wl" long_name="Delta SST of warm layer" unit="degC" /> 43 <field id="sst_cs" long_name="Delta SST of cool skin" unit="degC" /> 44 <field id="temp_3m" long_name="temperature at 3m" unit="degC" /> 45 46 <field id="sss" long_name="sea surface salinity" standard_name="sea_surface_salinity" unit="1e-3" /> 47 <field id="sss2" long_name="square of sea surface salinity" unit="1e-6" > sss * sss </field > 48 <field id="sssmax" long_name="max of sea surface salinity" field_ref="sss" operation="maximum" /> 49 <field id="sssmin" long_name="min of sea surface salinity" field_ref="sss" operation="minimum" /> 50 <field id="sbs" long_name="sea bottom salinity" unit="0.001" /> 51 <field id="somint" long_name="vertical integral of salinity times density" standard_name="integral_wrt_depth_of_product_of_density_and_salinity" unit="(kg m2) x (1e-3)" /> 52 53 <field id="taubot" long_name="bottom stress module" unit="N/m2" /> 54 55 <field id="ssh" long_name="sea surface height" standard_name="sea_surface_height_above_geoid" unit="m" /> 56 <field id="ssh2" long_name="square of sea surface height" standard_name="square_of_sea_surface_height_above_geoid" unit="m2" > ssh * ssh </field > 57 <field id="wetdep" long_name="wet depth" standard_name="wet_depth" unit="m" /> 58 <field id="sshmax" long_name="max of sea surface height" field_ref="ssh" operation="maximum" /> 59 60 <field id="mldkz5" long_name="Turbocline depth (Kz = 5e-4)" standard_name="ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity" unit="m" /> 61 <field id="mldr10_1" long_name="Mixed Layer Depth (dsigma = 0.01 wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> 62 <field id="mldr10_1max" long_name="Max of Mixed Layer Depth (dsigma = 0.01 wrt 10m)" field_ref="mldr10_1" operation="maximum" /> 63 <field id="mldr10_1min" long_name="Min of Mixed Layer Depth (dsigma = 0.01 wrt 10m)" field_ref="mldr10_1" operation="minimum" /> 64 <field id="heatc" long_name="Heat content vertically integrated" standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content" unit="J/m2" /> 65 <field id="saltc" long_name="Salt content vertically integrated" unit="1e-3*kg/m2" /> 66 67 <!-- EOS --> 68 <field id="alpha" long_name="thermal expansion" unit="degC-1" grid_ref="grid_T_3D" /> 69 <field id="beta" long_name="haline contraction" unit="1e3" grid_ref="grid_T_3D" /> 70 <field id="bn2" long_name="squared Brunt-Vaisala frequency" unit="s-1" grid_ref="grid_T_3D" /> 71 <field id="rhop" long_name="potential density (sigma0)" standard_name="sea_water_sigma_theta" unit="kg/m3" grid_ref="grid_T_3D" /> 72 73 <!-- Energy - horizontal divergence --> 74 <field id="eken" long_name="kinetic energy" standard_name="specific_kinetic_energy_of_sea_water" unit="m2/s2" grid_ref="grid_T_3D" /> 75 <field id="hdiv" long_name="horizontal divergence" unit="s-1" grid_ref="grid_T_3D" /> 76 77 <!-- variables available with MLE --> 78 <field id="Lf_NHpf" long_name="MLE: Lf = N H / f" unit="m" /> 79 80 <!-- next variables available with key_diahth --> 81 <field id="mlddzt" long_name="Thermocline Depth (depth of max dT/dz)" standard_name="depth_at_maximum_upward_derivative_of_sea_water_potential_temperature" unit="m" /> 82 <field id="mldr10_3" long_name="Mixed Layer Depth (dsigma = 0.03 wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> 83 <field id="mldr0_1" long_name="Mixed Layer Depth (dsigma = 0.01 wrt sfc)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> 84 <field id="mldr0_3" long_name="Mixed Layer Depth (dsigma = 0.03 wrt sfc)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> 85 <field id="mld_dt02" long_name="Mixed Layer Depth (|dT| = 0.2 wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_temperature" unit="m" /> 86 <field id="topthdep" long_name="Top of Thermocline Depth (dT = -0.2 wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_temperature" unit="m" /> 87 <field id="pycndep" long_name="Pycnocline Depth (dsigma[dT=-0.2] wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> 88 <field id="BLT" long_name="Barrier Layer Thickness" unit="m" > topthdep - pycndep </field> 89 <field id="tinv" long_name="Max of vertical invertion of temperature" unit="degC" /> 90 <field id="depti" long_name="Depth of max. vert. inv. of temperature" unit="m" /> 91 <field id="20d" long_name="Depth of 20C isotherm" standard_name="depth_of_isosurface_of_sea_water_potential_temperature" unit="m" axis_ref="iax_20C" /> 92 <field id="28d" long_name="Depth of 28C isotherm" standard_name="depth_of_isosurface_of_sea_water_potential_temperature" unit="m" axis_ref="iax_28C" /> 93 <field id="hc300" long_name="Heat content 0-300m" standard_name="integral_of_sea_water_potential_temperature_wrt_depth_expressed_as_heat_content" unit="J/m2" /> 94 95 <!-- variables available with diaar5 --> 96 <field id="botpres" long_name="Sea Water Pressure at Sea Floor" standard_name="sea_water_pressure_at_sea_floor" unit="dbar" /> 97 <field id="sshdyn" long_name="dynamic sea surface height" standard_name="dynamic_sea_surface_height_above_geoid" unit="m" /> 98 <field id="sshdyn2" long_name="square of dynamic sea surface height" standard_name="dynamic_sea_surface_height_above_geoid_squared" unit="m2" > sshdyn * sshdyn </field> 99 <field id="tnpeo" long_name="Tendency of ocean potential energy content" unit="W/m2" /> 100 101 <!-- variables available ln_linssh=.FALSE. --> 102 <field id="tpt_dep" long_name="T-point depth" standard_name="depth_below_geoid" unit="m" grid_ref="grid_T_3D" /> 103 <field id="e3tdef" long_name="T-cell thickness deformation" unit="%" grid_ref="grid_T_3D" /> 104 </field_group> <!-- grid_T --> 105 105 106 106 <!-- Tides --> 107 107 108 108 <field_group id="Tides_T" grid_ref="grid_T_2D" operation="once" > 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 109 <!-- tidal composante --> 110 <field id="M2x" long_name="M2 Elevation harmonic real part " unit="m" /> 111 <field id="M2y" long_name="M2 Elevation harmonic imaginary part" unit="m" /> 112 <field id="S2x" long_name="S2 Elevation harmonic real part " unit="m" /> 113 <field id="S2y" long_name="S2 Elevation harmonic imaginary part" unit="m" /> 114 <field id="N2x" long_name="N2 Elevation harmonic real part " unit="m" /> 115 <field id="N2y" long_name="N2 Elevation harmonic imaginary part" unit="m" /> 116 <field id="K1x" long_name="K1 Elevation harmonic real part " unit="m" /> 117 <field id="K1y" long_name="K1 Elevation harmonic imaginary part" unit="m" /> 118 <field id="O1x" long_name="O1 Elevation harmonic real part " unit="m" /> 119 <field id="O1y" long_name="O1 Elevation harmonic imaginary part" unit="m" /> 120 <field id="Q1x" long_name="Q1 Elevation harmonic real part " unit="m" /> 121 <field id="Q1y" long_name="Q1 Elevation harmonic imaginary part" unit="m" /> 122 <field id="M4x" long_name="M4 Elevation harmonic real part " unit="m" /> 123 <field id="M4y" long_name="M4 Elevation harmonic imaginary part" unit="m" /> 124 <field id="K2x" long_name="K2 Elevation harmonic real part " unit="m" /> 125 <field id="K2y" long_name="K2 Elevation harmonic imaginary part" unit="m" /> 126 <field id="P1x" long_name="P1 Elevation harmonic real part " unit="m" /> 127 <field id="P1y" long_name="P1 Elevation harmonic imaginary part" unit="m" /> 128 <field id="Mfx" long_name="Mf Elevation harmonic real part " unit="m" /> 129 <field id="Mfy" long_name="Mf Elevation harmonic imaginary part" unit="m" /> 130 <field id="Mmx" long_name="Mm Elevation harmonic real part " unit="m" /> 131 <field id="Mmy" long_name="Mm Elevation harmonic imaginary part" unit="m" /> 132 132 </field_group> 133 133 134 134 <field_group id="Tides_U" grid_ref="grid_U_2D" operation="once" > 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 135 <field id="M2x_u" long_name="M2 current barotrope along i-axis harmonic real part " unit="m/s" /> 136 <field id="M2y_u" long_name="M2 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 137 <field id="S2x_u" long_name="S2 current barotrope along i-axis harmonic real part " unit="m/s" /> 138 <field id="S2y_u" long_name="S2 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 139 <field id="N2x_u" long_name="N2 current barotrope along i-axis harmonic real part " unit="m/s" /> 140 <field id="N2y_u" long_name="N2 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 141 <field id="K1x_u" long_name="K1 current barotrope along i-axis harmonic real part " unit="m/s" /> 142 <field id="K1y_u" long_name="K1 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 143 <field id="O1x_u" long_name="O1 current barotrope along i-axis harmonic real part " unit="m/s" /> 144 <field id="O1y_u" long_name="O1 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 145 <field id="Q1x_u" long_name="Q1 current barotrope along i-axis harmonic real part " unit="m/s" /> 146 <field id="Q1y_u" long_name="Q1 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 147 <field id="M4x_u" long_name="M4 current barotrope along i-axis harmonic real part " unit="m/s" /> 148 <field id="M4y_u" long_name="M4 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 149 <field id="K2x_u" long_name="K2 current barotrope along i-axis harmonic real part " unit="m/s" /> 150 <field id="K2y_u" long_name="K2 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 151 <field id="P1x_u" long_name="P1 current barotrope along i-axis harmonic real part " unit="m/s" /> 152 <field id="P1y_u" long_name="P1 current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 153 <field id="Mfx_u" long_name="Mf current barotrope along i-axis harmonic real part " unit="m/s" /> 154 <field id="Mfy_u" long_name="Mf current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 155 <field id="Mmx_u" long_name="Mm current barotrope along i-axis harmonic real part " unit="m/s" /> 156 <field id="Mmy_u" long_name="Mm current barotrope along i-axis harmonic imaginary part " unit="m/s" /> 157 157 </field_group> 158 158 159 159 <field_group id="Tides_V" grid_ref="grid_V_2D" operation="once" > 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 160 <field id="M2x_v" long_name="M2 current barotrope along j-axis harmonic real part " unit="m/s" /> 161 <field id="M2y_v" long_name="M2 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 162 <field id="S2x_v" long_name="S2 current barotrope along j-axis harmonic real part " unit="m/s" /> 163 <field id="S2y_v" long_name="S2 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 164 <field id="N2x_v" long_name="N2 current barotrope along j-axis harmonic real part " unit="m/s" /> 165 <field id="N2y_v" long_name="N2 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 166 <field id="K1x_v" long_name="K1 current barotrope along j-axis harmonic real part " unit="m/s" /> 167 <field id="K1y_v" long_name="K1 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 168 <field id="O1x_v" long_name="O1 current barotrope along j-axis harmonic real part " unit="m/s" /> 169 <field id="O1y_v" long_name="O1 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 170 <field id="Q1x_v" long_name="Q1 current barotrope along j-axis harmonic real part " unit="m/s" /> 171 <field id="Q1y_v" long_name="Q1 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 172 <field id="M4x_v" long_name="M4 current barotrope along j-axis harmonic real part " unit="m/s" /> 173 <field id="M4y_v" long_name="M4 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 174 <field id="K2x_v" long_name="K2 current barotrope along j-axis harmonic real part " unit="m/s" /> 175 <field id="K2y_v" long_name="K2 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 176 <field id="P1x_v" long_name="P1 current barotrope along j-axis harmonic real part " unit="m/s" /> 177 <field id="P1y_v" long_name="P1 current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 178 <field id="Mfx_v" long_name="Mf current barotrope along j-axis harmonic real part " unit="m/s" /> 179 <field id="Mfy_v" long_name="Mf current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 180 <field id="Mmx_v" long_name="Mm current barotrope along j-axis harmonic real part " unit="m/s" /> 181 <field id="Mmy_v" long_name="Mm current barotrope along j-axis harmonic imaginary part " unit="m/s" /> 182 182 </field_group> 183 183 … … 185 185 186 186 <field_group id="OSMOSIS_T" grid_ref="grid_T_2D"> 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 187 <field id="zwth0" long_name="surface non-local temperature flux" unit="deg m/s" /> 188 <field id="zws0" long_name="surface non-local salinity flux" unit="psu m/s" /> 189 <field id="hbl" long_name="boundary layer depth" unit="m" /> 190 <field id="hbli" long_name="initial boundary layer depth" unit="m" /> 191 <field id="dstokes" long_name="stokes drift depth scale" unit="m" /> 192 <field id="zustke" long_name="magnitude of stokes drift at T-points" unit="m/s" /> 193 <field id="zwstrc" long_name="convective velocity scale" unit="m/s" /> 194 <field id="zwstrl" long_name="langmuir velocity scale" unit="m/s" /> 195 <field id="zustar" long_name="friction velocity" unit="m/s" /> 196 <field id="zhbl" long_name="boundary layer depth" unit="m" /> 197 <field id="zhml" long_name="mixed layer depth" unit="m" /> 198 <field id="wind_wave_abs_power" long_name="\rho |U_s| x u*^2" unit="mW" /> 199 <field id="wind_wave_power" long_name="U_s \dot tau" unit="mW" /> 200 <field id="wind_power" long_name="\rho u*^3" unit="mW" /> 201 202 <!-- extra OSMOSIS diagnostics --> 203 <field id="zwthav" long_name="av turb flux of T in ml" unit="deg m/s" /> 204 <field id="zt_ml" long_name="av T in ml" unit="deg" /> 205 <field id="zwth_ent" long_name="entrainment turb flux of T" unit="deg m/s" /> 206 <field id="zhol" long_name="Hoenekker number" unit="#" /> 207 <field id="zdh" long_name="Pycnocline depth - grid" unit=" m" /> 208 208 </field_group> 209 209 210 210 <field_group id="OSMOSIS_W" grid_ref="grid_W_3D" operation="instant" > 211 212 213 211 <field id="ghamt" long_name="non-local temperature flux" unit="deg m/s" /> 212 <field id="ghams" long_name="non-local salinity flux" unit="psu m/s" /> 213 <field id="zdtdz_pyc" long_name="Pycnocline temperature gradient" unit=" deg/m" /> 214 214 </field_group> 215 215 216 216 <field_group id="OSMOSIS_U" grid_ref="grid_U_2D" > 217 218 217 <field id="ghamu" long_name="non-local u-momentum flux" grid_ref="grid_U_3D" unit="m^2/s^2" /> 218 <field id="us_x" long_name="i component of Stokes drift" unit="m/s" /> 219 219 </field_group> 220 220 221 221 <field_group id="OSMOSIS_V" grid_ref="grid_V_2D" > 222 223 222 <field id="ghamv" long_name="non-local v-momentum flux" grid_ref="grid_V_3D" unit="m^2/s^2" /> 223 <field id="us_y" long_name="j component of Stokes drift" unit="m/s" /> 224 224 </field_group> 225 225 226 226 <!-- SBC --> 227 228 <field_group id="SBC" grid_ref="grid_T_2D" > <!-- time step automaticaly defined based on nn_fsbc --> 229 <field id="empmr" long_name="Net Upward Water Flux" standard_name="water_flux_out_of_sea_ice_and_sea_water" unit="kg/m2/s" /> 230 <field id="empbmr" long_name="Net Upward Water Flux at pre. tstep" standard_name="water_flux_out_of_sea_ice_and_sea_water" unit="kg/m2/s" /> 231 <field id="emp_oce" long_name="Evap minus Precip over ocean" standard_name="evap_minus_precip_over_sea_water" unit="kg/m2/s" /> 232 <field id="emp_ice" long_name="Evap minus Precip over ice" standard_name="evap_minus_precip_over_sea_ice" unit="kg/m2/s" /> 233 <field id="saltflx" long_name="Downward salt flux" unit="1e-3/m2/s" /> 234 <field id="fmmflx" long_name="Water flux due to freezing/melting" unit="kg/m2/s" /> 235 <field id="snowpre" long_name="Snow precipitation" standard_name="snowfall_flux" unit="kg/m2/s" /> 236 <field id="runoffs" long_name="River Runoffs" standard_name="water_flux_into_sea_water_from_rivers" unit="kg/m2/s" /> 237 <field id="precip" long_name="Total precipitation" standard_name="precipitation_flux" unit="kg/m2/s" /> 238 239 <field id="qt" long_name="Net Downward Heat Flux" standard_name="surface_downward_heat_flux_in_sea_water" unit="W/m2" /> 240 <field id="qns" long_name="non solar Downward Heat Flux" unit="W/m2" /> 241 <field id="qsr" long_name="Shortwave Radiation" standard_name="net_downward_shortwave_flux_at_sea_water_surface" unit="W/m2" /> 242 <field id="qsr3d" long_name="Shortwave Radiation 3D distribution" standard_name="downwelling_shortwave_flux_in_sea_water" unit="W/m2" grid_ref="grid_T_3D" /> 243 <field id="qrp" long_name="Surface Heat Flux: Damping" standard_name="heat_flux_into_sea_water_due_to_newtonian_relaxation" unit="W/m2" /> 244 <field id="erp" long_name="Surface Water Flux: Damping" standard_name="water_flux_out_of_sea_water_due_to_newtonian_relaxation" unit="kg/m2/s" /> 245 <field id="taum" long_name="wind stress module" standard_name="magnitude_of_surface_downward_stress" unit="N/m2" /> 246 <field id="wspd" long_name="wind speed module" standard_name="wind_speed" unit="m/s" /> 247 248 <!-- * variable relative to atmospheric pressure forcing : available with ln_apr_dyn --> 249 <field id="ssh_ib" long_name="Inverse barometer sea surface height" standard_name="sea_surface_height_correction_due_to_air_pressure_at_low_frequency" unit="m" /> 250 251 <!-- * variable related to ice shelf forcing * --> 252 <field id="fwfisf" long_name="Ice shelf melting" unit="kg/m2/s" /> 253 <field id="fwfisf3d" long_name="Ice shelf melting" unit="kg/m2/s" grid_ref="grid_T_3D" /> 254 <field id="qlatisf" long_name="Ice shelf latent heat flux" unit="W/m2" /> 255 <field id="qlatisf3d" long_name="Ice shelf latent heat flux" unit="W/m2" grid_ref="grid_T_3D" /> 256 <field id="qhcisf" long_name="Ice shelf heat content flux" unit="W/m2" /> 257 <field id="qhcisf3d" long_name="Ice shelf heat content flux" unit="W/m2" grid_ref="grid_T_3D" /> 258 <field id="isfgammat" long_name="transfert coefficient for isf (temperature) " unit="m/s" /> 259 <field id="isfgammas" long_name="transfert coefficient for isf (salinity) " unit="m/s" /> 260 <field id="stbl" long_name="salinity in the Losh tbl " unit="PSU" /> 261 <field id="ttbl" long_name="temperature in the Losh tbl " unit="C" /> 262 <field id="utbl" long_name="zonal current in the Losh tbl at T point " unit="m/s" /> 263 <field id="vtbl" long_name="merid current in the Losh tbl at T point " unit="m/s" /> 264 <field id="thermald" long_name="thermal driving of ice shelf melting " unit="C" /> 265 <field id="tfrz" long_name="top freezing point (used to compute melt) " unit="C" /> 266 <field id="tinsitu" long_name="top insitu temperature (used to cmpt melt) " unit="C" /> 267 <field id="ustar" long_name="ustar at T point used in ice shelf melting " unit="m/s" /> 268 269 <!-- *_oce variables available with ln_blk_clio or ln_blk_core --> 270 <field id="qlw_oce" long_name="Longwave Downward Heat Flux over open ocean" standard_name="surface_net_downward_longwave_flux" unit="W/m2" /> 271 <field id="qsb_oce" long_name="Sensible Downward Heat Flux over open ocean" standard_name="surface_downward_sensible_heat_flux" unit="W/m2" /> 272 <field id="qla_oce" long_name="Latent Downward Heat Flux over open ocean" standard_name="surface_downward_latent_heat_flux" unit="W/m2" /> 273 <field id="qt_oce" long_name="total flux at ocean surface" standard_name="surface_downward_heat_flux_in_sea_water" unit="W/m2" /> 274 <field id="qsr_oce" long_name="solar heat flux at ocean surface" standard_name="net_downward_shortwave_flux_at_sea_water_surface" unit="W/m2" /> 275 <field id="qns_oce" long_name="non-solar heat flux at ocean surface (including E-P)" unit="W/m2" /> 276 <field id="qemp_oce" long_name="Downward Heat Flux from E-P over open ocean" unit="W/m2" /> 277 <field id="taum_oce" long_name="wind stress module over open ocean" standard_name="magnitude_of_surface_downward_stress" unit="N/m2" /> 278 279 <!-- available key_oasis3 --> 280 <field id="snow_ao_cea" long_name="Snow over ice-free ocean (cell average)" standard_name="snowfall_flux" unit="kg/m2/s" /> 281 <field id="snow_ai_cea" long_name="Snow over sea-ice (cell average)" standard_name="snowfall_flux" unit="kg/m2/s" /> 282 <field id="subl_ai_cea" long_name="Sublimation over sea-ice (cell average)" standard_name="surface_snow_and_ice_sublimation_flux" unit="kg/m2/s" /> 283 <field id="icealb_cea" long_name="Ice albedo (cell average)" standard_name="sea_ice_albedo" unit="1" /> 284 <field id="calving_cea" long_name="Calving" standard_name="water_flux_into_sea_water_from_icebergs" unit="kg/m2/s" /> 285 <field id="iceberg_cea" long_name="Iceberg" standard_name="water_flux_into_sea_water_from_icebergs" unit="kg/m2/s" /> 286 <field id="iceshelf_cea" long_name="Iceshelf" standard_name="water_flux_into_sea_water_from_iceshelf" unit="kg/m2/s" /> 287 288 289 <!-- available if key_oasis3 + conservative method --> 290 <field id="rain" long_name="Liquid precipitation" standard_name="rainfall_flux" unit="kg/m2/s" /> 291 <field id="evap_ao_cea" long_name="Evaporation over ice-free ocean (cell average)" standard_name="water_evaporation_flux" unit="kg/m2/s" /> 292 <field id="isnwmlt_cea" long_name="Snow over Ice melting (cell average)" standard_name="surface_snow_melt_flux" unit="kg/m2/s" /> 293 <field id="fsal_virt_cea" long_name="Virtual salt flux due to ice formation (cell average)" standard_name="virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics" unit="kg/m2/s" /> 294 <field id="fsal_real_cea" long_name="Real salt flux due to ice formation (cell average)" standard_name="downward_sea_ice_basal_salt_flux" unit="kg/m2/s" /> 295 <field id="hflx_rain_cea" long_name="heat flux due to rainfall" standard_name="temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water" unit="W/m2" /> 296 <field id="hflx_evap_cea" long_name="heat flux due to evaporation" standard_name="temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water" unit="W/m2" /> 297 <field id="hflx_snow_cea" long_name="heat flux due to snow falling" standard_name="heat_flux_onto_ocean_and_ice_due_to_snow_thermodynamics" unit="W/m2" /> 298 <field id="hflx_snow_ai_cea" long_name="heat flux due to snow falling over ice" standard_name="heat_flux_onto_ice_due_to_snow_thermodynamics" unit="W/m2" /> 299 <field id="hflx_snow_ao_cea" long_name="heat flux due to snow falling over ice-free ocean" standard_name="heat_flux_onto_sea_water_due_to_snow_thermodynamics" unit="W/m2" /> 300 <field id="hflx_ice_cea" long_name="heat flux due to ice thermodynamics" standard_name="heat_flux_into_sea_water_due_to_sea_ice_thermodynamics" unit="W/m2" /> 301 <field id="hflx_rnf_cea" long_name="heat flux due to runoffs" standard_name="temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water" unit="W/m2" /> 302 <field id="hflx_cal_cea" long_name="heat flux due to calving" standard_name="heat_flux_into_sea_water_due_to_calving" unit="W/m2" /> 303 <field id="hflx_icb_cea" long_name="heat flux due to iceberg" standard_name="heat_flux_into_sea_water_due_to_icebergs" unit="W/m2" /> 304 <field id="hflx_isf_cea" long_name="heat flux due to iceshelf" standard_name="heat_flux_into_sea_water_due_to_iceshelf" unit="W/m2" /> 305 <field id="bicemel_cea" long_name="Rate of Melt at Sea Ice Base (cell average)" standard_name="tendency_of_sea_ice_amount_due_to_basal_melting" unit="kg/m2/s" /> 306 <field id="licepro_cea" long_name="Lateral Sea Ice Growth Rate (cell average)" standard_name="tendency_of_sea_ice_amount_due_to_lateral_growth_of_ice_floes" unit="kg/m2/s" /> 307 <field id="snowmel_cea" long_name="Snow Melt Rate (cell average)" standard_name="surface_snow_melt_flux" unit="kg/m2/s" /> 308 <field id="sntoice_cea" long_name="Snow-Ice Formation Rate (cell average)" standard_name="tendency_of_sea_ice_amount_due_to_snow_conversion" unit="kg/m2/s" /> 309 <field id="ticemel_cea" long_name="Rate of Melt at Upper Surface of Sea Ice (cell average)" standard_name="tendency_of_sea_ice_amount_due_to_surface_melting" unit="kg/m2/s" /> 310 311 <!-- ice field (nn_ice=1) --> 312 <field id="ice_cover" long_name="Ice fraction" standard_name="sea_ice_area_fraction" unit="1" /> 313 314 <!-- dilution --> 315 <field id="emp_x_sst" long_name="Concentration/Dilution term on SST" unit="kg*degC/m2/s" /> 316 <field id="emp_x_sss" long_name="Concentration/Dilution term on SSS" unit="kg*1e-3/m2/s" /> 317 <field id="rnf_x_sst" long_name="Runoff term on SST" unit="kg*degC/m2/s" /> 318 <field id="rnf_x_sss" long_name="Runoff term on SSS" unit="kg*1e-3/m2/s" /> 319 320 <!-- sbcssm variables --> 321 <field id="sst_m" unit="degC" /> 322 <field id="sss_m" unit="psu" /> 323 <field id="ssu_m" unit="m/s" /> 324 <field id="ssv_m" unit="m/s" /> 325 <field id="ssh_m" unit="m" /> 326 <field id="e3t_m" unit="m" /> 327 <field id="frq_m" unit="-" /> 328 329 </field_group> 227 <field_group id="SBC" > <!-- time step automaticaly defined based on nn_fsbc --> 228 229 <field_group id="SBC_2D" grid_ref="grid_T_2D" > 230 231 <field id="empmr" long_name="Net Upward Water Flux" standard_name="water_flux_out_of_sea_ice_and_sea_water" unit="kg/m2/s" /> 232 <field id="empbmr" long_name="Net Upward Water Flux at pre. tstep" standard_name="water_flux_out_of_sea_ice_and_sea_water" unit="kg/m2/s" /> 233 <field id="emp_oce" long_name="Evap minus Precip over ocean" standard_name="evap_minus_precip_over_sea_water" unit="kg/m2/s" /> 234 <field id="emp_ice" long_name="Evap minus Precip over ice" standard_name="evap_minus_precip_over_sea_ice" unit="kg/m2/s" /> 235 <field id="saltflx" long_name="Downward salt flux" unit="1e-3/m2/s" /> 236 <field id="fmmflx" long_name="Water flux due to freezing/melting" unit="kg/m2/s" /> 237 <field id="snowpre" long_name="Snow precipitation" standard_name="snowfall_flux" unit="kg/m2/s" /> 238 <field id="runoffs" long_name="River Runoffs" standard_name="water_flux_into_sea_water_from_rivers" unit="kg/m2/s" /> 239 <field id="precip" long_name="Total precipitation" standard_name="precipitation_flux" unit="kg/m2/s" /> 240 241 <field id="qt" long_name="Net Downward Heat Flux" standard_name="surface_downward_heat_flux_in_sea_water" unit="W/m2" /> 242 <field id="qns" long_name="non solar Downward Heat Flux" unit="W/m2" /> 243 <field id="qsr" long_name="Shortwave Radiation" standard_name="net_downward_shortwave_flux_at_sea_water_surface" unit="W/m2" /> 244 <field id="qsr3d" long_name="Shortwave Radiation 3D distribution" standard_name="downwelling_shortwave_flux_in_sea_water" unit="W/m2" grid_ref="grid_T_3D" /> 245 <field id="qrp" long_name="Surface Heat Flux: Damping" standard_name="heat_flux_into_sea_water_due_to_newtonian_relaxation" unit="W/m2" /> 246 <field id="erp" long_name="Surface Water Flux: Damping" standard_name="water_flux_out_of_sea_water_due_to_newtonian_relaxation" unit="kg/m2/s" /> 247 <field id="taum" long_name="wind stress module" standard_name="magnitude_of_surface_downward_stress" unit="N/m2" /> 248 <field id="wspd" long_name="wind speed module" standard_name="wind_speed" unit="m/s" /> 249 250 <!-- * variable relative to atmospheric pressure forcing : available with ln_apr_dyn --> 251 <field id="ssh_ib" long_name="Inverse barometer sea surface height" standard_name="sea_surface_height_correction_due_to_air_pressure_at_low_frequency" unit="m" /> 252 253 <!-- * variable related to ice shelf forcing * --> 254 <field id="fwfisf" long_name="Ice shelf melting" unit="kg/m2/s" /> 255 <field id="fwfisf3d" long_name="Ice shelf melting" unit="kg/m2/s" grid_ref="grid_T_3D" /> 256 <field id="qlatisf" long_name="Ice shelf latent heat flux" unit="W/m2" /> 257 <field id="qlatisf3d" long_name="Ice shelf latent heat flux" unit="W/m2" grid_ref="grid_T_3D" /> 258 <field id="qhcisf" long_name="Ice shelf heat content flux" unit="W/m2" /> 259 <field id="qhcisf3d" long_name="Ice shelf heat content flux" unit="W/m2" grid_ref="grid_T_3D" /> 260 <field id="isfgammat" long_name="transfert coefficient for isf (temperature) " unit="m/s" /> 261 <field id="isfgammas" long_name="transfert coefficient for isf (salinity) " unit="m/s" /> 262 <field id="stbl" long_name="salinity in the Losh tbl " unit="PSU" /> 263 <field id="ttbl" long_name="temperature in the Losh tbl " unit="C" /> 264 <field id="utbl" long_name="zonal current in the Losh tbl at T point " unit="m/s" /> 265 <field id="vtbl" long_name="merid current in the Losh tbl at T point " unit="m/s" /> 266 <field id="thermald" long_name="thermal driving of ice shelf melting " unit="C" /> 267 <field id="tfrz" long_name="top freezing point (used to compute melt) " unit="C" /> 268 <field id="tinsitu" long_name="top insitu temperature (used to cmpt melt) " unit="C" /> 269 <field id="ustar" long_name="ustar at T point used in ice shelf melting " unit="m/s" /> 270 271 <!-- *_oce variables available with ln_blk_clio or ln_blk_core --> 272 <field id="qlw_oce" long_name="Longwave Downward Heat Flux over open ocean" standard_name="surface_net_downward_longwave_flux" unit="W/m2" /> 273 <field id="qsb_oce" long_name="Sensible Downward Heat Flux over open ocean" standard_name="surface_downward_sensible_heat_flux" unit="W/m2" /> 274 <field id="qla_oce" long_name="Latent Downward Heat Flux over open ocean" standard_name="surface_downward_latent_heat_flux" unit="W/m2" /> 275 <field id="qt_oce" long_name="total flux at ocean surface" standard_name="surface_downward_heat_flux_in_sea_water" unit="W/m2" /> 276 <field id="qsr_oce" long_name="solar heat flux at ocean surface" standard_name="net_downward_shortwave_flux_at_sea_water_surface" unit="W/m2" /> 277 <field id="qns_oce" long_name="non-solar heat flux at ocean surface (including E-P)" unit="W/m2" /> 278 <field id="qemp_oce" long_name="Downward Heat Flux from E-P over open ocean" unit="W/m2" /> 279 <field id="taum_oce" long_name="wind stress module over open ocean" standard_name="magnitude_of_surface_downward_stress" unit="N/m2" /> 280 281 <!-- available key_oasis3 --> 282 <field id="snow_ao_cea" long_name="Snow over ice-free ocean (cell average)" standard_name="snowfall_flux" unit="kg/m2/s" /> 283 <field id="snow_ai_cea" long_name="Snow over sea-ice (cell average)" standard_name="snowfall_flux" unit="kg/m2/s" /> 284 <field id="subl_ai_cea" long_name="Sublimation over sea-ice (cell average)" standard_name="surface_snow_and_ice_sublimation_flux" unit="kg/m2/s" /> 285 <field id="icealb_cea" long_name="Ice albedo (cell average)" standard_name="sea_ice_albedo" unit="1" /> 286 <field id="calving_cea" long_name="Calving" standard_name="water_flux_into_sea_water_from_icebergs" unit="kg/m2/s" /> 287 <field id="iceberg_cea" long_name="Iceberg" standard_name="water_flux_into_sea_water_from_icebergs" unit="kg/m2/s" /> 288 <field id="iceshelf_cea" long_name="Iceshelf" standard_name="water_flux_into_sea_water_from_iceshelf" unit="kg/m2/s" /> 289 290 291 <!-- available if key_oasis3 + conservative method --> 292 <field id="rain" long_name="Liquid precipitation" standard_name="rainfall_flux" unit="kg/m2/s" /> 293 <field id="evap_ao_cea" long_name="Evaporation over ice-free ocean (cell average)" standard_name="water_evaporation_flux" unit="kg/m2/s" /> 294 <field id="isnwmlt_cea" long_name="Snow over Ice melting (cell average)" standard_name="surface_snow_melt_flux" unit="kg/m2/s" /> 295 <field id="fsal_virt_cea" long_name="Virtual salt flux due to ice formation (cell average)" standard_name="virtual_salt_flux_into_sea_water_due_to_sea_ice_thermodynamics" unit="kg/m2/s" /> 296 <field id="fsal_real_cea" long_name="Real salt flux due to ice formation (cell average)" standard_name="downward_sea_ice_basal_salt_flux" unit="kg/m2/s" /> 297 <field id="hflx_rain_cea" long_name="heat flux due to rainfall" standard_name="temperature_flux_due_to_rainfall_expressed_as_heat_flux_into_sea_water" unit="W/m2" /> 298 <field id="hflx_evap_cea" long_name="heat flux due to evaporation" standard_name="temperature_flux_due_to_evaporation_expressed_as_heat_flux_out_of_sea_water" unit="W/m2" /> 299 <field id="hflx_snow_cea" long_name="heat flux due to snow falling" standard_name="heat_flux_onto_ocean_and_ice_due_to_snow_thermodynamics" unit="W/m2" /> 300 <field id="hflx_snow_ai_cea" long_name="heat flux due to snow falling over ice" standard_name="heat_flux_onto_ice_due_to_snow_thermodynamics" unit="W/m2" /> 301 <field id="hflx_snow_ao_cea" long_name="heat flux due to snow falling over ice-free ocean" standard_name="heat_flux_onto_sea_water_due_to_snow_thermodynamics" unit="W/m2" /> 302 <field id="hflx_ice_cea" long_name="heat flux due to ice thermodynamics" standard_name="heat_flux_into_sea_water_due_to_sea_ice_thermodynamics" unit="W/m2" /> 303 <field id="hflx_rnf_cea" long_name="heat flux due to runoffs" standard_name="temperature_flux_due_to_runoff_expressed_as_heat_flux_into_sea_water" unit="W/m2" /> 304 <field id="hflx_cal_cea" long_name="heat flux due to calving" standard_name="heat_flux_into_sea_water_due_to_calving"