Skip to content

Commit

Permalink
davidmaycommitt
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeana committed May 20, 2022
1 parent 37487c1 commit 35fcbd0
Show file tree
Hide file tree
Showing 9 changed files with 9,274 additions and 114 deletions.
1,250 changes: 1,199 additions & 51 deletions .ipynb_checkpoints/CSV_read_and_fit-checkpoint.ipynb

Large diffs are not rendered by default.

3,432 changes: 3,432 additions & 0 deletions .ipynb_checkpoints/ImageDisplay-checkpoint.ipynb

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .ipynb_checkpoints/PostProcessing-checkpoint.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"# Given mot size (sigma) vs time from an expansion time scan, calculates temperature\n",
"# Requires an expansion time scan!\n",
"\n",
"sigma_magn_fit_data = sigmax#np.sqrt(sigmax**2 + sigmay**2)\n",
"sigma_magn_fit_data = np.sqrt(sigmax**2 + sigmay**2) #sigmax\n",
"t_fit_data = variable\n",
"for i in range(len(sigma_magn_fit_data)): #This changes any nan values to the mean of the surrounding values\n",
" if np.isnan(sigma_magn_fit_data[i]) == True or sigma_magn_fit_data[i] > np.mean(sigma_magn_fit_data)+2*np.nanstd(sigma_magn_fit_data) or sigma_magn_fit_data[i] < np.mean(sigma_magn_fit_data)-2*np.nanstd(sigma_magn_fit_data):\n",
Expand Down Expand Up @@ -703,7 +703,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -717,7 +717,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
1,250 changes: 1,199 additions & 51 deletions CSV_read_and_fit.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions FileLoadScript-Tweezer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -459,7 +459,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions FileLoadScript.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -177,7 +177,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
3,432 changes: 3,432 additions & 0 deletions ImageDisplay.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions NPBinaryPlots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -345,7 +345,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down
6 changes: 3 additions & 3 deletions PostProcessing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
"# Given mot size (sigma) vs time from an expansion time scan, calculates temperature\n",
"# Requires an expansion time scan!\n",
"\n",
"sigma_magn_fit_data = sigmax#np.sqrt(sigmax**2 + sigmay**2)\n",
"sigma_magn_fit_data = np.sqrt(sigmax**2 + sigmay**2) #sigmax\n",
"t_fit_data = variable\n",
"for i in range(len(sigma_magn_fit_data)): #This changes any nan values to the mean of the surrounding values\n",
" if np.isnan(sigma_magn_fit_data[i]) == True or sigma_magn_fit_data[i] > np.mean(sigma_magn_fit_data)+2*np.nanstd(sigma_magn_fit_data) or sigma_magn_fit_data[i] < np.mean(sigma_magn_fit_data)-2*np.nanstd(sigma_magn_fit_data):\n",
Expand Down Expand Up @@ -703,7 +703,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -717,7 +717,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.4"
"version": "3.9.7"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 35fcbd0

Please sign in to comment.