()
| 12 | import math |
| 13 | |
| 14 | def parse_args(): |
| 15 | parser = argparse.ArgumentParser(description=__doc__); |
| 16 | parser.add_argument("--charge-distribution", "-c", choices=["sphere", "center"], |
| 17 | default="sphere"); |
| 18 | parser.add_argument("--output-kernels", action="store_true"); |
| 19 | parser.add_argument("input_mesh"); |
| 20 | parser.add_argument("output_mesh"); |
| 21 | return parser.parse_args(); |
| 22 | |
| 23 | def test_function(charges): |
| 24 | """ |