xref: /honee/qfunctions/channel.h (revision 704b8bbec5160b50bdbeb899c12e13fec5e0b179)
1bb8a0c61SJames Wright // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2bb8a0c61SJames Wright // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3bb8a0c61SJames Wright //
4bb8a0c61SJames Wright // SPDX-License-Identifier: BSD-2-Clause
5bb8a0c61SJames Wright //
6bb8a0c61SJames Wright // This file is part of CEED:  http://github.com/ceed
7bb8a0c61SJames Wright 
8bb8a0c61SJames Wright /// @file
9bb8a0c61SJames Wright /// Operator for Navier-Stokes example using PETSc
10bb8a0c61SJames Wright 
11bb8a0c61SJames Wright 
12bb8a0c61SJames Wright #ifndef channel_h
13bb8a0c61SJames Wright #define channel_h
14bb8a0c61SJames Wright 
15bb8a0c61SJames Wright #include <math.h>
16c58dce4fSJed Brown #include <ceed/ceed.h>
1715a3537eSJed Brown #include "newtonian_types.h"
18*704b8bbeSJames Wright #include "utils.h"
19bb8a0c61SJames Wright 
20bb8a0c61SJames Wright typedef struct ChannelContext_ *ChannelContext;
21bb8a0c61SJames Wright struct ChannelContext_ {
22bb8a0c61SJames Wright   bool       implicit; // !< Using implicit timesteping or not
23bb8a0c61SJames Wright   CeedScalar theta0;   // !< Reference temperature
24bb8a0c61SJames Wright   CeedScalar P0;       // !< Reference Pressure
25bb8a0c61SJames Wright   CeedScalar umax;     // !< Centerline velocity
26bb8a0c61SJames Wright   CeedScalar center;   // !< Y Coordinate for center of channel
27bb8a0c61SJames Wright   CeedScalar H;        // !< Channel half-height
28bb8a0c61SJames Wright   CeedScalar B;        // !< Body-force driving the flow
29bb8a0c61SJames Wright   struct NewtonianIdealGasContext_ newtonian_ctx;
30bb8a0c61SJames Wright };
31bb8a0c61SJames Wright 
32493642f1SJames Wright CEED_QFUNCTION_HELPER CeedInt Exact_Channel(CeedInt dim, CeedScalar time,
33bb8a0c61SJames Wright     const CeedScalar X[], CeedInt Nf, CeedScalar q[], void *ctx) {
34bb8a0c61SJames Wright 
35bb8a0c61SJames Wright   const ChannelContext context = (ChannelContext)ctx;
36bb8a0c61SJames Wright   const CeedScalar theta0 = context->theta0;
37bb8a0c61SJames Wright   const CeedScalar P0     = context->P0;
38bb8a0c61SJames Wright   const CeedScalar umax   = context->umax;
39bb8a0c61SJames Wright   const CeedScalar center = context->center;
40bb8a0c61SJames Wright   const CeedScalar H      = context->H;
41bb8a0c61SJames Wright   const CeedScalar cv     = context->newtonian_ctx.cv;
42bb8a0c61SJames Wright   const CeedScalar cp     = context->newtonian_ctx.cp;
43bb8a0c61SJames Wright   const CeedScalar Rd     = cp - cv;
44bb8a0c61SJames Wright   const CeedScalar mu     = context->newtonian_ctx.mu;
45bb8a0c61SJames Wright   const CeedScalar k      = context->newtonian_ctx.k;
46bb8a0c61SJames Wright 
47bb8a0c61SJames Wright   const CeedScalar y=X[1];
48bb8a0c61SJames Wright 
49bb8a0c61SJames Wright   const CeedScalar Pr    = mu / (cp*k);
50bb8a0c61SJames Wright   const CeedScalar Ec    = (umax*umax) / (cp*theta0);
51c58dce4fSJed Brown   const CeedScalar theta = theta0*(1 + (Pr*Ec/3)
52c58dce4fSJed Brown                                    * (1 - Square(Square((y-center)/H))));
53bb8a0c61SJames Wright 
54bb8a0c61SJames Wright   const CeedScalar p = P0;
55bb8a0c61SJames Wright 
56bb8a0c61SJames Wright   const CeedScalar rho = p / (Rd*theta);
57bb8a0c61SJames Wright 
58bb8a0c61SJames Wright   q[0] = rho;
59c58dce4fSJed Brown   q[1] = rho * umax*(1 - Square((y-center)/H));
60bb8a0c61SJames Wright   q[2] = 0;
61bb8a0c61SJames Wright   q[3] = 0;
62bb8a0c61SJames Wright   q[4] = rho * (cv*theta) + .5 * (q[1]*q[1] + q[2]*q[2] + q[3]*q[3]) / rho;
63bb8a0c61SJames Wright 
64bb8a0c61SJames Wright   return 0;
65bb8a0c61SJames Wright }
66bb8a0c61SJames Wright 
67bb8a0c61SJames Wright // *****************************************************************************
68bb8a0c61SJames Wright // This QFunction sets the initial condition
69bb8a0c61SJames Wright // *****************************************************************************
70bb8a0c61SJames Wright CEED_QFUNCTION(ICsChannel)(void *ctx, CeedInt Q,
71bb8a0c61SJames Wright                            const CeedScalar *const *in, CeedScalar *const *out) {
72bb8a0c61SJames Wright   // Inputs
73bb8a0c61SJames Wright   const CeedScalar (*X)[CEED_Q_VLA] = (const CeedScalar(*)[CEED_Q_VLA])in[0];
74bb8a0c61SJames Wright 
75bb8a0c61SJames Wright   // Outputs
76bb8a0c61SJames Wright   CeedScalar (*q0)[CEED_Q_VLA] = (CeedScalar(*)[CEED_Q_VLA])out[0];
77bb8a0c61SJames Wright 
78bb8a0c61SJames Wright   // Quadrature Point Loop
79bb8a0c61SJames Wright   CeedPragmaSIMD
80bb8a0c61SJames Wright   for (CeedInt i=0; i<Q; i++) {
81bb8a0c61SJames Wright     const CeedScalar x[] = {X[0][i], X[1][i], X[2][i]};
82bb8a0c61SJames Wright     CeedScalar q[5] = {0.};
83bb8a0c61SJames Wright     Exact_Channel(3, 0., x, 5, q, ctx);
84bb8a0c61SJames Wright 
85bb8a0c61SJames Wright     for (CeedInt j=0; j<5; j++)
86bb8a0c61SJames Wright       q0[j][i] = q[j];
87bb8a0c61SJames Wright   } // End of Quadrature Point Loop
88bb8a0c61SJames Wright   return 0;
89bb8a0c61SJames Wright }
90bb8a0c61SJames Wright 
91bb8a0c61SJames Wright // *****************************************************************************
92bb8a0c61SJames Wright CEED_QFUNCTION(Channel_Inflow)(void *ctx, CeedInt Q,
93bb8a0c61SJames Wright                                const CeedScalar *const *in,
94bb8a0c61SJames Wright                                CeedScalar *const *out) {
95bb8a0c61SJames Wright   // *INDENT-OFF*
96bb8a0c61SJames Wright   // Inputs
97bb8a0c61SJames Wright   const CeedScalar (*q)[CEED_Q_VLA]          = (const CeedScalar(*)[CEED_Q_VLA])in[0],
98dd64951cSJames Wright                    (*q_data_sur)[CEED_Q_VLA] = (const CeedScalar(*)[CEED_Q_VLA])in[2],
99dd64951cSJames Wright                    (*X)[CEED_Q_VLA]          = (const CeedScalar(*)[CEED_Q_VLA])in[3];
100bb8a0c61SJames Wright 
101bb8a0c61SJames Wright   // Outputs
102bb8a0c61SJames Wright   CeedScalar (*v)[CEED_Q_VLA] = (CeedScalar(*)[CEED_Q_VLA])out[0];
103bb8a0c61SJames Wright   // *INDENT-ON*
104bb8a0c61SJames Wright   const ChannelContext context = (ChannelContext)ctx;
105bb8a0c61SJames Wright   const bool implicit     = context->implicit;
106bb8a0c61SJames Wright   const CeedScalar cv     = context->newtonian_ctx.cv;
107bb8a0c61SJames Wright   const CeedScalar cp     = context->newtonian_ctx.cp;
108bb8a0c61SJames Wright   const CeedScalar gamma  = cp/cv;
109bb8a0c61SJames Wright 
110bb8a0c61SJames Wright   CeedPragmaSIMD
111bb8a0c61SJames Wright   // Quadrature Point Loop
112bb8a0c61SJames Wright   for (CeedInt i=0; i<Q; i++) {
113bb8a0c61SJames Wright     // Setup
114bb8a0c61SJames Wright     // -- Interp-to-Interp q_data
115bb8a0c61SJames Wright     // For explicit mode, the surface integral is on the RHS of ODE q_dot = f(q).
116bb8a0c61SJames Wright     // For implicit mode, it gets pulled to the LHS of implicit ODE/DAE g(q_dot, q).
117bb8a0c61SJames Wright     // We can effect this by swapping the sign on this weight
118bb8a0c61SJames Wright     const CeedScalar wdetJb  = (implicit ? -1. : 1.) * q_data_sur[0][i];
119bb8a0c61SJames Wright 
120bb8a0c61SJames Wright     // Calcualte prescribed inflow values
121bb8a0c61SJames Wright     const CeedScalar x[3] = {X[0][i], X[1][i], X[2][i]};
122bb8a0c61SJames Wright     CeedScalar q_exact[5] = {0.};
123bb8a0c61SJames Wright     Exact_Channel(3, 0., x, 5, q_exact, ctx);
124*704b8bbeSJames Wright     const CeedScalar E_kinetic_exact = 0.5*Dot3(&q_exact[1], &q_exact[1])
125*704b8bbeSJames Wright                                        / q_exact[0];
126bb8a0c61SJames Wright     const CeedScalar velocity[3] = {q_exact[1]/q_exact[0],
127bb8a0c61SJames Wright                                     q_exact[2]/q_exact[0],
128bb8a0c61SJames Wright                                     q_exact[3]/q_exact[0]
129bb8a0c61SJames Wright                                    };
130bb8a0c61SJames Wright     const CeedScalar theta = (q_exact[4] - E_kinetic_exact) / (q_exact[0]*cv);
131bb8a0c61SJames Wright 
132bb8a0c61SJames Wright     // Find pressure using state inside the domain
133bb8a0c61SJames Wright     const CeedScalar rho = q[0][i];
134bb8a0c61SJames Wright     const CeedScalar u[3] = {q[1][i]/rho, q[2][i]/rho, q[3][i]/rho};
135*704b8bbeSJames Wright     const CeedScalar E_internal = q[4][i] - .5 * rho * Dot3(u,u);
136bb8a0c61SJames Wright     const CeedScalar P = E_internal * (gamma - 1.);
137bb8a0c61SJames Wright 
138bb8a0c61SJames Wright     // Find inflow state using calculated P and prescribed velocity, theta0
139bb8a0c61SJames Wright     const CeedScalar e_internal = cv * theta;
140bb8a0c61SJames Wright     const CeedScalar rho_in = P / ((gamma - 1) * e_internal);
141*704b8bbeSJames Wright     const CeedScalar E_kinetic = .5 * rho_in * Dot3(velocity, velocity);
142bb8a0c61SJames Wright     const CeedScalar E = rho_in * e_internal + E_kinetic;
143bb8a0c61SJames Wright     // ---- Normal vect
144bb8a0c61SJames Wright     const CeedScalar norm[3] = {q_data_sur[1][i],
145bb8a0c61SJames Wright                                 q_data_sur[2][i],
146bb8a0c61SJames Wright                                 q_data_sur[3][i]
147bb8a0c61SJames Wright                                };
148bb8a0c61SJames Wright 
149bb8a0c61SJames Wright     // The Physics
150bb8a0c61SJames Wright     // Zero v so all future terms can safely sum into it
151493642f1SJames Wright     for (CeedInt j=0; j<5; j++) v[j][i] = 0.;
152bb8a0c61SJames Wright 
153*704b8bbeSJames Wright     const CeedScalar u_normal = Dot3(norm, velocity);
154bb8a0c61SJames Wright 
155bb8a0c61SJames Wright     // The Physics
156bb8a0c61SJames Wright     // -- Density
157bb8a0c61SJames Wright     v[0][i] -= wdetJb * rho_in * u_normal;
158bb8a0c61SJames Wright 
159bb8a0c61SJames Wright     // -- Momentum
160493642f1SJames Wright     for (CeedInt j=0; j<3; j++)
161bb8a0c61SJames Wright       v[j+1][i] -= wdetJb * (rho_in * u_normal * velocity[j] +
162bb8a0c61SJames Wright                              norm[j] * P);
163bb8a0c61SJames Wright 
164bb8a0c61SJames Wright     // -- Total Energy Density
165bb8a0c61SJames Wright     v[4][i] -= wdetJb * u_normal * (E + P);
166bb8a0c61SJames Wright 
167bb8a0c61SJames Wright   } // End Quadrature Point Loop
168bb8a0c61SJames Wright   return 0;
169bb8a0c61SJames Wright }
170bb8a0c61SJames Wright 
171bb8a0c61SJames Wright // *****************************************************************************
172bb8a0c61SJames Wright CEED_QFUNCTION(Channel_Outflow)(void *ctx, CeedInt Q,
173bb8a0c61SJames Wright                                 const CeedScalar *const *in,
174bb8a0c61SJames Wright                                 CeedScalar *const *out) {
175bb8a0c61SJames Wright   // *INDENT-OFF*
176bb8a0c61SJames Wright   // Inputs
177bb8a0c61SJames Wright   const CeedScalar (*q)[CEED_Q_VLA]          = (const CeedScalar(*)[CEED_Q_VLA])in[0],
178dd64951cSJames Wright                    (*q_data_sur)[CEED_Q_VLA] = (const CeedScalar(*)[CEED_Q_VLA])in[2];
179dd64951cSJames Wright 
180bb8a0c61SJames Wright   // Outputs
181bb8a0c61SJames Wright   CeedScalar (*v)[CEED_Q_VLA] = (CeedScalar(*)[CEED_Q_VLA])out[0];
182bb8a0c61SJames Wright   // *INDENT-ON*
183bb8a0c61SJames Wright 
184bb8a0c61SJames Wright   const ChannelContext context = (ChannelContext)ctx;
185bb8a0c61SJames Wright   const bool implicit     = context->implicit;
186bb8a0c61SJames Wright   const CeedScalar P0     = context->P0;
187bb8a0c61SJames Wright 
188bb8a0c61SJames Wright   CeedPragmaSIMD
189bb8a0c61SJames Wright   // Quadrature Point Loop
190bb8a0c61SJames Wright   for (CeedInt i=0; i<Q; i++) {
191bb8a0c61SJames Wright     // Setup
192bb8a0c61SJames Wright     // -- Interp in
193bb8a0c61SJames Wright     const CeedScalar rho      =  q[0][i];
194bb8a0c61SJames Wright     const CeedScalar u[3]     = {q[1][i] / rho,
195bb8a0c61SJames Wright                                  q[2][i] / rho,
196bb8a0c61SJames Wright                                  q[3][i] / rho
197bb8a0c61SJames Wright                                 };
198bb8a0c61SJames Wright     const CeedScalar E        =  q[4][i];
199bb8a0c61SJames Wright 
200bb8a0c61SJames Wright     // -- Interp-to-Interp q_data
201bb8a0c61SJames Wright     // For explicit mode, the surface integral is on the RHS of ODE q_dot = f(q).
202bb8a0c61SJames Wright     // For implicit mode, it gets pulled to the LHS of implicit ODE/DAE g(q_dot, q).
203bb8a0c61SJames Wright     // We can effect this by swapping the sign on this weight
204bb8a0c61SJames Wright     const CeedScalar wdetJb  = (implicit ? -1. : 1.) * q_data_sur[0][i];
205bb8a0c61SJames Wright 
206bb8a0c61SJames Wright     // ---- Normal vect
207bb8a0c61SJames Wright     const CeedScalar norm[3] = {q_data_sur[1][i],
208bb8a0c61SJames Wright                                 q_data_sur[2][i],
209bb8a0c61SJames Wright                                 q_data_sur[3][i]
210bb8a0c61SJames Wright                                };
211bb8a0c61SJames Wright 
212bb8a0c61SJames Wright     // The Physics
213bb8a0c61SJames Wright     // Zero v so all future terms can safely sum into it
214493642f1SJames Wright     for (CeedInt j=0; j<5; j++) v[j][i] = 0.;
215bb8a0c61SJames Wright 
216bb8a0c61SJames Wright     // Implementing outflow condition
217bb8a0c61SJames Wright     const CeedScalar P         = P0; // pressure
218*704b8bbeSJames Wright     const CeedScalar u_normal  = Dot3(norm, u); // Normal velocity
219bb8a0c61SJames Wright     // The Physics
220bb8a0c61SJames Wright     // -- Density
221bb8a0c61SJames Wright     v[0][i] -= wdetJb * rho * u_normal;
222bb8a0c61SJames Wright 
223bb8a0c61SJames Wright     // -- Momentum
224493642f1SJames Wright     for (CeedInt j=0; j<3; j++)
225bb8a0c61SJames Wright       v[j+1][i] -= wdetJb *(rho * u_normal * u[j] + norm[j] * P);
226bb8a0c61SJames Wright 
227bb8a0c61SJames Wright     // -- Total Energy Density
228bb8a0c61SJames Wright     v[4][i] -= wdetJb * u_normal * (E + P);
229bb8a0c61SJames Wright 
230bb8a0c61SJames Wright   } // End Quadrature Point Loop
231bb8a0c61SJames Wright   return 0;
232bb8a0c61SJames Wright }
233bb8a0c61SJames Wright #endif // channel_h
234