Neumann's Principle

Neumann's principle, or principle of symmetry, states that, if a crystal is invariant with respect to certain symmetry elements, any of its physical properties must also be invariant with respect to the same symmetry elements, or otherwise stated, the symmetry elements of any physical property of a crystal must include the symmetry elements of the point group of the crystal. It is generalized to physical phenomena by Curie laws.

Example

This principle may be illustrated by considering the optical indicatrix of a crystal, which is an ellipsoid. If the medium is invariant with respect to a three-fold, a four-fold or a six-fold axis (as in a trigonal, tetragonal or hexagonal crystal, for instance), its optical indicatrix must also be invariant with respect to the same axis, according to Neumann's principle. As an ellipsoid can only be ordinary or of revolution, the indicatrix of a trigonal, tetragonal or hexagonal crystal is necessarily an ellipsoid of revolution. These crystals are said to be uniaxial. In a cubic crystal which has four three--fold axes, the indicatrix must have several axes of revolution, it is therefore a sphere and cubic media behave as isotropic media for properties represented by a tensor of rank 2.

Curie laws

Curie extended the notion of symmetry to include that of physical phenomena and stated that:

  • the symmetry characteristic of a phenomenon is the highest compatible with the existence of the phenomenon;
  • the phenomenon may exist in a medium which possesses that symmetry or that of a subgroup of that symmetry.

and concludes that some symmetry elements may coexist with the phenomenon but that their presence is not necessary. On the contrary, what is necessary is the absence of certain symmetry elements: ‘asymmetry creates the phenomenon’. Noting that physical phenomena usually express relations between a cause and an effect (an influence and a response), P. Curie restated the two above propositions in the following way, now known as Curie laws, although they are not, strictly speaking, laws (Curie himself spoke about 'the principle of symmetry'):

  • the asymmetry of the effects must pre-exist in the causes;
  • the effects may be more symmetric than the causes.

Applications

