Universe
Source code in Akatosh\universe.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
current_event_priority
property
The current event priority.
max_event_priority
property
The maximum event priority.
paused
property
Return True if the simulation is paused, otherwise False.
pending_events
property
The events that are pending to be executed. Please note that this is not the queue for future events. This is used for start async tasks for the events.
realtime
property
Return True if the simulation is in real time mode, otherwise False. Default is False.
simulation_end_time
property
The time when the simulation ended.
simulation_start_time
property
The time when the simulation started.
time
property
Return the current time.
time_resolution
property
writable
Return the time resolution. 1 for 0.1s, 2 for 0.01s, 3 for 0.001s, and so on. Default is 3.
time_step
property
The time step of the simulation. Default is 0.001s.
__init__()
The simulation universe.
Source code in Akatosh\universe.py
disable_realtime()
enable_realtime()
pause()
resume()
set_logging_level(level=logging.DEBUG)
simulate(till)
Simulate the universe until the given time.