Home
last modified time | relevance | path

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

/libCEED/examples/deal.II/
H A Dbps-kokkos.h41 template <int dim, int fe_degree, int n_q_points_1d, int n_components, typename Number>
46 operator()(Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, n_components, Number> *fe_eval, in operator()
55 template <int dim, int fe_degree, int n_q_points_1d, int n_components, typename Number>
60 operator()(Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, n_components, Number> *fe_eval, in operator()
69 template <int dim, int fe_degree, int n_q_points_1d, int n_components, typename Number>
78 Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, n_components, Number> fe_eval(data); in operator()
82 OperatorDealiiMassQuad<dim, fe_degree, n_q_points_1d, n_components, Number>()); in operator()
87 static const unsigned int n_local_dofs = Utilities::pow(fe_degree + 1, dim) * n_components;
93 template <int dim, int fe_degree, int n_q_points_1d, int n_components, typename Number>
102 Portable::FEEvaluation<dim, fe_degree, n_q_points_1d, n_components, Number> fe_eval(data); in operator()
[all …]
H A Dbps.h58 BPInfo(const BPType type, const int dim, const int fe_degree) in BPInfo()
61 , fe_degree(fe_degree) in BPInfo()
76 this->n_q_points_1d = (type <= BPType::BP4) ? (fe_degree + 2) : (fe_degree + 1); in BPInfo()
86 unsigned int fe_degree; member
H A Dbps-kokkos.cc63 unsigned int fe_degree = 2; member
114 fe_degree = std::atoi(argv[1]); in parse()
157 const unsigned int fe_degree = params.fe_degree; in main() local
158 const unsigned int n_q_points = (bp <= BPType::BP4) ? (fe_degree + 2) : (fe_degree + 1); in main()
166 FESystem<dim> fe(FE_Q<dim>(fe_degree), n_components); in main()
H A Dbps-cpu.cc63 unsigned int fe_degree = 2; member
114 fe_degree = std::atoi(argv[1]); in parse()
157 const unsigned int fe_degree = params.fe_degree; in main() local
158 const unsigned int n_q_points = (bp <= BPType::BP4) ? (fe_degree + 2) : (fe_degree + 1); in main()
166 FESystem<dim> fe(FE_Q<dim>(fe_degree), n_components); in main()
H A Dbps-ceed.h119 const unsigned int fe_degree = fe.tensor_degree(); in reinit() local
132 for (unsigned int j = 0; j < fe_degree + 1; ++j) in reinit()
134 interp_1d[j + i * (fe_degree + 1)] = shape_data.shape_values[j * n_q_points + i]; in reinit()
135 grad_1d[j + i * (fe_degree + 1)] = shape_data.shape_gradients[j * n_q_points + i]; in reinit()
141 fe_degree + 1, in reinit()
166 const auto dof_mapping = FETools::lexicographic_to_hierarchic_numbering<dim>(fe_degree); in reinit()
443 const unsigned int fe_degree = mapping_q->get_degree(); in compute_metric_data() local
445 FE_Q<dim> geo_fe(fe_degree); in compute_metric_data()
460 for (unsigned int j = 0; j < fe_degree + 1; ++j) in compute_metric_data()
462 interp_1d[j + i * (fe_degree + 1)] = shape_data.shape_values[j * n_q_points + i]; in compute_metric_data()
[all …]