schism-dev / pyschism

Python interface for handling the SCHISM model.
https://schism-dev.github.io/schism/master/getting-started/pre-processing-with-pyschism/overview.html
Apache License 2.0
23 stars 18 forks source link

Fix iof output configuration writer #88

Closed SorooshMani-NOAA closed 11 months ago

SorooshMani-NOAA commented 11 months ago

The outputs for SCHOUT was not accounted for, e.g. if I set Param object's schout.wind_speed, I should see iof_hydro(14)=1, but, this was not working. Test code:

from pyschism.param import Param
p = Param()
p.schout.wind_speed = True
p.schout.to_dict()
str(p.schout)