Coverage for pyrc \ postprocessing \ __init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-13 16:59 +0200

1# ------------------------------------------------------------------------------- 

2# Copyright (C) 2026 Joel Kimmich, Tim Jourdan 

3# ------------------------------------------------------------------------------ 

4# License 

5# This file is part of PyRC, distributed under GPL-3.0-or-later. 

6# ------------------------------------------------------------------------------ 

7from pyrc.postprocessing.heat import HeatFlux, plot_channel_balance, plot_fluxes_accumulated 

8from pyrc.postprocessing.parse_scop_files import parse_scop_file 

9from pyrc.postprocessing.parser import ( 

10 Filter, 

11 FilterMixin, 

12 NodeFilter, 

13 WeatherFilter, 

14 TimeFilter, 

15 NetworkFilter, 

16 FilteredRCSolution, 

17 FastParser, 

18 MultiParser, 

19) 

20 

21__all__ = ["HeatFlux", "plot_fluxes_accumulated", "plot_channel_balance", "parse_scop_files"] 

22__all__.extend( 

23 [ 

24 "Filter", 

25 "FilterMixin", 

26 "NodeFilter", 

27 "WeatherFilter", 

28 "TimeFilter", 

29 "NetworkFilter", 

30 "FilteredRCSolution", 

31 "FastParser", 

32 "MultiParser", 

33 ] 

34)