HmsControl¶
Control specification operations for HEC-HMS.
hms_commander.HmsControl
¶
HmsControl - Control Specification File Operations
This module provides static methods for reading and modifying HEC-HMS control specification files (.control). It handles simulation time windows and intervals.
All methods are static and designed to be used without instantiation.
HmsControl
¶
Control specification file operations (.control files).
Manage simulation time windows and intervals for HEC-HMS simulations.
All methods are static - no instantiation required.
Example
from hms_commander import HmsControl time_window = HmsControl.get_time_window("model.control") print(f"Start: {time_window['start_date']}") HmsControl.set_time_window("model.control", start_date, end_date)
Source code in hms_commander/HmsControl.py
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 | |
get_controls(hms_object=None)
staticmethod
¶
Get all control specifications from the HMS project.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
hms_object
|
HmsPrj instance (uses global hms if None) |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
DataFrame with control specification information |
Source code in hms_commander/HmsControl.py
get_time_window(control_path, hms_object=None)
staticmethod
¶
Get the time window from a control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path to the .control file |
required |
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, datetime]
|
Dictionary with 'start_date' and 'end_date' as datetime objects |
Example
window = HmsControl.get_time_window("Run1.control") print(f"Start: {window['start_date']}") print(f"End: {window['end_date']}")
Source code in hms_commander/HmsControl.py
set_time_window(control_path, start_date, end_date, hms_object=None)
staticmethod
¶
Set the time window in a control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path to the .control file |
required |
start_date
|
datetime
|
Simulation start date/time |
required |
end_date
|
datetime
|
Simulation end date/time |
required |
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
bool
|
True if successful |
Example
from datetime import datetime start = datetime(2020, 1, 1, 0, 0) end = datetime(2020, 1, 3, 0, 0) HmsControl.set_time_window("Run1.control", start, end)
Source code in hms_commander/HmsControl.py
get_time_interval(control_path, hms_object=None)
staticmethod
¶
Get the time interval from a control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path to the .control file |
required |
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Time interval string (e.g., "15 Minutes", "1 Hour") |
Example
interval = HmsControl.get_time_interval("Run1.control") print(f"Interval: {interval}")
Source code in hms_commander/HmsControl.py
set_time_interval(control_path, interval, hms_object=None)
staticmethod
¶
Set the time interval in a control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path to the .control file |
required |
interval
|
Union[str, int]
|
Time interval - can be string (e.g., "15 Minutes") or integer minutes (e.g., 15) |
required |
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
bool
|
True if successful |
Example
HmsControl.set_time_interval("Run1.control", "15 Minutes") HmsControl.set_time_interval("Run1.control", 30) # 30 minutes
Source code in hms_commander/HmsControl.py
get_control_info(control_path, hms_object=None)
staticmethod
¶
Get all information from a control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path to the .control file |
required |
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, str]
|
Dictionary with all control parameters |
Source code in hms_commander/HmsControl.py
clone_control(template_control, new_name, hms_object=None)
staticmethod
¶
Clone a control specification file with a new name.
This clone workflow is non-destructive: it creates a new .control file and raises FileExistsError if the destination already exists. When an initialized HmsPrj is supplied, or the global hms object is initialized, the cloned control is registered in the .hms project file and the project object is reinitialized so the clone is immediately visible in project dataframes and the HEC-HMS GUI.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_control
|
str
|
Name or path of the template control file |
required |
new_name
|
str
|
Name for the new control specification |
required |
hms_object
|
Optional HmsPrj instance. If omitted, uses the global hms object when it is initialized. |
None
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the new control file |
Raises:
| Type | Description |
|---|---|
FileNotFoundError
|
If template_control cannot be resolved |
FileExistsError
|
If the destination .control file already exists |
Example
new_path = HmsControl.clone_control("existing.control", "new_control")
Source code in hms_commander/HmsControl.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | |
create_control(control_path, control_name, start_date, end_date, time_interval='15 Minutes', hms_object=None)
staticmethod
¶
Create a new control specification file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
control_path
|
Union[str, Path]
|
Path for the new .control file |
required |
control_name
|
str
|
Name of the control specification |
required |
start_date
|
datetime
|
Simulation start date/time |
required |
end_date
|
datetime
|
Simulation end date/time |
required |
time_interval
|
Union[str, int]
|
Time interval (string or minutes) |
'15 Minutes'
|
hms_object
|
Optional HmsPrj instance |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Path to the new control file |
Example
from datetime import datetime start = datetime(2020, 1, 1) end = datetime(2020, 1, 3) HmsControl.create_control("Run1.control", "Run 1", start, end, 15)