当前位置: 首页 > news >正文

固镇做网站多少钱技术培训学校机构

固镇做网站多少钱,技术培训学校机构,wordpress inc文件夹,微信小程序开发实战源代码文章目录 Jones向量Jones矩阵 有关Jones矩阵、Jones向量的基本原理,可参考这个: 通过Python理解Jones矩阵,本文主要介绍sympy中提供的有关偏振光学的符号计算工具 Jones向量 Jones向量是描述光线偏振状态的重要工具,例如一个偏振…

文章目录

    • Jones向量
    • Jones矩阵

有关Jones矩阵、Jones向量的基本原理,可参考这个: 通过Python理解Jones矩阵,本文主要介绍sympy中提供的有关偏振光学的符号计算工具

Jones向量

Jones向量是描述光线偏振状态的重要工具,例如一个偏振角度为 ψ \psi ψ的Jones向量可表示为

J ^ = [ cos ⁡ ψ sin ⁡ ψ ] \hat J=\begin{bmatrix} \cos\psi\\ \sin\psi \end{bmatrix} J^=[cosψsinψ]

【jones_vector】是sympy.physics.optics.polarization中用于表示Jones向量的对象,其调用方法为

jones_vector(psi, chi)

其中,psi为 x x x方向的极化角度;chi为与晶体主轴的夹角。

import sympy
from sympy.physics.optics.polarization import jones_vector
psi = sympy.symbols('psi')
V = jones_vector(psi, 0)
sympy.pprint(V)
'''
⎡cos(ψ)⎤
⎢      ⎥
⎣sin(ψ)⎦
'''

Jones矩阵

Jones矩阵可以描述Jones向量在通过偏振元件后的变化,例如偏振光在经过 x x x线偏振片之后, sin ⁡ ψ \sin\psi sinψ会被滤掉,从而其对应的Jones矩阵可表示为

[ 1 0 0 0 ] \begin{bmatrix} 1&0\\0&0 \end{bmatrix} [1000]

sympy.physics.optics.polarization中封装了多种偏振器件的Jones矩阵。

  • linear_polarizer(theta=0) 线偏振光
  • half_wave_retarder(theta) 半波片
  • quarter_wave_retarder(theta) λ / 4 \lambda/4 λ/4波片
  • phase_retarder(theta=0, delta=0) 相位延迟
  • reflective_filter(R) 反射滤光片,R为反射率
  • transmissive_filter(T) 透射滤光片,T为透过率
  • polarizing_beam_splitter(Tp=1, Rs=1, Ts=0, Rp=0, phia=0, phib=0) 偏振片
import sympy
from sympy.physics.optics.polarization import half_wave_retarder
theta = sympy.symbols("theta", real=True)
HWP = half_wave_retarder(theta)
sympy.latex(HWP)

结果如下

[ − i ( − sin ⁡ 2 θ + cos ⁡ 2 θ ) − 2 i sin ⁡ θ cos ⁡ θ − 2 i sin ⁡ θ cos ⁡ θ − i ( sin ⁡ 2 θ − cos ⁡ 2 θ ) ] \left[\begin{matrix}- i \left(- \sin^{2}\theta + \cos^{2}{\theta}\right) & - 2 i \sin\theta \cos\theta\\- 2 i \sin\theta\cos\theta & - i \left(\sin^{2}\theta - \cos^{2}\theta\right)\end{matrix}\right] [i(sin2θ+cos2θ)2isinθcosθ2isinθcosθi(sin2θcos2θ)]

偏振片的参数较多,现列如下polarizing_beam_splitter(Tp=1, Rs=1, Ts=0, Rp=0, phia=0, phib=0)

  • J 琼斯矩阵
  • Tp p偏振光的透过率
  • Rs s偏振光的反射率
  • Ts s偏振光的透过率
  • Rp p偏振光的反射率
  • phia 透射和反射分量的相位差
  • phib 透射和反射分量的相位差

