Time
Manages the partition of time throughout the day.
Handles the time in the simulation.
This module contains the Timer class, which manages the advancement of time by the Simulator class.
Timer
Class desinged to manage how time is measured and advanced in the simulation.
In particular, it controls the size of timesteps and the type of timestep (morning, workday, evening, night, weekday, weekend, special holiday, etc).
Source code in june/time.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 |
|
activities
property
date_str
property
day
property
day_of_week
property
day_type
property
duration
property
is_weekend
property
now
property
shift_duration
property
from_file(config_filename)
classmethod
Create a Timer object from a configuration.yaml file.
This method is how the Timer object is created in the example scripts. It is created from a default example configuration file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config_filename
|
str
|
Filename of the configuration.yaml file. Config file contains information such as the number of days to simulate for, the different sizes and types of timesteps (weekday, weekend, morning, evening, worktime, etc) |
required |
Source code in june/time.py
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 |
|
is_end_of_day()
Check if next timestep will be a new day
Source code in june/time.py
178 179 180 181 182 |
|
is_first_timestep_of_day()
Check if this is the first timestep of the day
Source code in june/time.py
174 175 176 |
|
reset()
Source code in june/time.py
155 156 157 158 159 160 |
|
reset_to_new_date(date)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
date
|
|
required |
Source code in june/time.py
162 163 164 165 166 167 168 169 170 171 172 |
|