-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
852 lines (813 loc) · 39.1 KB
/
index.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
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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
<!DOCTYPE html>
<html lang="en" class="html">
<head>
<!-- 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="description" content="Simvascular is the only fully open-source software package providing a complete pipeline
from medical image data segmentation to patient specific blood flow simulation
and analysis.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="//vjs.zencdn.net/4.8/video-js.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- This applies styling to the elements that aren't generated from markdown -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/grayscale.css">
<link rel="stylesheet" href="css/standards.css">
<link rel="stylesheet" href="css/home.css">
<!-- browser tab labels -->
<link rel="shortcut icon" type="image/png" href="img/svlogo/svIcon.png"></link>
<title>SimVascular</title>
<!-- Google Analytics Manager -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-PQXFMVS01C"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-PQXFMVS01C");
</script>
</head>
<body>
<section class="header">
<div class="navBar" id="navBar">
<!-- icon of three bars to open navigation section -->
<div id="naviconholder">
<i class="fa-solid fa-bars" id="iconForSkip"></i>
</div>
<nav id="navElement">
<div id="navigationSection">
<!-- using a <table> element for the navigation bar -->
<table id="contentOfSkip">
<!-- first class is always "skipTo" -->
<!-- second class is the id corresponding to the section
that the user will skip to with the link -->
<!-- each new section has a new row in the table -->
<tr class="skipTo capabilities">
<th>
<p class="skipItem">Capabilities</p>
</th>
</tr>
<tr class="skipTo applications">
<th>
<p class="skipItem">Applications</p>
</th>
</tr>
<tr class="skipTo download">
<th>
<p class="skipItem">Download</p>
</th>
</tr>
<tr class="skipTo documentation">
<th>
<p class="skipItem">Documentation</p>
</th>
</tr>
<tr class="skipTo support">
<th>
<p class="skipItem">Support</p>
</th>
</tr>
<tr class="skipTo gallery">
<th>
<p class="skipItem">Gallery</p>
</th>
</tr>
<tr class="skipTo repository">
<th>
<p class="skipItem">Model Repository</p>
</th>
</tr>
<tr class="skipTo gateway">
<th>
<p class="skipItem">Gateway</p>
</th>
</tr>
<tr class="skipTo socials">
<th>
<p class="skipItem">Socials</p>
</th>
</tr>
<tr class="skipTo news">
<th>
<p class="skipItem">Recent News</p>
</th>
</tr>
<tr class="skipTo team">
<th>
<p class="skipItem">Team</p>
</th>
</tr>
<tr class="skipTo industry_support">
<th>
<p class="skipItem">Industry Support</p>
</th>
</tr>
<tr class="skipTo institutions">
<th>
<p class="skipItem">Institutions</p>
</th>
</tr>
<tr class="skipTo acknowledgements">
<th>
<p class="skipItem">Acknowledgements</p>
</th>
</tr>
</table>
</div>
</nav>
</div>
<div class="topLeftLogo">
<div class="headerLogoContainer">
<img id="logo" class="headerLogoImage" src="img/svlogo/svLogoTitle.png" alt="SimVascular Logo"></img>
</div>
</div>
</section>
<section class="body">
<div class="firstHeader" style="height: 100%">
<!-- background-image is the hero image -->
<div class="introDescription">
<h1 class="hero_title">Simvascular</h1>
</div>
</div>
<div class="section">
<div class="newSectionHeader">
<h1 id="capabilities">Its Capabilities</h1>
</div>
<div class="newSectionContent removePadding">
<p class="subText" style="padding-left: 12%; padding-right: 12%; font-size: 22px">
Simvascular is the only fully open-source software package providing a complete pipeline
from medical image data segmentation to patient specific blood flow simulation
and analysis.
</p>
<div class="checklist container">
<!-- uses <ul> and <li> to organize capabilities section -->
<div class="row gx-5" style="width: 100%;">
<ul class="col-lg-6 col-12 p-5">
<li class="capabilitiesHeader">
Model construction
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Manual path identification and segmentation
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Automatic segmentation using ML
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Automatic surface model generation
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Meshing with advanced options (e.g., boundary layer, local refinement)
</li>
</ul>
<ul class="col-lg-6 col-12 p-5">
<li class="capabilitiesHeader">
High performance finite element solver for 3D simulations of vascular hemodynamics
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
FSI (Fluid-structure interaction)
</li>
<li class="indented">
<i class="fa-sharp fa-solid fa-check"></i>
CMM (Coupled momentum method)
</li>
<li class="indented">
<i class="fa-sharp fa-solid fa-check"></i>
ALE (Arbitrary Lagrangian Method)
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Navier-Stokes equations with fixed arterial wall
</li>
</ul>
<ul class="col-lg-6 col-12 p-5">
<li class="capabilitiesHeader">
High performance finite element solver cardiac modeling
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Electrophysiology
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Active contraction
</li>
</ul>
<ul class="col-lg-6 col-12 p-5">
<li class="capabilitiesHeader">
Reduced ordered modeling
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
0D solver
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
1D solver
</li>
<li>
<i class="fa-sharp fa-solid fa-check"></i>
Coupling of 0D and 3D models to simulate physiological boundary conditions
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="applications">Suite of Applications</h1>
</div>
<div class="newSectionContent">
<!-- the applications section has two rows -->
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 col-12">
<div class="applicationsHeader">
<h2>SimVascular</h2>
</div>
<div class="applicationsText">
<p> An interactive application for implementing all components
of the image-based pipeline</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="applicationsHeader">
<h2>svSolver</h2>
</div>
<div class="applicationsText">
<p>A parallel computational fluid dynamics (CFD) finite element
solver incorporating boundary conditions useful for blood flow
simulations</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 col-12">
<div class="applicationsHeader">
<h2>svFSIplus</h2>
</div>
<div class="applicationsText">
<p>A parallel multi-physics finite element solver,
including ALE-based fluid-structure interaction (FSI),
designed for computational modeling of the
cardiovascular system</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="applicationsHeader">
<h2>svOneDSolver</h2>
</div>
<div class="applicationsText">
<p>A reduced-order solver for the hemodynamics in
deformable 1D vascular networks</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="applicationsHeader">
<h2>svZeroDSolver</h2>
</div>
<div class="applicationsText">
<p>A reduced-order solver for the hemodynamics in zerodimensional
lumped parameter models of vascular networks</p>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<div class="section">
<div class="newSectionHeader">
<h1 id="download">Download Simvascular</h1>
</div>
<div class="newSectionContent removePadding">
<!-- this <div> contains the license terms button and terms -->
<div>
<div style="width: 100%;">
<h4 class="media-heading centerTitleText" id="licenseTerms">License Terms</h4><br>
</div>
<div class="media-body" id="toggleLicense" style="display: none">
<div class="BioPar justifiedText">
<h6 class="media-heading text-Left top-buffer">SimVascular components svModel, svMesh, svPre, and svPost are provided under the full BSD license subject to the terms below:</h6>
<p class="LegalStuff">
Copyright © 1998-2007 Stanford University, Charles Taylor, Nathan Wilson, Ken Wang. See SimVascular Acknowledgements file for additional contributors to the source code.
<br>
<br>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
<br>
<br>
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
<br>
<br>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</p>
<h6 class="media-heading text-Left">The SimVascular solver, including svSolver and svLS, is provided under a modified BSD-license subject to the permissions below:</h6>
<p class="LegalStuff">
This software is Copyright © 2014 The Regents of the University of California. All Rights Reserved.
Permission to copy, modify, and distribute this software and its documentation for educational, research and non-profit purposes, without fee, and without a written agreement is hereby granted, provided that the above copyright notice, this paragraph and the following three paragraphs appear in all copies.
<br>
<br>
Permission to make commercial use of this software may be obtained by contacting:
<br>
<br>
Technology Transfer Office<br>
9500 Gilman Drive, Mail Code 0910<br>
University of California<br>
La Jolla, CA 92093-0910<br>
(858) 534-5815<br>
<br>
<br>
This software program and documentation are copyrighted by The Regents of the University of California. The software program and documentation are supplied "as is", without any accompanying services from The Regents. The Regents does not warrant that the operation of the program will be uninterrupted or error-free. The end-user understands that the program was developed for research purposes and is advised not to rely exclusively on the program for any reason.
<br>
<br>
IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
</p>
<h6 class="media-heading text-Left">Licensing terms for external open source packages</h6>
<p class="LegalStuff">
ITK: <a target="_blank" href="https://www.itk.org/ITK/project/license.html">https://www.itk.org/ITK/project/license.html</a><br>
VTK: <a target="_blank" href="https://www.vtk.org/VTK/project/license.html">https://www.vtk.org/VTK/project/license.html</a><br>
Tetgen: <a target="_blank" href="https://wias-berlin.de/software/tetgen/1.5/agpl-3.0-standalone.html">https://wias-berlin.de/software/tetgen/1.5/agpl-3.0-standalone.html</a><br>
</p>
<h6 class="media-heading text-Left">Commercial components</h6>
<p class="LegalStuff">
MeshSim users should contact simmetrix for licensing information.
</p>
<h6 class="media-heading text-Left">Additional license information</h6>
<p class="LegalStuff">
Please see the additional license information contained in the SimVascular source code.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-12 downloadLinks">
<a role="button" target="_blank" href="https://simtk.org/frs/index.php?group_id=188" class="btn btn-outline-light">Access installation package</a>
</div>
<div class="col-lg-6 col-12 downloadLinks">
<a role="button" target="_blank" href="https://simtk.org/projects/sv_tests" class="btn btn-outline-light">Download example projects</a>
</div>
</div>
</div>
</div>
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="documentation">Documentation</h1>
</div>
<div class="newSectionContent removePadding" style="text-align:center">
<div class="containingDocsSection col-md-6 col-12">
<div class="docHeader">
<h2 class="media-heading">
<i class="iconInHeader fa-solid fa-user"></i>
User Guides
</h2>
</div>
<div class="docSection">
<!-- place User Guide documentation links here -->
<div class="col-md-6 col-12">
<a class="docLinks" target="_blank" href="documentation/quickguide.html">Getting Started</a><br>
<a class="docLinks" target="_blank" href="documentation/modeling.html">Modeling</a><br>
<a class="docLinks" target="_blank" href="documentation/meshing.html">Meshing</a><br>
<a class="docLinks" target="_blank" href="documentation/flowsolver.html">Simulation</a><br>
<a class="docLinks" target="_blank" href="documentation/svfsiplus.html">svFSIplus</a><br>
</div>
<div class="col-md-6 col-12">
<a class="docLinks" target="_blank" href="documentation/simcardio.html">SimCardio</a><br>
<a class="docLinks" target="_blank" href="documentation/rom_simulation.html">ROM Simulation</a><br>
<a class="docLinks" target="_blank" href="documentation/genbc.html">General B.C.</a><br>
<a class="docLinks" target="_blank" href="documentation/python_interface.html">Python Interface</a><br>
<a class="docLinks" target="_blank" href="documentation/references.html">References</a><br>
</div>
</div>
</div>
<div class="containingDocsSection col-md-6 col-12">
<div class="docHeader">
<h2 class="media-heading">
<i class="iconInHeader fa-solid fa-stethoscope" style="padding-right: 15px"></i>
Clinical Case Studies</h2>
</div>
<div class="docSection">
<!-- place Clinical Test Case documentation links here -->
<a class="docLinks" target="_blank" href="clinical/coronary.html">Coronary Normal</a><br>
<a class="docLinks" target="_blank" href="clinical/aortofemoral1.html">Aortofemoral Normal - 1</a><br>
<a class="docLinks" target="_blank" href="clinical/aortofemoral2.html">Aortofemoral Normal - 2</a><br>
<a class="docLinks" target="_blank" href="clinical/pulmonary.html">Healthy Pulmonary</a><br>
<a class="docLinks" target="_blank" href="https://simtk.org/projects/sv_tests">All Demo Projects</a>
</div>
</div>
</div>
</div>
<div class="section">
<div class="newSectionHeader">
<h1 id="support">Getting Support</h1>
</div>
<div class="newSectionContent supportContainer" style="text-align: center;">
<p class="supportDescription">Ask questions and interact with users on <a href="https://simtk.org/forums/viewforum.php?f=188" target="_blank">our public forum</a>.</p>
<p class="supportDescription">View our <a target="_blank" href="https://github.com/SimVascular">GitHub repository</a> and suggest new features or report bugs.</p>
</div>
</div>
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="support">Contributing</h1>
</div>
<div class="newSectionContent supportContainer" style="text-align: center;">
<p class="supportDescription">SimVascular is an open-source project and we welcome contributions! All development happens in our solvers' <a target="_blank" href="https://github.com/SimVascular">GitHub repositories</a>. Please read our <a href="https://github.com/SimVascular/.github/blob/main/CODE_OF_CONDUCT.md" target="_blank">Code of Conduct</a> and <a href="https://github.com/SimVascular/.github/blob/main/CONTRIBUTING.md" target="_blank">Contributing Guidelines</a>.</p>
</div>
</div>
<div class="section">
<div class="newSectionHeader">
<h1 id="gallery">Gallery</h1>
</div>
<!-- the commented code below can be used to add animations -->
<!-- code for animations can be found in home.js -->
<div class="newSectionContent" style="padding-bottom: 30px;">
<!-- <div class="col-sm-6 col-12">
<div class="col-sm-6 col-12 headerForGalleryContainer">
<div class="headerForGallery">
<h2>
<i class="fa-solid fa-image" style="padding-right: 20px"></i>
Pictures
</h2>
</div>
</div>
<div> -->
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full images with numbers and message Info -->
<div class="slides picSlides">
<img src="img/gallery/first_panel.png" style="width:100%">
<div class="caption">BLOOD FLOW IN CABG SIMULATION</div>
</div>
<div class="slides picSlides">
<img src="img/gallery/second_panel.png" style="width:100%">
<div class="caption">BLOOD VELOCITY DISTRIBUTION IN CABG SIMULATION</div>
</div>
<div class="slides picSlides">
<img src="img/gallery/third_panel.png" style="width:100%">
<div class="caption">BLOOD VELOCITY IN CORONARY ANEURISM</div>
</div>
<div class="slides picSlides">
<img src="img/gallery/fourth_panel.png" style="width:100%">
<div class="caption">HEMI-FONTAN CAVOPULMONARY CONNECTION</div>
</div>
<!-- Back and forward buttons -->
<a class="back" onclick="plusPicSlides(-1)">❮</a>
<a class="forward" onclick="plusPicSlides(1)">❯</a>
</div>
<!-- The circles/dots -->
<div class="dotsContainer">
<div style="margin:auto; width: fit-content;">
<span class="dots picDots" onclick="currentPicSlide(0)"></span>
<span class="dots picDots" onclick="currentPicSlide(1)"></span>
<span class="dots picDots" onclick="currentPicSlide(2)"></span>
<span class="dots picDots" onclick="currentPicSlide(3)"></span>
</div>
</div>
</div>
</div>
<!-- <div class="col-sm-6 col-12">
<div class="col-sm-6 col-12 headerForGalleryContainer">
<div class="headerForGallery">
<h2>
<i class="fa-solid fa-video" style="padding-right: 20px"></i>
Animations
</h2>
</div>
</div> -->
<!-- <div>
<div>
<div class="slideshow-container">
<div class="slides animeSlides">
<video loop="" id="div_video_html5_api" class="vjs-tech" preload="none" data-setup="{}" src="animation1.mp4">
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>
<div class="caption">BLOOD VELOCITY IN CORONARY ANEURISM</div>
</div>
<div class="slides animeSlides">
<img src="img/Img_Gallery_02.png" style="width:100%">
<div class="Info">BLOOD VELOCITY DISTRIBUTION IN CABG SIMULATION</div>
</div>
<div class="slides animeSlides">
<img src="img/Img_Gallery_03.png" style="width:100%">
<div class="Info">BLOOD VELOCITY IN CORONARY ANEURISM</div>
</div>
<div class="slides animeSlides">
<img src="img/Img_Gallery_04.png" style="width:100%">
<div class="Info">HEMI-FONTAN CAVOPULMONARY CONNECTION</div>
</div>
<a class="back" onclick="plusAnimeSlide(-1)">❮</a>
<a class="forward" onclick="plusAnimeSlide(1)">❯</a>
</div>
<div class="dotsContainer">
<div style="margin:auto; width: fit-content;">
<span class="dots animeDots" onclick="currentAnimeSlide(0)"></span>
<span class="dots animeDots" onclick="currentAnimeSlide(1)"></span>
<span class="dots animeDots" onclick="currentAnimeSlide(2)"></span>
<span class="dots animeDots" onclick="currentAnimeSlide(3)"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>-->
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="repository">The Vascular Model Repository</h1>
</div>
<div class="newSectionContent" style="margin-bottom: 35px">
<div class="row">
<span class="describeVMR col-lg-6 col-12">
<div class="subHeader">
<h2 style="margin: 15px 0">What it is</h2>
</div>
<p style="text-align: justify;">The <a href="https://www.vascularmodel.com/" target="_blank">Vascular Model Repository</a>, a sister project of SimVascular, is a library of computational models of normal and diseased human cardiovascular and pulmonary anatomy and input and output boundary conditions for various physiologic states. Most models in the repository were created with SimVascular.</p>
<div class="subHeader">
<h2 style="margin: 15px 0">Its purpose</h2>
</div>
<div>
<p style="text-align: justify; margin: 0">These models can be used to simulate cardiovascular and pulmonary solid and fluid mechanics and will provide spatially and temporally-resolved benchmark solutions that can be used by academic, government and industry researchers to verify their computational methods. The SimVascular project provides an open source package for simulation to accompany the data provided in the model repository.</p>
</div>
</span>
<!-- the code below embeds the VMR website -->
<span class="embedVMRcontainer col-lg-6 col-12">
<embed id="embedVMR" type="text/html" src="https://www.vascularmodel.com/" width="100%" height="100%">
</span>
</div>
</div>
</div>
<div class="Section">
<div class="newSectionHeader">
<h1 id="gateway">Supercomputing Gateway</h1>
</div>
<div class="newSectionContent">
<p class="gatewayText">The <a target="_blank" href="https://gateway.simvascular.org/">SimVascular Supercomputing Gateway</a> provides access to High-Performance Computing (HPC) clusters for running simulations using SimVascular CFD solvers. Simulations benefit from the performance levels that only large-scale HPC systems can offer and typically run an order of magnitude faster than on most workstations.</p>
</div>
</div>
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="socials">Socials</h1>
</div>
<div class="newSectionContent" style="text-align: center;">
<p style="padding-bottom: 15px;" class="subText">Follow us to stay up to date on the latest from Simvascular</p>
<div class="col-md-6 col-12">
<div style="max-width: 75%; margin: auto;">
<h2>
<a href="https://twitter.com/simvascular?lang=en" target="_blank">
<i class="iconInHeader fa-brands fa-twitter"></i>Twitter</a>
</h2>
<p>Visit <a href="https://twitter.com/simvascular?lang=en" target="_blank">our Twitter page</a> for announcements on and the latest from Simvascular</p>
</div>
</div>
<div class="col-md-6 col-12">
<div style="max-width: 75%; margin: auto;">
<h2>
<a href="https://www.youtube.com/channel/UCT61XgTRqpfb39Hyio9IqGQ" target="_blank">
<i class="iconInHeader fa-brands fa-youtube"></i>Youtube</a>
</h2>
<p>Visit <a href="https://www.youtube.com/channel/UCT61XgTRqpfb39Hyio9IqGQ" target="_blank">our Youtube Channel</a> for online tutorials on how to use the SimVascular suite of software applications</p>
</div>
</div>
<div class="col-md-6 col-12">
<div style="max-width: 75%; margin: auto;">
<h2>
<a href="https://www.facebook.com/groups/835227759855853/" target="_blank">
<i class="iconInHeader fa-brands fa-facebook"></i>Facebook</a>
</h2>
<p>Visit <a href="https://www.facebook.com/groups/835227759855853/" target="_blank">our Facebook page</a> for announcements on and the latest from Simvascular</p>
</div>
</div>
<div class="col-md-6 col-12">
<div style="max-width: 75%; margin: auto;">
<h2>
<a href="https://simtk.org/mailman/listinfo/simvascular-news" target="_blank">
<i class="iconInHeader fa-solid fa-envelope"></i>News mailing list</a>
</h2>
<p><a href="https://simtk.org/mailman/listinfo/simvascular-news" target="_blank">Sign up here</a> to the mailing list for updates or visit the <a href="https://simtk.org/pipermail/simvascular-news/" target="_blank">Simvascular News Archive</a> for past mail.</p>
</div>
</div>
</div>
</div>
<div class="Section">
<div class="newSectionHeader">
<h1 id="news">Recent News</h1>
</div>
<div class="newSectionContent removePadding">
<!-- add newNews panels here -->
<div class="newNews">
<div class="row">
<div class="col-sm-6 col-12 news_label"><i class="iconInHeader fa-regular fa-calendar"></i>Event</div>
<div class="col-sm-6 col-12 news_date"><p>JUNE 11 - 14, 2024</p></div>
</div>
<div class="news_name">
<a target="_blank" href="https://sb3c.org/program-at-a-glance/workshops/">
Workshop at SB<sup>3</sup>C
</a>
</div>
<div class="news_place">
Takes place in Lake Geneva, Wisconsin
</div>
</div>
<div class="newNews">
<div class="row">
<div class="col-sm-6 col-12 news_label"><i class="iconInHeader fa-regular fa-calendar"></i>Event</div>
<div class="col-sm-6 col-12 news_date"><p>MAY 3 - 5, 2023</p></div>
</div>
<div class="news_name">
<a target="_blank" href="https://www.cmbbe-symposium.com/2023/workshops/">
Workshop at the CMBBE symposium
</a>
</div>
<div class="news_place">
Takes place in Paris, France
</div>
</div>
<div class="newNews">
<div class="row">
<div class="col-sm-6 col-12 news_label"><i class="iconInHeader fa-regular fa-calendar"></i>Event</div>
<div class="col-sm-6 col-12 news_date"><p>JUNE 4 - 8, 2023</p></div>
</div>
<div class="news_name">
<a target="_blank" href="https://sb3c.org/program-at-a-glance/workshops/">
Workshop at SB<sup>3</sup>C
</a>
</div>
<div class="news_place">
Takes place in Vail, Colorado
</div>
</div>
</div>
</div>
<div class="everyOtherSection" style="padding-bottom: 30px">
<div class="newSectionHeader">
<h1 id="team">Team</h1>
</div>
<div class="team-container">
<div class="row">
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://profiles.stanford.edu/alison-marsden" target="_blank">
<div class="team-content">
<img src="img/team/amarsden.jpeg" alt="Image of Alison Marsden">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Alison Marsden</p>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://me.berkeley.edu/people/shawn-shadden/" target="_blank">
<div class="team-content">
<img src="img/team/sshadden.jpeg" alt="Image of Shawn Shadden">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Shawn Shadden</p>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://profiles.stanford.edu/david-parker" target="_blank">
<div class="team-content">
<img src="img/team/dparker.jpg" alt="Image of Dave Parker">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Dave Parker</p>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://www.me.columbia.edu/faculty/vijay-vedula" target="_blank">
<div class="team-content">
<img src="img/team/vvedula.jpg" alt="Image of Vijay Vedula">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Vijay Vedula</p>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://profiles.stanford.edu/martin-pfaller" target="_blank">
<div class="team-content">
<img src="img/team/mpfaller.jpeg" alt="Image of Martin Pfaller">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Martin Pfaller</p>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-6">
<div class="team-item">
<div class="team-triangle">
<a href="https://profiles.stanford.edu/luca-pegolotti" target="_blank">
<div class="team-content" id="lpegolotti">
<img src="img/team/lpegolotti.jpeg" alt="Image of Luca Pegolotti">
<div class="team-hover text-center" style="cursor:pointer">
<p style="font-size: 17px;">Luca Pegolotti</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="Section">
<div class="newSectionHeader">
<h1 id="industry_support"> Industry Support </h1>
</div>
<div class="newSectionContent">
<p class="gatewayText"> The SimVascular team is available to aid industry partners via independent consulting related to medical device design and evaluation as well as implementation of new software features. Our team has experience performing finite element analysis for established and early stage industry partners including catheters, valves, stents, mechanical circulatory assist devices, and novel devices for pediatric cardiology. Please contact Professor Marsden directly at [email protected] with inquiries.
</p>
</div>
</div>
<div class="Section">
<div class="newSectionHeader">
<h1 id="institutions">Institutions</h1>
</div>
<div class="newSectionContent">
<div class="row creditsRow">
<div class="col-sm-6 col-12 creditContainer">
<img class="creditImage" src="img/institutions/stanfordmedicine.jpg" alt="Logo for Stanford Medicine"></img>
</div>
<div class="col-sm-6 col-12 creditContainer">
<img class="creditImage" src="img/institutions/ucberkeley.png" alt="Logo for UC Berkeley"></img>
</div>
<div class="col-sm-4 col-12 creditContainer">
<img class="creditImage" src="img/institutions/osmsc.png" alt="Logo for osmsc"></img>
</div>
</div>
</div>
</div>
<div class="everyOtherSection">
<div class="newSectionHeader">
<h1 id="acknowledgements">Acknowledgements</h1>
</div>
<div class="newSectionContent">
<div class="row creditsRow gx-5">
<div class="col-sm-6 col-12 creditContainer p-5">
<img class="creditImage" src="img/institutions/simtk.png" alt="Logo for SimTK"></img>
</div>
<div class="col-sm-6 col-12 creditContainer p-5">
<img class="creditImage" src="img/institutions/nsf.png" alt="Logo for NSF"></img>
</div>
<div class="col-sm-6 col-12 creditContainer p-5">
<img class="creditImage" src="img/institutions/NIH.png" alt="Logo for NIH"></img>
</div>
<div class="col-sm-6 col-12 creditContainer p-5">
<img class="creditImage" src="img/institutions/addventures.png" alt="Logo for SimTK"></img>
</div>
</div>
</div>
<div class="copyright">
<h5 class="innerCopyright">Copyright © SimVascular Development Team - 2023</h5>
</div>
</div>
</section>
<section class="skipToTopSection">
<p id="skipToTop"><i class="fa-solid fa-arrow-up"></i></p>
</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/[email protected]/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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/home.js"></script>
</body>
</html>