diff options
author | Matt Argao <mcargao@email.wm.edu> | 2013-03-02 10:14:05 -0500 |
---|---|---|
committer | Matt Argao <mcargao@email.wm.edu> | 2013-03-02 10:14:05 -0500 |
commit | c181a0d3181a7f5a24e9fdc712f2cdab38a928cb (patch) | |
tree | a1e8123f47b0e954c317a0012b73935b32f340f8 /gbeam_propagation_froward_only.m | |
parent | 563330e918440fd6ef34ffac88706c0e19a0ba08 (diff) | |
download | mode_match-c181a0d3181a7f5a24e9fdc712f2cdab38a928cb.tar.gz mode_match-c181a0d3181a7f5a24e9fdc712f2cdab38a928cb.zip |
Fixed lens bug and added more accurate representation of lenses.
Diffstat (limited to 'gbeam_propagation_froward_only.m')
-rw-r--r-- | gbeam_propagation_froward_only.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gbeam_propagation_froward_only.m b/gbeam_propagation_froward_only.m index 8a14cf5..2cdc1d8 100644 --- a/gbeam_propagation_froward_only.m +++ b/gbeam_propagation_froward_only.m @@ -1,4 +1,4 @@ -function [q, q_lens] = gbeam_propagation_froward_only(x_pos, q_in, x_in, optics_elements) +function [q] = gbeam_propagation_froward_only(x_pos, q_in, x_in, optics_elements) % calculate the 'q' parameter of the Gaussian beam propagating through optical % 'optics_elements' only in the positive direction along 'x' axis at points 'x_pos' % takes the gaussian beam with initial q_in parameter at x_in @@ -39,7 +39,6 @@ function [q, q_lens] = gbeam_propagation_froward_only(x_pos, q_in, x_in, optics end %propagate beam up to the lens q_at_lens = q_after_free_space(q_last_calc,elx - x_last_calc); - q_lens(k) = q_at_lens; %Applying lens transformation q_last_calc=q_after_abcd(q_at_lens,el.abcd); x_last_calc = elx; |