FourCIPP 1.26.0__py3-none-any.whl → 1.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fourcipp/config/4C_metadata.yaml +883 -253
- fourcipp/config/4C_schema.json +1202 -722
- fourcipp/fourc_input.py +30 -10
- fourcipp/version.py +2 -2
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/METADATA +1 -1
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/RECORD +10 -10
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/WHEEL +0 -0
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/entry_points.txt +0 -0
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/licenses/LICENSE +0 -0
- {fourcipp-1.26.0.dist-info → fourcipp-1.28.0.dist-info}/top_level.txt +0 -0
fourcipp/config/4C_schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"description": "Schema for 4C\nCommit hash:
|
|
2
|
+
"description": "Schema for 4C\nCommit hash: 1452a639b62ff7647e4c5beca1102b963879a6d6\nVersion: 2025.4.0-dev",
|
|
3
3
|
"type": "object",
|
|
4
4
|
"properties": {
|
|
5
5
|
"ALE DOMAIN": {
|
|
@@ -572,15 +572,23 @@
|
|
|
572
572
|
"description": "No description yet.",
|
|
573
573
|
"type": "object",
|
|
574
574
|
"properties": {
|
|
575
|
-
"
|
|
576
|
-
"title": "
|
|
577
|
-
"description": "
|
|
578
|
-
"type": "
|
|
575
|
+
"CONSTRAINT": {
|
|
576
|
+
"title": "CONSTRAINT (enum)",
|
|
577
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
578
|
+
"type": "string",
|
|
579
|
+
"enum": [
|
|
580
|
+
"strong",
|
|
581
|
+
"weak"
|
|
582
|
+
]
|
|
579
583
|
},
|
|
580
|
-
"
|
|
581
|
-
"title": "
|
|
582
|
-
"description": "
|
|
583
|
-
"type": "
|
|
584
|
+
"PARAMETRIZATION": {
|
|
585
|
+
"title": "PARAMETRIZATION (enum)",
|
|
586
|
+
"description": "Which type of beam parametrization should be used.",
|
|
587
|
+
"type": "string",
|
|
588
|
+
"enum": [
|
|
589
|
+
"tan",
|
|
590
|
+
"rot"
|
|
591
|
+
]
|
|
584
592
|
},
|
|
585
593
|
"MAT": {
|
|
586
594
|
"title": "MAT (int)",
|
|
@@ -589,7 +597,7 @@
|
|
|
589
597
|
},
|
|
590
598
|
"TRIADS": {
|
|
591
599
|
"title": "TRIADS (vector)",
|
|
592
|
-
"description": "
|
|
600
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
593
601
|
"type": "array",
|
|
594
602
|
"items": {
|
|
595
603
|
"title": "double",
|
|
@@ -600,15 +608,15 @@
|
|
|
600
608
|
},
|
|
601
609
|
"USE_FAD": {
|
|
602
610
|
"title": "USE_FAD (bool)",
|
|
603
|
-
"description": "
|
|
611
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
604
612
|
"default": false,
|
|
605
613
|
"type": "boolean"
|
|
606
614
|
}
|
|
607
615
|
},
|
|
608
616
|
"additionalProperties": false,
|
|
609
617
|
"required": [
|
|
610
|
-
"
|
|
611
|
-
"
|
|
618
|
+
"CONSTRAINT",
|
|
619
|
+
"PARAMETRIZATION",
|
|
612
620
|
"MAT",
|
|
613
621
|
"TRIADS"
|
|
614
622
|
]
|
|
@@ -629,15 +637,23 @@
|
|
|
629
637
|
"description": "No description yet.",
|
|
630
638
|
"type": "object",
|
|
631
639
|
"properties": {
|
|
632
|
-
"
|
|
633
|
-
"title": "
|
|
634
|
-
"description": "
|
|
635
|
-
"type": "
|
|
640
|
+
"CONSTRAINT": {
|
|
641
|
+
"title": "CONSTRAINT (enum)",
|
|
642
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
643
|
+
"type": "string",
|
|
644
|
+
"enum": [
|
|
645
|
+
"strong",
|
|
646
|
+
"weak"
|
|
647
|
+
]
|
|
636
648
|
},
|
|
637
|
-
"
|
|
638
|
-
"title": "
|
|
639
|
-
"description": "
|
|
640
|
-
"type": "
|
|
649
|
+
"PARAMETRIZATION": {
|
|
650
|
+
"title": "PARAMETRIZATION (enum)",
|
|
651
|
+
"description": "Which type of beam parametrization should be used.",
|
|
652
|
+
"type": "string",
|
|
653
|
+
"enum": [
|
|
654
|
+
"tan",
|
|
655
|
+
"rot"
|
|
656
|
+
]
|
|
641
657
|
},
|
|
642
658
|
"MAT": {
|
|
643
659
|
"title": "MAT (int)",
|
|
@@ -646,7 +662,7 @@
|
|
|
646
662
|
},
|
|
647
663
|
"TRIADS": {
|
|
648
664
|
"title": "TRIADS (vector)",
|
|
649
|
-
"description": "
|
|
665
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
650
666
|
"type": "array",
|
|
651
667
|
"items": {
|
|
652
668
|
"title": "double",
|
|
@@ -657,15 +673,15 @@
|
|
|
657
673
|
},
|
|
658
674
|
"USE_FAD": {
|
|
659
675
|
"title": "USE_FAD (bool)",
|
|
660
|
-
"description": "
|
|
676
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
661
677
|
"default": false,
|
|
662
678
|
"type": "boolean"
|
|
663
679
|
}
|
|
664
680
|
},
|
|
665
681
|
"additionalProperties": false,
|
|
666
682
|
"required": [
|
|
667
|
-
"
|
|
668
|
-
"
|
|
683
|
+
"CONSTRAINT",
|
|
684
|
+
"PARAMETRIZATION",
|
|
669
685
|
"MAT",
|
|
670
686
|
"TRIADS"
|
|
671
687
|
]
|
|
@@ -686,15 +702,23 @@
|
|
|
686
702
|
"description": "No description yet.",
|
|
687
703
|
"type": "object",
|
|
688
704
|
"properties": {
|
|
689
|
-
"
|
|
690
|
-
"title": "
|
|
691
|
-
"description": "
|
|
692
|
-
"type": "
|
|
705
|
+
"CONSTRAINT": {
|
|
706
|
+
"title": "CONSTRAINT (enum)",
|
|
707
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
708
|
+
"type": "string",
|
|
709
|
+
"enum": [
|
|
710
|
+
"strong",
|
|
711
|
+
"weak"
|
|
712
|
+
]
|
|
693
713
|
},
|
|
694
|
-
"
|
|
695
|
-
"title": "
|
|
696
|
-
"description": "
|
|
697
|
-
"type": "
|
|
714
|
+
"PARAMETRIZATION": {
|
|
715
|
+
"title": "PARAMETRIZATION (enum)",
|
|
716
|
+
"description": "Which type of beam parametrization should be used.",
|
|
717
|
+
"type": "string",
|
|
718
|
+
"enum": [
|
|
719
|
+
"tan",
|
|
720
|
+
"rot"
|
|
721
|
+
]
|
|
698
722
|
},
|
|
699
723
|
"MAT": {
|
|
700
724
|
"title": "MAT (int)",
|
|
@@ -703,7 +727,7 @@
|
|
|
703
727
|
},
|
|
704
728
|
"TRIADS": {
|
|
705
729
|
"title": "TRIADS (vector)",
|
|
706
|
-
"description": "
|
|
730
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
707
731
|
"type": "array",
|
|
708
732
|
"items": {
|
|
709
733
|
"title": "double",
|
|
@@ -714,15 +738,15 @@
|
|
|
714
738
|
},
|
|
715
739
|
"USE_FAD": {
|
|
716
740
|
"title": "USE_FAD (bool)",
|
|
717
|
-
"description": "
|
|
741
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
718
742
|
"default": false,
|
|
719
743
|
"type": "boolean"
|
|
720
744
|
}
|
|
721
745
|
},
|
|
722
746
|
"additionalProperties": false,
|
|
723
747
|
"required": [
|
|
724
|
-
"
|
|
725
|
-
"
|
|
748
|
+
"CONSTRAINT",
|
|
749
|
+
"PARAMETRIZATION",
|
|
726
750
|
"MAT",
|
|
727
751
|
"TRIADS"
|
|
728
752
|
]
|
|
@@ -17610,15 +17634,23 @@
|
|
|
17610
17634
|
"description": "No description yet.",
|
|
17611
17635
|
"type": "object",
|
|
17612
17636
|
"properties": {
|
|
17613
|
-
"
|
|
17614
|
-
"title": "
|
|
17615
|
-
"description": "
|
|
17616
|
-
"type": "
|
|
17637
|
+
"CONSTRAINT": {
|
|
17638
|
+
"title": "CONSTRAINT (enum)",
|
|
17639
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
17640
|
+
"type": "string",
|
|
17641
|
+
"enum": [
|
|
17642
|
+
"strong",
|
|
17643
|
+
"weak"
|
|
17644
|
+
]
|
|
17617
17645
|
},
|
|
17618
|
-
"
|
|
17619
|
-
"title": "
|
|
17620
|
-
"description": "
|
|
17621
|
-
"type": "
|
|
17646
|
+
"PARAMETRIZATION": {
|
|
17647
|
+
"title": "PARAMETRIZATION (enum)",
|
|
17648
|
+
"description": "Which type of beam parametrization should be used.",
|
|
17649
|
+
"type": "string",
|
|
17650
|
+
"enum": [
|
|
17651
|
+
"tan",
|
|
17652
|
+
"rot"
|
|
17653
|
+
]
|
|
17622
17654
|
},
|
|
17623
17655
|
"MAT": {
|
|
17624
17656
|
"title": "MAT (int)",
|
|
@@ -17627,7 +17659,7 @@
|
|
|
17627
17659
|
},
|
|
17628
17660
|
"TRIADS": {
|
|
17629
17661
|
"title": "TRIADS (vector)",
|
|
17630
|
-
"description": "
|
|
17662
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
17631
17663
|
"type": "array",
|
|
17632
17664
|
"items": {
|
|
17633
17665
|
"title": "double",
|
|
@@ -17638,15 +17670,15 @@
|
|
|
17638
17670
|
},
|
|
17639
17671
|
"USE_FAD": {
|
|
17640
17672
|
"title": "USE_FAD (bool)",
|
|
17641
|
-
"description": "
|
|
17673
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
17642
17674
|
"default": false,
|
|
17643
17675
|
"type": "boolean"
|
|
17644
17676
|
}
|
|
17645
17677
|
},
|
|
17646
17678
|
"additionalProperties": false,
|
|
17647
17679
|
"required": [
|
|
17648
|
-
"
|
|
17649
|
-
"
|
|
17680
|
+
"CONSTRAINT",
|
|
17681
|
+
"PARAMETRIZATION",
|
|
17650
17682
|
"MAT",
|
|
17651
17683
|
"TRIADS"
|
|
17652
17684
|
]
|
|
@@ -17667,15 +17699,23 @@
|
|
|
17667
17699
|
"description": "No description yet.",
|
|
17668
17700
|
"type": "object",
|
|
17669
17701
|
"properties": {
|
|
17670
|
-
"
|
|
17671
|
-
"title": "
|
|
17672
|
-
"description": "
|
|
17673
|
-
"type": "
|
|
17702
|
+
"CONSTRAINT": {
|
|
17703
|
+
"title": "CONSTRAINT (enum)",
|
|
17704
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
17705
|
+
"type": "string",
|
|
17706
|
+
"enum": [
|
|
17707
|
+
"strong",
|
|
17708
|
+
"weak"
|
|
17709
|
+
]
|
|
17674
17710
|
},
|
|
17675
|
-
"
|
|
17676
|
-
"title": "
|
|
17677
|
-
"description": "
|
|
17678
|
-
"type": "
|
|
17711
|
+
"PARAMETRIZATION": {
|
|
17712
|
+
"title": "PARAMETRIZATION (enum)",
|
|
17713
|
+
"description": "Which type of beam parametrization should be used.",
|
|
17714
|
+
"type": "string",
|
|
17715
|
+
"enum": [
|
|
17716
|
+
"tan",
|
|
17717
|
+
"rot"
|
|
17718
|
+
]
|
|
17679
17719
|
},
|
|
17680
17720
|
"MAT": {
|
|
17681
17721
|
"title": "MAT (int)",
|
|
@@ -17684,7 +17724,7 @@
|
|
|
17684
17724
|
},
|
|
17685
17725
|
"TRIADS": {
|
|
17686
17726
|
"title": "TRIADS (vector)",
|
|
17687
|
-
"description": "
|
|
17727
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
17688
17728
|
"type": "array",
|
|
17689
17729
|
"items": {
|
|
17690
17730
|
"title": "double",
|
|
@@ -17695,15 +17735,15 @@
|
|
|
17695
17735
|
},
|
|
17696
17736
|
"USE_FAD": {
|
|
17697
17737
|
"title": "USE_FAD (bool)",
|
|
17698
|
-
"description": "
|
|
17738
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
17699
17739
|
"default": false,
|
|
17700
17740
|
"type": "boolean"
|
|
17701
17741
|
}
|
|
17702
17742
|
},
|
|
17703
17743
|
"additionalProperties": false,
|
|
17704
17744
|
"required": [
|
|
17705
|
-
"
|
|
17706
|
-
"
|
|
17745
|
+
"CONSTRAINT",
|
|
17746
|
+
"PARAMETRIZATION",
|
|
17707
17747
|
"MAT",
|
|
17708
17748
|
"TRIADS"
|
|
17709
17749
|
]
|
|
@@ -17724,15 +17764,23 @@
|
|
|
17724
17764
|
"description": "No description yet.",
|
|
17725
17765
|
"type": "object",
|
|
17726
17766
|
"properties": {
|
|
17727
|
-
"
|
|
17728
|
-
"title": "
|
|
17729
|
-
"description": "
|
|
17730
|
-
"type": "
|
|
17767
|
+
"CONSTRAINT": {
|
|
17768
|
+
"title": "CONSTRAINT (enum)",
|
|
17769
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
17770
|
+
"type": "string",
|
|
17771
|
+
"enum": [
|
|
17772
|
+
"strong",
|
|
17773
|
+
"weak"
|
|
17774
|
+
]
|
|
17731
17775
|
},
|
|
17732
|
-
"
|
|
17733
|
-
"title": "
|
|
17734
|
-
"description": "
|
|
17735
|
-
"type": "
|
|
17776
|
+
"PARAMETRIZATION": {
|
|
17777
|
+
"title": "PARAMETRIZATION (enum)",
|
|
17778
|
+
"description": "Which type of beam parametrization should be used.",
|
|
17779
|
+
"type": "string",
|
|
17780
|
+
"enum": [
|
|
17781
|
+
"tan",
|
|
17782
|
+
"rot"
|
|
17783
|
+
]
|
|
17736
17784
|
},
|
|
17737
17785
|
"MAT": {
|
|
17738
17786
|
"title": "MAT (int)",
|
|
@@ -17741,7 +17789,7 @@
|
|
|
17741
17789
|
},
|
|
17742
17790
|
"TRIADS": {
|
|
17743
17791
|
"title": "TRIADS (vector)",
|
|
17744
|
-
"description": "
|
|
17792
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
17745
17793
|
"type": "array",
|
|
17746
17794
|
"items": {
|
|
17747
17795
|
"title": "double",
|
|
@@ -17752,15 +17800,15 @@
|
|
|
17752
17800
|
},
|
|
17753
17801
|
"USE_FAD": {
|
|
17754
17802
|
"title": "USE_FAD (bool)",
|
|
17755
|
-
"description": "
|
|
17803
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
17756
17804
|
"default": false,
|
|
17757
17805
|
"type": "boolean"
|
|
17758
17806
|
}
|
|
17759
17807
|
},
|
|
17760
17808
|
"additionalProperties": false,
|
|
17761
17809
|
"required": [
|
|
17762
|
-
"
|
|
17763
|
-
"
|
|
17810
|
+
"CONSTRAINT",
|
|
17811
|
+
"PARAMETRIZATION",
|
|
17764
17812
|
"MAT",
|
|
17765
17813
|
"TRIADS"
|
|
17766
17814
|
]
|
|
@@ -35008,15 +35056,23 @@
|
|
|
35008
35056
|
"description": "No description yet.",
|
|
35009
35057
|
"type": "object",
|
|
35010
35058
|
"properties": {
|
|
35011
|
-
"
|
|
35012
|
-
"title": "
|
|
35013
|
-
"description": "
|
|
35014
|
-
"type": "
|
|
35059
|
+
"CONSTRAINT": {
|
|
35060
|
+
"title": "CONSTRAINT (enum)",
|
|
35061
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
35062
|
+
"type": "string",
|
|
35063
|
+
"enum": [
|
|
35064
|
+
"strong",
|
|
35065
|
+
"weak"
|
|
35066
|
+
]
|
|
35015
35067
|
},
|
|
35016
|
-
"
|
|
35017
|
-
"title": "
|
|
35018
|
-
"description": "
|
|
35019
|
-
"type": "
|
|
35068
|
+
"PARAMETRIZATION": {
|
|
35069
|
+
"title": "PARAMETRIZATION (enum)",
|
|
35070
|
+
"description": "Which type of beam parametrization should be used.",
|
|
35071
|
+
"type": "string",
|
|
35072
|
+
"enum": [
|
|
35073
|
+
"tan",
|
|
35074
|
+
"rot"
|
|
35075
|
+
]
|
|
35020
35076
|
},
|
|
35021
35077
|
"MAT": {
|
|
35022
35078
|
"title": "MAT (int)",
|
|
@@ -35025,7 +35081,7 @@
|
|
|
35025
35081
|
},
|
|
35026
35082
|
"TRIADS": {
|
|
35027
35083
|
"title": "TRIADS (vector)",
|
|
35028
|
-
"description": "
|
|
35084
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
35029
35085
|
"type": "array",
|
|
35030
35086
|
"items": {
|
|
35031
35087
|
"title": "double",
|
|
@@ -35036,15 +35092,15 @@
|
|
|
35036
35092
|
},
|
|
35037
35093
|
"USE_FAD": {
|
|
35038
35094
|
"title": "USE_FAD (bool)",
|
|
35039
|
-
"description": "
|
|
35095
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
35040
35096
|
"default": false,
|
|
35041
35097
|
"type": "boolean"
|
|
35042
35098
|
}
|
|
35043
35099
|
},
|
|
35044
35100
|
"additionalProperties": false,
|
|
35045
35101
|
"required": [
|
|
35046
|
-
"
|
|
35047
|
-
"
|
|
35102
|
+
"CONSTRAINT",
|
|
35103
|
+
"PARAMETRIZATION",
|
|
35048
35104
|
"MAT",
|
|
35049
35105
|
"TRIADS"
|
|
35050
35106
|
]
|
|
@@ -35065,15 +35121,23 @@
|
|
|
35065
35121
|
"description": "No description yet.",
|
|
35066
35122
|
"type": "object",
|
|
35067
35123
|
"properties": {
|
|
35068
|
-
"
|
|
35069
|
-
"title": "
|
|
35070
|
-
"description": "
|
|
35071
|
-
"type": "
|
|
35124
|
+
"CONSTRAINT": {
|
|
35125
|
+
"title": "CONSTRAINT (enum)",
|
|
35126
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
35127
|
+
"type": "string",
|
|
35128
|
+
"enum": [
|
|
35129
|
+
"strong",
|
|
35130
|
+
"weak"
|
|
35131
|
+
]
|
|
35072
35132
|
},
|
|
35073
|
-
"
|
|
35074
|
-
"title": "
|
|
35075
|
-
"description": "
|
|
35076
|
-
"type": "
|
|
35133
|
+
"PARAMETRIZATION": {
|
|
35134
|
+
"title": "PARAMETRIZATION (enum)",
|
|
35135
|
+
"description": "Which type of beam parametrization should be used.",
|
|
35136
|
+
"type": "string",
|
|
35137
|
+
"enum": [
|
|
35138
|
+
"tan",
|
|
35139
|
+
"rot"
|
|
35140
|
+
]
|
|
35077
35141
|
},
|
|
35078
35142
|
"MAT": {
|
|
35079
35143
|
"title": "MAT (int)",
|
|
@@ -35082,7 +35146,7 @@
|
|
|
35082
35146
|
},
|
|
35083
35147
|
"TRIADS": {
|
|
35084
35148
|
"title": "TRIADS (vector)",
|
|
35085
|
-
"description": "
|
|
35149
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
35086
35150
|
"type": "array",
|
|
35087
35151
|
"items": {
|
|
35088
35152
|
"title": "double",
|
|
@@ -35093,15 +35157,15 @@
|
|
|
35093
35157
|
},
|
|
35094
35158
|
"USE_FAD": {
|
|
35095
35159
|
"title": "USE_FAD (bool)",
|
|
35096
|
-
"description": "
|
|
35160
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
35097
35161
|
"default": false,
|
|
35098
35162
|
"type": "boolean"
|
|
35099
35163
|
}
|
|
35100
35164
|
},
|
|
35101
35165
|
"additionalProperties": false,
|
|
35102
35166
|
"required": [
|
|
35103
|
-
"
|
|
35104
|
-
"
|
|
35167
|
+
"CONSTRAINT",
|
|
35168
|
+
"PARAMETRIZATION",
|
|
35105
35169
|
"MAT",
|
|
35106
35170
|
"TRIADS"
|
|
35107
35171
|
]
|
|
@@ -35122,15 +35186,23 @@
|
|
|
35122
35186
|
"description": "No description yet.",
|
|
35123
35187
|
"type": "object",
|
|
35124
35188
|
"properties": {
|
|
35125
|
-
"
|
|
35126
|
-
"title": "
|
|
35127
|
-
"description": "
|
|
35128
|
-
"type": "
|
|
35189
|
+
"CONSTRAINT": {
|
|
35190
|
+
"title": "CONSTRAINT (enum)",
|
|
35191
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
35192
|
+
"type": "string",
|
|
35193
|
+
"enum": [
|
|
35194
|
+
"strong",
|
|
35195
|
+
"weak"
|
|
35196
|
+
]
|
|
35129
35197
|
},
|
|
35130
|
-
"
|
|
35131
|
-
"title": "
|
|
35132
|
-
"description": "
|
|
35133
|
-
"type": "
|
|
35198
|
+
"PARAMETRIZATION": {
|
|
35199
|
+
"title": "PARAMETRIZATION (enum)",
|
|
35200
|
+
"description": "Which type of beam parametrization should be used.",
|
|
35201
|
+
"type": "string",
|
|
35202
|
+
"enum": [
|
|
35203
|
+
"tan",
|
|
35204
|
+
"rot"
|
|
35205
|
+
]
|
|
35134
35206
|
},
|
|
35135
35207
|
"MAT": {
|
|
35136
35208
|
"title": "MAT (int)",
|
|
@@ -35139,7 +35211,7 @@
|
|
|
35139
35211
|
},
|
|
35140
35212
|
"TRIADS": {
|
|
35141
35213
|
"title": "TRIADS (vector)",
|
|
35142
|
-
"description": "
|
|
35214
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
35143
35215
|
"type": "array",
|
|
35144
35216
|
"items": {
|
|
35145
35217
|
"title": "double",
|
|
@@ -35150,15 +35222,15 @@
|
|
|
35150
35222
|
},
|
|
35151
35223
|
"USE_FAD": {
|
|
35152
35224
|
"title": "USE_FAD (bool)",
|
|
35153
|
-
"description": "
|
|
35225
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
35154
35226
|
"default": false,
|
|
35155
35227
|
"type": "boolean"
|
|
35156
35228
|
}
|
|
35157
35229
|
},
|
|
35158
35230
|
"additionalProperties": false,
|
|
35159
35231
|
"required": [
|
|
35160
|
-
"
|
|
35161
|
-
"
|
|
35232
|
+
"CONSTRAINT",
|
|
35233
|
+
"PARAMETRIZATION",
|
|
35162
35234
|
"MAT",
|
|
35163
35235
|
"TRIADS"
|
|
35164
35236
|
]
|
|
@@ -51914,15 +51986,23 @@
|
|
|
51914
51986
|
"description": "No description yet.",
|
|
51915
51987
|
"type": "object",
|
|
51916
51988
|
"properties": {
|
|
51917
|
-
"
|
|
51918
|
-
"title": "
|
|
51919
|
-
"description": "
|
|
51920
|
-
"type": "
|
|
51989
|
+
"CONSTRAINT": {
|
|
51990
|
+
"title": "CONSTRAINT (enum)",
|
|
51991
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
51992
|
+
"type": "string",
|
|
51993
|
+
"enum": [
|
|
51994
|
+
"strong",
|
|
51995
|
+
"weak"
|
|
51996
|
+
]
|
|
51921
51997
|
},
|
|
51922
|
-
"
|
|
51923
|
-
"title": "
|
|
51924
|
-
"description": "
|
|
51925
|
-
"type": "
|
|
51998
|
+
"PARAMETRIZATION": {
|
|
51999
|
+
"title": "PARAMETRIZATION (enum)",
|
|
52000
|
+
"description": "Which type of beam parametrization should be used.",
|
|
52001
|
+
"type": "string",
|
|
52002
|
+
"enum": [
|
|
52003
|
+
"tan",
|
|
52004
|
+
"rot"
|
|
52005
|
+
]
|
|
51926
52006
|
},
|
|
51927
52007
|
"MAT": {
|
|
51928
52008
|
"title": "MAT (int)",
|
|
@@ -51931,7 +52011,7 @@
|
|
|
51931
52011
|
},
|
|
51932
52012
|
"TRIADS": {
|
|
51933
52013
|
"title": "TRIADS (vector)",
|
|
51934
|
-
"description": "
|
|
52014
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
51935
52015
|
"type": "array",
|
|
51936
52016
|
"items": {
|
|
51937
52017
|
"title": "double",
|
|
@@ -51942,15 +52022,15 @@
|
|
|
51942
52022
|
},
|
|
51943
52023
|
"USE_FAD": {
|
|
51944
52024
|
"title": "USE_FAD (bool)",
|
|
51945
|
-
"description": "
|
|
52025
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
51946
52026
|
"default": false,
|
|
51947
52027
|
"type": "boolean"
|
|
51948
52028
|
}
|
|
51949
52029
|
},
|
|
51950
52030
|
"additionalProperties": false,
|
|
51951
52031
|
"required": [
|
|
51952
|
-
"
|
|
51953
|
-
"
|
|
52032
|
+
"CONSTRAINT",
|
|
52033
|
+
"PARAMETRIZATION",
|
|
51954
52034
|
"MAT",
|
|
51955
52035
|
"TRIADS"
|
|
51956
52036
|
]
|
|
@@ -51971,15 +52051,23 @@
|
|
|
51971
52051
|
"description": "No description yet.",
|
|
51972
52052
|
"type": "object",
|
|
51973
52053
|
"properties": {
|
|
51974
|
-
"
|
|
51975
|
-
"title": "
|
|
51976
|
-
"description": "
|
|
51977
|
-
"type": "
|
|
52054
|
+
"CONSTRAINT": {
|
|
52055
|
+
"title": "CONSTRAINT (enum)",
|
|
52056
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
52057
|
+
"type": "string",
|
|
52058
|
+
"enum": [
|
|
52059
|
+
"strong",
|
|
52060
|
+
"weak"
|
|
52061
|
+
]
|
|
51978
52062
|
},
|
|
51979
|
-
"
|
|
51980
|
-
"title": "
|
|
51981
|
-
"description": "
|
|
51982
|
-
"type": "
|
|
52063
|
+
"PARAMETRIZATION": {
|
|
52064
|
+
"title": "PARAMETRIZATION (enum)",
|
|
52065
|
+
"description": "Which type of beam parametrization should be used.",
|
|
52066
|
+
"type": "string",
|
|
52067
|
+
"enum": [
|
|
52068
|
+
"tan",
|
|
52069
|
+
"rot"
|
|
52070
|
+
]
|
|
51983
52071
|
},
|
|
51984
52072
|
"MAT": {
|
|
51985
52073
|
"title": "MAT (int)",
|
|
@@ -51988,7 +52076,7 @@
|
|
|
51988
52076
|
},
|
|
51989
52077
|
"TRIADS": {
|
|
51990
52078
|
"title": "TRIADS (vector)",
|
|
51991
|
-
"description": "
|
|
52079
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
51992
52080
|
"type": "array",
|
|
51993
52081
|
"items": {
|
|
51994
52082
|
"title": "double",
|
|
@@ -51999,15 +52087,15 @@
|
|
|
51999
52087
|
},
|
|
52000
52088
|
"USE_FAD": {
|
|
52001
52089
|
"title": "USE_FAD (bool)",
|
|
52002
|
-
"description": "
|
|
52090
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
52003
52091
|
"default": false,
|
|
52004
52092
|
"type": "boolean"
|
|
52005
52093
|
}
|
|
52006
52094
|
},
|
|
52007
52095
|
"additionalProperties": false,
|
|
52008
52096
|
"required": [
|
|
52009
|
-
"
|
|
52010
|
-
"
|
|
52097
|
+
"CONSTRAINT",
|
|
52098
|
+
"PARAMETRIZATION",
|
|
52011
52099
|
"MAT",
|
|
52012
52100
|
"TRIADS"
|
|
52013
52101
|
]
|
|
@@ -52028,15 +52116,23 @@
|
|
|
52028
52116
|
"description": "No description yet.",
|
|
52029
52117
|
"type": "object",
|
|
52030
52118
|
"properties": {
|
|
52031
|
-
"
|
|
52032
|
-
"title": "
|
|
52033
|
-
"description": "
|
|
52034
|
-
"type": "
|
|
52119
|
+
"CONSTRAINT": {
|
|
52120
|
+
"title": "CONSTRAINT (enum)",
|
|
52121
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
52122
|
+
"type": "string",
|
|
52123
|
+
"enum": [
|
|
52124
|
+
"strong",
|
|
52125
|
+
"weak"
|
|
52126
|
+
]
|
|
52035
52127
|
},
|
|
52036
|
-
"
|
|
52037
|
-
"title": "
|
|
52038
|
-
"description": "
|
|
52039
|
-
"type": "
|
|
52128
|
+
"PARAMETRIZATION": {
|
|
52129
|
+
"title": "PARAMETRIZATION (enum)",
|
|
52130
|
+
"description": "Which type of beam parametrization should be used.",
|
|
52131
|
+
"type": "string",
|
|
52132
|
+
"enum": [
|
|
52133
|
+
"tan",
|
|
52134
|
+
"rot"
|
|
52135
|
+
]
|
|
52040
52136
|
},
|
|
52041
52137
|
"MAT": {
|
|
52042
52138
|
"title": "MAT (int)",
|
|
@@ -52045,7 +52141,7 @@
|
|
|
52045
52141
|
},
|
|
52046
52142
|
"TRIADS": {
|
|
52047
52143
|
"title": "TRIADS (vector)",
|
|
52048
|
-
"description": "
|
|
52144
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
52049
52145
|
"type": "array",
|
|
52050
52146
|
"items": {
|
|
52051
52147
|
"title": "double",
|
|
@@ -52056,15 +52152,15 @@
|
|
|
52056
52152
|
},
|
|
52057
52153
|
"USE_FAD": {
|
|
52058
52154
|
"title": "USE_FAD (bool)",
|
|
52059
|
-
"description": "
|
|
52155
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
52060
52156
|
"default": false,
|
|
52061
52157
|
"type": "boolean"
|
|
52062
52158
|
}
|
|
52063
52159
|
},
|
|
52064
52160
|
"additionalProperties": false,
|
|
52065
52161
|
"required": [
|
|
52066
|
-
"
|
|
52067
|
-
"
|
|
52162
|
+
"CONSTRAINT",
|
|
52163
|
+
"PARAMETRIZATION",
|
|
52068
52164
|
"MAT",
|
|
52069
52165
|
"TRIADS"
|
|
52070
52166
|
]
|
|
@@ -95108,15 +95204,23 @@
|
|
|
95108
95204
|
"description": "No description yet.",
|
|
95109
95205
|
"type": "object",
|
|
95110
95206
|
"properties": {
|
|
95111
|
-
"
|
|
95112
|
-
"title": "
|
|
95113
|
-
"description": "
|
|
95114
|
-
"type": "
|
|
95207
|
+
"CONSTRAINT": {
|
|
95208
|
+
"title": "CONSTRAINT (enum)",
|
|
95209
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
95210
|
+
"type": "string",
|
|
95211
|
+
"enum": [
|
|
95212
|
+
"strong",
|
|
95213
|
+
"weak"
|
|
95214
|
+
]
|
|
95115
95215
|
},
|
|
95116
|
-
"
|
|
95117
|
-
"title": "
|
|
95118
|
-
"description": "
|
|
95119
|
-
"type": "
|
|
95216
|
+
"PARAMETRIZATION": {
|
|
95217
|
+
"title": "PARAMETRIZATION (enum)",
|
|
95218
|
+
"description": "Which type of beam parametrization should be used.",
|
|
95219
|
+
"type": "string",
|
|
95220
|
+
"enum": [
|
|
95221
|
+
"tan",
|
|
95222
|
+
"rot"
|
|
95223
|
+
]
|
|
95120
95224
|
},
|
|
95121
95225
|
"MAT": {
|
|
95122
95226
|
"title": "MAT (int)",
|
|
@@ -95125,7 +95229,7 @@
|
|
|
95125
95229
|
},
|
|
95126
95230
|
"TRIADS": {
|
|
95127
95231
|
"title": "TRIADS (vector)",
|
|
95128
|
-
"description": "
|
|
95232
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
95129
95233
|
"type": "array",
|
|
95130
95234
|
"items": {
|
|
95131
95235
|
"title": "double",
|
|
@@ -95136,15 +95240,15 @@
|
|
|
95136
95240
|
},
|
|
95137
95241
|
"USE_FAD": {
|
|
95138
95242
|
"title": "USE_FAD (bool)",
|
|
95139
|
-
"description": "
|
|
95243
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
95140
95244
|
"default": false,
|
|
95141
95245
|
"type": "boolean"
|
|
95142
95246
|
}
|
|
95143
95247
|
},
|
|
95144
95248
|
"additionalProperties": false,
|
|
95145
95249
|
"required": [
|
|
95146
|
-
"
|
|
95147
|
-
"
|
|
95250
|
+
"CONSTRAINT",
|
|
95251
|
+
"PARAMETRIZATION",
|
|
95148
95252
|
"MAT",
|
|
95149
95253
|
"TRIADS"
|
|
95150
95254
|
]
|
|
@@ -95165,15 +95269,23 @@
|
|
|
95165
95269
|
"description": "No description yet.",
|
|
95166
95270
|
"type": "object",
|
|
95167
95271
|
"properties": {
|
|
95168
|
-
"
|
|
95169
|
-
"title": "
|
|
95170
|
-
"description": "
|
|
95171
|
-
"type": "
|
|
95272
|
+
"CONSTRAINT": {
|
|
95273
|
+
"title": "CONSTRAINT (enum)",
|
|
95274
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
95275
|
+
"type": "string",
|
|
95276
|
+
"enum": [
|
|
95277
|
+
"strong",
|
|
95278
|
+
"weak"
|
|
95279
|
+
]
|
|
95172
95280
|
},
|
|
95173
|
-
"
|
|
95174
|
-
"title": "
|
|
95175
|
-
"description": "
|
|
95176
|
-
"type": "
|
|
95281
|
+
"PARAMETRIZATION": {
|
|
95282
|
+
"title": "PARAMETRIZATION (enum)",
|
|
95283
|
+
"description": "Which type of beam parametrization should be used.",
|
|
95284
|
+
"type": "string",
|
|
95285
|
+
"enum": [
|
|
95286
|
+
"tan",
|
|
95287
|
+
"rot"
|
|
95288
|
+
]
|
|
95177
95289
|
},
|
|
95178
95290
|
"MAT": {
|
|
95179
95291
|
"title": "MAT (int)",
|
|
@@ -95182,7 +95294,7 @@
|
|
|
95182
95294
|
},
|
|
95183
95295
|
"TRIADS": {
|
|
95184
95296
|
"title": "TRIADS (vector)",
|
|
95185
|
-
"description": "
|
|
95297
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
95186
95298
|
"type": "array",
|
|
95187
95299
|
"items": {
|
|
95188
95300
|
"title": "double",
|
|
@@ -95193,15 +95305,15 @@
|
|
|
95193
95305
|
},
|
|
95194
95306
|
"USE_FAD": {
|
|
95195
95307
|
"title": "USE_FAD (bool)",
|
|
95196
|
-
"description": "
|
|
95308
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
95197
95309
|
"default": false,
|
|
95198
95310
|
"type": "boolean"
|
|
95199
95311
|
}
|
|
95200
95312
|
},
|
|
95201
95313
|
"additionalProperties": false,
|
|
95202
95314
|
"required": [
|
|
95203
|
-
"
|
|
95204
|
-
"
|
|
95315
|
+
"CONSTRAINT",
|
|
95316
|
+
"PARAMETRIZATION",
|
|
95205
95317
|
"MAT",
|
|
95206
95318
|
"TRIADS"
|
|
95207
95319
|
]
|
|
@@ -95222,15 +95334,23 @@
|
|
|
95222
95334
|
"description": "No description yet.",
|
|
95223
95335
|
"type": "object",
|
|
95224
95336
|
"properties": {
|
|
95225
|
-
"
|
|
95226
|
-
"title": "
|
|
95227
|
-
"description": "
|
|
95228
|
-
"type": "
|
|
95337
|
+
"CONSTRAINT": {
|
|
95338
|
+
"title": "CONSTRAINT (enum)",
|
|
95339
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
95340
|
+
"type": "string",
|
|
95341
|
+
"enum": [
|
|
95342
|
+
"strong",
|
|
95343
|
+
"weak"
|
|
95344
|
+
]
|
|
95229
95345
|
},
|
|
95230
|
-
"
|
|
95231
|
-
"title": "
|
|
95232
|
-
"description": "
|
|
95233
|
-
"type": "
|
|
95346
|
+
"PARAMETRIZATION": {
|
|
95347
|
+
"title": "PARAMETRIZATION (enum)",
|
|
95348
|
+
"description": "Which type of beam parametrization should be used.",
|
|
95349
|
+
"type": "string",
|
|
95350
|
+
"enum": [
|
|
95351
|
+
"tan",
|
|
95352
|
+
"rot"
|
|
95353
|
+
]
|
|
95234
95354
|
},
|
|
95235
95355
|
"MAT": {
|
|
95236
95356
|
"title": "MAT (int)",
|
|
@@ -95239,7 +95359,7 @@
|
|
|
95239
95359
|
},
|
|
95240
95360
|
"TRIADS": {
|
|
95241
95361
|
"title": "TRIADS (vector)",
|
|
95242
|
-
"description": "
|
|
95362
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
95243
95363
|
"type": "array",
|
|
95244
95364
|
"items": {
|
|
95245
95365
|
"title": "double",
|
|
@@ -95250,15 +95370,15 @@
|
|
|
95250
95370
|
},
|
|
95251
95371
|
"USE_FAD": {
|
|
95252
95372
|
"title": "USE_FAD (bool)",
|
|
95253
|
-
"description": "
|
|
95373
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
95254
95374
|
"default": false,
|
|
95255
95375
|
"type": "boolean"
|
|
95256
95376
|
}
|
|
95257
95377
|
},
|
|
95258
95378
|
"additionalProperties": false,
|
|
95259
95379
|
"required": [
|
|
95260
|
-
"
|
|
95261
|
-
"
|
|
95380
|
+
"CONSTRAINT",
|
|
95381
|
+
"PARAMETRIZATION",
|
|
95262
95382
|
"MAT",
|
|
95263
95383
|
"TRIADS"
|
|
95264
95384
|
]
|
|
@@ -113632,15 +113752,23 @@
|
|
|
113632
113752
|
"description": "No description yet.",
|
|
113633
113753
|
"type": "object",
|
|
113634
113754
|
"properties": {
|
|
113635
|
-
"
|
|
113636
|
-
"title": "
|
|
113637
|
-
"description": "
|
|
113638
|
-
"type": "
|
|
113755
|
+
"CONSTRAINT": {
|
|
113756
|
+
"title": "CONSTRAINT (enum)",
|
|
113757
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
113758
|
+
"type": "string",
|
|
113759
|
+
"enum": [
|
|
113760
|
+
"strong",
|
|
113761
|
+
"weak"
|
|
113762
|
+
]
|
|
113639
113763
|
},
|
|
113640
|
-
"
|
|
113641
|
-
"title": "
|
|
113642
|
-
"description": "
|
|
113643
|
-
"type": "
|
|
113764
|
+
"PARAMETRIZATION": {
|
|
113765
|
+
"title": "PARAMETRIZATION (enum)",
|
|
113766
|
+
"description": "Which type of beam parametrization should be used.",
|
|
113767
|
+
"type": "string",
|
|
113768
|
+
"enum": [
|
|
113769
|
+
"tan",
|
|
113770
|
+
"rot"
|
|
113771
|
+
]
|
|
113644
113772
|
},
|
|
113645
113773
|
"MAT": {
|
|
113646
113774
|
"title": "MAT (int)",
|
|
@@ -113649,7 +113777,7 @@
|
|
|
113649
113777
|
},
|
|
113650
113778
|
"TRIADS": {
|
|
113651
113779
|
"title": "TRIADS (vector)",
|
|
113652
|
-
"description": "
|
|
113780
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
113653
113781
|
"type": "array",
|
|
113654
113782
|
"items": {
|
|
113655
113783
|
"title": "double",
|
|
@@ -113660,15 +113788,15 @@
|
|
|
113660
113788
|
},
|
|
113661
113789
|
"USE_FAD": {
|
|
113662
113790
|
"title": "USE_FAD (bool)",
|
|
113663
|
-
"description": "
|
|
113791
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
113664
113792
|
"default": false,
|
|
113665
113793
|
"type": "boolean"
|
|
113666
113794
|
}
|
|
113667
113795
|
},
|
|
113668
113796
|
"additionalProperties": false,
|
|
113669
113797
|
"required": [
|
|
113670
|
-
"
|
|
113671
|
-
"
|
|
113798
|
+
"CONSTRAINT",
|
|
113799
|
+
"PARAMETRIZATION",
|
|
113672
113800
|
"MAT",
|
|
113673
113801
|
"TRIADS"
|
|
113674
113802
|
]
|
|
@@ -113689,15 +113817,23 @@
|
|
|
113689
113817
|
"description": "No description yet.",
|
|
113690
113818
|
"type": "object",
|
|
113691
113819
|
"properties": {
|
|
113692
|
-
"
|
|
113693
|
-
"title": "
|
|
113694
|
-
"description": "
|
|
113695
|
-
"type": "
|
|
113820
|
+
"CONSTRAINT": {
|
|
113821
|
+
"title": "CONSTRAINT (enum)",
|
|
113822
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
113823
|
+
"type": "string",
|
|
113824
|
+
"enum": [
|
|
113825
|
+
"strong",
|
|
113826
|
+
"weak"
|
|
113827
|
+
]
|
|
113696
113828
|
},
|
|
113697
|
-
"
|
|
113698
|
-
"title": "
|
|
113699
|
-
"description": "
|
|
113700
|
-
"type": "
|
|
113829
|
+
"PARAMETRIZATION": {
|
|
113830
|
+
"title": "PARAMETRIZATION (enum)",
|
|
113831
|
+
"description": "Which type of beam parametrization should be used.",
|
|
113832
|
+
"type": "string",
|
|
113833
|
+
"enum": [
|
|
113834
|
+
"tan",
|
|
113835
|
+
"rot"
|
|
113836
|
+
]
|
|
113701
113837
|
},
|
|
113702
113838
|
"MAT": {
|
|
113703
113839
|
"title": "MAT (int)",
|
|
@@ -113706,7 +113842,7 @@
|
|
|
113706
113842
|
},
|
|
113707
113843
|
"TRIADS": {
|
|
113708
113844
|
"title": "TRIADS (vector)",
|
|
113709
|
-
"description": "
|
|
113845
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
113710
113846
|
"type": "array",
|
|
113711
113847
|
"items": {
|
|
113712
113848
|
"title": "double",
|
|
@@ -113717,15 +113853,15 @@
|
|
|
113717
113853
|
},
|
|
113718
113854
|
"USE_FAD": {
|
|
113719
113855
|
"title": "USE_FAD (bool)",
|
|
113720
|
-
"description": "
|
|
113856
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
113721
113857
|
"default": false,
|
|
113722
113858
|
"type": "boolean"
|
|
113723
113859
|
}
|
|
113724
113860
|
},
|
|
113725
113861
|
"additionalProperties": false,
|
|
113726
113862
|
"required": [
|
|
113727
|
-
"
|
|
113728
|
-
"
|
|
113863
|
+
"CONSTRAINT",
|
|
113864
|
+
"PARAMETRIZATION",
|
|
113729
113865
|
"MAT",
|
|
113730
113866
|
"TRIADS"
|
|
113731
113867
|
]
|
|
@@ -113746,15 +113882,23 @@
|
|
|
113746
113882
|
"description": "No description yet.",
|
|
113747
113883
|
"type": "object",
|
|
113748
113884
|
"properties": {
|
|
113749
|
-
"
|
|
113750
|
-
"title": "
|
|
113751
|
-
"description": "
|
|
113752
|
-
"type": "
|
|
113885
|
+
"CONSTRAINT": {
|
|
113886
|
+
"title": "CONSTRAINT (enum)",
|
|
113887
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
113888
|
+
"type": "string",
|
|
113889
|
+
"enum": [
|
|
113890
|
+
"strong",
|
|
113891
|
+
"weak"
|
|
113892
|
+
]
|
|
113753
113893
|
},
|
|
113754
|
-
"
|
|
113755
|
-
"title": "
|
|
113756
|
-
"description": "
|
|
113757
|
-
"type": "
|
|
113894
|
+
"PARAMETRIZATION": {
|
|
113895
|
+
"title": "PARAMETRIZATION (enum)",
|
|
113896
|
+
"description": "Which type of beam parametrization should be used.",
|
|
113897
|
+
"type": "string",
|
|
113898
|
+
"enum": [
|
|
113899
|
+
"tan",
|
|
113900
|
+
"rot"
|
|
113901
|
+
]
|
|
113758
113902
|
},
|
|
113759
113903
|
"MAT": {
|
|
113760
113904
|
"title": "MAT (int)",
|
|
@@ -113763,7 +113907,7 @@
|
|
|
113763
113907
|
},
|
|
113764
113908
|
"TRIADS": {
|
|
113765
113909
|
"title": "TRIADS (vector)",
|
|
113766
|
-
"description": "
|
|
113910
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
113767
113911
|
"type": "array",
|
|
113768
113912
|
"items": {
|
|
113769
113913
|
"title": "double",
|
|
@@ -113774,15 +113918,15 @@
|
|
|
113774
113918
|
},
|
|
113775
113919
|
"USE_FAD": {
|
|
113776
113920
|
"title": "USE_FAD (bool)",
|
|
113777
|
-
"description": "
|
|
113921
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
113778
113922
|
"default": false,
|
|
113779
113923
|
"type": "boolean"
|
|
113780
113924
|
}
|
|
113781
113925
|
},
|
|
113782
113926
|
"additionalProperties": false,
|
|
113783
113927
|
"required": [
|
|
113784
|
-
"
|
|
113785
|
-
"
|
|
113928
|
+
"CONSTRAINT",
|
|
113929
|
+
"PARAMETRIZATION",
|
|
113786
113930
|
"MAT",
|
|
113787
113931
|
"TRIADS"
|
|
113788
113932
|
]
|
|
@@ -133222,15 +133366,23 @@
|
|
|
133222
133366
|
"description": "No description yet.",
|
|
133223
133367
|
"type": "object",
|
|
133224
133368
|
"properties": {
|
|
133225
|
-
"
|
|
133226
|
-
"title": "
|
|
133227
|
-
"description": "
|
|
133228
|
-
"type": "
|
|
133369
|
+
"CONSTRAINT": {
|
|
133370
|
+
"title": "CONSTRAINT (enum)",
|
|
133371
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
133372
|
+
"type": "string",
|
|
133373
|
+
"enum": [
|
|
133374
|
+
"strong",
|
|
133375
|
+
"weak"
|
|
133376
|
+
]
|
|
133229
133377
|
},
|
|
133230
|
-
"
|
|
133231
|
-
"title": "
|
|
133232
|
-
"description": "
|
|
133233
|
-
"type": "
|
|
133378
|
+
"PARAMETRIZATION": {
|
|
133379
|
+
"title": "PARAMETRIZATION (enum)",
|
|
133380
|
+
"description": "Which type of beam parametrization should be used.",
|
|
133381
|
+
"type": "string",
|
|
133382
|
+
"enum": [
|
|
133383
|
+
"tan",
|
|
133384
|
+
"rot"
|
|
133385
|
+
]
|
|
133234
133386
|
},
|
|
133235
133387
|
"MAT": {
|
|
133236
133388
|
"title": "MAT (int)",
|
|
@@ -133239,7 +133391,7 @@
|
|
|
133239
133391
|
},
|
|
133240
133392
|
"TRIADS": {
|
|
133241
133393
|
"title": "TRIADS (vector)",
|
|
133242
|
-
"description": "
|
|
133394
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
133243
133395
|
"type": "array",
|
|
133244
133396
|
"items": {
|
|
133245
133397
|
"title": "double",
|
|
@@ -133250,15 +133402,15 @@
|
|
|
133250
133402
|
},
|
|
133251
133403
|
"USE_FAD": {
|
|
133252
133404
|
"title": "USE_FAD (bool)",
|
|
133253
|
-
"description": "
|
|
133405
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
133254
133406
|
"default": false,
|
|
133255
133407
|
"type": "boolean"
|
|
133256
133408
|
}
|
|
133257
133409
|
},
|
|
133258
133410
|
"additionalProperties": false,
|
|
133259
133411
|
"required": [
|
|
133260
|
-
"
|
|
133261
|
-
"
|
|
133412
|
+
"CONSTRAINT",
|
|
133413
|
+
"PARAMETRIZATION",
|
|
133262
133414
|
"MAT",
|
|
133263
133415
|
"TRIADS"
|
|
133264
133416
|
]
|
|
@@ -133279,15 +133431,23 @@
|
|
|
133279
133431
|
"description": "No description yet.",
|
|
133280
133432
|
"type": "object",
|
|
133281
133433
|
"properties": {
|
|
133282
|
-
"
|
|
133283
|
-
"title": "
|
|
133284
|
-
"description": "
|
|
133285
|
-
"type": "
|
|
133434
|
+
"CONSTRAINT": {
|
|
133435
|
+
"title": "CONSTRAINT (enum)",
|
|
133436
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
133437
|
+
"type": "string",
|
|
133438
|
+
"enum": [
|
|
133439
|
+
"strong",
|
|
133440
|
+
"weak"
|
|
133441
|
+
]
|
|
133286
133442
|
},
|
|
133287
|
-
"
|
|
133288
|
-
"title": "
|
|
133289
|
-
"description": "
|
|
133290
|
-
"type": "
|
|
133443
|
+
"PARAMETRIZATION": {
|
|
133444
|
+
"title": "PARAMETRIZATION (enum)",
|
|
133445
|
+
"description": "Which type of beam parametrization should be used.",
|
|
133446
|
+
"type": "string",
|
|
133447
|
+
"enum": [
|
|
133448
|
+
"tan",
|
|
133449
|
+
"rot"
|
|
133450
|
+
]
|
|
133291
133451
|
},
|
|
133292
133452
|
"MAT": {
|
|
133293
133453
|
"title": "MAT (int)",
|
|
@@ -133296,7 +133456,7 @@
|
|
|
133296
133456
|
},
|
|
133297
133457
|
"TRIADS": {
|
|
133298
133458
|
"title": "TRIADS (vector)",
|
|
133299
|
-
"description": "
|
|
133459
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
133300
133460
|
"type": "array",
|
|
133301
133461
|
"items": {
|
|
133302
133462
|
"title": "double",
|
|
@@ -133307,15 +133467,15 @@
|
|
|
133307
133467
|
},
|
|
133308
133468
|
"USE_FAD": {
|
|
133309
133469
|
"title": "USE_FAD (bool)",
|
|
133310
|
-
"description": "
|
|
133470
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
133311
133471
|
"default": false,
|
|
133312
133472
|
"type": "boolean"
|
|
133313
133473
|
}
|
|
133314
133474
|
},
|
|
133315
133475
|
"additionalProperties": false,
|
|
133316
133476
|
"required": [
|
|
133317
|
-
"
|
|
133318
|
-
"
|
|
133477
|
+
"CONSTRAINT",
|
|
133478
|
+
"PARAMETRIZATION",
|
|
133319
133479
|
"MAT",
|
|
133320
133480
|
"TRIADS"
|
|
133321
133481
|
]
|
|
@@ -133336,15 +133496,23 @@
|
|
|
133336
133496
|
"description": "No description yet.",
|
|
133337
133497
|
"type": "object",
|
|
133338
133498
|
"properties": {
|
|
133339
|
-
"
|
|
133340
|
-
"title": "
|
|
133341
|
-
"description": "
|
|
133342
|
-
"type": "
|
|
133499
|
+
"CONSTRAINT": {
|
|
133500
|
+
"title": "CONSTRAINT (enum)",
|
|
133501
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
133502
|
+
"type": "string",
|
|
133503
|
+
"enum": [
|
|
133504
|
+
"strong",
|
|
133505
|
+
"weak"
|
|
133506
|
+
]
|
|
133343
133507
|
},
|
|
133344
|
-
"
|
|
133345
|
-
"title": "
|
|
133346
|
-
"description": "
|
|
133347
|
-
"type": "
|
|
133508
|
+
"PARAMETRIZATION": {
|
|
133509
|
+
"title": "PARAMETRIZATION (enum)",
|
|
133510
|
+
"description": "Which type of beam parametrization should be used.",
|
|
133511
|
+
"type": "string",
|
|
133512
|
+
"enum": [
|
|
133513
|
+
"tan",
|
|
133514
|
+
"rot"
|
|
133515
|
+
]
|
|
133348
133516
|
},
|
|
133349
133517
|
"MAT": {
|
|
133350
133518
|
"title": "MAT (int)",
|
|
@@ -133353,7 +133521,7 @@
|
|
|
133353
133521
|
},
|
|
133354
133522
|
"TRIADS": {
|
|
133355
133523
|
"title": "TRIADS (vector)",
|
|
133356
|
-
"description": "
|
|
133524
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
133357
133525
|
"type": "array",
|
|
133358
133526
|
"items": {
|
|
133359
133527
|
"title": "double",
|
|
@@ -133364,15 +133532,15 @@
|
|
|
133364
133532
|
},
|
|
133365
133533
|
"USE_FAD": {
|
|
133366
133534
|
"title": "USE_FAD (bool)",
|
|
133367
|
-
"description": "
|
|
133535
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
133368
133536
|
"default": false,
|
|
133369
133537
|
"type": "boolean"
|
|
133370
133538
|
}
|
|
133371
133539
|
},
|
|
133372
133540
|
"additionalProperties": false,
|
|
133373
133541
|
"required": [
|
|
133374
|
-
"
|
|
133375
|
-
"
|
|
133542
|
+
"CONSTRAINT",
|
|
133543
|
+
"PARAMETRIZATION",
|
|
133376
133544
|
"MAT",
|
|
133377
133545
|
"TRIADS"
|
|
133378
133546
|
]
|
|
@@ -150352,15 +150520,23 @@
|
|
|
150352
150520
|
"description": "No description yet.",
|
|
150353
150521
|
"type": "object",
|
|
150354
150522
|
"properties": {
|
|
150355
|
-
"
|
|
150356
|
-
"title": "
|
|
150357
|
-
"description": "
|
|
150358
|
-
"type": "
|
|
150523
|
+
"CONSTRAINT": {
|
|
150524
|
+
"title": "CONSTRAINT (enum)",
|
|
150525
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
150526
|
+
"type": "string",
|
|
150527
|
+
"enum": [
|
|
150528
|
+
"strong",
|
|
150529
|
+
"weak"
|
|
150530
|
+
]
|
|
150359
150531
|
},
|
|
150360
|
-
"
|
|
150361
|
-
"title": "
|
|
150362
|
-
"description": "
|
|
150363
|
-
"type": "
|
|
150532
|
+
"PARAMETRIZATION": {
|
|
150533
|
+
"title": "PARAMETRIZATION (enum)",
|
|
150534
|
+
"description": "Which type of beam parametrization should be used.",
|
|
150535
|
+
"type": "string",
|
|
150536
|
+
"enum": [
|
|
150537
|
+
"tan",
|
|
150538
|
+
"rot"
|
|
150539
|
+
]
|
|
150364
150540
|
},
|
|
150365
150541
|
"MAT": {
|
|
150366
150542
|
"title": "MAT (int)",
|
|
@@ -150369,7 +150545,7 @@
|
|
|
150369
150545
|
},
|
|
150370
150546
|
"TRIADS": {
|
|
150371
150547
|
"title": "TRIADS (vector)",
|
|
150372
|
-
"description": "
|
|
150548
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
150373
150549
|
"type": "array",
|
|
150374
150550
|
"items": {
|
|
150375
150551
|
"title": "double",
|
|
@@ -150380,15 +150556,15 @@
|
|
|
150380
150556
|
},
|
|
150381
150557
|
"USE_FAD": {
|
|
150382
150558
|
"title": "USE_FAD (bool)",
|
|
150383
|
-
"description": "
|
|
150559
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
150384
150560
|
"default": false,
|
|
150385
150561
|
"type": "boolean"
|
|
150386
150562
|
}
|
|
150387
150563
|
},
|
|
150388
150564
|
"additionalProperties": false,
|
|
150389
150565
|
"required": [
|
|
150390
|
-
"
|
|
150391
|
-
"
|
|
150566
|
+
"CONSTRAINT",
|
|
150567
|
+
"PARAMETRIZATION",
|
|
150392
150568
|
"MAT",
|
|
150393
150569
|
"TRIADS"
|
|
150394
150570
|
]
|
|
@@ -150409,15 +150585,23 @@
|
|
|
150409
150585
|
"description": "No description yet.",
|
|
150410
150586
|
"type": "object",
|
|
150411
150587
|
"properties": {
|
|
150412
|
-
"
|
|
150413
|
-
"title": "
|
|
150414
|
-
"description": "
|
|
150415
|
-
"type": "
|
|
150588
|
+
"CONSTRAINT": {
|
|
150589
|
+
"title": "CONSTRAINT (enum)",
|
|
150590
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
150591
|
+
"type": "string",
|
|
150592
|
+
"enum": [
|
|
150593
|
+
"strong",
|
|
150594
|
+
"weak"
|
|
150595
|
+
]
|
|
150416
150596
|
},
|
|
150417
|
-
"
|
|
150418
|
-
"title": "
|
|
150419
|
-
"description": "
|
|
150420
|
-
"type": "
|
|
150597
|
+
"PARAMETRIZATION": {
|
|
150598
|
+
"title": "PARAMETRIZATION (enum)",
|
|
150599
|
+
"description": "Which type of beam parametrization should be used.",
|
|
150600
|
+
"type": "string",
|
|
150601
|
+
"enum": [
|
|
150602
|
+
"tan",
|
|
150603
|
+
"rot"
|
|
150604
|
+
]
|
|
150421
150605
|
},
|
|
150422
150606
|
"MAT": {
|
|
150423
150607
|
"title": "MAT (int)",
|
|
@@ -150426,7 +150610,7 @@
|
|
|
150426
150610
|
},
|
|
150427
150611
|
"TRIADS": {
|
|
150428
150612
|
"title": "TRIADS (vector)",
|
|
150429
|
-
"description": "
|
|
150613
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
150430
150614
|
"type": "array",
|
|
150431
150615
|
"items": {
|
|
150432
150616
|
"title": "double",
|
|
@@ -150437,15 +150621,15 @@
|
|
|
150437
150621
|
},
|
|
150438
150622
|
"USE_FAD": {
|
|
150439
150623
|
"title": "USE_FAD (bool)",
|
|
150440
|
-
"description": "
|
|
150624
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
150441
150625
|
"default": false,
|
|
150442
150626
|
"type": "boolean"
|
|
150443
150627
|
}
|
|
150444
150628
|
},
|
|
150445
150629
|
"additionalProperties": false,
|
|
150446
150630
|
"required": [
|
|
150447
|
-
"
|
|
150448
|
-
"
|
|
150631
|
+
"CONSTRAINT",
|
|
150632
|
+
"PARAMETRIZATION",
|
|
150449
150633
|
"MAT",
|
|
150450
150634
|
"TRIADS"
|
|
150451
150635
|
]
|
|
@@ -150466,15 +150650,23 @@
|
|
|
150466
150650
|
"description": "No description yet.",
|
|
150467
150651
|
"type": "object",
|
|
150468
150652
|
"properties": {
|
|
150469
|
-
"
|
|
150470
|
-
"title": "
|
|
150471
|
-
"description": "
|
|
150472
|
-
"type": "
|
|
150653
|
+
"CONSTRAINT": {
|
|
150654
|
+
"title": "CONSTRAINT (enum)",
|
|
150655
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
150656
|
+
"type": "string",
|
|
150657
|
+
"enum": [
|
|
150658
|
+
"strong",
|
|
150659
|
+
"weak"
|
|
150660
|
+
]
|
|
150473
150661
|
},
|
|
150474
|
-
"
|
|
150475
|
-
"title": "
|
|
150476
|
-
"description": "
|
|
150477
|
-
"type": "
|
|
150662
|
+
"PARAMETRIZATION": {
|
|
150663
|
+
"title": "PARAMETRIZATION (enum)",
|
|
150664
|
+
"description": "Which type of beam parametrization should be used.",
|
|
150665
|
+
"type": "string",
|
|
150666
|
+
"enum": [
|
|
150667
|
+
"tan",
|
|
150668
|
+
"rot"
|
|
150669
|
+
]
|
|
150478
150670
|
},
|
|
150479
150671
|
"MAT": {
|
|
150480
150672
|
"title": "MAT (int)",
|
|
@@ -150483,7 +150675,7 @@
|
|
|
150483
150675
|
},
|
|
150484
150676
|
"TRIADS": {
|
|
150485
150677
|
"title": "TRIADS (vector)",
|
|
150486
|
-
"description": "
|
|
150678
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
150487
150679
|
"type": "array",
|
|
150488
150680
|
"items": {
|
|
150489
150681
|
"title": "double",
|
|
@@ -150494,15 +150686,15 @@
|
|
|
150494
150686
|
},
|
|
150495
150687
|
"USE_FAD": {
|
|
150496
150688
|
"title": "USE_FAD (bool)",
|
|
150497
|
-
"description": "
|
|
150689
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
150498
150690
|
"default": false,
|
|
150499
150691
|
"type": "boolean"
|
|
150500
150692
|
}
|
|
150501
150693
|
},
|
|
150502
150694
|
"additionalProperties": false,
|
|
150503
150695
|
"required": [
|
|
150504
|
-
"
|
|
150505
|
-
"
|
|
150696
|
+
"CONSTRAINT",
|
|
150697
|
+
"PARAMETRIZATION",
|
|
150506
150698
|
"MAT",
|
|
150507
150699
|
"TRIADS"
|
|
150508
150700
|
]
|
|
@@ -182486,15 +182678,23 @@
|
|
|
182486
182678
|
"description": "No description yet.",
|
|
182487
182679
|
"type": "object",
|
|
182488
182680
|
"properties": {
|
|
182489
|
-
"
|
|
182490
|
-
"title": "
|
|
182491
|
-
"description": "
|
|
182492
|
-
"type": "
|
|
182681
|
+
"CONSTRAINT": {
|
|
182682
|
+
"title": "CONSTRAINT (enum)",
|
|
182683
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
182684
|
+
"type": "string",
|
|
182685
|
+
"enum": [
|
|
182686
|
+
"strong",
|
|
182687
|
+
"weak"
|
|
182688
|
+
]
|
|
182493
182689
|
},
|
|
182494
|
-
"
|
|
182495
|
-
"title": "
|
|
182496
|
-
"description": "
|
|
182497
|
-
"type": "
|
|
182690
|
+
"PARAMETRIZATION": {
|
|
182691
|
+
"title": "PARAMETRIZATION (enum)",
|
|
182692
|
+
"description": "Which type of beam parametrization should be used.",
|
|
182693
|
+
"type": "string",
|
|
182694
|
+
"enum": [
|
|
182695
|
+
"tan",
|
|
182696
|
+
"rot"
|
|
182697
|
+
]
|
|
182498
182698
|
},
|
|
182499
182699
|
"MAT": {
|
|
182500
182700
|
"title": "MAT (int)",
|
|
@@ -182503,7 +182703,7 @@
|
|
|
182503
182703
|
},
|
|
182504
182704
|
"TRIADS": {
|
|
182505
182705
|
"title": "TRIADS (vector)",
|
|
182506
|
-
"description": "
|
|
182706
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
182507
182707
|
"type": "array",
|
|
182508
182708
|
"items": {
|
|
182509
182709
|
"title": "double",
|
|
@@ -182514,15 +182714,15 @@
|
|
|
182514
182714
|
},
|
|
182515
182715
|
"USE_FAD": {
|
|
182516
182716
|
"title": "USE_FAD (bool)",
|
|
182517
|
-
"description": "
|
|
182717
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
182518
182718
|
"default": false,
|
|
182519
182719
|
"type": "boolean"
|
|
182520
182720
|
}
|
|
182521
182721
|
},
|
|
182522
182722
|
"additionalProperties": false,
|
|
182523
182723
|
"required": [
|
|
182524
|
-
"
|
|
182525
|
-
"
|
|
182724
|
+
"CONSTRAINT",
|
|
182725
|
+
"PARAMETRIZATION",
|
|
182526
182726
|
"MAT",
|
|
182527
182727
|
"TRIADS"
|
|
182528
182728
|
]
|
|
@@ -182543,15 +182743,23 @@
|
|
|
182543
182743
|
"description": "No description yet.",
|
|
182544
182744
|
"type": "object",
|
|
182545
182745
|
"properties": {
|
|
182546
|
-
"
|
|
182547
|
-
"title": "
|
|
182548
|
-
"description": "
|
|
182549
|
-
"type": "
|
|
182746
|
+
"CONSTRAINT": {
|
|
182747
|
+
"title": "CONSTRAINT (enum)",
|
|
182748
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
182749
|
+
"type": "string",
|
|
182750
|
+
"enum": [
|
|
182751
|
+
"strong",
|
|
182752
|
+
"weak"
|
|
182753
|
+
]
|
|
182550
182754
|
},
|
|
182551
|
-
"
|
|
182552
|
-
"title": "
|
|
182553
|
-
"description": "
|
|
182554
|
-
"type": "
|
|
182755
|
+
"PARAMETRIZATION": {
|
|
182756
|
+
"title": "PARAMETRIZATION (enum)",
|
|
182757
|
+
"description": "Which type of beam parametrization should be used.",
|
|
182758
|
+
"type": "string",
|
|
182759
|
+
"enum": [
|
|
182760
|
+
"tan",
|
|
182761
|
+
"rot"
|
|
182762
|
+
]
|
|
182555
182763
|
},
|
|
182556
182764
|
"MAT": {
|
|
182557
182765
|
"title": "MAT (int)",
|
|
@@ -182560,7 +182768,7 @@
|
|
|
182560
182768
|
},
|
|
182561
182769
|
"TRIADS": {
|
|
182562
182770
|
"title": "TRIADS (vector)",
|
|
182563
|
-
"description": "
|
|
182771
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
182564
182772
|
"type": "array",
|
|
182565
182773
|
"items": {
|
|
182566
182774
|
"title": "double",
|
|
@@ -182571,15 +182779,15 @@
|
|
|
182571
182779
|
},
|
|
182572
182780
|
"USE_FAD": {
|
|
182573
182781
|
"title": "USE_FAD (bool)",
|
|
182574
|
-
"description": "
|
|
182782
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
182575
182783
|
"default": false,
|
|
182576
182784
|
"type": "boolean"
|
|
182577
182785
|
}
|
|
182578
182786
|
},
|
|
182579
182787
|
"additionalProperties": false,
|
|
182580
182788
|
"required": [
|
|
182581
|
-
"
|
|
182582
|
-
"
|
|
182789
|
+
"CONSTRAINT",
|
|
182790
|
+
"PARAMETRIZATION",
|
|
182583
182791
|
"MAT",
|
|
182584
182792
|
"TRIADS"
|
|
182585
182793
|
]
|
|
@@ -182600,15 +182808,23 @@
|
|
|
182600
182808
|
"description": "No description yet.",
|
|
182601
182809
|
"type": "object",
|
|
182602
182810
|
"properties": {
|
|
182603
|
-
"
|
|
182604
|
-
"title": "
|
|
182605
|
-
"description": "
|
|
182606
|
-
"type": "
|
|
182811
|
+
"CONSTRAINT": {
|
|
182812
|
+
"title": "CONSTRAINT (enum)",
|
|
182813
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
182814
|
+
"type": "string",
|
|
182815
|
+
"enum": [
|
|
182816
|
+
"strong",
|
|
182817
|
+
"weak"
|
|
182818
|
+
]
|
|
182607
182819
|
},
|
|
182608
|
-
"
|
|
182609
|
-
"title": "
|
|
182610
|
-
"description": "
|
|
182611
|
-
"type": "
|
|
182820
|
+
"PARAMETRIZATION": {
|
|
182821
|
+
"title": "PARAMETRIZATION (enum)",
|
|
182822
|
+
"description": "Which type of beam parametrization should be used.",
|
|
182823
|
+
"type": "string",
|
|
182824
|
+
"enum": [
|
|
182825
|
+
"tan",
|
|
182826
|
+
"rot"
|
|
182827
|
+
]
|
|
182612
182828
|
},
|
|
182613
182829
|
"MAT": {
|
|
182614
182830
|
"title": "MAT (int)",
|
|
@@ -182617,7 +182833,7 @@
|
|
|
182617
182833
|
},
|
|
182618
182834
|
"TRIADS": {
|
|
182619
182835
|
"title": "TRIADS (vector)",
|
|
182620
|
-
"description": "
|
|
182836
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
182621
182837
|
"type": "array",
|
|
182622
182838
|
"items": {
|
|
182623
182839
|
"title": "double",
|
|
@@ -182628,15 +182844,15 @@
|
|
|
182628
182844
|
},
|
|
182629
182845
|
"USE_FAD": {
|
|
182630
182846
|
"title": "USE_FAD (bool)",
|
|
182631
|
-
"description": "
|
|
182847
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
182632
182848
|
"default": false,
|
|
182633
182849
|
"type": "boolean"
|
|
182634
182850
|
}
|
|
182635
182851
|
},
|
|
182636
182852
|
"additionalProperties": false,
|
|
182637
182853
|
"required": [
|
|
182638
|
-
"
|
|
182639
|
-
"
|
|
182854
|
+
"CONSTRAINT",
|
|
182855
|
+
"PARAMETRIZATION",
|
|
182640
182856
|
"MAT",
|
|
182641
182857
|
"TRIADS"
|
|
182642
182858
|
]
|
|
@@ -199392,15 +199608,23 @@
|
|
|
199392
199608
|
"description": "No description yet.",
|
|
199393
199609
|
"type": "object",
|
|
199394
199610
|
"properties": {
|
|
199395
|
-
"
|
|
199396
|
-
"title": "
|
|
199397
|
-
"description": "
|
|
199398
|
-
"type": "
|
|
199611
|
+
"CONSTRAINT": {
|
|
199612
|
+
"title": "CONSTRAINT (enum)",
|
|
199613
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
199614
|
+
"type": "string",
|
|
199615
|
+
"enum": [
|
|
199616
|
+
"strong",
|
|
199617
|
+
"weak"
|
|
199618
|
+
]
|
|
199399
199619
|
},
|
|
199400
|
-
"
|
|
199401
|
-
"title": "
|
|
199402
|
-
"description": "
|
|
199403
|
-
"type": "
|
|
199620
|
+
"PARAMETRIZATION": {
|
|
199621
|
+
"title": "PARAMETRIZATION (enum)",
|
|
199622
|
+
"description": "Which type of beam parametrization should be used.",
|
|
199623
|
+
"type": "string",
|
|
199624
|
+
"enum": [
|
|
199625
|
+
"tan",
|
|
199626
|
+
"rot"
|
|
199627
|
+
]
|
|
199404
199628
|
},
|
|
199405
199629
|
"MAT": {
|
|
199406
199630
|
"title": "MAT (int)",
|
|
@@ -199409,7 +199633,7 @@
|
|
|
199409
199633
|
},
|
|
199410
199634
|
"TRIADS": {
|
|
199411
199635
|
"title": "TRIADS (vector)",
|
|
199412
|
-
"description": "
|
|
199636
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
199413
199637
|
"type": "array",
|
|
199414
199638
|
"items": {
|
|
199415
199639
|
"title": "double",
|
|
@@ -199420,15 +199644,15 @@
|
|
|
199420
199644
|
},
|
|
199421
199645
|
"USE_FAD": {
|
|
199422
199646
|
"title": "USE_FAD (bool)",
|
|
199423
|
-
"description": "
|
|
199647
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
199424
199648
|
"default": false,
|
|
199425
199649
|
"type": "boolean"
|
|
199426
199650
|
}
|
|
199427
199651
|
},
|
|
199428
199652
|
"additionalProperties": false,
|
|
199429
199653
|
"required": [
|
|
199430
|
-
"
|
|
199431
|
-
"
|
|
199654
|
+
"CONSTRAINT",
|
|
199655
|
+
"PARAMETRIZATION",
|
|
199432
199656
|
"MAT",
|
|
199433
199657
|
"TRIADS"
|
|
199434
199658
|
]
|
|
@@ -199449,15 +199673,23 @@
|
|
|
199449
199673
|
"description": "No description yet.",
|
|
199450
199674
|
"type": "object",
|
|
199451
199675
|
"properties": {
|
|
199452
|
-
"
|
|
199453
|
-
"title": "
|
|
199454
|
-
"description": "
|
|
199455
|
-
"type": "
|
|
199676
|
+
"CONSTRAINT": {
|
|
199677
|
+
"title": "CONSTRAINT (enum)",
|
|
199678
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
199679
|
+
"type": "string",
|
|
199680
|
+
"enum": [
|
|
199681
|
+
"strong",
|
|
199682
|
+
"weak"
|
|
199683
|
+
]
|
|
199456
199684
|
},
|
|
199457
|
-
"
|
|
199458
|
-
"title": "
|
|
199459
|
-
"description": "
|
|
199460
|
-
"type": "
|
|
199685
|
+
"PARAMETRIZATION": {
|
|
199686
|
+
"title": "PARAMETRIZATION (enum)",
|
|
199687
|
+
"description": "Which type of beam parametrization should be used.",
|
|
199688
|
+
"type": "string",
|
|
199689
|
+
"enum": [
|
|
199690
|
+
"tan",
|
|
199691
|
+
"rot"
|
|
199692
|
+
]
|
|
199461
199693
|
},
|
|
199462
199694
|
"MAT": {
|
|
199463
199695
|
"title": "MAT (int)",
|
|
@@ -199466,7 +199698,7 @@
|
|
|
199466
199698
|
},
|
|
199467
199699
|
"TRIADS": {
|
|
199468
199700
|
"title": "TRIADS (vector)",
|
|
199469
|
-
"description": "
|
|
199701
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
199470
199702
|
"type": "array",
|
|
199471
199703
|
"items": {
|
|
199472
199704
|
"title": "double",
|
|
@@ -199477,15 +199709,15 @@
|
|
|
199477
199709
|
},
|
|
199478
199710
|
"USE_FAD": {
|
|
199479
199711
|
"title": "USE_FAD (bool)",
|
|
199480
|
-
"description": "
|
|
199712
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
199481
199713
|
"default": false,
|
|
199482
199714
|
"type": "boolean"
|
|
199483
199715
|
}
|
|
199484
199716
|
},
|
|
199485
199717
|
"additionalProperties": false,
|
|
199486
199718
|
"required": [
|
|
199487
|
-
"
|
|
199488
|
-
"
|
|
199719
|
+
"CONSTRAINT",
|
|
199720
|
+
"PARAMETRIZATION",
|
|
199489
199721
|
"MAT",
|
|
199490
199722
|
"TRIADS"
|
|
199491
199723
|
]
|
|
@@ -199506,15 +199738,23 @@
|
|
|
199506
199738
|
"description": "No description yet.",
|
|
199507
199739
|
"type": "object",
|
|
199508
199740
|
"properties": {
|
|
199509
|
-
"
|
|
199510
|
-
"title": "
|
|
199511
|
-
"description": "
|
|
199512
|
-
"type": "
|
|
199741
|
+
"CONSTRAINT": {
|
|
199742
|
+
"title": "CONSTRAINT (enum)",
|
|
199743
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
199744
|
+
"type": "string",
|
|
199745
|
+
"enum": [
|
|
199746
|
+
"strong",
|
|
199747
|
+
"weak"
|
|
199748
|
+
]
|
|
199513
199749
|
},
|
|
199514
|
-
"
|
|
199515
|
-
"title": "
|
|
199516
|
-
"description": "
|
|
199517
|
-
"type": "
|
|
199750
|
+
"PARAMETRIZATION": {
|
|
199751
|
+
"title": "PARAMETRIZATION (enum)",
|
|
199752
|
+
"description": "Which type of beam parametrization should be used.",
|
|
199753
|
+
"type": "string",
|
|
199754
|
+
"enum": [
|
|
199755
|
+
"tan",
|
|
199756
|
+
"rot"
|
|
199757
|
+
]
|
|
199518
199758
|
},
|
|
199519
199759
|
"MAT": {
|
|
199520
199760
|
"title": "MAT (int)",
|
|
@@ -199523,7 +199763,7 @@
|
|
|
199523
199763
|
},
|
|
199524
199764
|
"TRIADS": {
|
|
199525
199765
|
"title": "TRIADS (vector)",
|
|
199526
|
-
"description": "
|
|
199766
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
199527
199767
|
"type": "array",
|
|
199528
199768
|
"items": {
|
|
199529
199769
|
"title": "double",
|
|
@@ -199534,15 +199774,15 @@
|
|
|
199534
199774
|
},
|
|
199535
199775
|
"USE_FAD": {
|
|
199536
199776
|
"title": "USE_FAD (bool)",
|
|
199537
|
-
"description": "
|
|
199777
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
199538
199778
|
"default": false,
|
|
199539
199779
|
"type": "boolean"
|
|
199540
199780
|
}
|
|
199541
199781
|
},
|
|
199542
199782
|
"additionalProperties": false,
|
|
199543
199783
|
"required": [
|
|
199544
|
-
"
|
|
199545
|
-
"
|
|
199784
|
+
"CONSTRAINT",
|
|
199785
|
+
"PARAMETRIZATION",
|
|
199546
199786
|
"MAT",
|
|
199547
199787
|
"TRIADS"
|
|
199548
199788
|
]
|
|
@@ -217289,15 +217529,23 @@
|
|
|
217289
217529
|
"description": "No description yet.",
|
|
217290
217530
|
"type": "object",
|
|
217291
217531
|
"properties": {
|
|
217292
|
-
"
|
|
217293
|
-
"title": "
|
|
217294
|
-
"description": "
|
|
217295
|
-
"type": "
|
|
217532
|
+
"CONSTRAINT": {
|
|
217533
|
+
"title": "CONSTRAINT (enum)",
|
|
217534
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
217535
|
+
"type": "string",
|
|
217536
|
+
"enum": [
|
|
217537
|
+
"strong",
|
|
217538
|
+
"weak"
|
|
217539
|
+
]
|
|
217296
217540
|
},
|
|
217297
|
-
"
|
|
217298
|
-
"title": "
|
|
217299
|
-
"description": "
|
|
217300
|
-
"type": "
|
|
217541
|
+
"PARAMETRIZATION": {
|
|
217542
|
+
"title": "PARAMETRIZATION (enum)",
|
|
217543
|
+
"description": "Which type of beam parametrization should be used.",
|
|
217544
|
+
"type": "string",
|
|
217545
|
+
"enum": [
|
|
217546
|
+
"tan",
|
|
217547
|
+
"rot"
|
|
217548
|
+
]
|
|
217301
217549
|
},
|
|
217302
217550
|
"MAT": {
|
|
217303
217551
|
"title": "MAT (int)",
|
|
@@ -217306,7 +217554,7 @@
|
|
|
217306
217554
|
},
|
|
217307
217555
|
"TRIADS": {
|
|
217308
217556
|
"title": "TRIADS (vector)",
|
|
217309
|
-
"description": "
|
|
217557
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
217310
217558
|
"type": "array",
|
|
217311
217559
|
"items": {
|
|
217312
217560
|
"title": "double",
|
|
@@ -217317,15 +217565,15 @@
|
|
|
217317
217565
|
},
|
|
217318
217566
|
"USE_FAD": {
|
|
217319
217567
|
"title": "USE_FAD (bool)",
|
|
217320
|
-
"description": "
|
|
217568
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
217321
217569
|
"default": false,
|
|
217322
217570
|
"type": "boolean"
|
|
217323
217571
|
}
|
|
217324
217572
|
},
|
|
217325
217573
|
"additionalProperties": false,
|
|
217326
217574
|
"required": [
|
|
217327
|
-
"
|
|
217328
|
-
"
|
|
217575
|
+
"CONSTRAINT",
|
|
217576
|
+
"PARAMETRIZATION",
|
|
217329
217577
|
"MAT",
|
|
217330
217578
|
"TRIADS"
|
|
217331
217579
|
]
|
|
@@ -217346,15 +217594,23 @@
|
|
|
217346
217594
|
"description": "No description yet.",
|
|
217347
217595
|
"type": "object",
|
|
217348
217596
|
"properties": {
|
|
217349
|
-
"
|
|
217350
|
-
"title": "
|
|
217351
|
-
"description": "
|
|
217352
|
-
"type": "
|
|
217597
|
+
"CONSTRAINT": {
|
|
217598
|
+
"title": "CONSTRAINT (enum)",
|
|
217599
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
217600
|
+
"type": "string",
|
|
217601
|
+
"enum": [
|
|
217602
|
+
"strong",
|
|
217603
|
+
"weak"
|
|
217604
|
+
]
|
|
217353
217605
|
},
|
|
217354
|
-
"
|
|
217355
|
-
"title": "
|
|
217356
|
-
"description": "
|
|
217357
|
-
"type": "
|
|
217606
|
+
"PARAMETRIZATION": {
|
|
217607
|
+
"title": "PARAMETRIZATION (enum)",
|
|
217608
|
+
"description": "Which type of beam parametrization should be used.",
|
|
217609
|
+
"type": "string",
|
|
217610
|
+
"enum": [
|
|
217611
|
+
"tan",
|
|
217612
|
+
"rot"
|
|
217613
|
+
]
|
|
217358
217614
|
},
|
|
217359
217615
|
"MAT": {
|
|
217360
217616
|
"title": "MAT (int)",
|
|
@@ -217363,7 +217619,7 @@
|
|
|
217363
217619
|
},
|
|
217364
217620
|
"TRIADS": {
|
|
217365
217621
|
"title": "TRIADS (vector)",
|
|
217366
|
-
"description": "
|
|
217622
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
217367
217623
|
"type": "array",
|
|
217368
217624
|
"items": {
|
|
217369
217625
|
"title": "double",
|
|
@@ -217374,15 +217630,15 @@
|
|
|
217374
217630
|
},
|
|
217375
217631
|
"USE_FAD": {
|
|
217376
217632
|
"title": "USE_FAD (bool)",
|
|
217377
|
-
"description": "
|
|
217633
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
217378
217634
|
"default": false,
|
|
217379
217635
|
"type": "boolean"
|
|
217380
217636
|
}
|
|
217381
217637
|
},
|
|
217382
217638
|
"additionalProperties": false,
|
|
217383
217639
|
"required": [
|
|
217384
|
-
"
|
|
217385
|
-
"
|
|
217640
|
+
"CONSTRAINT",
|
|
217641
|
+
"PARAMETRIZATION",
|
|
217386
217642
|
"MAT",
|
|
217387
217643
|
"TRIADS"
|
|
217388
217644
|
]
|
|
@@ -217403,15 +217659,23 @@
|
|
|
217403
217659
|
"description": "No description yet.",
|
|
217404
217660
|
"type": "object",
|
|
217405
217661
|
"properties": {
|
|
217406
|
-
"
|
|
217407
|
-
"title": "
|
|
217408
|
-
"description": "
|
|
217409
|
-
"type": "
|
|
217662
|
+
"CONSTRAINT": {
|
|
217663
|
+
"title": "CONSTRAINT (enum)",
|
|
217664
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
217665
|
+
"type": "string",
|
|
217666
|
+
"enum": [
|
|
217667
|
+
"strong",
|
|
217668
|
+
"weak"
|
|
217669
|
+
]
|
|
217410
217670
|
},
|
|
217411
|
-
"
|
|
217412
|
-
"title": "
|
|
217413
|
-
"description": "
|
|
217414
|
-
"type": "
|
|
217671
|
+
"PARAMETRIZATION": {
|
|
217672
|
+
"title": "PARAMETRIZATION (enum)",
|
|
217673
|
+
"description": "Which type of beam parametrization should be used.",
|
|
217674
|
+
"type": "string",
|
|
217675
|
+
"enum": [
|
|
217676
|
+
"tan",
|
|
217677
|
+
"rot"
|
|
217678
|
+
]
|
|
217415
217679
|
},
|
|
217416
217680
|
"MAT": {
|
|
217417
217681
|
"title": "MAT (int)",
|
|
@@ -217420,7 +217684,7 @@
|
|
|
217420
217684
|
},
|
|
217421
217685
|
"TRIADS": {
|
|
217422
217686
|
"title": "TRIADS (vector)",
|
|
217423
|
-
"description": "
|
|
217687
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
217424
217688
|
"type": "array",
|
|
217425
217689
|
"items": {
|
|
217426
217690
|
"title": "double",
|
|
@@ -217431,15 +217695,15 @@
|
|
|
217431
217695
|
},
|
|
217432
217696
|
"USE_FAD": {
|
|
217433
217697
|
"title": "USE_FAD (bool)",
|
|
217434
|
-
"description": "
|
|
217698
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
217435
217699
|
"default": false,
|
|
217436
217700
|
"type": "boolean"
|
|
217437
217701
|
}
|
|
217438
217702
|
},
|
|
217439
217703
|
"additionalProperties": false,
|
|
217440
217704
|
"required": [
|
|
217441
|
-
"
|
|
217442
|
-
"
|
|
217705
|
+
"CONSTRAINT",
|
|
217706
|
+
"PARAMETRIZATION",
|
|
217443
217707
|
"MAT",
|
|
217444
217708
|
"TRIADS"
|
|
217445
217709
|
]
|
|
@@ -234195,15 +234459,23 @@
|
|
|
234195
234459
|
"description": "No description yet.",
|
|
234196
234460
|
"type": "object",
|
|
234197
234461
|
"properties": {
|
|
234198
|
-
"
|
|
234199
|
-
"title": "
|
|
234200
|
-
"description": "
|
|
234201
|
-
"type": "
|
|
234462
|
+
"CONSTRAINT": {
|
|
234463
|
+
"title": "CONSTRAINT (enum)",
|
|
234464
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
234465
|
+
"type": "string",
|
|
234466
|
+
"enum": [
|
|
234467
|
+
"strong",
|
|
234468
|
+
"weak"
|
|
234469
|
+
]
|
|
234202
234470
|
},
|
|
234203
|
-
"
|
|
234204
|
-
"title": "
|
|
234205
|
-
"description": "
|
|
234206
|
-
"type": "
|
|
234471
|
+
"PARAMETRIZATION": {
|
|
234472
|
+
"title": "PARAMETRIZATION (enum)",
|
|
234473
|
+
"description": "Which type of beam parametrization should be used.",
|
|
234474
|
+
"type": "string",
|
|
234475
|
+
"enum": [
|
|
234476
|
+
"tan",
|
|
234477
|
+
"rot"
|
|
234478
|
+
]
|
|
234207
234479
|
},
|
|
234208
234480
|
"MAT": {
|
|
234209
234481
|
"title": "MAT (int)",
|
|
@@ -234212,7 +234484,7 @@
|
|
|
234212
234484
|
},
|
|
234213
234485
|
"TRIADS": {
|
|
234214
234486
|
"title": "TRIADS (vector)",
|
|
234215
|
-
"description": "
|
|
234487
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
234216
234488
|
"type": "array",
|
|
234217
234489
|
"items": {
|
|
234218
234490
|
"title": "double",
|
|
@@ -234223,15 +234495,15 @@
|
|
|
234223
234495
|
},
|
|
234224
234496
|
"USE_FAD": {
|
|
234225
234497
|
"title": "USE_FAD (bool)",
|
|
234226
|
-
"description": "
|
|
234498
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
234227
234499
|
"default": false,
|
|
234228
234500
|
"type": "boolean"
|
|
234229
234501
|
}
|
|
234230
234502
|
},
|
|
234231
234503
|
"additionalProperties": false,
|
|
234232
234504
|
"required": [
|
|
234233
|
-
"
|
|
234234
|
-
"
|
|
234505
|
+
"CONSTRAINT",
|
|
234506
|
+
"PARAMETRIZATION",
|
|
234235
234507
|
"MAT",
|
|
234236
234508
|
"TRIADS"
|
|
234237
234509
|
]
|
|
@@ -234252,15 +234524,23 @@
|
|
|
234252
234524
|
"description": "No description yet.",
|
|
234253
234525
|
"type": "object",
|
|
234254
234526
|
"properties": {
|
|
234255
|
-
"
|
|
234256
|
-
"title": "
|
|
234257
|
-
"description": "
|
|
234258
|
-
"type": "
|
|
234527
|
+
"CONSTRAINT": {
|
|
234528
|
+
"title": "CONSTRAINT (enum)",
|
|
234529
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
234530
|
+
"type": "string",
|
|
234531
|
+
"enum": [
|
|
234532
|
+
"strong",
|
|
234533
|
+
"weak"
|
|
234534
|
+
]
|
|
234259
234535
|
},
|
|
234260
|
-
"
|
|
234261
|
-
"title": "
|
|
234262
|
-
"description": "
|
|
234263
|
-
"type": "
|
|
234536
|
+
"PARAMETRIZATION": {
|
|
234537
|
+
"title": "PARAMETRIZATION (enum)",
|
|
234538
|
+
"description": "Which type of beam parametrization should be used.",
|
|
234539
|
+
"type": "string",
|
|
234540
|
+
"enum": [
|
|
234541
|
+
"tan",
|
|
234542
|
+
"rot"
|
|
234543
|
+
]
|
|
234264
234544
|
},
|
|
234265
234545
|
"MAT": {
|
|
234266
234546
|
"title": "MAT (int)",
|
|
@@ -234269,7 +234549,7 @@
|
|
|
234269
234549
|
},
|
|
234270
234550
|
"TRIADS": {
|
|
234271
234551
|
"title": "TRIADS (vector)",
|
|
234272
|
-
"description": "
|
|
234552
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
234273
234553
|
"type": "array",
|
|
234274
234554
|
"items": {
|
|
234275
234555
|
"title": "double",
|
|
@@ -234280,15 +234560,15 @@
|
|
|
234280
234560
|
},
|
|
234281
234561
|
"USE_FAD": {
|
|
234282
234562
|
"title": "USE_FAD (bool)",
|
|
234283
|
-
"description": "
|
|
234563
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
234284
234564
|
"default": false,
|
|
234285
234565
|
"type": "boolean"
|
|
234286
234566
|
}
|
|
234287
234567
|
},
|
|
234288
234568
|
"additionalProperties": false,
|
|
234289
234569
|
"required": [
|
|
234290
|
-
"
|
|
234291
|
-
"
|
|
234570
|
+
"CONSTRAINT",
|
|
234571
|
+
"PARAMETRIZATION",
|
|
234292
234572
|
"MAT",
|
|
234293
234573
|
"TRIADS"
|
|
234294
234574
|
]
|
|
@@ -234309,15 +234589,23 @@
|
|
|
234309
234589
|
"description": "No description yet.",
|
|
234310
234590
|
"type": "object",
|
|
234311
234591
|
"properties": {
|
|
234312
|
-
"
|
|
234313
|
-
"title": "
|
|
234314
|
-
"description": "
|
|
234315
|
-
"type": "
|
|
234592
|
+
"CONSTRAINT": {
|
|
234593
|
+
"title": "CONSTRAINT (enum)",
|
|
234594
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
234595
|
+
"type": "string",
|
|
234596
|
+
"enum": [
|
|
234597
|
+
"strong",
|
|
234598
|
+
"weak"
|
|
234599
|
+
]
|
|
234316
234600
|
},
|
|
234317
|
-
"
|
|
234318
|
-
"title": "
|
|
234319
|
-
"description": "
|
|
234320
|
-
"type": "
|
|
234601
|
+
"PARAMETRIZATION": {
|
|
234602
|
+
"title": "PARAMETRIZATION (enum)",
|
|
234603
|
+
"description": "Which type of beam parametrization should be used.",
|
|
234604
|
+
"type": "string",
|
|
234605
|
+
"enum": [
|
|
234606
|
+
"tan",
|
|
234607
|
+
"rot"
|
|
234608
|
+
]
|
|
234321
234609
|
},
|
|
234322
234610
|
"MAT": {
|
|
234323
234611
|
"title": "MAT (int)",
|
|
@@ -234326,7 +234614,7 @@
|
|
|
234326
234614
|
},
|
|
234327
234615
|
"TRIADS": {
|
|
234328
234616
|
"title": "TRIADS (vector)",
|
|
234329
|
-
"description": "
|
|
234617
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
234330
234618
|
"type": "array",
|
|
234331
234619
|
"items": {
|
|
234332
234620
|
"title": "double",
|
|
@@ -234337,15 +234625,15 @@
|
|
|
234337
234625
|
},
|
|
234338
234626
|
"USE_FAD": {
|
|
234339
234627
|
"title": "USE_FAD (bool)",
|
|
234340
|
-
"description": "
|
|
234628
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
234341
234629
|
"default": false,
|
|
234342
234630
|
"type": "boolean"
|
|
234343
234631
|
}
|
|
234344
234632
|
},
|
|
234345
234633
|
"additionalProperties": false,
|
|
234346
234634
|
"required": [
|
|
234347
|
-
"
|
|
234348
|
-
"
|
|
234635
|
+
"CONSTRAINT",
|
|
234636
|
+
"PARAMETRIZATION",
|
|
234349
234637
|
"MAT",
|
|
234350
234638
|
"TRIADS"
|
|
234351
234639
|
]
|
|
@@ -257938,15 +258226,23 @@
|
|
|
257938
258226
|
"description": "No description yet.",
|
|
257939
258227
|
"type": "object",
|
|
257940
258228
|
"properties": {
|
|
257941
|
-
"
|
|
257942
|
-
"title": "
|
|
257943
|
-
"description": "
|
|
257944
|
-
"type": "
|
|
258229
|
+
"CONSTRAINT": {
|
|
258230
|
+
"title": "CONSTRAINT (enum)",
|
|
258231
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
258232
|
+
"type": "string",
|
|
258233
|
+
"enum": [
|
|
258234
|
+
"strong",
|
|
258235
|
+
"weak"
|
|
258236
|
+
]
|
|
257945
258237
|
},
|
|
257946
|
-
"
|
|
257947
|
-
"title": "
|
|
257948
|
-
"description": "
|
|
257949
|
-
"type": "
|
|
258238
|
+
"PARAMETRIZATION": {
|
|
258239
|
+
"title": "PARAMETRIZATION (enum)",
|
|
258240
|
+
"description": "Which type of beam parametrization should be used.",
|
|
258241
|
+
"type": "string",
|
|
258242
|
+
"enum": [
|
|
258243
|
+
"tan",
|
|
258244
|
+
"rot"
|
|
258245
|
+
]
|
|
257950
258246
|
},
|
|
257951
258247
|
"MAT": {
|
|
257952
258248
|
"title": "MAT (int)",
|
|
@@ -257955,7 +258251,7 @@
|
|
|
257955
258251
|
},
|
|
257956
258252
|
"TRIADS": {
|
|
257957
258253
|
"title": "TRIADS (vector)",
|
|
257958
|
-
"description": "
|
|
258254
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
257959
258255
|
"type": "array",
|
|
257960
258256
|
"items": {
|
|
257961
258257
|
"title": "double",
|
|
@@ -257966,15 +258262,15 @@
|
|
|
257966
258262
|
},
|
|
257967
258263
|
"USE_FAD": {
|
|
257968
258264
|
"title": "USE_FAD (bool)",
|
|
257969
|
-
"description": "
|
|
258265
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
257970
258266
|
"default": false,
|
|
257971
258267
|
"type": "boolean"
|
|
257972
258268
|
}
|
|
257973
258269
|
},
|
|
257974
258270
|
"additionalProperties": false,
|
|
257975
258271
|
"required": [
|
|
257976
|
-
"
|
|
257977
|
-
"
|
|
258272
|
+
"CONSTRAINT",
|
|
258273
|
+
"PARAMETRIZATION",
|
|
257978
258274
|
"MAT",
|
|
257979
258275
|
"TRIADS"
|
|
257980
258276
|
]
|
|
@@ -257995,15 +258291,23 @@
|
|
|
257995
258291
|
"description": "No description yet.",
|
|
257996
258292
|
"type": "object",
|
|
257997
258293
|
"properties": {
|
|
257998
|
-
"
|
|
257999
|
-
"title": "
|
|
258000
|
-
"description": "
|
|
258001
|
-
"type": "
|
|
258294
|
+
"CONSTRAINT": {
|
|
258295
|
+
"title": "CONSTRAINT (enum)",
|
|
258296
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
258297
|
+
"type": "string",
|
|
258298
|
+
"enum": [
|
|
258299
|
+
"strong",
|
|
258300
|
+
"weak"
|
|
258301
|
+
]
|
|
258002
258302
|
},
|
|
258003
|
-
"
|
|
258004
|
-
"title": "
|
|
258005
|
-
"description": "
|
|
258006
|
-
"type": "
|
|
258303
|
+
"PARAMETRIZATION": {
|
|
258304
|
+
"title": "PARAMETRIZATION (enum)",
|
|
258305
|
+
"description": "Which type of beam parametrization should be used.",
|
|
258306
|
+
"type": "string",
|
|
258307
|
+
"enum": [
|
|
258308
|
+
"tan",
|
|
258309
|
+
"rot"
|
|
258310
|
+
]
|
|
258007
258311
|
},
|
|
258008
258312
|
"MAT": {
|
|
258009
258313
|
"title": "MAT (int)",
|
|
@@ -258012,7 +258316,7 @@
|
|
|
258012
258316
|
},
|
|
258013
258317
|
"TRIADS": {
|
|
258014
258318
|
"title": "TRIADS (vector)",
|
|
258015
|
-
"description": "
|
|
258319
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
258016
258320
|
"type": "array",
|
|
258017
258321
|
"items": {
|
|
258018
258322
|
"title": "double",
|
|
@@ -258023,15 +258327,15 @@
|
|
|
258023
258327
|
},
|
|
258024
258328
|
"USE_FAD": {
|
|
258025
258329
|
"title": "USE_FAD (bool)",
|
|
258026
|
-
"description": "
|
|
258330
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
258027
258331
|
"default": false,
|
|
258028
258332
|
"type": "boolean"
|
|
258029
258333
|
}
|
|
258030
258334
|
},
|
|
258031
258335
|
"additionalProperties": false,
|
|
258032
258336
|
"required": [
|
|
258033
|
-
"
|
|
258034
|
-
"
|
|
258337
|
+
"CONSTRAINT",
|
|
258338
|
+
"PARAMETRIZATION",
|
|
258035
258339
|
"MAT",
|
|
258036
258340
|
"TRIADS"
|
|
258037
258341
|
]
|
|
@@ -258052,15 +258356,23 @@
|
|
|
258052
258356
|
"description": "No description yet.",
|
|
258053
258357
|
"type": "object",
|
|
258054
258358
|
"properties": {
|
|
258055
|
-
"
|
|
258056
|
-
"title": "
|
|
258057
|
-
"description": "
|
|
258058
|
-
"type": "
|
|
258359
|
+
"CONSTRAINT": {
|
|
258360
|
+
"title": "CONSTRAINT (enum)",
|
|
258361
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
258362
|
+
"type": "string",
|
|
258363
|
+
"enum": [
|
|
258364
|
+
"strong",
|
|
258365
|
+
"weak"
|
|
258366
|
+
]
|
|
258059
258367
|
},
|
|
258060
|
-
"
|
|
258061
|
-
"title": "
|
|
258062
|
-
"description": "
|
|
258063
|
-
"type": "
|
|
258368
|
+
"PARAMETRIZATION": {
|
|
258369
|
+
"title": "PARAMETRIZATION (enum)",
|
|
258370
|
+
"description": "Which type of beam parametrization should be used.",
|
|
258371
|
+
"type": "string",
|
|
258372
|
+
"enum": [
|
|
258373
|
+
"tan",
|
|
258374
|
+
"rot"
|
|
258375
|
+
]
|
|
258064
258376
|
},
|
|
258065
258377
|
"MAT": {
|
|
258066
258378
|
"title": "MAT (int)",
|
|
@@ -258069,7 +258381,7 @@
|
|
|
258069
258381
|
},
|
|
258070
258382
|
"TRIADS": {
|
|
258071
258383
|
"title": "TRIADS (vector)",
|
|
258072
|
-
"description": "
|
|
258384
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
258073
258385
|
"type": "array",
|
|
258074
258386
|
"items": {
|
|
258075
258387
|
"title": "double",
|
|
@@ -258080,15 +258392,15 @@
|
|
|
258080
258392
|
},
|
|
258081
258393
|
"USE_FAD": {
|
|
258082
258394
|
"title": "USE_FAD (bool)",
|
|
258083
|
-
"description": "
|
|
258395
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
258084
258396
|
"default": false,
|
|
258085
258397
|
"type": "boolean"
|
|
258086
258398
|
}
|
|
258087
258399
|
},
|
|
258088
258400
|
"additionalProperties": false,
|
|
258089
258401
|
"required": [
|
|
258090
|
-
"
|
|
258091
|
-
"
|
|
258402
|
+
"CONSTRAINT",
|
|
258403
|
+
"PARAMETRIZATION",
|
|
258092
258404
|
"MAT",
|
|
258093
258405
|
"TRIADS"
|
|
258094
258406
|
]
|
|
@@ -274844,15 +275156,23 @@
|
|
|
274844
275156
|
"description": "No description yet.",
|
|
274845
275157
|
"type": "object",
|
|
274846
275158
|
"properties": {
|
|
274847
|
-
"
|
|
274848
|
-
"title": "
|
|
274849
|
-
"description": "
|
|
274850
|
-
"type": "
|
|
275159
|
+
"CONSTRAINT": {
|
|
275160
|
+
"title": "CONSTRAINT (enum)",
|
|
275161
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
275162
|
+
"type": "string",
|
|
275163
|
+
"enum": [
|
|
275164
|
+
"strong",
|
|
275165
|
+
"weak"
|
|
275166
|
+
]
|
|
274851
275167
|
},
|
|
274852
|
-
"
|
|
274853
|
-
"title": "
|
|
274854
|
-
"description": "
|
|
274855
|
-
"type": "
|
|
275168
|
+
"PARAMETRIZATION": {
|
|
275169
|
+
"title": "PARAMETRIZATION (enum)",
|
|
275170
|
+
"description": "Which type of beam parametrization should be used.",
|
|
275171
|
+
"type": "string",
|
|
275172
|
+
"enum": [
|
|
275173
|
+
"tan",
|
|
275174
|
+
"rot"
|
|
275175
|
+
]
|
|
274856
275176
|
},
|
|
274857
275177
|
"MAT": {
|
|
274858
275178
|
"title": "MAT (int)",
|
|
@@ -274861,7 +275181,7 @@
|
|
|
274861
275181
|
},
|
|
274862
275182
|
"TRIADS": {
|
|
274863
275183
|
"title": "TRIADS (vector)",
|
|
274864
|
-
"description": "
|
|
275184
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
274865
275185
|
"type": "array",
|
|
274866
275186
|
"items": {
|
|
274867
275187
|
"title": "double",
|
|
@@ -274872,15 +275192,15 @@
|
|
|
274872
275192
|
},
|
|
274873
275193
|
"USE_FAD": {
|
|
274874
275194
|
"title": "USE_FAD (bool)",
|
|
274875
|
-
"description": "
|
|
275195
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
274876
275196
|
"default": false,
|
|
274877
275197
|
"type": "boolean"
|
|
274878
275198
|
}
|
|
274879
275199
|
},
|
|
274880
275200
|
"additionalProperties": false,
|
|
274881
275201
|
"required": [
|
|
274882
|
-
"
|
|
274883
|
-
"
|
|
275202
|
+
"CONSTRAINT",
|
|
275203
|
+
"PARAMETRIZATION",
|
|
274884
275204
|
"MAT",
|
|
274885
275205
|
"TRIADS"
|
|
274886
275206
|
]
|
|
@@ -274901,15 +275221,23 @@
|
|
|
274901
275221
|
"description": "No description yet.",
|
|
274902
275222
|
"type": "object",
|
|
274903
275223
|
"properties": {
|
|
274904
|
-
"
|
|
274905
|
-
"title": "
|
|
274906
|
-
"description": "
|
|
274907
|
-
"type": "
|
|
275224
|
+
"CONSTRAINT": {
|
|
275225
|
+
"title": "CONSTRAINT (enum)",
|
|
275226
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
275227
|
+
"type": "string",
|
|
275228
|
+
"enum": [
|
|
275229
|
+
"strong",
|
|
275230
|
+
"weak"
|
|
275231
|
+
]
|
|
274908
275232
|
},
|
|
274909
|
-
"
|
|
274910
|
-
"title": "
|
|
274911
|
-
"description": "
|
|
274912
|
-
"type": "
|
|
275233
|
+
"PARAMETRIZATION": {
|
|
275234
|
+
"title": "PARAMETRIZATION (enum)",
|
|
275235
|
+
"description": "Which type of beam parametrization should be used.",
|
|
275236
|
+
"type": "string",
|
|
275237
|
+
"enum": [
|
|
275238
|
+
"tan",
|
|
275239
|
+
"rot"
|
|
275240
|
+
]
|
|
274913
275241
|
},
|
|
274914
275242
|
"MAT": {
|
|
274915
275243
|
"title": "MAT (int)",
|
|
@@ -274918,7 +275246,7 @@
|
|
|
274918
275246
|
},
|
|
274919
275247
|
"TRIADS": {
|
|
274920
275248
|
"title": "TRIADS (vector)",
|
|
274921
|
-
"description": "
|
|
275249
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
274922
275250
|
"type": "array",
|
|
274923
275251
|
"items": {
|
|
274924
275252
|
"title": "double",
|
|
@@ -274929,15 +275257,15 @@
|
|
|
274929
275257
|
},
|
|
274930
275258
|
"USE_FAD": {
|
|
274931
275259
|
"title": "USE_FAD (bool)",
|
|
274932
|
-
"description": "
|
|
275260
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
274933
275261
|
"default": false,
|
|
274934
275262
|
"type": "boolean"
|
|
274935
275263
|
}
|
|
274936
275264
|
},
|
|
274937
275265
|
"additionalProperties": false,
|
|
274938
275266
|
"required": [
|
|
274939
|
-
"
|
|
274940
|
-
"
|
|
275267
|
+
"CONSTRAINT",
|
|
275268
|
+
"PARAMETRIZATION",
|
|
274941
275269
|
"MAT",
|
|
274942
275270
|
"TRIADS"
|
|
274943
275271
|
]
|
|
@@ -274958,15 +275286,23 @@
|
|
|
274958
275286
|
"description": "No description yet.",
|
|
274959
275287
|
"type": "object",
|
|
274960
275288
|
"properties": {
|
|
274961
|
-
"
|
|
274962
|
-
"title": "
|
|
274963
|
-
"description": "
|
|
274964
|
-
"type": "
|
|
275289
|
+
"CONSTRAINT": {
|
|
275290
|
+
"title": "CONSTRAINT (enum)",
|
|
275291
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
275292
|
+
"type": "string",
|
|
275293
|
+
"enum": [
|
|
275294
|
+
"strong",
|
|
275295
|
+
"weak"
|
|
275296
|
+
]
|
|
274965
275297
|
},
|
|
274966
|
-
"
|
|
274967
|
-
"title": "
|
|
274968
|
-
"description": "
|
|
274969
|
-
"type": "
|
|
275298
|
+
"PARAMETRIZATION": {
|
|
275299
|
+
"title": "PARAMETRIZATION (enum)",
|
|
275300
|
+
"description": "Which type of beam parametrization should be used.",
|
|
275301
|
+
"type": "string",
|
|
275302
|
+
"enum": [
|
|
275303
|
+
"tan",
|
|
275304
|
+
"rot"
|
|
275305
|
+
]
|
|
274970
275306
|
},
|
|
274971
275307
|
"MAT": {
|
|
274972
275308
|
"title": "MAT (int)",
|
|
@@ -274975,7 +275311,7 @@
|
|
|
274975
275311
|
},
|
|
274976
275312
|
"TRIADS": {
|
|
274977
275313
|
"title": "TRIADS (vector)",
|
|
274978
|
-
"description": "
|
|
275314
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
274979
275315
|
"type": "array",
|
|
274980
275316
|
"items": {
|
|
274981
275317
|
"title": "double",
|
|
@@ -274986,15 +275322,15 @@
|
|
|
274986
275322
|
},
|
|
274987
275323
|
"USE_FAD": {
|
|
274988
275324
|
"title": "USE_FAD (bool)",
|
|
274989
|
-
"description": "
|
|
275325
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
274990
275326
|
"default": false,
|
|
274991
275327
|
"type": "boolean"
|
|
274992
275328
|
}
|
|
274993
275329
|
},
|
|
274994
275330
|
"additionalProperties": false,
|
|
274995
275331
|
"required": [
|
|
274996
|
-
"
|
|
274997
|
-
"
|
|
275332
|
+
"CONSTRAINT",
|
|
275333
|
+
"PARAMETRIZATION",
|
|
274998
275334
|
"MAT",
|
|
274999
275335
|
"TRIADS"
|
|
275000
275336
|
]
|
|
@@ -292580,15 +292916,23 @@
|
|
|
292580
292916
|
"description": "No description yet.",
|
|
292581
292917
|
"type": "object",
|
|
292582
292918
|
"properties": {
|
|
292583
|
-
"
|
|
292584
|
-
"title": "
|
|
292585
|
-
"description": "
|
|
292586
|
-
"type": "
|
|
292919
|
+
"CONSTRAINT": {
|
|
292920
|
+
"title": "CONSTRAINT (enum)",
|
|
292921
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
292922
|
+
"type": "string",
|
|
292923
|
+
"enum": [
|
|
292924
|
+
"strong",
|
|
292925
|
+
"weak"
|
|
292926
|
+
]
|
|
292587
292927
|
},
|
|
292588
|
-
"
|
|
292589
|
-
"title": "
|
|
292590
|
-
"description": "
|
|
292591
|
-
"type": "
|
|
292928
|
+
"PARAMETRIZATION": {
|
|
292929
|
+
"title": "PARAMETRIZATION (enum)",
|
|
292930
|
+
"description": "Which type of beam parametrization should be used.",
|
|
292931
|
+
"type": "string",
|
|
292932
|
+
"enum": [
|
|
292933
|
+
"tan",
|
|
292934
|
+
"rot"
|
|
292935
|
+
]
|
|
292592
292936
|
},
|
|
292593
292937
|
"MAT": {
|
|
292594
292938
|
"title": "MAT (int)",
|
|
@@ -292597,7 +292941,7 @@
|
|
|
292597
292941
|
},
|
|
292598
292942
|
"TRIADS": {
|
|
292599
292943
|
"title": "TRIADS (vector)",
|
|
292600
|
-
"description": "
|
|
292944
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
292601
292945
|
"type": "array",
|
|
292602
292946
|
"items": {
|
|
292603
292947
|
"title": "double",
|
|
@@ -292608,15 +292952,15 @@
|
|
|
292608
292952
|
},
|
|
292609
292953
|
"USE_FAD": {
|
|
292610
292954
|
"title": "USE_FAD (bool)",
|
|
292611
|
-
"description": "
|
|
292955
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
292612
292956
|
"default": false,
|
|
292613
292957
|
"type": "boolean"
|
|
292614
292958
|
}
|
|
292615
292959
|
},
|
|
292616
292960
|
"additionalProperties": false,
|
|
292617
292961
|
"required": [
|
|
292618
|
-
"
|
|
292619
|
-
"
|
|
292962
|
+
"CONSTRAINT",
|
|
292963
|
+
"PARAMETRIZATION",
|
|
292620
292964
|
"MAT",
|
|
292621
292965
|
"TRIADS"
|
|
292622
292966
|
]
|
|
@@ -292637,15 +292981,23 @@
|
|
|
292637
292981
|
"description": "No description yet.",
|
|
292638
292982
|
"type": "object",
|
|
292639
292983
|
"properties": {
|
|
292640
|
-
"
|
|
292641
|
-
"title": "
|
|
292642
|
-
"description": "
|
|
292643
|
-
"type": "
|
|
292984
|
+
"CONSTRAINT": {
|
|
292985
|
+
"title": "CONSTRAINT (enum)",
|
|
292986
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
292987
|
+
"type": "string",
|
|
292988
|
+
"enum": [
|
|
292989
|
+
"strong",
|
|
292990
|
+
"weak"
|
|
292991
|
+
]
|
|
292644
292992
|
},
|
|
292645
|
-
"
|
|
292646
|
-
"title": "
|
|
292647
|
-
"description": "
|
|
292648
|
-
"type": "
|
|
292993
|
+
"PARAMETRIZATION": {
|
|
292994
|
+
"title": "PARAMETRIZATION (enum)",
|
|
292995
|
+
"description": "Which type of beam parametrization should be used.",
|
|
292996
|
+
"type": "string",
|
|
292997
|
+
"enum": [
|
|
292998
|
+
"tan",
|
|
292999
|
+
"rot"
|
|
293000
|
+
]
|
|
292649
293001
|
},
|
|
292650
293002
|
"MAT": {
|
|
292651
293003
|
"title": "MAT (int)",
|
|
@@ -292654,7 +293006,7 @@
|
|
|
292654
293006
|
},
|
|
292655
293007
|
"TRIADS": {
|
|
292656
293008
|
"title": "TRIADS (vector)",
|
|
292657
|
-
"description": "
|
|
293009
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
292658
293010
|
"type": "array",
|
|
292659
293011
|
"items": {
|
|
292660
293012
|
"title": "double",
|
|
@@ -292665,15 +293017,15 @@
|
|
|
292665
293017
|
},
|
|
292666
293018
|
"USE_FAD": {
|
|
292667
293019
|
"title": "USE_FAD (bool)",
|
|
292668
|
-
"description": "
|
|
293020
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
292669
293021
|
"default": false,
|
|
292670
293022
|
"type": "boolean"
|
|
292671
293023
|
}
|
|
292672
293024
|
},
|
|
292673
293025
|
"additionalProperties": false,
|
|
292674
293026
|
"required": [
|
|
292675
|
-
"
|
|
292676
|
-
"
|
|
293027
|
+
"CONSTRAINT",
|
|
293028
|
+
"PARAMETRIZATION",
|
|
292677
293029
|
"MAT",
|
|
292678
293030
|
"TRIADS"
|
|
292679
293031
|
]
|
|
@@ -292694,15 +293046,23 @@
|
|
|
292694
293046
|
"description": "No description yet.",
|
|
292695
293047
|
"type": "object",
|
|
292696
293048
|
"properties": {
|
|
292697
|
-
"
|
|
292698
|
-
"title": "
|
|
292699
|
-
"description": "
|
|
292700
|
-
"type": "
|
|
293049
|
+
"CONSTRAINT": {
|
|
293050
|
+
"title": "CONSTRAINT (enum)",
|
|
293051
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
293052
|
+
"type": "string",
|
|
293053
|
+
"enum": [
|
|
293054
|
+
"strong",
|
|
293055
|
+
"weak"
|
|
293056
|
+
]
|
|
292701
293057
|
},
|
|
292702
|
-
"
|
|
292703
|
-
"title": "
|
|
292704
|
-
"description": "
|
|
292705
|
-
"type": "
|
|
293058
|
+
"PARAMETRIZATION": {
|
|
293059
|
+
"title": "PARAMETRIZATION (enum)",
|
|
293060
|
+
"description": "Which type of beam parametrization should be used.",
|
|
293061
|
+
"type": "string",
|
|
293062
|
+
"enum": [
|
|
293063
|
+
"tan",
|
|
293064
|
+
"rot"
|
|
293065
|
+
]
|
|
292706
293066
|
},
|
|
292707
293067
|
"MAT": {
|
|
292708
293068
|
"title": "MAT (int)",
|
|
@@ -292711,7 +293071,7 @@
|
|
|
292711
293071
|
},
|
|
292712
293072
|
"TRIADS": {
|
|
292713
293073
|
"title": "TRIADS (vector)",
|
|
292714
|
-
"description": "
|
|
293074
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
292715
293075
|
"type": "array",
|
|
292716
293076
|
"items": {
|
|
292717
293077
|
"title": "double",
|
|
@@ -292722,15 +293082,15 @@
|
|
|
292722
293082
|
},
|
|
292723
293083
|
"USE_FAD": {
|
|
292724
293084
|
"title": "USE_FAD (bool)",
|
|
292725
|
-
"description": "
|
|
293085
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
292726
293086
|
"default": false,
|
|
292727
293087
|
"type": "boolean"
|
|
292728
293088
|
}
|
|
292729
293089
|
},
|
|
292730
293090
|
"additionalProperties": false,
|
|
292731
293091
|
"required": [
|
|
292732
|
-
"
|
|
292733
|
-
"
|
|
293092
|
+
"CONSTRAINT",
|
|
293093
|
+
"PARAMETRIZATION",
|
|
292734
293094
|
"MAT",
|
|
292735
293095
|
"TRIADS"
|
|
292736
293096
|
]
|
|
@@ -309486,15 +309846,23 @@
|
|
|
309486
309846
|
"description": "No description yet.",
|
|
309487
309847
|
"type": "object",
|
|
309488
309848
|
"properties": {
|
|
309489
|
-
"
|
|
309490
|
-
"title": "
|
|
309491
|
-
"description": "
|
|
309492
|
-
"type": "
|
|
309849
|
+
"CONSTRAINT": {
|
|
309850
|
+
"title": "CONSTRAINT (enum)",
|
|
309851
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
309852
|
+
"type": "string",
|
|
309853
|
+
"enum": [
|
|
309854
|
+
"strong",
|
|
309855
|
+
"weak"
|
|
309856
|
+
]
|
|
309493
309857
|
},
|
|
309494
|
-
"
|
|
309495
|
-
"title": "
|
|
309496
|
-
"description": "
|
|
309497
|
-
"type": "
|
|
309858
|
+
"PARAMETRIZATION": {
|
|
309859
|
+
"title": "PARAMETRIZATION (enum)",
|
|
309860
|
+
"description": "Which type of beam parametrization should be used.",
|
|
309861
|
+
"type": "string",
|
|
309862
|
+
"enum": [
|
|
309863
|
+
"tan",
|
|
309864
|
+
"rot"
|
|
309865
|
+
]
|
|
309498
309866
|
},
|
|
309499
309867
|
"MAT": {
|
|
309500
309868
|
"title": "MAT (int)",
|
|
@@ -309503,7 +309871,7 @@
|
|
|
309503
309871
|
},
|
|
309504
309872
|
"TRIADS": {
|
|
309505
309873
|
"title": "TRIADS (vector)",
|
|
309506
|
-
"description": "
|
|
309874
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
309507
309875
|
"type": "array",
|
|
309508
309876
|
"items": {
|
|
309509
309877
|
"title": "double",
|
|
@@ -309514,15 +309882,15 @@
|
|
|
309514
309882
|
},
|
|
309515
309883
|
"USE_FAD": {
|
|
309516
309884
|
"title": "USE_FAD (bool)",
|
|
309517
|
-
"description": "
|
|
309885
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
309518
309886
|
"default": false,
|
|
309519
309887
|
"type": "boolean"
|
|
309520
309888
|
}
|
|
309521
309889
|
},
|
|
309522
309890
|
"additionalProperties": false,
|
|
309523
309891
|
"required": [
|
|
309524
|
-
"
|
|
309525
|
-
"
|
|
309892
|
+
"CONSTRAINT",
|
|
309893
|
+
"PARAMETRIZATION",
|
|
309526
309894
|
"MAT",
|
|
309527
309895
|
"TRIADS"
|
|
309528
309896
|
]
|
|
@@ -309543,15 +309911,23 @@
|
|
|
309543
309911
|
"description": "No description yet.",
|
|
309544
309912
|
"type": "object",
|
|
309545
309913
|
"properties": {
|
|
309546
|
-
"
|
|
309547
|
-
"title": "
|
|
309548
|
-
"description": "
|
|
309549
|
-
"type": "
|
|
309914
|
+
"CONSTRAINT": {
|
|
309915
|
+
"title": "CONSTRAINT (enum)",
|
|
309916
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
309917
|
+
"type": "string",
|
|
309918
|
+
"enum": [
|
|
309919
|
+
"strong",
|
|
309920
|
+
"weak"
|
|
309921
|
+
]
|
|
309550
309922
|
},
|
|
309551
|
-
"
|
|
309552
|
-
"title": "
|
|
309553
|
-
"description": "
|
|
309554
|
-
"type": "
|
|
309923
|
+
"PARAMETRIZATION": {
|
|
309924
|
+
"title": "PARAMETRIZATION (enum)",
|
|
309925
|
+
"description": "Which type of beam parametrization should be used.",
|
|
309926
|
+
"type": "string",
|
|
309927
|
+
"enum": [
|
|
309928
|
+
"tan",
|
|
309929
|
+
"rot"
|
|
309930
|
+
]
|
|
309555
309931
|
},
|
|
309556
309932
|
"MAT": {
|
|
309557
309933
|
"title": "MAT (int)",
|
|
@@ -309560,7 +309936,7 @@
|
|
|
309560
309936
|
},
|
|
309561
309937
|
"TRIADS": {
|
|
309562
309938
|
"title": "TRIADS (vector)",
|
|
309563
|
-
"description": "
|
|
309939
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
309564
309940
|
"type": "array",
|
|
309565
309941
|
"items": {
|
|
309566
309942
|
"title": "double",
|
|
@@ -309571,15 +309947,15 @@
|
|
|
309571
309947
|
},
|
|
309572
309948
|
"USE_FAD": {
|
|
309573
309949
|
"title": "USE_FAD (bool)",
|
|
309574
|
-
"description": "
|
|
309950
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
309575
309951
|
"default": false,
|
|
309576
309952
|
"type": "boolean"
|
|
309577
309953
|
}
|
|
309578
309954
|
},
|
|
309579
309955
|
"additionalProperties": false,
|
|
309580
309956
|
"required": [
|
|
309581
|
-
"
|
|
309582
|
-
"
|
|
309957
|
+
"CONSTRAINT",
|
|
309958
|
+
"PARAMETRIZATION",
|
|
309583
309959
|
"MAT",
|
|
309584
309960
|
"TRIADS"
|
|
309585
309961
|
]
|
|
@@ -309600,15 +309976,23 @@
|
|
|
309600
309976
|
"description": "No description yet.",
|
|
309601
309977
|
"type": "object",
|
|
309602
309978
|
"properties": {
|
|
309603
|
-
"
|
|
309604
|
-
"title": "
|
|
309605
|
-
"description": "
|
|
309606
|
-
"type": "
|
|
309979
|
+
"CONSTRAINT": {
|
|
309980
|
+
"title": "CONSTRAINT (enum)",
|
|
309981
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
309982
|
+
"type": "string",
|
|
309983
|
+
"enum": [
|
|
309984
|
+
"strong",
|
|
309985
|
+
"weak"
|
|
309986
|
+
]
|
|
309607
309987
|
},
|
|
309608
|
-
"
|
|
309609
|
-
"title": "
|
|
309610
|
-
"description": "
|
|
309611
|
-
"type": "
|
|
309988
|
+
"PARAMETRIZATION": {
|
|
309989
|
+
"title": "PARAMETRIZATION (enum)",
|
|
309990
|
+
"description": "Which type of beam parametrization should be used.",
|
|
309991
|
+
"type": "string",
|
|
309992
|
+
"enum": [
|
|
309993
|
+
"tan",
|
|
309994
|
+
"rot"
|
|
309995
|
+
]
|
|
309612
309996
|
},
|
|
309613
309997
|
"MAT": {
|
|
309614
309998
|
"title": "MAT (int)",
|
|
@@ -309617,7 +310001,7 @@
|
|
|
309617
310001
|
},
|
|
309618
310002
|
"TRIADS": {
|
|
309619
310003
|
"title": "TRIADS (vector)",
|
|
309620
|
-
"description": "
|
|
310004
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
309621
310005
|
"type": "array",
|
|
309622
310006
|
"items": {
|
|
309623
310007
|
"title": "double",
|
|
@@ -309628,15 +310012,15 @@
|
|
|
309628
310012
|
},
|
|
309629
310013
|
"USE_FAD": {
|
|
309630
310014
|
"title": "USE_FAD (bool)",
|
|
309631
|
-
"description": "
|
|
310015
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
309632
310016
|
"default": false,
|
|
309633
310017
|
"type": "boolean"
|
|
309634
310018
|
}
|
|
309635
310019
|
},
|
|
309636
310020
|
"additionalProperties": false,
|
|
309637
310021
|
"required": [
|
|
309638
|
-
"
|
|
309639
|
-
"
|
|
310022
|
+
"CONSTRAINT",
|
|
310023
|
+
"PARAMETRIZATION",
|
|
309640
310024
|
"MAT",
|
|
309641
310025
|
"TRIADS"
|
|
309642
310026
|
]
|
|
@@ -326807,15 +327191,23 @@
|
|
|
326807
327191
|
"description": "No description yet.",
|
|
326808
327192
|
"type": "object",
|
|
326809
327193
|
"properties": {
|
|
326810
|
-
"
|
|
326811
|
-
"title": "
|
|
326812
|
-
"description": "
|
|
326813
|
-
"type": "
|
|
327194
|
+
"CONSTRAINT": {
|
|
327195
|
+
"title": "CONSTRAINT (enum)",
|
|
327196
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
327197
|
+
"type": "string",
|
|
327198
|
+
"enum": [
|
|
327199
|
+
"strong",
|
|
327200
|
+
"weak"
|
|
327201
|
+
]
|
|
326814
327202
|
},
|
|
326815
|
-
"
|
|
326816
|
-
"title": "
|
|
326817
|
-
"description": "
|
|
326818
|
-
"type": "
|
|
327203
|
+
"PARAMETRIZATION": {
|
|
327204
|
+
"title": "PARAMETRIZATION (enum)",
|
|
327205
|
+
"description": "Which type of beam parametrization should be used.",
|
|
327206
|
+
"type": "string",
|
|
327207
|
+
"enum": [
|
|
327208
|
+
"tan",
|
|
327209
|
+
"rot"
|
|
327210
|
+
]
|
|
326819
327211
|
},
|
|
326820
327212
|
"MAT": {
|
|
326821
327213
|
"title": "MAT (int)",
|
|
@@ -326824,7 +327216,7 @@
|
|
|
326824
327216
|
},
|
|
326825
327217
|
"TRIADS": {
|
|
326826
327218
|
"title": "TRIADS (vector)",
|
|
326827
|
-
"description": "
|
|
327219
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
326828
327220
|
"type": "array",
|
|
326829
327221
|
"items": {
|
|
326830
327222
|
"title": "double",
|
|
@@ -326835,15 +327227,15 @@
|
|
|
326835
327227
|
},
|
|
326836
327228
|
"USE_FAD": {
|
|
326837
327229
|
"title": "USE_FAD (bool)",
|
|
326838
|
-
"description": "
|
|
327230
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
326839
327231
|
"default": false,
|
|
326840
327232
|
"type": "boolean"
|
|
326841
327233
|
}
|
|
326842
327234
|
},
|
|
326843
327235
|
"additionalProperties": false,
|
|
326844
327236
|
"required": [
|
|
326845
|
-
"
|
|
326846
|
-
"
|
|
327237
|
+
"CONSTRAINT",
|
|
327238
|
+
"PARAMETRIZATION",
|
|
326847
327239
|
"MAT",
|
|
326848
327240
|
"TRIADS"
|
|
326849
327241
|
]
|
|
@@ -326864,15 +327256,23 @@
|
|
|
326864
327256
|
"description": "No description yet.",
|
|
326865
327257
|
"type": "object",
|
|
326866
327258
|
"properties": {
|
|
326867
|
-
"
|
|
326868
|
-
"title": "
|
|
326869
|
-
"description": "
|
|
326870
|
-
"type": "
|
|
327259
|
+
"CONSTRAINT": {
|
|
327260
|
+
"title": "CONSTRAINT (enum)",
|
|
327261
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
327262
|
+
"type": "string",
|
|
327263
|
+
"enum": [
|
|
327264
|
+
"strong",
|
|
327265
|
+
"weak"
|
|
327266
|
+
]
|
|
326871
327267
|
},
|
|
326872
|
-
"
|
|
326873
|
-
"title": "
|
|
326874
|
-
"description": "
|
|
326875
|
-
"type": "
|
|
327268
|
+
"PARAMETRIZATION": {
|
|
327269
|
+
"title": "PARAMETRIZATION (enum)",
|
|
327270
|
+
"description": "Which type of beam parametrization should be used.",
|
|
327271
|
+
"type": "string",
|
|
327272
|
+
"enum": [
|
|
327273
|
+
"tan",
|
|
327274
|
+
"rot"
|
|
327275
|
+
]
|
|
326876
327276
|
},
|
|
326877
327277
|
"MAT": {
|
|
326878
327278
|
"title": "MAT (int)",
|
|
@@ -326881,7 +327281,7 @@
|
|
|
326881
327281
|
},
|
|
326882
327282
|
"TRIADS": {
|
|
326883
327283
|
"title": "TRIADS (vector)",
|
|
326884
|
-
"description": "
|
|
327284
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
326885
327285
|
"type": "array",
|
|
326886
327286
|
"items": {
|
|
326887
327287
|
"title": "double",
|
|
@@ -326892,15 +327292,15 @@
|
|
|
326892
327292
|
},
|
|
326893
327293
|
"USE_FAD": {
|
|
326894
327294
|
"title": "USE_FAD (bool)",
|
|
326895
|
-
"description": "
|
|
327295
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
326896
327296
|
"default": false,
|
|
326897
327297
|
"type": "boolean"
|
|
326898
327298
|
}
|
|
326899
327299
|
},
|
|
326900
327300
|
"additionalProperties": false,
|
|
326901
327301
|
"required": [
|
|
326902
|
-
"
|
|
326903
|
-
"
|
|
327302
|
+
"CONSTRAINT",
|
|
327303
|
+
"PARAMETRIZATION",
|
|
326904
327304
|
"MAT",
|
|
326905
327305
|
"TRIADS"
|
|
326906
327306
|
]
|
|
@@ -326921,15 +327321,23 @@
|
|
|
326921
327321
|
"description": "No description yet.",
|
|
326922
327322
|
"type": "object",
|
|
326923
327323
|
"properties": {
|
|
326924
|
-
"
|
|
326925
|
-
"title": "
|
|
326926
|
-
"description": "
|
|
326927
|
-
"type": "
|
|
327324
|
+
"CONSTRAINT": {
|
|
327325
|
+
"title": "CONSTRAINT (enum)",
|
|
327326
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
327327
|
+
"type": "string",
|
|
327328
|
+
"enum": [
|
|
327329
|
+
"strong",
|
|
327330
|
+
"weak"
|
|
327331
|
+
]
|
|
326928
327332
|
},
|
|
326929
|
-
"
|
|
326930
|
-
"title": "
|
|
326931
|
-
"description": "
|
|
326932
|
-
"type": "
|
|
327333
|
+
"PARAMETRIZATION": {
|
|
327334
|
+
"title": "PARAMETRIZATION (enum)",
|
|
327335
|
+
"description": "Which type of beam parametrization should be used.",
|
|
327336
|
+
"type": "string",
|
|
327337
|
+
"enum": [
|
|
327338
|
+
"tan",
|
|
327339
|
+
"rot"
|
|
327340
|
+
]
|
|
326933
327341
|
},
|
|
326934
327342
|
"MAT": {
|
|
326935
327343
|
"title": "MAT (int)",
|
|
@@ -326938,7 +327346,7 @@
|
|
|
326938
327346
|
},
|
|
326939
327347
|
"TRIADS": {
|
|
326940
327348
|
"title": "TRIADS (vector)",
|
|
326941
|
-
"description": "
|
|
327349
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
326942
327350
|
"type": "array",
|
|
326943
327351
|
"items": {
|
|
326944
327352
|
"title": "double",
|
|
@@ -326949,15 +327357,15 @@
|
|
|
326949
327357
|
},
|
|
326950
327358
|
"USE_FAD": {
|
|
326951
327359
|
"title": "USE_FAD (bool)",
|
|
326952
|
-
"description": "
|
|
327360
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
326953
327361
|
"default": false,
|
|
326954
327362
|
"type": "boolean"
|
|
326955
327363
|
}
|
|
326956
327364
|
},
|
|
326957
327365
|
"additionalProperties": false,
|
|
326958
327366
|
"required": [
|
|
326959
|
-
"
|
|
326960
|
-
"
|
|
327367
|
+
"CONSTRAINT",
|
|
327368
|
+
"PARAMETRIZATION",
|
|
326961
327369
|
"MAT",
|
|
326962
327370
|
"TRIADS"
|
|
326963
327371
|
]
|
|
@@ -343713,15 +344121,23 @@
|
|
|
343713
344121
|
"description": "No description yet.",
|
|
343714
344122
|
"type": "object",
|
|
343715
344123
|
"properties": {
|
|
343716
|
-
"
|
|
343717
|
-
"title": "
|
|
343718
|
-
"description": "
|
|
343719
|
-
"type": "
|
|
344124
|
+
"CONSTRAINT": {
|
|
344125
|
+
"title": "CONSTRAINT (enum)",
|
|
344126
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
344127
|
+
"type": "string",
|
|
344128
|
+
"enum": [
|
|
344129
|
+
"strong",
|
|
344130
|
+
"weak"
|
|
344131
|
+
]
|
|
343720
344132
|
},
|
|
343721
|
-
"
|
|
343722
|
-
"title": "
|
|
343723
|
-
"description": "
|
|
343724
|
-
"type": "
|
|
344133
|
+
"PARAMETRIZATION": {
|
|
344134
|
+
"title": "PARAMETRIZATION (enum)",
|
|
344135
|
+
"description": "Which type of beam parametrization should be used.",
|
|
344136
|
+
"type": "string",
|
|
344137
|
+
"enum": [
|
|
344138
|
+
"tan",
|
|
344139
|
+
"rot"
|
|
344140
|
+
]
|
|
343725
344141
|
},
|
|
343726
344142
|
"MAT": {
|
|
343727
344143
|
"title": "MAT (int)",
|
|
@@ -343730,7 +344146,7 @@
|
|
|
343730
344146
|
},
|
|
343731
344147
|
"TRIADS": {
|
|
343732
344148
|
"title": "TRIADS (vector)",
|
|
343733
|
-
"description": "
|
|
344149
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
343734
344150
|
"type": "array",
|
|
343735
344151
|
"items": {
|
|
343736
344152
|
"title": "double",
|
|
@@ -343741,15 +344157,15 @@
|
|
|
343741
344157
|
},
|
|
343742
344158
|
"USE_FAD": {
|
|
343743
344159
|
"title": "USE_FAD (bool)",
|
|
343744
|
-
"description": "
|
|
344160
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
343745
344161
|
"default": false,
|
|
343746
344162
|
"type": "boolean"
|
|
343747
344163
|
}
|
|
343748
344164
|
},
|
|
343749
344165
|
"additionalProperties": false,
|
|
343750
344166
|
"required": [
|
|
343751
|
-
"
|
|
343752
|
-
"
|
|
344167
|
+
"CONSTRAINT",
|
|
344168
|
+
"PARAMETRIZATION",
|
|
343753
344169
|
"MAT",
|
|
343754
344170
|
"TRIADS"
|
|
343755
344171
|
]
|
|
@@ -343770,15 +344186,23 @@
|
|
|
343770
344186
|
"description": "No description yet.",
|
|
343771
344187
|
"type": "object",
|
|
343772
344188
|
"properties": {
|
|
343773
|
-
"
|
|
343774
|
-
"title": "
|
|
343775
|
-
"description": "
|
|
343776
|
-
"type": "
|
|
344189
|
+
"CONSTRAINT": {
|
|
344190
|
+
"title": "CONSTRAINT (enum)",
|
|
344191
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
344192
|
+
"type": "string",
|
|
344193
|
+
"enum": [
|
|
344194
|
+
"strong",
|
|
344195
|
+
"weak"
|
|
344196
|
+
]
|
|
343777
344197
|
},
|
|
343778
|
-
"
|
|
343779
|
-
"title": "
|
|
343780
|
-
"description": "
|
|
343781
|
-
"type": "
|
|
344198
|
+
"PARAMETRIZATION": {
|
|
344199
|
+
"title": "PARAMETRIZATION (enum)",
|
|
344200
|
+
"description": "Which type of beam parametrization should be used.",
|
|
344201
|
+
"type": "string",
|
|
344202
|
+
"enum": [
|
|
344203
|
+
"tan",
|
|
344204
|
+
"rot"
|
|
344205
|
+
]
|
|
343782
344206
|
},
|
|
343783
344207
|
"MAT": {
|
|
343784
344208
|
"title": "MAT (int)",
|
|
@@ -343787,7 +344211,7 @@
|
|
|
343787
344211
|
},
|
|
343788
344212
|
"TRIADS": {
|
|
343789
344213
|
"title": "TRIADS (vector)",
|
|
343790
|
-
"description": "
|
|
344214
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
343791
344215
|
"type": "array",
|
|
343792
344216
|
"items": {
|
|
343793
344217
|
"title": "double",
|
|
@@ -343798,15 +344222,15 @@
|
|
|
343798
344222
|
},
|
|
343799
344223
|
"USE_FAD": {
|
|
343800
344224
|
"title": "USE_FAD (bool)",
|
|
343801
|
-
"description": "
|
|
344225
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
343802
344226
|
"default": false,
|
|
343803
344227
|
"type": "boolean"
|
|
343804
344228
|
}
|
|
343805
344229
|
},
|
|
343806
344230
|
"additionalProperties": false,
|
|
343807
344231
|
"required": [
|
|
343808
|
-
"
|
|
343809
|
-
"
|
|
344232
|
+
"CONSTRAINT",
|
|
344233
|
+
"PARAMETRIZATION",
|
|
343810
344234
|
"MAT",
|
|
343811
344235
|
"TRIADS"
|
|
343812
344236
|
]
|
|
@@ -343827,15 +344251,23 @@
|
|
|
343827
344251
|
"description": "No description yet.",
|
|
343828
344252
|
"type": "object",
|
|
343829
344253
|
"properties": {
|
|
343830
|
-
"
|
|
343831
|
-
"title": "
|
|
343832
|
-
"description": "
|
|
343833
|
-
"type": "
|
|
344254
|
+
"CONSTRAINT": {
|
|
344255
|
+
"title": "CONSTRAINT (enum)",
|
|
344256
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
344257
|
+
"type": "string",
|
|
344258
|
+
"enum": [
|
|
344259
|
+
"strong",
|
|
344260
|
+
"weak"
|
|
344261
|
+
]
|
|
343834
344262
|
},
|
|
343835
|
-
"
|
|
343836
|
-
"title": "
|
|
343837
|
-
"description": "
|
|
343838
|
-
"type": "
|
|
344263
|
+
"PARAMETRIZATION": {
|
|
344264
|
+
"title": "PARAMETRIZATION (enum)",
|
|
344265
|
+
"description": "Which type of beam parametrization should be used.",
|
|
344266
|
+
"type": "string",
|
|
344267
|
+
"enum": [
|
|
344268
|
+
"tan",
|
|
344269
|
+
"rot"
|
|
344270
|
+
]
|
|
343839
344271
|
},
|
|
343840
344272
|
"MAT": {
|
|
343841
344273
|
"title": "MAT (int)",
|
|
@@ -343844,7 +344276,7 @@
|
|
|
343844
344276
|
},
|
|
343845
344277
|
"TRIADS": {
|
|
343846
344278
|
"title": "TRIADS (vector)",
|
|
343847
|
-
"description": "
|
|
344279
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
343848
344280
|
"type": "array",
|
|
343849
344281
|
"items": {
|
|
343850
344282
|
"title": "double",
|
|
@@ -343855,15 +344287,15 @@
|
|
|
343855
344287
|
},
|
|
343856
344288
|
"USE_FAD": {
|
|
343857
344289
|
"title": "USE_FAD (bool)",
|
|
343858
|
-
"description": "
|
|
344290
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
343859
344291
|
"default": false,
|
|
343860
344292
|
"type": "boolean"
|
|
343861
344293
|
}
|
|
343862
344294
|
},
|
|
343863
344295
|
"additionalProperties": false,
|
|
343864
344296
|
"required": [
|
|
343865
|
-
"
|
|
343866
|
-
"
|
|
344297
|
+
"CONSTRAINT",
|
|
344298
|
+
"PARAMETRIZATION",
|
|
343867
344299
|
"MAT",
|
|
343868
344300
|
"TRIADS"
|
|
343869
344301
|
]
|
|
@@ -361234,15 +361666,23 @@
|
|
|
361234
361666
|
"description": "No description yet.",
|
|
361235
361667
|
"type": "object",
|
|
361236
361668
|
"properties": {
|
|
361237
|
-
"
|
|
361238
|
-
"title": "
|
|
361239
|
-
"description": "
|
|
361240
|
-
"type": "
|
|
361669
|
+
"CONSTRAINT": {
|
|
361670
|
+
"title": "CONSTRAINT (enum)",
|
|
361671
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
361672
|
+
"type": "string",
|
|
361673
|
+
"enum": [
|
|
361674
|
+
"strong",
|
|
361675
|
+
"weak"
|
|
361676
|
+
]
|
|
361241
361677
|
},
|
|
361242
|
-
"
|
|
361243
|
-
"title": "
|
|
361244
|
-
"description": "
|
|
361245
|
-
"type": "
|
|
361678
|
+
"PARAMETRIZATION": {
|
|
361679
|
+
"title": "PARAMETRIZATION (enum)",
|
|
361680
|
+
"description": "Which type of beam parametrization should be used.",
|
|
361681
|
+
"type": "string",
|
|
361682
|
+
"enum": [
|
|
361683
|
+
"tan",
|
|
361684
|
+
"rot"
|
|
361685
|
+
]
|
|
361246
361686
|
},
|
|
361247
361687
|
"MAT": {
|
|
361248
361688
|
"title": "MAT (int)",
|
|
@@ -361251,7 +361691,7 @@
|
|
|
361251
361691
|
},
|
|
361252
361692
|
"TRIADS": {
|
|
361253
361693
|
"title": "TRIADS (vector)",
|
|
361254
|
-
"description": "
|
|
361694
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
361255
361695
|
"type": "array",
|
|
361256
361696
|
"items": {
|
|
361257
361697
|
"title": "double",
|
|
@@ -361262,15 +361702,15 @@
|
|
|
361262
361702
|
},
|
|
361263
361703
|
"USE_FAD": {
|
|
361264
361704
|
"title": "USE_FAD (bool)",
|
|
361265
|
-
"description": "
|
|
361705
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
361266
361706
|
"default": false,
|
|
361267
361707
|
"type": "boolean"
|
|
361268
361708
|
}
|
|
361269
361709
|
},
|
|
361270
361710
|
"additionalProperties": false,
|
|
361271
361711
|
"required": [
|
|
361272
|
-
"
|
|
361273
|
-
"
|
|
361712
|
+
"CONSTRAINT",
|
|
361713
|
+
"PARAMETRIZATION",
|
|
361274
361714
|
"MAT",
|
|
361275
361715
|
"TRIADS"
|
|
361276
361716
|
]
|
|
@@ -361291,15 +361731,23 @@
|
|
|
361291
361731
|
"description": "No description yet.",
|
|
361292
361732
|
"type": "object",
|
|
361293
361733
|
"properties": {
|
|
361294
|
-
"
|
|
361295
|
-
"title": "
|
|
361296
|
-
"description": "
|
|
361297
|
-
"type": "
|
|
361734
|
+
"CONSTRAINT": {
|
|
361735
|
+
"title": "CONSTRAINT (enum)",
|
|
361736
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
361737
|
+
"type": "string",
|
|
361738
|
+
"enum": [
|
|
361739
|
+
"strong",
|
|
361740
|
+
"weak"
|
|
361741
|
+
]
|
|
361298
361742
|
},
|
|
361299
|
-
"
|
|
361300
|
-
"title": "
|
|
361301
|
-
"description": "
|
|
361302
|
-
"type": "
|
|
361743
|
+
"PARAMETRIZATION": {
|
|
361744
|
+
"title": "PARAMETRIZATION (enum)",
|
|
361745
|
+
"description": "Which type of beam parametrization should be used.",
|
|
361746
|
+
"type": "string",
|
|
361747
|
+
"enum": [
|
|
361748
|
+
"tan",
|
|
361749
|
+
"rot"
|
|
361750
|
+
]
|
|
361303
361751
|
},
|
|
361304
361752
|
"MAT": {
|
|
361305
361753
|
"title": "MAT (int)",
|
|
@@ -361308,7 +361756,7 @@
|
|
|
361308
361756
|
},
|
|
361309
361757
|
"TRIADS": {
|
|
361310
361758
|
"title": "TRIADS (vector)",
|
|
361311
|
-
"description": "
|
|
361759
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
361312
361760
|
"type": "array",
|
|
361313
361761
|
"items": {
|
|
361314
361762
|
"title": "double",
|
|
@@ -361319,15 +361767,15 @@
|
|
|
361319
361767
|
},
|
|
361320
361768
|
"USE_FAD": {
|
|
361321
361769
|
"title": "USE_FAD (bool)",
|
|
361322
|
-
"description": "
|
|
361770
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
361323
361771
|
"default": false,
|
|
361324
361772
|
"type": "boolean"
|
|
361325
361773
|
}
|
|
361326
361774
|
},
|
|
361327
361775
|
"additionalProperties": false,
|
|
361328
361776
|
"required": [
|
|
361329
|
-
"
|
|
361330
|
-
"
|
|
361777
|
+
"CONSTRAINT",
|
|
361778
|
+
"PARAMETRIZATION",
|
|
361331
361779
|
"MAT",
|
|
361332
361780
|
"TRIADS"
|
|
361333
361781
|
]
|
|
@@ -361348,15 +361796,23 @@
|
|
|
361348
361796
|
"description": "No description yet.",
|
|
361349
361797
|
"type": "object",
|
|
361350
361798
|
"properties": {
|
|
361351
|
-
"
|
|
361352
|
-
"title": "
|
|
361353
|
-
"description": "
|
|
361354
|
-
"type": "
|
|
361799
|
+
"CONSTRAINT": {
|
|
361800
|
+
"title": "CONSTRAINT (enum)",
|
|
361801
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
361802
|
+
"type": "string",
|
|
361803
|
+
"enum": [
|
|
361804
|
+
"strong",
|
|
361805
|
+
"weak"
|
|
361806
|
+
]
|
|
361355
361807
|
},
|
|
361356
|
-
"
|
|
361357
|
-
"title": "
|
|
361358
|
-
"description": "
|
|
361359
|
-
"type": "
|
|
361808
|
+
"PARAMETRIZATION": {
|
|
361809
|
+
"title": "PARAMETRIZATION (enum)",
|
|
361810
|
+
"description": "Which type of beam parametrization should be used.",
|
|
361811
|
+
"type": "string",
|
|
361812
|
+
"enum": [
|
|
361813
|
+
"tan",
|
|
361814
|
+
"rot"
|
|
361815
|
+
]
|
|
361360
361816
|
},
|
|
361361
361817
|
"MAT": {
|
|
361362
361818
|
"title": "MAT (int)",
|
|
@@ -361365,7 +361821,7 @@
|
|
|
361365
361821
|
},
|
|
361366
361822
|
"TRIADS": {
|
|
361367
361823
|
"title": "TRIADS (vector)",
|
|
361368
|
-
"description": "
|
|
361824
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
361369
361825
|
"type": "array",
|
|
361370
361826
|
"items": {
|
|
361371
361827
|
"title": "double",
|
|
@@ -361376,15 +361832,15 @@
|
|
|
361376
361832
|
},
|
|
361377
361833
|
"USE_FAD": {
|
|
361378
361834
|
"title": "USE_FAD (bool)",
|
|
361379
|
-
"description": "
|
|
361835
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
361380
361836
|
"default": false,
|
|
361381
361837
|
"type": "boolean"
|
|
361382
361838
|
}
|
|
361383
361839
|
},
|
|
361384
361840
|
"additionalProperties": false,
|
|
361385
361841
|
"required": [
|
|
361386
|
-
"
|
|
361387
|
-
"
|
|
361842
|
+
"CONSTRAINT",
|
|
361843
|
+
"PARAMETRIZATION",
|
|
361388
361844
|
"MAT",
|
|
361389
361845
|
"TRIADS"
|
|
361390
361846
|
]
|
|
@@ -378140,15 +378596,23 @@
|
|
|
378140
378596
|
"description": "No description yet.",
|
|
378141
378597
|
"type": "object",
|
|
378142
378598
|
"properties": {
|
|
378143
|
-
"
|
|
378144
|
-
"title": "
|
|
378145
|
-
"description": "
|
|
378146
|
-
"type": "
|
|
378599
|
+
"CONSTRAINT": {
|
|
378600
|
+
"title": "CONSTRAINT (enum)",
|
|
378601
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
378602
|
+
"type": "string",
|
|
378603
|
+
"enum": [
|
|
378604
|
+
"strong",
|
|
378605
|
+
"weak"
|
|
378606
|
+
]
|
|
378147
378607
|
},
|
|
378148
|
-
"
|
|
378149
|
-
"title": "
|
|
378150
|
-
"description": "
|
|
378151
|
-
"type": "
|
|
378608
|
+
"PARAMETRIZATION": {
|
|
378609
|
+
"title": "PARAMETRIZATION (enum)",
|
|
378610
|
+
"description": "Which type of beam parametrization should be used.",
|
|
378611
|
+
"type": "string",
|
|
378612
|
+
"enum": [
|
|
378613
|
+
"tan",
|
|
378614
|
+
"rot"
|
|
378615
|
+
]
|
|
378152
378616
|
},
|
|
378153
378617
|
"MAT": {
|
|
378154
378618
|
"title": "MAT (int)",
|
|
@@ -378157,7 +378621,7 @@
|
|
|
378157
378621
|
},
|
|
378158
378622
|
"TRIADS": {
|
|
378159
378623
|
"title": "TRIADS (vector)",
|
|
378160
|
-
"description": "
|
|
378624
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
378161
378625
|
"type": "array",
|
|
378162
378626
|
"items": {
|
|
378163
378627
|
"title": "double",
|
|
@@ -378168,15 +378632,15 @@
|
|
|
378168
378632
|
},
|
|
378169
378633
|
"USE_FAD": {
|
|
378170
378634
|
"title": "USE_FAD (bool)",
|
|
378171
|
-
"description": "
|
|
378635
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
378172
378636
|
"default": false,
|
|
378173
378637
|
"type": "boolean"
|
|
378174
378638
|
}
|
|
378175
378639
|
},
|
|
378176
378640
|
"additionalProperties": false,
|
|
378177
378641
|
"required": [
|
|
378178
|
-
"
|
|
378179
|
-
"
|
|
378642
|
+
"CONSTRAINT",
|
|
378643
|
+
"PARAMETRIZATION",
|
|
378180
378644
|
"MAT",
|
|
378181
378645
|
"TRIADS"
|
|
378182
378646
|
]
|
|
@@ -378197,15 +378661,23 @@
|
|
|
378197
378661
|
"description": "No description yet.",
|
|
378198
378662
|
"type": "object",
|
|
378199
378663
|
"properties": {
|
|
378200
|
-
"
|
|
378201
|
-
"title": "
|
|
378202
|
-
"description": "
|
|
378203
|
-
"type": "
|
|
378664
|
+
"CONSTRAINT": {
|
|
378665
|
+
"title": "CONSTRAINT (enum)",
|
|
378666
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
378667
|
+
"type": "string",
|
|
378668
|
+
"enum": [
|
|
378669
|
+
"strong",
|
|
378670
|
+
"weak"
|
|
378671
|
+
]
|
|
378204
378672
|
},
|
|
378205
|
-
"
|
|
378206
|
-
"title": "
|
|
378207
|
-
"description": "
|
|
378208
|
-
"type": "
|
|
378673
|
+
"PARAMETRIZATION": {
|
|
378674
|
+
"title": "PARAMETRIZATION (enum)",
|
|
378675
|
+
"description": "Which type of beam parametrization should be used.",
|
|
378676
|
+
"type": "string",
|
|
378677
|
+
"enum": [
|
|
378678
|
+
"tan",
|
|
378679
|
+
"rot"
|
|
378680
|
+
]
|
|
378209
378681
|
},
|
|
378210
378682
|
"MAT": {
|
|
378211
378683
|
"title": "MAT (int)",
|
|
@@ -378214,7 +378686,7 @@
|
|
|
378214
378686
|
},
|
|
378215
378687
|
"TRIADS": {
|
|
378216
378688
|
"title": "TRIADS (vector)",
|
|
378217
|
-
"description": "
|
|
378689
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
378218
378690
|
"type": "array",
|
|
378219
378691
|
"items": {
|
|
378220
378692
|
"title": "double",
|
|
@@ -378225,15 +378697,15 @@
|
|
|
378225
378697
|
},
|
|
378226
378698
|
"USE_FAD": {
|
|
378227
378699
|
"title": "USE_FAD (bool)",
|
|
378228
|
-
"description": "
|
|
378700
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
378229
378701
|
"default": false,
|
|
378230
378702
|
"type": "boolean"
|
|
378231
378703
|
}
|
|
378232
378704
|
},
|
|
378233
378705
|
"additionalProperties": false,
|
|
378234
378706
|
"required": [
|
|
378235
|
-
"
|
|
378236
|
-
"
|
|
378707
|
+
"CONSTRAINT",
|
|
378708
|
+
"PARAMETRIZATION",
|
|
378237
378709
|
"MAT",
|
|
378238
378710
|
"TRIADS"
|
|
378239
378711
|
]
|
|
@@ -378254,15 +378726,23 @@
|
|
|
378254
378726
|
"description": "No description yet.",
|
|
378255
378727
|
"type": "object",
|
|
378256
378728
|
"properties": {
|
|
378257
|
-
"
|
|
378258
|
-
"title": "
|
|
378259
|
-
"description": "
|
|
378260
|
-
"type": "
|
|
378729
|
+
"CONSTRAINT": {
|
|
378730
|
+
"title": "CONSTRAINT (enum)",
|
|
378731
|
+
"description": "Which type of Kirchhoff constraint enforcement should be used.",
|
|
378732
|
+
"type": "string",
|
|
378733
|
+
"enum": [
|
|
378734
|
+
"strong",
|
|
378735
|
+
"weak"
|
|
378736
|
+
]
|
|
378261
378737
|
},
|
|
378262
|
-
"
|
|
378263
|
-
"title": "
|
|
378264
|
-
"description": "
|
|
378265
|
-
"type": "
|
|
378738
|
+
"PARAMETRIZATION": {
|
|
378739
|
+
"title": "PARAMETRIZATION (enum)",
|
|
378740
|
+
"description": "Which type of beam parametrization should be used.",
|
|
378741
|
+
"type": "string",
|
|
378742
|
+
"enum": [
|
|
378743
|
+
"tan",
|
|
378744
|
+
"rot"
|
|
378745
|
+
]
|
|
378266
378746
|
},
|
|
378267
378747
|
"MAT": {
|
|
378268
378748
|
"title": "MAT (int)",
|
|
@@ -378271,7 +378751,7 @@
|
|
|
378271
378751
|
},
|
|
378272
378752
|
"TRIADS": {
|
|
378273
378753
|
"title": "TRIADS (vector)",
|
|
378274
|
-
"description": "
|
|
378754
|
+
"description": "Nodal triad rotation vectors in reference configuration",
|
|
378275
378755
|
"type": "array",
|
|
378276
378756
|
"items": {
|
|
378277
378757
|
"title": "double",
|
|
@@ -378282,15 +378762,15 @@
|
|
|
378282
378762
|
},
|
|
378283
378763
|
"USE_FAD": {
|
|
378284
378764
|
"title": "USE_FAD (bool)",
|
|
378285
|
-
"description": "
|
|
378765
|
+
"description": "Flag, if automatic differentiation should be used.",
|
|
378286
378766
|
"default": false,
|
|
378287
378767
|
"type": "boolean"
|
|
378288
378768
|
}
|
|
378289
378769
|
},
|
|
378290
378770
|
"additionalProperties": false,
|
|
378291
378771
|
"required": [
|
|
378292
|
-
"
|
|
378293
|
-
"
|
|
378772
|
+
"CONSTRAINT",
|
|
378773
|
+
"PARAMETRIZATION",
|
|
378294
378774
|
"MAT",
|
|
378295
378775
|
"TRIADS"
|
|
378296
378776
|
]
|
|
@@ -401270,5 +401750,5 @@
|
|
|
401270
401750
|
"PROBLEM TYPE"
|
|
401271
401751
|
],
|
|
401272
401752
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
401273
|
-
"$id": "
|
|
401753
|
+
"$id": "1452a639b62ff7647e4c5beca1102b963879a6d6"
|
|
401274
401754
|
}
|