mirror of
https://git.gfz-potsdam.de/naaice/tug.git
synced 2025-12-13 17:38:23 +01:00
11 lines
238 B
C++
11 lines
238 B
C++
#include <tug/Simulation.hpp>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
Grid grid = Grid(20,20);
|
|
|
|
Boundary bc = Boundary(grid, BC_TYPE_CONSTANT);
|
|
|
|
Simulation simulation = Simulation(grid, bc, FTCS_APPROACH);
|
|
|
|
simulation.run();
|
|
} |