-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.html
173 lines (127 loc) · 4.98 KB
/
gui.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>mumax3</title>
<style media="all" type="text/css">
body { margin-left: 5%; margin-right:5%; font-family: sans-serif; font-size: 14px; }
h1 { font-size: 22px; color: gray; }
h2 { font-size: 18px; color: gray; }
img { margin: 10px; }
table { border-collapse: collapse; }
tr:nth-child(even) { background-color: white; }
tr:nth-child(odd) { background-color: #F7F7FF; }
td { padding: 1px 5px; }
hr { border-style: none; border-top: 1px solid #CCCCCC; }
a { color: #375EAB; text-decoration: none; }
div { margin-left: 20px; margin-top: 5px; margin-bottom: 20px; }
div#footer{ color:gray; font-size:14px; border:none; }
.ErrorBox { color: red; font-weight: bold; }
.TextBox { border:solid; border-color:#BBBBBB; border-width:1px; padding-left:4px; }
textarea { border:solid; border-color:#BBBBBB; border-width:1px; padding-left:4ps; color:gray; font-size: 1em; }
</style>
<script>
function toggle(id) {
var el = document.getElementById(id);
if(el.style.display != 'none'){
el.style.display = 'none';
} else {
el.style.display = 'block';
}
}
</script>
{{.JS}}
</head>
<body>
<span style="color:gray; font-weight:bold; font-size:1.5em"> mumax<sup>3</sup> web interface </span> {{.ErrorBox}} <br/>
<hr/>
<h2> console </h2><div>
<p style="font-family:monospace; color:gray; font-size:0.75em">
{{.TextArea "hist" 8 84 ""}} <br/>
{{.TextBoxSize "command" 64 ""}} <br/>
<p style="font-weight:bold; color:red"> {{.Span "cmderr" }} </p>
</div><hr/>
<h2> geometry </h2><div>
<table>
<tr> <td>gridsize: </td> <td>{{.Span "nx"}} </td> <td> × {{.Span "ny"}}</td> <td> × {{.Span "nz"}} </td> </tr>
<tr> <td>cellsize: </td> <td>{{.Span "cx"}} </td> <td> × {{.Span "cy"}}</td> <td> × {{.Span "cz"}} nm<sup>3</sup> </td> </tr>
<tr> <td>worldsize:</td> <td>{{.Span "wx"}} </td> <td> × {{.Span "wy"}}</td> <td> × {{.Span "wz"}} nm<sup>3</sup> </td> </tr>
</table>
</div><hr/>
<h2> solver </h2><div>
<table>
<tr style="background-color:white"> <td>
<table>
<tr> <td> {{.Button "break"}}</td> <td> status: {{.Span "solverstatus" "initializing"}} </td></tr>
<tr> <td> {{.Button "run"}} </td> <td> {{.NumBox "runtime" 1e-9}}s</td></tr>
<tr> <td> {{.Button "steps"}}</td> <td> {{.IntBox "runsteps" 1000}}</td></tr>
</table>
</td><td>
</td><td>
<table>
<tr> <td>step: </td><td>{{.Span "step"}} </td><td>time: </td><td>{{.Span "time"}}s </td></tr>
<tr> <td>dt: </td><td>{{.Span "dt"}}s </td><td>fixdt: </td><td>{{.NumBox "fixdt" 0}}s </td></tr>
<tr> <td>mindt: </td><td>{{.NumBox "mindt" 0}}s </td><td>maxdt: </td><td>{{.NumBox "maxdt" 0}}s </td></tr>
<tr> <td>err/step:</td><td>{{.Span "lasterr"}} </td><td>maxerr:</td><td>{{.NumBox "maxerr" 0}}/step</td></tr>
</table>
</td></tr>
</table>
</div><hr/>
<h2> parameters </h2><div>
<p class=ErrorBox>{{.Span "paramErr" ""}}</p>
<table>
<tr> <td> <b>Region </b> </td>
<td>{{.BeginSelect "sel_region"}}
<option value= -1> -1 </option>
{{range .Data.MakeRange 0 256}}
<option value= {{.}}> {{.}}</option>
{{end}}
{{.EndSelect}}</td> <td>(all regions = -1)</td> </tr>
{{range $k,$v := .Data.Params}}
<tr> <td>{{$k}}</td> {{range $.Data.CompBoxIds $k}} <td>{{$.TextBox . "0"}}</td> {{end}} <td> {{$v.Unit}}</td> </tr>
{{end}}
</table>
</div><hr/>
<h2> display </h2><div>
{{.BeginSelect "sel_render"}}
{{range $k,$v := .Data.Quants}} {{$.Option $k}} {{end}}
{{.EndSelect}}
component:
{{.BeginSelect "renderComp"}}
{{.Option ""}}
{{.Option "x"}}
{{.Option "y"}}
{{.Option "z"}}
{{.EndSelect}}
z slice: {{.IntBox "renderLayer" 0}}
zoom: {{.Range "renderScale" 1 32 32}}
<br/>
{{.Img "render" "/render/m"}}
</div><hr/>
<h2> gnuplot </h2><div>
Plot of "table.txt", provided table is being autosaved and gnuplot installed.<br>
<b>plot "table.txt" using {{.IntBox "usingX" 1}} : {{.IntBox "usingY" 2}} with lines </b><br/>
<p class=ErrorBox>{{.Span "plotErr"}}</p>
{{.Img "plot" "/plot/"}}
</div><hr/>
<h2> process </h2><div>
<table>
<tr> <td>host: </td> <td>{{.Span "hostname"}} </td> </tr>
<tr> <td>gpu: </td> <td>{{.Span "gpu"}} </td> </tr>
<tr> <td>walltime: </td> <td>{{.Span "walltime"}} </td> </tr>
<tr> <td>allocs: </td> <td>{{.Span "memstats"}} </td> </tr>
</table>
</div><hr/>
<div id="footer">
<br/>
<center>
mumax 3<br/>
Copyright 2012-2013 <a href="mailto:[email protected]">Arne Vansteenkiste</a>,
<a href="http://dynamat.ugent.be">Dynamat group</a>, Ghent University, Belgium.<br/>
You are free to modify and distribute this software under the terms of the
<a href="http://www.gnu.org/licenses/gpl-3.0.html">GPLv3 license</a>.
</center>
</div>
</body>
</html>