HOME ESR EXPERIMENTS LABS etc
NucAR lab laser_lab Fritz-Bosch-Lab X-Ray Lab target Beavertail
  NucAR lab  Not logged in ELOG logo
Message ID: 15     Entry time: Thu Jan 26 16:34:43 2023
Author: Jan 
Category: Detectors 
Subject: DSSD W1 3305-09 - UI diagram 
Attached is the UI diagram of the new double-sided silicon strip detector (DSSD). [Micron W1, ID: 3305-9] 
It was taken during the internship of Emily Voigt and Rebanna Klawitter.

Conditons:
- DSSD in dark test chamber
- under atmosphere pressure
- no alpha source or similar

Analysis:
The current is roughly linear with voltage up to values of about 110-120V. After this point the current increases more slowly, kind of a plateau.
The comparison to an older measurement [https://elog.gsi.de/esr/E127/292] with another, identical DSSD is not fully understood. No plateau seems to reached in the range up to 150V. The currents are also significanlty higher.

Conclusion:
Save operation is possible up to 100V. 
Voltages above 100V should only be used in case of ion damage and related performance losses.
Attachment 1: Si_U_I_curve.txt  220 Bytes  | Hide | Hide all | Show all
10;63.5;64.0
20;74.5;75.0
30;81.0;82.0
40;85.0;88.0
50;93.5;94.0
60;103.0;103.5
70;111.5;112.0
80;120.0;120.5
90;128.0;128.0
100;135.5;135.5
110;141.5;141.5
120;146.0;146.0
130;149.0;148.5
140;151.0;151.0
150;153.5;153.5
Attachment 2: Praktikum_U_I.pdf  11 kB  | Show | Hide all | Show all
Attachment 3: praktikum.py  962 Bytes  | Hide | Hide all | Show all
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Jan 26 14:36:33 2023

@author: macbook
"""

import matplotlib.pyplot as plt

plt.style.use('bmh')
plt.rcParams["figure.figsize"] = (10, 5)  

Datei = open('Si_U_I_curve.txt')
inhalt = Datei.read()

zeilen = inhalt.split('\n')

tabelle = []

for zeile in range(len(zeilen)):
    spalten = zeilen[zeile].split(';')
    tabelle.append(spalten)
    tabelle[zeile][0:] = [float(zahl) for zahl in tabelle [zeile][0:]]
    
y1 = [zeile[1]/1000 for zeile in tabelle]
y2 = [zeile[2]/1000 for zeile in tabelle]

y_alt = [0.11, 0.13, 0.15, 0.17, 0.19, 0.21, 0.22, 0.23, 0.25, 0.27, 0.29, 0.31, 0.33, 0.35, 0.37]

x = [zeile[0] for zeile in tabelle]
 
plt.plot(x,y1, label='26.01.2023, 3305-9')
plt.plot(x,y2, label = "26.01.2023, 3305-9" )
plt.plot(x,y_alt, label = "28.04.2021, 3305-11")
plt.xlabel("U [V]")
plt.ylabel("I [$\mu$ A]")
plt.legend(loc= "upper left")

plt.savefig('Praktikum_U_I.pdf', dpi=500)
Attachment 4: W1_3305-9_U_I_diagram.txt  268 Bytes  Uploaded Fri Jan 27 16:17:44 2023  | Show | Hide all | Show all
Attachment 5: UI_diagram_W1_3305-9_2022.png  16 kB  Uploaded Fri Jan 27 16:19:06 2023  | Hide | Hide all | Show all
UI_diagram_W1_3305-9_2022.png
ELOG V3.1.5-fc6679b