Skip to content

Commit

Permalink
Change Isotropic process default mask material and add SF6Etching wra…
Browse files Browse the repository at this point in the history
…pper
  • Loading branch information
tobre1 committed Oct 15, 2024
1 parent 37b5c34 commit 97a92d5
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion python/pyWrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,28 @@ PYBIND11_MODULE(VIENNAPS_MODULE_NAME, module) {
.def("getParameters", &SF6O2Etching<T, D>::getParameters,
pybind11::return_value_policy::reference);

// SF6 Etching
pybind11::class_<SF6Etching<T, D>, SmartPointer<SF6Etching<T, D>>>(
module, "SF6Etching", processModel)
.def(pybind11::init<>())
.def(
pybind11::init(&SmartPointer<SF6Etching<T, D>>::New<
const double /*ionFlux*/, const double /*etchantFlux*/,
const T /*meanIonEnergy*/, const T /*sigmaIonEnergy*/,
const T /*ionExponent*/, const T /*etchStopDepth*/>),
pybind11::arg("ionFlux"), pybind11::arg("etchantFlux"),
pybind11::arg("meanIonEnergy") = 100.,
pybind11::arg("sigmaIonEnergy") = 10.,
pybind11::arg("ionExponent") = 100.,
pybind11::arg("etchStopDepth") = std::numeric_limits<T>::lowest())
.def(
pybind11::init(
&SmartPointer<SF6Etching<T, D>>::New<const SF6O2Parameters<T> &>),
pybind11::arg("parameters"))
.def("setParameters", &SF6Etching<T, D>::setParameters)
.def("getParameters", &SF6Etching<T, D>::getParameters,
pybind11::return_value_policy::reference);

// Fluorocarbon Parameters
pybind11::class_<FluorocarbonParameters<T>::MaskType>(
module, "FluorocarbonParametersMask")
Expand Down Expand Up @@ -792,7 +814,7 @@ PYBIND11_MODULE(VIENNAPS_MODULE_NAME, module) {
return SmartPointer<IsotropicProcess<T, D>>::New(rate, mask);
}),
pybind11::arg("rate") = 1.,
pybind11::arg("maskMaterial") = Material::Mask)
pybind11::arg("maskMaterial") = Material::None)
.def(pybind11::init([](const T rate, const std::vector<Material> mask) {
return SmartPointer<IsotropicProcess<T, D>>::New(rate, mask);
}),
Expand Down

0 comments on commit 97a92d5

Please sign in to comment.