diff --git a/hermesv3_bu/sectors/point_source_sector.py b/hermesv3_bu/sectors/point_source_sector.py index 420c0817dba88af26854b2e1d490efe83ad57cef..6a404ba6284b9efb09602a068f7f495dab8b5afc 100755 --- a/hermesv3_bu/sectors/point_source_sector.py +++ b/hermesv3_bu/sectors/point_source_sector.py @@ -18,6 +18,7 @@ INTERPOLATION_TYPE = 'linear' GRAVITY = 9.81 # CP J/kg*K CP = 1005 +HEIGHT_INC = 1.8 class PointSourceSector(Sector): @@ -832,7 +833,7 @@ class PointSourceSector(Sector): catalog = self.set_layer(catalog) else: - catalog['Height'] = catalog['Height'] * 1.2 + catalog['Height'] = catalog['Height'] * HEIGHT_INC catalog['layer'] = np.searchsorted(self.vertical_levels, catalog['Height'], side='left')