File: ReadMe.md

package info (click to toggle)
adios2 2.10.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,764 kB
  • sloc: cpp: 175,964; ansic: 160,510; f90: 14,630; yacc: 12,668; python: 7,275; perl: 7,126; sh: 2,825; lisp: 1,106; xml: 1,049; makefile: 579; lex: 557
file content (30 lines) | stat: -rw-r--r-- 1,973 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## ADIOS2 simulations examples

The _simulations_ examples are meant to demonstrate how to integrate ADIOS2 within your
simulation code to read, write and/or stream your simulation data.

They can be found in the following subdirectories, and they should be explored in the order that they are listed:

1. [korteweg-de-vries](korteweg-de-vries): The _korteweg-de-vries_ example demonstrates how to solve the initial value
   problem for the Korteweg de-Vries equation via the Zabusky and Krustal scheme and integrate ADIOS2 for its IO
   capabilities.
   * Languages: C++, Python
2. [lorenz_ode](lorenz_ode): The _lorenz_ode_ example demonstrates how to solve the Lorenz system of ordinary
   differential equations and integrate ADIOS2 for its IO capabilities.
   * Languages: C++
3. [gray-scott](gray-scott): The _gray-scott_ example demonstrates how to perform simulation with the Gray-Scott
   reaction diffusion model and integrate ADIOS2 for its IO capabilities.
   * Languages: C++
4. [gray-scott-struct](gray-scott-struct): The _gray-scott-struct_ example demonstrates how to perform a simulation with
   the Gray-Scott reaction diffusion model using a struct that defines user defined data types and integrate ADIOS2 for
   its IO capabilities.
   * Languages: C++
5. [gray-scott-kokkos](gray-scott-kokkos): The _gray-scott-kokkos_ example demonstrates how to perform a simulation with
   the Gray-Scott reaction diffusion model using Kokkos and integrate ADIOS2 for its IO capabilities.
   * Languages: C++
6. [GrayScott.jl](GrayScott.jl): The _GrayScott.jl_ example demonstrates how to perform a simulation with the Gray-Scott
   reaction diffusion model and integrate ADIOS2 for its IO capabilities.
   * Languages: Julia
7. [heatTransfer](heatTransfer): The _heatTransfer_ example demonstrates how to solve a 2D Poisson equation for
   temperature in homogeneous media using finite differences and integrate ADIOS2 for its IO capabilities.
   * Languages: C++