Skip to main content

Topography simulation library for microelectronic fabrication processes

Project description

ViennaPS

🐍 Build Bindings 🧪 Run Tests PyPi Version

ViennaPS is a header-only C++ library for topography simulation in microelectronic fabrication processes. It models the evolution of 2D and 3D surfaces during etching, deposition, and related steps, combining advanced level-set methods for surface evolution with Monte Carlo ray tracing for flux calculation. This allows accurate, feature-scale simulation of complex fabrication geometries.

ViennaPS supports both physical process models and fast emulation approaches, enabling flexible and efficient development of semiconductor processes. It can be easily integrated into existing C++ projects and also provides Python bindings for use in Python-based workflows. The library is actively developed and continuously improved to address the needs of process and topography simulation in microelectronics.

Quick Start

To install ViennaPS for Python, simply run:

pip install ViennaPS

To use ViennaPS in C++, clone the repository and follow the installation steps below.

For full documentation, visit ViennaPS Documentation.

Releases

[!NOTE]
ViennaPS is under heavy development and improved daily. If you do have suggestions or find bugs, please let us know!

Releases are tagged on the master branch and available in the releases section.

ViennaPS is also available on the Python Package Index (PyPI) for most platforms.

Building

Supported Operating Systems

  • Linux (g++ / clang)

  • macOS (XCode)

  • Windows (Visual Studio)

System Requirements

  • C++17 Compiler with OpenMP support

Dependencies (installed automatically)

The CMake configuration automatically checks if the dependencies are installed. If the dependencies are not found on the system, they will be built from source. To use local installations of the dependencies, the VIENNAPS_LOOKUP_DIRS variable can be set to the installation path of the dependencies.

Installing

[!NOTE]
For more detailed installation instructions and troubleshooting tips, have a look at the ViennaPS documentation.

ViennaPS is a header-only library, so no formal installation is required. However, following the steps below helps organize and manage dependencies more effectively:

git clone https://github.com/ViennaTools/ViennaPS.git
cd ViennaPS

cmake -B build && cmake --build build
cmake --install build --prefix "/path/to/your/custom/install/"

This will install the necessary headers and CMake files to the specified path. If --prefix is not specified, it will be installed to the standard path for your system, usually /usr/local/ on Linux-based systems.

Building the Python package

The Python package can be built and installed using the pip command:

git clone https://github.com/ViennaTools/ViennaPS.git
cd ViennaPS

pip install .

Some features of the ViennaPS Python module depend on the ViennaLS Python module. The ViennaLS is installed automatically as a dependency. Note: A locally built ViennaPS Python module is typically not compatible with the ViennaLS package from PyPI. For details and troubleshooting, see this guide.

Using the Python package

The ViennaPS Python package can be used by importing it in your Python scripts:

import viennaps as vps

By default, ViennaPS operates in two dimensions. You can set the dimension using:

vps.setDimension(2)  # For 2D simulations
vps.setDimension(3)  # For 3D simulations

For more details and examples, refer to the official documentation.

Integration in CMake projects

We recommend using CPM.cmake to consume this library.

  • Installation with CPM

    CPMAddPackage("gh:viennatools/viennaps@4.0.1")
    
  • With a local installation

    In case you have ViennaPS installed in a custom directory, make sure to properly specify the CMAKE_PREFIX_PATH.

    list(APPEND CMAKE_PREFIX_PATH "/your/local/installation")
    
    find_package(ViennaPS)
    target_link_libraries(${PROJECT_NAME} PUBLIC ViennaTools::ViennaPS)
    

Shared Library

In order to save build time during development, dynamically linked shared libraries can be used if ViennaPS was built with them. This is done by precompiling the most common template specialisations. In order to use shared libraries, use

cmake -B build -DVIENNALS_PRECOMPILE_HEADERS=ON

If ViennaPS was built with shared libraries and you use ViennaPS in your project (see above), CMake will automatically link them to your project.

GPU Acceleration (Experimental)

As of version 3.4.0, ViennaPS supports GPU acceleration for the ray tracing part of the library. This feature is still experimental and may not work on all systems. Details on how to enable GPU functionality can be found in the documentation.

Basic Examples

Building

The examples can be built using CMake:

git clone https://github.com/ViennaTools/ViennaPS.git
cd ViennaPS

cmake -B build -DVIENNAPS_BUILD_EXAMPLES=ON
cmake --build build

