DyLab_3D_MOT/RF_coil/frequency_response.py
2022-09-02 13:30:37 +02:00

23 lines
472 B
Python

import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl
from src import coil_class as BC
RF_Coil = BC.BCoil(HH = 1, distance = 54, radius = 38.4, layers = 1, windings = 1, wire_height = 0.5,
wire_width = 0.5, insulation_thickness = (0.546-0.5)/2, is_round = True,
winding_scheme= 2)
R = RF_Coil.resistance(22.5)
# R = 10
L = RF_Coil.induct_perry()
#L = 0.26e-6
f = R/(2*np.pi* L)
print(R)
print(L)
print(f)