diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2009-12-09 14:27:14 +0000 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2009-12-09 14:27:14 +0000 |
commit | 784a1f73ad9a5ad0429e7a8be23b07ce9ab4653d (patch) | |
tree | 8140ff59a516e68fc40b8426ecce3b48f98efa3f /three_levels.m | |
parent | d3643fdacd500029495b90e1c1e27d80d89dcc28 (diff) | |
download | multi_mode_eit-784a1f73ad9a5ad0429e7a8be23b07ce9ab4653d.tar.gz multi_mode_eit-784a1f73ad9a5ad0429e7a8be23b07ce9ab4653d.zip |
field definiton moved to the begining of the file
Diffstat (limited to 'three_levels.m')
-rw-r--r-- | three_levels.m | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/three_levels.m b/three_levels.m index beb70b3..4eca8f5 100644 --- a/three_levels.m +++ b/three_levels.m @@ -9,6 +9,18 @@ levels=1:3; % \ % ___________ |2> +%EM field definition +Ep=1.0; +Epc=conj(Ep); +Ed=10; +Edc=conj(Ed); +wd=w13; +wp=w12; +modulation_freq=[0, wp, wd, -wp, -wd, wp-wd, wd-wp]; +E_field =[0, Ep, Ed, Epc, Edc, 0, 0 ]; +%modulation_freq=[0, wp, -wp]; +%E_field =[0, Ep, Epc]; + Nlevels=3; @@ -53,15 +65,3 @@ dipole_elements(3,1)=1; dipole_elements(1,3)=dipole_elements(3,1); -%EM field definition -Ep=10.0; -Epc=conj(Ep); -Ed=0; -Edc=conj(Ed); -wd=w13; -wp=w12; -%modulation_freq=[0, wp, wd, -wp, -wd, wp-wd, wd-wp]; -%E_field =[0, Ep, Ed, Epc, Edc, 0, 0 ]; -modulation_freq=[0, wp, -wp]; -E_field =[0, Ep, Epc]; - |