Skip to content

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
class 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)
    """

    # Valid time interval strings (from _constants.TIME_INTERVALS)
    VALID_INTERVALS = list(TIME_INTERVALS.keys())

    @staticmethod
    @log_call
    def get_controls(
        hms_object=None
    ) -> pd.DataFrame:
        """
        Get all control specifications from the HMS project.

        Args:
            hms_object: HmsPrj instance (uses global hms if None)

        Returns:
            DataFrame with control specification information
        """
        from .HmsPrj import hms
        hms_obj = hms_object or hms

        if hms_obj is None or not hms_obj.initialized:
            raise RuntimeError("HMS project not initialized")

        return hms_obj.control_df.copy()

    @staticmethod
    @log_call
    def get_time_window(
        control_path: Union[str, Path],
        hms_object=None
    ) -> Dict[str, datetime]:
        """
        Get the time window from a control specification file.

        Args:
            control_path: Path to the .control file
            hms_object: Optional HmsPrj instance

        Returns:
            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']}")
        """
        control_path = Path(control_path)
        logger.info(f"Reading time window from: {control_path}")

        content = HmsControl._read_control_file(control_path)
        params = HmsControl._parse_control_params(content)

        start_date_str = params.get('Start Date', '')
        start_time_str = params.get('Start Time', '00:00')
        end_date_str = params.get('End Date', '')
        end_time_str = params.get('End Time', '00:00')

        try:
            start_datetime = datetime.strptime(
                f"{start_date_str} {start_time_str}",
                f"{HMS_DATE_FORMAT} {HMS_TIME_FORMAT}"
            )
            end_datetime = datetime.strptime(
                f"{end_date_str} {end_time_str}",
                f"{HMS_DATE_FORMAT} {HMS_TIME_FORMAT}"
            )
        except ValueError as e:
            raise ValueError(f"Error parsing date/time: {e}")

        return {
            'start_date': start_datetime,
            'end_date': end_datetime,
            'start_date_str': start_date_str,
            'start_time_str': start_time_str,
            'end_date_str': end_date_str,
            'end_time_str': end_time_str
        }

    @staticmethod
    @log_call
    def set_time_window(
        control_path: Union[str, Path],
        start_date: datetime,
        end_date: datetime,
        hms_object=None
    ) -> bool:
        """
        Set the time window in a control specification file.

        Args:
            control_path: Path to the .control file
            start_date: Simulation start date/time
            end_date: Simulation end date/time
            hms_object: Optional HmsPrj instance

        Returns:
            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)
        """
        control_path = Path(control_path)
        logger.info(f"Setting time window in: {control_path}")

        content = HmsControl._read_control_file(control_path)

        # Format dates for HMS
        start_date_str = start_date.strftime(HMS_DATE_FORMAT)
        start_time_str = start_date.strftime(HMS_TIME_FORMAT)
        end_date_str = end_date.strftime(HMS_DATE_FORMAT)
        end_time_str = end_date.strftime(HMS_TIME_FORMAT)

        # Update parameters
        content = HmsControl._update_param(content, 'Start Date', start_date_str)
        content = HmsControl._update_param(content, 'Start Time', start_time_str)
        content = HmsControl._update_param(content, 'End Date', end_date_str)
        content = HmsControl._update_param(content, 'End Time', end_time_str)

        with open(control_path, 'w', encoding='utf-8') as f:
            f.write(content)

        logger.info(f"Time window set: {start_date_str} {start_time_str} to {end_date_str} {end_time_str}")
        return True

    @staticmethod
    @log_call
    def get_time_interval(
        control_path: Union[str, Path],
        hms_object=None
    ) -> str:
        """
        Get the time interval from a control specification file.

        Args:
            control_path: Path to the .control file
            hms_object: Optional HmsPrj instance

        Returns:
            Time interval string (e.g., "15 Minutes", "1 Hour")

        Example:
            >>> interval = HmsControl.get_time_interval("Run1.control")
            >>> print(f"Interval: {interval}")
        """
        control_path = Path(control_path)
        content = HmsControl._read_control_file(control_path)
        params = HmsControl._parse_control_params(content)

        interval = params.get('Time Interval', '')
        return interval

    @staticmethod
    @log_call
    def set_time_interval(
        control_path: Union[str, Path],
        interval: Union[str, int],
        hms_object=None
    ) -> bool:
        """
        Set the time interval in a control specification file.

        Args:
            control_path: Path to the .control file
            interval: Time interval - can be string (e.g., "15 Minutes") or
                     integer minutes (e.g., 15)
            hms_object: Optional HmsPrj instance

        Returns:
            True if successful

        Example:
            >>> HmsControl.set_time_interval("Run1.control", "15 Minutes")
            >>> HmsControl.set_time_interval("Run1.control", 30)  # 30 minutes
        """
        control_path = Path(control_path)

        # Convert integer to HMS interval string
        if isinstance(interval, int):
            interval = HmsControl._minutes_to_interval(interval)

        if interval not in HmsControl.VALID_INTERVALS:
            logger.warning(f"Non-standard interval: {interval}")

        content = HmsControl._read_control_file(control_path)
        content = HmsControl._update_param(content, 'Time Interval', interval)

        with open(control_path, 'w', encoding='utf-8') as f:
            f.write(content)

        logger.info(f"Time interval set to: {interval}")
        return True

    @staticmethod
    @log_call
    def get_control_info(
        control_path: Union[str, Path],
        hms_object=None
    ) -> Dict[str, str]:
        """
        Get all information from a control specification file.

        Args:
            control_path: Path to the .control file
            hms_object: Optional HmsPrj instance

        Returns:
            Dictionary with all control parameters
        """
        control_path = Path(control_path)
        content = HmsControl._read_control_file(control_path)
        params = HmsControl._parse_control_params(content)
        return params

    @staticmethod
    @log_call
    def clone_control(
        template_control: str,
        new_name: str,
        hms_object=None
    ) -> Path:
        """
        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.

        Args:
            template_control: Name or path of the template control file
            new_name: Name for the new control specification
            hms_object: Optional HmsPrj instance. If omitted, uses the global
                hms object when it is initialized.

        Returns:
            Path to the new control file

        Raises:
            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")
        """
        from .HmsPrj import hms
        from .HmsUtils import HmsUtils

        hms_obj = hms_object or hms
        template_path = Path(template_control)

        if not template_path.exists() and hms_obj is not None and hms_obj.initialized:
            # Try to find it in the project
            matching = hms_obj.control_df[
                hms_obj.control_df['name'] == template_control
            ]
            if not matching.empty:
                template_path = Path(matching.iloc[0]['full_path'])

        if not template_path.exists():
            raise FileNotFoundError(f"Template control not found: {template_control}")

        # Create new file path
        new_path = template_path.parent / f"{new_name}.control"

        def update_control_metadata(lines):
            """Update control name in cloned file."""
            modified_lines = []
            for line in lines:
                if re.match(r'^Control:\s*', line):
                    modified_lines.append(f"Control: {new_name}\n")
                else:
                    modified_lines.append(line)
            return modified_lines

        HmsUtils.clone_file(template_path, new_path, update_control_metadata)

        if hms_obj is not None and hms_obj.initialized:
            try:
                HmsUtils.update_project_file(
                    hms_obj.project_file,
                    'Control',
                    new_name
                )
                hms_obj.initialize(hms_obj.project_folder, hms_obj.hms_exe_path)
                logger.info(f"Re-initialized project to register new control '{new_name}'")
            except Exception as e:
                logger.warning(f"Could not update project file: {e}")

        logger.info(f"Cloned control to: {new_path}")
        return new_path

    @staticmethod
    @log_call
    def create_control(
        control_path: Union[str, Path],
        control_name: str,
        start_date: datetime,
        end_date: datetime,
        time_interval: Union[str, int] = "15 Minutes",
        hms_object=None
    ) -> str:
        """
        Create a new control specification file.

        Args:
            control_path: Path for the new .control file
            control_name: Name of the control specification
            start_date: Simulation start date/time
            end_date: Simulation end date/time
            time_interval: Time interval (string or minutes)
            hms_object: Optional HmsPrj instance

        Returns:
            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)
        """
        control_path = Path(control_path)

        # Convert integer to HMS interval string
        if isinstance(time_interval, int):
            time_interval = HmsControl._minutes_to_interval(time_interval)

        # Format dates
        start_date_str = start_date.strftime(HMS_DATE_FORMAT)
        start_time_str = start_date.strftime(HMS_TIME_FORMAT)
        end_date_str = end_date.strftime(HMS_DATE_FORMAT)
        end_time_str = end_date.strftime(HMS_TIME_FORMAT)

        content = f"""Control: {control_name}
     Description: Created by hms-commander
     Start Date: {start_date_str}
     Start Time: {start_time_str}
     End Date: {end_date_str}
     End Time: {end_time_str}
     Time Interval: {time_interval}
