|
@@ -242,7 +242,7 @@ PYBIND11_MODULE(FDEM1D, m) {
|
242
|
242
|
// print
|
243
|
243
|
.def("Serialize", &Lemma::EMEarth1D::Print, "YAML representation of the class")
|
244
|
244
|
.def("__repr__", &Lemma::EMEarth1D::Print)
|
245
|
|
-
|
|
245
|
+
|
246
|
246
|
// accessors
|
247
|
247
|
.def("GetName", &Lemma::EMEarth1D::GetName, "Returns the name of the class")
|
248
|
248
|
.def("GetFieldPoints", &Lemma::EMEarth1D::GetFieldPoints, "Returns the FieldPoint class")
|
|
@@ -273,7 +273,7 @@ PYBIND11_MODULE(FDEM1D, m) {
|
273
|
273
|
.def("CalculateWireAntennaFields", &Lemma::EMEarth1D::CalculateWireAntennaFields,
|
274
|
274
|
"Native Lemma calculation of a wire antenna")
|
275
|
275
|
*/
|
276
|
|
-
|
|
276
|
+
|
277
|
277
|
;
|
278
|
278
|
|
279
|
279
|
|
|
@@ -338,6 +338,6 @@ PYBIND11_MODULE(FDEM1D, m) {
|
338
|
338
|
.def("ClearFields", &Lemma::FieldPoints::ClearFields, "Clears calculated fields")
|
339
|
339
|
.def("MaskPoint", &Lemma::FieldPoints::MaskPoint, "Masks the index resulting in no calculation")
|
340
|
340
|
.def("UnMaskPoint", &Lemma::FieldPoints::UnMaskPoint, "Unmasks the index resulting in a calculation")
|
341
|
|
-
|
|
341
|
+
|
342
|
342
|
;
|
343
|
343
|
}
|