├── .idea ├── .name ├── hysep.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── physep ├── __init__.py ├── algorithm │ ├── __init__.py │ └── eckhardt.py ├── foo.py └── hysep.py └── test ├── __init__.py ├── hysep_data.csv └── test_bfs.py /.idea/.name: -------------------------------------------------------------------------------- 1 | hysep -------------------------------------------------------------------------------- /.idea/hysep.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/hysep.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/README.md -------------------------------------------------------------------------------- /physep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /physep/algorithm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /physep/algorithm/eckhardt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/physep/algorithm/eckhardt.py -------------------------------------------------------------------------------- /physep/foo.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /physep/hysep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/physep/hysep.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/hysep_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/test/hysep_data.csv -------------------------------------------------------------------------------- /test/test_bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dadelforge/baseflow-separation/HEAD/test/test_bfs.py --------------------------------------------------------------------------------