CESM Models

CCSM1.4 CSM Data Land Model User's Guide

 

Authored by: Brian Kauffman kauff @ ucar.edu

Introduction

The Climatological Data Land Model (dlnd) functions as the land component in a CSM configuration. Recall that a configuration consists of various independent component models (atmosphere, land, ocean, and sea-ice), each connected to a flux coupler. The dlnd land component interacts with the flux coupler just like any land model would, but it is not an active model, rather, it takes land data from an input data file and sends it to the coupler, ignoring any forcing data received from the coupler. Typically the input data file contains mean monthly data generated by an active CSM land model (it's unlikely that real world observations exist for all the required fields). Such a "dummy" land model is useful for doing ocean + ice spinup runs.

Important Note: When assembling a CSM configuration, carefully consider the limitations and requirements of all components and be sure that the complete set of component models will interact in a meaningful way. In particular, consider whether the data provided by this model is adequate for your application.

Contents

1. Input Data

Land Data

The model cycles thru netCDF data files containing all the data the coupler expects from a land model. Each file contains one year of data consisting of 12 sets of monthly mean fields. This input data must have the same domain (resolution, coordinate arrays, and domain mask) as the dlnd model. The model can cycle thru a multi-year sequence of data. Suitable data files exist on NCAR's Mass Storage System (MSS). These files can be replaced by other data files that are in the same format. Because netCDF files are self describing, one can query the file itself for specifics about the file format.

Model domain

On startup, the model reads in domain data from a netCDF file. Data exchanged with the coupler will be on the model domain. This file contains x & y coordinate arrays as well as a domain mask. The model uses a rectilinear latitude/longitude grid only, with 1d coordinate arrays x(i) & y(j), and a 2d domain mask mask(i,j). A mask value of 0 indicates ocean points (i.e. not in the model's domain). Because the input land data (above) is on the same domain as the dlnd model, and because the input land data contains domain information, any input land data file can also serve as a domain data file. In fact, the first file in the input land data file sequence is used as the domain data file.

Input parameter namelist

On startup, the model reads an input namelist parameter file from stdin. The model has very few input namelist parameters. Typically the only input parameters that are required are those that specify how often the model will communicate with the coupler, and those that specify the sequence of input land data files. See the section on input namelist variables for a complete list and description of namelist parameters.

Data received from the flux coupler

The model receives the following fields from the flux coupler (via message passing):

Atmosphere model states:

Atmosphere/surface fluxes

None of these fields are used by the model. These fields are received because the coupler/land interface specification requires that this set of fields be received. The coupler has no way of knowing whether the components it is connected to are active models or data models.

[back to contents]

2. Output data

History files

The model does not create history files. The only data associated with this model is the data that is already contained in the input land data file.

Restart files

The model does not need or create restart files.

Runtime diagnostics

The model generates some diagnostic messages which are written to stdout. This output consists mostly of brief messages that indicate how the simulation is progressing and whether any error conditions have been detected. Stdout also contains a record of the values of all model input parameters.

Data sent to the flux coupler

The model sends the following fields to the flux coupler (via message passing):

Land model states

Atmosphere/land fluxes

Atmosphere/land diagnostic quantities

The fields sent to the coupler are based on the input land data (which is assumed to be monthly mean data) linearly interpolated in time. This set of fields is sent to the coupler because this is part of the coupler/land interface requirement. The coupler has no way of knowing whether the components it is connected to are active models or data models.

[back to contents]

3. Input Parameters

The model reads an input namelist from stdin at runtime. Following is a list and description of available namelist input parameters.

ncpl

Type:integer
Default: 24
Required: no
Description: This specifies how many times per day the model communicates (exchanges data) with the coupler.

data_dir

Type: character
Default: 'null'
Required: yes
Description: This specifies the MSS directory containing the input land data file sequence. File names in this directory are assumed to be named "lsmh_yyyy.nc", where yyyy is the four digit year of the data file.

data_year0

Type: integer
Default: 1
Required: no (assuming file lsmh_0001.nc exists in data_dir)
Description: This specifies the first year in the input land data file sequence.

data_nyear

Type: integer
Default: 1
Required: no
Description: This specifies the number of years in the input land data file sequence.

data_oyear

Type: integer
Default: 1
Required: no
Description: This specifies the "offset year" for the input land data file sequence. The data file for data_year0 will coincide with the simulation year data_oyear.

data_rmlf

Type: integer
Default: 0 (note: 0 <=> false)
Required: no
Description: This specifies whether to remove the local copy of an input land data file after it has been read in by the model. Iff data_rmlf = 0, then the model will not remove the local file.

data_aroff

Type: character
Default: 'null'
Required: no
Description: This specifies an "alternate runoff data file." If data_aroff is not equal to 'null', then data_aroff is the name of a local file which contains alternate runoff data. In this case, the data normally used (that found in the input land data file sequence) is replaced with the alternate data.

data_fix

Type: character
Default: 'null'
Required: no
Description: On certain input data file sets, the sign of the evaporation, upward longwave, latent, and sensible heat flux fields is incorrect (i.e. they are not positive down). If data_fix = 'sign', then the sign of these fields will be corrected (i.e. reversed).

init_mask

Type: integer
Default: 0 (note: 0 <=> false)
Required: no
Description:

info_dbug

Type: integer
Default: 1
Required: no
Description: Debugging information level: 0, 1, 2, or 3.

[back to contents]

4. Preparing the model for execution

The model's setup script, call lnd.setup.csh, is invoked prior to the execution of the model. The setup script builds the executable code, documents the source code, and gathers any necessary input data files.

Each CSM component gets it's own, separate subdirectory in which it's setup script is run, in which the it's executable resides, and in which all of it's input and output files are kept. A set of environment variables set in a parent NQS script and is available for use (a model may not actually use all of these variables).

Below is an example setup script, followed by some explanation.

   #! /bin/csh -f 
   #======================================================================
   # Purpose:
   #  (a) build an executable model (dlnd4 climatological data land model)
   #  (b) document the source code used
   #  (c) gather or create necessary input files 
   #======================================================================

   echo '================================================================='
   echo ' Preparing model for execution                                   '
   echo '================================================================='
   echo ' '
   echo Date: `date`
   echo ' '
   echo 'Env variables by a parent shell:'
   echo '  $CASE     = ' $CASE
   echo '  $CASESTR  = ' $CASESTR
   echo '  $RUNTYPE  = ' $RUNTYPE
   echo '  $ARCH     = ' $ARCH
   echo '  $CSMSHARE = ' $CSMSHARE
   echo '  $MAXCPUS  = ' $MAXCPUS
   echo '  $SSD      = ' $SSD
   echo '  $MSS      = ' $MSS
   echo '  $MSSDIR   = ' $MSSDIR
   echo '  $MSSRPD   = ' $MSSRPD
   echo '  $MSSPWD   = ' $MSSPWD
   echo '  $RPTDIR   = ' $RPTDIR
   echo '  $MSGLIB   = ' $MSGLIB
   
   echo '-----------------------------------------------------------------'
   echo ' (a) Build an executable                                         '
   echo '-----------------------------------------------------------------'
   if ( -e lnd ) then
     echo 'Note: using an existing binary'
     ls -lFt lnd src/Build.log.* | head
   else 
     #--- create a src code sub-directory ---
     mkdir src
     cd src
   
     #--- document the build ---
     set BLDLOG = Build.log."`date +%y%m%d-%H%M%S`"
     echo 'Note: (re)building a binary'
     echo "See: $BLDLOG   "
     echo "Build log      "      >!  $BLDLOG
     echo "Date: `date`   "      >>& $BLDLOG
     echo "Dir : `pwd`    "      >>& $BLDLOG
     echo "User: $LOGNAME "      >>& $BLDLOG
   
     #--- gather source code ---
     echo "/fs/cgd/csm/models/lnd/dlnd4.0    "  >! Filepath
     #cho "/insert/filepath/for/patches      "  >> Filepath
     foreach SRCDIR (`cat Filepath`)
       echo "o gathering src code from $SRCDIR" >>& $BLDLOG
       cat $SRCDIR/README                       >>& $BLDLOG
       ls -lF $SRCDIR                           >>& $BLDLOG
       cp -fp $SRCDIR/* .                       >>& $BLDLOG
     end
   
     #--- select resolution ---
     rm -f dims.h ; ln -s dims.h.ncom_x2 dims.h
   
     #--- create make's include files & invoke make ---
     Makeprep                        >>& $BLDLOG
     make EXEC=dlnd4 ARCH=$ARCH      >>& $BLDLOG || exit 2
   
     #--- link binary into /. directory ---
     cd ..
     rm -f lnd ; ln -s src/dlnd4 lnd
   endif 
   
   echo '-----------------------------------------------------------------'
   echo ' (b) document the source code used                               '
   echo '-----------------------------------------------------------------'
   echo "o contents of /src:"      ; ls -alFt   src        ; echo ' '
   echo "o revision control info:" ; grep 'CVS' src/*.[hF] ; echo ' '
   
   echo '-----------------------------------------------------------------'
   echo ' (c) gather or create necessary input files                      '
   echo '-----------------------------------------------------------------'
    
   cat >! lnd.parm << EOF
     &inparm
     ncpl       = 12
     data_dir   = '/BOVILLE/csm/f015.00/dlnd/data'
     data_nyear =  3
     data_year0 =  5
     data_oyear =  1
     /
   EOF
   
   echo "o contents of lnd.parm:" ; cat lnd.parm ; echo ' '
   echo "o contents of `pwd`:"    ; ls -alF      ; echo ' '
   
   echo '================================================================='
   echo ' End of setup shell script                                       '
   echo '================================================================='
								
		

Items (a) through (c) in the above setup script are now reviewed.

(a) Build an executable

The model resolution (i.e. the number of x and y grid points) must be known at compile time and is specified in one resolution-dependent file: dims.h. Notice how an appropriate dims.h file is selected. Several dims.h files are provided corresponding to frequently used resolutions, but it is easy to create a dims.h file for any desired resolution. The details of how to build the executable (e.g. preprocessor and compiler options) are contained in the Makefile.

(b) Document the source code used

Here we make a detailed listing of the source code used, a list of revision control system (CVS) information, and list of the contents of the current working directory. This information can be used to identify the source code used in a particular simulation.

(c) Gather or create necessary input files

An input namelist file is constructed. The namelist variables specify how often the model will communicate with the coupler (12 times per day) and what the input land data sequence will be (three years of data, starting at year five, with the first year in the data sequence corresponding with simulation year one). See the section describing the input namelist variables for more details.

[back to contents]

5. Source Code Maintenance

The distribution Fortran source code for the model comes with a Makefile which suitable for use Cray C90, Cray J90, or SGI architectures. By examining how compilation between these various machines is handled, it should be easy to port this code to other machines as well. The code is written almost entirely using standard Fortran 77.

The code must be compiled with a particular model resolution in mind. The only source code file that must change with respect to resolution (i.e. has a "hard-coded" resolution dependence) is dims.h. See the section describing the setup script for an example of how this dependency is handled at compile time. Recall the input data files (read in at runtime) must have the same resolution as the source code.

This code was developed using the CVS revision control system, but only one "tagged" version of the code is available within any one distribution. Each source code file contains detailed revision control information.

[back to contents]