本文整理汇总了Python中hyperion.model.Model.add_point_source_collection方法的典型用法代码示例。如果您正苦于以下问题:Python Model.add_point_source_collection方法的具体用法?Python Model.add_point_source_collection怎么用?Python Model.add_point_source_collection使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hyperion.model.Model
的用法示例。
在下文中一共展示了Model.add_point_source_collection方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from hyperion.model import Model [as 别名]
# 或者: from hyperion.model.Model import add_point_source_collection [as 别名]
x = w * np.cos(p)
y = w * np.sin(p)
# solid body with 1000 km/s on the outside
v = w * 1e8 # cm / s
vx = - v * np.sin(p)
vy = + v * np.cos(p)
vz = np.repeat(0, N)
# narrow emission line spectrum at 1 micron
wav = np.array([0.9999, 1.0001])
fnu = np.array([1., 1.])
nu = c / (wav * 1.e-4)
s = m.add_point_source_collection()
s.position = np.array([x, y, z]).transpose()
s.velocity = np.array([vx, vy, vz]).transpose()
s.spectrum = (nu[::-1], fnu[::-1])
s.luminosity = np.repeat(1., N)
# Set up images
i = m.add_peeled_images(sed=False, image=True)
i.set_wavelength_range(30, 0.995, 1.005)
i.set_image_limits(-1., 1., -1., 1.)
i.set_image_size(100, 100)
i.set_viewing_angles(np.linspace(0., 180, 13), np.linspace(0., 360, 13))
i = m.add_binned_images(sed=False, image=True)
i.set_wavelength_range(30, 0.995, 1.005)