Coverage for pyrc \ __init__.py: 100%

26 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# ------------------------------------------------------------------------------ 

7""" 

8PyRC enables the creation and dynamic simulation of resistor-capacitor networks, e.g. thermal systems. 

9The core implementation is in ``pyrc.core``; example networks are in ``pyrc.model``. 

10""" 

11from pyrc.paths import run_folder 

12 

13__all__ = [] 

14 

15from pyrc.core import * 

16from pyrc.core import __all__ as _core_all_ 

17__all__.extend(_core_all_) 

18 

19from pyrc.dataHandler import * 

20from pyrc.dataHandler import __all__ as _data_handler_all_ 

21__all__.extend(_data_handler_all_) 

22 

23from pyrc.heat_pump import * 

24from pyrc.heat_pump import __all__ as _heat_pump_all_ 

25__all__.extend(_heat_pump_all_) 

26 

27from pyrc.model import * 

28from pyrc.model import __all__ as _model_all_ 

29__all__.extend(_model_all_) 

30 

31from pyrc.postprocessing import * 

32from pyrc.postprocessing import __all__ as _postprocessing_all_ 

33__all__.extend(_postprocessing_all_) 

34 

35from pyrc.tools import * 

36from pyrc.tools import __all__ as _tools_all_ 

37 

38__all__.extend(_tools_all_) 

39 

40from pyrc.utils import * 

41from pyrc.utils import __all__ as _utils_all_ 

42__all__.extend(_utils_all_) 

43 

44from pyrc.visualization import * 

45from pyrc.visualization import __all__ as _visualization_all_ 

46 

47__all__.extend(_visualization_all_)