MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / CalcPoint

Method CalcPoint

comp/meshaccess.cpp:338–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

336 }
337
338 virtual void CalcPoint (const IntegrationPoint & ip,
339 FlatVector<> point) const override
340 {
341 Vec<DIMR> tmp;
342 BASE::CalcPoint (ip, tmp);
343
344 Vec<DIMR> def;
345 for (int i = 0; i < DIMR; i++)
346 def(i) = fel->Evaluate (ip, elvecs.Row(i));
347 point = tmp + def;
348 }
349
350 virtual void CalcPointJacobian (const IntegrationPoint & ip,
351 FlatVector<> point, FlatMatrix<> dxdxi) const override

Callers

nothing calls this directly

Calls 3

CalcPointFunction · 0.85
EvaluateMethod · 0.45
RowMethod · 0.45

Tested by

no test coverage detected