## How to Get Simulation Time from the Variable Server
For historical reasons ```sys.exec.out.time``` is the name given to simulation time in data recording files. ```sys.exec.out.time``` isn’t a real variable in a Trick sim. So you can’t get it from the variable server directly.
The way to get the sim time from the Trick variable server is to get the following two variables and then calculate the sim-time.
```trick_sys.sched.time_tic_value``` - **integer** that represents the number of tics per second.
```trick_sys.sched.time_tics``` - **integer** that represents the current simulation time in time tics.
To calculate the simulation time:
1. Convert the value of ```trick_sys.sched.time_tics``` to a floating point number.
2. Then divide that by the value of ```trick_sys.sched.time_tic_value```.
Below is a simple Python variable server client that gets and prints simulation time for any modern Trick based simulation.