本文整理汇总了Python中ucl.physiol.neuroconstruct.project.ProjectManager.reloadSimulation方法的典型用法代码示例。如果您正苦于以下问题:Python ProjectManager.reloadSimulation方法的具体用法?Python ProjectManager.reloadSimulation怎么用?Python ProjectManager.reloadSimulation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ucl.physiol.neuroconstruct.project.ProjectManager
的用法示例。
在下文中一共展示了ProjectManager.reloadSimulation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: DataSet
# 需要导入模块: from ucl.physiol.neuroconstruct.project import ProjectManager [as 别名]
# 或者: from ucl.physiol.neuroconstruct.project.ProjectManager import reloadSimulation [as 别名]
cellsToUse = []
centre = None
for simRef in simRefs:
info = "Peaks of synchrony for sim: "+simRef
peaks_wave[simRef] = DataSet(info, info, "Time", "Peak", "ms", "")
try:
GeneralUtils.timeCheck("Before load sim", True)
simData = pm.reloadSimulation(simRef)
print
print "--- Reloading data from simulation: %s"%simRef
if centre is None:
centre = Point3f(0,0,0)
numInputs = len(project.generatedElecInputs.getInputLocations(inputStimRef))
for input in project.generatedElecInputs.getInputLocations(inputStimRef):
print input
pos = project.generatedCellPositions.getOneCellPosition(cellGroupName, input.getCellNumber())
print pos
centre.x += pos.x/numInputs
centre.y += pos.y/numInputs
centre.z += pos.z/numInputs