Home
last modified time | relevance | path

Searched refs:pt (Results 1 – 4 of 4) sorted by relevance

/libCEED/doc/img/tex/
H A DlibCEEDBackends.tex28 \draw[-stealth, line width=0.5pt] (1.6, -0.8) -- ++(1.6,2.4-0.2);
37 \draw[-stealth, line width=0.5pt] (1.6, 0.4) -- ++(1.6,1.2-0.1);
46 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,0.0);
55 \draw[-stealth, line width=0.5pt] (1.6, 2.8) -- ++(1.6,-1.2+0.1);
68 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,3.6);
69 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,2.4);
70 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,1.2);
71 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,0.0);
72 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,-1.2);
73 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,-2.4);
[all …]
/libCEED/doc/img/
H A DlibCEEDBackends.tex31 \draw[-stealth, line width=0.5pt] (1.6, 3.0+0.4) -- ++(1.6,-1.2-0.4);
40 \draw[-stealth, line width=0.5pt] (1.6, 1.8+0.4) -- ++(1.6,0.0-0.55);
49 \draw[-stealth, line width=0.5pt] (1.6, 0.6+0.4) -- ++(1.6,1.2-0.65);
58 \draw[-stealth, line width=0.5pt] (1.6, -0.6+0.4) -- ++(1.6,2.4-0.8);
71 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,3.6);
72 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,2.4);
73 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,1.2);
74 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,0.0);
75 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,-1.2);
76 \draw[-stealth, line width=0.5pt] (1.6, 1.6) -- ++(1.6,-2.4);
[all …]
/libCEED/examples/mfem/
H A Dbp3.cpp43 double solution(const mfem::Vector &pt) { in solution() argument
46 double val = sin(M_PI * (x[0] + k[0] * pt(0))); in solution()
47 for (int d = 1; d < pt.Size(); d++) val *= sin(M_PI * (x[d] + k[d] * pt(d))); in solution()
52 double rhs(const mfem::Vector &pt) { in rhs() argument
56 f[0] = sin(M_PI * (x[0] + k[0] * pt(0))); in rhs()
60 for (int d = 1; d < pt.Size(); d++) { in rhs()
61 f[d] = sin(M_PI * (x[d] + k[d] * pt(d))); in rhs()
H A Dbp1.cpp43 double solution(const mfem::Vector &pt) { in solution() argument
44 return pt.Norml2(); // distance to the origin in solution()