|
| 1 | +from .analyzer import NotebookConfig, WaveguideAnalysis2D, WaveguideModalBPM1D |
| 2 | +from .constants import nm, um |
| 3 | +from .coupling_sweep import ( |
| 4 | + estimate_first_relevant_peak, |
| 5 | + estimate_lc_by_supermodes, |
| 6 | + plot_gap_to_lc_curve_coupler, |
| 7 | + plot_gap_to_lc_coupler, |
| 8 | + plot_gap_to_peak_transfer_coupler, |
| 9 | + plot_parameter_lc, |
| 10 | + plot_parameter_peak_transfer, |
| 11 | + plot_parameter_to_lc, |
| 12 | + sweep_gap_to_lc_coupler, |
| 13 | + sweep_parameter_to_lc, |
| 14 | +) |
| 15 | +from .modal import ( |
| 16 | + DispersionAnalysisResult, |
| 17 | + ModalAnalysisResult, |
| 18 | + analyze_modes, |
| 19 | + assemble_helmholtz_operator, |
| 20 | + build_index_profile, |
| 21 | + compute_dispersion_curves, |
| 22 | + plot_dispersion_curves, |
| 23 | + plot_modal_analysis, |
| 24 | + solve_guided_modes, |
| 25 | +) |
| 26 | +from .parameters import CouplerTestParams, ModalStructureParams |
| 27 | +from .test_cases import ( |
| 28 | + CouplerSimulationResult, |
| 29 | + generate_gaussian_input, |
| 30 | + normalize_mode, |
| 31 | + simulate_coupler, |
| 32 | +) |
| 33 | +from .workflows import ( |
| 34 | + CouplerT3Result, |
| 35 | + StraightBPMResult, |
| 36 | + plot_coupler_heatmap, |
| 37 | + plot_coupler_output_profiles, |
| 38 | + plot_coupler_power_transfer, |
| 39 | + plot_coupler_transfer_and_profiles, |
| 40 | + plot_coupler_t3_heatmap, |
| 41 | + plot_coupler_t3_profiles_and_transfer, |
| 42 | + plot_coupler_wavelength_response, |
| 43 | + plot_dispersion_with_angle_axis, |
| 44 | + plot_gap_to_lc_parallel_coupler, |
| 45 | + plot_gap_to_lc_curve_parallel_coupler, |
| 46 | + plot_gap_to_peak_transfer_parallel_coupler, |
| 47 | + plot_input_output_profiles, |
| 48 | + plot_multilayer_modes, |
| 49 | + plot_parallel_coupler_profiles, |
| 50 | + plot_parallel_coupler_heatmap, |
| 51 | + plot_parallel_coupler_profiles_and_transfer, |
| 52 | + plot_parallel_power_transfer, |
| 53 | + plot_straight_bpm_heatmap, |
| 54 | + plot_straight_profile_comparison, |
| 55 | + print_mode_summary, |
| 56 | + run_parallel_coupler_bpm, |
| 57 | + run_straight_waveguide_bpm_fundamental, |
| 58 | + run_straight_waveguide_bpm_gaussian, |
| 59 | + summarize_coupler_output, |
| 60 | + sweep_coupler_wavelength_response, |
| 61 | + sweep_gap_to_lc_parallel_coupler, |
| 62 | +) |
| 63 | + |
| 64 | +__all__ = [ |
| 65 | + "DispersionAnalysisResult", |
| 66 | + "CouplerSimulationResult", |
| 67 | + "CouplerT3Result", |
| 68 | + "CouplerTestParams", |
| 69 | + "ModalAnalysisResult", |
| 70 | + "NotebookConfig", |
| 71 | + "ModalStructureParams", |
| 72 | + "StraightBPMResult", |
| 73 | + "WaveguideAnalysis2D", |
| 74 | + "WaveguideModalBPM1D", |
| 75 | + "analyze_modes", |
| 76 | + "assemble_helmholtz_operator", |
| 77 | + "build_index_profile", |
| 78 | + "compute_dispersion_curves", |
| 79 | + "sweep_gap_to_lc_coupler", |
| 80 | + "estimate_first_relevant_peak", |
| 81 | + "estimate_lc_by_supermodes", |
| 82 | + "generate_gaussian_input", |
| 83 | + "nm", |
| 84 | + "normalize_mode", |
| 85 | + "plot_gap_to_lc_coupler", |
| 86 | + "plot_gap_to_lc_curve_coupler", |
| 87 | + "plot_gap_to_peak_transfer_coupler", |
| 88 | + "plot_parameter_lc", |
| 89 | + "plot_parameter_peak_transfer", |
| 90 | + "plot_gap_to_lc_parallel_coupler", |
| 91 | + "plot_gap_to_lc_curve_parallel_coupler", |
| 92 | + "plot_gap_to_peak_transfer_parallel_coupler", |
| 93 | + "plot_input_output_profiles", |
| 94 | + "plot_modal_analysis", |
| 95 | + "plot_parallel_coupler_profiles", |
| 96 | + "plot_parallel_coupler_heatmap", |
| 97 | + "plot_parallel_coupler_profiles_and_transfer", |
| 98 | + "plot_parallel_power_transfer", |
| 99 | + "plot_dispersion_curves", |
| 100 | + "plot_coupler_t3_heatmap", |
| 101 | + "plot_coupler_t3_profiles_and_transfer", |
| 102 | + "plot_coupler_heatmap", |
| 103 | + "plot_coupler_power_transfer", |
| 104 | + "plot_coupler_output_profiles", |
| 105 | + "plot_coupler_transfer_and_profiles", |
| 106 | + "plot_coupler_wavelength_response", |
| 107 | + "plot_dispersion_with_angle_axis", |
| 108 | + "plot_multilayer_modes", |
| 109 | + "plot_parameter_to_lc", |
| 110 | + "plot_straight_bpm_heatmap", |
| 111 | + "plot_straight_profile_comparison", |
| 112 | + "print_mode_summary", |
| 113 | + "run_straight_waveguide_bpm_fundamental", |
| 114 | + "run_straight_waveguide_bpm_gaussian", |
| 115 | + "run_parallel_coupler_bpm", |
| 116 | + "simulate_coupler", |
| 117 | + "solve_guided_modes", |
| 118 | + "summarize_coupler_output", |
| 119 | + "sweep_gap_to_lc_parallel_coupler", |
| 120 | + "sweep_parameter_to_lc", |
| 121 | + "sweep_coupler_wavelength_response", |
| 122 | + "um", |
| 123 | +] |
0 commit comments