Searched refs:n_coefficients_per_direction (Results 1 – 5 of 5) sorted by relevance
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/fe/ |
H A D | fe_series_legendre.cc | 111 const std::vector<unsigned int> & n_coefficients_per_direction, in ensure_existence() argument 122 n_coefficients_per_direction[fe], in ensure_existence() 205 : n_coefficients_per_direction(n_coefficients_per_direction) in Legendre() 216 *std::max_element(n_coefficients_per_direction.cbegin(), in Legendre() 217 n_coefficients_per_direction.cend()); in Legendre() 231 n_coefficients_per_direction), in Legendre() 244 (n_coefficients_per_direction == legendre.n_coefficients_per_direction) && in operator ==() 259 ensure_existence(n_coefficients_per_direction, in precalculate_all_transformation_matrices() 276 return n_coefficients_per_direction[index]; in get_n_coefficients_per_direction() 293 ensure_existence(n_coefficients_per_direction, in calculate() [all …]
|
H A D | fe_series_fourier.cc | 101 n_coefficients_per_direction[fe], in ensure_existence() 126 Utilities::fixed_power<2>(n_coefficients_per_direction[fe]), in ensure_existence() 183 : n_coefficients_per_direction(n_coefficients_per_direction) in Fourier() 193 *std::max_element(n_coefficients_per_direction.cbegin(), in Fourier() 194 n_coefficients_per_direction.cend()); in Fourier() 210 n_coefficients_per_direction), in Fourier() 223 (n_coefficients_per_direction == fourier.n_coefficients_per_direction) && in operator ==() 239 ensure_existence(n_coefficients_per_direction, in precalculate_all_transformation_matrices() 257 return n_coefficients_per_direction[index]; in get_n_coefficients_per_direction() 274 ensure_existence(n_coefficients_per_direction, in calculate() [all …]
|
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/fe/ |
H A D | fe_series.h | 100 Fourier(const std::vector<unsigned int> & n_coefficients_per_direction, 114 Fourier(const unsigned int n_coefficients_per_direction, 181 const std::vector<unsigned int> n_coefficients_per_direction; 266 Legendre(const std::vector<unsigned int> &n_coefficients_per_direction, 279 Legendre(const unsigned int n_coefficients_per_direction, 346 const std::vector<unsigned int> n_coefficients_per_direction; 600 ar &n_coefficients_per_direction; in save_transformation_matrices() local 632 Assert(compare_coefficients == n_coefficients_per_direction, in load_transformation_matrices() 678 ar &n_coefficients_per_direction; in save_transformation_matrices() local 710 Assert(compare_coefficients == n_coefficients_per_direction, in load_transformation_matrices()
|
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/numerics/ |
H A D | smoothness_estimator.cc | 293 std::vector<unsigned int> n_coefficients_per_direction; in default_fe_series() local 295 n_coefficients_per_direction.push_back(fe_collection[i].degree + 1); in default_fe_series() 315 const QGauss<dim> quadrature(n_coefficients_per_direction[i]); in default_fe_series() 320 return FESeries::Legendre<dim, spacedim>(n_coefficients_per_direction, in default_fe_series() 576 std::vector<unsigned int> n_coefficients_per_direction; in default_fe_series() local 578 n_coefficients_per_direction.push_back( in default_fe_series() 600 n_coefficients_per_direction[i] - 1); in default_fe_series() 605 return FESeries::Fourier<dim, spacedim>(n_coefficients_per_direction, in default_fe_series()
|
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-27/ |
H A D | step-27.cc | 233 const std::vector<unsigned int> n_coefficients_per_direction( in LaplaceProblem() local 236 std::make_unique<FESeries::Fourier<dim>>(n_coefficients_per_direction, in LaplaceProblem()
|