| /libCEED/examples/python/ |
| H A D | ex_test.py | 22 mesh_degree=4, 39 mesh_degree=4, 56 mesh_degree=4, 73 mesh_degree=4, 90 mesh_degree=4, 107 mesh_degree=4, 123 mesh_degree=4, 140 mesh_degree=4, 157 mesh_degree=4, 174 mesh_degree=4, [all …]
|
| H A D | ex3_volume.py | 41 mesh_degree = max(args.mesh_degree, args.solution_degree) 69 dim, ncomp_x, mesh_degree + 1, num_qpts, libceed.GAUSS) 89 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 99 common.set_cartesian_mesh_coords(ceed, dim, num_xyz, mesh_degree, mesh_coords)
|
| H A D | ex1_volume.py | 41 mesh_degree = max(args.mesh_degree, args.solution_degree) 64 dim, ncomp_x, mesh_degree + 1, num_qpts, libceed.GAUSS) 84 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 94 common.set_cartesian_mesh_coords(ceed, dim, num_xyz, mesh_degree, mesh_coords)
|
| H A D | ex2_surface.py | 42 mesh_degree = max(args.mesh_degree, args.solution_degree) 65 dim, ncomp_x, mesh_degree + 1, num_qpts, libceed.GAUSS) 85 ceed, dim, num_xyz, mesh_degree, ncomp_x, num_q_comp, num_qpts, create_qdata=False) 95 common.set_cartesian_mesh_coords(ceed, dim, num_xyz, mesh_degree, mesh_coords)
|
| H A D | ex_common.py | 156 def set_cartesian_mesh_coords(ceed, dim, num_xyz, mesh_degree, mesh_coords): argument 169 p = mesh_degree + 1
|
| /libCEED/examples/rust/ex1-volume/src/ |
| H A D | main.rs | 43 mesh_degree, in example_1() 52 assert!(mesh_degree >= 1); in example_1() 71 println!(" Mesh degree [-m] : {}", mesh_degree); in example_1() 88 mesh_degree + 1, in example_1() 116 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_1() 127 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_1() 293 mesh_degree: 4, in example_1_1d() 309 mesh_degree: 4, in example_1_2d() 325 mesh_degree: 4, in example_1_3d() 341 mesh_degree: 4, in example_1_1d_gallery() [all …]
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/rust/ex1-volume-vector/src/ |
| H A D | main.rs | 44 mesh_degree, in example_1_vector() 53 assert!(mesh_degree >= 1); in example_1_vector() 73 println!(" Mesh degree [-m] : {}", mesh_degree); in example_1_vector() 90 mesh_degree + 1, in example_1_vector() 118 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_1_vector() 131 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_1_vector() 311 mesh_degree: 4, in example_1_vector_1d() 327 mesh_degree: 4, in example_1_vector_2d() 343 mesh_degree: 4, in example_1_vector_3d() 359 mesh_degree: 4, in example_1_vector_1d_gallery() [all …]
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/rust/ex2-surface/src/ |
| H A D | main.rs | 44 mesh_degree, in example_2() 53 assert!(mesh_degree >= 1); in example_2() 72 println!(" Mesh degree [-m] : {}", mesh_degree); in example_2() 89 mesh_degree + 1, in example_2() 117 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_2() 136 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_2() 371 mesh_degree: 4, in example_2_1d() 387 mesh_degree: 4, in example_2_2d() 403 mesh_degree: 4, in example_2_3d() 419 mesh_degree: 4, in example_2_1d_gallery() [all …]
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/ceed/ |
| H A D | ex2-surface.c | 51 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[3], CeedInt mesh_degree, CeedVector … 59 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main() local 77 parse_error = next_arg ? mesh_degree = atoi(argv[++ia]), 0 : 1; in main() 100 mesh_degree = fmax(mesh_degree, sol_degree); in main() 101 sol_degree = mesh_degree; in main() 109 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main() 130 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 151 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 165 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main() 389 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[3], CeedInt mesh_degree, CeedVector mesh_co… in SetCartesianMeshCoords() argument [all …]
|
| H A D | ex1-volume-f.f90 | 199 integer mesh_degree local 214 p = mesh_degree + 1 258 integer fe_dim, num_comp_x, mesh_degree, sol_degree, num_qpts variable 285 mesh_degree = 4 287 num_qpts = mesh_degree + 2 315 read(arg_value, '(I10)') mesh_degree 356 write (*, *) ' Mesh degree [-m] : ', mesh_degree 379 …call ceedbasiscreatetensorh1lagrange(ceed, fe_dim, num_comp_x, mesh_degree + 1, num_qpts, ceed_gau… 399 …call buildcartesianrestriction(ceed, fe_dim, num_xyz, mesh_degree, num_comp_x, mesh_size, num_qpts… 414 call setcartesianmeshcoords(fe_dim, num_xyz, mesh_degree, mesh_coords, exact_volume, err)
|
| H A D | ex3-volume.c | 50 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVecto… 58 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main() local 76 parse_error = next_arg ? mesh_degree = atoi(argv[++ia]), 0 : 1; in main() 102 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main() 123 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 143 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 157 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main() 356 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_… in SetCartesianMeshCoords() argument 357 CeedInt p = mesh_degree + 1; in SetCartesianMeshCoords()
|
| H A D | ex1-volume.c | 51 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVecto… 59 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main() local 77 parse_error = next_arg ? mesh_degree = atoi(argv[++ia]), 0 : 1; in main() 105 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main() 126 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 146 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 159 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main() 365 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_… in SetCartesianMeshCoords() argument 366 CeedInt p = mesh_degree + 1; in SetCartesianMeshCoords()
|
| /libCEED/examples/rust/ex2-surface-vector/src/ |
| H A D | main.rs | 45 mesh_degree, in example_2_vector() 54 assert!(mesh_degree >= 1); in example_2_vector() 74 println!(" Mesh degree [-m] : {}", mesh_degree); in example_2_vector() 91 mesh_degree + 1, in example_2_vector() 119 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_2_vector() 139 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_2_vector() 402 mesh_degree: 4, in example_2_vector_1d() 418 mesh_degree: 4, in example_2_vector_2d() 434 mesh_degree: 4, in example_2_vector_3d() 450 mesh_degree: 4, in example_2_vector_1d_gallery() [all …]
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/rust/ex3-volume/src/ |
| H A D | main.rs | 43 mesh_degree, in example_3() 51 assert!(mesh_degree >= 1); in example_3() 70 println!(" Mesh degree [-m] : {}", mesh_degree); in example_3() 84 mesh_degree + 1, in example_3() 112 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_3() 131 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_3() 374 mesh_degree: 4, in example_3_1d() 389 mesh_degree: 4, in example_3_2d() 404 mesh_degree: 4, in example_3_3d()
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/rust/ex3-volume-vector/src/ |
| H A D | main.rs | 44 mesh_degree, in example_3_vector() 52 assert!(mesh_degree >= 1); in example_3_vector() 72 println!(" Mesh degree [-m] : {}", mesh_degree); in example_3_vector() 86 mesh_degree + 1, in example_3_vector() 114 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, mesh_degree, ncomp_x, num_qpts)?; in example_3_vector() 133 let mut mesh_coords = mesh::cartesian_mesh_coords(&ceed, dim, num_xyz, mesh_degree, mesh_size)?; in example_3_vector() 397 mesh_degree: 4, in example_3_vector_1d() 412 mesh_degree: 4, in example_3_vector_2d() 427 mesh_degree: 4, in example_3_vector_vector_3d()
|
| H A D | opt.rs | 27 pub(crate) mesh_degree: usize, field
|
| /libCEED/examples/rust-qfunctions/ |
| H A D | ex1-volume.c | 52 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVecto… 60 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main() local 78 parse_error = next_arg ? mesh_degree = atoi(argv[++ia]), 0 : 1; in main() 106 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main() 136 …CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, mesh_degree + 1, num_qpts, CEED_GAUSS, &mes… in main() 156 …BuildCartesianRestriction(ceed, dim, num_xyz, mesh_degree, num_comp_x, &mesh_size, num_qpts, &mesh… in main() 169 SetCartesianMeshCoords(dim, num_xyz, mesh_degree, mesh_coords); in main() 375 int SetCartesianMeshCoords(CeedInt dim, CeedInt num_xyz[dim], CeedInt mesh_degree, CeedVector mesh_… in SetCartesianMeshCoords() argument 376 CeedInt p = mesh_degree + 1; in SetCartesianMeshCoords()
|
| /libCEED/examples/rust/mesh/src/ |
| H A D | lib.rs | 120 mesh_degree: usize, 123 let p = mesh_degree + 1;
|