The examples can then be executed in their respective build folders with the config files, e.g.:

cd build/examples/exampleName
./exampleName.bat config.txt # (Windows)
./exampleName config.txt # (Other)

Individual examples can also be build by calling make in their respective build folder. An equivalent Python script, using the ViennaPS Python bindings, is also given for each example.

Trench Deposition

This example focuses on a particle deposition process within a trench geometry. By default, the simulation presents a 2D representation of the trench. Nevertheless, users have the flexibility to conduct 3D simulations by adjusting the value of the constant D in trenchDeposition.cpp to 3. Customization of process and geometry parameters is achieved through the config.txt file. The accompanying image illustrates instances of the trench deposition process, showcasing variations in the particle sticking probability s.

SF6/O2 Hole Etching

This example demonstrates a hole etching process with a SF6/O2 plasma etching chemistry with ion bombardment. The process is controlled by various parameters, including geometry and plasma conditions, which can be adjusted in the config.txt file.

The image presents the results of different flux configurations, as tested in testFluxes.py. Each structure represents a variation in flux conditions, leading to differences in hole shape, depth, and profile characteristics. The variations highlight the influence of ion and neutral fluxes on the etching process.

[!NOTE] The underlying model may change in future releases, so running this example in newer versions of ViennaPS might not always reproduce exactly the same results.
The images shown here were generated using ViennaPS v3.6.0.

Bosch Process

This example compares different approaches to simulating the Bosch process, a deep reactive ion etching (DRIE) technique. The three structures illustrate how different modeling methods influence the predicted etch profile.

  • Left: The structure generated through process emulation, which captures the characteristic scalloping effect of the Bosch process in a simplified yet effective way.
  • Middle: The result of a simple simulation model, which approximates the etching dynamics but may lack finer physical details.
  • Right: The outcome of a more physical simulation model, leading to a more realistic etch profile.

This comparison highlights the trade-offs between computational efficiency and physical accuracy in DRIE simulations.

Wet Etching

This example demonstrates the wet etching process, specifically focusing on the cantilever structure. The simulation captures the etching dynamics and the influence of crystallographic directions on the etch profile.

Selective Epitaxy

This example demonstrates the selective epitaxy process, focusing on the growth of SiGe on a Si substrate. Similar to wet etching, the process is influenced by crystallographic directions, which can be adjusted in the config.txt file. The simulation captures the growth dynamics and the resulting SiGe structure.

Redeposition During Selective Etching

This example demonstrates capturing etching byproducts and the subsequent redeposition during a selective etching process in a Si3N4/SiO2 stack. The etching byproducts are captured in a cell set description of the etching plasma. To model the dynamics of these etching byproducts, a convection-diffusion equation is solved on the cell set using finite differences. The redeposition is then captured by adding up the byproducts in every step and using this information to generate a velocity field on the etched surface.

GDS Mask Import Example

This example tests the full GDS mask import, blurring, rotation, scaling, and flipping as well as the level set conversion pipeline. Shown below is the result after applying proximity correction and extrusion on a simple test.

Tests

ViennaPS uses CTest to run its tests. In order to check whether ViennaPS runs without issues on your system, you can run:

git clone https://github.com/ViennaTools/ViennaPS.git
cd ViennaPS

cmake -B build -DVIENNAPS_BUILD_TESTS=ON
cmake --build build
ctest -E "Benchmark|Performance" --test-dir build

Contributing

If you want to contribute to ViennaPS, make sure to follow the LLVM Coding guidelines.

Make sure to format all files before creating a pull request:

cmake -B build
cmake --build build --target format

Authors

Current contributors: Tobias Reiter, Lado Filipovic, Roman Kostal, Noah Karnel

Contact us via: viennatools@iue.tuwien.ac.at

ViennaPS was developed under the aegis of the 'Institute for Microelectronics' at the 'TU Wien'. http://www.iue.tuwien.ac.at/

License

ViennaPS is licensed under the MIT License.

Some third-party libraries used by ViennaPS are under their own permissive licenses (MIT, BSD, Apache-2.0).
See THIRD_PARTY_LICENSES.md for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

viennaps-4.1.1-cp312-cp312-win_amd64.whl (33.8 MB view details)

Uploaded CPython 3.12Windows x86-64