End:
"""

        with open(control_path, 'w', encoding='utf-8') as f:
            f.write(content)

        logger.info(f"Created control file: {control_path}")
        return str(control_path)

    # =========================================================================
    # Private helper methods
    # =========================================================================

    @staticmethod
    def _read_control_file(control_path: Path) -> str:
        """Read control file content with encoding fallback."""
        return HmsFileParser.read_file(control_path)

    @staticmethod
    def _parse_control_params(content: str) -> Dict[str, str]:
        """Parse control file into key-value pairs.

        Uses shared HmsFileParser._parse_attribute_block() and removes
        the 'Control' header key if present.
        """
        params = HmsFileParser._parse_attribute_block(content)
        params.pop('Control', None)  # Remove header line if parsed
        return params

    @staticmethod
    def _update_param(content: str, param_name: str, new_value: str) -> str:
        """Update a parameter value in control file content."""
        updated, _ = HmsFileParser.update_parameter(content, param_name, new_value)
        return updated

    @staticmethod
    def _minutes_to_interval(minutes: int) -> str:
        """Convert minutes to HMS interval string."""
        if minutes < MINUTES_PER_HOUR:
            if minutes == 1:
                return "1 Minute"
            return f"{minutes} Minutes"
        else:
            hours = minutes // MINUTES_PER_HOUR
            if hours == 24:  # 24 hours = 1 day
                return "1 Day"
            elif hours == 1:
                return "1 Hour"
            return f"{hours} Hours"

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
@staticmethod
@log_call
def get_controls(
    hms_object=None
) -> pd.DataFrame:
    """
    Get all control specifications from the HMS project.

    Args:
        hms_object: HmsPrj instance (uses global hms if None)

    Returns:
        DataFrame with control specification information
    """
    from .HmsPrj import hms
    hms_obj = hms_object or hms

    if hms_obj is None or not hms_obj.initialized:
        raise RuntimeError("HMS project not initialized")

    return hms_obj.control_df.copy()

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
@staticmethod
@log_call
def get_time_window(
    control_path: Union[str, Path],
    hms_object=None
) -> Dict[str, datetime]:
    """
    Get the time window from a control specification file.

    Args:
        control_path: Path to the .control file
        hms_object: Optional HmsPrj instance

    Returns:
        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']}")
    """
    control_path = Path(control_path)
    logger.info(f"Reading time window from: {control_path}")

    content = HmsControl._read_control_file(control_path)
    params = HmsControl._parse_control_params(content)

    start_date_str = params.get('Start Date', '')
    start_time_str = params.get('Start Time', '00:00')
    end_date_str = params.get('End Date', '')
    end_time_str = params.get('End Time', '00:00')

    try:
        start_datetime = datetime.strptime(
            f"{start_date_str} {start_time_str}",
            f"{HMS_DATE_FORMAT} {HMS_TIME_FORMAT}"
        )
        end_datetime = datetime.strptime(
            f"{end_date_str} {end_time_str}",
            f"{HMS_DATE_FORMAT} {HMS_TIME_FORMAT}"
        )
    except ValueError as e:
        raise ValueError(f"Error parsing date/time: {e}")

    return {
        'start_date': start_datetime,
        'end_date': end_datetime,
        'start_date_str': start_date_str,
        'start_time_str': start_time_str,
        'end_date_str': end_date_str,
        'end_time_str': end_time_str
    }

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
@staticmethod
@log_call
def set_time_window(
    control_path: Union[str, Path],
    start_date: datetime,
    end_date: datetime,
    hms_object=None
) -> bool:
    """
    Set the time window in a control specification file.

    Args:
        control_path: Path to the .control file
        start_date: Simulation start date/time
        end_date: Simulation end date/time
        hms_object: Optional HmsPrj instance

    Returns:
        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)
    """
    control_path = Path(control_path)
    logger.info(f"Setting time window in: {control_path}")

    content = HmsControl._read_control_file(control_path)

    # Format dates for HMS
    start_date_str = start_date.strftime(HMS_DATE_FORMAT)
    start_time_str = start_date.strftime(HMS_TIME_FORMAT)
    end_date_str = end_date.strftime(HMS_DATE_FORMAT)
    end_time_str = end_date.strftime(HMS_TIME_FORMAT)

    # Update parameters
    content = HmsControl._update_param(content, 'Start Date', start_date_str)
    content = HmsControl._update_param(content, 'Start Time', start_time_str)
    content = HmsControl._update_param(content, 'End Date', end_date_str)
    content = HmsControl._update_param(content, 'End Time', end_time_str)

    with open(control_path, 'w', encoding='utf-8') as f:
        f.write(content)

    logger.info(f"Time window set: {start_date_str} {start_time_str} to {end_date_str} {end_time_str}")
    return True

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
@staticmethod
@log_call
def get_time_interval(
    control_path: Union[str, Path],
    hms_object=None
) -> str:
    """
    Get the time interval from a control specification file.

    Args:
        control_path: Path to the .control file
        hms_object: Optional HmsPrj instance

    Returns:
        Time interval string (e.g., "15 Minutes", "1 Hour")

    Example:
        >>> interval = HmsControl.get_time_interval("Run1.control")
        >>> print(f"Interval: {interval}")
    """
    control_path = Path(control_path)
    content = HmsControl._read_control_file(control_path)
    params = HmsControl._parse_control_params(content)

    interval = params.get('Time Interval', '')
    return interval

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
@staticmethod
@log_call
def set_time_interval(
    control_path: Union[str, Path],
    interval: Union[str, int],
    hms_object=None
) -> bool:
    """
    Set the time interval in a control specification file.

    Args:
        control_path: Path to the .control file
        interval: Time interval - can be string (e.g., "15 Minutes") or
                 integer minutes (e.g., 15)
        hms_object: Optional HmsPrj instance

    Returns:
        True if successful

    Example:
        >>> HmsControl.set_time_interval("Run1.control", "15 Minutes")
        >>> HmsControl.set_time_interval("Run1.control", 30)  # 30 minutes
    """
    control_path = Path(control_path)

    # Convert integer to HMS interval string
    if isinstance(interval, int):
        interval = HmsControl._minutes_to_interval(interval)

    if interval not in HmsControl.VALID_INTERVALS:
        logger.warning(f"Non-standard interval: {interval}")

    content = HmsControl._read_control_file(control_path)
    content = HmsControl._update_param(content, 'Time Interval', interval)

    with open(control_path, 'w', encoding='utf-8') as f:
        f.write(content)

    logger.info(f"Time interval set to: {interval}")
    return True

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
@staticmethod
@log_call
def get_control_info(
    control_path: Union[str, Path],
    hms_object=None
) -> Dict[str, str]:
    """
    Get all information from a control specification file.

    Args:
        control_path: Path to the .control file
        hms_object: Optional HmsPrj instance

    Returns:
        Dictionary with all control parameters
    """
    control_path = Path(control_path)
    content = HmsControl._read_control_file(control_path)
    params = HmsControl._parse_control_params(content)
    return params

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
@staticmethod
@log_call
def clone_control(
    template_control: str,
    new_name: str,
    hms_object=None
) -> Path:
    """
    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.

    Args:
        template_control: Name or path of the template control file
        new_name: Name for the new control specification
        hms_object: Optional HmsPrj instance. If omitted, uses the global
            hms object when it is initialized.

    Returns:
        Path to the new control file

    Raises:
        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")
    """
    from .HmsPrj import hms
    from .HmsUtils import HmsUtils

    hms_obj = hms_object or hms
    template_path = Path(template_control)

    if not template_path.exists() and hms_obj is not None and hms_obj.initialized:
        # Try to find it in the project
        matching = hms_obj.control_df[
            hms_obj.control_df['name'] == template_control
        ]
        if not matching.empty:
            template_path = Path(matching.iloc[0]['full_path'])

    if not template_path.exists():
        raise FileNotFoundError(f"Template control not found: {template_control}")

    # Create new file path
    new_path = template_path.parent / f"{new_name}.control"

    def update_control_metadata(lines):
        """Update control name in cloned file."""
        modified_lines = []
        for line in lines:
            if re.match(r'^Control:\s*', line):
                modified_lines.append(f"Control: {new_name}\n")
            else:
                modified_lines.append(line)
        return modified_lines

    HmsUtils.clone_file(template_path, new_path, update_control_metadata)

    if hms_obj is not None and hms_obj.initialized:
        try:
            HmsUtils.update_project_file(
                hms_obj.project_file,
                'Control',
                new_name
            )
            hms_obj.initialize(hms_obj.project_folder, hms_obj.hms_exe_path)
            logger.info(f"Re-initialized project to register new control '{new_name}'")
        except Exception as e:
            logger.warning(f"Could not update project file: {e}")

    logger.info(f"Cloned control to: {new_path}")
    return new_path

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)

Source code in hms_commander/HmsControl.py
    @staticmethod
    @log_call
    def create_control(
        control_path: Union[str, Path],
        control_name: str,
        start_date: datetime,
        end_date: datetime,
        time_interval: Union[str, int] = "15 Minutes",
        hms_object=None
    ) -> str:
        """
        Create a new control specification file.

        Args:
            control_path: Path for the new .control file
            control_name: Name of the control specification
            start_date: Simulation start date/time
            end_date: Simulation end date/time
            time_interval: Time interval (string or minutes)
            hms_object: Optional HmsPrj instance

        Returns:
            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)
        """
        control_path = Path(control_path)

        # Convert integer to HMS interval string
        if isinstance(time_interval, int):
            time_interval = HmsControl._minutes_to_interval(time_interval)

        # Format dates
        start_date_str = start_date.strftime(HMS_DATE_FORMAT)
        start_time_str = start_date.strftime(HMS_TIME_FORMAT)
        end_date_str = end_date.strftime(HMS_DATE_FORMAT)
        end_time_str = end_date.strftime(HMS_TIME_FORMAT)

        content = f"""Control: {control_name}
     Description: Created by hms-commander
     Start Date: {start_date_str}
     Start Time: {start_time_str}
     End Date: {end_date_str}
     End Time: {end_time_str}
     Time Interval: {time_interval}
End:
"""

        with open(control_path, 'w', encoding='utf-8') as f:
            f.write(content)

        logger.info(f"Created control file: {control_path}")
        return str(control_path)
CLB Engineering Corporation  ·  LLM Forward Engineering
HMS Commander is a free and open-source project maintained by CLB Engineering Corporation. For agencies and firms seeking to modernize H&H workflows with LLM Forward approaches, contact CLB to partner with the engineers who wrote the automation.