- Fixed bias_arr[4] (front 0), bias_arr[5] (bottom -4U0), bias_arr[6] (top +4U0) - Re-ran full karman pipeline: force-sig overlap unchanged (-0.034) - Force-OID still beats POD (0.295 vs 0.068, was 0.750 vs 0.418) - Absolute R2 shifted because corrected FIFO changed PPO trajectory start - Structural conclusion (force-sig near-orthogonal) is robust Co-authored-by: Cursor <cursoragent@cursor.com>
37 lines
638 B
C
37 lines
638 B
C
// CelerisLab/kernels/macros.h
|
|
|
|
// cuda parameters
|
|
#define MULT_GPU False
|
|
#define NT 128
|
|
#define X_1U 128
|
|
#define Y_1U 32
|
|
#define Z_1U 1
|
|
|
|
// flow parameters
|
|
#define LBtype float
|
|
#define UX 10
|
|
#define UY 16
|
|
#define UZ 1
|
|
#define NX 1280
|
|
#define NY 512
|
|
#define NZ 1
|
|
#define DIM 2
|
|
#define NQ 9
|
|
#define VIS 0.004
|
|
#define RHO 1.0
|
|
#define U0 0.01
|
|
|
|
// constants
|
|
#define PI 3.141592653589793238
|
|
#define FLUID 0b00000001
|
|
#define SOLID 0b00000010
|
|
#define GAS 0b00000100
|
|
#define INTERFACE 0b00001000
|
|
#define SENSOR 0b00010000
|
|
|
|
// vortex type
|
|
#define V_TAYLOR 0b00000001
|
|
|
|
// variables
|
|
#define N_OBJS 7
|
|
// #define N_SENS 2
|