| /honee/include/ |
| H A D | navierstokes.h | 133 PetscErrorCode (*CreateRHSOperator_Direct)(Honee, DivDiffFluxProjectionData, CeedOperator *); 134 PetscErrorCode (*CreateRHSOperator_Indirect)(Honee, DivDiffFluxProjectionData, CeedOperator *); 148 PetscErrorCode HoneeInit(MPI_Comm comm, Honee *honee); 149 PetscErrorCode HoneeDestroy(Honee *honee); 208 Honee honee; 215 PetscErrorCode BoundaryConditionSetUp(Honee honee, ProblemData problem, AppCtx app_ctx); 247 PetscErrorCode (*print_info)(Honee, ProblemData, AppCtx); 248 PetscErrorCode (*create_mass_operator)(Honee, CeedOperator *); 267 PetscErrorCode PrintRunInfo(Honee honee, Physics phys_ctx, ProblemData problem, TS ts); 272 PetscErrorCode SetupLibceed(Ceed ceed, DM dm, Honee honee, AppCtx app_ctx, ProblemData problem); [all …]
|
| H A D | honee.h | 9 typedef struct Honee_private *Honee; typedef 36 PetscErrorCode HoneeSetContainer(Honee honee, const char key[], void *container, PetscCtxDestroyFn … 37 PetscErrorCode HoneeGetContainer(Honee honee, const char key[], void *container); 38 PetscErrorCode HoneeHasContainer(Honee honee, const char key[], PetscBool *has_key);
|
| H A D | spanstats.h | 33 PetscErrorCode SpanwiseStatisticsSetupInitialize(Honee honee, PetscInt degree, PetscInt num_comps, … 35 PetscErrorCode SpanwiseStatisticsSetupFinalize(TS ts, Honee honee, SpanStatsCtx spanstats, PetscVie… 38 PetscErrorCode SpanwiseStatisticsCollect(Honee honee, SpanStatsCtx spanstats, PetscScalar solution_… 39 PetscErrorCode SpanwiseStatisticsProcess(Honee honee, SpanStatsCtx spanstats, Vec stats);
|
| H A D | differential_filter.h | 21 PetscErrorCode DifferentialFilterSetup(Honee honee, DiffFilterData *diff_filter); 23 PetscErrorCode DifferentialFilterApply(Honee honee, DiffFilterData diff_filter, const PetscReal sol… 28 PetscErrorCode DifferentialFilterMmsICSetup(Honee honee);
|
| H A D | smartsim.h | 7 PetscErrorCode SGS_DD_TrainingSetup(Ceed ceed, Honee honee);
|
| H A D | smartsim-impl.h | 35 PetscErrorCode HoneeGetSmartSimData(Honee honee, SmartSimData *smartsim);
|
| /honee/src/ |
| H A D | honee.c | 25 PetscErrorCode HoneeInit(MPI_Comm comm, Honee *honee) { in HoneeInit() 26 Honee honee_; in HoneeInit() 45 PetscErrorCode HoneeDestroy(Honee *honee) { in HoneeDestroy() 46 Honee honee_ = *honee; in HoneeDestroy() 132 PetscErrorCode HoneeSetContainer(Honee honee, const char key[], void *container, PetscCtxDestroyFn … in HoneeSetContainer() 153 PetscErrorCode HoneeGetContainer(Honee honee, const char key[], void *container) { in HoneeGetContainer() 167 PetscErrorCode HoneeHasContainer(Honee honee, const char key[], PetscBool *has_key) { in HoneeHasContainer()
|
| H A D | setupts.c | 18 PetscErrorCode UpdateBoundaryValues(Honee honee, Vec Q_loc, PetscReal t) { in UpdateBoundaryValues() 31 Honee honee = *(Honee *)user_data; in RHS_NS() 117 Honee honee = *(Honee *)user_data; in IFunction_NS() 170 Honee honee = *(Honee *)user_data; in FormIJacobian_NS() 195 PetscErrorCode WriteOutput(Honee honee, Vec Q, PetscInt step_no, PetscScalar time) { in WriteOutput() 255 Honee honee = ctx; in TSMonitor_WallForce() 296 Honee honee = ctx; in TSMonitor_NS() 310 Honee honee; in TSPostStep_CheckStep() 329 Honee honee; in TSPostStep_MaxWallTime() 360 Honee honee; in TSPostStep_Honee() [all …]
|
| H A D | differential_filter.c | 16 static PetscErrorCode DifferentialFilterCreateOperators(Honee honee, CeedQFunctionContext diff_filt… in DifferentialFilterCreateOperators() 195 PetscErrorCode DifferentialFilterSetup(Honee honee, DiffFilterData *diff_filter) { in DifferentialFilterSetup() 306 PetscErrorCode DifferentialFilterApply(Honee honee, DiffFilterData diff_filter, const PetscReal sol… in DifferentialFilterApply() 329 Honee honee; in TSMonitor_DifferentialFilterSetup() 343 Honee honee; in TSMonitor_DifferentialFilter() 373 PetscErrorCode DifferentialFilterMmsICSetup(Honee honee) { in DifferentialFilterMmsICSetup()
|
| H A D | misc.c | 14 PetscErrorCode ICs_FixMultiplicity(DM dm, Honee honee, Vec Q_loc, Vec Q, CeedScalar time) { in ICs_FixMultiplicity() 125 PetscErrorCode PrintError(DM dm, Honee honee, Vec Q, PetscScalar final_time) { in PrintError() 150 PetscErrorCode PostProcess(TS ts, DM dm, ProblemData problem, Honee honee, Vec Q, PetscScalar final… in PostProcess() 218 PetscErrorCode HoneeCalculateDomainSize(Honee honee, PetscScalar *volume) { in HoneeCalculateDomainSize() 264 PetscErrorCode PrintRunInfo(Honee honee, Physics phys_ctx, ProblemData problem, TS ts) { in PrintRunInfo()
|
| /honee/problems/ |
| H A D | bc_slip.c | 16 Honee honee; in SlipBCSetup_CreateIFunctionQF() 38 Honee honee; in SlipBCSetup_CreateIJacobianQF() 59 Honee honee = *(Honee *)ctx; in SlipBCSetup()
|
| H A D | bc_outflow.c | 26 Honee honee; in OutflowBCSetup_CreateIFunctionQF() 70 Honee honee; in OutflowBCSetup_CreateIJacobianQF() 115 Honee honee = *(Honee *)ctx; in OutflowBCSetup()
|
| H A D | shocktube.c | 14 static PetscErrorCode PRINT_SHOCKTUBE(Honee honee, ProblemData problem, AppCtx app_ctx) { in PRINT_SHOCKTUBE() 29 Honee honee = *(Honee *)ctx; in NS_SHOCKTUBE()
|
| H A D | taylorgreen.c | 12 Honee honee = *(Honee *)ctx; in NS_TAYLOR_GREEN()
|
| H A D | gaussianwave.c | 16 Honee honee = *(Honee *)ctx; in NS_GAUSSIAN_WAVE()
|
| H A D | eulervortex.c | 14 static PetscErrorCode PRINT_EULER_VORTEX(Honee honee, ProblemData problem, AppCtx app_ctx) { in PRINT_EULER_VORTEX() 56 Honee honee = *(Honee *)ctx; in NS_EULER_VORTEX()
|
| H A D | densitycurrent.c | 15 Honee honee = *(Honee *)ctx; in NS_DENSITY_CURRENT()
|
| H A D | newtonian.c | 17 static PetscErrorCode UnitTests_Newtonian(Honee honee, NewtonianIGProperties gas); 19 static PetscErrorCode PRINT_NEWTONIAN(Honee honee, ProblemData problem, AppCtx app_ctx) { in PRINT_NEWTONIAN() 38 PetscErrorCode CreateKSPMassOperator_NewtonianStabilized(Honee honee, CeedOperator *op_mass) { in CreateKSPMassOperator_NewtonianStabilized() 100 static PetscErrorCode DivDiffFluxProjectionCreateRHS_Direct_NS(Honee honee, DivDiffFluxProjectionDa… in DivDiffFluxProjectionCreateRHS_Direct_NS() 264 static PetscErrorCode DivDiffFluxProjectionCreateRHS_Indirect_NS(Honee honee, DivDiffFluxProjection… in DivDiffFluxProjectionCreateRHS_Indirect_NS() 333 Honee honee = honee_bc->honee; in BoundaryIntegralBCSetup_CreateIFunctionQF() 354 Honee honee = honee_bc->honee; in BoundaryIntegralBCSetup_CreateIJacobianQF() 372 Honee honee = *(Honee *)ctx; in NS_NEWTONIAN_IG() 733 static PetscErrorCode UnitTests_Newtonian(Honee honee, NewtonianIGProperties gas) { in UnitTests_Newtonian()
|
| H A D | stg_shur14.h | 10 extern PetscErrorCode SetupStg(const MPI_Comm comm, const DM dm, ProblemData problem, Honee honee, …
|
| /honee/src/smartsim/ |
| H A D | smartsim.c | 23 static PetscErrorCode SmartSimTrainingSetup(Honee honee) { in SmartSimTrainingSetup() 43 static PetscErrorCode SmartSimSetup(Honee honee) { in SmartSimSetup() 79 PetscErrorCode HoneeGetSmartSimData(Honee honee, SmartSimData *smartsim) { in HoneeGetSmartSimData()
|
| H A D | solution.c | 15 Honee honee; in TSMonitor_SmartSimSolutionSetup() 47 Honee honee; in TSMonitor_SmartSimSolution()
|
| H A D | sgs_dd_training.c | 90 static PetscErrorCode SetupTrainingDataCalculation(Ceed ceed, Honee honee, ProblemData problem, SGS… in SetupTrainingDataCalculation() 171 PetscErrorCode SGS_DD_TrainingSetup(Ceed ceed, Honee honee) { in SGS_DD_TrainingSetup() 292 Honee honee = (Honee)ctx; in TSMonitor_SGS_DD_Training() 391 Honee honee; in TSPostStep_SGS_DD_Training()
|
| /honee/src/spanstats/ |
| H A D | spanstats.c | 39 static PetscErrorCode SpanwiseStatisticssCreateDM(Honee honee, SpanStatsCtx spanstats, PetscInt deg… in SpanwiseStatisticssCreateDM() 177 static PetscErrorCode SpanwiseStatisticsSetupDataCreate(Honee honee, SpanStatsCtx spanstats, SpanSt… in SpanwiseStatisticsSetupDataCreate() 238 static PetscErrorCode SpanwiseStatisticsCreateSF(Honee honee, SpanStatsCtx spanstats, SpanStatsSetu… in SpanwiseStatisticsCreateSF() 291 static PetscErrorCode SpanwiseStatisticsSetupL2Projection(Honee honee, SpanStatsCtx spanstats, Span… in SpanwiseStatisticsSetupL2Projection() 354 PetscErrorCode SpanwiseStatisticsSetupInitialize(Honee honee, PetscInt degree, PetscInt num_comps, … in SpanwiseStatisticsSetupInitialize() 383 PetscErrorCode SpanwiseStatisticsSetupFinalize(TS ts, Honee honee, SpanStatsCtx spanstats, PetscVie… in SpanwiseStatisticsSetupFinalize() 404 PetscErrorCode SpanwiseStatisticsCollect(Honee honee, SpanStatsCtx spanstats, PetscScalar solution_… in SpanwiseStatisticsCollect() 423 PetscErrorCode SpanwiseStatisticsProcess(Honee honee, SpanStatsCtx spanstats, Vec stats) { in SpanwiseStatisticsProcess()
|
| H A D | turbulence.c | 17 static PetscErrorCode CreateStatisticCollectionOperator(Honee honee, SpanStatsCtx spanstats, SpanSt… in CreateStatisticCollectionOperator() 110 static PetscErrorCode SetupMMSErrorChecking(Honee honee, SpanStatsCtx spanstats, SpanStatsSetupData… in SetupMMSErrorChecking() 150 Honee honee; in SpanwiseStatisticsSetup_Turbulence() 210 Honee honee; in TSMonitor_SpanwiseStatisticsTurbulence()
|
| /honee/ |
| H A D | CHANGELOG.md | 34 …er()`, `HoneeGetContainer()`, and `HoneeHasContainer()` for adding misc structs to a `Honee` object 40 - Move `Honee` typedef to `include/honee.h` 42 - Convert `Honee` to a `PetscObject`
|