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


Python Graphics.display_eclair_max方法代码示例

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


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

示例1: sqrt

# 需要导入模块: import Graphics [as 别名]
# 或者: from Graphics import display_eclair_max [as 别名]
catenary, and sine curves. It was built from scratch, thus it may lack certain
geometrical properties to be a realistic candidate.
"""

from math import pi, sqrt, cosh
import EclairMax, Graphics
import numpy as np
import sympy as sp
t = sp.symbols('t')

a = (sqrt((2 * pi - 8.5) ** 2 + 4) + sqrt((2 * pi - 8.5) ** 2 + (10 - cosh(8.5 - 2 * pi)) ** 2)) / 2
b = sqrt(a ** 2 - (6 - cosh(8.5 - 2 * pi) / 2) ** 2)
L = 0.5
F = np.array([[t, -1 / t, -0.5, -9],
              [3 * sp.sin(t) - 9, 40 / 9. * sp.cos(t) + 41 / 9., -pi, 0],
              [t, sp.sin(t + 9 + pi / 2) + 8, -9, 2 * pi - 9],
              [t, 10 - sp.cosh(t + 9 - 2 * pi), 2 * pi - 9, -0.5],
              [b * sp.sin(t) + 2 * pi - 9, a * sp.cos(t) + 6 - cosh(8.5 - 2 * pi) / 2,
              pi / 2 - 0.3921415, pi / 2 + 0.3921415]])

step = 0.001
w = 1.0
r_min = 1.1
r_max = 2.0

r_arr, ratio, i = EclairMax.eclair_max(w, F, step, r_min, r_max, 1000)
road_arr = EclairMax.road_creator(F, step, w)
lamp_arr = EclairMax.eclaire(r_arr[i], road_arr)
Graphics.display_eclair_max(road_arr, lamp_arr, r_arr, ratio, r_arr[i])

R = 1.265
开发者ID:DavidJourdan,项目名称:EclairMax,代码行数:33,代码来源:TestCircuit.py


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