diff options
Diffstat (limited to 'xmds2/realistic_Rb_and_fields')
5 files changed, 70 insertions, 14 deletions
diff --git a/xmds2/realistic_Rb_and_fields/eit_two_field_circular_eit_cold.params b/xmds2/realistic_Rb_and_fields/eit_two_field_circular_eit_cold.params new file mode 100644 index 0000000..d5e6dc1 --- /dev/null +++ b/xmds2/realistic_Rb_and_fields/eit_two_field_circular_eit_cold.params @@ -0,0 +1,11 @@ + +PARAMS = \ + --Ndens=1e15 \ + --gt=.1e6 \ + --Lcell=10.0e-2 \ + --Temperature=1e-3 \ + --WLx=0 --WLy=0 --WLz=0 \ + --Pwidth=0.4e-6 \ + --delta1=0 --delta2=0 --delta3=0 \ + --Ep1o=0.0 --Ep2o=1e0 --Ep3o=0 --Ep4o=0 --Em1o=50e6 --Em2o=0 --Em3o=0 --Em4o=0 + diff --git a/xmds2/realistic_Rb_and_fields/fast_three_field_circular_cold_fast2.params b/xmds2/realistic_Rb_and_fields/fast_three_field_circular_cold_fast2.params new file mode 100644 index 0000000..b5444dd --- /dev/null +++ b/xmds2/realistic_Rb_and_fields/fast_three_field_circular_cold_fast2.params @@ -0,0 +1,11 @@ + +PARAMS = \ + --Ndens=1e15 \ + --gt=.1e6 \ + --Lcell=10.0e-2 \ + --Temperature=1e-3 \ + --WLx=0 --WLy=0 --WLz=0 \ + --Pwidth=0.4e-6 \ + --delta1=0 --delta2=0 --delta3=0 \ + --Ep1o=0.0 --Ep2o=1e0 --Ep3o=0 --Ep4o=0 --Em1o=50e6 --Em2o=0 --Em3o=200e6 --Em4o=0 + diff --git a/xmds2/realistic_Rb_and_fields/field_delay_vs_z.m b/xmds2/realistic_Rb_and_fields/field_delay_vs_z.m index 71d3a70..34b287c 100644 --- a/xmds2/realistic_Rb_and_fields/field_delay_vs_z.m +++ b/xmds2/realistic_Rb_and_fields/field_delay_vs_z.m @@ -35,32 +35,36 @@ end delay_time = pcenter_i - pcenter_i(1); delay_time_err = sqrt( perr_i.^2 + (perr_i(1))^2); -figure(1) +fh=figure(1); +niceplotset(fh); %errorbar(z_1, delay_time, delay_time_err, '.-'); plot(z_1, delay_time, '.-'); -title('Pulse delay vs propagation distance'); +title('Pulse delay vs distance'); xlabel('z (m)'); ylabel('delay (S)'); print('delay_vs_z_for_Ip2.eps', '-depsc'); -figure(2) -plot(z_1, max_powerIp2, '.-'); -title('Pulse Ip2 strength vs propagation distance'); +fh=figure(2); +niceplotset(fh); +plot(z_1, sqrt(max_powerIp2), '.-'); +title('Pulse Ip2 strength vs distance'); xlabel('z (m)'); -ylabel('Pulse strength (Mrad/s)'); +ylabel('Field Rabi frequency (Mrad/s)'); print('field_vs_z_for_Ip2.eps', '-depsc'); -figure(3) -plot(z_1, max_powerIm1, '.-'); -title('Pulse Im1 strength vs propagation distance'); +fh=figure(3); +niceplotset(fh); +plot(z_1, sqrt(max_powerIm1), '.-'); +title('Pulse Im1 strength vs distance'); xlabel('z (m)'); -ylabel('Pulse strength (Mrad/s)'); +ylabel('Field Rabi frequency (Mrad/s)'); -figure(4) -plot(z_1, max_powerIm3, '.-'); -title('Pulse Im3 strength vs propagation distance'); +fh=figure(4); +niceplotset(fh); +plot(z_1, sqrt(max_powerIm3), '.-'); +title('Pulse Im3 strength vs distance'); xlabel('z (m)'); -ylabel('Pulse strength (Mrad/s)'); +ylabel('Field Rabi frequency (Mrad/s)'); % final delay output str= sprintf('delay_time_with_fit= %f nS', 1e9*delay_time(end)); diff --git a/xmds2/realistic_Rb_and_fields/niceplotset.m b/xmds2/realistic_Rb_and_fields/niceplotset.m new file mode 100644 index 0000000..42fa855 --- /dev/null +++ b/xmds2/realistic_Rb_and_fields/niceplotset.m @@ -0,0 +1,19 @@ +function niceplotset(fhandle) + %% Increases default font + fontSize=24; + %% increase width of the lines + %lineWidth=2; + + % sets axes font + set(gca,'FontSize',fontSize ); + %set(gca,'FontSize',fontSize, 'LineWidth', lineWidth); + %box(axes1,'on'); + %hold(axes1,'off'); + + % Create xlabel + %xlabel('','FontSize',fontSize); + %ylabel('','FontSize',fontSize); + + %title('', 'FontSize',fontSize); + +end diff --git a/xmds2/realistic_Rb_and_fields/two_field_circular_eit_hot.params b/xmds2/realistic_Rb_and_fields/two_field_circular_eit_hot.params new file mode 100644 index 0000000..a6fdf84 --- /dev/null +++ b/xmds2/realistic_Rb_and_fields/two_field_circular_eit_hot.params @@ -0,0 +1,11 @@ + +PARAMS = \ + --Ndens=1e15 \ + --gt=.1e6 \ + --Lcell=10.0e-2 \ + --Temperature=320 \ + --WLx=0 --WLy=0 --WLz=0 \ + --Pwidth=0.4e-6 \ + --delta1=0 --delta2=0 --delta3=0 \ + --Ep1o=0.0 --Ep2o=1e2 --Ep3o=0 --Ep4o=0 --Em1o=50e6 --Em2o=0 --Em3o=0 --Em4o=0 + |