| 352 | |
| 353 | using CoefficientFunction::Operator; |
| 354 | shared_ptr<CoefficientFunction> Operator (const string & name) const override |
| 355 | { |
| 356 | if (name == "grad" || name == "Grad") |
| 357 | return WeingartenCF (D); |
| 358 | throw Exception("Normalvector cannot build operator " + name); |
| 359 | } |
| 360 | |
| 361 | |
| 362 | virtual shared_ptr<CoefficientFunction> |
no test coverage detected