-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from AlgebraicJulia/llm/ascii
- Loading branch information
Showing
7 changed files
with
245 additions
and
34 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,27 @@ | ||
# ASCII and Vector Calculus Operators | ||
|
||
Some users may have trouble entering unicode characters like ⋆ or ∂ in their development environment. So, we offer the following ASCII equivalents. Further, some users may like to use vector calculus symbols instead of exterior calculus symbols where possible. We offer support for such symbols as well. | ||
|
||
## ASCII Equivalents | ||
|
||
| Unicode | ASCII | Meaning | | ||
| ------- | ----- | ------- | | ||
| ∂ₜ | dt | derivative w.r.t. time | | ||
| ⋆ | star | Hodge star, generalizing transpose | | ||
| Δ | lapl | laplacian | | ||
| ∧ | wedge | wedge product, generalizing the cross product | | ||
| ⋆⁻¹ | star\_inv | Hodge star, generalizing transpose | | ||
| ∘(⋆,d,⋆) | div | divergence, a.k.a. ∇⋅ | | ||
|
||
## Vector Calculus Equivalents | ||
|
||
| Vec | DEC | How to enter | | ||
| -------- | ---------------- | -------------------------- | | ||
| grad | d | grad | | ||
| div | ∘(⋆,d,⋆) | div | | ||
| curl | ∘(d,⋆) | curl | | ||
| ∇ | d | \nabla | | ||
| ∇ᵈ | ∘(⋆,d,⋆) | \nabla \<tab\> \\^d \<tab\> | | ||
| ∇x | ∘(d,⋆) | \nabla \<tab\> x | | ||
| adv(X,Y) | ∘(⋆,d,⋆)(X∧Y) | adv | | ||
|
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 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
Oops, something went wrong.