Home
last modified time | relevance | path

Searched refs:wall_forces (Results 1 – 5 of 5) sorted by relevance

/honee/src/
H A Dsetupts.c257 PetscInt num_wall = honee->app_ctx->wall_forces.num_wall, dim = 3; in TSMonitor_WallForce()
258 const PetscInt *walls = honee->app_ctx->wall_forces.walls; in TSMonitor_WallForce()
259 PetscViewer viewer = honee->app_ctx->wall_forces.viewer; in TSMonitor_WallForce()
260 PetscViewerFormat format = honee->app_ctx->wall_forces.viewer_format; in TSMonitor_WallForce()
274 if (format == PETSC_VIEWER_ASCII_CSV && !honee->app_ctx->wall_forces.header_written) { in TSMonitor_WallForce()
276 honee->app_ctx->wall_forces.header_written = PETSC_TRUE; in TSMonitor_WallForce()
475 if (app_ctx->wall_forces.viewer) PetscCall(TSMonitorSet(*ts, TSMonitor_WallForce, honee, NULL)); in TSSolve_NS()
H A Dhonee.c103 PetscCall(PetscFree(app_ctx->wall_forces.walls)); in HoneeDestroy()
104 PetscCall(PetscViewerDestroy(&app_ctx->wall_forces.viewer)); in HoneeDestroy()
H A Dboundary_condition.c48 app_ctx->wall_forces.num_wall = bc_def->num_label_values; in BoundaryConditionSetUp()
49 PetscCall(PetscMalloc1(bc_def->num_label_values, &app_ctx->wall_forces.walls)); in BoundaryConditionSetUp()
50 …PetscCall(PetscArraycpy(app_ctx->wall_forces.walls, bc_def->label_values, bc_def->num_label_values… in BoundaryConditionSetUp()
H A Dcloptions.c185 …monitor_wall_force", "Viewer for force on each (no-slip) wall", NULL, &app_ctx->wall_forces.viewer, in ProcessCommandLineOptions()
186 &app_ctx->wall_forces.viewer_format, NULL)); in ProcessCommandLineOptions()
/honee/include/
H A Dnavierstokes.h109 } wall_forces; member