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
|
import OCP.RWStepFEA
from typing import *
from typing import Iterable as iterable
from typing import Iterator as iterator
from numpy import float64
_Shape = Tuple[int, ...]
import OCP.StepData
import OCP.Interface
import OCP.StepFEA
__all__ = [
"RWStepFEA_RWAlignedCurve3dElementCoordinateSystem",
"RWStepFEA_RWAlignedSurface3dElementCoordinateSystem",
"RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem",
"RWStepFEA_RWConstantSurface3dElementCoordinateSystem",
"RWStepFEA_RWCurve3dElementProperty",
"RWStepFEA_RWCurve3dElementRepresentation",
"RWStepFEA_RWCurveElementEndOffset",
"RWStepFEA_RWCurveElementEndRelease",
"RWStepFEA_RWCurveElementInterval",
"RWStepFEA_RWCurveElementIntervalConstant",
"RWStepFEA_RWCurveElementIntervalLinearlyVarying",
"RWStepFEA_RWCurveElementLocation",
"RWStepFEA_RWDummyNode",
"RWStepFEA_RWElementGeometricRelationship",
"RWStepFEA_RWElementGroup",
"RWStepFEA_RWElementRepresentation",
"RWStepFEA_RWFeaAreaDensity",
"RWStepFEA_RWFeaAxis2Placement3d",
"RWStepFEA_RWFeaCurveSectionGeometricRelationship",
"RWStepFEA_RWFeaGroup",
"RWStepFEA_RWFeaLinearElasticity",
"RWStepFEA_RWFeaMassDensity",
"RWStepFEA_RWFeaMaterialPropertyRepresentation",
"RWStepFEA_RWFeaMaterialPropertyRepresentationItem",
"RWStepFEA_RWFeaModel",
"RWStepFEA_RWFeaModel3d",
"RWStepFEA_RWFeaModelDefinition",
"RWStepFEA_RWFeaMoistureAbsorption",
"RWStepFEA_RWFeaParametricPoint",
"RWStepFEA_RWFeaRepresentationItem",
"RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion",
"RWStepFEA_RWFeaShellBendingStiffness",
"RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness",
"RWStepFEA_RWFeaShellMembraneStiffness",
"RWStepFEA_RWFeaShellShearStiffness",
"RWStepFEA_RWFeaSurfaceSectionGeometricRelationship",
"RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion",
"RWStepFEA_RWFreedomAndCoefficient",
"RWStepFEA_RWFreedomsList",
"RWStepFEA_RWGeometricNode",
"RWStepFEA_RWNode",
"RWStepFEA_RWNodeDefinition",
"RWStepFEA_RWNodeGroup",
"RWStepFEA_RWNodeRepresentation",
"RWStepFEA_RWNodeSet",
"RWStepFEA_RWNodeWithSolutionCoordinateSystem",
"RWStepFEA_RWNodeWithVector",
"RWStepFEA_RWParametricCurve3dElementCoordinateDirection",
"RWStepFEA_RWParametricCurve3dElementCoordinateSystem",
"RWStepFEA_RWParametricSurface3dElementCoordinateSystem",
"RWStepFEA_RWSurface3dElementRepresentation",
"RWStepFEA_RWVolume3dElementRepresentation"
]
class RWStepFEA_RWAlignedCurve3dElementCoordinateSystem():
"""
Read & Write tool for AlignedCurve3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_AlignedCurve3dElementCoordinateSystem) -> Any:
"""
Reads AlignedCurve3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_AlignedCurve3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_AlignedCurve3dElementCoordinateSystem) -> None:
"""
Writes AlignedCurve3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWAlignedSurface3dElementCoordinateSystem():
"""
Read & Write tool for AlignedSurface3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_AlignedSurface3dElementCoordinateSystem) -> Any:
"""
Reads AlignedSurface3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_AlignedSurface3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_AlignedSurface3dElementCoordinateSystem) -> None:
"""
Writes AlignedSurface3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWArbitraryVolume3dElementCoordinateSystem():
"""
Read & Write tool for ArbitraryVolume3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ArbitraryVolume3dElementCoordinateSystem) -> Any:
"""
Reads ArbitraryVolume3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ArbitraryVolume3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ArbitraryVolume3dElementCoordinateSystem) -> None:
"""
Writes ArbitraryVolume3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWConstantSurface3dElementCoordinateSystem():
"""
Read & Write tool for ConstantSurface3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ConstantSurface3dElementCoordinateSystem) -> Any:
"""
Reads ConstantSurface3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ConstantSurface3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ConstantSurface3dElementCoordinateSystem) -> None:
"""
Writes ConstantSurface3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurve3dElementProperty():
"""
Read & Write tool for Curve3dElementProperty
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_Curve3dElementProperty) -> Any:
"""
Reads Curve3dElementProperty
"""
def Share(self,ent : OCP.StepFEA.StepFEA_Curve3dElementProperty,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_Curve3dElementProperty) -> None:
"""
Writes Curve3dElementProperty
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurve3dElementRepresentation():
"""
Read & Write tool for Curve3dElementRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_Curve3dElementRepresentation) -> Any:
"""
Reads Curve3dElementRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_Curve3dElementRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_Curve3dElementRepresentation) -> None:
"""
Writes Curve3dElementRepresentation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementEndOffset():
"""
Read & Write tool for CurveElementEndOffset
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementEndOffset) -> Any:
"""
Reads CurveElementEndOffset
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementEndOffset,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementEndOffset) -> None:
"""
Writes CurveElementEndOffset
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementEndRelease():
"""
Read & Write tool for CurveElementEndRelease
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementEndRelease) -> Any:
"""
Reads CurveElementEndRelease
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementEndRelease,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementEndRelease) -> None:
"""
Writes CurveElementEndRelease
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementInterval():
"""
Read & Write tool for CurveElementInterval
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementInterval) -> Any:
"""
Reads CurveElementInterval
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementInterval,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementInterval) -> None:
"""
Writes CurveElementInterval
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementIntervalConstant():
"""
Read & Write tool for CurveElementIntervalConstant
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementIntervalConstant) -> Any:
"""
Reads CurveElementIntervalConstant
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementIntervalConstant,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementIntervalConstant) -> None:
"""
Writes CurveElementIntervalConstant
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementIntervalLinearlyVarying():
"""
Read & Write tool for CurveElementIntervalLinearlyVarying
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementIntervalLinearlyVarying) -> Any:
"""
Reads CurveElementIntervalLinearlyVarying
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementIntervalLinearlyVarying,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementIntervalLinearlyVarying) -> None:
"""
Writes CurveElementIntervalLinearlyVarying
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWCurveElementLocation():
"""
Read & Write tool for CurveElementLocation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_CurveElementLocation) -> Any:
"""
Reads CurveElementLocation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_CurveElementLocation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_CurveElementLocation) -> None:
"""
Writes CurveElementLocation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWDummyNode():
"""
Read & Write tool for DummyNode
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_DummyNode) -> Any:
"""
Reads DummyNode
"""
def Share(self,ent : OCP.StepFEA.StepFEA_DummyNode,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_DummyNode) -> None:
"""
Writes DummyNode
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWElementGeometricRelationship():
"""
Read & Write tool for ElementGeometricRelationship
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ElementGeometricRelationship) -> Any:
"""
Reads ElementGeometricRelationship
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ElementGeometricRelationship,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ElementGeometricRelationship) -> None:
"""
Writes ElementGeometricRelationship
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWElementGroup():
"""
Read & Write tool for ElementGroup
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ElementGroup) -> Any:
"""
Reads ElementGroup
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ElementGroup,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ElementGroup) -> None:
"""
Writes ElementGroup
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWElementRepresentation():
"""
Read & Write tool for ElementRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ElementRepresentation) -> Any:
"""
Reads ElementRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ElementRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ElementRepresentation) -> None:
"""
Writes ElementRepresentation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaAreaDensity():
"""
Read & Write tool for FeaAreaDensity
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaAreaDensity) -> Any:
"""
Reads FeaAreaDensity
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaAreaDensity,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaAreaDensity) -> None:
"""
Writes FeaAreaDensity
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaAxis2Placement3d():
"""
Read & Write tool for FeaAxis2Placement3d
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaAxis2Placement3d) -> Any:
"""
Reads FeaAxis2Placement3d
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaAxis2Placement3d,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaAxis2Placement3d) -> None:
"""
Writes FeaAxis2Placement3d
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaCurveSectionGeometricRelationship():
"""
Read & Write tool for FeaCurveSectionGeometricRelationship
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaCurveSectionGeometricRelationship) -> Any:
"""
Reads FeaCurveSectionGeometricRelationship
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaCurveSectionGeometricRelationship,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaCurveSectionGeometricRelationship) -> None:
"""
Writes FeaCurveSectionGeometricRelationship
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaGroup():
"""
Read & Write tool for FeaGroup
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaGroup) -> Any:
"""
Reads FeaGroup
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaGroup,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaGroup) -> None:
"""
Writes FeaGroup
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaLinearElasticity():
"""
Read & Write tool for FeaLinearElasticity
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaLinearElasticity) -> Any:
"""
Reads FeaLinearElasticity
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaLinearElasticity,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaLinearElasticity) -> None:
"""
Writes FeaLinearElasticity
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaMassDensity():
"""
Read & Write tool for FeaMassDensity
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaMassDensity) -> Any:
"""
Reads FeaMassDensity
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaMassDensity,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaMassDensity) -> None:
"""
Writes FeaMassDensity
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaMaterialPropertyRepresentation():
"""
Read & Write tool for FeaMaterialPropertyRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentation) -> Any:
"""
Reads FeaMaterialPropertyRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentation) -> None:
"""
Writes FeaMaterialPropertyRepresentation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaMaterialPropertyRepresentationItem():
"""
Read & Write tool for FeaMaterialPropertyRepresentationItem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentationItem) -> Any:
"""
Reads FeaMaterialPropertyRepresentationItem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentationItem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaMaterialPropertyRepresentationItem) -> None:
"""
Writes FeaMaterialPropertyRepresentationItem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaModel():
"""
Read & Write tool for FeaModel
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaModel) -> Any:
"""
Reads FeaModel
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaModel,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaModel) -> None:
"""
Writes FeaModel
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaModel3d():
"""
Read & Write tool for FeaModel3d
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaModel3d) -> Any:
"""
Reads FeaModel3d
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaModel3d,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaModel3d) -> None:
"""
Writes FeaModel3d
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaModelDefinition():
"""
Read & Write tool for FeaModelDefinition
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaModelDefinition) -> Any:
"""
Reads FeaModelDefinition
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaModelDefinition,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaModelDefinition) -> None:
"""
Writes FeaModelDefinition
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaMoistureAbsorption():
"""
Read & Write tool for FeaMoistureAbsorption
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaMoistureAbsorption) -> Any:
"""
Reads FeaMoistureAbsorption
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaMoistureAbsorption,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaMoistureAbsorption) -> None:
"""
Writes FeaMoistureAbsorption
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaParametricPoint():
"""
Read & Write tool for FeaParametricPoint
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaParametricPoint) -> Any:
"""
Reads FeaParametricPoint
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaParametricPoint,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaParametricPoint) -> None:
"""
Writes FeaParametricPoint
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaRepresentationItem():
"""
Read & Write tool for FeaRepresentationItem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaRepresentationItem) -> Any:
"""
Reads FeaRepresentationItem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaRepresentationItem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaRepresentationItem) -> None:
"""
Writes FeaRepresentationItem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaSecantCoefficientOfLinearThermalExpansion():
"""
Read & Write tool for FeaSecantCoefficientOfLinearThermalExpansion
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaSecantCoefficientOfLinearThermalExpansion) -> Any:
"""
Reads FeaSecantCoefficientOfLinearThermalExpansion
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaSecantCoefficientOfLinearThermalExpansion,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaSecantCoefficientOfLinearThermalExpansion) -> None:
"""
Writes FeaSecantCoefficientOfLinearThermalExpansion
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaShellBendingStiffness():
"""
Read & Write tool for FeaShellBendingStiffness
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaShellBendingStiffness) -> Any:
"""
Reads FeaShellBendingStiffness
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaShellBendingStiffness,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaShellBendingStiffness) -> None:
"""
Writes FeaShellBendingStiffness
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaShellMembraneBendingCouplingStiffness():
"""
Read & Write tool for FeaShellMembraneBendingCouplingStiffness
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaShellMembraneBendingCouplingStiffness) -> Any:
"""
Reads FeaShellMembraneBendingCouplingStiffness
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaShellMembraneBendingCouplingStiffness,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaShellMembraneBendingCouplingStiffness) -> None:
"""
Writes FeaShellMembraneBendingCouplingStiffness
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaShellMembraneStiffness():
"""
Read & Write tool for FeaShellMembraneStiffness
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaShellMembraneStiffness) -> Any:
"""
Reads FeaShellMembraneStiffness
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaShellMembraneStiffness,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaShellMembraneStiffness) -> None:
"""
Writes FeaShellMembraneStiffness
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaShellShearStiffness():
"""
Read & Write tool for FeaShellShearStiffness
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaShellShearStiffness) -> Any:
"""
Reads FeaShellShearStiffness
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaShellShearStiffness,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaShellShearStiffness) -> None:
"""
Writes FeaShellShearStiffness
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaSurfaceSectionGeometricRelationship():
"""
Read & Write tool for FeaSurfaceSectionGeometricRelationship
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaSurfaceSectionGeometricRelationship) -> Any:
"""
Reads FeaSurfaceSectionGeometricRelationship
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaSurfaceSectionGeometricRelationship,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaSurfaceSectionGeometricRelationship) -> None:
"""
Writes FeaSurfaceSectionGeometricRelationship
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFeaTangentialCoefficientOfLinearThermalExpansion():
"""
Read & Write tool for FeaTangentialCoefficientOfLinearThermalExpansion
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion) -> Any:
"""
Reads FeaTangentialCoefficientOfLinearThermalExpansion
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FeaTangentialCoefficientOfLinearThermalExpansion) -> None:
"""
Writes FeaTangentialCoefficientOfLinearThermalExpansion
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFreedomAndCoefficient():
"""
Read & Write tool for FreedomAndCoefficient
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FreedomAndCoefficient) -> Any:
"""
Reads FreedomAndCoefficient
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FreedomAndCoefficient,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FreedomAndCoefficient) -> None:
"""
Writes FreedomAndCoefficient
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWFreedomsList():
"""
Read & Write tool for FreedomsList
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_FreedomsList) -> Any:
"""
Reads FreedomsList
"""
def Share(self,ent : OCP.StepFEA.StepFEA_FreedomsList,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_FreedomsList) -> None:
"""
Writes FreedomsList
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWGeometricNode():
"""
Read & Write tool for GeometricNode
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_GeometricNode) -> Any:
"""
Reads GeometricNode
"""
def Share(self,ent : OCP.StepFEA.StepFEA_GeometricNode,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_GeometricNode) -> None:
"""
Writes GeometricNode
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNode():
"""
Read & Write tool for Node
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_Node) -> Any:
"""
Reads Node
"""
def Share(self,ent : OCP.StepFEA.StepFEA_Node,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_Node) -> None:
"""
Writes Node
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeDefinition():
"""
Read & Write tool for NodeDefinition
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeDefinition) -> Any:
"""
Reads NodeDefinition
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeDefinition,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeDefinition) -> None:
"""
Writes NodeDefinition
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeGroup():
"""
Read & Write tool for NodeGroup
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeGroup) -> Any:
"""
Reads NodeGroup
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeGroup,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeGroup) -> None:
"""
Writes NodeGroup
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeRepresentation():
"""
Read & Write tool for NodeRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeRepresentation) -> Any:
"""
Reads NodeRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeRepresentation) -> None:
"""
Writes NodeRepresentation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeSet():
"""
Read & Write tool for NodeSet
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeSet) -> Any:
"""
Reads NodeSet
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeSet,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeSet) -> None:
"""
Writes NodeSet
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeWithSolutionCoordinateSystem():
"""
Read & Write tool for NodeWithSolutionCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeWithSolutionCoordinateSystem) -> Any:
"""
Reads NodeWithSolutionCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeWithSolutionCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeWithSolutionCoordinateSystem) -> None:
"""
Writes NodeWithSolutionCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWNodeWithVector():
"""
Read & Write tool for NodeWithVector
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_NodeWithVector) -> Any:
"""
Reads NodeWithVector
"""
def Share(self,ent : OCP.StepFEA.StepFEA_NodeWithVector,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_NodeWithVector) -> None:
"""
Writes NodeWithVector
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWParametricCurve3dElementCoordinateDirection():
"""
Read & Write tool for ParametricCurve3dElementCoordinateDirection
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateDirection) -> Any:
"""
Reads ParametricCurve3dElementCoordinateDirection
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateDirection,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateDirection) -> None:
"""
Writes ParametricCurve3dElementCoordinateDirection
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWParametricCurve3dElementCoordinateSystem():
"""
Read & Write tool for ParametricCurve3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateSystem) -> Any:
"""
Reads ParametricCurve3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ParametricCurve3dElementCoordinateSystem) -> None:
"""
Writes ParametricCurve3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWParametricSurface3dElementCoordinateSystem():
"""
Read & Write tool for ParametricSurface3dElementCoordinateSystem
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_ParametricSurface3dElementCoordinateSystem) -> Any:
"""
Reads ParametricSurface3dElementCoordinateSystem
"""
def Share(self,ent : OCP.StepFEA.StepFEA_ParametricSurface3dElementCoordinateSystem,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_ParametricSurface3dElementCoordinateSystem) -> None:
"""
Writes ParametricSurface3dElementCoordinateSystem
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWSurface3dElementRepresentation():
"""
Read & Write tool for Surface3dElementRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_Surface3dElementRepresentation) -> Any:
"""
Reads Surface3dElementRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_Surface3dElementRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_Surface3dElementRepresentation) -> None:
"""
Writes Surface3dElementRepresentation
"""
def __init__(self) -> None: ...
pass
class RWStepFEA_RWVolume3dElementRepresentation():
"""
Read & Write tool for Volume3dElementRepresentation
"""
def ReadStep(self,data : OCP.StepData.StepData_StepReaderData,num : int,ach : OCP.Interface.Interface_Check,ent : OCP.StepFEA.StepFEA_Volume3dElementRepresentation) -> Any:
"""
Reads Volume3dElementRepresentation
"""
def Share(self,ent : OCP.StepFEA.StepFEA_Volume3dElementRepresentation,iter : OCP.Interface.Interface_EntityIterator) -> None:
"""
Fills data for graph (shared items)
"""
def WriteStep(self,SW : OCP.StepData.StepData_StepWriter,ent : OCP.StepFEA.StepFEA_Volume3dElementRepresentation) -> None:
"""
Writes Volume3dElementRepresentation
"""
def __init__(self) -> None: ...
pass
|