本文整理汇总了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)
示例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()