Using tdse_solver.py, for a specified potention output.gif
or a coloured Heat map.
Open a program capable of running .py
files (to use command line, use Anaconda Powershell Prompt for best results.)
- For manual access:
- Open file
src\Python_code\solving_tdse.py
in the program of choice. - To input values, scroll to the bottom and replace the "
args.XXX
" terms in with the chosen values - use the contained "help" instructions above to determine which are which.
- Open file
- For command line access:
- From the program root folder, use
cd src\Python_code
to set the run location to the same folder astdse_cmd.py
. - Use command
python tdse_cmd.py
to run the file from command line - the program should create a new.gif
file insrc\Python_code
. - To input new values, run
python tdse_cmd.py --help
, to have Powershell list all possible input variables. From there, input the desired variables in standard command line format. For example:
- From the program root folder, use
python tdse_cmd.py --vx "2*x**2"
The example above generates a --output anim
or --output plot
respectively.
.gitignore
contains files that should be ignored by gitLICENSE
the project license telling users who install your package the terms under which they can use your packageREADME.md
A markdown document telling users about the projectrequirements.txt
contains the requirements for the project, you can install these withpip install -r requirements.txt
docs/
contains the documentation - we won't discuss this further here..github/workflows/python_test.yml
contains a YAML file which determined how github Action are runsrc/
contains the python code required to run the projecttests/
contains the tests of the python package(unfinished)