-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create shortcut to access Janus functions.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#Main Janus solvers | ||
from .solve_pt import RadConvEqm, MCPA, MCPA_CBL | ||
|
||
#Plot fluxes | ||
from .plot_flux_balance import plot_fluxes | ||
|
||
#Plot emission | ||
from .plot_emission_spectrum import plot_emission |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
# The atmosphere class | ||
from .atmosphere_column import * | ||
|
||
# Data download | ||
from .data import DownloadSpectralFiles | ||
|
||
# Socrates utility module | ||
from .socrates import CleanOutputDir | ||
|
||
# Stellar Spectrum utilities | ||
from .StellarSpectrum import InsertStellarSpectrum | ||
|
||
# Read spectral file | ||
from .ReadSpectralFile import ReadBandEdges | ||
|
||
#General adiabat module | ||
from .GeneralAdiabat import plot_adiabats |