Home
last modified time | relevance | path

Searched refs:add_input (Results 1 – 9 of 9) sorted by relevance

/libCEED/python/tests/
H A Dtest-4-qfunction.py48 qf_setup.add_input("w", 1, libceed.EVAL_WEIGHT)
49 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
54 qf_mass.add_input("qdata", 1, libceed.EVAL_NONE)
55 qf_mass.add_input("u", 1, libceed.EVAL_INTERP)
105 qf_setup.add_input("w", 1, libceed.EVAL_WEIGHT)
106 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
111 qf_mass.add_input("qdata", 1, libceed.EVAL_NONE)
112 qf_mass.add_input("u", 1, libceed.EVAL_INTERP)
167 qf_setup.add_input("w", 1, libceed.EVAL_WEIGHT)
168 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
[all …]
H A Dtest-5-operator.py88 qf_setup.add_input("weights", 1, libceed.EVAL_WEIGHT)
89 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
94 qf_mass.add_input("rho", 1, libceed.EVAL_NONE)
95 qf_mass.add_input("u", 1, libceed.EVAL_INTERP)
177 qf_setup.add_input("weights", 1, libceed.EVAL_WEIGHT)
178 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
183 qf_mass.add_input("rho", 1, libceed.EVAL_NONE)
184 qf_mass.add_input("u", 1, libceed.EVAL_INTERP)
267 qf_setup.add_input("weights", 1, libceed.EVAL_WEIGHT)
268 qf_setup.add_input("dx", 1, libceed.EVAL_GRAD)
[all …]
/libCEED/examples/python/
H A Dex3_volume.py115 qf_build.add_input("dx", dim * dim, libceed.EVAL_GRAD)
116 qf_build.add_input("weights", 1, libceed.EVAL_WEIGHT)
133 qf_apply.add_input("u", 1, libceed.EVAL_INTERP)
134 qf_apply.add_input("du", dim, libceed.EVAL_GRAD)
135 qf_apply.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
H A Dex1_volume.py111 qf_build.add_input("dx", dim * dim, libceed.EVAL_GRAD)
112 qf_build.add_input("weights", 1, libceed.EVAL_WEIGHT)
140 qf_mass.add_input("u", 1, libceed.EVAL_INTERP)
141 qf_mass.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
H A Dex2_surface.py113 qf_build.add_input("dx", dim * dim, libceed.EVAL_GRAD)
114 qf_build.add_input("weights", 1, libceed.EVAL_WEIGHT)
142 qf_diff.add_input("du", dim, libceed.EVAL_GRAD)
143 qf_diff.add_input("qdata", num_q_comp, libceed.EVAL_NONE)
/libCEED/python/
H A Dceed_qfunction.py111 def add_input(self, fieldname, size, emode): member in QFunction
/libCEED/julia/LibCEED.jl/src/
H A DQFunction.jl93 function add_input!(qf::AbstractQFunction, name::AbstractString, size, emode)
H A DLibCEED.jl68 add_input!,
H A DUserQFunction.jl265 push!(fields_in, :(add_input!($user_qf, $field_name, $sz_expr, $evalmode)))