Home
last modified time | relevance | path

Searched refs:solution_degree (Results 1 – 17 of 17) sorted by relevance

/libCEED/examples/python/
H A Dex_test.py23 solution_degree=4,
40 solution_degree=4,
57 solution_degree=4,
74 solution_degree=4,
91 solution_degree=4,
108 solution_degree=4,
124 solution_degree=4,
141 solution_degree=4,
158 solution_degree=4,
175 solution_degree=4,
[all …]
H A Dex3_volume.py41 mesh_degree = max(args.mesh_degree, args.solution_degree)
42 sol_degree = args.solution_degree
H A Dex1_volume.py41 mesh_degree = max(args.mesh_degree, args.solution_degree)
42 sol_degree = args.solution_degree
H A Dex2_surface.py42 mesh_degree = max(args.mesh_degree, args.solution_degree)
43 sol_degree = args.solution_degree
/libCEED/examples/rust/ex1-volume/src/
H A Dmain.rs44 solution_degree, in example_1()
53 assert!(solution_degree >= 1); in example_1()
72 println!(" Solution degree [-p] : {}", solution_degree); in example_1()
95 solution_degree + 1, in example_1()
101 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_1()
118 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, 1, num_qpts)?; in example_1()
294 solution_degree: 4, in example_1_1d()
310 solution_degree: 4, in example_1_2d()
326 solution_degree: 4, in example_1_3d()
342 solution_degree: 4, in example_1_1d_gallery()
[all …]
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/ex1-volume-vector/src/
H A Dmain.rs45 solution_degree, in example_1_vector()
54 assert!(solution_degree >= 1); in example_1_vector()
74 println!(" Solution degree [-p] : {}", solution_degree); in example_1_vector()
97 solution_degree + 1, in example_1_vector()
103 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_1_vector()
120 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, 1, num_qpts)?; in example_1_vector()
122 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, ncomp_u, num_qpts)?; in example_1_vector()
312 solution_degree: 4, in example_1_vector_1d()
328 solution_degree: 4, in example_1_vector_2d()
344 solution_degree: 4, in example_1_vector_3d()
[all …]
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/ex2-surface/src/
H A Dmain.rs45 solution_degree, in example_2()
54 assert!(solution_degree >= 1); in example_2()
73 println!(" Solution degree [-p] : {}", solution_degree); in example_2()
96 solution_degree + 1, in example_2()
102 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_2()
122 solution_degree, in example_2()
127 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, 1, num_qpts)?; in example_2()
372 solution_degree: 4, in example_2_1d()
388 solution_degree: 4, in example_2_2d()
404 solution_degree: 4, in example_2_3d()
[all …]
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/ex2-surface-vector/src/
H A Dmain.rs46 solution_degree, in example_2_vector()
55 assert!(solution_degree >= 1); in example_2_vector()
75 println!(" Solution degree [-p] : {}", solution_degree); in example_2_vector()
98 solution_degree + 1, in example_2_vector()
104 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_2_vector()
124 solution_degree, in example_2_vector()
130 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, ncomp_u, num_qpts)?; in example_2_vector()
403 solution_degree: 4, in example_2_vector_1d()
419 solution_degree: 4, in example_2_vector_2d()
435 solution_degree: 4, in example_2_vector_3d()
[all …]
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/ex3-volume/src/
H A Dmain.rs44 solution_degree, in example_3()
52 assert!(solution_degree >= 1); in example_3()
71 println!(" Solution degree [-p] : {}", solution_degree); in example_3()
91 solution_degree + 1, in example_3()
97 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_3()
117 solution_degree, in example_3()
122 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, 1, num_qpts)?; in example_3()
375 solution_degree: 4, in example_3_1d()
390 solution_degree: 4, in example_3_2d()
405 solution_degree: 4, in example_3_3d()
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/ex3-volume-vector/src/
H A Dmain.rs45 solution_degree, in example_3_vector()
53 assert!(solution_degree >= 1); in example_3_vector()
73 println!(" Solution degree [-p] : {}", solution_degree); in example_3_vector()
93 solution_degree + 1, in example_3_vector()
99 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_3_vector()
119 solution_degree, in example_3_vector()
124 mesh::build_cartesian_restriction(&ceed, dim, num_xyz, solution_degree, ncomp_u, num_qpts)?; in example_3_vector()
398 solution_degree: 4, in example_3_vector_1d()
413 solution_degree: 4, in example_3_vector_2d()
428 solution_degree: 4, in example_3_vector_vector_3d()
H A Dopt.rs30 pub(crate) solution_degree: usize, field
/libCEED/examples/rust/mesh/src/
H A Dlib.rs14 pub fn cartesian_mesh_size(dim: usize, solution_degree: usize, problem_size: i64) -> [usize; 3] { in cartesian_mesh_size()
17 let mut num_elem = problem_size / solution_degree.pow(dim as u32) as i64;