Communication Setup中VCDL与Python交互
Application Moudles基础代码
import vector.canoe
@vector.canoe.measurement_script
class LinkToSigFile:
# Called before measurement start to perform necessary initializations,
# e.g. to create objects. During measurement, few additional objects
# should be created to prevent garbage collection runs in time-critical
# simulations.
def initialize(self):
pass
#Notification that the measurement starts.
def start(self):
pass
#Notification that the measurement ends.
def stop(self):
pass
# Cleanup after the measurement. Complement to Initialize. This is not
# a "Dispose" method; your object should still be usable afterwards.
def shutdown(self):
pass
关联文章
本文来自博客园,作者:{张一默},转载请注明原文链接:https://www.cnblogs.com/YiMo9929/p/17837867.html