Skip to content

Commit 357d84c

Browse files
committed
Add sample data run function and output resampling utility
Introduces two new utility functions in SuPy: - `run_supy_sample()`: Quickly run SuPy simulation with sample data - `resample_output()`: Utility for resampling simulation outputs Expands module's ease of use by providing a convenient method for quick simulations and data processing.
1 parent 62fc54e commit 357d84c

File tree

2 files changed

+68
-1
lines changed

2 files changed

+68
-1
lines changed

src/supy/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
check_forcing,
2626
check_state,
2727
init_config,
28+
run_supy_sample,
29+
resample_output,
2830
)
2931

3032

src/supy/_supy_module.py

+66-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
)
3838
from ._run import run_supy_par, run_supy_ser
3939
from ._save import get_save_info, save_df_output, save_df_state, save_initcond_nml
40+
from ._post import resample_output
4041

4142
from .util._config import init_config_from_yaml
4243

@@ -335,7 +336,7 @@ def init_config(df_state: pd.DataFrame=None):
335336
if df_state is None:
336337
from .util._config import SUEWSConfig
337338
return SUEWSConfig()
338-
339+
339340
return load_config_from_df(df_state)
340341

341342

@@ -581,3 +582,67 @@ def save_supy(
581582
list_path_save.append(path_state_save)
582583

583584
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

Comments
 (0)