Compare commits
No commits in common. "7d2d879d719e58ad04cfc9277587278c08323bef" and "6651c058584abe0791da4cd126916547a01f66a5" have entirely different histories.
7d2d879d71
...
6651c05858
3 changed files with 4 additions and 23 deletions
|
|
@ -283,7 +283,7 @@ def adc_to_T(adc):
|
||||||
dac = 62690
|
dac = 62690
|
||||||
T = 0
|
T = 0
|
||||||
alpha = np.log(R1/R25 *(dac/(dac-adc)-1))
|
alpha = np.log(R1/R25 *(dac/(dac-adc)-1))
|
||||||
T = 1/(alpha/b+1/298.15) - 273.15
|
T = 1/(alpha/b+1/298.15) -273.15
|
||||||
return T
|
return T
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
24
README.md
24
README.md
|
|
@ -1,24 +1,6 @@
|
||||||
# BGO
|
# BGO
|
||||||
authors: Ava, Nicolas
|
|
||||||
description: git repositpory of scripts for data analysis of experiments with large BGO
|
|
||||||
---------------------------------------------------------------------------------------
|
|
||||||
scripts are designed to be executed in the command line
|
|
||||||
type 'scriptname.py -h' to see what the script does and what options are available
|
|
||||||
---------------------------------------------------------------------------------------
|
|
||||||
universal script 'AHBGOx.py' processes EI-data and stores results in '/histograms'
|
|
||||||
figures will be saved in '/plots'
|
|
||||||
---------------------------------------------------------------------------------------
|
|
||||||
DATA STORAGE
|
|
||||||
EI-data is stored in '/net/asterix3/data/asterix/athena/arm/irena/ahbgo'
|
|
||||||
The file 'README.txt' in the previous destination provides description to the data files
|
|
||||||
|
|
||||||
pressure and temperature data from vac-cham is stored in '/net/falbala/home/falbala/stephan/solo/spectra/dau'
|
scripts for data analysis of experiments with large BGO
|
||||||
|
|
||||||
histograms,Itime, dau(T_BGO) are beeing created using f.e. 'AHBGOx.py' and stored in '/histograms'. The foulder '/histograms/' is ignored by the git repository. Create data by yourself or copy 'net/asterix/home/asterix/ava/BGO/histograms/'
|
To DO
|
||||||
--------------------------------------------------------------------------------------
|
Irgendwas
|
||||||
SYMLINK
|
|
||||||
to avoid long file paths in the function call, symlinks to the storage locations are suitable
|
|
||||||
|
|
||||||
example: 'ln -s /net/falbala/home/falbala/stephan/solo/spectra/dau/ dau'
|
|
||||||
|
|
||||||
to see, where the symlink goes type 'readlink -f dau'
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ Created on Tue May 21 11:22:59 2024
|
||||||
@author: Nicolas Rohrbeck
|
@author: Nicolas Rohrbeck
|
||||||
Program to show a plot of Temp and (Pressure is broken atm!!!) against time. Needs to be modified to be more commonly usable.
|
Program to show a plot of Temp and (Pressure is broken atm!!!) against time. Needs to be modified to be more commonly usable.
|
||||||
Calling syntax is: plot_tp.py -p FILE1 -T FILE2 -Tbgo FILE3
|
Calling syntax is: plot_tp.py -p FILE1 -T FILE2 -Tbgo FILE3
|
||||||
data usually stored in /home/falbala/stephan/solo/spectra/dau
|
|
||||||
"""
|
"""
|
||||||
from matplotlib import pyplot as plt
|
from matplotlib import pyplot as plt
|
||||||
import argparse
|
import argparse
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue