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


Python Model.setNonSmoothDynamicalSystemPtr方法代码示例

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


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

示例1: FirstOrderLinearDS

# 需要导入模块: from siconos.kernel import Model [as 别名]
# 或者: from siconos.kernel.Model import setNonSmoothDynamicalSystemPtr [as 别名]
# dynamical systems
process = FirstOrderLinearDS(x0, A)
myProcessRelation = ZhuravlevTwistingR(C,B)

myNslaw = RelayNSL(2)
myNslaw.display()

myProcessInteraction = Interaction(ninter, myNslaw,
        myProcessRelation)
myNSDS = NonSmoothDynamicalSystem()
myNSDS.insertDynamicalSystem(process)
myNSDS.link(myProcessInteraction,process)


filippov = Model(t0,T)
filippov.setNonSmoothDynamicalSystemPtr(myNSDS)

td = TimeDiscretisation(t0, h)
s = TimeStepping(td)

myIntegrator = EulerMoreauOSI(process, theta)
s.insertIntegrator(myIntegrator)


#TODO python <- SICONOS_RELAY_LEMKE
# access dparam

osnspb = Relay()
s.insertNonSmoothProblem(osnspb)
s.setComputeResiduY(True)
s.setComputeResiduR(True)
开发者ID:fperignon,项目名称:siconos,代码行数:33,代码来源:ZhuravlevTwisting.py

示例2: NonSmoothDynamicalSystem

# 需要导入模块: from siconos.kernel import Model [as 别名]
# 或者: from siconos.kernel.Model import setNonSmoothDynamicalSystemPtr [as 别名]

#
# Model
#
RelayOscillator=Model(t0,T,Modeltitle)

#   add the dynamical system in the non smooth dynamical system
myNSDS = NonSmoothDynamicalSystem()
myNSDS.insertDynamicalSystem(LSRelayOscillator)


#   link the interaction and the dynamical system
myNSDS.link(InterRelayOscillator,LSRelayOscillator)

RelayOscillator.setNonSmoothDynamicalSystemPtr(myNSDS)


#
# Simulation
#

# (1) OneStepIntegrators
theta = 0.5
aOSI = EulerMoreauOSI(theta)
aOSI.insertDynamicalSystem(LSRelayOscillator)
# (2) Time discretisation
aTiDisc = TimeDiscretisation(t0,h_step)

# (3) Non smooth problem
aRelay = Relay()
开发者ID:yushuiqiang,项目名称:siconos,代码行数:32,代码来源:RelayOscillator.py


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