diff options
Diffstat (limited to 'fitter_check.m')
-rw-r--r-- | fitter_check.m | 32 |
1 files changed, 12 insertions, 20 deletions
diff --git a/fitter_check.m b/fitter_check.m index f70ded6..c4c5fbf 100644 --- a/fitter_check.m +++ b/fitter_check.m @@ -1,5 +1,6 @@ %Permute all possible lens combinations out of set of lenses -lens_set = [.075, .203]; +lens_set = [.075, .203, .05, .03]; +lens_set = [.075,.203]; lens_permutations = pick(lens_set,3,'or'); %Pre-defined Constants @@ -13,32 +14,23 @@ rf= 1.0E+100 ; xf= Ltot; q0=wr2q(w0,r0,lambda); qf=wr2q(wf,rf,lambda); -lens_width = .03; -show_lens_width = 1; -show_lens_position = 1; -display_prop = [show_lens_width, show_lens_position]; %End list %Mode match -[ possible_lens_placement, initial_lens_placement, possible_lens_set, possible_sample_energy] = mode_match( q0, qf, Ltot, lambda, lens_permutations, lens_width ); +[ possible_lens_placement, possible_lens_set, possible_sample_energy] = mode_match( q0, qf, Ltot, lambda, lens_permutations ); %Remove similar solutions n_truncate = 3; %number of digits in truncated solution [ possible_lens_placement_uniq, possible_lens_placement, possible_sample_energy, possible_lens_set, index ] = remove_similar_soln( possible_sample_energy, possible_lens_placement, possible_lens_set, n_truncate ); -n_visualizations = 5; %number of best solutions to visualize -n_hist = 10000; %number of sample points in histogram -stability_max = 1; %max stability (y-axis) shown on energy vs. stability graph +n_visualizations = 2; %number of best solutions to visualize +pick_visualization( possible_sample_energy, possible_lens_placement_uniq, possible_lens_placement, possible_lens_set, index, n_visualizations, q0, qf, Ltot, lambda ); -pick_visualization( possible_sample_energy, possible_lens_placement_uniq, possible_lens_placement, possible_lens_set, index, n_visualizations, q0, qf, Ltot, lambda, lens_width, display_prop ); -[stability] = stability_visualization( possible_lens_placement_uniq, q0, qf, xf, possible_lens_placement, possible_lens_set, lambda, n_visualizations, n_hist, index ); -energy_vs_stability( possible_sample_energy, stability, index, stability_max) +%Visualize fitness function for fixed f2 and f3 +lens_set = [.075, .075, .203]; +f2= 0.40361319425309 ; +f3= 0.80361319425309 ; -% %Visualize fitness function for fixed f2 and f3 -% lens_set = [.075, .075, .203]; -% f2= 0.40361319425309 ; -% f3= 0.80361319425309 ; -% -% fitness_simplified=@(x) fitness(q0, qf, Ltot, [x, f2, f3], lens_set, lambda ); -% figure(6) -% ezplot(fitness_simplified, [0,Ltot])
\ No newline at end of file +fitness_simplified=@(x) fitness(q0, qf, Ltot, [x, f2, f3], lens_set, lambda ); +figure(6) +ezplot(fitness_simplified, [0,Ltot])
\ No newline at end of file |