https://github.com/marcus-k/double-pendulum-julia
Undamped double pendulum written in Julia.
https://github.com/marcus-k/double-pendulum-julia
animation julia pendulum simulation
Last synced: about 2 months ago
JSON representation
Undamped double pendulum written in Julia.
- Host: GitHub
- URL: https://github.com/marcus-k/double-pendulum-julia
- Owner: marcus-k
- Created: 2022-02-10T00:15:39.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-10T01:43:11.000Z (about 4 years ago)
- Last Synced: 2024-01-29T20:25:49.705Z (about 2 years ago)
- Topics: animation, julia, pendulum, simulation
- Language: Julia
- Homepage:
- Size: 2.66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Double Pendulum
Simple demonstration of an undamped double pendulum made in Julia.

## Usage
Navigate to the working directory, activate, then (if needed) instantiate the project environment:
```
julia> ]
pkg> activate .
pkg> instantiate
```
To run the script non-interactively:
```
$ julia --project=. pendulum.jl
```
Interactively:
```
julia> include("pendulum.jl")
```
## Interesting Links
- [https://www.diego.assencio.com/?index=1500c66ae7ab27bb0106467c68feebc6](https://www.diego.assencio.com/?index=1500c66ae7ab27bb0106467c68feebc6)
- [https://math24.net/double-pendulum.html](https://math24.net/double-pendulum.html)
- [https://www.brown.edu/Departments/Engineering/Courses/En4/Notes/vibrations_mdof/vibrations_mdof.htm](https://www.brown.edu/Departments/Engineering/Courses/En4/Notes/vibrations_mdof/vibrations_mdof.htm)