├── .gitignore ├── LICENSE ├── README.md ├── examples ├── .ipynb_checkpoints │ ├── advanced baseline processing-checkpoint.ipynb │ ├── fitting over and undecoupled resonators in refelction-checkpoint.ipynb │ └── pandas_and_circlefit-checkpoint.ipynb ├── S11.txt ├── S21testdata.s2p ├── advanced baseline processing.ipynb ├── fitting over and undecoupled resonators in reflection.ipynb ├── notch_port_example.py ├── notch_port_example_withGUI.py ├── pandas_and_circlefit.ipynb ├── reflection_port_example.py ├── reflection_port_example_withGUI.py └── remove_wiggly_baseline_with GUI.py ├── old_discontinued_circlefit └── Circlefit_V3.1.zip ├── resonator_tools ├── __init__.py ├── calibration.py ├── circlefit.py ├── circuit.py ├── noise.py └── utilities.py ├── setup.py └── tests ├── __init__.py └── resonator_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/README.md -------------------------------------------------------------------------------- /examples/.ipynb_checkpoints/advanced baseline processing-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/.ipynb_checkpoints/advanced baseline processing-checkpoint.ipynb -------------------------------------------------------------------------------- /examples/.ipynb_checkpoints/fitting over and undecoupled resonators in refelction-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/.ipynb_checkpoints/fitting over and undecoupled resonators in refelction-checkpoint.ipynb -------------------------------------------------------------------------------- /examples/.ipynb_checkpoints/pandas_and_circlefit-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/.ipynb_checkpoints/pandas_and_circlefit-checkpoint.ipynb -------------------------------------------------------------------------------- /examples/S11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/S11.txt -------------------------------------------------------------------------------- /examples/S21testdata.s2p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/S21testdata.s2p -------------------------------------------------------------------------------- /examples/advanced baseline processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/advanced baseline processing.ipynb -------------------------------------------------------------------------------- /examples/fitting over and undecoupled resonators in reflection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/fitting over and undecoupled resonators in reflection.ipynb -------------------------------------------------------------------------------- /examples/notch_port_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/notch_port_example.py -------------------------------------------------------------------------------- /examples/notch_port_example_withGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/notch_port_example_withGUI.py -------------------------------------------------------------------------------- /examples/pandas_and_circlefit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/pandas_and_circlefit.ipynb -------------------------------------------------------------------------------- /examples/reflection_port_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/reflection_port_example.py -------------------------------------------------------------------------------- /examples/reflection_port_example_withGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/reflection_port_example_withGUI.py -------------------------------------------------------------------------------- /examples/remove_wiggly_baseline_with GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/examples/remove_wiggly_baseline_with GUI.py -------------------------------------------------------------------------------- /old_discontinued_circlefit/Circlefit_V3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/old_discontinued_circlefit/Circlefit_V3.1.zip -------------------------------------------------------------------------------- /resonator_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resonator_tools/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/resonator_tools/calibration.py -------------------------------------------------------------------------------- /resonator_tools/circlefit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/resonator_tools/circlefit.py -------------------------------------------------------------------------------- /resonator_tools/circuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/resonator_tools/circuit.py -------------------------------------------------------------------------------- /resonator_tools/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/resonator_tools/noise.py -------------------------------------------------------------------------------- /resonator_tools/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/resonator_tools/utilities.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resonator_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianprobst/resonator_tools/HEAD/tests/resonator_tests.py --------------------------------------------------------------------------------