基本信息
源码名称:py-pde:用于求解一般偏微分方程的Python包-源码
源码大小:1.20M
文件格式:.zip
开发语言:Python
更新时间:2023-11-06
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
py-pde:用于求解一般偏微分方程的Python包-源码
py-pde是一个Python软件包,用于求解偏微分方程(PDE)。 该程序包提供了可在其上定义标量和张量字段的网格的类。 关联的微分算子是使用numba编译的有限差分实现来计算的。 这允许定义,检查和求解典型的PDE,例如...
├── py-pde-master
│ ├── CODE_OF_CONDUCT.md
│ ├── LICENSE
│ ├── README.md
│ ├── TODO.md
│ ├── codecov.yml
│ ├── docs
│ │ ├── Makefile
│ │ ├── build_all.sh
│ │ ├── methods
│ │ │ ├── boundary_discretization
│ │ │ │ ├── BoundaryDiscretization.nb
│ │ │ │ └── boundary_discretization.tex
│ │ │ └── common.tex
│ │ ├── paper
│ │ │ ├── paper.bib
│ │ │ └── paper.md
│ │ ├── requirements.txt
│ │ ├── source
│ │ │ ├── _images
│ │ │ │ ├── discretization.key
│ │ │ │ ├── discretization.pdf
│ │ │ │ ├── discretization_cropped.pdf
│ │ │ │ ├── discretization_cropped.svg
│ │ │ │ ├── performance_noflux.pdf
│ │ │ │ ├── performance_noflux.png
│ │ │ │ ├── performance_periodic.pdf
│ │ │ │ └── performance_periodic.png
│ │ │ ├── _static
│ │ │ │ └── custom.css
│ │ │ ├── conf.py
│ │ │ ├── create_performance_plots.py
│ │ │ ├── getting_started.rst
│ │ │ ├── index.rst
│ │ │ ├── manual
│ │ │ │ ├── advanced_usage.rst
│ │ │ │ ├── basic_usage.rst
│ │ │ │ ├── citing.rst
│ │ │ │ ├── code_of_conduct.rst
│ │ │ │ ├── contributing.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── mathematical_basics.rst
│ │ │ │ └── performance.rst
│ │ │ ├── parse_examples.py
│ │ │ ├── run_autodoc.py
│ │ │ └── sphinx_simplify_typehints.py
│ │ └── sphinx_ext
│ │ ├── package_config.py
│ │ └── toctree_filter.py
│ ├── examples
│ │ ├── README.txt
│ │ ├── analyze_scalar_field.py
│ │ ├── boundary_conditions.py
│ │ ├── cartesian_grid.py
│ │ ├── jupyter
│ │ │ ├── Different solvers.ipynb
│ │ │ ├── Discretized Fields.ipynb
│ │ │ └── Solve PDEs.ipynb
│ │ ├── laplace_eq_2d.py
│ │ ├── make_movie_live.py
│ │ ├── make_movie_storage.py
│ │ ├── pde_1d_class.py
│ │ ├── pde_1d_expression.py
│ │ ├── pde_brusselator_class.py
│ │ ├── pde_brusselator_expression.py
│ │ ├── pde_coupled.py
│ │ ├── pde_custom_class.py
│ │ ├── pde_custom_expression.py
│ │ ├── pde_custom_numba.py
│ │ ├── pde_heterogeneous_diffusion.py
│ │ ├── pde_schroedinger.py
│ │ ├── pde_sir.py
│ │ ├── plot_cylindrical_field.py
│ │ ├── plot_vector_field.py
│ │ ├── poisson_eq_1d.py
│ │ ├── show_3d_field_interactively.py
│ │ ├── simple.py
│ │ ├── solver_comparison.py
│ │ ├── spherical_grid.py
│ │ ├── stochastic_simulation.py
│ │ ├── tracker_interactive.py
│ │ ├── trackers.py
│ │ └── tutorial
│ │ ├── Tutorial 1 - Grids and fields.ipynb
│ │ └── Tutorial 2 - Solving pre-defined partial differential equations.ipynb
│ ├── pde
│ │ ├── __init__.py
│ │ ├── conftest.py
│ │ ├── fields
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── collection.py
│ │ │ ├── scalar.py
│ │ │ ├── tensorial.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── conftest.py
│ │ │ │ ├── test_field_collections.py
│ │ │ │ ├── test_generic_fields.py
│ │ │ │ ├── test_scalar_fields.py
│ │ │ │ ├── test_tensorial_fields.py
│ │ │ │ └── test_vectorial_fields.py
│ │ │ └── vectorial.py
│ │ ├── grids
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── boundaries
│ │ │ │ ├── __init__.py
│ │ │ │ ├── axes.py
│ │ │ │ ├── axis.py
│ │ │ │ ├── local.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_axes_boundaries.py
│ │ │ │ ├── test_axis_boundaries.py
│ │ │ │ └── test_local_boundaries.py
│ │ │ ├── cartesian.py
│ │ │ ├── cylindrical.py
│ │ │ ├── operators
│ │ │ │ ├── __init__.py
│ │ │ │ ├── cartesian.py
│ │ │ │ ├── common.py
│ │ │ │ ├── cylindrical.py
│ │ │ │ ├── polar.py
│ │ │ │ ├── spherical.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_cartesian_operators.py
│ │ │ │ ├── test_cylindrical_operators.py
│ │ │ │ ├── test_polar_operators.py
│ │ │ │ └── test_spherical_operators.py
│ │ │ ├── spherical.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_cartesian_grids.py
│ │ │ ├── test_cylindrical_grids.py
│ │ │ ├── test_generic_grids.py
│ │ │ └── test_spherical_grids.py
│ │ ├── pdes
│ │ │ ├── __init__.py
│ │ │ ├── allen_cahn.py
│ │ │ ├── base.py
│ │ │ ├── cahn_hilliard.py
│ │ │ ├── diffusion.py
│ │ │ ├── kpz_interface.py
│ │ │ ├── kuramoto_sivashinsky.py
│ │ │ ├── laplace.py
│ │ │ ├── pde.py
│ │ │ ├── swift_hohenberg.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_diffusion_pdes.py
│ │ │ │ ├── test_generic_pdes.py
│ │ │ │ ├── test_laplace_pdes.py
│ │ │ │ ├── test_pde_class.py
│ │ │ │ └── test_wave_pdes.py
│ │ │ └── wave.py
│ │ ├── py.typed
│ │ ├── solvers
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── controller.py
│ │ │ ├── explicit.py
│ │ │ ├── implicit.py
│ │ │ ├── scipy.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_explicit_solvers.py
│ │ │ ├── test_generic_solvers.py
│ │ │ └── test_scipy_solvers.py
│ │ ├── storage
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── file.py
│ │ │ ├── memory.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_file_storages.py
│ │ │ ├── test_generic_storages.py
│ │ │ └── test_memory_storages.py
│ │ ├── tests
│ │ │ ├── test_examples.py
│ │ │ └── test_integration.py
│ │ ├── tools
│ │ │ ├── __init__.py
│ │ │ ├── cache.py
│ │ │ ├── config.py
│ │ │ ├── cuboid.py
│ │ │ ├── docstrings.py
│ │ │ ├── expressions.py
│ │ │ ├── math.py
│ │ │ ├── misc.py
│ │ │ ├── numba.py
│ │ │ ├── output.py
│ │ │ ├── parameters.py
│ │ │ ├── parse_duration.py
│ │ │ ├── plotting.py
│ │ │ ├── spectral.py
│ │ │ ├── spherical.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_cache.py
│ │ │ │ ├── test_config.py
│ │ │ │ ├── test_cuboid.py
│ │ │ │ ├── test_expressions.py
│ │ │ │ ├── test_math.py
│ │ │ │ ├── test_misc.py
│ │ │ │ ├── test_numba.py
│ │ │ │ ├── test_output.py
│ │ │ │ ├── test_parameters.py
│ │ │ │ ├── test_parse_duration.py
│ │ │ │ ├── test_plotting.py
│ │ │ │ ├── test_spectral.py
│ │ │ │ └── test_spherical.py
│ │ │ └── typing.py
│ │ ├── trackers
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── interactive.py
│ │ │ ├── intervals.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_intervals.py
│ │ │ │ └── test_trackers.py
│ │ │ └── trackers.py
│ │ ├── version.py
│ │ └── visualization
│ │ ├── __init__.py
│ │ ├── movies.py
│ │ ├── plotting.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── test_movies.py
│ │ └── test_plotting.py
│ ├── requirements.txt
│ ├── scripts
│ │ ├── format_code.sh
│ │ ├── show_environment.py
│ │ └── upload_to_pypi.sh
│ ├── setup.cfg
│ ├── setup.py
│ └── tests
│ ├── mypy.ini
│ ├── notebooks
│ │ └── Test PlotTracker for different backend.ipynb
│ ├── performance_boundaries.py
│ ├── performance_laplace.py
│ ├── profile_import.py
│ ├── pytest.ini
│ ├── requirements.txt
│ ├── requirements_min.txt
│ ├── run_tests.py
│ ├── tests_all.sh
│ ├── tests_codestyle.sh
│ ├── tests_coverage.sh
│ ├── tests_parallel.sh
│ ├── tests_run.sh
│ └── tests_types.sh
└── py-pde:用于求解一般偏微分方程的Python包-源码_py-pde-master.zip
38 directories, 221 files
py-pde:用于求解一般偏微分方程的Python包-源码
py-pde是一个Python软件包,用于求解偏微分方程(PDE)。 该程序包提供了可在其上定义标量和张量字段的网格的类。 关联的微分算子是使用numba编译的有限差分实现来计算的。 这允许定义,检查和求解典型的PDE,例如...
.
├── py-pde-master
│ ├── CODE_OF_CONDUCT.md
│ ├── LICENSE
│ ├── README.md
│ ├── TODO.md
│ ├── codecov.yml
│ ├── docs
│ │ ├── Makefile
│ │ ├── build_all.sh
│ │ ├── methods
│ │ │ ├── boundary_discretization
│ │ │ │ ├── BoundaryDiscretization.nb
│ │ │ │ └── boundary_discretization.tex
│ │ │ └── common.tex
│ │ ├── paper
│ │ │ ├── paper.bib
│ │ │ └── paper.md
│ │ ├── requirements.txt
│ │ ├── source
│ │ │ ├── _images
│ │ │ │ ├── discretization.key
│ │ │ │ ├── discretization.pdf
│ │ │ │ ├── discretization_cropped.pdf
│ │ │ │ ├── discretization_cropped.svg
│ │ │ │ ├── performance_noflux.pdf
│ │ │ │ ├── performance_noflux.png
│ │ │ │ ├── performance_periodic.pdf
│ │ │ │ └── performance_periodic.png
│ │ │ ├── _static
│ │ │ │ └── custom.css
│ │ │ ├── conf.py
│ │ │ ├── create_performance_plots.py
│ │ │ ├── getting_started.rst
│ │ │ ├── index.rst
│ │ │ ├── manual
│ │ │ │ ├── advanced_usage.rst
│ │ │ │ ├── basic_usage.rst
│ │ │ │ ├── citing.rst
│ │ │ │ ├── code_of_conduct.rst
│ │ │ │ ├── contributing.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── mathematical_basics.rst
│ │ │ │ └── performance.rst
│ │ │ ├── parse_examples.py
│ │ │ ├── run_autodoc.py
│ │ │ └── sphinx_simplify_typehints.py
│ │ └── sphinx_ext
│ │ ├── package_config.py
│ │ └── toctree_filter.py
│ ├── examples
│ │ ├── README.txt
│ │ ├── analyze_scalar_field.py
│ │ ├── boundary_conditions.py
│ │ ├── cartesian_grid.py
│ │ ├── jupyter
│ │ │ ├── Different solvers.ipynb
│ │ │ ├── Discretized Fields.ipynb
│ │ │ └── Solve PDEs.ipynb
│ │ ├── laplace_eq_2d.py
│ │ ├── make_movie_live.py
│ │ ├── make_movie_storage.py
│ │ ├── pde_1d_class.py
│ │ ├── pde_1d_expression.py
│ │ ├── pde_brusselator_class.py
│ │ ├── pde_brusselator_expression.py
│ │ ├── pde_coupled.py
│ │ ├── pde_custom_class.py
│ │ ├── pde_custom_expression.py
│ │ ├── pde_custom_numba.py
│ │ ├── pde_heterogeneous_diffusion.py
│ │ ├── pde_schroedinger.py
│ │ ├── pde_sir.py
│ │ ├── plot_cylindrical_field.py
│ │ ├── plot_vector_field.py
│ │ ├── poisson_eq_1d.py
│ │ ├── show_3d_field_interactively.py
│ │ ├── simple.py
│ │ ├── solver_comparison.py
│ │ ├── spherical_grid.py
│ │ ├── stochastic_simulation.py
│ │ ├── tracker_interactive.py
│ │ ├── trackers.py
│ │ └── tutorial
│ │ ├── Tutorial 1 - Grids and fields.ipynb
│ │ └── Tutorial 2 - Solving pre-defined partial differential equations.ipynb
│ ├── pde
│ │ ├── __init__.py
│ │ ├── conftest.py
│ │ ├── fields
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── collection.py
│ │ │ ├── scalar.py
│ │ │ ├── tensorial.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── conftest.py
│ │ │ │ ├── test_field_collections.py
│ │ │ │ ├── test_generic_fields.py
│ │ │ │ ├── test_scalar_fields.py
│ │ │ │ ├── test_tensorial_fields.py
│ │ │ │ └── test_vectorial_fields.py
│ │ │ └── vectorial.py
│ │ ├── grids
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── boundaries
│ │ │ │ ├── __init__.py
│ │ │ │ ├── axes.py
│ │ │ │ ├── axis.py
│ │ │ │ ├── local.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_axes_boundaries.py
│ │ │ │ ├── test_axis_boundaries.py
│ │ │ │ └── test_local_boundaries.py
│ │ │ ├── cartesian.py
│ │ │ ├── cylindrical.py
│ │ │ ├── operators
│ │ │ │ ├── __init__.py
│ │ │ │ ├── cartesian.py
│ │ │ │ ├── common.py
│ │ │ │ ├── cylindrical.py
│ │ │ │ ├── polar.py
│ │ │ │ ├── spherical.py
│ │ │ │ └── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_cartesian_operators.py
│ │ │ │ ├── test_cylindrical_operators.py
│ │ │ │ ├── test_polar_operators.py
│ │ │ │ └── test_spherical_operators.py
│ │ │ ├── spherical.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_cartesian_grids.py
│ │ │ ├── test_cylindrical_grids.py
│ │ │ ├── test_generic_grids.py
│ │ │ └── test_spherical_grids.py
│ │ ├── pdes
│ │ │ ├── __init__.py
│ │ │ ├── allen_cahn.py
│ │ │ ├── base.py
│ │ │ ├── cahn_hilliard.py
│ │ │ ├── diffusion.py
│ │ │ ├── kpz_interface.py
│ │ │ ├── kuramoto_sivashinsky.py
│ │ │ ├── laplace.py
│ │ │ ├── pde.py
│ │ │ ├── swift_hohenberg.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_diffusion_pdes.py
│ │ │ │ ├── test_generic_pdes.py
│ │ │ │ ├── test_laplace_pdes.py
│ │ │ │ ├── test_pde_class.py
│ │ │ │ └── test_wave_pdes.py
│ │ │ └── wave.py
│ │ ├── py.typed
│ │ ├── solvers
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── controller.py
│ │ │ ├── explicit.py
│ │ │ ├── implicit.py
│ │ │ ├── scipy.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_explicit_solvers.py
│ │ │ ├── test_generic_solvers.py
│ │ │ └── test_scipy_solvers.py
│ │ ├── storage
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── file.py
│ │ │ ├── memory.py
│ │ │ └── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_file_storages.py
│ │ │ ├── test_generic_storages.py
│ │ │ └── test_memory_storages.py
│ │ ├── tests
│ │ │ ├── test_examples.py
│ │ │ └── test_integration.py
│ │ ├── tools
│ │ │ ├── __init__.py
│ │ │ ├── cache.py
│ │ │ ├── config.py
│ │ │ ├── cuboid.py
│ │ │ ├── docstrings.py
│ │ │ ├── expressions.py
│ │ │ ├── math.py
│ │ │ ├── misc.py
│ │ │ ├── numba.py
│ │ │ ├── output.py
│ │ │ ├── parameters.py
│ │ │ ├── parse_duration.py
│ │ │ ├── plotting.py
│ │ │ ├── spectral.py
│ │ │ ├── spherical.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_cache.py
│ │ │ │ ├── test_config.py
│ │ │ │ ├── test_cuboid.py
│ │ │ │ ├── test_expressions.py
│ │ │ │ ├── test_math.py
│ │ │ │ ├── test_misc.py
│ │ │ │ ├── test_numba.py
│ │ │ │ ├── test_output.py
│ │ │ │ ├── test_parameters.py
│ │ │ │ ├── test_parse_duration.py
│ │ │ │ ├── test_plotting.py
│ │ │ │ ├── test_spectral.py
│ │ │ │ └── test_spherical.py
│ │ │ └── typing.py
│ │ ├── trackers
│ │ │ ├── __init__.py
│ │ │ ├── base.py
│ │ │ ├── interactive.py
│ │ │ ├── intervals.py
│ │ │ ├── tests
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_intervals.py
│ │ │ │ └── test_trackers.py
│ │ │ └── trackers.py
│ │ ├── version.py
│ │ └── visualization
│ │ ├── __init__.py
│ │ ├── movies.py
│ │ ├── plotting.py
│ │ └── tests
│ │ ├── __init__.py
│ │ ├── test_movies.py
│ │ └── test_plotting.py
│ ├── requirements.txt
│ ├── scripts
│ │ ├── format_code.sh
│ │ ├── show_environment.py
│ │ └── upload_to_pypi.sh
│ ├── setup.cfg
│ ├── setup.py
│ └── tests
│ ├── mypy.ini
│ ├── notebooks
│ │ └── Test PlotTracker for different backend.ipynb
│ ├── performance_boundaries.py
│ ├── performance_laplace.py
│ ├── profile_import.py
│ ├── pytest.ini
│ ├── requirements.txt
│ ├── requirements_min.txt
│ ├── run_tests.py
│ ├── tests_all.sh
│ ├── tests_codestyle.sh
│ ├── tests_coverage.sh
│ ├── tests_parallel.sh
│ ├── tests_run.sh
│ └── tests_types.sh
└── py-pde:用于求解一般偏微分方程的Python包-源码_py-pde-master.zip
38 directories, 221 files