1*b8edc0e7SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2*b8edc0e7SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3*b8edc0e7SJeremy L Thompson // 4*b8edc0e7SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 5*b8edc0e7SJeremy L Thompson // 6*b8edc0e7SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 7*b8edc0e7SJeremy L Thompson 8*b8edc0e7SJeremy L Thompson CEED_QFUNCTION(setup)(void *ctx, const CeedInt Q, 9*b8edc0e7SJeremy L Thompson const CeedScalar *const *in, 10*b8edc0e7SJeremy L Thompson CeedScalar *const *out) { 11*b8edc0e7SJeremy L Thompson const CeedScalar *weight = in[0], *J = in[1]; 12*b8edc0e7SJeremy L Thompson CeedScalar *rho = out[0]; 13*b8edc0e7SJeremy L Thompson for (CeedInt i=0; i<Q; i++) { 14*b8edc0e7SJeremy L Thompson rho[i] = weight[i] * (J[i+Q*0]*J[i+Q*3] - J[i+Q*1]*J[i+Q*2]); 15*b8edc0e7SJeremy L Thompson } 16*b8edc0e7SJeremy L Thompson return 0; 17*b8edc0e7SJeremy L Thompson } 18*b8edc0e7SJeremy L Thompson 19*b8edc0e7SJeremy L Thompson CEED_QFUNCTION(mass)(void *ctx, const CeedInt Q, const CeedScalar *const *in, 20*b8edc0e7SJeremy L Thompson CeedScalar *const *out) { 21*b8edc0e7SJeremy L Thompson const CeedScalar *rho = in[0], *u = in[1]; 22*b8edc0e7SJeremy L Thompson CeedScalar *v = out[0]; 23*b8edc0e7SJeremy L Thompson 24*b8edc0e7SJeremy L Thompson const CeedScalar scale[2][2] = { 25*b8edc0e7SJeremy L Thompson {1.0, 2.0}, 26*b8edc0e7SJeremy L Thompson {3.0, 4.0}, 27*b8edc0e7SJeremy L Thompson }; 28*b8edc0e7SJeremy L Thompson 29*b8edc0e7SJeremy L Thompson for (CeedInt i = 0; i < Q; i++) { 30*b8edc0e7SJeremy L Thompson for (CeedInt c_out = 0; c_out < 2; c_out++) { 31*b8edc0e7SJeremy L Thompson v[i+Q*c_out] = 0.0; 32*b8edc0e7SJeremy L Thompson for (CeedInt c_in = 0; c_in < 2; c_in++) { 33*b8edc0e7SJeremy L Thompson v[i+Q*c_out] += rho[i] * u[i+Q*c_in] * scale[c_in][c_out]; 34*b8edc0e7SJeremy L Thompson } 35*b8edc0e7SJeremy L Thompson } 36*b8edc0e7SJeremy L Thompson } 37*b8edc0e7SJeremy L Thompson return 0; 38*b8edc0e7SJeremy L Thompson } 39