123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
-
-
-
-
-
-
- #ifndef KERNELEM1DBASE_INC
- #define KERNELEM1DBASE_INC
-
- #include "LemmaObject.h"
-
- namespace Lemma {
-
-
- enum EMMODE {TM, TE, NONE};
-
-
-
-
-
-
- class KernelEM1DBase : public LemmaObject {
-
- friend class KernelEM1DManager;
-
- public:
-
-
-
-
- KernelEM1DBase ( const ctor_key& key ) : LemmaObject( key ) {
-
- }
-
-
- ~KernelEM1DBase () {
- }
-
-
-
-
-
-
-
- virtual Complex BesselArg(const Real& lambda)=0;
-
-
-
- virtual Complex RelBesselArg(const Real& lambda)=0;
-
-
- virtual void SetIk(const int& ik)=0;
-
- virtual void SetMode(const EMMODE& mode)=0;
-
- Index GetManagerIndex() const {
- return this->managerIdx;
- }
-
-
- virtual int GetNumRel()=0;
-
- virtual int GetBesselOrder()=0;
-
- virtual Complex GetZm()=0;
-
- virtual Complex GetYm()=0;
-
- virtual Complex GetZs()=0;
-
- virtual Complex GetKs()=0;
-
- virtual std::string GetName() const = 0;
-
- protected:
-
-
-
-
- Index managerIdx;
-
- private:
-
-
- static constexpr auto CName = "KernelEM1DBase";
-
- };
-
- }
-
- #endif
|