viennaps-4.1.1-cp312-cp312-musllinux_1_1_x86_64.whl (78.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

viennaps-4.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

viennaps-4.1.1-cp312-cp312-macosx_11_0_arm64.whl (46.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

viennaps-4.1.1-cp311-cp311-win_amd64.whl (33.8 MB view details)

Uploaded CPython 3.11Windows x86-64

viennaps-4.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (78.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

viennaps-4.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

viennaps-4.1.1-cp311-cp311-macosx_11_0_arm64.whl (46.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

viennaps-4.1.1-cp310-cp310-win_amd64.whl (33.8 MB view details)

Uploaded CPython 3.10Windows x86-64

viennaps-4.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (78.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

viennaps-4.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (80.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

File details

Details for the file viennaps-4.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: viennaps-4.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 33.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for viennaps-4.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d85cd97fababb7e0e7112f68167d547ba85e74f51fc6cb676dfb91f4ba38ec3c
MD5 f09211dd5a4c80ea86a3b293bc3cc379
BLAKE2b-256 1ff41f936e76e24bfc98389915360ec542c4e7e49ac3607e2245791519329c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp312-cp312-win_amd64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f7be0d153defd150b9ad6195bee1babe38e44987cfa871274f81b0cbae3511f9
MD5 b37edb9bb07bd3cac1d6885461ae7e91
BLAKE2b-256 b2309b89a254b07b9fdcb66f6f4886b41ca245657e5233154588a84897f29ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f2a87f032e68dbfcfb1dfebd86ef0e5f97643a15aec1005f28c1c5d19c7893
MD5 133e24c9666926f20b2220331fa858fe
BLAKE2b-256 68601d527f5604696c7bb2e9556f49b625a14b59cb07422fd298646d832b38f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8611364ae637cd073c2485f633b1d7d6f330bdaef1f730c24f7a56983573dd1f
MD5 23f34d706074cb665dc3e524d7505ca6
BLAKE2b-256 17e0c65887f25ee7e60878b33544efc5caef10bd0bfa15c16c9d5d8f772c92aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: viennaps-4.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 33.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for viennaps-4.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ee7fa1592d247bef7ebc5f0a0ad8e7fe6ef0dae38a6f5466fe65de23d43ab9b
MD5 1053a01fdd979bd5ec527f093f43c24a
BLAKE2b-256 ebd5885908b5b2291a7b478563dcc6c29e1a335278d50881e7acd227538d3b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp311-cp311-win_amd64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b55268f0d1c1080823687050e98bb32694ab8f2287987a93ed96ba19ceb582cb
MD5 4d58840ee7019cd70a44c09712a7b2fd
BLAKE2b-256 38a958ab89428b8b6c85893ffc383a0c19af0c10d0dc2f8061cf652a584919a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96ee511d7194915898af6748e613d679a03adba8653f33df00d8e84163a00982
MD5 9c77097a0d24d35b346535a2c78dcc9c
BLAKE2b-256 8714f154452dbba921c373d32f66f41ce99d2512aea38bdac57a05e01afc78b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 957c7571017298302f7a94a8adf977d8d4badfd6f4675fd8874f93b7d8a48f69
MD5 25965e85cef70505225b6f26627fb45a
BLAKE2b-256 959427b4838d95333dd3760e6a430b121a86332fd2bafa71d06cb8373ea959ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: viennaps-4.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 33.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for viennaps-4.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b8795384a872d73d9568679c0e1cc91e68087b0f30a54c6bdc3f1ae1151e221
MD5 c47be6eedfa00e12745c69c30d50dac3
BLAKE2b-256 da380430d1522af9af10e4aa335e2f55f6e9d1611f5035eada79705a1a06fa41

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp310-cp310-win_amd64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6a48ae630676e524fc279d1dcb805faa9c3236520b0e96fde68ff3584f951d8
MD5 874e4e802b74351db9306e90cf8bed2d
BLAKE2b-256 ff584144447aba6249be7001e223827130c177f19e3b61def449e4d446e5952b

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viennaps-4.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for viennaps-4.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e28ad9e2fd6f40b7422084fbfcd0b0cdd9425f682f92828e35c761fc4c1f607d
MD5 5d0163f259955942696987a4e6dd777d
BLAKE2b-256 89deb240ec023faf8152646ed74dff0408c54703136786faa14f0a6559f7cef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for viennaps-4.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python.yml on ViennaTools/ViennaPS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page