update readme, repo name, window title

master
michael 2021-07-13 23:45:45 -07:00
parent 3e2a0416cc
commit 0e4423209e
3 changed files with 23 additions and 4 deletions

19
README.md Normal file
View File

@ -0,0 +1,19 @@
# CRDS Scan Analyzer
### Basics
- Designed for usage with **Mid-IR laser comb** scan output (time scale, not frequency)
- Expected data column format: `[time, signal voltage in, piezo crystal voltage out]`
### Usage
1. Import data (CSV format preferred, delimiter customization coming later, maybe even [LabView binary](https://pypi.org/project/npTDMS/))
2. Cut out & overlay peak groups using either piezo-voltage-threshold or group-spacing algorithm
3. Set peak isolation parameters + guesses for ringdown function coefficients
4. Admire glorious tau distributions for each comb tooth

6
app.ui
View File

@ -11,7 +11,7 @@
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>CRDS Time Analyzer</string> <string>CRDS Scanalyzer</string>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QGroupBox: {font-style: bold; font-size: 8px }</string> <string notr="true">QGroupBox: {font-style: bold; font-size: 8px }</string>
@ -149,7 +149,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>221</width> <width>221</width>
<height>101</height> <height>103</height>
</rect> </rect>
</property> </property>
<layout class="QFormLayout" name="formLayout"> <layout class="QFormLayout" name="formLayout">
@ -445,7 +445,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>1091</width> <width>1091</width>
<height>21</height> <height>26</height>
</rect> </rect>
</property> </property>
<widget class="file_menu" name="menuFile"> <widget class="file_menu" name="menuFile">

View File

@ -67,7 +67,7 @@ class help_menu(QtWidgets.QMenu):
self.addAction(visit_repo) self.addAction(visit_repo)
def go_to_repo(self): def go_to_repo(self):
PyQt5.QtGui.QDesktopServices.openUrl(QtCore.QUrl('https://github.com/turtlebasket/crds-time-analyzer')) PyQt5.QtGui.QDesktopServices.openUrl(QtCore.QUrl('https://github.com/turtlebasket/crds_analyze'))
# Inputs / Parameter boxes # Inputs / Parameter boxes