本文整理匯總了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}