[Dart-dev] [5867] DART/branches/development: Added support for the ground heat flux for noah.
nancy at ucar.edu
nancy at ucar.edu
Thu Sep 13 17:06:58 MDT 2012
Revision: 5867
Author: thoar
Date: 2012-09-13 17:06:58 -0600 (Thu, 13 Sep 2012)
Log Message:
-----------
Added support for the ground heat flux for noah.
>From Rafael Rosolem: "... to be consistent with the energy
components we are already tested in DART (HFX and QFX),
we need to include the ground heat flux as well (GRDFLX).
I looked for a obs_kind for ground heat flux but appears
that we don't have one."
We do now.
Modified Paths:
--------------
DART/branches/development/models/noah/work/input.nml
DART/branches/development/obs_kind/DEFAULT_obs_kind_mod.F90
-------------- next part --------------
Modified: DART/branches/development/models/noah/work/input.nml
===================================================================
--- DART/branches/development/models/noah/work/input.nml 2012-09-13 22:29:08 UTC (rev 5866)
+++ DART/branches/development/models/noah/work/input.nml 2012-09-13 23:06:58 UTC (rev 5867)
@@ -16,7 +16,8 @@
'WEASD', 'KIND_SNOW_WATER',
'CANWAT', 'KIND_CANOPY_WATER',
'QFX', 'KIND_LATENT_HEAT_FLUX',
- 'HFX', 'KIND_SENSIBLE_HEAT_FLUX'
+ 'HFX', 'KIND_SENSIBLE_HEAT_FLUX',
+ 'GRDFLX', 'KIND_GROUND_HEAT_FLUX'
/
&noah_to_dart_nml
@@ -234,7 +235,6 @@
hlevel = 0.0, -0.25, -0.7, -1.5, -10.0
/
-
&model_mod_check_nml
input_file = "dart_ics",
output_file = "check_me_out",
Modified: DART/branches/development/obs_kind/DEFAULT_obs_kind_mod.F90
===================================================================
--- DART/branches/development/obs_kind/DEFAULT_obs_kind_mod.F90 2012-09-13 22:29:08 UTC (rev 5866)
+++ DART/branches/development/obs_kind/DEFAULT_obs_kind_mod.F90 2012-09-13 23:06:58 UTC (rev 5867)
@@ -259,11 +259,12 @@
! kinds for NOAH (Tim Hoar)
integer, parameter, public :: &
KIND_NEUTRON_INTENSITY = 129, &
- KIND_CANOPY_WATER = 130
+ KIND_CANOPY_WATER = 130, &
+ KIND_GROUND_HEAT_FLUX = 131
!! PRIVATE ONLY TO THIS MODULE. see comment below near the max_obs_specific
!! declaration.
-integer, parameter :: max_obs_generic = 130
+integer, parameter :: max_obs_generic = 131
!----------------------------------------------------------------------------
! This list is autogenerated by the 'preprocess' program. To add new
@@ -513,6 +514,7 @@
obs_kind_names(128) = obs_kind_type(KIND_WATER_TABLE_DEPTH ,'KIND_WATER_TABLE_DEPTH')
obs_kind_names(129) = obs_kind_type(KIND_NEUTRON_INTENSITY ,'KIND_NEUTRON_INTENSITY')
obs_kind_names(130) = obs_kind_type(KIND_CANOPY_WATER ,'KIND_CANOPY_WATER')
+obs_kind_names(131) = obs_kind_type(KIND_GROUND_HEAT_FLUX ,'KIND_GROUND_HEAT_FLUX')
! count here, then output below
More information about the Dart-dev
mailing list