[Dart-dev] [6257] DART/trunk/models/tiegcm/model_mod.f90: Moved namelist so it is after the variable declarations.
nancy at ucar.edu
nancy at ucar.edu
Wed Jun 12 14:14:00 MDT 2013
Revision: 6257
Author: hkershaw
Date: 2013-06-12 14:13:59 -0600 (Wed, 12 Jun 2013)
Log Message:
-----------
Moved namelist so it is after the variable declarations. This was causing a problem for the pathscale/4.0.12.1 compiler on Yellowstone
Modified Paths:
--------------
DART/trunk/models/tiegcm/model_mod.f90
-------------- next part --------------
Modified: DART/trunk/models/tiegcm/model_mod.f90
===================================================================
--- DART/trunk/models/tiegcm/model_mod.f90 2013-06-12 16:19:10 UTC (rev 6256)
+++ DART/trunk/models/tiegcm/model_mod.f90 2013-06-12 20:13:59 UTC (rev 6257)
@@ -155,8 +155,6 @@
! read in from "tiegcm_s.nc")
!integer :: vert_localization_coord = VERTISHEIGHT
-namelist /model_nml/ output_state_vector, state_num_3d, state_num_1d
-
logical :: output_state_vector = .false.
! .true. results in a "state-vector" netCDF file
! .false. results in a "prognostic-var" netCDF file
@@ -167,6 +165,8 @@
character(len = 129) :: msgstring, msgstring2, msgstring3
logical, save :: module_initialized = .false.
+namelist /model_nml/ output_state_vector, state_num_3d, state_num_1d
+
contains
!==================================================================
More information about the Dart-dev
mailing list