Neko 0.9.99
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
vreman_nut_kernel.h
Go to the documentation of this file.
1#ifndef __COMMON_VREMAN_NUT_KERNEL_H__
2#define __COMMON_VREMAN_NUT_KERNEL_H__
3/*
4 Copyright (c) 2024, The Neko Authors
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions
9 are met:
10
11 * Redistributions of source code must retain the above copyright
12 notice, this list of conditions and the following disclaimer.
13
14 * Redistributions in binary form must reproduce the above
15 copyright notice, this list of conditions and the following
16 disclaimer in the documentation and/or other materials provided
17 with the distribution.
18
19 * Neither the name of the authors nor the names of its
20 contributors may be used to endorse or promote products derived
21 from this software without specific prior written permission.
22
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 POSSIBILITY OF SUCH DAMAGE.
35*/
36
40#include <cmath>
41#include <algorithm>
42template< typename T>
52 T * __restrict__ delta,
53 T * __restrict__ nut,
54 T * __restrict__ mult,
55 const T c,
56 const T eps,
57 const int n){
58
59 const int idx = blockIdx.x * blockDim.x + threadIdx.x;
60 const int str = blockDim.x * gridDim.x;
61
62 for (int i = idx; i < n; i += str) {
66
67 a11[i] = a11[i] * mult[i];
68 a12[i] = a12[i] * mult[i];
69 a13[i] = a13[i] * mult[i];
70 a21[i] = a21[i] * mult[i];
71 a22[i] = a22[i] * mult[i];
72 a23[i] = a23[i] * mult[i];
73 a31[i] = a31[i] * mult[i];
74 a32[i] = a32[i] * mult[i];
75 a33[i] = a33[i] * mult[i];
76
77 beta11 = a11[i]*a11[i] + a21[i]*a21[i] + a31[i]*a31[i];
78 beta22 = a12[i]*a12[i] + a22[i]*a22[i] + a32[i]*a32[i];
79 beta33 = a13[i]*a13[i] + a23[i]*a23[i] + a33[i]*a33[i];
80 beta12 = a11[i]*a12[i] + a21[i]*a22[i] + a31[i]*a32[i];
81 beta13 = a11[i]*a13[i] + a21[i]*a23[i] + a31[i]*a33[i];
82 beta23 = a12[i]*a13[i] + a22[i]*a23[i] + a32[i]*a33[i];
83
87
88 b_beta = max(0.0, b_beta);
89
91
92 nut[i] = c * delta[i] * delta[i]
93 * sqrt(b_beta / (aijaij + eps));
94 }
95}
96#endif // __COMMON_VREMAN_NUT_KERNEL_H__
const int i
__global__ void dirichlet_apply_scalar_kernel(const int *__restrict__ msk, T *__restrict__ x, const T g, const int m)
__global__ void vreman_nut_compute(T *__restrict__ a11, T *__restrict__ a12, T *__restrict__ a13, T *__restrict__ a21, T *__restrict__ a22, T *__restrict__ a23, T *__restrict__ a31, T *__restrict__ a32, T *__restrict__ a33, T *__restrict__ delta, T *__restrict__ nut, T *__restrict__ mult, const T c, const T eps, const int n)
#define max(a, b)
Definition tensor.cu:40