├── .gitattributes ├── .gitignore ├── BSmag Core ├── BSmag_add_filament.m ├── BSmag_get_B.m ├── BSmag_init.m └── BSmag_plot_field_points.m ├── BSmag Docs └── BSmag_20150407_Manual.pdf ├── BSmag Examples ├── example_1D_straight_filament.m ├── example_2D_bent_filaments.m └── example_3D_solenoid_filament.m ├── BSmag Others ├── validation_finite_straight_filament.m ├── validation_finite_straight_filament.png ├── validation_loop_filament_onAxis.m └── validation_loop_filament_onAxis.png ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/.gitignore -------------------------------------------------------------------------------- /BSmag Core/BSmag_add_filament.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Core/BSmag_add_filament.m -------------------------------------------------------------------------------- /BSmag Core/BSmag_get_B.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Core/BSmag_get_B.m -------------------------------------------------------------------------------- /BSmag Core/BSmag_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Core/BSmag_init.m -------------------------------------------------------------------------------- /BSmag Core/BSmag_plot_field_points.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Core/BSmag_plot_field_points.m -------------------------------------------------------------------------------- /BSmag Docs/BSmag_20150407_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Docs/BSmag_20150407_Manual.pdf -------------------------------------------------------------------------------- /BSmag Examples/example_1D_straight_filament.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Examples/example_1D_straight_filament.m -------------------------------------------------------------------------------- /BSmag Examples/example_2D_bent_filaments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Examples/example_2D_bent_filaments.m -------------------------------------------------------------------------------- /BSmag Examples/example_3D_solenoid_filament.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Examples/example_3D_solenoid_filament.m -------------------------------------------------------------------------------- /BSmag Others/validation_finite_straight_filament.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Others/validation_finite_straight_filament.m -------------------------------------------------------------------------------- /BSmag Others/validation_finite_straight_filament.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Others/validation_finite_straight_filament.png -------------------------------------------------------------------------------- /BSmag Others/validation_loop_filament_onAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Others/validation_loop_filament_onAxis.m -------------------------------------------------------------------------------- /BSmag Others/validation_loop_filament_onAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/BSmag Others/validation_loop_filament_onAxis.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqueval/BSmag/HEAD/README.md --------------------------------------------------------------------------------