123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
-
-
-
-
-
-
-
- #ifndef FHTKEY51_INC
- #define FHTKEY51_INC
-
- #include "HankelTransform.h"
-
- namespace Lemma {
-
-
-
- class FHTKey51 : public HankelTransform {
-
- friend std::ostream &operator<<(std::ostream &stream, const FHTKey51 &ob);
-
- public:
-
-
-
-
- FHTKey51 ( const ctor_key& );
-
-
- FHTKey51 ( const YAML::Node& node, const ctor_key& );
-
-
- ~FHTKey51 ();
-
-
-
- static std::shared_ptr<FHTKey51> NewSP();
-
-
-
- YAML::Node Serialize() const;
-
-
-
- static std::shared_ptr< FHTKey51 > DeSerialize(const YAML::Node& node);
-
-
-
-
-
- Complex Zgauss(const int &ikk, const EMMODE &imode,
- const int &itype, const Real &rho,
- const Real &wavef, KernelEM1DBase* Kernel);
-
-
-
- void ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DBase> Kernel);
-
- void ComputeRelated(const Real& rho, std::vector< std::shared_ptr<KernelEM1DBase> > KernelVec);
-
- void ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DManager> KernelManager);
-
-
-
-
-
-
- virtual inline std::string GetName() const ;
-
- protected:
-
- private:
-
-
-
-
- static const Eigen::Matrix<Real, 51, 3> WT51;
-
-
- Eigen::Matrix<Complex, Eigen::Dynamic, Eigen::Dynamic> Zans;
-
-
- static constexpr auto CName = "FHTKey51";
-
- };
-
- }
-
- #endif
|