diff --git a/flow360/examples/NLF_airfoil.py b/flow360/examples/NLF_airfoil.py new file mode 100644 index 000000000..1e9fb8259 --- /dev/null +++ b/flow360/examples/NLF_airfoil.py @@ -0,0 +1,12 @@ +""" +volume mesh NLF airfoil 2D example +""" + +from .base_test_case import BaseTestCase + + +class NLFAirfoil2D(BaseTestCase): + name = "nlf2d" + + class url: + mesh = "https://simcloud-public-1.s3.amazonaws.com/examples/nlf/NLF_U1_2D.cgns" diff --git a/flow360/examples/__init__.py b/flow360/examples/__init__.py index 3966f176b..732f1cdc8 100644 --- a/flow360/examples/__init__.py +++ b/flow360/examples/__init__.py @@ -12,6 +12,7 @@ from .evtol import EVTOL from .isolated_propeller import IsolatedPropeller from .monitors import MonitorsAndSlices +from .NLF_airfoil import NLFAirfoil2D from .om6wing import OM6wing from .quadcopter import Quadcopter from .rotating_spheres import RotatingSpheres @@ -43,6 +44,7 @@ "EVTOL", "IsolatedPropeller", "MonitorsAndSlices", + "NLFAirfoil2D", "OM6wing", "RotatingSpheres", "Tutorial2DCRM",