Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions flow360/examples/NLF_airfoil.py
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 2 additions & 0 deletions flow360/examples/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,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
Expand Down Expand Up @@ -41,6 +42,7 @@
"EVTOL",
"IsolatedPropeller",
"MonitorsAndSlices",
"NLFAirfoil2D",
"OM6wing",
"RotatingSpheres",
"Tutorial2DCRM",
Expand Down