-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex_wecg.html
52 lines (43 loc) · 2.65 KB
/
index_wecg.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html lang="en">
<head>
<title>Workflow Editor and Code Generator</title>
<link rel="stylesheet" href="./StyleBase.css">
<link rel="stylesheet" href="./StyleCommon.css">
</head>
<body>
<div id="mainpage_all">
<div class="vbox">
<div class="hbox gap20 justify_content_flex_start align_items_flex_start header">
<a href="./" class="cursor_pointer"><div class="mupif_logo_bgcolor"><img src="mupif-logo.png" class="mupif_logo"></div></a>
<h1>Workflow Editor and Code Generator</h1>
</div>
<div class="mainpage_content vbox gap20 header">
<div class="vbox align_items_center">
<div class="vbox align_items_flex_start gap20">
<a class="button" href="workflow_editor.html" target="_blank">Workflow Editor Application - empty project</a>
<a class="button" href="workflow_editor.html?example_id=1" target="_blank">Example 01 - thermo-mechanical execution workflow</a>
<a class="button" href="workflow_editor.html?example_id=2" target="_blank">Example 02 - thermo-mechanical class workflow</a>
<a class="button" href="workflow_editor.html?example_id=3" target="_blank">Example 03 - execution workflow containing the Exmaple 02 thermo-mechanical class workflow</a>
</div>
</div>
<div></div>
<div class="p2">For running code from these examples, it is necessary to download the following files into the same directory:</div>
<div class="vbox align_items_center">
<div class="vbox gap10 p2 align_items_flex_start">
<a href="examples/mupif_examples_models.py" class="link" download>mupif_examples_models.py</a>
<a href="examples/mupif_examples_meshgen.py" class="link" download>mupif_examples_meshgen.py</a>
<a href="examples/field_export.py" class="link" download>field_export.py</a>
<a href="examples/inputT.in" class="link" download>inputT.in</a>
<a href="examples/inputM.in" class="link" download>inputM.in</a>
</div>
</div>
</div>
<div class="p2" style="padding: 20px;">
The workflow generator can be used without the editor.
There is a file "app_json_to_python.js" in the "examples" folder, which can convert the input JSON representation of the workflow to the Python code with Node.js:
<br><nobr style="background-color: #a4a4a4;">node app_json_to_python.js workflow.json workflow.py class</nobr>
</div>
</div>
</div>
</body>
</html>