|
37 | 37 | )
|
38 | 38 | from ._run import run_supy_par, run_supy_ser
|
39 | 39 | from ._save import get_save_info, save_df_output, save_df_state, save_initcond_nml
|
| 40 | +from ._post import resample_output |
40 | 41 |
|
41 | 42 | from .util._config import init_config_from_yaml
|
42 | 43 |
|
@@ -335,7 +336,7 @@ def init_config(df_state: pd.DataFrame=None):
|
335 | 336 | if df_state is None:
|
336 | 337 | from .util._config import SUEWSConfig
|
337 | 338 | return SUEWSConfig()
|
338 |
| - |
| 339 | + |
339 | 340 | return load_config_from_df(df_state)
|
340 | 341 |
|
341 | 342 |
|
@@ -581,3 +582,67 @@ def save_supy(
|
581 | 582 | list_path_save.append(path_state_save)
|
582 | 583 |
|
583 | 584 | return list_path_save
|
| 585 | + |
| 586 | + |
| 587 | +def run_supy_sample( |
| 588 | + save_state=False, |
| 589 | + chunk_day=3660, |
| 590 | + logging_level=logging.INFO, |
| 591 | + check_input=False, |
| 592 | + serial_mode=False, |
| 593 | + debug_mode=False, |
| 594 | +) -> Tuple[pandas.DataFrame, pandas.DataFrame]: |
| 595 | + """Quickly run SuPy with sample data and return output dataframes. |
| 596 | +
|
| 597 | + This function loads sample data and runs SuPy simulation in one step, |
| 598 | + returning the output and final state dataframes. |
| 599 | +
|
| 600 | + Parameters |
| 601 | + ---------- |
| 602 | + save_state : bool, optional |
| 603 | + Flag for saving model states at each time step. |
| 604 | + (the default is False) |
| 605 | + chunk_day : int, optional |
| 606 | + Chunk size (days) to split simulation periods. |
| 607 | + (the default is 3660) |
| 608 | + logging_level : int, optional |
| 609 | + Logging level for verbosity control. |
| 610 | + (the default is logging.INFO) |
| 611 | + check_input : bool, optional |
| 612 | + Flag for checking validity of input. |
| 613 | + (the default is False) |
| 614 | + serial_mode : bool, optional |
| 615 | + If True, run in serial mode; otherwise try parallel if possible. |
| 616 | + (the default is False) |
| 617 | + debug_mode : bool, optional |
| 618 | + If True, run in debug mode with additional information. |
| 619 | + (the default is False) |
| 620 | +
|
| 621 | + Returns |
| 622 | + ------- |
| 623 | + df_output, df_state_final : Tuple[pandas.DataFrame, pandas.DataFrame] |
| 624 | + - df_output: Output results from the simulation |
| 625 | + - df_state_final: Final model states |
| 626 | +
|
| 627 | + Examples |
| 628 | + -------- |
| 629 | + >>> df_output, df_state_final = supy.run_supy_sample() |
| 630 | + """ |
| 631 | + # Load sample data |
| 632 | + df_state_init, df_forcing = load_sample_data() |
| 633 | + |
| 634 | + # Run SuPy with the sample data |
| 635 | + df_output, df_state_final = run_supy( |
| 636 | + df_forcing=df_forcing, |
| 637 | + df_state_init=df_state_init, |
| 638 | + save_state=save_state, |
| 639 | + chunk_day=chunk_day, |
| 640 | + logging_level=logging_level, |
| 641 | + check_input=check_input, |
| 642 | + serial_mode=serial_mode, |
| 643 | + debug_mode=debug_mode, |
| 644 | + ) |
| 645 | + |
| 646 | + return df_output, df_state_final |
| 647 | + |
| 648 | + |
0 commit comments