-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
269: Fix broken documentation, make strict r=charleskawczynski a=charleskawczynski Fixes #262 Co-authored-by: Charles Kawczynski <kawczynski.charles@gmail.com>
- Loading branch information
Showing
17 changed files
with
62 additions
and
124 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
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,26 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- trying | ||
- staging | ||
tags: '*' | ||
pull_request: | ||
|
||
jobs: | ||
docbuild: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@latest | ||
with: | ||
version: 1.5.4 | ||
- name: Install dependencies | ||
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
- name: Build and deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | ||
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key | ||
run: julia --project=docs/ docs/make.jl |
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,25 +1,10 @@ | ||
# Optical Properties | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.OpticalProps | ||
CurrentModule = RRTMGP.GrayOptics | ||
``` | ||
|
||
```@docs | ||
AbstractOpticalProps | ||
AbstractOpticalPropsArry | ||
AbstractOpticalPropsPGP | ||
OpticalPropsBase | ||
OneScalar | ||
TwoStream | ||
OneScalarPGP | ||
TwoStreamPGP | ||
GrayOneScalar | ||
GrayTwoStream | ||
``` | ||
|
||
```@docs | ||
delta_scale! | ||
validate! | ||
increment! | ||
bands_are_equal | ||
gpoints_are_equal | ||
``` | ||
|
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 |
---|---|---|
@@ -1,18 +1,9 @@ | ||
# Atmospheric State | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.AtmosphericStates | ||
CurrentModule = RRTMGP.GrayAtmosphericStates | ||
``` | ||
|
||
```@docs | ||
AtmosphericState | ||
AtmosphericStatePGP | ||
GrayAtmosphericState | ||
``` | ||
|
||
```@docs | ||
get_col_dry | ||
extrap_lower | ||
extrap_upper | ||
interpolate_var | ||
``` | ||
|
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 |
---|---|---|
@@ -1,15 +1,3 @@ | ||
# Gas Concentrations | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.GasConcentrations | ||
``` | ||
|
||
```@docs | ||
GasConcs | ||
GasConcsPGP | ||
``` | ||
|
||
```@docs | ||
set_vmr! | ||
``` | ||
|
||
To be added back in... |
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 |
---|---|---|
@@ -1,21 +1,3 @@ | ||
# Gas Optics | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.GasOptics | ||
``` | ||
|
||
```@docs | ||
GasOpticsAux | ||
GasOpticsVars | ||
AbstractGasOptics | ||
KDistributionLongwave | ||
KDistributionShortwave | ||
InterpolationCoefficients | ||
InterpolationCoefficientsPGP | ||
``` | ||
|
||
```@docs | ||
gas_optics! | ||
get_k_dist_lw | ||
get_k_dist_sw | ||
``` | ||
To be added back in... |
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
# Gases | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.Gases | ||
``` | ||
```@docs | ||
AbstractGas | ||
``` | ||
To be added back in... |
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 |
---|---|---|
@@ -1,11 +1,3 @@ | ||
# Reference State | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.ReferenceStates | ||
``` | ||
|
||
```@docs | ||
ReferenceState | ||
get_press_min | ||
``` | ||
|
||
To be added back in... |
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
# Source Functions | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.SourceFunctions | ||
CurrentModule = RRTMGP.GraySources | ||
``` | ||
|
||
```@docs | ||
AbstractSourceFunc | ||
SourceFuncLongWave | ||
SourceFuncLongWavePGP | ||
SourceFuncShortWave | ||
GraySourceLWNoScat | ||
GraySourceLW2Str | ||
``` |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Angular Discretization | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.AngularDiscretizations | ||
CurrentModule = RRTMGP.GrayAngularDiscretizations | ||
``` | ||
|
||
```@docs | ||
GaussQuadrature | ||
AngularDiscretization | ||
``` |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# Boundary Conditions | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.RadiativeBoundaryConditions | ||
CurrentModule = RRTMGP.GrayBCs | ||
``` | ||
|
||
```@docs | ||
AbstractRadiativeBoundaryConditions | ||
ShortwaveBCs | ||
LongwaveBCs | ||
GrayLwBCs | ||
GraySwBCs | ||
``` | ||
|
||
│ RRTMGP.GraySources.GraySourceLWNoScat | ||
│ RRTMGP.GraySources.GraySourceLW2Str |
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 |
---|---|---|
@@ -1,16 +1,9 @@ | ||
# Fluxes | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.Fluxes | ||
CurrentModule = RRTMGP.GrayFluxes | ||
``` | ||
|
||
```@docs | ||
AbstractFluxes | ||
FluxesBroadBand | ||
FluxesByBand | ||
GrayFluxLW | ||
``` | ||
|
||
```@docs | ||
reduce! | ||
``` | ||
|
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
# RTE Solver | ||
|
||
```@meta | ||
CurrentModule = RRTMGP.RTESolver | ||
CurrentModule = RRTMGP.GrayRTESolver | ||
``` | ||
|
||
```@docs | ||
rte_sw! | ||
rte_lw! | ||
expand_and_transpose | ||
``` | ||
|
||
|