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


Python Simulation.tick方法代码示例

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


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

示例1: print

# 需要导入模块: from simulation import Simulation [as 别名]
# 或者: from simulation.Simulation import tick [as 别名]
venus.radius = 0.0475

earth.material['diffuse'] = [70/255, 120/255, 200/255, 1.0]
earth.material['ambient'] = [70/255, 120/255, 200/255, 1.0]
earth.radius = 0.05

mars.material['diffuse'] = [216/255, 109/255, 47/255, 1.0]
mars.material['ambient'] = [216/255, 109/255, 47/255, 1.0]
mars.radius = 0.0266



##############
# Program loop
while True:
    sim.tick(timestep)
    print('#---------#')
    for body in sim.bodies:

        print('{}\tx: {:7.3f}  y: {:7.3f}  vx: {:10.3f}  vy: {:10.3f}'
              .format(body.name, body.x / AU, body.y / AU, body.vx, body.vy))
        print('\tvelocity: {:8.3f} km/s  distance from sun: {:5.3f} AU'
              .format(math.sqrt(body.vx**2 + body.vy**2),
                      math.sqrt(body.x**2 + body.y**2) / AU))





        # render stuff here
        interface.render()
开发者ID:crazyBaboon,项目名称:orbits,代码行数:33,代码来源:solar_system_collisions.py


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