@@ -1677,7 +1677,7 @@ subroutine register_source(self, link, sms_id, source)
1677
1677
if (present (source)) source_ = source
1678
1678
if (.not. self% implements(source_)) source_ = source_constant
1679
1679
if (.not. associated (sms_id% link)) call self% add_interior_variable(trim (link% name)// ' _sms' , &
1680
- trim (link% target % units)// ' /s ' , trim (link% target % long_name)// ' sources-sinks' , fill_value= 0.0_rk , &
1680
+ trim (link% target % units)// ' s-1 ' , trim (link% target % long_name)// ' sources-sinks' , fill_value= 0.0_rk , &
1681
1681
missing_value= 0.0_rk , output= output_none, write_index= sms_id% sum_index, source= source_, link= sms_id% link)
1682
1682
sms_id% link% target % write_operator = operator_add
1683
1683
link2 = > link% target % sms_list% append (sms_id% link% target , sms_id% link% target % name)
@@ -1697,7 +1697,7 @@ subroutine register_surface_flux(self, link, surface_flux_id, source)
1697
1697
if (present (source)) source_ = source
1698
1698
if (.not. self% implements(source_)) source_ = source_constant
1699
1699
if (.not. associated (surface_flux_id% link)) call self% add_horizontal_variable(trim (link% name) // ' _sfl' , &
1700
- trim (link% target % units) // ' *m/s ' , trim (link% target % long_name) // ' surface flux' , fill_value= 0.0_rk , &
1700
+ trim (link% target % units) // ' m s-1 ' , trim (link% target % long_name) // ' surface flux' , fill_value= 0.0_rk , &
1701
1701
missing_value= 0.0_rk , output= output_none, write_index= surface_flux_id% horizontal_sum_index, &
1702
1702
domain= domain_surface, source= source_, link= surface_flux_id% link)
1703
1703
surface_flux_id% link% target % write_operator = operator_add
@@ -1718,7 +1718,7 @@ subroutine register_bottom_flux(self, link, bottom_flux_id, source)
1718
1718
if (present (source)) source_ = source
1719
1719
if (.not. self% implements(source_)) source_ = source_constant
1720
1720
if (.not. associated (bottom_flux_id% link)) call self% add_horizontal_variable(trim (link% name) // ' _bfl' , &
1721
- trim (link% target % units) // ' *m/s ' , trim (link% target % long_name) // ' bottom flux' , fill_value= 0.0_rk , &
1721
+ trim (link% target % units) // ' m s-1 ' , trim (link% target % long_name) // ' bottom flux' , fill_value= 0.0_rk , &
1722
1722
missing_value= 0.0_rk , output= output_none, write_index= bottom_flux_id% horizontal_sum_index, &
1723
1723
domain= domain_bottom, source= source_, link= bottom_flux_id% link)
1724
1724
bottom_flux_id% link% target % write_operator = operator_add
@@ -1738,7 +1738,7 @@ subroutine register_movement(self, link, movement_id, vertical_movement)
1738
1738
vertical_movement_ = 0.0_rk
1739
1739
if (present (vertical_movement)) vertical_movement_ = vertical_movement
1740
1740
if (.not. associated (movement_id% link)) call self% add_interior_variable(trim (link% name) // ' _w' , &
1741
- ' m/s ' , trim (link% target % long_name) // ' vertical velocity' , fill_value= vertical_movement_, missing_value= 0.0_rk , &
1741
+ ' m s-1 ' , trim (link% target % long_name) // ' vertical velocity' , fill_value= vertical_movement_, missing_value= 0.0_rk , &
1742
1742
output= output_none, write_index= movement_id% sum_index, link= movement_id% link, source= source_constant)
1743
1743
if (self% implements(source_get_vertical_movement)) then
1744
1744
movement_id% link% target % source = source_get_vertical_movement
@@ -1760,7 +1760,7 @@ subroutine register_surface_source(self, link, sms_id, source)
1760
1760
if (present (source)) source_ = source
1761
1761
if (.not. self% implements(source_)) source_ = source_constant
1762
1762
if (.not. associated (sms_id% link)) call self% add_horizontal_variable(trim (link% name) // ' _sms' , &
1763
- trim (link% target % units) // ' /s ' , trim (link% target % long_name) // ' sources-sinks' , fill_value= 0.0_rk , &
1763
+ trim (link% target % units) // ' s-1 ' , trim (link% target % long_name) // ' sources-sinks' , fill_value= 0.0_rk , &
1764
1764
missing_value= 0.0_rk , output= output_none, write_index= sms_id% horizontal_sum_index, link= sms_id% link, &
1765
1765
domain= domain_surface, source= source_)
1766
1766
sms_id% link% target % write_operator = operator_add
@@ -1781,7 +1781,7 @@ subroutine register_bottom_source(self, link, sms_id, source)
1781
1781
if (present (source)) source_ = source
1782
1782
if (.not. self% implements(source_)) source_ = source_constant
1783
1783
if (.not. associated (sms_id% link)) call self% add_horizontal_variable(trim (link% name) // ' _sms' , &
1784
- trim (link% target % units) // ' /s ' , trim (link% target % long_name) // ' sources-sinks' , fill_value= 0.0_rk , &
1784
+ trim (link% target % units) // ' s-1 ' , trim (link% target % long_name) // ' sources-sinks' , fill_value= 0.0_rk , &
1785
1785
missing_value= 0.0_rk , output= output_none, write_index= sms_id% horizontal_sum_index, link= sms_id% link, &
1786
1786
domain= domain_bottom, source= source_)
1787
1787
sms_id% link% target % write_operator = operator_add
0 commit comments