├── .gitignore ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── beampy ├── __init__.py ├── bpm.py ├── examples.py ├── icons │ ├── application-exit.png │ ├── beampy-logo.png │ ├── document-open.png │ ├── document-save-as.png │ ├── document-save.png │ └── help-about.png ├── interface.py ├── interface.ui ├── parameters │ ├── default.txt │ ├── free_propag.txt │ ├── losses.txt │ └── soliton.txt └── user_interface.py ├── docs ├── Beampy_guide.pdf ├── LICENSE.rst ├── Makefile ├── beampy.rst ├── code_bpm.rst ├── code_example.rst ├── code_interface.rst ├── code_user_interface.rst ├── codes.rst ├── conf.py ├── contact.rst ├── examples.rst ├── html │ ├── .buildinfo │ ├── .doctrees │ │ ├── LICENSE.doctree │ │ ├── beampy.doctree │ │ ├── code_bpm.doctree │ │ ├── code_example.doctree │ │ ├── code_interface.doctree │ │ ├── code_user_interface.doctree │ │ ├── codes.doctree │ │ ├── contact.doctree │ │ ├── environment.pickle │ │ ├── examples.doctree │ │ ├── index.doctree │ │ ├── interface.doctree │ │ └── release_note.doctree │ ├── LICENSE.html │ ├── _downloads │ │ └── c1f97d893b23614a88570ebc48d4e7c5 │ │ │ └── Beampy_guide.pdf │ ├── _images │ │ ├── airy.png │ │ ├── arbitrary_waveguides.png │ │ ├── array_guides.png │ │ ├── beams.png │ │ ├── curved_guides.png │ │ ├── def_gauss_beam.png │ │ ├── def_gauss_guide.png │ │ ├── free_propagation.png │ │ ├── grid_definition.png │ │ ├── kerr_var_irrad.png │ │ ├── losses_interface.png │ │ ├── multimodal_beam_splitter.png │ │ ├── results_array.png │ │ ├── results_curved.png │ │ ├── results_soliton.png │ │ ├── two_waveguides_power.png │ │ ├── waveguide_array_power.png │ │ └── waveguides.png │ ├── _sources │ │ ├── LICENSE.rst.txt │ │ ├── beampy.rst.txt │ │ ├── code_bpm.rst.txt │ │ ├── code_example.rst.txt │ │ ├── code_interface.rst.txt │ │ ├── code_user_interface.rst.txt │ │ ├── codes.rst.txt │ │ ├── contact.rst.txt │ │ ├── examples.rst.txt │ │ ├── index.rst.txt │ │ ├── interface.rst.txt │ │ └── release_note.rst.txt │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Light.woff │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ ├── jquery-3.4.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ ├── beampy.html │ ├── code_bpm.html │ ├── code_example.html │ ├── code_interface.html │ ├── code_user_interface.html │ ├── codes.html │ ├── contact.html │ ├── examples.html │ ├── genindex.html │ ├── index.html │ ├── interface.html │ ├── objects.inv │ ├── py-modindex.html │ ├── release_note.html │ ├── search.html │ └── searchindex.js ├── index.rst ├── interface.rst ├── interface │ ├── arbitrary_waveguides.png │ ├── array_guides.png │ ├── beams.png │ ├── curved_guides.png │ ├── losses_interface.png │ ├── results_array.png │ ├── results_curved.png │ └── results_soliton.png ├── make.bat ├── release_note.rst ├── requirements.txt └── results │ ├── airy.png │ ├── def_gauss_beam.png │ ├── def_gauss_guide.png │ ├── free_propagation.png │ ├── grid_definition.png │ ├── kerr_algo.pdf │ ├── kerr_loop_impact.pdf │ ├── kerr_var_irrad.png │ ├── multimodal_beam_splitter.png │ ├── two_waveguides_power.png │ ├── waveguide_array_power.png │ └── waveguides.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/README.rst -------------------------------------------------------------------------------- /beampy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/__init__.py -------------------------------------------------------------------------------- /beampy/bpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/bpm.py -------------------------------------------------------------------------------- /beampy/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/examples.py -------------------------------------------------------------------------------- /beampy/icons/application-exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/application-exit.png -------------------------------------------------------------------------------- /beampy/icons/beampy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/beampy-logo.png -------------------------------------------------------------------------------- /beampy/icons/document-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/document-open.png -------------------------------------------------------------------------------- /beampy/icons/document-save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/document-save-as.png -------------------------------------------------------------------------------- /beampy/icons/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/document-save.png -------------------------------------------------------------------------------- /beampy/icons/help-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/icons/help-about.png -------------------------------------------------------------------------------- /beampy/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/interface.py -------------------------------------------------------------------------------- /beampy/interface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/interface.ui -------------------------------------------------------------------------------- /beampy/parameters/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/parameters/default.txt -------------------------------------------------------------------------------- /beampy/parameters/free_propag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/parameters/free_propag.txt -------------------------------------------------------------------------------- /beampy/parameters/losses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/parameters/losses.txt -------------------------------------------------------------------------------- /beampy/parameters/soliton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/parameters/soliton.txt -------------------------------------------------------------------------------- /beampy/user_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/beampy/user_interface.py -------------------------------------------------------------------------------- /docs/Beampy_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/Beampy_guide.pdf -------------------------------------------------------------------------------- /docs/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/LICENSE.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/beampy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/beampy.rst -------------------------------------------------------------------------------- /docs/code_bpm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/code_bpm.rst -------------------------------------------------------------------------------- /docs/code_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/code_example.rst -------------------------------------------------------------------------------- /docs/code_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/code_interface.rst -------------------------------------------------------------------------------- /docs/code_user_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/code_user_interface.rst -------------------------------------------------------------------------------- /docs/codes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/codes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/contact.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/LICENSE.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/LICENSE.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/beampy.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/beampy.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/code_bpm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/code_bpm.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/code_example.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/code_example.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/code_interface.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/code_interface.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/code_user_interface.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/code_user_interface.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/codes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/codes.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/contact.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/contact.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/examples.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/interface.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/interface.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/release_note.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/.doctrees/release_note.doctree -------------------------------------------------------------------------------- /docs/html/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/LICENSE.html -------------------------------------------------------------------------------- /docs/html/_downloads/c1f97d893b23614a88570ebc48d4e7c5/Beampy_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_downloads/c1f97d893b23614a88570ebc48d4e7c5/Beampy_guide.pdf -------------------------------------------------------------------------------- /docs/html/_images/airy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/airy.png -------------------------------------------------------------------------------- /docs/html/_images/arbitrary_waveguides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/arbitrary_waveguides.png -------------------------------------------------------------------------------- /docs/html/_images/array_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/array_guides.png -------------------------------------------------------------------------------- /docs/html/_images/beams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/beams.png -------------------------------------------------------------------------------- /docs/html/_images/curved_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/curved_guides.png -------------------------------------------------------------------------------- /docs/html/_images/def_gauss_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/def_gauss_beam.png -------------------------------------------------------------------------------- /docs/html/_images/def_gauss_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/def_gauss_guide.png -------------------------------------------------------------------------------- /docs/html/_images/free_propagation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/free_propagation.png -------------------------------------------------------------------------------- /docs/html/_images/grid_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/grid_definition.png -------------------------------------------------------------------------------- /docs/html/_images/kerr_var_irrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/kerr_var_irrad.png -------------------------------------------------------------------------------- /docs/html/_images/losses_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/losses_interface.png -------------------------------------------------------------------------------- /docs/html/_images/multimodal_beam_splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/multimodal_beam_splitter.png -------------------------------------------------------------------------------- /docs/html/_images/results_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/results_array.png -------------------------------------------------------------------------------- /docs/html/_images/results_curved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/results_curved.png -------------------------------------------------------------------------------- /docs/html/_images/results_soliton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/results_soliton.png -------------------------------------------------------------------------------- /docs/html/_images/two_waveguides_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/two_waveguides_power.png -------------------------------------------------------------------------------- /docs/html/_images/waveguide_array_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/waveguide_array_power.png -------------------------------------------------------------------------------- /docs/html/_images/waveguides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_images/waveguides.png -------------------------------------------------------------------------------- /docs/html/_sources/LICENSE.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/LICENSE.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/beampy.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/beampy.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/code_bpm.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/code_bpm.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/code_example.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/code_example.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/code_interface.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/code_interface.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/code_user_interface.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/code_user_interface.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/codes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/codes.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/contact.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/contact.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/examples.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/examples.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/interface.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/interface.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/release_note.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_sources/release_note.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/beampy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/beampy.html -------------------------------------------------------------------------------- /docs/html/code_bpm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/code_bpm.html -------------------------------------------------------------------------------- /docs/html/code_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/code_example.html -------------------------------------------------------------------------------- /docs/html/code_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/code_interface.html -------------------------------------------------------------------------------- /docs/html/code_user_interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/code_user_interface.html -------------------------------------------------------------------------------- /docs/html/codes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/codes.html -------------------------------------------------------------------------------- /docs/html/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/contact.html -------------------------------------------------------------------------------- /docs/html/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/examples.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/interface.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/release_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/release_note.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface.rst -------------------------------------------------------------------------------- /docs/interface/arbitrary_waveguides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/arbitrary_waveguides.png -------------------------------------------------------------------------------- /docs/interface/array_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/array_guides.png -------------------------------------------------------------------------------- /docs/interface/beams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/beams.png -------------------------------------------------------------------------------- /docs/interface/curved_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/curved_guides.png -------------------------------------------------------------------------------- /docs/interface/losses_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/losses_interface.png -------------------------------------------------------------------------------- /docs/interface/results_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/results_array.png -------------------------------------------------------------------------------- /docs/interface/results_curved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/results_curved.png -------------------------------------------------------------------------------- /docs/interface/results_soliton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/interface/results_soliton.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/release_note.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/release_note.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/results/airy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/airy.png -------------------------------------------------------------------------------- /docs/results/def_gauss_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/def_gauss_beam.png -------------------------------------------------------------------------------- /docs/results/def_gauss_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/def_gauss_guide.png -------------------------------------------------------------------------------- /docs/results/free_propagation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/free_propagation.png -------------------------------------------------------------------------------- /docs/results/grid_definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/grid_definition.png -------------------------------------------------------------------------------- /docs/results/kerr_algo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/kerr_algo.pdf -------------------------------------------------------------------------------- /docs/results/kerr_loop_impact.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/kerr_loop_impact.pdf -------------------------------------------------------------------------------- /docs/results/kerr_var_irrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/kerr_var_irrad.png -------------------------------------------------------------------------------- /docs/results/multimodal_beam_splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/multimodal_beam_splitter.png -------------------------------------------------------------------------------- /docs/results/two_waveguides_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/two_waveguides_power.png -------------------------------------------------------------------------------- /docs/results/waveguide_array_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/waveguide_array_power.png -------------------------------------------------------------------------------- /docs/results/waveguides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/docs/results/waveguides.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-simulation/Beampy/HEAD/setup.py --------------------------------------------------------------------------------