Aqua planet experiment by Neale and Hoskins (2000)

A method to perform an aqua planet experiment (planetary surface is covered by watar) proposed by Neale and Hoskins (2000) is described.

Following physical processes are used in this experiment.

  • Radiation (model for the Earth's atmosphere)
  • Vertical diffusion (Mellor and Yamada, 1982, level 2.5)
  • Cumulus parameterization: Relaxed Arakawa-Schubert scheme (Moorthi and Suarez, 1992)
  • Large scale condensation

Overview

This experiment requires data of distribution of sea surface temperature. So, the experiment is performed with the following 4 steps:

  • Preparation of directory for experiments
  • Preparation of initial condition
  • Preparation of additional data (sea surface temperature) for experiments
  • Execution of experiments

Preparation of a directory for an experiment

Let us move to the top directory of DCPAM5 src tree (assuming dcpam5-YYYYMMDD in the following example). Here, we perform an experiment in ../dcpam5-exp/ape-nh00-exp directory. Please create the directory and enter there as follows:

$ mkdir -p ../dcpam5-exp/ape-nh00-exp
$ cd ../dcpam5-exp/ape-nh00-exp

Then, pleaase create the directories for executable files and configuration files as follows:

$ mkdir bin
$ mkdir conf

Finally, executable files and configuration files are copied as follows:

$ cp ../../dcpam5-YYYYMMDD/src/main/dcpam_main bin
$ cp ../../dcpam5-YYYYMMDD/src/main/dcpam_init_data  bin
$ cp ../../dcpam5-YYYYMMDD/src/main/dcpam_init_data_surface   bin
$ cp ../../dcpam5-YYYYMMDD/exp_setup_files/*.conf conf

Note that you can perform an experiment in any directory by using executable files and configuration (NAMELIST) files.

Create initial data file

Create initial data file "init_T21L26.nc" using "dcpam_init_data" and "init_data_APE_NH00_T21L26.conf"

$ ./bin/dcpam_init_data -N=./conf/init_data_APE_NH00_T21L26.conf

 *** MESSAGE [init_data] ***  Run: Initial data generation
 *** MESSAGE [init_data] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [namelist_util] ***  ----- Initialization Messages -----
 *** MESSAGE [namelist_util] ***    MaxNmlArySize = 256
 *** MESSAGE [namelist_util] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [timeset] ***  NAMELIST group "timeset_nml" is loaded from "./conf/init_data_APE_NH00_T21L26.conf".
                       : 
 *** MESSAGE [initial_data] ***    PsAvr   = 101080.
 *** MESSAGE [initial_data] ***    QVapAvr = 0.
 *** MESSAGE [initial_data] ***    Ueq     = 0.
 *** MESSAGE [initial_data] ***
 *** MESSAGE [initial_data] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [HistoryClose] ***  "init_T21L26.nc" is closed

 ############## CPU TIME SUMMARY ################
 others                 0.400020E-01
 ------------------------------------------------
        TOTAL TIME =    0.400020E-01

Preparation of additional data

This experiment requires additional data of ozone distribution. Those data are prepared at following site.

Please download "O3_NH00_T021.nc" from above site, and place those files at experimental directory.

Create SST data file

Next, create SST data "surface_T21.nc" using "dcpam_init_data_surface" and "surface_data_APE_NH00_T21.conf".

$ ./bin/dcpam_init_data_surface -N=./conf/surface_data_APE_NH00_T21.conf

 *** MESSAGE [sst_data] ***  Run: SST data generation
 *** MESSAGE [sst_data] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [namelist_util] ***  ----- Initialization Messages -----
 *** MESSAGE [namelist_util] ***    MaxNmlArySize = 256
 *** MESSAGE [namelist_util] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [timeset] ***  NAMELIST group "timeset_nml" is loaded from "./conf/surface_data_APE_NH00_T21.conf".
                       :
 *** MESSAGE [surface_data] ***    SoilHeatCap      = 2100000.
 *** MESSAGE [surface_data] ***    SoilHeatDiffCoef = 1.2
 *** MESSAGE [surface_data] ***  -- version = $Name:  $$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $
 *** MESSAGE [HistoryClose] ***  "surface_T21.nc" is closed

 ############## CPU TIME SUMMARY ################
 others                 0.400000E-02
 ------------------------------------------------
        TOTAL TIME =    0.400000E-02

Run the experiment

At the last, run a experiment using "dcpam_main" and "dcpam_APE_NH00_T21L22.conf". Resolution is T21L26. Integration time is 7 days. A restart data file, a restart data file of surface data, and some history data files are output.

$ ./bin/dcpam_main -N=./conf/dcpam_APE_NH00_T21L26.conf | tee ape-nh00.log

If initial data, surface data, settings of experiments want to be changed, edit "init_data_APE_NH00_T21L26.ocnf", "surface_data_APE_NH00_T21.conf", "dcpam_APE_NH00_T21L26.conf" in "conf" directory.

Visualization of result

Zonal mean temperature distribution after integration for 2 days is shown below. It should be noted that the figure you draw may not be the same as that shown here because of difference in model version.

This figure is drawn by using Gphys, as follows:

Please type irb. 

$ irb

Following prompt of irb is shown. 

irb(main):001:0>

Type following lines. Please note that the left-most number is line number, and it has not been typed. 

1: require "numru/ggraph"
2: include NumRu
3: gphys = GPhys::IO.open('Temp.nc', 'Temp')
4: DCL.gropn(1)
5: DCL.sgpset('lcntl', false) ; DCL.uzfact(0.7)
6: GGraph.tone( gphys.mean('lon').cut('time'=>2) )
7: GGraph.color_bar
8: DCL.grcls

Type quit to exit irb. 

Above figure shows spin-up phase of the atmosphere, because the Earth's atmosphere does not reach quasi-equilibrium in 5 days.

Final remark

If you would like to keep the results of the numerical experiment, please create a sub directory ("data01" for example), move the files, and keep the current directory neatly.

$ mkdir data01
$ mv *.nc *.log data01/

You can output the results of the numerical experimet concurrently with the execution. Please refer to "Change output settings" in Change experimental setup and try to configure "FilePrefix" variable in NAMELIST "&gtool_historyauto_nml".

References


$Id: exp-APE-NH00.rd,v 1.8 2015/02/12 16:50:31 yot Exp $