|
@@ -90,6 +90,13 @@ PYBIND11_MODULE(FDEM1D, m) {
|
90
|
90
|
.def("ApproximateWithElectricDipoles", &Lemma::PolygonalWireAntenna::ApproximateWithElectricDipoles,
|
91
|
91
|
"Approximates loop with series of electric dipoles around loop")
|
92
|
92
|
|
|
93
|
+ // modifiers
|
|
94
|
+ .def("SetMinDipoleRatio", &Lemma::PolygonalWireAntenna::SetMinDipoleRatio,
|
|
95
|
+ "Sets the minimum dipole ratio use, smaller values increase precision")
|
|
96
|
+ .def("SetMinDipoleMoment", &Lemma::PolygonalWireAntenna::SetMinDipoleMoment,
|
|
97
|
+ "Sets the minimum dipole moment which will be used, smaller values increase precision and computational time")
|
|
98
|
+ .def("SetMaxDipoleMoment", &Lemma::PolygonalWireAntenna::SetMaxDipoleMoment,
|
|
99
|
+ "Sets the maximum dipole moment which will be used, smaller values increase precision and computational time")
|
93
|
100
|
;
|
94
|
101
|
|
95
|
102
|
py::class_<Lemma::DipoleSource, std::shared_ptr<Lemma::DipoleSource> > DipoleSource(m, "DipoleSource");
|