| /libCEED/tests/ |
| H A D | t322-basis-f.f90 | 19 integer input,output,weights variable 66 call ceedvectorcreate(ceed,q,weights,err) 67 call ceedvectorsetvalue(weights,0.d0,err) 72 & ceed_vector_none,weights,err) 75 call ceedvectorgetarrayread(weights,ceed_mem_host,wweights,offset2,err) 81 call ceedvectorrestorearrayread(weights,wweights,offset2,err) 92 call ceedvectordestroy(weights,err)
|
| /libCEED/python/tests/output/ |
| H A D | test_523.out | 7 Name: "weights" 9 EvalMode: quadrature weights 27 Name: "weights" 29 EvalMode: quadrature weights
|
| H A D | test_413.out | 8 Name: "weights" 10 EvalMode: "quadrature weights"
|
| H A D | test_504.out | 6 Name: "weights" 8 EvalMode: quadrature weights
|
| H A D | test_402.out | 6 EvalMode: "quadrature weights"
|
| /libCEED/tests/output/ |
| H A D | t413-qfunction-f.out | 8 Name: "weights" 10 EvalMode: "quadrature weights"
|
| H A D | t413-qfunction.out | 8 Name: "weights" 10 EvalMode: "quadrature weights"
|
| H A D | t523-operator-f.out | 9 EvalMode: quadrature weights 29 EvalMode: quadrature weights
|
| H A D | t523-operator.out | 12 EvalMode: quadrature weights 32 EvalMode: quadrature weights
|
| H A D | t504-operator-f.out | 8 EvalMode: quadrature weights
|
| H A D | t402-qfunction-f.out | 6 EvalMode: "quadrature weights"
|
| H A D | t504-operator.out | 9 EvalMode: quadrature weights
|
| H A D | t402-qfunction.out | 6 EvalMode: "quadrature weights"
|
| /libCEED/examples/rust/ex3-volume/src/ |
| H A D | main.rs | 138 let build_mass_diff = move |[jacobian, weights, ..]: QFunctionInputs, in example_3() 146 qdata[i + q * 0] = weights[i] * jacobian[i]; in example_3() 148 qdata[i + q * 1] = weights[i] / jacobian[i]; in example_3() 159 qdata[i + q * 0] = weights[i] * (j11 * j22 - j21 * j12); in example_3() 161 let qw = weights[i] / (j11 * j22 - j21 * j12); in example_3() 180 qdata[i + q * 0] = weights[i] in example_3() 184 let qw = weights[i] in example_3()
|
| /libCEED/examples/rust/ex3-volume-vector/src/ |
| H A D | main.rs | 140 let build_mass_diff = move |[jacobian, weights, ..]: QFunctionInputs, in example_3_vector() 148 qdata[i + q * 0] = weights[i] * jacobian[i]; in example_3_vector() 150 qdata[i + q * 1] = weights[i] / jacobian[i]; in example_3_vector() 161 qdata[i + q * 0] = weights[i] * (j11 * j22 - j21 * j12); in example_3_vector() 163 let qw = weights[i] / (j11 * j22 - j21 * j12); in example_3_vector() 182 qdata[i + q * 0] = weights[i] in example_3_vector() 186 let qw = weights[i] in example_3_vector()
|
| /libCEED/examples/rust/ex1-volume/src/ |
| H A D | main.rs | 134 let build_mass = move |[jacobian, weights, ..]: QFunctionInputs, in example_1() 140 .zip(jacobian.iter().zip(weights.iter())) in example_1() 144 qdata.iter_mut().zip(weights.iter()).enumerate().for_each( in example_1() 154 qdata.iter_mut().zip(weights.iter()).enumerate().for_each( in example_1()
|
| /libCEED/examples/rust/ex1-volume-vector/src/ |
| H A D | main.rs | 138 let build_mass = move |[jacobian, weights, ..]: QFunctionInputs, in example_1_vector() 144 .zip(jacobian.iter().zip(weights.iter())) in example_1_vector() 148 qdata.iter_mut().zip(weights.iter()).enumerate().for_each( in example_1_vector() 158 qdata.iter_mut().zip(weights.iter()).enumerate().for_each( in example_1_vector()
|
| /libCEED/julia/LibCEED.jl/examples/ |
| H A D | ex3-volume.jl | 82 (weights, :in, EVAL_WEIGHT), # ← weights input 89 qdata[1] = weights*det_J 108 (:weights, ElemRestrictionNone(), mesh_basis, CeedVectorNone()),
|
| H A D | ex1-volume-c.jl | 18 # in[1] is quadrature weights, size (Q) 296 C.CeedQFunctionAddInput(build_qfunc[], "weights", 1, C.CEED_EVAL_WEIGHT) 323 "weights",
|
| /libCEED/examples/rust/ex2-surface/src/ |
| H A D | main.rs | 143 let build_diff = move |[jacobian, weights, ..]: QFunctionInputs, in example_2() 149 .zip(jacobian.iter().zip(weights.iter())) in example_2() 158 let qw = weights[i] / (j11 * j22 - j21 * j12); in example_2() 176 let qw = weights[i] in example_2()
|
| /libCEED/examples/rust/ex2-surface-vector/src/ |
| H A D | main.rs | 146 let build_diff = move |[jacobian, weights, ..]: QFunctionInputs, in example_2_vector() 152 .zip(jacobian.iter().zip(weights.iter())) in example_2_vector() 161 let qw = weights[i] / (j11 * j22 - j21 * j12); in example_2_vector() 179 let qw = weights[i] in example_2_vector()
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Quadrature.jl | 26 If `mode` is `AbscissaAndWeights`, then both the weights and abscissa are returned as a
|
| H A D | Basis.jl | 76 - `qweight1d`: Array of length `q` holding the quadrature weights on the reference element. 131 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference 189 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference 247 - `qweight`: Array of length `nqpts` holding the quadrature weights on the reference 305 - `CEED_EVAL_WEIGHT` to use quadrature weights. 450 Get the quadrature weights of quadrature points (in `dim` dimensions) of the given
|
| /libCEED/examples/ |
| H A D | notation.md | 5 …GLL) points, and quadrature points $\{q_i\}_{i=1}^Q$, with corresponding weights $\{w_i\}_{i=1}^Q$…
|
| /libCEED/examples/ceed/ |
| H A D | ex1-volume-f.h | 7 ! w is quadrature weights with shape [1, Q]
|