diff options
-rw-r--r-- | lbm.org | 2 | ||||
-rw-r--r-- | tangle/nozzle.cu | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5574,7 +5574,7 @@ cudaSetDevice(0); After including the relevant headers we construct the D3Q19 lattice. #+BEGIN_SRC cpp :tangle tangle/nozzle.cu -const descriptor::Cuboid<DESCRIPTOR> cuboid(400, 80, 80); +const descriptor::Cuboid<DESCRIPTOR> cuboid(500, 80, 80); Lattice<DESCRIPTOR,T> lattice(cuboid); #+END_SRC diff --git a/tangle/nozzle.cu b/tangle/nozzle.cu index c3f343d..5a1b1f3 100644 --- a/tangle/nozzle.cu +++ b/tangle/nozzle.cu @@ -17,7 +17,7 @@ using DESCRIPTOR = descriptor::D3Q19; int main() { cudaSetDevice(0); -const descriptor::Cuboid<DESCRIPTOR> cuboid(400, 80, 80); +const descriptor::Cuboid<DESCRIPTOR> cuboid(500, 80, 80); Lattice<DESCRIPTOR,T> lattice(cuboid); CellMaterials<DESCRIPTOR> materials(cuboid, [&cuboid](uint3 p) -> int { |