Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
artiq_experiments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nicolas Nunez Barreto
artiq_experiments
Commits
0c350a8b
Commit
0c350a8b
authored
Apr 08, 2025
by
Vlatko, Carolina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
actualizacion codigo modulacion rf
parent
e8e37b51
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
Fluorescence_correlation.py
artiq_master/repository/Tests/Fluorescence_correlation.py
+11
-5
No files found.
artiq_master/repository/Tests/Fluorescence_correlation.py
View file @
0c350a8b
...
...
@@ -53,10 +53,18 @@ class FluorescenceCorrelation(EnvExperiment):
NumberValue
(
0.05
,
min
=
0.0
,
max
=
0.3
),
"Laser params"
)
self
.
setattr_argument
(
f
"UV_measurement_freq"
,
NumberValue
(
110
*
MHz
,
unit
=
'MHz'
,
scale
=
MHz
,
min
=
1
*
MHz
,
max
=
400
*
MHz
),
"Laser params"
)
self
.
setattr_argument
(
f
"UV_final_amp"
,
NumberValue
(
0.1
,
min
=
0.0
,
max
=
0.3
),
"Laser params"
)
self
.
setattr_argument
(
f
"UV_final_freq"
,
NumberValue
(
110
*
MHz
,
unit
=
'MHz'
,
scale
=
MHz
,
min
=
1
*
MHz
,
max
=
400
*
MHz
),
"Laser params"
)
self
.
setattr_argument
(
"Comments"
,
StringValue
(
" "
),
"General comments"
)
...
...
@@ -281,7 +289,7 @@ class FluorescenceCorrelation(EnvExperiment):
self
.
laserUV
.
set_channel
()
self
.
core
.
break_realtime
()
self
.
laserUV
.
set_frequency
(
110
*
MHz
,
self
.
UV_measurement_amp
)
self
.
laserUV
.
set_frequency
(
self
.
UV_measurement_freq
,
self
.
UV_measurement_amp
)
self
.
core
.
break_realtime
()
...
...
@@ -516,7 +524,7 @@ class FluorescenceCorrelation(EnvExperiment):
@
kernel
def
stop_kernel
(
self
):
self
.
core
.
break_realtime
()
self
.
laserUV
.
set_frequency
(
110
*
MHz
,
self
.
UV_final_amp
)
self
.
laserUV
.
set_frequency
(
self
.
UV_final_freq
,
self
.
UV_final_amp
)
self
.
core
.
break_realtime
()
@
rpc
...
...
@@ -569,10 +577,8 @@ class FluorescenceCorrelation(EnvExperiment):
for
runN
in
range
(
self
.
N_repetitions
):
self
.
medicion_y_lectura
()
x
,
y
,
params
=
self
.
do_postprocess_and_fit
()
self
.
do_postprocess_and_fit
()
# Guardar datasets histograma
# Guardar fit params
time
.
sleep
(
0.05
)
while
self
.
scheduler
.
check_pause
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment