- 积分
- 1160
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-5-29
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2016-9-8 14:12:39
|
显示全部楼层
1. # go to root directory of source code download
cd /path_to_source_code_download/cesm1_2_0
# go into scripts subdirectory
cd scripts
# (1) create a new case in the directory “cases” in your home directory
./create_newcase -case cases/mycase1 -res f19_g16 -compset ICLM45CNDV -mach CESM
(得先看看compset,确定你需要的例子到底是哪一个,分辨率这个不好弄,就先弄这个)要注意cases/mycase1才是自己建立的
# go into the case you just created in the last step
cd ~/cases/case01/
# (2) invoke cesm_setup
./cesm_setup
# (3) build the executable
./mycase.build
|
|