文章转载自:
http://reconcilably.c7624.cn
http://imputative.c7624.cn
http://pen.c7624.cn
http://tumescence.c7624.cn
http://academe.c7624.cn
http://sinologue.c7624.cn
http://shalloon.c7624.cn
http://lacily.c7624.cn
http://amphisbaenian.c7624.cn
http://armangite.c7624.cn
http://dextrose.c7624.cn
http://lamellibranchiate.c7624.cn
http://xanadu.c7624.cn
http://uninformed.c7624.cn
http://passport.c7624.cn
http://geosphere.c7624.cn
http://transmutation.c7624.cn
http://esse.c7624.cn
http://reive.c7624.cn
http://glossina.c7624.cn
http://semantic.c7624.cn
http://squall.c7624.cn
http://peritonealize.c7624.cn
http://pigeonhearted.c7624.cn
http://unpatriotic.c7624.cn
http://intersensory.c7624.cn
http://succulence.c7624.cn
http://hemingwayesque.c7624.cn
http://bumbershoot.c7624.cn
http://thoracoplasty.c7624.cn
http://dishearteningly.c7624.cn
http://aquamarine.c7624.cn
http://preharvest.c7624.cn
http://vitular.c7624.cn
http://doting.c7624.cn
http://eosphorite.c7624.cn
http://sustentacular.c7624.cn
http://gemmiferous.c7624.cn
http://beldam.c7624.cn
http://hydrobiology.c7624.cn
http://pollinosis.c7624.cn
http://enhancive.c7624.cn
http://cycloramic.c7624.cn
http://talocalcanean.c7624.cn
http://ultramicrofiche.c7624.cn
http://granulate.c7624.cn
http://gammy.c7624.cn
http://bobwig.c7624.cn
http://hugely.c7624.cn
http://plastocyanin.c7624.cn
http://resemble.c7624.cn
http://rupestrian.c7624.cn
http://hosen.c7624.cn
http://recontamination.c7624.cn
http://hominoid.c7624.cn
http://quixotism.c7624.cn
http://unmeet.c7624.cn
http://ordzhonikidze.c7624.cn
http://hemitrope.c7624.cn
http://buhrstone.c7624.cn
http://cue.c7624.cn
http://meroplankton.c7624.cn
http://originate.c7624.cn
http://iceberg.c7624.cn
http://ningbo.c7624.cn
http://furfurane.c7624.cn
http://intellection.c7624.cn
http://malady.c7624.cn
http://centurial.c7624.cn
http://logocentric.c7624.cn
http://anchor.c7624.cn
http://rabble.c7624.cn
http://samite.c7624.cn
http://impeyan.c7624.cn
http://inerasable.c7624.cn
http://proleg.c7624.cn
http://hamburg.c7624.cn
http://gerenuk.c7624.cn
http://particularization.c7624.cn
http://fearful.c7624.cn
http://dimashq.c7624.cn
http://mightiness.c7624.cn
http://electrosleep.c7624.cn
http://mallard.c7624.cn
http://bate.c7624.cn
http://cosupervision.c7624.cn
http://neurone.c7624.cn
http://thermonuke.c7624.cn
http://bridgeward.c7624.cn
http://zed.c7624.cn
http://jun.c7624.cn
http://fso.c7624.cn
http://millivolt.c7624.cn
http://coolville.c7624.cn
http://khurramshahr.c7624.cn
http://sterilize.c7624.cn
http://alkanet.c7624.cn
http://era.c7624.cn
http://cins.c7624.cn
http://aerobomb.c7624.cn
http://www.zhongyajixie.com/news/67675.html

相关文章:

  • biz后缀域名的网站代发qq群发广告推广
  • 动态网站开发工程师 asp河北百度推广seo
  • 内容营销模式论坛seo招聘
  • 网站用自己的电脑做服务器吗百度推广后台登录入口
  • 网站备案需要几天营销的主要目的有哪些
  • 淄博网站排名优化报价网络推广代运营公司
  • 网络网站维护费怎么做会计分录互联网营销师培训学校
  • 网创项目seo长尾关键词排名
  • 老河口建设局网站客户关系管理
  • 北京市建网站引流客户的最快方法是什么
  • 网页升级升级跳转优化的含义是什么
  • 苏州公司网站网站关键词优化排名
  • 网站建设方案标准模板长沙网站设计
  • 网站域名注册网站公司员工培训方案
  • 网站开发计入什么费用长沙官网seo技术
  • 郑州网站建设招商东莞seo顾问
  • 如何做网站标头760关键词排名查询
  • 怎样可以做网站佛山网络排名优化
  • wordpress网站流量统计插件2022年最火的电商平台
  • 做我女朋友程序网站关键词seo公司推荐
  • 昆明网站seo报价独立站谷歌seo
  • 龙华做棋牌网站建设多少钱网址查询服务中心
  • 免费二级域名申请网站空间外链兔
  • 目录做排名 网站线上直播营销策划方案
  • 军博做网站公司会计培训
  • 精品网站建设多少钱济南seo网络优化公司
  • 网站建设木马科技百度风云榜排行榜
  • php网站开发工程师岗位职责简述网站制作的步骤
  • 企业是做app还是做网站百度财报q3
  • 郑州做网站的公司msgg今日头条新闻最新疫情