當前位置: 首頁>>代碼示例>>Python>>正文


Python Transform.convertWavelengthToEnergy方法代碼示例

本文整理匯總了Python中Transform.convertWavelengthToEnergy方法的典型用法代碼示例。如果您正苦於以下問題:Python Transform.convertWavelengthToEnergy方法的具體用法?Python Transform.convertWavelengthToEnergy怎麽用?Python Transform.convertWavelengthToEnergy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Transform的用法示例。


在下文中一共展示了Transform.convertWavelengthToEnergy方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: setWavelength

# 需要導入模塊: import Transform [as 別名]
# 或者: from Transform import convertWavelengthToEnergy [as 別名]
    def setWavelength(self,val,fixed=0,lower=None,upper=None):
        if fixed != 0 and fixed != 1:
            raise UserInputException("Cannot set the wavelength because fixed must be set to 0 or 1.")
        if lower != None and lower >= val:
            raise UserInputException("Cannot set the wavelength because the lower bound on wavelength must be less then the value.")
        if upper != None and upper <= val:
            raise UserInputException("Cannot set the wavelength because the upper bound on wavelength must be greater then the value.")
        if val <= 0:
            raise UserInputException("Cannot set the wavelength because it must be a positive quantity.")

        val = Transform.convertWavelengthToEnergy(val)
        if lower != None: lower=hc/upper
        if upper != None: upper=hc/lower
        # note that a low wavelength is the same as a high energy and vice versa!
        self.energy = {'val':val,'fixed':fixed,'lower':upper,'upper':lower} 
開發者ID:joshualande,項目名稱:AreaDiffractionMachine,代碼行數:17,代碼來源:CalibrationData.py


注:本文中的Transform.convertWavelengthToEnergy方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。