[Dart-dev] [3900] DART/trunk/models/wrf/model_mod.f90: the elevation data is read in outside the state vector
nancy at ucar.edu
nancy at ucar.edu
Tue Jun 2 15:44:37 MDT 2009
An HTML attachment was scrubbed...
URL: http://mailman.ucar.edu/pipermail/dart-dev/attachments/20090602/1e8e6c2f/attachment.html
-------------- next part --------------
Modified: DART/trunk/models/wrf/model_mod.f90
===================================================================
--- DART/trunk/models/wrf/model_mod.f90 2009-06-02 17:47:25 UTC (rev 3899)
+++ DART/trunk/models/wrf/model_mod.f90 2009-06-02 21:44:37 UTC (rev 3900)
@@ -5991,7 +5991,8 @@
enddo
-! part 3: fields you just have to have, always.
+! part 3: fields you just have to have, always, and other exceptions
+! and things that break the rules.
if (.not. in_state_vector(KIND_GEOPOTENTIAL_HEIGHT)) then
write(errstring, *) 'PH is always a required field'
call error_handler(E_ERR, 'fill_dart_kinds_table', errstring, &
@@ -6007,6 +6008,11 @@
source, revision, revdate)
endif
+! surface elevation is read in outside the state vector mechanism,
+! directly from the wrfinput template file, and does not vary from
+! one ensemble member to another.
+in_state_vector(KIND_SURFACE_ELEVATION) = .true.
+
end subroutine fill_dart_kinds_table
!--------------------------------------------
More information about the Dart-dev
mailing list