Home
last modified time | relevance | path

Searched refs:U_loc_size (Results 1 – 7 of 7) sorted by relevance

/libCEED/examples/solids/problems/
H A Dlinear.c39 … PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size, in SetupLibceedFineLevel_ElasLinear() argument
44 U_loc_size, force_ceed, neumann_ceed, data)); in SetupLibceedFineLevel_ElasLinear()
50 … PetscInt U_loc_size, CeedVector fine_mult, CeedData *data) { in SetupLibceedLevel_ElasLinear() argument
53 …vel(dm, ceed, app_ctx, linear_elasticity, level, num_comp_u, U_g_size, U_loc_size, fine_mult, data… in SetupLibceedLevel_ElasLinear()
H A Dfinite-strain-mooney-rivlin.c41 …PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size, CeedVector force… in SetupLibceedFineLevel_ElasFSMR() argument
46 U_g_size, U_loc_size, force_ceed, neumann_ceed, data)); in SetupLibceedFineLevel_ElasFSMR()
52 … PetscInt U_loc_size, CeedVector fine_mult, CeedData *data) { in SetupLibceedLevel_ElasFSMR() argument
55 …ed, app_ctx, finite_strain_Mooney_Rivlin, level, num_comp_u, U_g_size, U_loc_size, fine_mult, data… in SetupLibceedLevel_ElasFSMR()
H A Dfinite-strain-neo-hookean.c41 …PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size, CeedVector force… in SetupLibceedFineLevel_ElasFSNH() argument
46 U_loc_size, force_ceed, neumann_ceed, data)); in SetupLibceedFineLevel_ElasFSNH()
52 … PetscInt U_loc_size, CeedVector fine_mult, CeedData *data) { in SetupLibceedLevel_ElasFSNH() argument
55 …ceed, app_ctx, finite_strain_neo_Hookean, level, num_comp_u, U_g_size, U_loc_size, fine_mult, data… in SetupLibceedLevel_ElasFSNH()
H A Dproblems.h32 … PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size, \
/libCEED/examples/solids/include/
H A Dsetup-libceed.h32 …ata problem_data, PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size,
37 PetscInt U_loc_size, CeedVector fine_mult, CeedData *data);
/libCEED/examples/solids/src/
H A Dsetup-libceed.c126 …ata problem_data, PetscInt fine_level, PetscInt num_comp_u, PetscInt U_g_size, PetscInt U_loc_size, in SetupLibceedFineLevel() argument
203 CeedVectorCreate(ceed, U_loc_size, &data[fine_level]->x_ceed); in SetupLibceedFineLevel()
204 CeedVectorCreate(ceed, U_loc_size, &data[fine_level]->y_ceed); in SetupLibceedFineLevel()
390 CeedVectorCreate(ceed, U_loc_size, &(data[fine_level]->true_soln)); in SetupLibceedFineLevel()
410 for (CeedInt i = 0; i < U_loc_size; i++) true_array[i] /= mult_array[i]; in SetupLibceedFineLevel()
496 PetscInt U_loc_size, CeedVector fine_mult, CeedData *data) { in SetupLibceedLevel() argument
522 CeedVectorCreate(ceed, U_loc_size, &data[level]->x_ceed); in SetupLibceedLevel()
523 CeedVectorCreate(ceed, U_loc_size, &data[level]->y_ceed); in SetupLibceedLevel()
/libCEED/examples/solids/
H A Delasticity.c72 PetscInt *U_g_size, *U_l_size, *U_loc_size; in main() local
186 PetscCall(PetscMalloc1(num_levels, &U_loc_size)); in main()
199 PetscCall(VecGetSize(U_loc[level], &U_loc_size[level])); in main()
225 CeedVectorCreate(ceed, U_loc_size[fine_level], &force_ceed); in main()
237 CeedVectorCreate(ceed, U_loc_size[fine_level], &neumann_ceed); in main()
251 … U_g_size[fine_level], U_loc_size[fine_level], force_ceed, neumann_ceed, ceed_data)); in main()
273 …bceedLevel)(level_dms[level], ceed, app_ctx, level, num_comp_u, U_g_size[level], U_loc_size[level], in main()
833 PetscCall(PetscFree(U_loc_size)); in main()