From 4892b69b3b94652489591c568908369ec205a6a6 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 3 Jul 2021 17:21:10 +0200 Subject: Add Magnus video --- tangle/magnus.cu | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'tangle') diff --git a/tangle/magnus.cu b/tangle/magnus.cu index aa31ba1..5800cd8 100644 --- a/tangle/magnus.cu +++ b/tangle/magnus.cu @@ -18,7 +18,7 @@ cudaSetDevice(0); const descriptor::Cuboid cuboid(1200, 500); Lattice lattice(cuboid); -const float tau = 0.54; +const float tau = 0.52; const float u_inflow = 0.02; const float u_rotate = 0.08; @@ -74,14 +74,11 @@ cudaDeviceSynchronize(); RenderWindow window("Magnus"); cudaSurfaceObject_t colormap; ColorPalette palette(colormap); -auto slice = [cuboid] __device__ (int iX, int iY) -> std::size_t { - return descriptor::gid(cuboid,iX,cuboid.nY-1-iY); - }; DeviceBuffer moments_rho(cuboid.volume); DeviceBuffer moments_u(2*cuboid.volume); T* u = moments_u.device(); -std::size_t iStep = 0; +std::size_t iStep = 0; while (window.isOpen()) { lattice.apply(Operator(BgkCollideO(), bulk_mask, tau), Operator(BounceBackFreeSlipO(), wall_mask, WallNormal<0,1>()), @@ -90,14 +87,16 @@ while (window.isOpen()) { Operator(BounceBackO(), edge_mask)); lattice.apply(bouzidi.getCount(), bouzidi.getConfig()); lattice.stream(); - if (iStep % 100 == 0) { + if (iStep % 200 == 0) { cudaDeviceSynchronize(); lattice.inspect(bulk_mask, moments_rho.device(), moments_u.device()); renderSliceViewToTexture<<< dim3(cuboid.nX / 32 + 1, cuboid.nY / 32 + 1), dim3(32,32) >>>(cuboid.nX, cuboid.nY, - slice, + [cuboid] __device__ (int iX, int iY) -> std::size_t { + return descriptor::gid(cuboid,iX,cuboid.nY-1-iY); + }, [u,u_rotate] __device__ (std::size_t gid) -> float { return length(make_float2(u[2*gid+0], u[2*gid+1])) / u_rotate; }, -- cgit v1.2.3