|
5 | 5 | "version": "0.2.0",
|
6 | 6 | "configurations": [
|
7 | 7 | {
|
8 |
| - "name": "Python: BASD Battery System Designer Tool.", |
| 8 | + "name": "Python: BASD Battery System Designer Tool (design).", |
9 | 9 | "type": "python",
|
10 | 10 | "request": "launch",
|
11 | 11 | "module": "basd",
|
12 | 12 | "cwd": "${workspaceRoot}/src",
|
13 | 13 | "args": [
|
14 |
| - "-r", |
15 |
| - "${workspaceRoot}/tests/system-requirements.json", |
16 |
| - "-p", |
17 |
| - "${workspaceRoot}/tests/profiles", |
18 |
| - "-d", |
19 |
| - "${workspaceRoot}/tests/data", |
| 14 | + "design", |
| 15 | + "--requirements", |
| 16 | + "${workspaceRoot}/tests/requirements/Example-Requirements.json", |
| 17 | + "--database", |
| 18 | + "${workspaceRoot}/tests/cells", |
20 | 19 | "--report",
|
21 |
| - "${workspaceRoot}", |
| 20 | + "${workspaceRoot}/src/report", |
22 | 21 | ]
|
23 | 22 | },
|
24 | 23 | {
|
25 |
| - "name": "Python: BASD Report Vizualization Tool (rviz).", |
| 24 | + "name": "Python: BASD CAD Vizualization Tool (cad)", |
26 | 25 | "type": "python",
|
27 | 26 | "request": "launch",
|
28 |
| - "module": "basd.rviz", |
| 27 | + "module": "basd", |
29 | 28 | "cwd": "${workspaceRoot}/src",
|
30 | 29 | "args": [
|
31 |
| - "-r", |
32 |
| - "${workspaceRoot}/src/report.csv" |
| 30 | + "cad", |
| 31 | + "--database", |
| 32 | + "${workspaceRoot}/tests/cells", |
| 33 | + "--output-format", |
| 34 | + "stl", |
| 35 | + "--report", |
| 36 | + "${workspaceRoot}/src/report.json", |
| 37 | + "0" |
33 | 38 | ]
|
34 | 39 | },
|
35 | 40 | {
|
36 |
| - "name": "Python: BASD CAD Vizualization Tool (cad)", |
| 41 | + "name": "Python: BASD CAD Vizualization Tool (db)", |
37 | 42 | "type": "python",
|
38 | 43 | "request": "launch",
|
39 |
| - "module": "basd.cad", |
| 44 | + "module": "basd", |
40 | 45 | "cwd": "${workspaceRoot}/src",
|
41 | 46 | "args": [
|
42 |
| - "--interactive", |
43 |
| - "--layout", |
44 |
| - "${workspaceRoot}/tests/system-layout.json" |
| 47 | + "db", |
| 48 | + "add", |
| 49 | + "${workspaceRoot}/tests/cells" |
45 | 50 | ]
|
46 | 51 | }
|
47 | 52 | ]
|
|
0 commit comments