April 22, 2022 at 5:23 pm
Guilin Sun
Ansys Employee
可以使用简单的命令 ?now; https://support.lumerical.com/hc/en-us/articles/360034411694-now-Script-command
返回UNIX系统的时间。
你也可以试这个脚本:fname="cur_time.txt"; # file name to store current time
cmd="echo %time% > "+fname; # system command to get current time and write to fname
system(cmd); # run command to get time and save to file
cur_time=read(fname); # read time from file
?cur_time; # current time: Hr, Min, Sec
运行前和运行后使用它。也可以把这个脚本设置为函数,每次调用,减少主程序的行数。
目前这两个方法都工作,你试一下看看。