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

Function JacobianMatrixCF

fem/coefficient_geo.cpp:534–559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

532 };
533
534 shared_ptr<CoefficientFunction> JacobianMatrixCF (int dims,int dimr)
535 {
536 switch(dimr)
537 {
538 case 1:
539 return make_shared<cl_JacobianMatrixCF<1,1>>();
540 case 2:
541 switch(dims)
542 {
543 case 1:
544 return make_shared<cl_JacobianMatrixCF<1,2>>();
545 default:
546 return make_shared<cl_JacobianMatrixCF<2,2>>();
547 }
548 default:
549 switch(dims)
550 {
551 case 1:
552 return make_shared<cl_JacobianMatrixCF<1,3>>();
553 case 2:
554 return make_shared<cl_JacobianMatrixCF<2,3>>();
555 default:
556 return make_shared<cl_JacobianMatrixCF<3,3>>();
557 }
558 }
559 }
560
561
562

Callers 1

GetJacobianMatrixCFMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected