python+matplotlib演示电偶极子实例代码


Posted in Python onJanuary 12, 2018

使用matplotlib.tri.CubicTriInterpolator.演示变化率计算:

python+matplotlib演示电偶极子实例代码

完整实例:

from matplotlib.tri import (
  Triangulation, UniformTriRefiner, CubicTriInterpolator)
import matplotlib.pyplot as plt
import matplotlib.cm as cm
import numpy as np


#-----------------------------------------------------------------------------
# Electrical potential of a dipole
#-----------------------------------------------------------------------------
def dipole_potential(x, y):
  """ The electric dipole potential V """
  r_sq = x**2 + y**2
  theta = np.arctan2(y, x)
  z = np.cos(theta)/r_sq
  return (np.max(z) - z) / (np.max(z) - np.min(z))


#-----------------------------------------------------------------------------
# Creating a Triangulation
#-----------------------------------------------------------------------------
# First create the x and y coordinates of the points.
n_angles = 30
n_radii = 10
min_radius = 0.2
radii = np.linspace(min_radius, 0.95, n_radii)

angles = np.linspace(0, 2 * np.pi, n_angles, endpoint=False)
angles = np.repeat(angles[..., np.newaxis], n_radii, axis=1)
angles[:, 1::2] += np.pi / n_angles

x = (radii*np.cos(angles)).flatten()
y = (radii*np.sin(angles)).flatten()
V = dipole_potential(x, y)

# Create the Triangulation; no triangles specified so Delaunay triangulation
# created.
triang = Triangulation(x, y)

# Mask off unwanted triangles.
triang.set_mask(np.hypot(x[triang.triangles].mean(axis=1),
             y[triang.triangles].mean(axis=1))
        < min_radius)

#-----------------------------------------------------------------------------
# Refine data - interpolates the electrical potential V
#-----------------------------------------------------------------------------
refiner = UniformTriRefiner(triang)
tri_refi, z_test_refi = refiner.refine_field(V, subdiv=3)

#-----------------------------------------------------------------------------
# Computes the electrical field (Ex, Ey) as gradient of electrical potential
#-----------------------------------------------------------------------------
tci = CubicTriInterpolator(triang, -V)
# Gradient requested here at the mesh nodes but could be anywhere else:
(Ex, Ey) = tci.gradient(triang.x, triang.y)
E_norm = np.sqrt(Ex**2 + Ey**2)

#-----------------------------------------------------------------------------
# Plot the triangulation, the potential iso-contours and the vector field
#-----------------------------------------------------------------------------
fig, ax = plt.subplots()
ax.set_aspect('equal')
# Enforce the margins, and enlarge them to give room for the vectors.
ax.use_sticky_edges = False
ax.margins(0.07)

ax.triplot(triang, color='0.8')

levels = np.arange(0., 1., 0.01)
cmap = cm.get_cmap(name='hot', lut=None)
ax.tricontour(tri_refi, z_test_refi, levels=levels, cmap=cmap,
       linewidths=[2.0, 1.0, 1.0, 1.0])
# Plots direction of the electrical vector field
ax.quiver(triang.x, triang.y, Ex/E_norm, Ey/E_norm,
     units='xy', scale=10., zorder=3, color='blue',
     width=0.007, headwidth=3., headlength=4.)

ax.set_title('Gradient plot: an electrical dipole')
plt.show()

总结

以上就是本文关于python+matplotlib演示电偶极子实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
跟老齐学Python之不要红头文件(2)
Sep 28 Python
Python中实现的RC4算法
Feb 14 Python
Python网络编程详解
Oct 31 Python
python3中函数参数的四种简单用法
Jul 09 Python
Python实现获取汉字偏旁部首的方法示例【测试可用】
Dec 18 Python
Python自动抢红包教程详解
Jun 11 Python
如何用Python制作微信好友个性签名词云图
Jun 28 Python
python lambda表达式在sort函数中的使用详解
Aug 28 Python
Python3实现二叉树的最大深度
Sep 30 Python
pytorch方法测试详解——归一化(BatchNorm2d)
Jan 15 Python
Django 设置多环境配置文件载入问题
Feb 25 Python
pandas使用之宽表变窄表的实现
Apr 12 Python
Python实现读取及写入csv文件的方法示例
Jan 12 #Python
python+matplotlib绘制旋转椭圆实例代码
Jan 12 #Python
使用C++扩展Python的功能详解
Jan 12 #Python
聊聊Python中的pypy
Jan 12 #Python
Python中实现switch功能实例解析
Jan 11 #Python
Python中getpass模块无回显输入源码解析
Jan 11 #Python
python版微信跳一跳游戏辅助
Jan 11 #Python
You might like
咖啡风味 世界咖啡主要分布分布 咖啡的生长要求
2021/03/06 新手入门
PHP模拟登陆163邮箱发邮件及获取通讯录列表的方法
2015/03/07 PHP
PHP基于cookie实现统计在线人数功能示例
2019/01/16 PHP
Javascript 定时器调用传递参数的方法
2009/11/12 Javascript
在jQuery 1.5中使用deferred对象的代码(翻译)
2011/03/10 Javascript
如何判断鼠标是否在DIV的区域内
2013/11/13 Javascript
jquery退出each循环的写法
2014/02/26 Javascript
ECMAScript5中的对象存取器属性:getter和setter介绍
2014/12/08 Javascript
js实现刷新iframe的方法汇总
2015/04/27 Javascript
JS实现可点击展开与关闭的左侧广告代码
2015/09/02 Javascript
js制作带有遮罩弹出层实现登录注册表单特效代码分享
2015/09/05 Javascript
javascript实现动态标签云
2015/10/16 Javascript
Angular.js中定时器循环的3种方法总结
2017/04/27 Javascript
详解如何用webpack打包一个网站应用项目
2017/07/12 Javascript
使用javaScript实现鼠标拖拽事件
2020/04/03 Javascript
JavaScript数据结构之双向链表定义与使用方法示例
2017/10/27 Javascript
vue: WebStorm设置快速编译运行的方法
2018/10/18 Javascript
vue组件之间通信方式实例总结【8种方式】
2019/02/22 Javascript
jQuery提示框插件SweetAlert用法分析
2019/08/05 jQuery
Vue在chrome44偶现点击子元素事件无法冒泡的解决方法
2019/12/15 Javascript
uniapp 仿微信的右边下拉选择弹出框的实现代码
2020/07/12 Javascript
python获取文件后缀名及批量更新目录下文件后缀名的方法
2014/11/11 Python
python自定义解析简单xml格式文件的方法
2015/05/11 Python
解读Python中degrees()方法的使用
2015/05/18 Python
Django使用httpresponse返回用户头像实例代码
2018/01/26 Python
python微信公众号之关注公众号自动回复
2018/10/25 Python
python写入数据到csv或xlsx文件的3种方法
2019/08/23 Python
python-视频分帧&amp;多帧合成视频实例
2019/12/10 Python
Python爬虫制作翻译程序的示例代码
2021/02/22 Python
基于html5 canvas做批改作业的小插件
2020/05/20 HTML / CSS
世界领先的在线地板和建筑材料批发商:BuildDirect
2017/02/26 全球购物
通信工程求职信
2014/07/16 职场文书
2015新员工试用期工作总结
2014/12/12 职场文书
专业技术职务聘任证明
2015/03/02 职场文书
2015领导干部廉洁自律工作总结
2015/07/23 职场文书
2019年中学生的思想品德评语集锦
2019/12/19 职场文书