PICurv 0.1.0
A Parallel Particle-In-Cell Solver for Curvilinear LES
Loading...
Searching...
No Matches
main.py
Go to the documentation of this file.
1"""Command-line entrypoint for the PICurv conductor."""
2
3from .cli import build_main_parser, dispatch_command
4
5
6def main():
7 """!
8 @brief Parse command-line arguments and dispatch the requested command.
9 """
10 dispatch_command(build_main_parser().parse_args())
main()
Parse command-line arguments and dispatch the requested command.
Definition main.py:6