You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/diagnostics/define_diagnostics.jl
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -979,8 +979,8 @@ function define_diagnostics!(land_model, possible_diags)
979
979
short_name ="sco2",
980
980
long_name ="Soil CO2",
981
981
standard_name ="soil_co2",
982
-
units ="kg C m^3",
983
-
comments ="Concentration of CO2 in the porous air space of the soil. (depth resolved)",
982
+
units ="kg C m^-3",
983
+
comments ="Soil CO2 carbon mass per soil volume (air + dissolved) (depth resolved).",
984
984
compute! = (out, Y, p, t) ->compute_soilco2!(out, Y, p, t, land_model),
985
985
)
986
986
@@ -1002,7 +1002,7 @@ function define_diagnostics!(land_model, possible_diags)
1002
1002
long_name ="Soil Organic Carbon",
1003
1003
standard_name ="soil_organic_carbon",
1004
1004
units ="kg C m^-3",
1005
-
comments ="Mass concentration of soil organic carbon. (depth resolved)",
1005
+
comments ="Soil organic carbon mass per soil volume (depth resolved).",
1006
1006
compute! = (out, Y, p, t) ->compute_soc!(out, Y, p, t, land_model),
1007
1007
)
1008
1008
conditional_add_diagnostic_variable!(
@@ -1016,6 +1016,16 @@ function define_diagnostics!(land_model, possible_diags)
1016
1016
compute_integrated_soc!(out, Y, p, t, land_model),
1017
1017
)
1018
1018
1019
+
# Soil CO2 in ppm (for NEON comparison)
1020
+
add_diagnostic_variable!(
1021
+
short_name ="sco2_ppm",
1022
+
long_name ="Soil Pore Air CO2 Concentration",
1023
+
standard_name ="soil_pore_air_co2_concentration",
1024
+
units ="ppm",
1025
+
comments ="CO2 concentration in soil pore air space, in parts per million by volume. Computed from air-equivalent CO2 concentration using ideal gas law. (depth resolved)",
1026
+
compute! = (out, Y, p, t) ->compute_soilco2_ppm!(out, Y, p, t, land_model),
0 commit comments