@@ -70,13 +70,16 @@ def fileFormats(userpath=None, ignoreErrors=False, verbose=False):
70
70
from .rosco_discon_file import ROSCODISCONFile
71
71
from .rosco_performance_file import ROSCOPerformanceFile
72
72
from .plot3d_file import Plot3DFile
73
+ from .yaml_file import YAMLFile
74
+ from .airfoil_file import AirfoilShapeFile
73
75
priorities = []
74
76
formats = []
75
77
def addFormat (priority , fmt ):
76
78
priorities .append (priority )
77
79
formats .append (fmt )
78
80
addFormat (0 , FileFormat (CSVFile ))
79
81
addFormat (0 , FileFormat (ExcelFile ))
82
+ addFormat (0 , FileFormat (YAMLFile ))
80
83
addFormat (10 , FileFormat (TecplotFile ))
81
84
addFormat (10 , FileFormat (BladedFile ))
82
85
addFormat (20 , FileFormat (FASTInputFile ))
@@ -112,6 +115,7 @@ def addFormat(priority, fmt):
112
115
addFormat (60 , FileFormat (Plot3DFile ))
113
116
addFormat (70 , FileFormat (CactusFile ))
114
117
addFormat (70 , FileFormat (RAAWMatFile ))
118
+ addFormat (70 , FileFormat (AirfoilShapeFile ))
115
119
116
120
# --- User defined formats from user path
117
121
UserClasses , UserPaths , UserModules , UserModuleNames , errors = userFileClasses (userpath , ignoreErrors , verbose = verbose )
0 commit comments