PICurv 0.1.0
A Parallel Particle-In-Cell Solver for Curvilinear LES
Loading...
Searching...
No Matches
initialcondition.c
Go to the documentation of this file.
1/**
2 * @file initialcondition.c // Setup the Initial conditions for different cases.
3 * @brief Test program for DMSwarm interpolation using the fdf-curvIB method.
4 **/
5
6 #include "initialcondition.h"
7
8#undef __FUNCT__
9#define __FUNCT__ "SetInitialInteriorField"
10/**
11 * @brief Internal helper implementation: `SetInitialInteriorField()`.
12 * @details Local to this translation unit.
13 */
14PetscErrorCode SetInitialInteriorField(UserCtx *user, FieldId field_id)
15{
16 PetscErrorCode ierr;
17 const char *fieldName = FieldCanonicalName(field_id);
18 PetscFunctionBeginUser;
19
21
22 SimCtx *simCtx = user->simCtx;
23
24 LOG_ALLOW(GLOBAL, LOG_INFO, "Setting initial INTERIOR field for '%s' with mode %d.\n", fieldName, simCtx->initialConditionMode);
25
26 // This function currently only implements logic for Ucont.
27 if (field_id != FIELD_ID_UCONT) {
28 LOG_ALLOW(GLOBAL, LOG_DEBUG, "Skipping SetInitialInteriorField for non-Ucont field '%s'.\n", fieldName);
29
31
32 PetscFunctionReturn(0);
33 }
34
35 // --- 1. Get DMDA info and grid dimensions ---
36 DMDALocalInfo info;
37 ierr = DMDAGetLocalInfo(user->fda, &info); CHKERRQ(ierr);
38
39 const PetscInt im_phys = info.mx - 1;
40 const PetscInt jm_phys = info.my - 1;
41 const PetscInt km_phys = info.mz - 1;
42
43 const PetscReal u_cart = simCtx->InitialConstantContra.x;
44 const PetscReal v_cart = simCtx->InitialConstantContra.y;
45 const PetscReal w_cart = simCtx->InitialConstantContra.z;
46
47 LOG_ALLOW(GLOBAL, LOG_DEBUG, "IC cartesian=(%.3f,%.3f,%.3f) ic_velocity_physical=%.3f mode=%d\n",
48 (double)u_cart, (double)v_cart, (double)w_cart,
49 (double)simCtx->icVelocityPhysical, (int)simCtx->initialConditionMode);
50
51 // --- 2. Early dispatch: cartesian Constant delegates to the uniform converter ---
53 ierr = UniformCart2Contra(user, u_cart, v_cart, w_cart); CHKERRQ(ierr);
55 PetscFunctionReturn(0);
56 }
57
58 // --- 3. Resolve flow direction for streamwise Constant and Poiseuille ---
59 const PetscBool needs_flow_dir = (PetscBool)(
63 PetscInt flow_axis = 0;
64 PetscReal flow_dir_sign = 1.0;
65
66 if (needs_flow_dir) {
67 if (user->inletFaceDefined)
69 else if (simCtx->flowDirection != FLOW_DIR_UNSET)
70 fd = simCtx->flowDirection;
71 else
72 SETERRQ(PETSC_COMM_SELF, PETSC_ERR_USER,
73 "Streamwise Constant and Poiseuille IC modes require either an INLET face or -flow_direction.");
74 flow_axis = (PetscInt)fd / 2;
75 flow_dir_sign = ((PetscInt)fd % 2 == 0) ? 1.0 : -1.0;
76 LOG_ALLOW(GLOBAL, LOG_DEBUG, "IC flow_direction=%d (axis=%d sign=%.1f)\n",
77 (int)fd, (int)flow_axis, (double)flow_dir_sign);
78 }
79
80 // --- 4. Open arrays for non-cartesian modes ---
81 Cmpnts ***csi_arr, ***eta_arr, ***zet_arr;
82 ierr = DMDAVecGetArrayRead(user->fda, user->lCsi, &csi_arr); CHKERRQ(ierr);
83 ierr = DMDAVecGetArrayRead(user->fda, user->lEta, &eta_arr); CHKERRQ(ierr);
84 ierr = DMDAVecGetArrayRead(user->fda, user->lZet, &zet_arr); CHKERRQ(ierr);
85
86 Cmpnts ***ucont_arr;
87 ierr = DMDAVecGetArray(user->fda, user->Ucont, &ucont_arr); CHKERRQ(ierr);
88
89 PetscInt i, j, k;
90 const PetscInt xs = info.xs, xe = info.xs + info.xm;
91 const PetscInt ys = info.ys, ye = info.ys + info.ym;
92 const PetscInt zs = info.zs, ze = info.zs + info.zm;
93
94 for (k = zs; k < ze; k++) {
95 for (j = ys; j < ye; j++) {
96 for (i = xs; i < xe; i++) {
97
98 // Check to ensure we only set initial conditions for PHYSICAL cells, not ghost cells.
99 // Ghost cells (at indices 0 and n) will be set later by ApplyBoundaryConditions.
100 //
101 // Grid structure: For n physical grid points, DMDA has size n+1
102 // - im_phys = mx - 1 = n (number of coordinate points, also equals number of cells + 1)
103 // - Physical cell indices: [1, im_phys-1] = [1, n-1] (gives n-1 physical cells)
104 // - Ghost cells at boundaries: index 0 and index im_phys (= n)
105 //
106 // Example: n=25 physical points → im_phys=25
107 // - Physical cells: indices 1..24 (24 cells)
108 // - Ghost cells: indices 0 and 25
109 const PetscBool is_interior = (i > 0 && i < im_phys &&
110 j > 0 && j < jm_phys &&
111 k > 0 && k < km_phys);
112
113 if (is_interior) {
114 Cmpnts ucont_val = {0.0, 0.0, 0.0}; // Default to zero velocity
115 PetscReal normal_velocity_mag = 0.0;
116
117 switch (simCtx->initialConditionMode) {
118 case IC_MODE_ZERO:
119 break;
121 normal_velocity_mag = simCtx->icVelocityPhysical;
122 break;
124 {
125 PetscInt cs1, cs2, n1, n2;
126 if (flow_axis == 0) { cs1 = j; cs2 = k; n1 = jm_phys; n2 = km_phys; }
127 else if (flow_axis == 1) { cs1 = i; cs2 = k; n1 = im_phys; n2 = km_phys; }
128 else { cs1 = i; cs2 = j; n1 = im_phys; n2 = jm_phys; }
129 const PetscReal w1 = (PetscReal)(n1 - 2);
130 const PetscReal w2 = (PetscReal)(n2 - 2);
131 const PetscReal n1_norm = (cs1 - (1.0 + w1 / 2.0)) / (w1 / 2.0);
132 const PetscReal n2_norm = (cs2 - (1.0 + w2 / 2.0)) / (w2 / 2.0);
133 normal_velocity_mag = simCtx->icVelocityPhysical *
134 (1.0 - n1_norm * n1_norm) * (1.0 - n2_norm * n2_norm);
135 if (normal_velocity_mag < 0.0) normal_velocity_mag = 0.0;
136 }
137 break;
138 default:
139 LOG_ALLOW(LOCAL, LOG_WARNING, "Unrecognized initial-condition mode %d. Defaulting to zero.\n", simCtx->initialConditionMode);
140 break;
141 }
142
143 // Step B: apply flow direction and set the single contravariant flux component.
144 if (normal_velocity_mag != 0.0) {
145 const PetscReal signed_vel = normal_velocity_mag * flow_dir_sign * user->GridOrientation;
146 if (flow_axis == 0) {
147 const PetscReal area = sqrt(csi_arr[k][j][i].x * csi_arr[k][j][i].x +
148 csi_arr[k][j][i].y * csi_arr[k][j][i].y +
149 csi_arr[k][j][i].z * csi_arr[k][j][i].z);
150 ucont_val.x = signed_vel * area;
151 } else if (flow_axis == 1) {
152 const PetscReal area = sqrt(eta_arr[k][j][i].x * eta_arr[k][j][i].x +
153 eta_arr[k][j][i].y * eta_arr[k][j][i].y +
154 eta_arr[k][j][i].z * eta_arr[k][j][i].z);
155 ucont_val.y = signed_vel * area;
156 } else {
157 const PetscReal area = sqrt(zet_arr[k][j][i].x * zet_arr[k][j][i].x +
158 zet_arr[k][j][i].y * zet_arr[k][j][i].y +
159 zet_arr[k][j][i].z * zet_arr[k][j][i].z);
160 ucont_val.z = signed_vel * area;
161 }
162 }
163 ucont_arr[k][j][i] = ucont_val;
164 } // end if(is_interior)
165 }
166 }
167 }
168 ierr = DMDAVecRestoreArray(user->fda, user->Ucont, &ucont_arr); CHKERRQ(ierr);
169
170 // --- 5. Restore arrays ---
171 ierr = DMDAVecRestoreArrayRead(user->fda, user->lCsi, &csi_arr); CHKERRQ(ierr);
172 ierr = DMDAVecRestoreArrayRead(user->fda, user->lEta, &eta_arr); CHKERRQ(ierr);
173 ierr = DMDAVecRestoreArrayRead(user->fda, user->lZet, &zet_arr); CHKERRQ(ierr);
174
176
177 PetscFunctionReturn(0);
178}
179
180#undef __FUNCT__
181#define __FUNCT__ "LoadInitialUcont"
182/**
183 * @brief Load a staged file IC and return with Ucont populated.
184 */
185static PetscErrorCode LoadInitialUcont(UserCtx *user)
186{
187 PetscErrorCode ierr;
188 SimCtx *simCtx = user->simCtx;
189
190 PetscFunctionBeginUser;
191 ierr = PetscStrncpy(simCtx->_io_context_buffer, simCtx->initialConditionDirectory,
192 sizeof(simCtx->_io_context_buffer)); CHKERRQ(ierr);
194
195 if (simCtx->initialConditionField == IC_FIELD_UCAT) {
196 ierr = ReadFieldData(user, "ufield00000_0", user->Ucat, "dat"); CHKERRQ(ierr);
197 {
198 const FieldId cell_fields[] = {FIELD_ID_UCAT};
199 ierr = SynchronizePeriodicCellFields(user, 1, cell_fields); CHKERRQ(ierr);
200 }
201 ierr = UpdateLocalGhosts(user, FIELD_ID_UCAT); CHKERRQ(ierr);
202 ierr = Cart2Contra(user); CHKERRQ(ierr);
203 } else if (simCtx->initialConditionField == IC_FIELD_UCONT) {
204 ierr = ReadFieldData(user, "vfield00000_0", user->Ucont, "dat"); CHKERRQ(ierr);
205 } else {
206 SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE,
207 "Unsupported file initial-condition field selector %d.",
208 simCtx->initialConditionField);
209 }
210
211 simCtx->current_io_directory = NULL;
212 PetscFunctionReturn(0);
213}
214
215#undef __FUNCT__
216#define __FUNCT__ "PopulateInitialUcont"
217/**
218 * @brief Dispatch one fresh-start IC and return with Ucont populated.
219 */
220PetscErrorCode PopulateInitialUcont(UserCtx *user)
221{
222 PetscErrorCode ierr;
223 SimCtx *simCtx = user->simCtx;
224
225 PetscFunctionBeginUser;
226 if (simCtx->initialConditionMode == IC_MODE_FILE) {
227 ierr = LoadInitialUcont(user); CHKERRQ(ierr);
228 } else {
229 ierr = SetInitialInteriorField(user, FIELD_ID_UCONT); CHKERRQ(ierr);
230 }
231 PetscFunctionReturn(0);
232}
233
234#undef __FUNCT__
235#define __FUNCT__ "FinalizeBlockState"
236/**
237 * @brief Complete one initial-condition block after its interior values are assigned.
238 */
239static PetscErrorCode FinalizeBlockState(UserCtx *user)
240{
241 PetscErrorCode ierr;
242 PetscFunctionBeginUser;
243
245
246 // This sequence ensures a fully consistent state for a single block.
247 ierr = ApplyBoundaryConditions(user); CHKERRQ(ierr);
248 LOG_ALLOW(GLOBAL,LOG_TRACE," Boundary condition applied.\n");
249 // 2. Sync contravariant velocity field.
250 const FieldId staggered_fields[] = {FIELD_ID_UCONT};
251 ierr = SynchronizePeriodicStaggeredFields(user, 1, staggered_fields); CHKERRQ(ierr);
252 LOG_ALLOW(GLOBAL,LOG_TRACE," Ucont field ghosts updated.\n");
253
254 // 3. Convert to Cartesian velocity.
255 ierr = Contra2Cart(user); CHKERRQ(ierr);
256 LOG_ALLOW(GLOBAL,LOG_TRACE," Converted Ucont to Ucat.\n");
257
258 // 4. Finalize periodic endpoint values, then refresh local Cartesian velocity.
259 {
260 const FieldId cell_fields[] = {FIELD_ID_UCAT};
261 ierr = SynchronizePeriodicCellFields(user, 1, cell_fields); CHKERRQ(ierr);
262 }
263 ierr = UpdateLocalGhosts(user, FIELD_ID_UCAT); CHKERRQ(ierr);
264 LOG_ALLOW(GLOBAL,LOG_TRACE," Ucat field ghosts updated.\n");
265
267
268 PetscFunctionReturn(0);
269}
270
271
272#undef __FUNCT__
273#define __FUNCT__ "SetInitialFluidState_FreshStart"
274/**
275 * @brief Initialize Eulerian fields for a new simulation without restart data.
276 */
277static PetscErrorCode SetInitialFluidState_FreshStart(SimCtx *simCtx)
278{
279 PetscErrorCode ierr;
280 UserCtx *user_finest = simCtx->usermg.mgctx[simCtx->usermg.mglevels - 1].user;
281 PetscFunctionBeginUser;
282
284
285 for (PetscInt bi = 0; bi < simCtx->block_number; bi++) {
286 LOG_ALLOW(LOCAL, LOG_INFO, "Rank %d, Block %d: Setting t=0 state.\n", simCtx->rank, bi);
287
288 // 1. Set an initial guess for the INTERIOR of the domain.
289 // Replaces the legacy `if(InitialGuessOne)` block.
290
291 LOG_ALLOW(GLOBAL,LOG_TRACE," Initializing Interior Ucont field.\n");
292 ierr = PopulateInitialUcont(&user_finest[bi]); CHKERRQ(ierr);
293 LOG_ALLOW(GLOBAL,LOG_TRACE," Interior Ucont field initialized.\n");
294
295 // 2. Apply all boundary conditions, convert to Cartesian, and sync ghosts.
296 LOG_ALLOW(GLOBAL,LOG_TRACE," Boundary condition application and state finalization initiated.\n");
297 ierr = FinalizeBlockState(&user_finest[bi]); CHKERRQ(ierr);
298 LOG_ALLOW(GLOBAL,LOG_TRACE," Boundary condition application and state finalization complete.\n");
299 }
300
301 // If using multiple grid blocks, handle the interface conditions between them.
302 if (simCtx->block_number > 1) {
303 // LOG_ALLOW(GLOBAL, LOG_INFO, "Updating multi-block interfaces for t=0.\n");
304 // ierr = Block_Interface_U(user_finest); CHKERRQ(ierr);
305 // After interface update, ghost regions might be stale. Refresh them.
306 for (PetscInt bi = 0; bi < simCtx->block_number; bi++) {
307 const FieldId staggered_fields[] = {FIELD_ID_UCONT};
308 ierr = SynchronizePeriodicStaggeredFields(&user_finest[bi], 1, staggered_fields); CHKERRQ(ierr);
309 ierr = UpdateLocalGhosts(&user_finest[bi], FIELD_ID_UCAT); CHKERRQ(ierr);
310 }
311 }
312
314
315 PetscFunctionReturn(0);
316}
317
318#undef __FUNCT__
319#define __FUNCT__ "SetInitialFluidState_Load"
320/**
321 * @brief Restore Eulerian fields from checkpoint files for a restart simulation.
322 */
323static PetscErrorCode SetInitialFluidState_Load(SimCtx *simCtx)
324{
325 PetscErrorCode ierr;
326 UserCtx *user_finest = simCtx->usermg.mgctx[simCtx->mglevels - 1].user;
327 PetscFunctionBeginUser;
328
330
331 for (PetscInt bi = 0; bi < simCtx->block_number; bi++) {
332 LOG_ALLOW(LOCAL, LOG_INFO, "Rank %d, Block %d: Reading restart files for step %d.\n",
333 simCtx->rank, bi, simCtx->StartStep);
334
335 // ReadSimulationFields handles all file I/O for one block.
336 ierr = ReadSimulationFields(&user_finest[bi], simCtx->StartStep); CHKERRQ(ierr);
337
338 // Apply Boundary Conditions on Read fields
339 ierr = ApplyBoundaryConditions(&user_finest[bi]); CHKERRQ(ierr);
340 // After reading from a file, the local ghost regions MUST be updated
341 // to ensure consistency across process boundaries for the first time step.
342 //ierr = UpdateLocalGhosts(&user_finest[bi], FIELD_ID_UCAT); CHKERRQ(ierr);
343 //ierr = UpdateLocalGhosts(&user_finest[bi], FIELD_ID_P); CHKERRQ(ierr);
344 // ... add ghost updates for any other fields read from file ...
345 }
346
348
349 PetscFunctionReturn(0);
350}
351
352#undef __FUNCT__
353#define __FUNCT__ "InitializeEulerianState"
354/**
355 * @brief Internal helper implementation: `InitializeEulerianState()`.
356 * @details Local to this translation unit.
357 */
358PetscErrorCode InitializeEulerianState(SimCtx *simCtx)
359{
360 PetscErrorCode ierr;
361 UserCtx *user_finest = simCtx->usermg.mgctx[simCtx->usermg.mglevels - 1].user;
362
363 PetscFunctionBeginUser;
364
366
367 LOG_ALLOW(GLOBAL, LOG_INFO, "--- Initializing Eulerian State ---\n");
368
369 if (simCtx->StartStep > 0) {
370 if(strcmp(simCtx->eulerianSource,"analytical")==0){
371 LOG_ALLOW(GLOBAL,LOG_INFO,"Initializing Analytical Solution type: %s (t=%.4f, step=%d).\n",simCtx->AnalyticalSolutionType,simCtx->StartTime,simCtx->StartStep);
372 ierr = AnalyticalSolutionEngine(simCtx);
373 }
374 else{
375 LOG_ALLOW(GLOBAL, LOG_INFO, "Starting from RESTART files (t=%.4f, step=%d).\n",
376 simCtx->StartTime, simCtx->StartStep);
377 ierr = SetInitialFluidState_Load(simCtx); CHKERRQ(ierr);
378 }
379 /* Statistics resume from the same bundle the flow state came from, and are
380 * restored regardless of the Eulerian source: an analytical restart still
381 * continues a window that was accumulating before it. */
382 ierr = RestoreFieldStatisticsState(simCtx, simCtx->StartStep); CHKERRQ(ierr);
383 } else { // StartStep = 0
384 LOG_ALLOW(GLOBAL, LOG_INFO, "Performing a FRESH START (t=0, step=0).\n");
385 if(strcmp(simCtx->eulerianSource,"solve")==0){
386 ierr = SetInitialFluidState_FreshStart(simCtx); CHKERRQ(ierr);
387 }else if(strcmp(simCtx->eulerianSource,"load")==0){
388 LOG_ALLOW(GLOBAL,LOG_INFO,"FRESH START in LOAD mode. Reading files (t=%.4f,step=%d).\n",
389 simCtx->StartTime,simCtx->StartStep);
390 ierr=SetInitialFluidState_Load(simCtx);CHKERRQ(ierr);
391 }else if(strcmp(simCtx->eulerianSource,"analytical")==0){
392 LOG_ALLOW(GLOBAL,LOG_INFO,"FRESH START in ANALYTICAL mode. Initializing Analytical Solution type: %s (t=%.4f,step=%d).\n",
393 simCtx->AnalyticalSolutionType,simCtx->StartTime,simCtx->StartStep);
394 ierr=AnalyticalSolutionEngine(simCtx);CHKERRQ(ierr);
395 }
396 }
397
398 // This crucial step, taken from the end of the legacy setup, ensures
399 // that the history vectors (Ucont_o, Ucont_rm1, etc.) are correctly
400 // populated before the first call to the time-stepping loop.
401 for (PetscInt bi = 0; bi < simCtx->block_number; bi++) {
402 ierr = UpdateSolverHistoryVectors(&user_finest[bi],
403 (PetscBool)(simCtx->StartStep > 0 && simCtx->restartHistoryAvailable)); CHKERRQ(ierr);
404 }
405
406 LOG_ALLOW(GLOBAL, LOG_INFO, "--- Eulerian State Initialized and History Vectors Populated ---\n");
407
409 PetscFunctionReturn(0);
410}
PetscErrorCode AnalyticalSolutionEngine(SimCtx *simCtx)
Dispatches to the appropriate analytical solution function based on simulation settings.
PetscErrorCode SynchronizePeriodicStaggeredFields(UserCtx *user, PetscInt num_fields, const FieldId field_ids[])
Synchronizes persistent component-staggered vector fields.
PetscErrorCode ApplyBoundaryConditions(UserCtx *user)
Main boundary-condition orchestrator executed during solver timestepping.
PetscErrorCode SynchronizePeriodicCellFields(UserCtx *user, PetscInt num_fields, const FieldId field_ids[])
Synchronizes periodic endpoint cells for a list of cell-centered fields.
const char * FieldCanonicalName(FieldId field_id)
Return the canonical printable name for an ID.
FieldId
Compile-time identity for a catalogued Eulerian field.
@ FIELD_ID_UCAT
@ FIELD_ID_UCONT
static PetscErrorCode SetInitialFluidState_Load(SimCtx *simCtx)
Restore Eulerian fields from checkpoint files for a restart simulation.
PetscErrorCode SetInitialInteriorField(UserCtx *user, FieldId field_id)
Internal helper implementation: SetInitialInteriorField().
static PetscErrorCode SetInitialFluidState_FreshStart(SimCtx *simCtx)
Initialize Eulerian fields for a new simulation without restart data.
static PetscErrorCode LoadInitialUcont(UserCtx *user)
Load a staged file IC and return with Ucont populated.
PetscErrorCode InitializeEulerianState(SimCtx *simCtx)
Internal helper implementation: InitializeEulerianState().
PetscErrorCode PopulateInitialUcont(UserCtx *user)
Dispatch one fresh-start IC and return with Ucont populated.
static PetscErrorCode FinalizeBlockState(UserCtx *user)
Complete one initial-condition block after its interior values are assigned.
PetscErrorCode ReadSimulationFields(UserCtx *user, PetscInt ti)
Reads binary field data for velocity, pressure, and other required vectors.
Definition io.c:1463
PetscErrorCode ReadFieldData(UserCtx *user, const char *field_name, Vec field_vec, const char *ext)
Reads data for a specific field from a file into the provided vector.
Definition io.c:1174
PetscErrorCode RestoreFieldStatisticsState(SimCtx *simCtx, PetscInt ti)
Restores field-statistics window state and accumulators from a checkpoint.
Definition io.c:1667
#define LOCAL
Logging scope definitions for controlling message output.
Definition logging.h:45
#define GLOBAL
Scope for global logging across all processes.
Definition logging.h:46
#define LOG_ALLOW(scope, level, fmt,...)
Logging macro that checks both the log level and whether the calling function is in the allowed-funct...
Definition logging.h:200
#define PROFILE_FUNCTION_END
Marks the end of a profiled code block.
Definition logging.h:859
@ LOG_TRACE
Very fine-grained tracing information for in-depth debugging.
Definition logging.h:33
@ LOG_INFO
Informational messages about program execution.
Definition logging.h:31
@ LOG_WARNING
Non-critical issues that warrant attention.
Definition logging.h:30
@ LOG_DEBUG
Detailed debugging information.
Definition logging.h:32
#define PROFILE_FUNCTION_BEGIN
Marks the beginning of a profiled code block (typically a function).
Definition logging.h:850
PetscErrorCode UpdateSolverHistoryVectors(UserCtx *user, PetscBool preserve_previous_state)
Copies the current time step's solution fields into history vectors (e.g., U(t_n) -> U_o,...
Definition runloop.c:306
PetscErrorCode UniformCart2Contra(UserCtx *user, PetscReal u, PetscReal v, PetscReal w)
Populate contravariant fluxes from one uniform Cartesian velocity.
Definition setup.c:2853
PetscErrorCode Contra2Cart(UserCtx *user)
Reconstructs Cartesian velocity (Ucat) at cell centers from contravariant velocity (Ucont) defined on...
Definition setup.c:2649
PetscErrorCode UpdateLocalGhosts(UserCtx *user, FieldId field_id)
Updates the local vector (including ghost points) from its corresponding global vector.
Definition setup.c:1838
PetscErrorCode Cart2Contra(UserCtx *user)
Convert the ghosted Cartesian velocity field to contravariant face fluxes.
Definition setup.c:2784
PetscReal icVelocityPhysical
Definition variables.h:759
UserCtx * user
Definition variables.h:571
PetscBool inletFaceDefined
Definition variables.h:932
PetscMPIInt rank
Definition variables.h:698
PetscInt block_number
Definition variables.h:790
BCFace identifiedInletBCFace
Definition variables.h:933
InitialConditionMode initialConditionMode
Definition variables.h:754
SimCtx * simCtx
Back-pointer to the master simulation context.
Definition variables.h:909
PetscReal StartTime
Definition variables.h:709
FlowDirection flowDirection
Definition variables.h:758
Vec lZet
Definition variables.h:974
UserMG usermg
Definition variables.h:852
Vec Ucont
Definition variables.h:939
PetscInt StartStep
Definition variables.h:705
PetscScalar x
Definition variables.h:103
char * current_io_directory
Definition variables.h:720
Vec lCsi
Definition variables.h:974
char eulerianSource[PETSC_MAX_PATH_LEN]
Definition variables.h:715
PetscScalar z
Definition variables.h:103
Vec Ucat
Definition variables.h:939
PetscInt mglevels
Definition variables.h:578
PetscInt mglevels
Definition variables.h:739
FlowDirection
Primary flow direction for streamwise IC and Poiseuille modes.
Definition variables.h:272
@ FLOW_DIR_UNSET
Definition variables.h:279
char initialConditionDirectory[PETSC_MAX_PATH_LEN]
Definition variables.h:756
char AnalyticalSolutionType[PETSC_MAX_PATH_LEN]
Definition variables.h:729
@ IC_MODE_CONSTANT_CARTESIAN
Definition variables.h:153
@ IC_MODE_POISEUILLE
Definition variables.h:154
@ IC_MODE_CONSTANT_STREAMWISE
Definition variables.h:155
@ IC_MODE_FILE
Definition variables.h:156
@ IC_MODE_ZERO
Definition variables.h:152
Cmpnts InitialConstantContra
Definition variables.h:757
PetscInt GridOrientation
Definition variables.h:924
PetscScalar y
Definition variables.h:103
@ IC_FIELD_UCONT
Definition variables.h:162
@ IC_FIELD_UCAT
Definition variables.h:161
char _io_context_buffer[PETSC_MAX_PATH_LEN]
Definition variables.h:719
Vec lEta
Definition variables.h:974
MGCtx * mgctx
Definition variables.h:581
InitialConditionField initialConditionField
Definition variables.h:755
PetscBool restartHistoryAvailable
Definition variables.h:723
A 3D point or vector with PetscScalar components.
Definition variables.h:102
The master context for the entire simulation.
Definition variables.h:695
User-defined context containing data specific to a single computational grid level.
Definition variables.h:906