1
1
Simulation Project
2
2
==================
3
3
4
- To Do:
5
-
6
- * Explain what a simulation project is and what it contains
7
- * How to create a simulation project with the SDK
8
-
9
- A simulation project is a container for the elements needed to setup a simulation, the two most
10
- important of them being the CAD geometry and the simulation or physics setup. We can visualize
11
- the hierarchy with a tree structure:
4
+ A simulation project is a container for the building blocks needed to setup a simulation: the two most
5
+ important of them being the CAD geometry and the physics setup. We can visualize the hierarchy with a tree structure:
12
6
13
7
.. code-block ::
14
8
@@ -26,9 +20,9 @@ the hierarchy with a tree structure:
26
20
27
21
28
22
Eeach simulation is linked to one geometry, and each simulation setup contains the physics definition.
29
- More details to follow in the specific steps.
23
+ More details to follow in the specific steps for geometry and simulation workflows .
30
24
31
- In order to create and manipulate simulation projects, the SimScale SDK provides a Projects API client:
25
+ In order to create and manipulate simulation projects, the SimScale SDK provides a Projects API client module :
32
26
33
27
.. code-block :: python
34
28
@@ -43,7 +37,7 @@ In order to create and manipulate simulation projects, the SimScale SDK provides
43
37
44
38
45
39
We can see that the projects api object is initialized with the ``api_client ``, which we previously
46
- initialized with our Api key and host URL.
40
+ initialized with the data for our Api key and host URL.
47
41
48
42
The project data is hosted in a ``Project `` object, which is then included as the argument of the
49
43
actual Api call to create the project:
0 commit comments