forked from modelica/www.modelica.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Different-views-of-Modelica.html
1099 lines (570 loc) · 24.2 KB
/
Different-views-of-Modelica.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
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
lang="en">
<head>
<meta http-equiv="Content-Type"
content="text/html;charset=utf-8" />
<meta name="generator" content="Plone - http://plone.org" />
<!-- Internet Explorer fix, forces IE8 into newest possible rendering
engine even if it's on an intranet. This has to be defined before any
script/style tags. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<base href="" /><!--[if lt IE 7]></base><![endif]-->
<link rel="kss-base-url" href="Different-views-of-Modelica.html" />
<style type="text/css">@import url(portal_css/ModelicaTheme/base-cachekey9711.css);</style>
<style type="text/css" media="screen">@import url(portal_css/ModelicaTheme/resourceplonetheme.modelica.stylesheetsmain-cachekey5974.css);</style>
<style type="text/css" media="all">@import url(portal_css/ModelicaTheme/ploneCustom-cachekey6679.css);</style>
<script type="text/javascript"
src="portal_javascripts/ModelicaTheme/jquery-cachekey7031.js">
</script>
<script type="text/javascript"
src="portal_javascripts/ModelicaTheme/resourcebase2-dom-fp-cachekey8726.js">
</script>
<script type="text/javascript"
src="portal_javascripts/ModelicaTheme/resourceProducts.PloneSoftwareCenter.fancyzoom.javascriptfancyzoom.min-cachekey3877.js">
</script>
<link rel="kinetic-stylesheet" type="text/css"
href="portal_kss/ModelicaTheme/at-cachekey7913.kss.css" />
<title>Different views of Modelica — Modelica Association</title>
<!-- IE6 workaround CSS/JS -->
<!--[if lte IE 7]>
<style type="text/css" media="all">@import url(#);</style>
<script type="text/javascript"
src="#">
</script>
<![endif]-->
<link rel="shortcut icon" type="image/x-icon"
href="favicon.ico" />
<link rel="home" href="index.html"
title="Front page" />
<link rel="contents" href="sitemap.html"
title="Site Map" />
<link rel="search"
href="#"
title="Search this site" />
<!-- Disable IE6 image toolbar -->
<meta http-equiv="imagetoolbar" content="no" />
</head>
<body class="section-Different-views-of-Modelica template-document_view"
dir="ltr">
<div id="visual-portal-wrapper">
<div id="portal-top">
<div id="portal-header">
<p class="hiddenStructure">
<a accesskey="2"
href="Different-views-of-Modelica.html#documentContent">Skip to content.</a> |
<a accesskey="6"
href="Different-views-of-Modelica.html#portlet-navigation-tree">Skip to navigation</a>
</p>
<ul id="portal-siteactions">
<li id="siteaction-sitemap"><a
href="sitemap.html" accesskey="3"
title="Site Map">Site Map</a></li>
<li id="siteaction-contact"><a
href="contact-info.html" accesskey="9"
title="Contact">Contact</a></li>
<li id="siteaction-privacypolicy (Privacy Policy)"><a
href="privacypolicy.html" accesskey=""
title="Privacy Policy">Privacy Policy</a></li>
</ul>
<div id="portal-searchbox">
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
google.load('search', '1', {language : 'en', style : google.loader.themes.V2_DEFAULT});
google.setOnLoadCallback(function() {
var customSearchOptions = {}; var customSearchControl = new google.search.CustomSearchControl(
'012709679349196287348:cicxkqlanxu', customSearchOptions);
customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
var options = new google.search.DrawOptions();
options.enableSearchboxOnly("http://www.google.com/cse?cx=012709679349196287348:cicxkqlanxu");
customSearchControl.draw('cse-search-form', options);
}, true);
</script>
<style type="text/css">
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
border-color: #D9D9D9;
background-image: none !important;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
border-color: #DDAAAA;
background-color: #DDCCCC;
background-image: none;
filter: none;
}
</style>
<style type="text/css">
#portal-searchbox {
width: 30%;
}
input.gsc-input, .gsc-input-box, .gsc-input-box-hover, .gsc-input-box-focus {
border-color: #D9D9D9;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
border-color: #DDAAAA;
background-color: #DDCCCC;
background-image: none;
filter: none;
}</style>
</div>
<!-- Original definition follows here: -->
<!--
<form id="searchbox"
action="search"
tal:attributes="action string:${view/navigation_root_url}/search">
<div class="LSBox">
<label for="searchGadget" class="hiddenStructure"
i18n:translate="text_search">Search Site</label>
<input name="SearchableText"
type="text"
size="18"
value=""
title="Search Site"
accesskey="4"
i18n:attributes="title title_search_site;"
tal:attributes="value request/SearchableText|nothing;
id view/search_input_id"
class="inputLabel" />
<input class="searchButton"
type="submit"
value="Search"
i18n:attributes="value label_search;" />
<div class="searchSection">
<input id="searchbox_currentfolder_only"
class="noborder"
type="checkbox"
name="path"
tal:attributes="value view/folder_path"
/>
<label for="searchbox_currentfolder_only"
i18n:translate="label_searchbox_currentfolder_only"
style="cursor: pointer">
only in current section
</label>
</div>
<div class="LSResult" id="LSResult" style=""><div class="LSShadow" id="LSShadow"></div></div>
</div>
</form>
<div id="portal-advanced-search"
class="hiddenStructure">
<a href="#"
tal:attributes="href string:${view/navigation_root_url}/search_form"
i18n:translate="label_advanced_search"
accesskey="5">
Advanced Search…
</a>
</div>
</div>
-->
<a id="portal-logo" accesskey="1"
href="index.html">
<img src="logo.svg" alt="" title="" width="128" /></a>
<h5 class="hiddenStructure">Sections</h5>
<ul id="portal-globalnav">
<li id="portaltab-index_html" class="selected"><a
href="index.html" title="">Home</a></li>
<li id="portaltab-association" class="plain"><a
href="association.html" title="">Modelica Association</a></li>
<li id="portaltab-modelicalanguage" class="plain"><a
href="modelicalanguage.html" title="">Modelica Language</a></li>
<li id="portaltab-libraries" class="plain"><a
href="libraries.html"
title="A collection of free and commercial libraries.">Modelica Libraries</a></li>
<li id="portaltab-documents" class="plain"><a
href="documents.html" title="">Documents</a></li>
<li id="portaltab-publications" class="plain"><a
href="publications.html" title="">Publications</a></li>
<li id="portaltab-education" class="plain"><a
href="education.html"
title="Modelica in education">Education</a></li>
<li id="portaltab-events" class="plain"><a
href="events.html"
title="A collection of Modelica events along with the work products from each event (proceedings, presentations, libraries, etc).">Events</a></li>
<li id="portaltab-tools" class="plain"><a
href="tools.html" title="">Tools</a></li>
<li id="portaltab-mastandards" class="plain"><a
href="mastandards.html" title="">MA Standards</a></li>
<li id="portaltab-projects" class="plain"><a
href="projects.html"
title="Modelica Association Projects">MA Projects</a></li>
<li id="portaltab-users" class="plain"><a
href="users.html"
title="Resources for users">Users</a></li>
<li id="portaltab-users-groups" class="plain"><a
href="users-groups.html"
title="In an effort to promote the development of Modelica communities, the Modelica Association provides this page as a way to advertise local users' groups. ">Users' Groups</a></li>
<li id="portaltab-devs" class="plain"><a
href="devs.html" title="">Developers</a></li>
<li id="portaltab-training" class="plain"><a
href="training.html"
title="Here is a list of companies offering Modelica training.">Training Courses</a></li>
<li id="portaltab-consultants" class="plain"><a
href="consultants.html"
title="If you need assistance for your modeling and simulation problems when
using Modelica, you may want to contact consultants in this area. In order
to help you in this respect, the Modelica Association is maintaining the
list of addresses below as a free service. ">Consultants</a></li>
<li id="portaltab-links" class="plain"><a
href="links.html"
title="Links for Modeling and Simulation">Links</a></li>
<li id="portaltab-jobs" class="plain"><a
href="jobs.html" title="">Jobs/Students</a></li>
<li id="portaltab-legal" class="plain"><a
href="legal.html"
title="Legal material related to the operation of the Modelica Association.">Legal Material</a></li>
<li id="portaltab-licenses" class="plain"><a
href="licenses.html"
title="This folder contains the licenses that the Modelica Association is using for the material provided to the public ">Licenses</a></li>
<li id="portaltab-howtos" class="plain"><a
href="howtos.html"
title="An area to keep documentation about Modelica Association internal processes (login required).
">How To</a></li>
<li id="portaltab-external-projects" class="plain"><a
href="external-projects.html"
title="External Projects related to Modelica or FMI">External Projects</a></li>
</ul>
</div>
<div id="portal-personaltools-wrapper">
<h5 class="hiddenStructure">Personal tools</h5>
<ul id="portal-personaltools" class="visualInline">
<li>
<a href="#">Log in</a>
</li>
</ul>
</div>
<div id="portal-breadcrumbs">
<span id="breadcrumbs-you-are-here">You
are here:</span>
<a href="index.html">Home</a>
<span class="breadcrumbSeparator">
→
</span>
<span dir="ltr">
<span>Different views of Modelica</span>
</span>
</div>
</div>
<div class="visualClear" id="clear-space-before-wrapper-table"><!-- --></div>
<table id="portal-columns">
<tbody>
<tr>
<td id="portal-column-one">
<div class="visualPadding">
<div id="portletwrapper-706c6f6e652e6c656674636f6c756d6e0a636f6e746578740a2f506c6f6e650a6e617669676174696f6e"
class="portletWrapper kssattr-portlethash-706c6f6e652e6c656674636f6c756d6e0a636f6e746578740a2f506c6f6e650a6e617669676174696f6e">
<dl class="portlet portletNavigationTree">
<dt class="portletHeader">
<span class="portletTopLeft"></span>
<a href="sitemap.html" class="tile">Navigation</a>
<span class="portletTopRight"></span>
</dt>
<dd class="portletItem lastItem">
<ul class="navTree navTreeLevel0">
<li class="navTreeItem navTreeTopNode">
<div>
<a href="index.html" class=""
title="The purpose of this web site is to provide information about the open access standards and associated open source software of the Modelica Association.">
<img src="site_icon.gif"
height="16" width="16" alt="" />
Home
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="association.html"
class="state-published" title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Modelica Association</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="modelicalanguage.html"
class="state-published" title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Modelica Language</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="libraries.html"
class="state-published navTreeFolderish"
title="A collection of free and commercial libraries.">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Modelica Libraries</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="documents.html"
class="state-published navTreeFolderish" title="">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Documents</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="publications.html"
class="state-published navTreeFolderish" title="">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Publications</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="education.html"
class="state-published navTreeFolderish"
title="Modelica in education">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Education</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="events.html"
class="state-published navTreeFolderish"
title="A collection of Modelica events along with the work products from each event (proceedings, presentations, libraries, etc).">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Events</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="tools.html"
class="state-published navTreeFolderish" title="">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Tools</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="mastandards.html"
class="state-published" title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>MA Standards</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="projects.html"
class="state-published"
title="Modelica Association Projects">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>MA Projects</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="users.html"
class="state-published"
title="Resources for users">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Users</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="users-groups.html"
class="state-published"
title="In an effort to promote the development of Modelica communities, the Modelica Association provides this page as a way to advertise local users' groups. ">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Users' Groups</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="devs.html"
class="state-published" title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Developers</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="training.html"
class="state-published"
title="Here is a list of companies offering Modelica training.">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Training Courses</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="consultants.html"
class="state-published"
title="If you need assistance for your modeling and simulation problems when
using Modelica, you may want to contact consultants in this area. In order
to help you in this respect, the Modelica Association is maintaining the
list of addresses below as a free service. ">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Consultants</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="links.html"
class="state-published"
title="Links for Modeling and Simulation">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Links</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker">
<div>
<a href="jobs.html"
class="state-published" title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Jobs/Students</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="legal.html"
class="state-published navTreeFolderish"
title="Legal material related to the operation of the Modelica Association.">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Legal Material</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="licenses.html"
class="state-published navTreeFolderish"
title="This folder contains the licenses that the Modelica Association is using for the material provided to the public ">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>Licenses</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="howtos.html"
class="state-published navTreeFolderish"
title="An area to keep documentation about Modelica Association internal processes (login required).
">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>How To</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeFolderish">
<div>
<a href="external-projects.html"
class="state-published navTreeFolderish"
title="External Projects related to Modelica or FMI">
<img alt="" width="16" height="16" src="folder_icon.gif" class="icon-Folder" />
<span>External Projects</span>
</a>
</div>
</li>
<li class="navTreeItem visualNoMarker navTreeCurrentNode">
<div>
<a href="Different-views-of-Modelica.html"
class="state-published navTreeCurrentItem navTreeCurrentNode"
title="">
<img alt="" width="16" height="16" src="document_icon.gif" class="icon-Page" />
<span>Different views of Modelica</span>
</a>
</div>
</li>
</ul>
<span class="portletBottomLeft"></span>
<span class="portletBottomRight"></span>
</dd>
</dl>
</div>
</div>
</td>
<td id="portal-column-content">
<div class="">
<div id="region-content" class="documentContent">
<span id="contentTopLeft"></span>
<span id="contentTopRight"></span>
<a name="documentContent"></a>
<dl class="portalMessage info" id="kssPortalMessage" style="display:none">
<dt>Info</dt>
<dd></dd>
</dl>
<div id="viewlet-above-content"></div>
<div id="content">
<h1 class="documentFirstHeading">
<span class="" id="parent-fieldname-title">
Different views of Modelica
</span>
</h1>
<div class="documentByLine" id="plone-document-byline">
</div>
<p class="documentDescription">
<span class="" id="parent-fieldname-description">
</span>
</p>
<div class="" id="parent-fieldname-text">
<p> <br />
The image below shows different views of Modelica: <strong>Libraries</strong> of model components, models in <strong>textual</strong> or <strong>schematic</strong> view, model <strong>animation</strong>, and <strong>plots</strong> of model signals.</p>
<p>
<img src="#" alt="Different Views of Modelica" /></p>
</div>
<div class="relatedItems">
</div>
<div class="visualClear"><!-- --></div>
<div class="documentActions">