@@ -860,12 +860,12 @@ add_diagnostic_variable!(
860
860
compute! = compute_hussn!,
861
861
)
862
862
863
- compute_clwnm ! (out, state, cache, time) =
864
- compute_clwnm ! (out, state, cache, time, cache. atmos. precip_model)
865
- compute_clwnm ! (_, _, _, _, model:: T ) where {T} =
866
- error_diagnostic_variable (" clwnm " , model)
863
+ compute_cdnc ! (out, state, cache, time) =
864
+ compute_cdnc ! (out, state, cache, time, cache. atmos. precip_model)
865
+ compute_cdnc ! (_, _, _, _, model:: T ) where {T} =
866
+ error_diagnostic_variable (" cdnc " , model)
867
867
868
- function compute_clwnm ! (
868
+ function compute_cdnc ! (
869
869
out,
870
870
state,
871
871
cache,
@@ -880,23 +880,23 @@ function compute_clwnm!(
880
880
end
881
881
882
882
add_diagnostic_variable! (
883
- short_name = " clwnm " ,
884
- long_name = " Number Concentration of Cloud Liquid Water " ,
885
- standard_name = " number_concentration_of_cloud_liquid_water " ,
886
- units = " 1 m^-3" ,
883
+ short_name = " cdnc " ,
884
+ long_name = " Cloud Liquid Droplet Number Concentration " ,
885
+ standard_name = " number_concentration_of_cloud_liquid_water_particles_in_air " ,
886
+ units = " m^-3" ,
887
887
comments = """
888
888
This is calculated as the number of cloud liquid water droplets in the grid
889
889
cell divided by the cell volume.
890
890
""" ,
891
- compute! = compute_clwnm !,
891
+ compute! = compute_cdnc !,
892
892
)
893
893
894
- compute_clinm ! (out, state, cache, time) =
895
- compute_clinm ! (out, state, cache, time, cache. atmos. precip_model)
896
- compute_clinm ! (_, _, _, _, model:: T ) where {T} =
897
- error_diagnostic_variable (" clinm " , model)
894
+ compute_cdinc ! (out, state, cache, time) =
895
+ compute_cdinc ! (out, state, cache, time, cache. atmos. precip_model)
896
+ compute_cdinc ! (_, _, _, _, model:: T ) where {T} =
897
+ error_diagnostic_variable (" cdinc " , model)
898
898
899
- function compute_clinm ! (
899
+ function compute_cdinc ! (
900
900
out,
901
901
state,
902
902
cache,
@@ -911,23 +911,23 @@ function compute_clinm!(
911
911
end
912
912
913
913
add_diagnostic_variable! (
914
- short_name = " clinm " ,
915
- long_name = " Number Concentration of Cloud Ice " ,
916
- standard_name = " number_concentration_of_cloud_ice " ,
917
- units = " 1 m^-3" ,
914
+ short_name = " cdinc " ,
915
+ long_name = " Cloud Ice Chrystal Number Concentration " ,
916
+ standard_name = " number_concentration_of_cloud_ice_chrystals_in_air " ,
917
+ units = " m^-3" ,
918
918
comments = """
919
919
This is calculated as the number of cloud ice chrystals in the grid
920
920
cell divided by the cell volume.
921
921
""" ,
922
- compute! = compute_clinm !,
922
+ compute! = compute_cdinc !,
923
923
)
924
924
925
- compute_nmra ! (out, state, cache, time) =
926
- compute_nmra ! (out, state, cache, time, cache. atmos. precip_model)
927
- compute_nmra ! (_, _, _, _, model:: T ) where {T} =
928
- error_diagnostic_variable (" nmra " , model)
925
+ compute_ncra ! (out, state, cache, time) =
926
+ compute_ncra ! (out, state, cache, time, cache. atmos. precip_model)
927
+ compute_ncra ! (_, _, _, _, model:: T ) where {T} =
928
+ error_diagnostic_variable (" ncra " , model)
929
929
930
- function compute_nmra ! (
930
+ function compute_ncra ! (
931
931
out,
932
932
state,
933
933
cache,
@@ -942,23 +942,23 @@ function compute_nmra!(
942
942
end
943
943
944
944
add_diagnostic_variable! (
945
- short_name = " nmra " ,
946
- long_name = " Number Concentration of Rain " ,
947
- standard_name = " number_concentration_of_rain " ,
948
- units = " 1 m^-3" ,
945
+ short_name = " ncra " ,
946
+ long_name = " Raindrop Number Concentration" ,
947
+ standard_name = " number_concentration_of_raindrops_in_air " ,
948
+ units = " m^-3" ,
949
949
comments = """
950
950
This is calculated as the number of raindrops in the grid cell divided
951
951
by the cell volume.
952
952
""" ,
953
- compute! = compute_nmra !,
953
+ compute! = compute_ncra !,
954
954
)
955
955
956
- compute_nmsn ! (out, state, cache, time) =
957
- compute_nmsn ! (out, state, cache, time, cache. atmos. precip_model)
958
- compute_nmsn ! (_, _, _, _, model:: T ) where {T} =
959
- error_diagnostic_variable (" nmsn " , model)
956
+ compute_ncsn ! (out, state, cache, time) =
957
+ compute_ncsn ! (out, state, cache, time, cache. atmos. precip_model)
958
+ compute_ncsn ! (_, _, _, _, model:: T ) where {T} =
959
+ error_diagnostic_variable (" ncsn " , model)
960
960
961
- function compute_nmsn ! (
961
+ function compute_ncsn ! (
962
962
out,
963
963
state,
964
964
cache,
@@ -973,15 +973,15 @@ function compute_nmsn!(
973
973
end
974
974
975
975
add_diagnostic_variable! (
976
- short_name = " nmsn " ,
977
- long_name = " Number Concentration of Snow " ,
978
- standard_name = " number_concentration_of_snow " ,
979
- units = " 1 m^-3" ,
976
+ short_name = " ncsn " ,
977
+ long_name = " Snowflake Number Concentration" ,
978
+ standard_name = " number_concentration_of_snowflakes_in_air " ,
979
+ units = " m^-3" ,
980
980
comments = """
981
981
This is calculated as the number of snow flakes in the grid cell divided
982
982
by the cell volume.
983
983
""" ,
984
- compute! = compute_nmsn !,
984
+ compute! = compute_ncsn !,
985
985
)
986
986
987
987
# ##
0 commit comments