diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-01-11 23:23:56 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-01-11 23:23:56 -0500 |
commit | 42223c63cbd74c45a1194e9125bc38fbe300bcba (patch) | |
tree | d4f46b9e49a1c57a2470a66641c20fe37b376dd0 /xmds2/Nlevels_with_doppler_with_z_4wm | |
parent | 575df581d00322c4f7b2124d10999ec2f8dd92b8 (diff) | |
download | Nresonances-42223c63cbd74c45a1194e9125bc38fbe300bcba.tar.gz Nresonances-42223c63cbd74c45a1194e9125bc38fbe300bcba.zip |
4wm and Doppler 4wm: gaussian pulse width as run time parameter
Diffstat (limited to 'xmds2/Nlevels_with_doppler_with_z_4wm')
-rw-r--r-- | xmds2/Nlevels_with_doppler_with_z_4wm/Nlevels_with_doppler_with_z_4wm.xmds | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xmds2/Nlevels_with_doppler_with_z_4wm/Nlevels_with_doppler_with_z_4wm.xmds b/xmds2/Nlevels_with_doppler_with_z_4wm/Nlevels_with_doppler_with_z_4wm.xmds index 3fc2499..1e5b25c 100644 --- a/xmds2/Nlevels_with_doppler_with_z_4wm/Nlevels_with_doppler_with_z_4wm.xmds +++ b/xmds2/Nlevels_with_doppler_with_z_4wm/Nlevels_with_doppler_with_z_4wm.xmds @@ -98,7 +98,9 @@ <argument name="delta2" type="real" default_value="0.0" /> <argument name="delta3" type="real" default_value="0.0" /> <!--Cell length--> - <argument name="Lcell" type="real" default_value="1.5e-2" /> + <argument name="Lcell" type="real" default_value="1.5e-2" /> + <!--Pulse duration/width--> + <argument name="Pwidth" type="real" default_value="0.1e-6" /> </arguments> <bing /> <fftw plan="patient" /> @@ -123,7 +125,7 @@ // Initial (at starting 'z' position) electromagnetic field does not depend on detuning // as well as time E1=E1o; - E2=E2o*exp(-pow( ((t-0.0)/.1e-6),2) ); + E2=E2o*exp(-pow( ((t-0.0)/Pwidth),2) ); E3=E3o; E4=E4o; ]]> |