Lines Matching +full:- +full:v
10 coords[i] = 0.5 + 1.0/sqrt(3.0)*sin((2.0/3.0)*pi*(coords[i] - 0.5))
19 v = coords[i+num_nodes]
21 v = pi/2*v
22 coords[i] = u*cos(v)
23 coords[i+num_nodes] = u*sin(v)
67 # Create the Q-function that builds the mass operator (i.e. computes its
105 # Create the Q-function that defines the action of the mass operator.
111 (v, :out, EVAL_INTERP),
113 v .= qdata*u
127 (:v, sol_rstr, sol_basis, CeedVectorActive()),
134 # Create auxiliary solution-size vectors.
136 v = CeedVector(ceed, sol_size)
139 # Apply the mass operator: 'u' -> 'v'.
140 apply!(oper, u, v)
141 # Compute and print the sum of the entries of 'v' giving the mesh volume.
142 vol = witharray_read(sum, v, MEM_HOST)
147 @printf("Volume error : % .14g\n", vol - exact_vol)
156 prob_size=-1,