diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-11-22 15:21:26 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-21 16:33:21 -0400 |
commit | 3e2b545bdd35344dd545c9b4f5f67d84697d9eec (patch) | |
tree | 245b0f99e99df4227320e90d9b85cda92cde760a | |
parent | e405091ddf823c49183f5a952f6a5b8e1e9ef679 (diff) | |
download | multi_mode_eit-3e2b545bdd35344dd545c9b4f5f67d84697d9eec.tar.gz multi_mode_eit-3e2b545bdd35344dd545c9b4f5f67d84697d9eec.zip |
switched to orthogonal and circular polarizations
-rw-r--r-- | squeezing_filter/susceptibility_problem.m | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/squeezing_filter/susceptibility_problem.m b/squeezing_filter/susceptibility_problem.m index 1c45a1e..0444cbd 100644 --- a/squeezing_filter/susceptibility_problem.m +++ b/squeezing_filter/susceptibility_problem.m @@ -69,15 +69,15 @@ E_field_lab_pos_freq.linear = E_field_probe + E_field_drive; % where phi is angle between light polarization and axis x %% This is for linear and orthogonal polarizations of probe and drive -E_field_lab_pos_freq.x = E_field_drive; -E_field_lab_pos_freq.y = E_field_probe; -E_field_lab_pos_freq.z = E_field_zero; -E_field_pos_freq=xyz_lin2atomic_axis_polarization(theta, E_field_lab_pos_freq); +%E_field_lab_pos_freq.x = E_field_drive; +%E_field_lab_pos_freq.y = E_field_probe; +%E_field_lab_pos_freq.z = E_field_zero; +%E_field_pos_freq=xyz_lin2atomic_axis_polarization(theta, E_field_lab_pos_freq); %% This is for circular and orthogonal polarizations of probe and drive -%E_field_pos_freq.left = E_field_drive; -%E_field_pos_freq.right = E_field_probe; -%E_field_pos_freq.linear = E_field_zero; +E_field_pos_freq.left = E_field_drive; +E_field_pos_freq.right = E_field_probe; +E_field_pos_freq.linear = E_field_zero; %% This is for circular and parallel polarizations of probe and drive %E_field_pos_freq.left = E_field_drive+E_field_probe; |