-
Notifications
You must be signed in to change notification settings - Fork 24
D-grid data input method #42
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
Changes from 29 commits
e70894d
2a8b97a
e2cdd5c
b4d9e5d
7038e30
5b0991d
9001af1
65c0e14
dedd711
21e76c6
17e281b
3a627aa
f21774f
396025c
a63be71
d95e1fd
99b47ed
a536d95
6b9ff5e
8e0b829
caa2d43
6690e68
ada497b
6c1acfb
d48f2ba
136db1a
0be3439
2d8eb41
b7f379f
264549a
75a3e1d
f0a4a4d
20ffd3f
1b7ca1a
39467a9
f6f1bb5
f37c4fd
772e474
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,102 @@ | ||
| stencil_config: | ||
| compilation_config: | ||
| backend: numpy | ||
| rebuild: false | ||
| validate_args: true | ||
| format_source: false | ||
| device_sync: false | ||
| grid_config: | ||
| type: external | ||
| config: | ||
| grid_type: 0 | ||
| grid_file_path: "../../test_input/C12.tile" | ||
|
Collaborator
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. This not part of the PR. This wasn't picked up by the tests because the 54 ranks tests are not running right now!
Contributor
Author
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. Is there way I can include them? Should we be running the 54 rank tests?
Collaborator
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. How big are the files? Technically I think it should be located at We should be running 54 ranks but I haven't look at if we can do that on the
Contributor
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. We can start a plan to set up a CI which uses cloud resources from the NOAA cloud resources provider. We've done this successfully for SHiELD, FMS, and other GFDL repos. The key is to make sure we have a container with the needed bits.
Collaborator
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. @FlorianDeconinck What do you think about including the tile data file in the PR? I know we don't love having test data in the repo but this one is small and if we want the tests run as part of CI... |
||
| initialization: | ||
| type: analytic | ||
| config: | ||
| case: baroclinic | ||
| performance_config: | ||
| collect_performance: true | ||
| experiment_name: c12_baroclinic | ||
| nx_tile: 12 | ||
| nz: 79 | ||
| dt_atmos: 225 | ||
| minutes: 15 | ||
| layout: | ||
| - 1 | ||
| - 1 | ||
| diagnostics_config: | ||
| path: output | ||
| output_format: netcdf | ||
| names: | ||
| - u | ||
| - v | ||
| - ua | ||
| - va | ||
| - pt | ||
| - delp | ||
| - qvapor | ||
| - qliquid | ||
| - qice | ||
| - qrain | ||
| - qsnow | ||
| - qgraupel | ||
| z_select: | ||
| - level: 65 | ||
| names: | ||
| - pt | ||
| dycore_config: | ||
| a_imp: 1.0 | ||
| beta: 0. | ||
| consv_te: 0. | ||
| d2_bg: 0. | ||
| d2_bg_k1: 0.2 | ||
| d2_bg_k2: 0.1 | ||
| d4_bg: 0.15 | ||
| d_con: 1.0 | ||
| d_ext: 0.0 | ||
| dddmp: 0.5 | ||
| delt_max: 0.002 | ||
| do_sat_adj: true | ||
| do_vort_damp: true | ||
| fill: true | ||
| hord_dp: 6 | ||
| hord_mt: 6 | ||
| hord_tm: 6 | ||
| hord_tr: 8 | ||
| hord_vt: 6 | ||
| hydrostatic: false | ||
| k_split: 1 | ||
| ke_bg: 0. | ||
| kord_mt: 9 | ||
| kord_tm: -9 | ||
| kord_tr: 9 | ||
| kord_wz: 9 | ||
| n_split: 1 | ||
| nord: 3 | ||
| nwat: 6 | ||
| p_fac: 0.05 | ||
| rf_cutoff: 3000. | ||
| rf_fast: true | ||
| tau: 10. | ||
| vtdm4: 0.06 | ||
| z_tracer: true | ||
| do_qa: true | ||
| tau_i2s: 1000. | ||
| tau_g2v: 1200. | ||
| ql_gen: 0.001 | ||
| ql_mlt: 0.002 | ||
| qs_mlt: 0.000001 | ||
| qi_lim: 1.0 | ||
| dw_ocean: 0.1 | ||
| dw_land: 0.15 | ||
| icloud_f: 0 | ||
| tau_l2v: 300. | ||
| tau_v2l: 90. | ||
| fv_sg_adj: 0 | ||
| n_sponge: 48 | ||
| u_max: 355.0 | ||
|
|
||
| physics_config: | ||
| hydrostatic: false | ||
| nwat: 6 | ||
| do_qa: true | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,102 @@ | ||
| stencil_config: | ||
| compilation_config: | ||
| backend: numpy | ||
| rebuild: false | ||
| validate_args: true | ||
| format_source: false | ||
| device_sync: false | ||
| grid_config: | ||
| type: external | ||
| config: | ||
| grid_type: 0 | ||
| grid_file_path: "../../test_input/C12.tile" | ||
|
Collaborator
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. See above.
Contributor
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. Since these are small files, they should be okay. Ideally we'd store them in the container (mentioned above) or generate them on the fly to test the grid creation and ingest as a group. |
||
| initialization: | ||
| type: analytic | ||
| config: | ||
| case: baroclinic | ||
| performance_config: | ||
| collect_performance: true | ||
| experiment_name: c12_baroclinic | ||
| nx_tile: 12 | ||
| nz: 79 | ||
| dt_atmos: 225 | ||
| minutes: 15 | ||
| layout: | ||
| - 2 | ||
| - 2 | ||
| diagnostics_config: | ||
| path: output | ||
| output_format: netcdf | ||
| names: | ||
| - u | ||
| - v | ||
| - ua | ||
| - va | ||
| - pt | ||
| - delp | ||
| - qvapor | ||
| - qliquid | ||
| - qice | ||
| - qrain | ||
| - qsnow | ||
| - qgraupel | ||
| z_select: | ||
| - level: 65 | ||
| names: | ||
| - pt | ||
| dycore_config: | ||
| a_imp: 1.0 | ||
| beta: 0. | ||
| consv_te: 0. | ||
| d2_bg: 0. | ||
| d2_bg_k1: 0.2 | ||
| d2_bg_k2: 0.1 | ||
| d4_bg: 0.15 | ||
| d_con: 1.0 | ||
| d_ext: 0.0 | ||
| dddmp: 0.5 | ||
| delt_max: 0.002 | ||
| do_sat_adj: true | ||
| do_vort_damp: true | ||
| fill: true | ||
| hord_dp: 6 | ||
| hord_mt: 6 | ||
| hord_tm: 6 | ||
| hord_tr: 8 | ||
| hord_vt: 6 | ||
| hydrostatic: false | ||
| k_split: 1 | ||
| ke_bg: 0. | ||
| kord_mt: 9 | ||
| kord_tm: -9 | ||
| kord_tr: 9 | ||
| kord_wz: 9 | ||
| n_split: 1 | ||
| nord: 3 | ||
| nwat: 6 | ||
| p_fac: 0.05 | ||
| rf_cutoff: 3000. | ||
| rf_fast: true | ||
| tau: 10. | ||
| vtdm4: 0.06 | ||
| z_tracer: true | ||
| do_qa: true | ||
| tau_i2s: 1000. | ||
| tau_g2v: 1200. | ||
| ql_gen: 0.001 | ||
| ql_mlt: 0.002 | ||
| qs_mlt: 0.000001 | ||
| qi_lim: 1.0 | ||
| dw_ocean: 0.1 | ||
| dw_land: 0.15 | ||
| icloud_f: 0 | ||
| tau_l2v: 300. | ||
| tau_v2l: 90. | ||
| fv_sg_adj: 0 | ||
| n_sponge: 48 | ||
| u_max: 355.0 | ||
|
|
||
| physics_config: | ||
| hydrostatic: false | ||
| nwat: 6 | ||
| do_qa: true | ||
Uh oh!
There was an error while loading. Please reload this page.