A method to perform an aqua planet experiment (planetary surface is covered by watar) proposed by Neale and Hoskins (2000) in an axisymmetric condition is described.
Following physical processes are used in this experiment.
This experiment uses an axisymmetric version of dynamical process. The axisymmetric version can be built by compiling the code with setting FFLAGS to -DAXISYMMETRY or -DAXISYMMETRY_SJPACK.
This experiment requires data of distribution of sea surface temperature. So, the experiment is performed with the following 4 steps:
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-axisym-exp directory. Please create the directory and enter there as follows:
$ mkdir -p ../dcpam5-exp/ape-nh00-axisym-exp $ cd ../dcpam5-exp/ape-nh00-axisym-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 "init_T42L22.nc" using "dcpam_init_data" and "init_data_APE_NH00_Axisym_T42L22.conf"
$ ./bin/dcpam_init_data -N=./conf/init_data_APE_NH00_Axisym_T42L22.conf *** MESSAGE [init_data] *** Run: Initial data generation *** MESSAGE [init_data] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [namelist_util] *** ----- Initialization Messages ----- *** MESSAGE [namelist_util] *** MaxNmlArySize = 256 *** MESSAGE [namelist_util] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [timeset] *** NAMELIST group "timeset_nml" is loaded from "./conf/init_data_APE_NH00_Axisym_T42L22.conf". : *** MESSAGE [initial_data] *** PsAvr = 101080. *** MESSAGE [initial_data] *** QVapAvr = 0. *** MESSAGE [initial_data] *** Ueq = 0. *** MESSAGE [initial_data] *** *** MESSAGE [initial_data] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [HistoryClose] *** "init_T42L22.nc" is closed ############## CPU TIME SUMMARY ################ others 0.400020E-01 ------------------------------------------------ TOTAL TIME = 0.400020E-01
This experiment requires additional data of ozone distribution. Those data are prepared at following site.
Please download "O3_NH00_lon1_T042.nc" from above site, and place those files at experimental directory.
Next, create SST data "sst_T42.nc" using "dcpam_init_data_surface" and "sst_data_APE_NH00_Axisym_T42.conf".
$ ./bin/dcpam_init_data_surface -N=./conf/sst_data_APE_NH00_Axisym_T42.conf *** MESSAGE [sst_data] *** Run: SST data generation *** MESSAGE [sst_data] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [namelist_util] *** ----- Initialization Messages ----- *** MESSAGE [namelist_util] *** MaxNmlArySize = 256 *** MESSAGE [namelist_util] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [timeset] *** NAMELIST group "timeset_nml" is loaded from "./conf/sst_data_APE_NH00_Axisym_T42.conf". : *** MESSAGE [surface_data] *** SoilHeatCap = 2100000. *** MESSAGE [surface_data] *** SoilHeatDiffCoef = 1.2 *** MESSAGE [surface_data] *** -- version = $Name: dcpam5-20150129 $$Id: exp-APE-NH00-Axisym.rd,v 1.5 2014/07/07 14:50:01 yot Exp $ *** MESSAGE [HistoryClose] *** "sst_T42.nc" is closed ############## CPU TIME SUMMARY ################ others 0.400000E-02 ------------------------------------------------ TOTAL TIME = 0.400000E-02
At the last, run a experiment using "dcpam_main" and "dcpam_APE_NH00_Axisym_T42L22.conf". Resolution is T42L22, time step is 12 minutes. 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_Axisym_T42L22.conf | tee ape-nh00-axisym.log
If initial data, surface data, settings of experiments want to be changed, edit "init_data_APE_NH00_Axisym_T42L22.conf", "sst_data_APE_NH00_Axisym_T42.conf", "dcpam_APE_NH00_Axisym_T42L22.conf" in "conf" directory.
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 ">ool_historyauto_nml".