-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
external gridded forcing capability for SCAM #628
base: cam_development
Are you sure you want to change the base?
Changes from all commits
f8fc4de
8feae73
7b85b0b
78192f1
e629940
c5378a2
4b696d8
ba55648
97094b2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# setup SCAM lon and lat for this iop | ||
# this should correspond to the forcing IOP coordinates | ||
#./xmlchange PTS_LON=scmlon | ||
#./xmlchange PTS_LAT=scmlat | ||
|
||
# Specify the starting/ending time for the IOP | ||
# The complete time slice of IOP file is specified below | ||
# but you may simulate any within the IOP start and end times. | ||
#./xmlchange RUN_STARTDATE=yyyy-mm-dd | ||
#./xmlchange START_TOD=0 | ||
#./xmlchange STOP_OPTION=nsteps | ||
#./xmlchange STOP_N=nnnn | ||
|
||
# usermods_dir/scam_mandatory will be included for all single column | ||
# runs by default. This usermods directory contains mandatory settings | ||
# for scam and shouldn't be modified by the user. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
!scmlon=$PTS_LON | ||
!scmlat=$PTS_LAT | ||
iopfile="$CASEROOT/STUB_iop.nc" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The file in cime_config/usermods_dirs/scam_STUB/scripts/STUB_iop.nc should be stored in the svn inputdata repo and accessed accordingly. Will need to remove this file from the commit. |
||
!ncdata="/home/aherring/scam/inic/SCAM_IC_288x192_L58_48_BL10.nc" | ||
ncdata = '/glade/work/aherring/grids/vertical-res/L58/SCAM_IC_288x192_L58_48_BL10.nc' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All files need to be put into the svn repo and referenced without full pathnames There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @JulioTBacmeister will email the list of files to put into the svn inputdata repo There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The files to use are one month of ERAI data from /glade/p/cdg/amp/juliob/ERAI/f09_omega/L58/2010 and will put the month "04" files into the inputdata svn repo. |
||
|
||
!bnd_topo="/fs/cgd/csm/inputdata/atm/cam/topo/fv_0.9x1.25_nc3000_Nsw042_Nrs008_Co060_Fi001_ZR_sgh30_24km_GRNL_c170103.nc" | ||
bnd_topo = '/glade/p/cesmdata/inputdata/atm/cam/topo/fv_0.9x1.25_nc3000_Nsw042_Nrs008_Co060_Fi001_ZR_sgh30_24km_GRNL_c170103.nc' | ||
|
||
mfilt=2000 | ||
nhtfrq=1 | ||
avgflag_pertape(1)='A' | ||
Comment on lines
+10
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What fields here and below are necessary for a STUB SCAM run and which are being used for testing purposes? Should remove the ones which are not required |
||
|
||
scm_use_obs_uv = .false. | ||
scm_relaxation = .false. | ||
scm_relax_fincl = 'T', 'bc_a1', 'bc_a4', 'dst_a1', 'dst_a2', 'dst_a3', 'ncl_a1', 'ncl_a2', | ||
'ncl_a3', 'num_a1', 'num_a2', 'num_a3', | ||
'num_a4', 'pom_a1', 'pom_a4', 'so4_a1', 'so4_a2', 'so4_a3', 'soa_a1', 'soa_a2' | ||
scm_relax_bot_p = 105000. | ||
scm_relax_top_p = 200. | ||
scm_relax_linear = .true. | ||
scm_relax_tau_bot_sec = 864000. | ||
scm_relax_tau_top_sec = 172800. | ||
|
||
use_scm_ana_frc = .true. | ||
!scm_ana_frc_path = "/project/amp/aherring/cam6_3_006.dev_FHIST_f09_f09_mg17_144pes_210818_L58_cam64_MJJA2010/run/" | ||
scm_ana_frc_path = "/glade/p/cesm/amwg/aherring/FORC_FOR_SCAM/cam6_3_006.dev_FHIST_f09_f09_mg17_144pes_210818_L58_cam64_MJJA2010/run/" | ||
scm_ana_frc_file_template = "cam6_3_006.dev_FHIST_f09_f09_mg17_144pes_210818_L58_cam64_MJJA2010.cam.h2.%y-%m-%d-%s.nc" | ||
|
||
scm_ana_x_plevels = .true. | ||
scm_ana_direct_omega = .true. | ||
scm_ana_direct_ttend = .false. | ||
scm_ana_t_react = .false. | ||
scm_ana_q_react = .false. | ||
scm_ana_u_react = .false. | ||
scm_ana_v_react = .false. | ||
scm_ana_upwind = .false. | ||
|
||
|
||
use_gw_convect_dp = .false. | ||
use_gw_convect_sh = .false. | ||
use_gw_front = .false. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete commented out lines here and below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes