-
Notifications
You must be signed in to change notification settings - Fork 37
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
Adding Integrated Canopy Effects to CCPP/PBL Scheme #253
base: ufs/dev
Are you sure you want to change the base?
Changes from 3 commits
67b693e
e2c7f47
1fb9060
d825523
574ad4e
1665715
1c587a3
fe808c6
634ebb1
08dd5a6
22d3fd7
936a28e
989ed53
99ba757
de1c0b4
90762fb
07bafc0
6b686e5
ea79a91
be76560
8122173
f99c2bb
e68de59
92e33b2
d9d6465
da70f9b
3f5a1d5
03cbe6f
b8c61a3
b0465a5
a962bdc
9490726
97d0417
df68b5c
29033e2
911e4f9
7aa45c4
3a9338f
1e28ccd
b0706c2
7726000
4d171ce
caee56d
7a0e1e2
336447d
fc1fb3f
cbcb544
8b82cf9
d3d17e9
eb85a48
4065eb7
5016165
d98a4d7
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 |
---|---|---|
|
@@ -604,22 +604,6 @@ | |
dimensions = () | ||
type = logical | ||
intent = in | ||
[vegtype] | ||
standard_name = vegetation_type_classification | ||
long_name = vegetation type at each grid cell | ||
units = index | ||
dimensions = (horizontal_loop_extent) | ||
type = integer | ||
intent = in | ||
[lai] | ||
standard_name = leaf_area_index | ||
long_name = leaf area index | ||
units = none | ||
dimensions = (horizontal_loop_extent) | ||
type = real | ||
kind = kind_phys | ||
intent = in | ||
#IVAI | ||
[claie] | ||
standard_name = canopy_leaf_area_index | ||
long_name = canopy leaf area index | ||
|
@@ -655,12 +639,11 @@ | |
[cpopu] | ||
standard_name = canopy_population_density | ||
long_name = population density used for canopy correction | ||
units = 10000people 10km-2 | ||
units = people km-2 | ||
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. @mkavulich @grantfirl Are we ok with these units? People is just a counter, should it have no units (dimensionless)? 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. Good question. I'm OK with this, although alternatives could be |
||
dimensions = (horizontal_loop_extent) | ||
type = real | ||
kind = kind_phys | ||
intent = in | ||
#IVAI | ||
[sfc_rlm] | ||
standard_name = choice_of_near_surface_mixing_length_in_boundary_layer_mass_flux_scheme | ||
long_name = choice of near surface mixing length in boundary layer mass flux scheme | ||
|
@@ -755,35 +738,33 @@ | |
dimensions = () | ||
type = integer | ||
intent = out | ||
#IVAI | ||
[naux2d] | ||
standard_name = number_of_xy_dimensioned_auxiliary_arrays | ||
long_name = number of 2d auxiliary arrays to output (for debugging) | ||
units = count | ||
dimensions = () | ||
type = integer | ||
intent = out | ||
[naux3d] | ||
standard_name = number_of_xyz_dimensioned_auxiliary_arrays | ||
long_name = number of 3d auxiliary arrays to output (for debugging) | ||
units = count | ||
dimensions = () | ||
type = integer | ||
intent = out | ||
[aux2d] | ||
standard_name = auxiliary_2d_arrays | ||
long_name = auxiliary 2d arrays to output (for debugging) | ||
units = none | ||
dimensions = (horizontal_loop_extent,number_of_3d_auxiliary_arrays) | ||
type = real | ||
kind = kind_phys | ||
intent = out | ||
[aux3d] | ||
standard_name = auxiliary_3d_arrays | ||
long_name = auxiliary 3d arrays to output (for debugging) | ||
units = none | ||
dimensions = (horizontal_loop_extent,vertical_layer_dimension,number_of_3d_auxiliary_arrays) | ||
type = real | ||
kind = kind_phys | ||
intent = out | ||
#IVAI | ||
#[naux2d] | ||
# standard_name = number_of_xy_dimensioned_auxiliary_arrays | ||
# long_name = number of 2d auxiliary arrays to output (for debugging) | ||
# units = count | ||
# dimensions = () | ||
# type = integer | ||
# intent = out | ||
#[naux3d] | ||
# standard_name = number_of_xyz_dimensioned_auxiliary_arrays | ||
# long_name = number of 3d auxiliary arrays to output (for debugging) | ||
# units = count | ||
# dimensions = () | ||
# type = integer | ||
# intent = out | ||
#[aux2d] | ||
# standard_name = auxiliary_2d_arrays | ||
# long_name = auxiliary 2d arrays to output (for debugging) | ||
# units = none | ||
# dimensions = (horizontal_loop_extent,number_of_3d_auxiliary_arrays) | ||
# type = real | ||
# kind = kind_phys | ||
# intent = out | ||
#[aux3d] | ||
# standard_name = auxiliary_3d_arrays | ||
# long_name = auxiliary 3d arrays to output (for debugging) | ||
# units = none | ||
# dimensions = (horizontal_loop_extent,vertical_layer_dimension,number_of_3d_auxiliary_arrays) | ||
# type = real | ||
# kind = kind_phys | ||
# intent = out |
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.
These aux arrays are purely for diagnosing the implemention, correct? I believe they need to be commented out or removed before merging this into ufs/dev
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.
Thank you for your comments here. Yes, indeed the aux arrays were for diagnosing the implementation. We can comment out for now if that's acceptable path forward.
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 please, thanks.