Our internal GUI we use to analyze individual transient carrier simulations from projects such as MetroTRPL or Bayesian-Inference-TRPL. Or, SCAPS-1D but transient. Supports custom carrier models / device stacks.
Unfortunately, for lack of time, we no longer maintain this project actively. We nevertheless hope that this project is useful to anyone wanting to run transient carrier simulations.
Other versions may work and will not affect the accuracy of results if they do, but if errors occur when importing libraries, try these versions.
python main.py
.Alternatively, PyInstaller provides a straightforward method to package source files into an executable. This can be done with TEDs code after downloading this repository by...
pip install pyinstaller
, conda install pyinstaller
, or similar command in the appropriate command prompt.pyinstaller main.py --onefile -n TEDs
. This creates several directories containing some intermediate files PyInstaller uses, but the executable will be generated in the dist directory. Replacing the argument "TEDs" changes the name of the generated executable.Add test scripts using unittest with similar structure to existing scripts in Tests/ directory.
Run tests by:
python -m unittest discover Tests
One can also track the progress of code and its test coverage with:
python -m coverage run --source='.' -m unittest discover Tests && python -m coverage report
(need to install "coverage" by: pip install coverage
)