Commit 48022163 authored by Nicolas Nunez Barreto's avatar Nicolas Nunez Barreto

agrego12

parent c4b279a4
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu May 15 16:11:16 2025
@author: nico
"""
import numpy as np
import matplotlib.pyplot as plt
"""Calibracion amplitud AOM del UV.
f = 110 MHz
Ion cerca de la resonancia (Reso=1.18 V, Nosotrxs=1.33 V)
"""
fluo = [3600,2500,1400,600,180,4200,4600,5100,5800,6200]
fondo = [400,250,140,100,80,600,900,1300,1900,2600]
pot = [35,17,7,2,0.1,62,104,160,233,325]
plt.figure()
plt.plot(pot, [fluo[i]-fondo[i] for i in range(len(fluo))],'o')
plt.plot(pot,fondo,'o')
plt.xlim(-5,50)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment