├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── cnlse ├── __init__.py ├── cnlse.py ├── dispersion.py ├── envelopes.py └── raman_response.py ├── data ├── 191119_polarisation_21m_lambda_1560nm_power_41mW.png ├── 191119_polarisation_21m_lambda_1560nm_power_41mW_angle_1deg_exp.mat └── 191119_polarisation_21m_lambda_1560nm_power_41mW_angle_89deg_exp.mat ├── draw_soliton_traping.py ├── requirements.txt ├── run_modulation_instability.py └── run_soliton_traping.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/README.md -------------------------------------------------------------------------------- /cnlse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/cnlse/__init__.py -------------------------------------------------------------------------------- /cnlse/cnlse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/cnlse/cnlse.py -------------------------------------------------------------------------------- /cnlse/dispersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/cnlse/dispersion.py -------------------------------------------------------------------------------- /cnlse/envelopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/cnlse/envelopes.py -------------------------------------------------------------------------------- /cnlse/raman_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/cnlse/raman_response.py -------------------------------------------------------------------------------- /data/191119_polarisation_21m_lambda_1560nm_power_41mW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/data/191119_polarisation_21m_lambda_1560nm_power_41mW.png -------------------------------------------------------------------------------- /data/191119_polarisation_21m_lambda_1560nm_power_41mW_angle_1deg_exp.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/data/191119_polarisation_21m_lambda_1560nm_power_41mW_angle_1deg_exp.mat -------------------------------------------------------------------------------- /data/191119_polarisation_21m_lambda_1560nm_power_41mW_angle_89deg_exp.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/data/191119_polarisation_21m_lambda_1560nm_power_41mW_angle_89deg_exp.mat -------------------------------------------------------------------------------- /draw_soliton_traping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/draw_soliton_traping.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gnlse==2.0.0 -------------------------------------------------------------------------------- /run_modulation_instability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/run_modulation_instability.py -------------------------------------------------------------------------------- /run_soliton_traping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WUST-FOG/cgnlse-python/HEAD/run_soliton_traping.py --------------------------------------------------------------------------------