Skip to content

Commit

Permalink
Fix ctors in TEOSPECVD
Browse files Browse the repository at this point in the history
  • Loading branch information
tobre1 committed Oct 25, 2024
1 parent 359441d commit d02f7a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/viennaps/models/psTEOSPECVD.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@ class TEOSPECVD : public ProcessModel<NumericType, D> {
this->setVelocityField(velField);

// particles
auto radical = std::make_unique<impl::Radical<NumericType, D>>(
radicalSticking, "radicalFlux");
auto radical =
std::make_unique<impl::Radical<NumericType, D>>(radicalSticking);
auto ion = std::make_unique<impl::Ion<NumericType, D>>(
ionSticking, ionExponent, ionMinAngle, "ionFlux");
ionSticking, ionExponent, ionMinAngle);

// surface model
auto surfModel = SmartPointer<impl::PECVDSurfaceModel<NumericType>>::New(
Expand Down

0 comments on commit d02f7a4

Please sign in to comment.