-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmethods-config.json
More file actions
32 lines (32 loc) · 1.15 KB
/
methods-config.json
File metadata and controls
32 lines (32 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[
{
"simulationType": "DG",
"containerImage": "dg_image:latest",
"envVars": {"CUDA_VISIBLE_DEVICES": "0"},
"label": "Discontinuous Galerkin method",
"settings":"dg_setting.json",
"entryFile":"DGinterface.py",
"repositoryURL":"https://github.com/Building-acoustics-TU-Eindhoven/edg-acoustics/",
"documentationURL":"https://dg-roomacoustics.readthedocs.io/en/latest/"
},
{
"simulationType": "DE",
"containerImage": "de_image:latest",
"envVars": {},
"label": "Diffusion Equation method",
"settings":"de_setting.json",
"entryFile":"DEinterface.py",
"repositoryURL":"https://github.com/Building-acoustics-TU-Eindhoven/acousticDE/",
"documentationURL":"https://building-acoustics-tu-eindhoven.github.io/acousticDE/index.html"
},
{
"simulationType": "MyNewMethod",
"containerImage": "mynewmethod_image:latest",
"envVars": {},
"label": "My New Method",
"entryFile":"MyNewMethodInterface.py",
"settings":"my_new_setting.json",
"repositoryURL":"",
"documentationURL":""
}
]