From fc58dab96f27624435a1c08480234a7c03071e27 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Wed, 30 Oct 2019 19:40:56 +0100 Subject: Extract settings into config file, add documentation --- ldc_2d/cpp/config.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ldc_2d/cpp/config.py (limited to 'ldc_2d/cpp/config.py') diff --git a/ldc_2d/cpp/config.py b/ldc_2d/cpp/config.py new file mode 100644 index 0000000..3ed8bd5 --- /dev/null +++ b/ldc_2d/cpp/config.py @@ -0,0 +1,13 @@ +from boltzgen.lbm.model import * +from boltzgen import Geometry + +descriptor = D2Q9 +geometry = Geometry(512, 512) +tau = 0.52 +precision = 'single' + +## 3D LDC +#descriptor = D3Q19 +#geometry = Geometry(64, 64, 64) +#tau = 0.52 +#precision = 'single' -- cgit v1.2.3