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

fixed URL issues #117

Merged
merged 1 commit into from
Jan 6, 2025
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# AtomicAndPhysicalConstants.jl

`AtomicAndPhysicalConstants.jl` provides a quick way to access information about different species and physical constants.
`AtomicAndPhysicalConstants.jl` provides a quick way to access information about different species and physical constants optimized for faster compile time and simulations.

It is designed to provide atomic and physical constants including things like the speed of light, subatomic particle properties, atomic isotope properties, etc.

Expand All @@ -33,7 +33,7 @@ julia> C_LIGHT
2.99792458e8
```

Users have the options for choosing the type and unit of the constants, see [this page](units.md)
Users have the options for choosing the type and unit of the constants, see [this page](https://bmad-sim.github.io/AtomicAndPhysicalConstants.jl/dev/units/)

### Defining Species

Expand All @@ -53,4 +53,4 @@ julia> hydrogen.spin
1.0 h_bar
```

See more about `Species()` constructors and getter functions [here](species.md)
See more about `Species()` constructors and getter functions [here](https://bmad-sim.github.io/AtomicAndPhysicalConstants.jl/dev/species/)
2 changes: 1 addition & 1 deletion docs/src/species.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Example:
julia> Species("anti-proton")
```

See the list of all available subatomic species [here](#list-of-available-subatomic-species)
See the list of all available subatomic species at the end of this page.

### Constructing Atomic Species

Expand Down
2 changes: 1 addition & 1 deletion docs/src/units.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The user have the freedom to choose the unit they want for `mass`, `length`, `ti

The users have the freedom to choose the version of CODATA they prefer.

The users have the freedom to choose whether they want the constants to be of type `Float64` or Unitful types, which makes unit calculations easier. See more about `Unitful` [here](#unitful).
The users have the freedom to choose whether they want the constants to be of type `Float64` or Unitful types, which makes unit calculations easier.


### Syntax
Expand Down
Loading