@@ -540,7 +540,7 @@ subroutine SetServices ( GC, RC )
540
540
! Exports for Catchment prognostics increments
541
541
542
542
call MAPL_AddExportSpec(GC ,&
543
- LONG_NAME = ' increment_canopy_temperature_saturated_zone ' ,&
543
+ LONG_NAME = ' increment_surface_temperature_of_saturated_zone ' ,&
544
544
UNITS = ' K' ,&
545
545
SHORT_NAME = ' TCFSAT_INCR' ,&
546
546
DIMS = MAPL_DimsTileOnly ,&
@@ -549,7 +549,7 @@ subroutine SetServices ( GC, RC )
549
549
_VERIFY(STATUS)
550
550
551
551
call MAPL_AddExportSpec(GC ,&
552
- LONG_NAME = ' increment_canopy_temperature_transition_zone ' ,&
552
+ LONG_NAME = ' increment_surface_temperature_of_unsaturated_zone ' ,&
553
553
UNITS = ' K' ,&
554
554
SHORT_NAME = ' TCFTRN_INCR' ,&
555
555
DIMS = MAPL_DimsTileOnly ,&
@@ -558,7 +558,7 @@ subroutine SetServices ( GC, RC )
558
558
_VERIFY(STATUS)
559
559
560
560
call MAPL_AddExportSpec(GC ,&
561
- LONG_NAME = ' increment_canopy_temperature_wilting_zone ' ,&
561
+ LONG_NAME = ' increment_surface_temperature_of_wilting_zone ' ,&
562
562
UNITS = ' K' ,&
563
563
SHORT_NAME = ' TCFWLT_INCR' ,&
564
564
DIMS = MAPL_DimsTileOnly ,&
@@ -567,7 +567,7 @@ subroutine SetServices ( GC, RC )
567
567
_VERIFY(STATUS)
568
568
569
569
call MAPL_AddExportSpec(GC ,&
570
- LONG_NAME = ' increment_canopy_specific_humidity_saturated_zone ' ,&
570
+ LONG_NAME = ' increment_surface_specific_humidity_of_saturated_zone ' ,&
571
571
UNITS = ' kg kg-1' ,&
572
572
SHORT_NAME = ' QCFSAT_INCR' ,&
573
573
DIMS = MAPL_DimsTileOnly ,&
@@ -576,7 +576,7 @@ subroutine SetServices ( GC, RC )
576
576
_VERIFY(STATUS)
577
577
578
578
call MAPL_AddExportSpec(GC ,&
579
- LONG_NAME = ' increment_canopy_specific_humidity_transition_zone ' ,&
579
+ LONG_NAME = ' increment_surface_specific_humidity_of_unsaturated_zone ' ,&
580
580
UNITS = ' kg kg-1' ,&
581
581
SHORT_NAME = ' QCFTRN_INCR' ,&
582
582
DIMS = MAPL_DimsTileOnly ,&
@@ -585,7 +585,7 @@ subroutine SetServices ( GC, RC )
585
585
_VERIFY(STATUS)
586
586
587
587
call MAPL_AddExportSpec(GC ,&
588
- LONG_NAME = ' increment_canopy_specific_humidity_wilting_zone ' ,&
588
+ LONG_NAME = ' increment_surface_specific_humidity_of_wilting_zone ' ,&
589
589
UNITS = ' kg kg-1' ,&
590
590
SHORT_NAME = ' QCFWLT_INCR' ,&
591
591
DIMS = MAPL_DimsTileOnly ,&
@@ -594,7 +594,7 @@ subroutine SetServices ( GC, RC )
594
594
_VERIFY(STATUS)
595
595
596
596
call MAPL_AddExportSpec(GC ,&
597
- LONG_NAME = ' increment_interception_reservoir_capac ' ,&
597
+ LONG_NAME = ' increment_vegetation_interception_water_storage ' ,&
598
598
UNITS = ' kg m-2' ,&
599
599
SHORT_NAME = ' CAPAC_INCR' ,&
600
600
DIMS = MAPL_DimsTileOnly ,&
@@ -847,18 +847,18 @@ subroutine SetServices ( GC, RC )
847
847
VERIFY_(STATUS)
848
848
849
849
call MAPL_AddExportSpec(GC ,&
850
- LONG_NAME = ' soil_temperatures_layer_1_analysis ' ,&
850
+ LONG_NAME = ' soil_temperature_layer_1_analysis ' ,&
851
851
UNITS = ' K' ,&
852
- SHORT_NAME = ' TSOIL1_ANA ' ,&
852
+ SHORT_NAME = ' TP1_ANA ' ,&
853
853
DIMS = MAPL_DimsTileOnly ,&
854
854
VLOCATION = MAPL_VLocationNone ,&
855
855
RC= STATUS )
856
856
VERIFY_(STATUS)
857
857
858
858
call MAPL_AddExportSpec(GC ,&
859
- LONG_NAME = ' soil_temperatures_layer_1_analysis_ensstd ' ,&
859
+ LONG_NAME = ' soil_temperature_layer_1_analysis_ensstd ' ,&
860
860
UNITS = ' K' ,&
861
- SHORT_NAME = ' TSOIL1_ANA_ENSSTD ' ,&
861
+ SHORT_NAME = ' TP1_ANA_ENSSTD ' ,&
862
862
DIMS = MAPL_DimsTileOnly ,&
863
863
VLOCATION = MAPL_VLocationNone ,&
864
864
RC= STATUS )
@@ -1531,13 +1531,13 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
1531
1531
real , dimension (:),pointer :: RZMC_ana= >null () ! rootzone soil moisture
1532
1532
real , dimension (:),pointer :: PRMC_ana= >null () ! profile soil moisture
1533
1533
real , dimension (:),pointer :: TPSURF_ana= >null () ! tpsurf
1534
- real , dimension (:),pointer :: TSOIL1_ana = >null () ! tsoil1
1534
+ real , dimension (:),pointer :: TP1_ana = >null () ! tsoil1
1535
1535
1536
1536
real , dimension (:),pointer :: SFMC_ana_ensstd= >null () ! surface soil moisture
1537
1537
real , dimension (:),pointer :: RZMC_ana_ensstd= >null () ! rootzone soil moisture
1538
1538
real , dimension (:),pointer :: PRMC_ana_ensstd= >null () ! profile soil moisture
1539
1539
real , dimension (:),pointer :: TPSURF_ana_ensstd= >null () ! tpsurf
1540
- real , dimension (:),pointer :: TSOIL1_ana_ensstd = >null () ! tsoil1
1540
+ real , dimension (:),pointer :: TP1_ana_ensstd = >null () ! tsoil1
1541
1541
1542
1542
! ! export for microwave radiative transfer model (mwRTM)
1543
1543
@@ -1699,7 +1699,7 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
1699
1699
1700
1700
call MAPL_GetPointer(export, TPSURF_ana, ' TPSURF_ANA' ,rc= status)
1701
1701
VERIFY_(status)
1702
- call MAPL_GetPointer(export, TSOIL1_ana , ' TSOIL1_ANA ' ,rc= status)
1702
+ call MAPL_GetPointer(export, TP1_ana , ' TP1_ANA ' ,rc= status)
1703
1703
VERIFY_(status)
1704
1704
call MAPL_GetPointer(export, SFMC_ana, ' WCSF_ANA' ,rc= status)
1705
1705
VERIFY_(status)
@@ -1709,7 +1709,7 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
1709
1709
VERIFY_(status)
1710
1710
call MAPL_GetPointer(export, TPSURF_ana_ensstd, ' TPSURF_ANA_ENSSTD' ,rc= status)
1711
1711
VERIFY_(status)
1712
- call MAPL_GetPointer(export, TSOIL1_ana_ensstd , ' TSOIL1_ANA_ENSSTD ' ,rc= status)
1712
+ call MAPL_GetPointer(export, TP1_ana_ensstd , ' TP1_ANA_ENSSTD ' ,rc= status)
1713
1713
VERIFY_(status)
1714
1714
call MAPL_GetPointer(export, SFMC_ana_ensstd, ' WCSF_ANA_ENSSTD' ,rc= status)
1715
1715
VERIFY_(status)
@@ -2046,13 +2046,13 @@ subroutine RUN ( GC, IMPORT, EXPORT, CLOCK, RC )
2046
2046
if (associated (RZMC_ana)) RZMC_ana(:) = cat_diagS_ensavg(:)% rzmc
2047
2047
if (associated (PRMC_ana)) PRMC_ana(:) = cat_diagS_ensavg(:)% prmc
2048
2048
if (associated (TPSURF_ana)) TPSURF_ana(:) = cat_diagS_ensavg(:)% tsurf
2049
- if (associated (TSOIL1_ana )) TSOIL1_ana (:) = cat_diagS_ensavg(:)% tp(1 ) + MAPL_TICE ! convert to K
2049
+ if (associated (TP1_ana )) TP1_ana (:) = cat_diagS_ensavg(:)% tp(1 ) + MAPL_TICE ! convert to K
2050
2050
2051
2051
if (associated (SFMC_ana_ensstd)) SFMC_ana_ensstd(:) = max ( cat_diagS_ensstd(:)% sfmc , 0 . )
2052
2052
if (associated (RZMC_ana_ensstd)) RZMC_ana_ensstd(:) = max ( cat_diagS_ensstd(:)% rzmc , 0 . )
2053
2053
if (associated (PRMC_ana_ensstd)) PRMC_ana_ensstd(:) = max ( cat_diagS_ensstd(:)% prmc , 0 . )
2054
2054
if (associated (TPSURF_ana_ensstd)) TPSURF_ana_ensstd(:) = max ( cat_diagS_ensstd(:)% tsurf , 0 . )
2055
- if (associated (TSOIL1_ana_ensstd )) TSOIL1_ana_ensstd (:) = max ( cat_diagS_ensstd(:)% tp(1 ) , 0 . )
2055
+ if (associated (TP1_ana_ensstd )) TP1_ana_ensstd (:) = max ( cat_diagS_ensstd(:)% tp(1 ) , 0 . )
2056
2056
2057
2057
if (associated (MWRTM_VEGOPACITY)) MWRTM_VEGOPACITY(:) = mwRTM_param(:)% VEGOPACITY
2058
2058
0 commit comments