summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2011-11-16 18:18:28 -0500
committerEugeniy E. Mikhailov <evgmik@gmail.com>2020-09-21 16:29:52 -0400
commit1a7aa09b23c0ab23f9678437998e9aa8350dc7c5 (patch)
tree12a93fcf3d5fe21c857cbdead95985de0dc20d58
parent6e632499226750dce2f5c1ab77dcb14ea806dd6a (diff)
downloadmulti_mode_eit-1a7aa09b23c0ab23f9678437998e9aa8350dc7c5.tar.gz
multi_mode_eit-1a7aa09b23c0ab23f9678437998e9aa8350dc7c5.zip
removed unused files
-rw-r--r--faraday/drawing.gpbin132234 -> 0 bytes
-rw-r--r--faraday/field_description.m14
-rw-r--r--faraday/make_representative_psr_vs_detuning_for_given_B_and_psi_el.m35
3 files changed, 0 insertions, 49 deletions
diff --git a/faraday/drawing.gp b/faraday/drawing.gp
deleted file mode 100644
index 3bcddd3..0000000
--- a/faraday/drawing.gp
+++ /dev/null
Binary files differ
diff --git a/faraday/field_description.m b/faraday/field_description.m
deleted file mode 100644
index 71a1cdb..0000000
--- a/faraday/field_description.m
+++ /dev/null
@@ -1,14 +0,0 @@
-1;
-
-%EM field definition
-%Ed=0.2; %drive
-%Edc=conj(Ed);
-Ep=0.2; %probe
-Epc=conj(Ep);
-Em=-Ep; % opposite sideband (resulting from EOM modulation of drive)
-Emc=conj(Em);
-%wd=w13;
-%wp=w12;
-%wm=wd-(wp-wd);
-%light_positive_freq = [wp, wd, wp-wd];
-%E_field = [Ep, Ed, 0 ];
diff --git a/faraday/make_representative_psr_vs_detuning_for_given_B_and_psi_el.m b/faraday/make_representative_psr_vs_detuning_for_given_B_and_psi_el.m
deleted file mode 100644
index 46d8262..0000000
--- a/faraday/make_representative_psr_vs_detuning_for_given_B_and_psi_el.m
+++ /dev/null
@@ -1,35 +0,0 @@
-function ...
- [ ...
- psr_rad_tnEp_pos_el, psr_rad_tnEp_neg_el, ...
- psr_rad_smEp_pos_el, psr_rad_smEp_neg_el, ...
- psr_rad_lgEp_pos_el, psr_rad_lgEp_neg_el, ...
- psr_rad_grEp_pos_el, psr_rad_grEp_neg_el ...
- ] =make_representative_psr_vs_detuning_for_given_B_and_psi_el(detuning_freq, B_field, theta, phi, psi_el)
- %%%%%%%%%%%%%%%%%%%%%
- %printf("%f\n", B_field);
- Ep=sqrt(0.01);
- [psr_rad_tnEp_pos_el]=psr_vs_detuning(detuning_freq, Ep, psi_el, B_field, theta, phi) ;
- [psr_rad_tnEp_neg_el]=psr_vs_detuning(detuning_freq, Ep,-psi_el, B_field, theta, phi) ;
-
- Ep=sqrt(0.1);
- [psr_rad_smEp_pos_el]=psr_vs_detuning(detuning_freq, Ep, psi_el, B_field, theta, phi) ;
- [psr_rad_smEp_neg_el]=psr_vs_detuning(detuning_freq, Ep,-psi_el, B_field, theta, phi) ;
-
- Ep=sqrt(1.0);
- [psr_rad_lgEp_pos_el]=psr_vs_detuning(detuning_freq, Ep, psi_el, B_field, theta, phi) ;
- [psr_rad_lgEp_neg_el]=psr_vs_detuning(detuning_freq, Ep,-psi_el, B_field, theta, phi) ;
-
- Ep=sqrt(10.0);
- [psr_rad_grEp_pos_el]=psr_vs_detuning(detuning_freq, Ep, psi_el, B_field, theta, phi) ;
- [psr_rad_grEp_neg_el]=psr_vs_detuning(detuning_freq, Ep,-psi_el, B_field, theta, phi) ;
-
-
- fname=data_file_name('results/', 'PSR.','mat', B_field, theta,phi,psi_el)
- save(fname, ...
- 'detuning_freq', 'B_field', 'theta', 'phi', 'psi_el', ...
- 'psr_rad_tnEp_pos_el', 'psr_rad_tnEp_neg_el', ...
- 'psr_rad_smEp_pos_el', 'psr_rad_smEp_neg_el', ...
- 'psr_rad_lgEp_pos_el', 'psr_rad_lgEp_neg_el', ...
- 'psr_rad_grEp_pos_el', 'psr_rad_grEp_neg_el' );
-
-endfunction