summaryrefslogtreecommitdiff
path: root/examples/meta_2d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/meta_2d.cpp')
-rw-r--r--examples/meta_2d.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/meta_2d.cpp b/examples/meta_2d.cpp
new file mode 100644
index 0000000..5aa39f4
--- /dev/null
+++ b/examples/meta_2d.cpp
@@ -0,0 +1,14 @@
+#include "../c++/lbm.hpp"
+
+int main(int argc, char** argv){
+ using namespace kel::lbm;
+
+ converter<sch::Float64> conv{
+ {0.1},
+ {0.1}
+ };
+
+ print_lbm_meta<sch::Float64,sch::Descriptor<2,9>>(conv, {1e-5});
+
+ return 0;
+}