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)
77 …#Create the Q-function that builds the mass+diffusion operator ( i.e it computes the quadrature da…
122 # Create the Q-function that defines the action of the mass+diffusion operator.
129 (v, :out, EVAL_INTERP),
132 # Apply mass: v = qdata[1] * u
133 v .= qdata[1].*u
146 mat_idx = idx + div((j - 1)*j, 2) + (i - 1)
148 mat_idx = idx + div((i - 1)*i, 2) + (j - 1)
165 (:v, sol_rstr, sol_basis, CeedVectorActive()),
173 # Create auxiliary solution-size vectors.
175 v = CeedVector(ceed, sol_size)
178 # Apply the mass+diffusion operator: 'u' -> 'v'.
179 apply!(oper, u, v)
180 # Compute and print the sum of the entries of 'v' giving the mesh volume.
181 vol = witharray_read(sum, v, MEM_HOST)
186 @printf("Volume error : % .14g\n", vol - exact_vol)
196 prob_size=-1,