Forum breadcrumbs - You are here:ForumGeneral: HelpScripted circTime()
You need to log in to create posts and topics.

Scripted circTime()

How to use circTime() in Angel Script ?

I'm trying to get the simulation time inside the script of a scripted component.

Thanks

You can get simulation time like this:

uint64 time = component.circTime();

That is the time from simulation start in picoseconds.

Thanks