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

Phase models #12

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyts/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
d) :mod:`.cohereModels` (aliased here as 'cm'), contains the spatial
coherence models.

e) :mod:`.phaseModels`, contains the phase coherence (a.k.a.,
temporal coherence) models.

4) The :mod:`io` module, which supports reading and writing of TurbSim
input (.inp) and output files (e.g. .bl, .wnd, etc.)

Expand All @@ -40,6 +43,7 @@
import specModels.api as specModels
import cohereModels.api as cohereModels
import stressModels.api as stressModels
import phaseModels.api as phaseModels
import io

# Set aliases to the model modules:
Expand Down
3 changes: 3 additions & 0 deletions pyts/cohereModels/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@
iec = main.iec
nwtc = main.nwtc
none = main.none

# This sets the default model (used in pyts.main)
default = main.nwtc()
Loading