File size: 34,534 Bytes
230484d |
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 1001 1002 1003 1004 1005 1006 1007 |
@prefix emmo: <http://emmo.info/emmo#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix software: <http://emmo.info/emmo/domain/oie/software#> .
@prefix manufacturing: <http://emmo.info/emmo/domain/oie/manufacturing#> .
@base <http://www.semanticweb.org/yoav/ontologies/2021/0/software-ontology> .
<http://emmo.info/emmo/domain/oie/software> rdf:type owl:Ontology ;
owl:imports <http://emmo.info/emmo/domain/oie/manufacturing> ;
dcterms:contributor "Access Technology (DE)" ,
"Goldbeck Consulting Ltd (UK)" ;
dcterms:creator "Daniele Toti" ,
"Georg J. Schmitz" ,
"Gerhard Goldbeck" ,
"Youness Bami" ,
"Pierluigi Del Nostro" ;
owl:versionInfo 0.1 .
####### EMMO mapping:
### CommercialProduct -> domain-manufacturing emmo:EMMO_00b85655_f20c_4e83_b90e_094e8ea7e48f
### ApplicationProgram -> middle-data emmo:EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b
### Program -> middle-data emmo:EMMO_65411b3d_c8d3_4111_86a9_a2ce0a64c647
### SystemProgram -> middle-data emmo:EMMO_58b17cac_3125_4486_9b9c_8c45ac254040
#################################################################
# Classes
#################################################################
### http://emmo.info/emmo/domain/oie/software#AMBER
software:AMBER rdf:type owl:Class ;
skos:prefLabel "AMBER"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#AtomisticSoftware
software:AtomisticSoftware rdf:type owl:Class ;
skos:prefLabel "Atomistic software"@en ;
rdfs:subClassOf software:ModellingSoftware .
### http://emmo.info/emmo/domain/oie/software#DLPoly
software:DLPoly rdf:type owl:Class ;
skos:prefLabel "DLPoly"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#GULP
software:GULP rdf:type owl:Class ;
skos:prefLabel "GULP"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#Gromacs
software:Gromacs rdf:type owl:Class ;
skos:prefLabel "Gromacs"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#ITAP-IMD
software:ITAP-IMD rdf:type owl:Class ;
skos:prefLabel "ITAP-IMD"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#LAMMPS
software:LAMMPS rdf:type owl:Class ;
skos:prefLabel "LAMMPS"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#Moldy
software:Moldy rdf:type owl:Class ;
skos:prefLabel "Moldy"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#NAMD
software:NAMD rdf:type owl:Class ;
skos:prefLabel "NAMD"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#AnyCasting
software:AnyCasting rdf:type owl:Class ;
skos:prefLabel "AnyCasting"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#CADmould
software:CADmould rdf:type owl:Class ;
skos:prefLabel "CADmould"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#CastingProcessSoftware
software:CastingProcessSoftware rdf:type owl:Class ;
skos:prefLabel "Casting Process software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#EKKCapCast
software:EKKCapCast rdf:type owl:Class ;
skos:prefLabel "EKKCapCast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Flow3D
software:Flow3D rdf:type owl:Class ;
skos:prefLabel "Flow3D"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Magmasoft
software:Magmasoft rdf:type owl:Class ;
skos:prefLabel "Magmasoft"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#MavisFlow
software:MavisFlow rdf:type owl:Class ;
skos:prefLabel "MavisFlow"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#MeltFlow
software:MeltFlow rdf:type owl:Class ;
skos:prefLabel "MeltFlow"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#ProCast
software:ProCast rdf:type owl:Class ;
skos:prefLabel "ProCast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#STAR-Cast
software:STAR-Cast rdf:type owl:Class ;
skos:prefLabel "STAR-Cast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Sigma
software:Sigma rdf:type owl:Class ;
skos:prefLabel "Sigma"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#SutCast
software:SutCast rdf:type owl:Class ;
skos:prefLabel "SutCast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#TherCast
software:TherCast rdf:type owl:Class ;
skos:prefLabel "TherCast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Vulcan
software:Vulcan rdf:type owl:Class ;
skos:prefLabel "Vulcan"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#WinCast
software:WinCast rdf:type owl:Class ;
skos:prefLabel "WinCast"@en ;
rdfs:subClassOf software:CastingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#ADFMolecularModelingSuite
software:ADFMolecularModelingSuite rdf:type owl:Class ;
skos:prefLabel "ADF molecular modeling suite"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#AMPAC
software:AMPAC rdf:type owl:Class ;
skos:prefLabel "AMPAC"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Abinit
software:Abinit rdf:type owl:Class ;
skos:prefLabel "Abinit"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#CASTEP
software:CASTEP rdf:type owl:Class ;
skos:prefLabel "CASTEP"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#CP2K
software:CP2K rdf:type owl:Class ;
skos:prefLabel "CP2K"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#CPMD
software:CPMD rdf:type owl:Class ;
skos:prefLabel "CPMD"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Crystal
software:Crystal rdf:type owl:Class ;
skos:prefLabel "Crystal"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#DACAPO
software:DACAPO rdf:type owl:Class ;
skos:prefLabel "DACAPO"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Dalton
software:Dalton rdf:type owl:Class ;
skos:prefLabel "Dalton"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Demon2k
software:Demon2k rdf:type owl:Class ;
skos:prefLabel "Demon2k"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#ELK
software:ELK rdf:type owl:Class ;
skos:prefLabel "ELK"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#ElectronicSoftware
software:ElectronicSoftware rdf:type owl:Class ;
skos:prefLabel "Electronic software"@en ;
rdfs:subClassOf software:ModellingSoftware .
### http://emmo.info/emmo/domain/oie/software#FLAPW-Fleur
software:FLAPW-Fleur rdf:type owl:Class ;
skos:prefLabel "FLAPW-Fleur"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Gaussian
software:Gaussian rdf:type owl:Class ;
skos:prefLabel "Gaussian"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#MaterialDesignMedea
software:MaterialDesignMedea rdf:type owl:Class ;
skos:prefLabel "Material Design Medea"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#MaterialStudioAccelrys
software:MaterialStudioAccelrys rdf:type owl:Class ;
skos:prefLabel "Material Studio Accelrys"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#QLDFT
software:QLDFT rdf:type owl:Class ;
skos:prefLabel "QLDFT"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#QuantumEspresso
software:QuantumEspresso rdf:type owl:Class ;
skos:prefLabel "QuantumEspresso"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#QuantumWise
software:QuantumWise rdf:type owl:Class ;
skos:prefLabel "QuantumWise"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#SIESTA
software:SIESTA rdf:type owl:Class ;
skos:prefLabel "SIESTA"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Schrodinger
software:Schrodinger rdf:type owl:Class ;
skos:prefLabel "Schrodinger"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#TURBOMOLE
software:TURBOMOLE rdf:type owl:Class ;
skos:prefLabel "TURBOMOLE"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#VASP
software:VASP rdf:type owl:Class ;
skos:prefLabel "VASP"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Wien2K
software:Wien2K rdf:type owl:Class ;
skos:prefLabel "Wien2K"@en ;
rdfs:subClassOf software:ElectronicSoftware .
### http://emmo.info/emmo/domain/oie/software#Abaqus
software:Abaqus rdf:type owl:Class ;
skos:prefLabel "Abaqus"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Algor
software:Algor rdf:type owl:Class ;
skos:prefLabel "Algor"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#COPRA
software:COPRA rdf:type owl:Class ;
skos:prefLabel "COPRA"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Catia
software:Catia rdf:type owl:Class ;
skos:prefLabel "Catia"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Deform
software:Deform rdf:type owl:Class ;
skos:prefLabel "Deform"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Forge3D
software:Forge3D rdf:type owl:Class ;
skos:prefLabel "Forge3D"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#FormingProcessSoftware
software:FormingProcessSoftware rdf:type owl:Class ;
skos:prefLabel "Forming Process software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#Helius
software:Helius rdf:type owl:Class ;
skos:prefLabel "Helius"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#LSDyna
software:LSDyna rdf:type owl:Class ;
skos:prefLabel "LSDyna"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Lagamine
software:Lagamine rdf:type owl:Class ;
skos:prefLabel "Lagamine"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Larstran
software:Larstran rdf:type owl:Class ;
skos:prefLabel "Larstran"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#MADYMO
software:MADYMO rdf:type owl:Class ;
skos:prefLabel "MADYMO"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#MSCNastran
software:MSCNastran rdf:type owl:Class ;
skos:prefLabel "MSC Nastran"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Metafor
software:Metafor rdf:type owl:Class ;
skos:prefLabel "Metafor"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Morfeo
software:Morfeo rdf:type owl:Class ;
skos:prefLabel "Morfeo"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#PAM-Crash
software:PAM-Crash rdf:type owl:Class ;
skos:prefLabel "PAM-Crash"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#QuickField
software:QuickField rdf:type owl:Class ;
skos:prefLabel "QuickField"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#SimLAM
software:SimLAM rdf:type owl:Class ;
skos:prefLabel "SimLAM"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#ZENCRACK
software:ZENCRACK rdf:type owl:Class ;
skos:prefLabel "ZENCRACK"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#simufact.forming
software:simufact.forming rdf:type owl:Class ;
skos:prefLabel "simufact.forming"@en ;
rdfs:subClassOf software:FormingProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#JoiningProcessSoftware
software:JoiningProcessSoftware rdf:type owl:Class ;
skos:prefLabel "Joining Process software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#LaserWeld3D
software:LaserWeld3D rdf:type owl:Class ;
skos:prefLabel "LaserWeld3D"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Simweld
software:Simweld rdf:type owl:Class ;
skos:prefLabel "Simweld"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Sorpas
software:Sorpas rdf:type owl:Class ;
skos:prefLabel "Sorpas"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Sysweld
software:Sysweld rdf:type owl:Class ;
skos:prefLabel "Sysweld"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#VirFacWelding
software:VirFacWelding rdf:type owl:Class ;
skos:prefLabel "VirFac welding"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#Weldware
software:Weldware rdf:type owl:Class ;
skos:prefLabel "Weldware"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#simufact.welding
software:simufact.welding rdf:type owl:Class ;
skos:prefLabel "simufact.welding"@en ;
rdfs:subClassOf software:JoiningProcessSoftware .
### http://emmo.info/emmo/domain/oie/software#ADINA
software:ADINA rdf:type owl:Class ;
skos:prefLabel "ADINA"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#Diffpack
software:Diffpack rdf:type owl:Class ;
skos:prefLabel "Diffpack"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#FEDEM
software:FEDEM rdf:type owl:Class ;
skos:prefLabel "FEDEM"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#GiD
software:GiD rdf:type owl:Class ;
skos:prefLabel "GiD"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#Hypermesh
software:Hypermesh rdf:type owl:Class ;
skos:prefLabel "Hypermesh"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#IDEAS
software:IDEAS rdf:type owl:Class ;
skos:prefLabel "IDEAS"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#Meshing
software:Meshing rdf:type owl:Class ;
skos:prefLabel "Meshing"@en ;
rdfs:subClassOf software:Pre-ProcessingSoftware .
### http://emmo.info/emmo/domain/oie/software#PATRAN
software:PATRAN rdf:type owl:Class ;
skos:prefLabel "PATRAN"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#VGStudio
software:VGStudio rdf:type owl:Class ;
skos:prefLabel "VGStudio"@en ;
rdfs:subClassOf software:Meshing .
### http://emmo.info/emmo/domain/oie/software#CAFE
software:CAFE rdf:type owl:Class ;
skos:prefLabel "CAFE"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#Clang
software:Clang rdf:type owl:Class ;
skos:prefLabel "Clang"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#DAMASK
software:DAMASK rdf:type owl:Class ;
skos:prefLabel "DAMASK"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#DICTRA
software:DICTRA rdf:type owl:Class ;
skos:prefLabel "DICTRA"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#FiPy
software:FiPy rdf:type owl:Class ;
skos:prefLabel "FiPy"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#GeoDict
software:GeoDict rdf:type owl:Class ;
skos:prefLabel "GeoDict"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#MICRESS
software:MICRESS rdf:type owl:Class ;
skos:prefLabel "MICRESS"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#MICROphase
software:MICROphase rdf:type owl:Class ;
skos:prefLabel "MICROphase"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#MMSP
software:MMSP rdf:type owl:Class ;
skos:prefLabel "MMSP"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#MaterialsStudioAccelrys
software:MaterialsStudioAccelrys rdf:type owl:Class ;
skos:prefLabel "Materials Studio Accelrys"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#Meses
software:Meses rdf:type owl:Class ;
skos:prefLabel "Meses"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#MicrostructureSoftware
software:MicrostructureSoftware rdf:type owl:Class ;
skos:prefLabel "Microstructure software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#OOF
software:OOF rdf:type owl:Class ;
skos:prefLabel "OOF"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#OpenPhase
software:OpenPhase rdf:type owl:Class ;
skos:prefLabel "OpenPhase"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#Pace3D
software:Pace3D rdf:type owl:Class ;
skos:prefLabel "Pace3D"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#Sphaeroism
software:Sphaeroism rdf:type owl:Class ;
skos:prefLabel "Sphaeroism"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#TC-Prisma
software:TC-Prisma rdf:type owl:Class ;
skos:prefLabel "TC-Prisma"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#WiseTex
software:WiseTex rdf:type owl:Class ;
skos:prefLabel "WiseTex"@en ;
rdfs:subClassOf software:MicrostructureSoftware .
### http://emmo.info/emmo/domain/oie/software#Simpleware
software:Simpleware rdf:type owl:Class ;
skos:prefLabel "Simpleware"@en ;
rdfs:subClassOf software:MicrostructureSoftware ;
rdfs:subClassOf software:Visualisation .
### http://emmo.info/emmo/domain/oie/software#ASE
software:ASE rdf:type owl:Class ;
skos:prefLabel "ASE"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#AViz
software:AViz rdf:type owl:Class ;
skos:prefLabel "AViz"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#AtomEye
software:AtomEye rdf:type owl:Class ;
skos:prefLabel "AtomEye"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#Jmol
software:Jmol rdf:type owl:Class ;
skos:prefLabel "Jmol"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#OVITO
software:OVITO rdf:type owl:Class ;
skos:prefLabel "OVITO"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#Paraview
software:Paraview rdf:type owl:Class ;
skos:prefLabel "Paraview"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#PrePost-ProcessingAtomistic
software:PrePost-ProcessingAtomistic rdf:type owl:Class ;
skos:prefLabel "Pre Post-Processing Atomistic"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#RasMol
software:RasMol rdf:type owl:Class ;
skos:prefLabel "RasMol"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#VMD
software:VMD rdf:type owl:Class ;
skos:prefLabel "VMD"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#XcrysDen
software:XcrysDen rdf:type owl:Class ;
skos:prefLabel "XcrysDen"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#pizza.py
software:pizza.py rdf:type owl:Class ;
skos:prefLabel "pizza.py"@en ;
rdfs:subClassOf software:PrePost-ProcessingAtomistic .
### http://emmo.info/emmo/domain/oie/software#CoatingThickSoftware
software:CoatingThickSoftware rdf:type owl:Class ;
skos:prefLabel "Coating thick software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#CoatingThin
software:CoatingThin rdf:type owl:Class ;
skos:prefLabel "Coating thin"@en ;
rdfs:subClassOf software:AtomisticSoftware .
### http://emmo.info/emmo/domain/oie/software#ContinuumSoftware
software:ContinuumSoftware rdf:type owl:Class ;
skos:prefLabel "Continuum software"@en ;
rdfs:subClassOf software:ModellingSoftware .
### http://emmo.info/emmo/domain/oie/software#CorrosionSoftware
software:CorrosionSoftware rdf:type owl:Class ;
skos:prefLabel "Corrosion software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#DatabaseSoftware
software:DatabaseSoftware rdf:type owl:Class ;
skos:prefLabel "Database software"@en ;
rdfs:subClassOf software:Software ;
rdfs:subClassOf emmo:EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b .
### http://emmo.info/emmo/domain/oie/software#Database
software:Database rdf:type owl:Class ;
skos:prefLabel "Database"@en ;
rdfs:subClassOf software:DatabaseSoftware .
### http://emmo.info/emmo/domain/oie/software#Linux
software:Linux rdf:type owl:Class ;
skos:prefLabel "Linux"@en ;
rdfs:subClassOf software:OperatingSystem .
### http://emmo.info/emmo/domain/oie/software#Mac
software:Mac rdf:type owl:Class ;
skos:prefLabel "Mac"@en ;
rdfs:subClassOf software:OperatingSystem .
### http://emmo.info/emmo/domain/oie/software#MachiningSoftware
software:MachiningSoftware rdf:type owl:Class ;
skos:prefLabel "Machining software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#MesoscopicSoftware
software:MesoscopicSoftware rdf:type owl:Class ;
skos:prefLabel "Mesoscopic software"@en ;
rdfs:subClassOf software:ModellingSoftware .
### http://emmo.info/emmo/domain/oie/software#ModellingSoftware
software:ModellingSoftware rdf:type owl:Class ;
skos:prefLabel "Modelling software"@en ;
rdfs:subClassOf software:Software ;
rdfs:subClassOf emmo:EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b .
### http://emmo.info/emmo/domain/oie/software#OperatingSystem
software:OperatingSystem rdf:type owl:Class ;
skos:prefLabel "Operating system"@en ;
rdfs:subClassOf software:Software ;
owl:equivalentClass emmo:EMMO_58b17cac_3125_4486_9b9c_8c45ac254040 .
### http://emmo.info/emmo/domain/oie/software#PlatformFramework
software:PlatformFramework rdf:type owl:Class ;
skos:prefLabel "PlatformFramework"@en ;
rdfs:subClassOf software:SoftwarePlatform .
### http://emmo.info/emmo/domain/oie/software#Post-ProcessingSoftware
software:Post-ProcessingSoftware rdf:type owl:Class ;
skos:prefLabel "Post-processing software"@en ;
rdfs:subClassOf software:Pre-PostProcessingSoftware .
### http://emmo.info/emmo/domain/oie/software#Pre-PostProcessingSoftware
software:Pre-PostProcessingSoftware rdf:type owl:Class ;
skos:prefLabel "Pre-Post processing software"@en ;
rdfs:subClassOf software:Software ;
rdfs:subClassOf emmo:EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b .
### http://emmo.info/emmo/domain/oie/software#Pre-ProcessingSoftware
software:Pre-ProcessingSoftware rdf:type owl:Class ;
skos:prefLabel "Pre-processing software"@en ;
rdfs:subClassOf software:Pre-PostProcessingSoftware .
### http://emmo.info/emmo/domain/oie/software#SinteringAMSoftware
software:SinteringAMSoftware rdf:type owl:Class ;
skos:prefLabel "Sintering AM software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#SoftwareEcosystem
software:SoftwareEcosystem rdf:type owl:Class ;
skos:prefLabel "SoftwareEcosystem"@en ;
rdfs:subClassOf software:SoftwarePlatform .
### http://emmo.info/emmo/domain/oie/software#SoftwarePlatform
software:SoftwarePlatform rdf:type owl:Class ;
skos:prefLabel "Software platform"@en ;
rdfs:subClassOf software:Software ;
rdfs:subClassOf emmo:EMMO_3b031fa9_8623_4ea5_8b57_bcafb70c5c8b .
### http://emmo.info/emmo/domain/oie/software#SoftwareUsingStructuredData
software:SoftwareUsingStructuredData rdf:type owl:Class ;
skos:prefLabel "Software using structured data"@en ;
rdfs:subClassOf software:DatabaseSoftware .
### http://emmo.info/emmo/domain/oie/software#SoftwareUsingUnstructuredData
software:SoftwareUsingUnstructuredData rdf:type owl:Class ;
skos:prefLabel "Software using unstructured data"@en ;
rdfs:subClassOf software:DatabaseSoftware .
### http://emmo.info/emmo/domain/oie/software#Windows
software:Windows rdf:type owl:Class ;
skos:prefLabel "Windows"@en ;
rdfs:subClassOf software:OperatingSystem .
### http://emmo.info/emmo/domain/oie/software#Software
software:Software rdf:type owl:Class ;
skos:prefLabel "Software"@en ;
rdfs:subClassOf manufacturing:EMMO_00b85655_f20c_4e83_b90e_094e8ea7e48f ;
owl:equivalentClass emmo:EMMO_65411b3d_c8d3_4111_86a9_a2ce0a64c647 ;
rdfs:comment "software, i.e., an entity representing a software product"^^xsd:string .
### http://emmo.info/emmo/domain/oie/software#CatCalc
software:CatCalc rdf:type owl:Class ;
skos:prefLabel "CatCalc"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#DICTRA
software:DICTRA rdf:type owl:Class ;
skos:prefLabel "DICTRA"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#FactSage
software:FactSage rdf:type owl:Class ;
skos:prefLabel "FactSage"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#JMatPro
software:JMatPro rdf:type owl:Class ;
skos:prefLabel "JMatPro"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#MTDate
software:MTDate rdf:type owl:Class ;
skos:prefLabel "MTDate"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#MatCalc
software:MatCalc rdf:type owl:Class ;
skos:prefLabel "MatCalc"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#OpenCalphad
software:OpenCalphad rdf:type owl:Class ;
skos:prefLabel "Open Calphad"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#Pandat
software:Pandat rdf:type owl:Class ;
skos:prefLabel "Pandat"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#PrecipiCalc
software:PrecipiCalc rdf:type owl:Class ;
skos:prefLabel "PrecipiCalc"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#TC-Prisma
software:TC-Prisma rdf:type owl:Class ;
skos:prefLabel "TC-Prisma"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#Thermo-Calc
software:Thermo-Calc rdf:type owl:Class ;
skos:prefLabel "Thermo-Calc"@en ;
rdfs:subClassOf software:ThermodynamicsSoftware .
### http://emmo.info/emmo/domain/oie/software#ThermodynamicsSoftware
software:ThermodynamicsSoftware rdf:type owl:Class ;
skos:prefLabel "Thermodynamics software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#Abaqus
software:Abaqus rdf:type owl:Class ;
skos:prefLabel "Abaqus"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#Ansys
software:Ansys rdf:type owl:Class ;
skos:prefLabel "Ansys"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#Diffpack
software:Diffpack rdf:type owl:Class ;
skos:prefLabel "Diffpack"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#FEAP
software:FEAP rdf:type owl:Class ;
skos:prefLabel "FEAP"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#FEDEM
software:FEDEM rdf:type owl:Class ;
skos:prefLabel "FEDEM"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#MSCMarc
software:MSCMarc rdf:type owl:Class ;
skos:prefLabel "MSC Marc"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#PAMCrash
software:PAMCrash rdf:type owl:Class ;
skos:prefLabel "PAMCrash"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#SAMCef
software:SAMCef rdf:type owl:Class ;
skos:prefLabel "SAMCef"@en ;
rdfs:subClassOf software:ThermomechanicsSoftware .
### http://emmo.info/emmo/domain/oie/software#ThermomechanicsSoftware
software:ThermomechanicsSoftware rdf:type owl:Class ;
skos:prefLabel "Thermomechanics software"@en ;
rdfs:subClassOf software:ContinuumSoftware .
### http://emmo.info/emmo/domain/oie/software#Paraview
software:Paraview rdf:type owl:Class ;
skos:prefLabel "Paraview"@en ;
rdfs:subClassOf software:Visualisation .
### http://emmo.info/emmo/domain/oie/software#Visualisation
software:Visualisation rdf:type owl:Class ;
skos:prefLabel "Visualisation"@en ;
rdfs:subClassOf software:Post-ProcessingSoftware . |