Curie applied the above statements to determine the symmetry characteristic of physical quantities such as a polar vector, a force or an electrical field, A ∞M, an axial vector or a magnetic field, (A /MC.

If one now considers a phenomenon resulting from the superposition of several causes in the same medium, one may note that the symmetry of the global cause is the intersection of the groups of symmetry of the various causes: the asymmetries add up. This remark can be applied to the determination of the point groups where physical properties such as pyroelectricity or piezoelectricity are possible.

References:

[1] Franz Neumann (1795-1898)'s principle was first stated in his course at the university of Königsberg (1873/1874) and was published in the printed version of his lecture notes (Neumann F.E., 1885, Vorlesungen über die Theorie der Elastizität der festen Körper und des Lichtäthers, edited by O. E. Meyer. Leipzig, B. G. Teubner-Verlag.

[2] Pierre Curie (1859-1906)'s principle of symmetry is stated in Curie P., 1894, J. Physique3, 393-415, Sur la symétrie dans les phénomènes physiques, symétrie d'un champ électrique et d'un champ magnétique.

[3] https://Chemistry/Crystallography/PhysicalPropertiesCrystals/NeumannPrinciple

[4] http://oldwww.iucr.org/iucr-top/comm/cteach/pamphlets/18/node4.html

[5] http://reference.iucr.org/dictionary/Neumann%27s_principle

Neumann's Principle and Curie laws的更多相关文章

  1. 最少知识原则(Least Knowledge Principle)

    最少知识原则(Least Knowledge Principle),或者称迪米特法则(Law of Demeter),是一种面向对象程序设计的指导原则,它描述了一种保持代码松耦合的策略.其可简单的归纳 ...

  2. 北风设计模式课程---最少知识原则(Least Knowledge Principle)

    北风设计模式课程---最少知识原则(Least Knowledge Principle) 一.总结 一句话总结: 最少知识原则(Least Knowledge Principle),或者称迪米特法则( ...

  3. Atitit.软件开发的几大规则,法则,与原则Principle v3

    Atitit.软件开发的几大规则,法则,与原则Principle  v31.1. 修改历史22. 设计模式六大原则22.1. 设计模式六大原则(1):单一职责原则22.2. 设计模式六大原则(2):里 ...

  4. C#设计模式系列:开闭原则(Open Close Principle)

    1.开闭原则简介 开闭原则对扩展开放,对修改关闭,开闭原则是面向对象设计中可复用设计的基石. 2.开闭原则的实现 实现开闭原则的关键就在于抽象,把系统的所有可能的行为抽象成一个抽象底层,这个抽象底层规 ...

  5. 开放封闭原则(Open Closed Principle)

    在面向对象的设计中有很多流行的思想,比如说 "所有的成员变量都应该设置为私有(Private)","要避免使用全局变量(Global Variables)",& ...

  6. 接口分离原则(Interface Segregation Principle)

    接口分离原则(Interface Segregation Principle)用于处理胖接口(fat interface)所带来的问题.如果类的接口定义暴露了过多的行为,则说明这个类的接口定义内聚程度 ...

  7. 依赖倒置原则(Dependency Inversion Principle)

    很多软件工程师都多少在处理 "Bad Design"时有一些痛苦的经历.如果发现这些 "Bad Design" 的始作俑者就是我们自己时,那感觉就更糟糕了.那么 ...

  8. 里氏替换原则(Liskov Substitution Principle)

    开放封闭原则(Open Closed Principle)是构建可维护性和可重用性代码的基础.它强调设计良好的代码可以不通过修改而扩展,新的功能通过添加新的代码来实现,而不需要更改已有的可工作的代码. ...

  9. 单一职责原则(Single Responsibility Principle)

    单一职责原则(SRP:The Single Responsibility Principle) 一个类应该有且只有一个变化的原因. There should never be more than on ...

随机推荐

  1. gzip1

    经过GZIP压缩后页面大小可以变为原来的30%甚至更小.要实现GZIP压缩页面需要浏览器和服务器共同支持, 实际上就是服务器压缩,传到浏览器后浏览器解压并解析.浏览器那边不需要我们担心,因为现在绝大多 ...

  2. java double 保留x位小数

    以下是保留两位的例子 public class Test1 { public static void main(String[] args) { double a = 123450; double d ...

  3. 使用Quartz框架定时发送预警邮件

    1.  Quartz定时发送预警邮件 1.1.   需求及实现思路 定时查询库存预警信息,一旦存在库存预警的商品,则发邮件通知相关人员 1.2.   Quartz框架 Quartz是OpenSymph ...

  4. Dubbo的学习

    Dubbo是阿里巴巴公司开源的一个高性能优秀的服务框架,使得应用可通过高性能的 RPC 实现服务的输出和输入功能,可以和 Spring框架无缝集成. Dubbo是一款高性能.轻量级的开源Java RP ...

  5. PE 装机

    PE 装机 下载PE安装到硬盘启动. 下载win7安装原始文件ISO镜像文件,解压ISO到文件夹. 重启电脑,选择PE菜单. 打开windows安装器大全>选择 winntSetup> i ...

  6. jquery-menu-aim插件实现二级导航

    jquery-menu-aim插件是实现二级导航亚马逊式三角滑动的强力工具,它在性能上极佳,快速滑动,基本无延迟效果,源码位置见对应作者的github,接下来附上样例代码: $(function () ...

  7. wed开发基础--练习题

    一.HTML部分 本小节重点: 熟练使用div+span布局,知道div和span的语义化的意思 熟悉对div.ul.li.span.a.img.table.form.input标签有深刻的认知, 初 ...

  8. Mac 命令行,自定义命令

    例如自定义命令 gotoXFolder, 直接进入XFolder文件夹, XFolder地址为~/abc/def/Xfolder 步骤: 1. 在home文件夹下创建.profile文件 在.prof ...

  9. Linux命令:sshpass

    sshpass介绍 sshpass是一款凡是为凡是使用ssl方式访问的操作提供一个免输入密码的非交互式操作,以便于在脚本中执行ssl操作,如ssh,scp等.sshpass是一家以色列公司Lingnu ...

  10. linux 3.10 一次softlock排查

    x86架构.一个同事分析的crash,我在他基础上再次协助分析,也没有获得进展,只是记录一下分析过程.记录是指备忘,万一有人解决过,也好给我们点帮助. 有一次软锁,大多数cpu被锁,log中第一个认为 ...