当前位置: 首页>>代码示例>>Python>>正文


Python Specie.get_nmr_quadrupole_moment方法代码示例

本文整理汇总了Python中pymatgen.core.periodic_table.Specie.get_nmr_quadrupole_moment方法的典型用法代码示例。如果您正苦于以下问题:Python Specie.get_nmr_quadrupole_moment方法的具体用法?Python Specie.get_nmr_quadrupole_moment怎么用?Python Specie.get_nmr_quadrupole_moment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pymatgen.core.periodic_table.Specie的用法示例。


在下文中一共展示了Specie.get_nmr_quadrupole_moment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: coupling_constant

# 需要导入模块: from pymatgen.core.periodic_table import Specie [as 别名]
# 或者: from pymatgen.core.periodic_table.Specie import get_nmr_quadrupole_moment [as 别名]
    def coupling_constant(self, specie):
        """
        Computes the couplling constant C_q as defined in:
            Wasylishen R E, Ashbrook S E, Wimperis S. NMR of quadrupolar nuclei
            in solid materials[M]. John Wiley & Sons, 2012. (Chapter 3.2)

        C_q for a specific atom type for this electric field tensor:
                C_q=e*Q*V_zz/h
            h: planck's constant
            Q: nuclear electric quadrupole moment in mb (millibarn
            e: elementary proton charge

        Args:
            specie: flexible input to specify the species at this site.
                    Can take a isotope or element string, Specie object,
                    or Site object

        Return:

            the coupling constant as a FloatWithUnit in MHz
        """
        planks_constant=FloatWithUnit(6.62607004E-34, "m^2 kg s^-1")
        Vzz=FloatWithUnit(self.V_zz, "V ang^-2")
        e=FloatWithUnit(-1.60217662E-19, "C")

        # Convert from string to Specie object
        if isinstance(specie, str):
            # isotope was provided in string format
            if len(specie.split("-")) > 1:
                isotope=str(specie)
                specie=Specie(specie.split("-")[0])
                Q=specie.get_nmr_quadrupole_moment(isotope)
            else:
                specie=Specie(specie)
                Q=specie.get_nmr_quadrupole_moment()
        elif isinstance(specie, Site):
            specie=specie.specie
            Q=specie.get_nmr_quadrupole_moment()
        elif isinstance(specie, Specie):
            Q=specie.get_nmr_quadrupole_moment()
        else:
            raise ValueError("Invalid speciie provided for quadrupolar coupling constant calcuations")

        return (e * Q * Vzz / planks_constant).to("MHz")
开发者ID:ExpHP,项目名称:pymatgen,代码行数:46,代码来源:nmr.py


注:本文中的pymatgen.core.periodic_table.Specie.get_nmr_quadrupole_moment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。