Skip to content

Commit

Permalink
Add Lobatto tableaus to docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Nov 28, 2020
1 parent e08112e commit d7538f1
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions docs/src/lobatto.jmd
Original file line number Diff line number Diff line change
@@ -1 +1,66 @@
# Lobatto III Runge-Kutta Methods

## Lobatto IIIA

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIA($s)"), 2s-2, get_lobatto_a_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIB

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIB($s)"), 2s-2, get_lobatto_b_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIC

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIC($s)"), 2s-2, get_lobatto_c_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIC̄

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIC̄($s)"), 2s-2, get_lobatto_c̄_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIID

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIID($s)"), 2s-2, get_lobatto_d_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIE

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIE($s)"), 2s-2, get_lobatto_e_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIF

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIF($s)"), 2s, get_lobatto_f_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

## Lobatto IIIG

```julia; echo=false; results="raw"
for s in 2:3
show(stdout, "text/markdown", Tableau(Symbol("LobattoIIIG($s)"), 2s, get_lobatto_g_coefficients(s, Sym), get_lobatto_weights(s, Sym), get_lobatto_nodes(s, Sym)))
end
```

0 comments on commit d7538f1

Please sign in to comment.