diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-01-08 09:07:35 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2014-01-08 09:07:35 -0500 |
commit | ceb427ac3e2af2150a5407a4d6b620dae053e498 (patch) | |
tree | 252aa27fe3663df220c87cdf96433c653a054225 | |
parent | 4c7dd2df05001f966b65c7d55d8308c4a12cf73a (diff) | |
download | mode_match-ceb427ac3e2af2150a5407a4d6b620dae053e498.tar.gz mode_match-ceb427ac3e2af2150a5407a4d6b620dae053e498.zip |
typo
-rw-r--r-- | gbeam_propagation.m | 2 | ||||
-rw-r--r-- | gbeam_propagation_froward_only.m | 2 | ||||
-rw-r--r-- | gyro_cavity_modematch_demo.m | 2 | ||||
-rw-r--r-- | mode_match_demo.m | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gbeam_propagation.m b/gbeam_propagation.m index 585048d..f3af409 100644 --- a/gbeam_propagation.m +++ b/gbeam_propagation.m @@ -1,7 +1,7 @@ function [q] = gbeam_propagation(x_pos, q_in, x_in, optics_elements) % calculate the 'q' parameter of the Gaussian beam propagating through optical % 'optics_elements' array along 'x' axis at points 'x_pos' -% takes the gaussian beam with initial q_in parameter at x_in +% takes the Gaussian beam with initial q_in parameter at x_in % x_pos must be monotonic! q=0*x_pos; % q vector initialization diff --git a/gbeam_propagation_froward_only.m b/gbeam_propagation_froward_only.m index 2cdc1d8..daa15bf 100644 --- a/gbeam_propagation_froward_only.m +++ b/gbeam_propagation_froward_only.m @@ -1,7 +1,7 @@ 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 +% takes the Gaussian beam with initial q_in parameter at x_in % Note!: if optics element position coinside with a x_pos at some place % the reported value will be the one calculated after the element % so the resulting value will coinside with submitted q_in diff --git a/gyro_cavity_modematch_demo.m b/gyro_cavity_modematch_demo.m index 8716c40..ba43c76 100644 --- a/gyro_cavity_modematch_demo.m +++ b/gyro_cavity_modematch_demo.m @@ -44,7 +44,7 @@ n_truncate = 3; %number of digits in truncated solution n_visualizations = 5; %number of best solutions to visualize n_hist = 1000; %number of sample points in histogram stability_max = 1; %max stability (y-axis) shown on energy vs. stability graph -self_flag = 0; %Set to 1 to use Self's gaussian beam propagation, otherwise set to 0 +self_flag = 0; %Set to 1 to use Self's Gaussian beam propagation, otherwise set to 0 %End list %q0=wr2q(w0,r0,lambda); %Calculate intial q diff --git a/mode_match_demo.m b/mode_match_demo.m index af823c1..3129b0f 100644 --- a/mode_match_demo.m +++ b/mode_match_demo.m @@ -44,7 +44,7 @@ n_truncate = 3; %number of digits in truncated solution n_visualizations = 5; %number of best solutions to visualize n_hist = 1000; %number of sample points in histogram stability_max = 1; %max stability (y-axis) shown on energy vs. stability graph -self_flag = 0; %Set to 1 to use Self's gaussian beam propagation, otherwise set to 0 +self_flag = 0; %Set to 1 to use Self's Gaussian beam propagation, otherwise set to 0 %End list %q0=wr2q(w0,r0,lambda); %Calculate intial q |