Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tobre1 committed Feb 4, 2025
1 parent 416a521 commit cf54aa4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dist/
dependencies/
*.ipynb
old_*
*_old.*
*a.out
install*
*.vtk
Expand Down
6 changes: 4 additions & 2 deletions examples/faradayCageEtching/faradayCageEtching.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from argparse import ArgumentParser

# parse config file name and simulation dimension
parser = ArgumentParser(prog="faradayCageEtching", description="Run a faraday cage etching process.")
parser = ArgumentParser(
prog="faradayCageEtching", description="Run a faraday cage etching process."
)
parser.add_argument("-D", "-DIM", dest="dim", type=int, default=2)
parser.add_argument("filename")
args = parser.parse_args()
Expand Down Expand Up @@ -33,7 +35,7 @@
material=vps.Material.Si,
).apply()

# use pre-defined model SF6O2 etching model
# use pre-defined etching model
parameters = vps.FaradayCageParameters()
parameters.cageAngle = params["cageAngle"]
parameters.ibeParams.tiltAngle = params["tiltAngle"]
Expand Down

0 comments on commit cf54aa4

Please sign in to comment.