File tree Expand file tree Collapse file tree 4 files changed +46
-0
lines changed
Expand file tree Collapse file tree 4 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ DARPA SUBOFF geometry
3+ """
4+
5+ from .base_test_case import BaseTestCase
6+
7+
8+ class DARPA_SUBOFF (BaseTestCase ):
9+ name = "DARPA_SUBOFF"
10+
11+ class url :
12+ geometry = "https://simcloud-public-1.s3.amazonaws.com/examples/submarine/DARPA.STEP"
Original file line number Diff line number Diff line change 1+ """
2+ XV-15 csm file geometry
3+ """
4+
5+ from .base_test_case import BaseTestCase
6+
7+
8+ class XV15_CSM (BaseTestCase ):
9+ name = "XV15_CSM"
10+
11+ class url :
12+ geometry = "https://simcloud-public-1.s3.amazonaws.com/examples/xv15_wing/XV15_Wing.csm"
Original file line number Diff line number Diff line change 44from .bet_example_data import BETExampleData
55from .bet_line import BETLine
66from .convergence import Convergence
7+ from .cube import Cube
78from .cylinder2D import Cylinder2D
89from .cylinder3D import Cylinder3D
10+ from .DARPA import DARPA_SUBOFF
911from .drivaer import DrivAer
1012from .evtol import EVTOL
1113from .isolated_propeller import IsolatedPropeller
2325from .tutorial_periodic_BC import TutorialPeriodicBC
2426from .tutorial_RANS_xv15 import TutorialRANSXv15
2527from .tutorial_UDD_forces_moments import TutorialUDDForcesMoments
28+ from .tutorial_UDD_structural import TutorialUDDStructural
29+ from .XV15_csm import XV15_CSM
2630
2731__all__ = [
2832 "ActuatorDisk" ,
3135 "BETExampleData" ,
3236 "BETLine" ,
3337 "Convergence" ,
38+ "Cube" ,
3439 "Cylinder2D" ,
3540 "Cylinder3D" ,
41+ "DARPA_SUBOFF" ,
3642 "DrivAer" ,
3743 "EVTOL" ,
3844 "IsolatedPropeller" ,
4955 "TutorialDynamicDerivatives" ,
5056 "TutorialRANSXv15" ,
5157 "TutorialUDDForcesMoments" ,
58+ "TutorialUDDStructural" ,
5259 "Quadcopter" ,
60+ "XV15_CSM" ,
5361]
Original file line number Diff line number Diff line change 1+ """
2+ tutorial of UDD forces and moments example
3+ """
4+
5+ from .base_test_case import BaseTestCase
6+
7+
8+ class TutorialUDDStructural (BaseTestCase ):
9+ name = "tutorialUDDStructural"
10+
11+ class url :
12+ mesh = (
13+ "https://simcloud-public-1.s3.amazonaws.com/examples/rotatingPlate/rotatingPlate.cgns"
14+ )
You can’t perform that action at this time.
0 commit comments