Lines Matching refs:ds
58 …ER CeedScalar TotalSpecificEnthalpy_fwd(NewtonianIGProperties gas, const State s, const State ds) { in TotalSpecificEnthalpy_fwd() argument
59 CeedScalar de_kinetic = Dot3(ds.Y.velocity, s.Y.velocity); in TotalSpecificEnthalpy_fwd()
60 CeedScalar de_internal = gas.cv * ds.Y.temperature; in TotalSpecificEnthalpy_fwd()
61 …return de_internal + de_kinetic + ds.Y.pressure / s.U.density - s.Y.pressure / Square(s.U.density)… in TotalSpecificEnthalpy_fwd()
256 State ds; in StateFromPrimitive_fwd() local
257 ds.U = dU; in StateFromPrimitive_fwd()
258 ds.Y = dY; in StateFromPrimitive_fwd()
259 return ds; in StateFromPrimitive_fwd()
335 State ds; in StateFromU_fwd() local
336 ds.U.density = dU[0]; in StateFromU_fwd()
337 ds.U.momentum[0] = dU[1]; in StateFromU_fwd()
338 ds.U.momentum[1] = dU[2]; in StateFromU_fwd()
339 ds.U.momentum[2] = dU[3]; in StateFromU_fwd()
340 ds.U.E_total = dU[4]; in StateFromU_fwd()
341 ds.Y = StatePrimitiveFromConservative_fwd(gas, s, ds.U); in StateFromU_fwd()
342 return ds; in StateFromU_fwd()
357 State ds; in StateFromY_fwd() local
358 ds.Y.pressure = dY[0]; in StateFromY_fwd()
359 ds.Y.velocity[0] = dY[1]; in StateFromY_fwd()
360 ds.Y.velocity[1] = dY[2]; in StateFromY_fwd()
361 ds.Y.velocity[2] = dY[3]; in StateFromY_fwd()
362 ds.Y.temperature = dY[4]; in StateFromY_fwd()
363 ds.U = StateConservativeFromPrimitive_fwd(gas, s, ds.Y); in StateFromY_fwd()
364 return ds; in StateFromY_fwd()
381 State ds; in StateFromV_fwd() local
388 ds.U = StateConservativeFromEntropy_fwd(gas, s, state_dV); in StateFromV_fwd()
389 ds.Y = StatePrimitiveFromEntropy_fwd(gas, s, state_dV); in StateFromV_fwd()
390 return ds; in StateFromV_fwd()
410 State ds; in StateFromQ_fwd() local
413 ds = StateFromU_fwd(gas, s, dQ); in StateFromQ_fwd()
416 ds = StateFromY_fwd(gas, s, dQ); in StateFromQ_fwd()
419 ds = StateFromV_fwd(gas, s, dQ); in StateFromQ_fwd()
422 return ds; in StateFromQ_fwd()
433 …uxInviscid_fwd(const NewtonianIGProperties gas, const State s, const State ds, StateConservative d… in FluxInviscid_fwd() argument
435 dFlux[i].density = ds.U.momentum[i]; in FluxInviscid_fwd()
437 …dFlux[i].momentum[j] = ds.U.momentum[i] * s.Y.velocity[j] + s.U.momentum[i] * ds.Y.velocity[j] + d… in FluxInviscid_fwd()
439 …dFlux[i].E_total = (ds.U.E_total + ds.Y.pressure) * s.Y.velocity[i] + (s.U.E_total + s.Y.pressure)… in FluxInviscid_fwd()
454 …servative FluxInviscidDotNormal_fwd(const NewtonianIGProperties gas, const State s, const State ds, in FluxInviscidDotNormal_fwd() argument
457 FluxInviscid_fwd(gas, s, ds, dFlux); in FluxInviscidDotNormal_fwd()
466 …InviscidStrong(const NewtonianIGProperties gas, const State s, const State ds[3], CeedScalar stron… in FluxInviscidStrong()
470 FluxInviscid_fwd(gas, s, ds[i], dF); in FluxInviscidStrong()