diff options
-rw-r--r-- | two_levels.m | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/two_levels.m b/two_levels.m index 18860cb..217e76f 100644 --- a/two_levels.m +++ b/two_levels.m @@ -9,11 +9,18 @@ % \ % ___________ |2> +%EM field definition +Ep=1.0; +Epc=conj(Ep); +wp=w12; +modulation_freq=[0, wp, -wp]; +E_field =[0, Ep, Epc]; + Nlevels=2; -w12=1e4; -w_hpf=68; +w12=1e9; +w_hpf=6.8e3; w13=w12-w_hpf; @@ -45,10 +52,3 @@ dipole_elements(1,2)=1; dipole_elements(2,1)=dipole_elements(1,2); -%EM field definition -Ep=1.0; -Epc=conj(Ep); -wp=w12; -modulation_freq=[0, wp, -wp]; -E_field =[0, Ep, Epc]; - |