v/examples/pendulum-simulation
Daniel Däschle d679146a80
fmt: remove space in front of ? and ! (#14366)
2022-05-13 06:56:21 +03:00
..
modules/sim fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
.gitignore examples: improve the pendulum simulation, with several modes and diagrams (#13446) 2022-02-12 19:38:07 +02:00
LICENSE examples: improve the pendulum simulation, with several modes and diagrams (#13446) 2022-02-12 19:38:07 +02:00
README.md examples: improve the pendulum simulation, with several modes and diagrams (#13446) 2022-02-12 19:38:07 +02:00
animation.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
full.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
parallel.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
parallel_with_iw.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
sequential.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00

README.md

Pendulum Simulation in V

You can see the origin implementation among with some benchmarks at ulises-jeremias/v-pendulum-simulation.

vlang.io | Docs | Contributing

Build Status Docs Validation License: MIT

Run the Simulations

Sequential Simulation

$ v -gc boehm -prod sequential.v
$ ./sequential # execute ./sequential -h for more info

Parallel Simulation

$ v -gc boehm -prod parallel.v
$ ./parallel # execute ./parallel -h for more info

image

Parallel Simulation with Image Worker

$ v -gc boehm -prod parallel_with_iw.v
$ ./parallel_with_iw # execute ./parallel_with_iw -h for more info

image

Parallel Simulation with Graphic User Interface

$ v -gc boehm -prod animation.v
$ ./animation # execute ./animation -h for more info

Full Parallel Simulation with Graphic User Interface and Image Output

$ v -gc boehm -prod full.v
$ ./full # execute ./full -h for more info

Testing

To test the module, just type the following command:

$ v test .

Benchmark

Check the original repository for tools to run benchmark tests. In there you can execute the following command to execute benchmark tests to get a full comparison between implementations:

$ ./bin/run-benchmark-test --help

image