Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisRenchon committed Jun 14, 2024
1 parent 4c677f0 commit 1687b66
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/Diagnostics/define_diagnostics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function define_diagnostics!(land_model)
long_name = "Albedo",
standard_name = "albedo",
units = "",
comment = "The fraction of incoming radiation reflected by the land surface.",
comments = "The fraction of incoming radiation reflected by the land surface.",
compute! = (out, Y, p, t) -> compute_albedo!(out, Y, p, t, land_model),
)

Expand All @@ -23,7 +23,7 @@ function define_diagnostics!(land_model)
long_name = "Net Radiation",
standard_name = "net_radiation",
units = "W m^-2",
comment = "Balance between incoming and outgoing shortwave and longwave radiation at the land surface.",
comments = "Balance between incoming and outgoing shortwave and longwave radiation at the land surface.",
compute! = (out, Y, p, t) ->
compute_net_radiation!(out, Y, p, t, land_model),
)
Expand All @@ -34,7 +34,7 @@ function define_diagnostics!(land_model)
long_name = "Surface Temperature",
standard_name = "surface_temperature",
units = "K",
comment = "Temperature at the land-atmosphere interface.",
comments = "Temperature at the land-atmosphere interface.",
compute! = (out, Y, p, t) ->
compute_surface_temperature!(out, Y, p, t, land_model),
)
Expand All @@ -45,7 +45,7 @@ function define_diagnostics!(land_model)
long_name = "Surface Specific Humidity",
standard_name = "surface_specific_humidity",
units = "",
comment = "Ratio of water vapor mass to total moist air parcel mass.",
comments = "Ratio of water vapor mass to total moist air parcel mass.",
compute! = (out, Y, p, t) ->
compute_surface_specific_humidity!(out, Y, p, t, land_model),
)
Expand All @@ -56,7 +56,7 @@ function define_diagnostics!(land_model)
long_name = "Latent Heat Flux",
standard_name = "latent_heat_flux",
units = "W m^-2",
comment = "Exchange of energy at the land-atmosphere interface due to water evaporation.",
comments = "Exchange of energy at the land-atmosphere interface due to water evaporation.",
compute! = (out, Y, p, t) ->
compute_latent_heat_flux!(out, Y, p, t, land_model),
)
Expand All @@ -67,7 +67,7 @@ function define_diagnostics!(land_model)
long_name = "Aerodynamic Resistance",
standard_name = "aerodynamic_resistance",
units = "m s^-1",
comment = "Effiency of turbulent transport controlling the land-atmosphere exchange of sensible and latent heat.",
comments = "Effiency of turbulent transport controlling the land-atmosphere exchange of sensible and latent heat.",
compute! = (out, Y, p, t) ->
compute_aerodynamic_resistance!(out, Y, p, t, land_model),
)
Expand All @@ -78,7 +78,7 @@ function define_diagnostics!(land_model)
long_name = "Sensible Heat Flux",
standard_name = "sensible_heat_flux",
units = "W m^-2",
comment = "Exchange of energy at the land-atmosphere interface due to temperature difference.",
comments = "Exchange of energy at the land-atmosphere interface due to temperature difference.",
compute! = (out, Y, p, t) ->
compute_sensible_heat_flux!(out, Y, p, t, land_model),
)
Expand All @@ -89,7 +89,7 @@ function define_diagnostics!(land_model)
long_name = "Liquid water evaporation",
standard_name = "vapor_flux",
units = "m s^-1",
comment = "Evaporation of liquid water from the land surface to the atmosphere.",
comments = "Evaporation of liquid water from the land surface to the atmosphere.",
compute! = (out, Y, p, t) ->
compute_vapor_flux!(out, Y, p, t, land_model),
)
Expand All @@ -100,7 +100,7 @@ function define_diagnostics!(land_model)
long_name = "Surface Air Density",
standard_name = "surface_air_density",
units = "kg m^−3",
comment = "Density of air and the land-atmosphere interface.",
comments = "Density of air and the land-atmosphere interface.",
compute! = (out, Y, p, t) ->
compute_surface_air_density!(out, Y, p, t, land_model),
)
Expand All @@ -113,7 +113,7 @@ function define_diagnostics!(land_model)
long_name = "Soil temperature",
standard_name = "soil_temperature",
units = "K",
comment = "Soil temperature at multiple soil depth.",
comments = "Soil temperature at multiple soil depth.",
compute! = (out, Y, p, t) ->
compute_soil_temperature!(out, Y, p, t, land_model),
)
Expand All @@ -124,7 +124,7 @@ function define_diagnostics!(land_model)
long_name = "subsurface Water Storage",
standard_name = "subsurface_water_storage",
units = "m",
comment = "Soil water content at multiple depth.",
comments = "Soil water content at multiple depth.",
compute! = (out, Y, p, t) ->
compute_subsurface_water_storage!(out, Y, p, t, land_model),
)
Expand All @@ -135,7 +135,7 @@ function define_diagnostics!(land_model)
long_name = "Surface Water Content",
standard_name = "surface_water_content",
units = "m",
comment = "Water at the soil surface.",
comments = "Water at the soil surface.",
compute! = (out, Y, p, t) ->
compute_surface_water_content!(out, Y, p, t, land_model),
)
Expand All @@ -146,7 +146,7 @@ function define_diagnostics!(land_model)
long_name = "Snow Water Equivalent",
standard_name = "snow_water_equivalent",
units = "m",
comment = "Snow at the soil surface, expressed in water equivalent.",
comments = "Snow at the soil surface, expressed in water equivalent.",
compute! = (out, Y, p, t) ->
compute_snow_water_equivalent!(out, Y, p, t, land_model),
)
Expand Down

0 comments on commit 1687b66

Please sign in to comment.