在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → py-pde:用于求解一般偏微分方程的Python包-源码

py-pde:用于求解一般偏微分方程的Python包-源码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:1.20M
  • 下载次数:2
  • 浏览次数:5
  • 发布时间:2023-11-06
  • 实例类别:Python语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】py-pde:用于求解一般偏微分方程的Python包-源码
py-pde是一个Python软件包,用于求解偏微分方程(PDE)。 该程序包提供了可在其上定义标量和张量字段的网格的类。 关联的微分算子是使用numba编译的有限差分实现来计算的。 这允许定义,检查和求解典型的PDE,例如...

【实例截图】

from clipboard

【核心代码】.
├── 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包-源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警