Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue using stations for setup #32

Open
SorooshMani-NOAA opened this issue Dec 21, 2021 · 0 comments
Open

Issue using stations for setup #32

SorooshMani-NOAA opened this issue Dec 21, 2021 · 0 comments

Comments

@SorooshMani-NOAA
Copy link
Contributor

@jreniel, I've been mostly using older version of PySCHISM (before ModelConfig API was introduced). I recently started using the later version and I noticed an issue with stations.

I create a Stations object and pass it to the coldstart method of ModelConfig. Then when I write the config to disk, using the coldstart object's write method, I don't see output for iout_sta and nspool_sta in the param file.

I tried to look at the code to see if I'm using it wrong, but it seems that in the definition of SCHOUT object nspool_sta needs to be passed

class SCHOUT(
metaclass=SchoutMeta
):
""" Provides error checking implementation for SCHOUT group """
def __init__(
self,
nhot_write: int = None,
nspool_sta: int = None,
**outputs
):
"""
nhot_write:
- if -1 will write last timestep (default)
- if None it will be disabled.
- if int interpreted as iteration
- if timedelta it will be rounded to the nearest iteration
"""
self.nhot_write = nhot_write
self.nspool_sta = nspool_sta

otherwise it won't write the parameters to param.nml:

if self.nspool_sta is not None:
nspool_sta = self.nspool_sta
if isinstance(nspool_sta, timedelta):
nspool_sta = int(round(nspool_sta.total_seconds() / self.dt))
if isinstance(nspool_sta, float):
nspool_sta = int(
round(timedelta(hours=nspool_sta) / self.dt))
if isinstance(nspool_sta, (int, float)):
if nspool_sta <= 0:
raise ValueError("nspool_sta must be positive.")
schout.append(f" iout_sta={self.iout_sta}")
schout.append(f" nspool_sta={nspool_sta}")

And it seems that during the creation of SCHOUT object within Param object, nspool_sta is not passed:

self.schout = SCHOUT()

I don't see anywhere else where nspool_sta is getting updated. So my guess is that this is a bug.

Please let me know if I'm missing anything. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant