-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2023-12-04_optimized_full_scheme_robustness.jl
280 lines (216 loc) · 7.04 KB
/
2023-12-04_optimized_full_scheme_robustness.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# -*- coding: utf-8 -*-
# ---
# jupyter:
# jupytext:
# formats: ipynb,jl:light
# text_representation:
# extension: .jl
# format_name: light
# format_version: '1.5'
# jupytext_version: 1.15.2
# kernelspec:
# display_name: Julia 1.8.5
# language: julia
# name: julia-1.8
# ---
# # Robustness of the full optimized scheme for `t_r=150μs`, `V0=0.2MHz`, `R=26μm`, `ω₀=50π/s`
using QuantumPropagators
using LinearAlgebra
using FFTW
using Serialization
using ProgressMeter
using FromFile
using Printf
Threads.nthreads()
using Revise
using Plots
const 𝕚 = 1im;
const μm = 1;
const μs = 1;
const ns = 1e-3μs;
const cm = 1e4μm;
const met = 1e6μm;
const sec = 1e6μs;
const ms = 1e3μs;
const MHz = 2π;
const Dalton = 1.5746097504353806e+01;
const RUBIDIUM_MASS = 86.91Dalton;
const TAI_RADIUS = 25.46μm
const N_SITES = 8;
const SEPARATION_TIME = 150μs;
const OMEGA_TARGET = 50π / sec;
const EFFECTIVE_MASS = TAI_RADIUS^2 * RUBIDIUM_MASS;
const POTENTIAL_DEPTH = 0.2MHz;
const MOMENTUM_TARGET = -EFFECTIVE_MASS * OMEGA_TARGET;
const MOMENTUM_UNIT = EFFECTIVE_MASS * π / sec;
datadir(folders...) = joinpath(".", "data", "2023-12-04_optimized_full_scheme_robustness", folders...)
mkpath(datadir())
includet("./include/rotating_tai.jl")
includet("./include/split_propagator.jl")
includet("./include/free_propagator.jl")
includet("./include/position_momentum_observables.jl")
includet("./include/propagate_scheme.jl")
# ## Loading the Optimized Controls
using QuantumControl.Shapes: flattop
using QuantumControl: load_optimization
using FileIO: load
omega_ramp_up = load("./data/2023-05-17_OCT_tr=150μs_V0=0.2MHz_R=26μm_ω=50πps_opt_amplitude.npz")
omega_ramp_up ./ (π/sec)
plot(omega_ramp_up ./ (π/sec))
omega_ramp_down = reverse(omega_ramp_up);
plot(omega_ramp_down ./ (π/sec))
# ## Full Scheme Dynamics
theta_grid = collect(range(0, 0.25π, length=1024));
args = Dict{Symbol,Any}(
:theta_grid => theta_grid,
:potential_depth => POTENTIAL_DEPTH,
:omega_up => omega_ramp_up,
:omega_down => omega_ramp_down,
:omega_0 => OMEGA_TARGET,
:t_r => SEPARATION_TIME,
:n_cycles => 10,
:nt_free => 10_000,
:initialize_with_Ω => true,
)
theta_grid = collect(range(0, 0.25π, length=1024));
tlists, omega_vals, states_left, states_right = propagate_scheme(;
args...,
ret=:states,
frame=:moving,
parallel=true,
verbose_displacement=true,
);
# +
frame=:lab
tlists, omega_vals, expvals_left, expvals_right = propagate_scheme(;
args...,
ret=:expvals,
parallel=true,
frame,
);
df = collect_dynamics_dataframe(tlists, omega_vals, expvals_left; steps_up=10, steps_free=1, steps_down=10)
open(datadir("dynamics_opt_lab.csv"), "w") do file
println(file, join(names(df), ","))
df_filtered = df[(df[!, "time (ms)"] .< 2) .| (df[!, "time (ms)"] .> 198), :]
for row in eachrow(df_filtered)
print(file, @sprintf("%.3f,", row[1]))
println(file, join(map(v -> @sprintf("%.3e", v), row[2:end]), ","))
end
end
open(datadir("dynamics_opt_lab_theta.csv"), "w") do file
println(file, join([names(df)[1], names(df)[3], names(df)[4]], ","))
i_row = 0
for row in eachrow(df)
i_row += 1
if i_row == 1 || i_row == nrow(df) || (i_row % 10) == 1
print(file, @sprintf("%.3f,", row[1]))
print(file, @sprintf("%.3f,", row[3]))
println(file, @sprintf("%.3e", row[4]))
end
end
end
plot_full_pos_mom_dynamics(
tlists, expvals_left, expvals_right;
show_standard_deviation=true,
frame
)
# +
frame=:moving
tlists, omega_vals, expvals_left, expvals_right = propagate_scheme(;
args...,
ret=:expvals,
parallel=true,
frame,
);
df = collect_dynamics_dataframe(tlists, omega_vals, expvals_left; steps_up=10, steps_free=1, steps_down=10)
open(datadir("dynamics_opt_moving.csv"), "w") do file
println(file, join(names(df), ","))
df_filtered = df[(df[!, "time (ms)"] .< 2) .| (df[!, "time (ms)"] .> 198), :]
for row in eachrow(df_filtered)
print(file, @sprintf("%.3f,", row[1]))
println(file, join(map(v -> @sprintf("%.3e", v), row[2:end]), ","))
end
end
plot_full_pos_mom_dynamics(
tlists, expvals_left, expvals_right;
show_standard_deviation=true,
frame
)
# -
# ## Response to Ω ≠ 0, with disturbances
using QuantumControlBase: @threadsif
"""Evaluate the final "right" population depending on Ω."""
function scan_signal(; parallel=1, n_samples=21, n_cycles=10, Ω_max = 4 * (0.5 / n_cycles) / sec, kwargs...)
if parallel ≡ true
parallel=1
end
Ω_vals = collect(range(0, Ω_max; length=n_samples))
P_vals = zeros(n_samples)
@threadsif (parallel ≥ 1) for i=1:n_samples
P_vals[i] = propagate_scheme(;
Ω=Ω_vals[i],
n_cycles,
parallel=(parallel ≥ 2),
ret=:P_right,
kwargs...
)
end
return Ω_vals, P_vals
end
disturbed_args = copy(args)
disturbed_args[:potential_depth] = 1.1 * POTENTIAL_DEPTH
disturbed_args[:potential_depth] / MHz
Ω_vals, P_vals_disturbed = scan_signal(;
disturbed_args...,
parallel=2,
);
Ψ₀ = propagate_scheme(;
ret=:initial_state,
args...
);
Ω_vals, P_vals_disturbed_Ψ = scan_signal(;
disturbed_args...,
parallel=2,
Ψ₀
);
function eigenstate_disturbance(V0_vals; Ψ₀=Ψ₀, args=args)
result = Float64[]
for V0 in V0_vals
_disturbed_args = copy(args)
_disturbed_args[:potential_depth] = V0
_Ψ₀ = propagate_scheme(;
ret=:initial_state,
_disturbed_args...
);
push!(result, abs2(Ψ₀ ⋅ _Ψ₀))
end
return result
end
V0_vals = collect(range(0.2MHz, 2.2MHz, length=20));
Ψ_overlaps = eigenstate_disturbance(V0_vals);
plot(V0_vals ./ MHz, Ψ_overlaps; label="Overlap with eigenstate at V₀=0.2MHz", xlabel="V₀ (MHz)")
open(datadir("sagnac_opt_disturbed.csv"), "w") do file
println(file, "Ω (π/sec),P_right,P_right_Ψ")
for (Ω_val, P_val, P_val_Ψ) in zip(Ω_vals, P_vals_disturbed, P_vals_disturbed_Ψ)
print(file, @sprintf("%.3e,", Ω_val / (π/sec)))
println(file, @sprintf("%.3f,", P_val))
println(file, @sprintf("%.3f", P_val_Ψ))
end
end
using CSV
using DataFrames
guess_data = CSV.read("./data/2023-05-16_guess_full_scheme/sagnac_guess.csv", DataFrame);
opt_data = CSV.read("./data/2023-05-17_optimized_full_scheme/sagnac_opt.csv", DataFrame);
plot(Ω_vals / (π/sec), P_vals_disturbed; label="opt (10% V₀ dev)", xlabel="Ω (π/sec)", ylabel="population (right)", marker=true)
plot!(Ω_vals / (π/sec), P_vals_disturbed_Ψ; label="opt (10% V₀ dev; Ψ)")
plot!(opt_data[!, "Ω (π/sec)"], opt_data[!, "P_right"] , label="opt")
plot!(guess_data[!, "Ω (π/sec)"], guess_data[!, "P_right"] , label="guess")
function contrast(populations)
P_max = maximum(populations)
P_min = minimum(populations)
return (P_max - P_min) / (P_max + P_min)
end;
contrast(opt_data[!, "P_right"])
contrast(P_vals_disturbed)
contrast(P_vals_disturbed_Ψ)
contrast(guess_data[!, "P_right"])