PICurv 0.1.0
A Parallel Particle-In-Cell Solver for Curvilinear LES
Loading...
Searching...
No Matches
Filter.c
Go to the documentation of this file.
1/**
2 * @file Filter.c
3 * @brief Implements numerical filtering schemes for Large Eddy Simulation (LES).
4 *
5 * This file contains the functions necessary to apply a "test filter" to the resolved
6 * velocity field, which is a core component of the dynamic Smagorinsky turbulence model.
7 * The choice of filter (e.g., a general 3D box filter or a specialized 2D
8 * homogeneous filter) is determined by the simulation's configuration.
9 */
10
11#include "Filter.h"
12#include <math.h> // Required for fabs() in the safe division check.
13
14/*================================================================================*
15 * INTERNAL (STATIC) FUNCTIONS *
16 *================================================================================*/
17
18/**
19 * @brief Apply the two-dimensional Simpson stencil on the central homogeneous-plane samples.
20 */
21static double ApplySimpsonRuleHomogeneousFilter(double values[3][3][3])
22{
23 // The stencil only uses the central j-plane (j-index = 1, corresponding to the y-direction).
24 // The formula is a weighted sum of the 9 points in that plane.
25 const double corners = values[0][1][0] + values[2][1][0] + values[0][1][2] + values[2][1][2]; // 4 corner points
26 const double edges = values[0][1][1] + values[1][1][0] + values[2][1][1] + values[1][1][2]; // 4 edge-center points
27 const double center = values[1][1][1]; // 1 center point
28
29 // The weights (1, 4, 16) and normalization factor (36) come from the 2D Simpson's rule.
30 return (corners + 4.0 * edges + 16.0 * center) / 36.0;
31}
32
33
34/**
35 * @brief Average a 3x3x3 stencil with cell-volume weights while excluding solid cells.
36 */
37static double ApplyVolumeWeightedBoxFilter(double values[3][3][3], double weights[3][3][3])
38{
39 // v1...v8 store the sum of (value * weight) for each of the 8 sub-cubes.
40 // w1...w8 store the sum of (weight) for each of the 8 sub-cubes.
41 double v1, v2, v3, v4, v5, v6, v7, v8;
42 double w1, w2, w3, w4, w5, w6, w7, w8;
43
44 // --- Calculations for the 4 sub-cubes on the bottom layer (k-indices 0 and 1) ---
45
46 // Bottom-Back-Left sub-cube (i-indices: 0,1; j-indices: 0,1; k-indices: 0,1)
47 v1 = ( values[0][0][0]*weights[0][0][0] + values[1][0][0]*weights[1][0][0] + values[0][1][0]*weights[0][1][0] + values[1][1][0]*weights[1][1][0] +
48 values[0][0][1]*weights[0][0][1] + values[1][0][1]*weights[1][0][1] + values[0][1][1]*weights[0][1][1] + values[1][1][1]*weights[1][1][1] );
49 w1 = ( weights[0][0][0] + weights[1][0][0] + weights[0][1][0] + weights[1][1][0] +
50 weights[0][0][1] + weights[1][0][1] + weights[0][1][1] + weights[1][1][1] );
51
52 // Bottom-Back-Right sub-cube (i-indices: 1,2; j-indices: 0,1; k-indices: 0,1)
53 v2 = ( values[1][0][0]*weights[1][0][0] + values[2][0][0]*weights[2][0][0] + values[1][1][0]*weights[1][1][0] + values[2][1][0]*weights[2][1][0] +
54 values[1][0][1]*weights[1][0][1] + values[2][0][1]*weights[2][0][1] + values[1][1][1]*weights[1][1][1] + values[2][1][1]*weights[2][1][1] );
55 w2 = ( weights[1][0][0] + weights[2][0][0] + weights[1][1][0] + weights[2][1][0] +
56 weights[1][0][1] + weights[2][0][1] + weights[1][1][1] + weights[2][1][1] );
57
58 // Bottom-Front-Left sub-cube (i-indices: 0,1; j-indices: 1,2; k-indices: 0,1)
59 v3 = ( values[0][1][0]*weights[0][1][0] + values[1][1][0]*weights[1][1][0] + values[0][2][0]*weights[0][2][0] + values[1][2][0]*weights[1][2][0] +
60 values[0][1][1]*weights[0][1][1] + values[1][1][1]*weights[1][1][1] + values[0][2][1]*weights[0][2][1] + values[1][2][1]*weights[1][2][1] );
61 w3 = ( weights[0][1][0] + weights[1][1][0] + weights[0][2][0] + weights[1][2][0] +
62 weights[0][1][1] + weights[1][1][1] + weights[0][2][1] + weights[1][2][1] );
63
64 // Bottom-Front-Right sub-cube (i-indices: 1,2; j-indices: 1,2; k-indices: 0,1)
65 v4 = ( values[1][1][0]*weights[1][1][0] + values[2][1][0]*weights[2][1][0] + values[1][2][0]*weights[1][2][0] + values[2][2][0]*weights[2][2][0] +
66 values[1][1][1]*weights[1][1][1] + values[2][1][1]*weights[2][1][1] + values[1][2][1]*weights[1][2][1] + values[2][2][1]*weights[2][2][1] );
67 w4 = ( weights[1][1][0] + weights[2][1][0] + weights[1][2][0] + weights[2][2][0] +
68 weights[1][1][1] + weights[2][1][1] + weights[1][2][1] + weights[2][2][1] );
69
70
71 // --- Calculations for the 4 sub-cubes on the top layer (k-indices 1 and 2) ---
72
73 // Top-Back-Left sub-cube (i-indices: 0,1; j-indices: 0,1; k-indices: 1,2)
74 v5 = ( values[0][0][1]*weights[0][0][1] + values[1][0][1]*weights[1][0][1] + values[0][1][1]*weights[0][1][1] + values[1][1][1]*weights[1][1][1] +
75 values[0][0][2]*weights[0][0][2] + values[1][0][2]*weights[1][0][2] + values[0][1][2]*weights[0][1][2] + values[1][1][2]*weights[1][1][2] );
76 w5 = ( weights[0][0][1] + weights[1][0][1] + weights[0][1][1] + weights[1][1][1] +
77 weights[0][0][2] + weights[1][0][2] + weights[0][1][2] + weights[1][1][2] );
78
79 // Top-Back-Right sub-cube (i-indices: 1,2; j-indices: 0,1; k-indices: 1,2)
80 v6 = ( values[1][0][1]*weights[1][0][1] + values[2][0][1]*weights[2][0][1] + values[1][1][1]*weights[1][1][1] + values[2][1][1]*weights[2][1][1] +
81 values[1][0][2]*weights[1][0][2] + values[2][0][2]*weights[2][0][2] + values[1][1][2]*weights[1][1][2] + values[2][1][2]*weights[2][1][2] );
82 w6 = ( weights[1][0][1] + weights[2][0][1] + weights[1][1][1] + weights[2][1][1] +
83 weights[1][0][2] + weights[2][0][2] + weights[1][1][2] + weights[2][1][2] );
84
85 // Top-Front-Left sub-cube (i-indices: 0,1; j-indices: 1,2; k-indices: 1,2)
86 v7 = ( values[0][1][1]*weights[0][1][1] + values[1][1][1]*weights[1][1][1] + values[0][2][1]*weights[0][2][1] + values[1][2][1]*weights[1][2][1] +
87 values[0][1][2]*weights[0][1][2] + values[1][1][2]*weights[1][1][2] + values[0][2][2]*weights[0][2][2] + values[1][2][2]*weights[1][2][2] );
88 w7 = ( weights[0][1][1] + weights[1][1][1] + weights[0][2][1] + weights[1][2][1] +
89 weights[0][1][2] + weights[1][1][2] + weights[0][2][2] + weights[1][2][2] );
90
91 // Top-Front-Right sub-cube (i-indices: 1,2; j-indices: 1,2; k-indices: 1,2)
92 v8 = ( values[1][1][1]*weights[1][1][1] + values[2][1][1]*weights[2][1][1] + values[1][2][1]*weights[1][2][1] + values[2][2][1]*weights[2][2][1] +
93 values[1][1][2]*weights[1][1][2] + values[2][1][2]*weights[2][1][2] + values[1][2][2]*weights[1][2][2] + values[2][2][2]*weights[2][2][2] );
94 w8 = ( weights[1][1][1] + weights[2][1][1] + weights[1][2][1] + weights[2][2][1] +
95 weights[1][1][2] + weights[2][1][2] + weights[1][2][2] + weights[2][2][2] );
96
97 // Sum the contributions from all 8 octants.
98 double total_weighted_value = v1+v2+v3+v4+v5+v6+v7+v8;
99 double total_weight = w1+w2+w3+w4+w5+w6+w7+w8;
100
101 // Production safety check: avoid division by zero if all weights are zero
102 // (e.g., if the stencil is entirely inside a solid body).
103 if (fabs(total_weight) < 1.0e-12) {
104 return 0.0;
105 }
106
107 return total_weighted_value / total_weight;
108}
109
110
111/*================================================================================*
112 * PUBLIC FUNCTIONS *
113 *================================================================================*/
114
115#undef __FUNCT__
116#define __FUNCT__ "ApplyLESTestFilter"
117/**
118 * @brief Internal helper implementation: `ApplyLESTestFilter()`.
119 * @details Local to this translation unit.
120 */
121double ApplyLESTestFilter(const SimCtx *simCtx, double values[3][3][3], double weights[3][3][3])
122{
123 // This function acts as a dispatcher. It reads the simulation configuration
124 // and calls the appropriate internal filtering routine.
125 if (simCtx->testfilter_ik) {
126 // If the "-testfilter_ik" flag is set, it indicates that the simulation
127 // is homogeneous in the i and k directions, so we use the specialized,
128 // more accurate Simpson's rule filter. The `weights` are ignored in this case.
130 } else {
131 // This is the default case for general, non-uniform, curvilinear grids.
132 // The volume-weighted box filter is used to ensure correct averaging.
133 return ApplyVolumeWeightedBoxFilter(values, weights);
134 }
135}
double ApplyLESTestFilter(const SimCtx *simCtx, double values[3][3][3], double weights[3][3][3])
Internal helper implementation: ApplyLESTestFilter().
Definition Filter.c:121
static double ApplyVolumeWeightedBoxFilter(double values[3][3][3], double weights[3][3][3])
Average a 3x3x3 stencil with cell-volume weights while excluding solid cells.
Definition Filter.c:37
static double ApplySimpsonRuleHomogeneousFilter(double values[3][3][3])
Apply the two-dimensional Simpson stencil on the central homogeneous-plane samples.
Definition Filter.c:21
PetscInt testfilter_ik
Definition variables.h:824
The master context for the entire simulation.
Definition variables.h:695