-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgallerytutorial.html
More file actions
573 lines (564 loc) · 21.9 KB
/
gallerytutorial.html
File metadata and controls
573 lines (564 loc) · 21.9 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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="img/favicon.ico?v=2"/>
<link rel="mask-icon" href="{{ base_path }}/img/favicon.ico?v=M44lzPylqQ"
color="#000000">
<!-- This corresponds to a fontawesome kit but can be customized -->
<script
src="https://kit.fontawesome.com/48644805cd.js"
crossorigin="anonymous"
></script>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap"
rel="stylesheet"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<!-- Styles -->
<link rel="stylesheet" href="css/style.css?v=1.0.1" />
<link rel="stylesheet" href="css/style_documentation.css?v=1.0.1" />
<title>Vascular Model Repository</title>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-YVVR1546XJ"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-YVVR1546XJ");
</script>
</head>
<body>
<nav class="navbar sticky-top navbar-expand-lg navbar-custom">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">VMR</a>
<button
class="navbar-toggler ml-auto custom-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarSupportedContent"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Repository
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="dataset.html">Dataset</a>
<a class="dropdown-item" href="additionaldata.html"
>Additional data</a
>
<a class="dropdown-item" href="statistics.html">Statistics</a>
</div>
</li>
<li class="nav-item dropdown active">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Support
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="documentation.html"
>Documentation</a
>
<a class="dropdown-item" href="tutorial.html">Tutorial</a>
<a class="dropdown-item" href="FAQs.html">FAQs</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contributors.html"
>Contributors <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="contacts.html">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="skiptoTop">
<span id="top"><i class="fa-solid fa-circle-arrow-up"></i></span>
</section>
<div class="container-fluid main-content centerBox">
<h1>Using the Gallery</h1>
<div class="row" id="model-gallery">
<div class="col-lg-3 col-sm-12 tOC">
<form>
<a class="accordion" href="tutorial.html"
>Tutorial</a
>
<br />
<a class="accordion" href="filtertutorial.html"
>Using the Filters</a
>
<a class="accordion" href="menututorial.html"
>Using the Menu Bar</a
>
<a class="accordion" href="sharingtutorial.html"
>Sharing Models</a
>
<br />
<a class="accordion" href="#Helpful_tools">Helpful tools</a>
<a class="accordion" href="#Viewing_model_details"
>Viewing model details</a
>
<a class="accordion" href="#Viewing_simulation_results"
>Viewing simulation results</a
>
<a class="accordion" href="#Selecting_models">Selecting models</a>
<!-- end panel -->
</form>
<!-- end form for table of contents -->
</div>
<!-- end table of contents-->
<div class="col-lg-9 col-12">
<div id="documentation">
<h2 id="Helpful_tools">Helpful tools</h2>
<p>
To find the model gallery, visit the
<a href="dataset.html"">Dataset</a> page.
</p>
<p>
To navigate the gallery, you may find the filter bar and menu bar
helpful. To learn more about these features, go to
<a href="filtertutorial.html"
>Using the Filters</a
>
and
<a href="menututorial.html">Using the Menu Bar</a
>.
</p>
<p>
To learn more about the files you can download and the VMR naming
convention for models and simulation results, go to the
<a href="documentation.html">Documentation</a>
page.
</p>
<p>
To learn more about sharing models with others, go to the
<a href="sharingtutorial.html">Sharing Models</a>.
</p>
<p>
Still have questions? Visit the
<a href="FAQs.html">FAQs</a> page or
<a href="contacts.html">contact us</a>.
</p>
<h2 id="Viewing_model_details">Viewing model details</h2>
<p>
To learn more about one specific model, click on the image of the model
and an informational panel will appear.
</p>
<img
class="inline"
src="img/help/gallery/model_gallery_highlight.png"
alt="Image of gallery with highlight on magnifying glass"
/>
<img
class="inline"
src="img/help/gallery/viewing_model.jpg"
alt="Image of panel that opens when you click on the magnifying glass"
/>
<p>
The informational panel tells you the name of the model you are
viewing and, below the name, the details of the model you are
viewing.
</p>
<img
class="inline"
src="img/help/gallery/viewing_model_name.png"
alt="Image of panel highlight on name"
/>
<img
class="inline"
src="img/help/gallery/viewing_model_details.png"
alt="Image of panel highlight on details"
/>
<p>
If the model has any additional notes, they will be shown under
the details window. You are able to view the size of project
you are viewing.
</p>
<img
class="inline"
src="img/help/gallery/viewing_model_notes.png"
alt="Image of panel highlight on additional notes"
/>
<img
class="inline"
src="img/help/gallery/viewing_model_size.png"
alt="Image of panel highlight on size information"
/>
<p>
You can click on the share icon to copy a shareable link
to share models with others. For this example model, the link
would be
<a
target="_blank"
style="word-wrap: break-word"
href="https://www.vascularmodel.com/share.html?NThOWTE4OU4_"
>https://www.vascularmodel.com/share.html?NThOWTE4OU4_</a>.
To view how to use this link, go to
<a
href="sharingtutorial.html#Viewing_the_shared_model"
>viewing a shared model</a
>.
</p>
<img
src="img/help/gallery/viewing_model_sharebutton.png"
alt="Image of panel highlight on share button"
/>
<p>
Clicking on the button with the PDF icon allows you to access the PDF
description file associated with the model you are viewing.
</p>
<img
class="inline"
src="img/help/gallery/viewing_model_pdfbutton.png"
alt="Image of panel highlight on pdf button"
/>
<img
class="inline"
src="img/help/gallery/pdf_example.jpg"
alt="Image of panel highlight on pdf button"
/>
<p>
You can download the files of the project you are viewing
by clicking on the download icon. If you click on this icon, a
confirmation message will appear.
</p>
<img
class="inline"
src="img/help/gallery/viewing_model_downloadbutton.png"
alt="Image of panel highlight on download icon"
/>
<img
class="inline"
src="img/help/gallery/model_confirm_download.jpg"
alt="Image of panel highlight on download confirmation message"
/>
<p>
To exit the informational panel, you can click anywhere outside
the panel, or you can click on the close button located on the top
right of the panel.
</p>
<h2 id="Viewing_simulation_results">Viewing simulation results</h2>
<p>
When viewing a model that has simulation result files,
a Results tab will be visible at the top of the informational panel.
For more information on how to access this information panel to view
a model, go to
<a href="#Viewing_model_details"> viewing model details</a>.
</p>
<img
src="img/help/gallery/results_tab.png"
alt="Image of panel highlight on results tab"
/>
<p>
To view the model's simulation results, click on this Results tab.
The informational panel will now show details on the model's simulation results.
</p>
<img
src="img/help/gallery/viewing_results.jpg"
alt="Image of panel"
/>
<p>
To know which simulation result is showing, look at the top of the
informational panel. To view another simulation result from the same model,
click on the dropdown menu and toggle between the various
avaliable simulation results.
</p>
<img
class="inline"
src="img/help/gallery/viewing_results_name.png"
alt="Image of panel highlight on name"
/>
<img
class="inline"
src="img/help/gallery/gallery_toggle_results.jpg"
alt="Image of panel highlight on dropdown menu"
/>
<p>
Under the dropdown menu, there is a details panel, which specifies helpful
information on the simulation result that you are viewing. Under these details,
there is information on the size of the simulation result file.
</p>
<img
class="inline"
src="img/help/gallery/viewing_results_2_details.png"
alt="Image of panel highlight on detail"
/>
<img
class="inline"
src="img/help/gallery/viewing_results_2_size.png"
alt="Image of panel highlight on size"
/>
<p>
To share the simulation result you are viewing, click on the share button.
For this example simulation result, the link copied
would be
<a
target="_blank"
style="word-wrap: break-word"
href="https://www.vascularmodel.com/share.html?NDVOWTI4Mk5S"
>https://www.vascularmodel.com/share.html?NDVOWTI4Mk5S</a>.
To view how to use this link, go to
<a
href="sharingtutorial.html#Viewing_the_shared_result"
>viewing a shared result</a
>.
</p>
<img
src="img/help/gallery/viewing_results_2_sharebutton.png"
alt="Image of panel highlight on share button"
/>
<p>
To download the simulation result that you are viewing, click on the
download button. If you click on this icon, a
confirmation message will appear.
</p>
<img
class="inline"
src="img/help/gallery/viewing_results_2_downloadbutton.png"
alt="Image of panel highlight on detail"
/>
<img
class="inline"
src="img/help/gallery/results_confirm_download.jpg"
alt="Image of panel highlight on size"
/>
<p>
To return to the model, click on the Model tab at the top of the panel.
To exit the informational panel, you can click anywhere outside
the panel, or you can click on the close button located on the top
right of the panel.
</p>
<h2 id="Selecting_models">Selecting models</h2>
<p>
Instead of downloading or sharing individual models,
you may want to work with multiple models at once.
</p>
<p>
To select and deselect a model to add it to or remove it from your
collection of selected models, click on the select icon on the
top left of the model image in the gallery. The model's border will
appear highlighted when the model is selected.
</p>
<p>
To unselect a model, click on the now-checked select icon. The highlight
around the model's border will disappear accordingly.
</p>
<img
class="inline"
src="img/help/gallery/select_button.png"
alt="Image of gallery highlight on select button"
/>
<img
class="inline"
src="img/help/gallery/selected_model.jpg"
alt="Image of selected model"
/>
<p>
You can select as many models as you need this way, but you can also
select multiple models at once with the Select All
icon in the menu bar. For more information on this feature, go to
<a
href="menututorial.html#The_Select_and_Deselect_All_Icon"
>The Select and Deselect All Icon</a
>.
</p>
<p>
To view the models you have selected, click on the View Selected
icon in the menu bar. For more information on this feature, go to
<a
href="menututorial.html#The_View_Selected_Models_Icon"
>The View Selected Models Icon</a
>.
</p>
<p>
Once you have selected the models you want to download or share,
you can download or share them by clicking on the Download All icon
or the Get Shareable Link icon respectively. For more information on
these icons, go to
<a href="menututorial.html#The_Download_All_Icon"
>The Download All Icon</a
>
and
<a href="menututorial.html#The_Share_Icon"
>The Share Icon</a
>.
</p>
</div>
<!-- end documentation-->
</div>
<!-- end column-->
</div>
<!-- end row-->
</div>
<!-- end container -->
<section id="contact-section">
<div class="container">
<div class="row align-items-center">
<div class="col-md-4 col-12">
<div style="text-align: left">
<div class="contact-info">
<ul class="contact-address">
<li>
<i class="fa fa-map-marker fa-lg"></i> Clark Center
E1.3.<br /> 318
Campus Drive,<br />
Stanford, <br />
CA 94305-5428
</li>
<li><i class="fa fa-envelope"></i> simvascular@gmail.com</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div class="explore" style="text-align: left">
<h5>Explore</h5>
<div><a href="dataset.html">Dataset</a></div>
<div><a href="tutorial.html">Tutorial</a></div>
<div><a href="documentation.html">Documentation</a></div>
<div><a href="FAQs.html">FAQs</a></div>
<div><a href="contacts.html">Contact us</a></div>
</div>
</div>
<div class="col-md-4 col-12" style="text-align: center">
<div class="social-media">
<div>Follow SimVascular on social media</div>
<div class="container">
<div class="row">
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://www.facebook.com/groups/835227759855853"
target="_blank"
class="social-logo"
><i class="fa fa-facebook fa-lg"></i
></a>
</div>
</div>
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://twitter.com/simvascular"
target="_blank"
class="social-logo"
;
><i class="fa fa-twitter fa-lg"></i
></a>
</div>
</div>
<div class="col-4">
<div
href="#"
style="
display: flex;
justify-content: center;
font-size: 20px;
"
>
<a
href="https://www.youtube.com/channel/UCT61XgTRqpfb39Hyio9IqGQ"
target="_blank"
class="social-logo"
><i class="fa fa-youtube fa-lg"></i
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script src="js/jquery-2.1.1.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.14.3/dist/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/1.0.21/jquery.csv.min.js"></script>
<!-- <script src="js/jquery-2.1.1.js"></script> -->
<script src="js/jquery.mixitup.min.js"></script>
<script src="js/documentation.js?v=1.0.2"></script>
</body>
</html>