Output.units#
- property Output.units#
Return SWMM output binary file units for unit system, flow, and pollutants
- Returns:
dict indicating units for unit system, flow, and pollutant
- Return type:
Examples:
>>> from pyswmm import Output >>> >>> with Output('tests/data/model_full_features.out') as out: ... print(out.units) >>> {'system': 'US', 'flow': 'CFS', 'pollutant': 'NONE'}