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

Function WeingartenCF

fem/coefficient_geo.cpp:793–805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

791
792
793 shared_ptr<CoefficientFunction> WeingartenCF (int dim)
794 {
795 switch(dim)
796 {
797 case 1:
798 throw Exception ("no WeingartenCF in 1D");
799 // return make_shared<WeingartenCF<1>>();
800 case 2:
801 return make_shared<cl_WeingartenCF<2>>();
802 default:
803 return make_shared<cl_WeingartenCF<3>>();
804 }
805 }
806
807
808 template <int D>

Callers 2

OperatorMethod · 0.85
GetWeingartenCFMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected