Home
last modified time | relevance | path

Searched refs:apply_mass_diff (Results 1 – 6 of 6) sorted by relevance

/libCEED/examples/rust/ex3-volume/src/
H A Dmain.rs251 let apply_mass_diff = move |[u, ug, qdata, ..]: QFunctionInputs, in example_3() localVariable
306 .q_function_interior(1, Box::new(apply_mass_diff))? in example_3()
/libCEED/examples/python/
H A Dex3_volume.py131 qf_apply = ceed.QFunction(1, qfs_so.apply_mass_diff,
/libCEED/examples/rust/ex3-volume-vector/src/
H A Dmain.rs253 let apply_mass_diff = move |[u, ug, qdata, ..]: QFunctionInputs, in example_3_vector() localVariable
319 .q_function_interior(1, Box::new(apply_mass_diff))? in example_3_vector()
/libCEED/examples/python/qfunctions/
H A Dex3-volume.h92 CEED_QFUNCTION(apply_mass_diff)(void *ctx, const CeedInt Q, const CeedScalar *const *in, CeedScalar… in apply_mass_diff() function
/libCEED/examples/ceed/
H A Dex3-volume.h99 CEED_QFUNCTION(apply_mass_diff)(void *ctx, const CeedInt Q, const CeedScalar *const *in, CeedScalar… in apply_mass_diff() function
H A Dex3-volume.c199 CeedQFunctionCreateInterior(ceed, 1, apply_mass_diff, apply_mass_diff_loc, &qf_apply); in main()