Home
last modified time | relevance | path

Searched refs:is_implicit (Results 1 – 12 of 12) sorted by relevance

/libCEED/examples/fluids/qfunctions/
H A Dbc_freestream.h28 CeedScalar(*jac_data_sur) = context->newtonian_ctx.is_implicit ? out[1] : NULL; in Freestream()
31 const bool is_implicit = newt_ctx->is_implicit; in Freestream() local
39 wdetJb *= is_implicit ? -1. : 1.; in Freestream()
54 if (is_implicit) { in Freestream()
97 const bool is_implicit = newt_ctx->is_implicit; in Freestream_Jacobian() local
103 wdetJb *= is_implicit ? -1. : 1.; in Freestream_Jacobian()
183 CeedScalar(*jac_data_sur) = outflow->gas.is_implicit ? out[1] : NULL; in RiemannOutflow()
186 const bool is_implicit = gas->is_implicit; in RiemannOutflow() local
191 wdetJb *= is_implicit ? -1. : 1.; in RiemannOutflow()
222 if (is_implicit) { in RiemannOutflow()
[all …]
H A Dblasius.h137 CeedScalar(*jac_data_sur) = context->newtonian_ctx.is_implicit ? out[1] : NULL; in Blasius_Inflow()
139 const bool is_implicit = context->implicit; in Blasius_Inflow() local
150 wdetJb *= is_implicit ? -1. : 1.; in Blasius_Inflow()
181 if (is_implicit) StoredValuesPack(Q, i, 0, 11, zeros, jac_data_sur); in Blasius_Inflow()
195 const bool is_implicit = context->implicit; in Blasius_Inflow_Jacobian() local
206 wdetJb *= is_implicit ? -1. : 1.; in Blasius_Inflow_Jacobian()
H A Dbc_slip.h20 CeedScalar(*jac_data_sur) = newt_ctx->is_implicit ? out[1] : NULL; in Slip()
28 wdetJb *= newt_ctx->is_implicit ? -1. : 1.; in Slip()
42 if (newt_ctx->is_implicit) { in Slip()
75 wdetJb *= newt_ctx->is_implicit ? -1. : 1.; in Slip_Jacobian()
H A Dchannel.h93 const bool is_implicit = context->implicit; in Channel_Inflow() local
100 wdetJb *= is_implicit ? -1. : 1.; in Channel_Inflow()
154 const bool is_implicit = context->implicit; in Channel_Outflow() local
159 wdetJb *= is_implicit ? -1. : 1.; in Channel_Outflow()
H A Dstg_shur14_type.h28 …bool is_implicit; // !< Whether using implicit time integration member
H A Dnewtonian.h401 CeedScalar(*jac_data_sur) = context->is_implicit ? out[1] : NULL; in BoundaryIntegral()
403 const bool is_implicit = context->is_implicit; in BoundaryIntegral() local
411 wdetJb *= is_implicit ? -1. : 1.; in BoundaryIntegral()
430 if (is_implicit) { in BoundaryIntegral()
462 const bool is_implicit = context->is_implicit; in BoundaryIntegral_Jacobian() local
467 wdetJb *= is_implicit ? -1. : 1.; in BoundaryIntegral_Jacobian()
H A Dnewtonian_types.h39 bool is_implicit; member
H A Deulervortex.h534 const bool is_implicit = context->implicit; in TravelingVortex_Inflow() local
553 wdetJb *= is_implicit ? -1. : 1.; in TravelingVortex_Inflow()
595 const bool is_implicit = context->implicit; in Euler_Outflow() local
609 wdetJb *= is_implicit ? -1. : 1.; in Euler_Outflow()
H A Dstg_shur14.h339 const bool is_implicit = stg_ctx->is_implicit; in StgShur14Inflow() local
356 wdetJb *= is_implicit ? -1. : 1.; in StgShur14Inflow()
416 const bool implicit = stg_ctx->is_implicit; in StgShur14Inflow_Jacobian()
H A Dadvection.h519 const bool is_implicit = context->implicit; in Advection_InOutFlowGeneric() local
528 wdetJb *= is_implicit ? -1. : 1.; in Advection_InOutFlowGeneric()
/libCEED/examples/fluids/problems/
H A Dstg_shur14.c250 global_stg_ctx->is_implicit = user->phys->implicit; in SetupStg()
H A Dnewtonian.c426 newtonian_ig_ctx->is_implicit = implicit; in NS_NEWTONIAN_IG()