OpenVSPAPI  3.26.0
openvsp_as.h
Go to the documentation of this file.
1 
189 
192 class string
193 {
194 public:
195 #ifndef DOXYGEN_SHOULD_SKIP_THIS
196  // Methods
197  string& operator=(const string&in);
198  string& operator+=(const string&in);
199  bool operator==(const string&in) const;
200  int operator>(const string&in) const;
201  string operator+(const string&in) const;
202  uint length() const;
203  void resize(uint);
204  bool isEmpty() const;
205  uint8& operator[](uint);
206  const uint8& operator[](uint) const;
207  string& operator=(double);
208  string& operator+=(double);
209  string operator+(double) const;
210  string operator+(double) const;
211  string& operator=(float);
212  string& operator+=(float);
213  string operator+(float) const;
214  string operator+(float) const;
215  string& operator=(int64);
216  string& operator+=(int64);
217  string operator+(int64) const;
218  string operator+(int64) const;
219  string& operator=(uint64);
220  string& operator+=(uint64);
221  string operator+(uint64) const;
222  string operator+(uint64) const;
223  string& operator=(bool);
224  string& operator+=(bool);
225  string operator+(bool) const;
226  string operator+(bool) const;
227  string substr(uint start = 0, int count = - 1) const;
228  int findFirst(const string&in, uint start = 0) const;
229  int findFirstOf(const string&in, uint start = 0) const;
230  int findFirstNotOf(const string&in, uint start = 0) const;
231  int findLast(const string&in, int start = - 1) const;
232  int findLastOf(const string&in, int start = - 1) const;
233  int findLastNotOf(const string&in, int start = - 1) const;
234  void insert(uint pos, const string&in other);
235  void erase(uint pos, int count = - 1);
236  uint size() const;
237  bool empty() const;
238  int find(const string&in, uint start = 0) const;
239  int rfind(const string&in, int start = - 1) const;
240  string[]@ split(const string&in) const;
241 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
242 };
243 
244 
246 
248 template<typename T>
249 class array
250 {
251 public:
252 #ifndef DOXYGEN_SHOULD_SKIP_THIS
253  // Methods
254  T& operator[](uint index);
255  const T& operator[](uint index) const;
256  T[]& operator=(const T[]&in);
257  void insertAt(uint index, const T&in value);
258  void insertAt(uint index, const T[]&inout arr);
259  void insertLast(const T&in value);
260  void removeAt(uint index);
261  void removeLast();
262  void removeRange(uint start, uint count);
263  uint length() const;
264  void reserve(uint length);
265  void resize(uint length);
266  void sortAsc();
267  void sortAsc(uint startAt, uint count);
268  void sortDesc();
269  void sortDesc(uint startAt, uint count);
270  void reverse();
271  int find(const T&in value) const;
272  int find(uint startAt, const T&in value) const;
273  int findByRef(const T&in value) const;
274  int findByRef(uint startAt, const T&in value) const;
275  bool operator==(const T[]&in) const;
276  bool isEmpty() const;
277  void sort(array::less&in, uint startAt = 0, uint count = uint ( - 1 ));
278  uint size() const;
279  bool empty() const;
280  void push_back(const T&in);
281  void pop_back();
282  void insert(uint index, const T&in value);
283  void insert(uint index, const T[]&inout arr);
284  void erase(uint);
285 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
286 };
287 
288 
290 
292 class file
293 {
294 public:
295 #ifndef DOXYGEN_SHOULD_SKIP_THIS
296  // Properties
297  bool mostSignificantByteFirst;
298  // Methods
299  int open(const string&in, const string&in);
300  int close();
301  int getSize() const;
302  bool isEndOfFile() const;
303  string readString(uint);
304  string readLine();
305  int64 readInt(uint);
306  uint64 readUInt(uint);
307  float readFloat();
308  double readDouble();
309  int writeString(const string&in);
310  int writeInt(int64, uint);
311  int writeUInt(uint64, uint);
312  int writeFloat(float);
313  int writeDouble(double);
314  int getPos() const;
315  int setPos(int);
316  int movePos(int);
317 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
318 };
319 
320 
322 
324 class any
325 {
326 public:
327 #ifndef DOXYGEN_SHOULD_SKIP_THIS
328  // Methods
329  any& operator=(any&in);
330  void store(?&in);
331  void store(const int64&in);
332  void store(const double&in);
333  bool retrieve(?&out);
334  bool retrieve(int64&out);
335  bool retrieve(double&out);
336 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
337 };
338 
339 
341 
345 class vec3d
346 {
347 public:
348  // Methods
349 
353  double& operator[](int) const;
354 
370  double x() const;
371 
387  double y() const;
388 
404  double z() const;
405 
419  vec3d& set_xyz(double x, double y, double z);
420 
432  vec3d& set_x(double x);
433 
445  vec3d& set_y(double y);
446 
458  vec3d& set_z(double z);
459 
476  void rotate_x(double cos_alpha, double sin_alpha);
477 
494  void rotate_y(double cos_alpha, double sin_alpha);
495 
512  void rotate_z(double cos_alpha, double sin_alpha);
513 
527  void scale_x(double scale);
528 
542  void scale_y(double scale);
543 
557  void scale_z(double scale);
558 
572  void offset_x(double offset);
573 
587  void offset_y(double offset);
588 
602  void offset_z(double offset);
603 
609  void rotate_z_zero_x(double cos_alpha, double sin_alpha);
610 
616  void rotate_z_zero_y(double cos_alpha, double sin_alpha);
617 
631  vec3d reflect_xy();
632 
646  vec3d reflect_xz();
647 
661  vec3d reflect_yz();
662 
678  vec3d operator+(const vec3d&in) const;
679 
695  vec3d operator-(const vec3d&in) const;
696 
713  vec3d operator*(double b) const;
714 
730  vec3d operator*(const vec3d&in) const;
731 
748  vec3d operator/(double b) const;
749 
763  double mag() const;
764 
780  void normalize();
781 };
782 
783 
785 
788 class Matrix4d
789 {
790 public:
791  // Methods
792 
803  void loadIdentity();
804 
820  void translatef(const double&in x, const double&in y, const double&in z);
821 
834  void rotateX(const double&in ang);
835 
848  void rotateY(const double&in ang);
849 
862  void rotateZ(const double&in ang);
863 
878  void rotate(const double&in ang, const vec3d&in axis);
879 
892  void scale(const double&in scale);
893 
906  vec3d xform(const vec3d&in v);
907 
922  vec3d getAngles();
923 
935  void loadXZRef();
936 
948  void loadXYRef();
949 
961  void loadYZRef();
962 
980  void affineInverse();
981 
988  void buildXForm(const vec3d&in pos, const vec3d&in rot, const vec3d&in cent_rot);
989 };
990 
991 
993 
996 class ErrorObj
997 {
998 public:
999  // Methods
1000 
1012 
1025  string GetErrorString();
1026 };
1027 
1028 
1034 {
1035  ABS = 0,
1036  REL = 1
1037 };
1038 
1044 {
1047 };
1048 
1054 {
1055  ANG_RAD = 0,
1056  ANG_DEG = 1
1057 };
1058 
1064 {
1071 };
1072 
1078 {
1082 };
1083 
1089 {
1093 };
1094 
1100 {
1105 };
1106 
1112 {
1113  MAX_CAMB = 0,
1115 };
1116 
1122 {
1129 };
1130 
1136 {
1161 };
1162 
1168 {
1183 };
1184 
1190 {
1197 };
1198 
1204 {
1207 };
1208 
1214 {
1236 };
1237 
1243 {
1247 };
1248 
1254 {
1265  CFD_OBJ_TYPE = 1024,
1266  CFD_DAT_TYPE = 2048,
1267  CFD_KEY_TYPE = 4096,
1268  CFD_GMSH_TYPE = 8192,
1269  CFD_SRF_TYPE = 16384,
1270  CFD_TKEY_TYPE = 32768,
1275  CFD_FACET_TYPE = 1048576,
1276  CFD_CURV_TYPE = 2097152,
1277  CFD_PLOT3D_TYPE = 4194304,
1278  CFD_VSPGEOM_TYPE = 8388608,
1280 };
1281 
1287 {
1293 };
1294 
1300 {
1301  SET_3D = 0,
1302  SET_2D = 1
1303 };
1304 
1310 {
1311  X_DIR = 0,
1312  Y_DIR = 1,
1313  Z_DIR = 2
1314 };
1315 
1321 {
1326 };
1327 
1333 {
1339 };
1340 
1346 {
1347  VSP_OK = 0,
1369 };
1370 
1376 {
1382 };
1383 
1389 {
1401  EXPORT_X3D = 11,
1405  EXPORT_BEM = 15,
1406  EXPORT_DXF = 16,
1408  EXPORT_SVG = 18,
1410  EXPORT_OBJ = 20,
1415 };
1416 
1422 {
1429 };
1430 
1436 {
1449 };
1450 
1456 {
1458  FEA_BEAM = 1,
1460 };
1461 
1467 {
1469  FEA_RIB = 1,
1470  FEA_SPAR = 2,
1472  FEA_DOME = 4,
1475  FEA_SKIN = 7,
1477 };
1478 
1484 {
1489 };
1490 
1496 {
1497  XY_BODY = 0,
1498  YZ_BODY = 1,
1499  XZ_BODY = 2,
1500  XY_ABS = 3,
1501  YZ_ABS = 4,
1502  XZ_ABS = 5,
1504 };
1505 
1511 {
1512  SI_UNIT = 0,
1513  CGS_UNIT = 1,
1514  MPA_UNIT = 2,
1515  BFT_UNIT = 3,
1517 };
1518 
1524 {
1535 };
1536 
1542 {
1557 };
1558 
1564 {
1567 };
1568 
1573 enum GDEV
1574 {
1575  GDEV_TAB = 0,
1598  GDEV_YGAP = 24,
1604 };
1605 
1611 {
1612  MALE = 0,
1613  FEMALE = 1
1614 };
1615 
1621 {
1631 };
1632 
1638 {
1642 };
1643 
1649 {
1656 };
1657 
1663 {
1664  LEN_MM = 0,
1665  LEN_CM = 1,
1666  LEN_M = 2,
1667  LEN_IN = 3,
1668  LEN_FT = 4,
1669  LEN_YD = 5,
1671 };
1672 
1678 {
1685 };
1686 
1692 {
1699 };
1700 
1706 {
1713 };
1714 
1720 {
1721  LINEAR = 0,
1722  PCHIP = 1,
1723  CEDIT = 2,
1726 };
1727 
1733 {
1745 };
1746 
1752 {
1757 };
1758 
1764 {
1765  X_PROJ = 0,
1766  Y_PROJ = 1,
1767  Z_PROJ = 2,
1769  VEC_PROJ = 4,
1771 };
1772 
1778 {
1782 };
1783 
1789 {
1793 };
1794 
1800 {
1807  PROP_CLI = 6,
1811 };
1812 
1818 {
1822 };
1823 
1829 {
1831  INT_DATA = 0,
1836 };
1837 
1843 {
1848 };
1849 
1855 {
1862 };
1863 
1869 {
1870  SET_NONE = -1,
1871  SET_ALL = 0,
1875 };
1876 
1882 {
1885 };
1886 
1892 {
1896 };
1897 
1903 {
1904  INSIDE = 0,
1905  OUTSIDE = 1,
1906  NONE = 2
1907 };
1908 
1914 {
1915  CONST_U = 0,
1916  CONST_W = 1
1917 };
1918 
1924 {
1925  SS_LINE = 0,
1931 };
1932 
1938 {
1939  SYM_XY = 1,
1940  SYM_XZ = 2,
1941  SYM_YZ = 4,
1943  SYM_ROT_Y = 16,
1944  SYM_ROT_Z = 32,
1947 };
1948 
1954 {
1955  SYM_NONE = 0,
1956  SYM_RL = 1,
1957  SYM_TB = 2,
1958  SYM_ALL = 3
1959 };
1960 
1966 {
1971 };
1972 
1978 {
1986 };
1987 
1993 {
1994  VIEW_1 = 0,
1997  VIEW_4 = 3
1998 };
1999 
2005 {
2006  ROT_0 = 0,
2007  ROT_90 = 1,
2008  ROT_180 = 2,
2009  ROT_270 = 3
2010 };
2011 
2017 {
2020  VIEW_TOP = 2,
2025 };
2026 
2032 {
2034  PANEL = 1
2035 };
2036 
2042 {
2044  CLMAX_2D = 1,
2046 };
2047 
2053 {
2057 };
2058 
2064 {
2065  NOISE_SI = 0,
2067 };
2068 
2074 {
2078 };
2079 
2085 {
2091 };
2092 
2098 {
2105 };
2106 
2112 {
2118 };
2119 
2125 {
2135 };
2136 
2142 {
2155 };
2156 
2162 {
2163  XDDM_VAR = 0,
2165 };
2166 
2172 {
2179 };
2180 
2186 {
2188  XS_POINT = 0,
2198  XS_WEDGE = 10,
2208 };
2209 
2215 {
2222 };
2223 
2229 {
2233 };
2234 
2240 {
2242  TRIM_X = 1,
2245 };
2246 
2252 {
2259 };
2260 
2266 {
2270 };
2271 
2272 string formatInt(int64 val, const string&in options = "", uint width = 0);
2273 string formatUInt(uint64 val, const string&in options = "", uint width = 0);
2274 string formatFloat(double val, const string&in options = "", uint width = 0, uint precision = 0);
2275 int64 parseInt(const string&in, uint base = 10, uint&out byteCount = 0);
2276 uint64 parseUInt(const string&in, uint base = 10, uint&out byteCount = 0);
2277 double parseFloat(const string&in, uint&out byteCount = 0);
2278 string join(const string[]&in, const string&in);
2279 float fpFromIEEE(uint);
2280 uint fpToIEEE(float);
2281 double fpFromIEEE(uint64);
2282 uint64 fpToIEEE(double);
2283 bool closeTo(float, float, float = 0.00001f);
2284 bool closeTo(double, double, double = 0.0000000001);
2285 float cos(float);
2286 float sin(float);
2287 float tan(float);
2288 float acos(float);
2289 float asin(float);
2290 float atan(float);
2291 float atan2(float, float);
2292 float cosh(float);
2293 float sinh(float);
2294 float tanh(float);
2295 float log(float);
2296 float log10(float);
2297 float pow(float, float);
2298 float sqrt(float);
2299 float ceil(float);
2300 float abs(float);
2301 float floor(float);
2302 float fraction(float);
2303 
2327 double dist(const vec3d&in a, const vec3d&in b);
2328 
2352 double dist_squared(const vec3d&in a, const vec3d&in b);
2353 
2374 double dot(const vec3d&in a, const vec3d&in b);
2375 
2398 vec3d cross(const vec3d&in a, const vec3d&in b);
2399 
2421 double angle(const vec3d&in a, const vec3d&in b);
2422 
2446 double signed_angle(const vec3d&in a, const vec3d&in b, const vec3d&in ref);
2447 
2473 double cos_angle(const vec3d&in a, const vec3d&in b);
2474 
2498 vec3d RotateArbAxis(const vec3d&in p, double theta, const vec3d&in axis);
2499 
2519 string AddParm(int type, const string&in name, const string&in group);
2520 
2544 string GetCurrCustomGeom();
2545 
2555 string GetCustomParm(int index);
2556 
2588 int AddGui(int type, const string&in label = string ( ), const string&in parm_name = string ( ), const string&in group_name = string ( ), double range = 10.0);
2589 
2612 void UpdateGui(int gui_id, const string&in parm_id);
2613 
2634 string AddXSecSurf();
2635 
2660 void RemoveXSecSurf(const string&in xsec_id);
2661 
2677 void ClearXSecSurfs();
2678 
2704 void SkinXSecSurf(bool closed_flag = false);
2705 
2728 void CloneSurf(int index, Matrix4d&in mat);
2729 
2739 void TransformSurf(int index, Matrix4d&in mat);
2740 
2761 void SetVspSurfType(int type, int surf_index = - 1);
2762 
2783 void SetVspSurfCfdType(int type, int surf_index = - 1);
2784 
2804 void SetCustomXSecLoc(const string&in xsec_id, const vec3d&in loc);
2805 
2831 vec3d GetCustomXSecLoc(const string&in xsec_id);
2832 
2850 void SetCustomXSecRot(const string&in xsec_id, const vec3d&in rot);
2851 
2882 vec3d GetCustomXSecRot(const string&in xsec_id);
2883 
2893 bool CheckClearTriggerEvent(int gui_id);
2894 
2926 void SetupCustomDefaultSource(int type, int surf_index, double l1, double r1, double u1, double w1, double l2 = 0, double r2 = 0, double u2 = 0, double w2 = 0);
2927 
2941 
2961 void SetCustomCenter(double x, double y, double z);
2962 
2988 string AppendXSec(const string&in xsec_surf_id, int type);
2989 
3015 string AppendCustomXSec(const string&in xsec_surf_id, int type);
3016 
3027 void CutCustomXSec(const string&in xsec_surf_id, int index);
3028 
3039 void CopyCustomXSec(const string&in xsec_surf_id, int index);
3040 
3051 void PasteCustomXSec(const string&in xsec_surf_id, int index);
3052 
3064 string InsertCustomXSec(const string&in xsec_surf_id, int type, int index);
3065 
3083 void AddInput(const string&in parm_id, const string&in var_name);
3084 
3102 void AddOutput(const string&in parm_id, const string&in var_name);
3103 
3123 void SetVar(const string&in var_name, double val);
3124 
3148 double GetVar(const string&in var_name);
3149 
3172 bool GetErrorLastCallFlag();
3173 
3199 int GetNumTotalErrors();
3200 
3227 
3253 
3272 void SilenceErrors();
3273 
3292 void PrintOnErrors();
3293 
3313 void ScreenGrab(const string&in file_name, int w, int h, bool transparentBG);
3314 
3326 void SetViewAxis(bool vaxis);
3327 
3339 void SetShowBorders(bool brdr);
3340 
3356 void SetGeomDrawType(const string&in geom_id, int type);
3357 
3373 void SetGeomDisplayType(const string&in geom_id, int type);
3374 
3388 void SetBackground(double r, double g, double b);
3389 
3413 void Update(bool update_managers = true);
3414 
3423 void VSPExit(int error_code);
3424 
3439 void ClearVSPModel();
3440 
3465 string GetVSPFileName();
3466 
3498 void ReadVSPFile(const string&in file_name);
3499 
3532 void WriteVSPFile(const string&in file_name, int set);
3533 
3565 void SetVSP3FileName(const string&in file_name);
3566 
3577 void InsertVSPFile(const string&in file_name, const string&in parent);
3578 
3601 string ExportFile(const string&in file_name, int thick_set, int file_type, int thin_set = - 1);
3602 
3615 string ImportFile(const string&in file_name, int file_type, const string&in parent);
3616 
3634 void SetBEMPropID(const string&in prop_id);
3635 
3644 void ReadApplyDESFile(const string&in file_name);
3645 
3654 void WriteDESFile(const string&in file_name);
3655 
3664 void ReadApplyXDDMFile(const string&in file_name);
3665 
3674 void WriteXDDMFile(const string&in file_name);
3675 
3684 int GetNumDesignVars();
3685 
3696 void AddDesignVar(const string&in parm_id, int type);
3697 
3705 void DeleteAllDesignVars();
3706 
3716 string GetDesignVar(int index);
3717 
3728 int GetDesignVarType(int index);
3729 
3753 string ComputeMassProps(int set, int num_slices);
3754 
3778 string ComputeCompGeom(int set, bool half_mesh, int file_export_types);
3779 
3808 string ComputePlaneSlice(int set, int num_slices, const vec3d&in norm, bool auto_bnd, double start_bnd = 0, double end_bnd = 0);
3809 
3827 void ComputeDegenGeom(int set, int file_type);
3828 
3846 void SetComputationFileName(int file_type, const string&in file_name);
3847 
3866 void ComputeCFDMesh(int set, int file_type);
3867 
3881 void SetCFDMeshVal(int type, double val);
3882 
3903 void SetCFDWakeFlag(const string&in geom_id, bool flag);
3904 
3920 void DeleteAllCFDSources();
3921 
3935 void AddDefaultSources();
3936 
3962 void AddCFDSource(int type, const string&in geom_id, int surf_index, double l1, double r1, double u1, double w1, double l2 = 0, double r2 = 0, double u2 = 0, double w2 = 0);
3963 
3977 int GetNumAnalysis();
3978 
3997 string[]@ ListAnalysis();
3998 
4020 string[]@ GetAnalysisInputNames(const string&in analysis);
4021 
4036 string ExecAnalysis(const string&in analysis);
4037 
4048 int GetNumAnalysisInputData(const string&in analysis, const string&in name);
4049 
4071 int GetAnalysisInputType(const string&in analysis, const string&in name);
4072 
4096 int[]@ GetIntAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4097 
4117 double[]@ GetDoubleAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4118 
4138 string[]@ GetStringAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4139 
4160 vec3d[]@ GetVec3dAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4161 
4177 void PrintAnalysisInputs(const string&in analysis);
4178 
4194 void SetAnalysisInputDefaults(const string&in analysis);
4195 
4219 void SetIntAnalysisInput(const string&in analysis, const string&in name, int[]@ indata_arr, int index = 0);
4220 
4245 void SetDoubleAnalysisInput(const string&in analysis, const string&in name, double[]@ indata_arr, int index = 0);
4246 
4266 void SetStringAnalysisInput(const string&in analysis, const string&in name, string[]@ indata_arr, int index = 0);
4267 
4288 void SetVec3dAnalysisInput(const string&in analysis, const string&in name, vec3d[]@ indata_arr, int index = 0);
4289 
4305 int GetNumResults(const string&in name);
4306 
4329 string GetResultsName(const string&in results_id);
4330 
4349 string FindResultsID(const string&in name, int index = 0);
4350 
4372 string FindLatestResultsID(const string&in name);
4373 
4400 int GetNumData(const string&in results_id, const string&in data_name);
4401 
4426 int GetResultsType(const string&in results_id, const string&in data_name);
4427 
4448 string[]@ GetAllResultsNames();
4449 
4469 string[]@ GetAllDataNames(const string&in results_id);
4470 
4498 int[]@ GetIntResults(const string&in id, const string&in name, int index = 0);
4499 
4522 double[]@ GetDoubleResults(const string&in id, const string&in name, int index = 0);
4523 
4535 double[]@[]@ GetDoubleMatResults(const string&in id, const string&in name, int index = 0);
4536 
4558 string[]@ GetStringResults(const string&in id, const string&in name, int index = 0);
4559 
4591 vec3d[]@ GetVec3dResults(const string&in id, const string&in name, int index = 0);
4592 
4616 string CreateGeomResults(const string&in geom_id, const string&in name);
4617 
4638 void DeleteAllResults();
4639 
4661 void DeleteResult(const string&in id);
4662 
4682 void WriteResultsCSVFile(const string&in id, const string&in file_name);
4683 
4703 void PrintResults(const string&in id);
4704 
4718 void WriteTestResults();
4719 
4737 string[]@ GetGeomTypes();
4738 
4753 string AddGeom(const string&in type, const string&in parent = string ( ));
4754 
4775 void UpdateGeom(const string&in geom_id);
4776 
4794 void DeleteGeom(const string&in geom_id);
4795 
4814 void DeleteGeomVec(string[]@ del_arr);
4815 
4838 void CutGeomToClipboard(const string&in geom_id);
4839 
4862 void CopyGeomToClipboard(const string&in geom_id);
4863 
4886 string[]@ PasteGeomClipboard(const string&in parent_id = "");
4887 
4906 string[]@ FindGeoms();
4907 
4931 string[]@ FindGeomsWithName(const string&in name);
4932 
4959 string FindGeom(const string&in name, int index);
4960 
4983 void SetGeomName(const string&in geom_id, const string&in name);
4984 
5004 string GetGeomName(const string&in geom_id);
5005 
5025 string[]@ GetGeomParmIDs(const string&in geom_id);
5026 
5047 int GetGeomVSPSurfCfdType(const string&in geom_id, int main_surf_ind = 0);
5048 
5069 int GetGeomVSPSurfType(const string&in geom_id, int main_surf_ind = 0);
5070 
5088 string GetGeomTypeName(const string&in geom_id);
5089 
5112 int GetNumMainSurfs(const string&in geom_id);
5113 
5136 int GetTotalNumSurfs(const string&in geom_id);
5137 
5162 vec3d GetGeomBBoxMax(const string&in geom_id, int main_surf_ind = 0, bool ref_frame_is_absolute = true);
5163 
5188 vec3d GetGeomBBoxMin(const string&in geom_id, int main_surf_ind = 0, bool ref_frame_is_absolute = true);
5189 
5209 string GetGeomParent(const string&in geom_id);
5210 
5238 string[]@ GetGeomChildren(const string&in geom_id);
5239 
5268 void SetDriverGroup(const string&in geom_id, int section_index, int driver_0, int driver_1 = - 1, int driver_2 = - 1);
5269 
5290 string AddSubSurf(const string&in geom_id, int type, int surfindex = 0);
5291 
5317 void DeleteSubSurf(const string&in geom_id, const string&in sub_id);
5318 
5343 void DeleteSubSurf(const string&in sub_id);
5344 
5368 string GetSubSurf(const string&in geom_id, int index);
5369 
5393 string[]@ GetSubSurf(const string&in geom_id, const string&in name);
5394 
5414 void SetSubSurfName(const string&in geom_id, const string&in sub_id, const string&in name);
5415 
5434 void SetSubSurfName(const string&in sub_id, const string&in name);
5435 
5457 string GetSubSurfName(const string&in geom_id, const string&in sub_id);
5458 
5479 string GetSubSurfName(const string&in sub_id);
5480 
5502 int GetSubSurfIndex(const string&in sub_id);
5503 
5538 string[]@ GetSubSurfIDVec(const string&in geom_id);
5539 
5548 string[]@ GetAllSubSurfIDs();
5549 
5571 int GetNumSubSurf(const string&in geom_id);
5572 
5608 int GetSubSurfType(const string&in sub_id);
5609 
5635 string[]@ GetSubSurfParmIDs(const string&in sub_id);
5636 
5689 
5720 
5743 
5761 void AddAllToVSPAEROControlSurfaceGroup(int CSGroupIndex);
5762 
5782 void RemoveAllFromVSPAEROControlSurfaceGroup(int CSGroupIndex);
5783 
5812 string[]@ GetActiveCSNameVec(int CSGroupIndex);
5813 
5838 string[]@ GetCompleteCSNameVec();
5839 
5863 string[]@ GetAvailableCSNameVec(int CSGroupIndex);
5864 
5887 void SetVSPAEROControlGroupName(const string&in name, int CSGroupIndex);
5888 
5910 string GetVSPAEROControlGroupName(int CSGroupIndex);
5911 
5944 void AddSelectedToCSGroup(int[]@ selected, int CSGroupIndex);
5945 
5983 void RemoveSelectedFromCSGroup(int[]@ selected, int CSGroupIndex);
5984 
5993 string GetVSPAERORefWingID();
5994 
6025 string SetVSPAERORefWingID(const string&in geom_id);
6026 
6054 string FindActuatorDisk(int disk_index);
6055 
6079 int GetNumActuatorDisks();
6080 
6107 string FindUnsteadyGroup(int group_index);
6108 
6129 string GetUnsteadyGroupName(int group_index);
6130 
6156 string[]@ GetUnsteadyGroupCompIDs(int group_index);
6157 
6183 int[]@ GetUnsteadyGroupSurfIndexes(int group_index);
6184 
6213 int GetNumUnsteadyGroups();
6214 
6245 
6263 int GetNumXSecSurfs(const string&in geom_id);
6264 
6282 string GetXSecSurf(const string&in geom_id, int index);
6283 
6312 int GetNumXSec(const string&in xsec_surf_id);
6313 
6334 string GetXSec(const string&in xsec_surf_id, int xsec_index);
6335 
6365 void ChangeXSecShape(const string&in xsec_surf_id, int xsec_index, int type);
6366 
6376 void SetXSecSurfGlobalXForm(const string&in xsec_surf_id, const Matrix4d&in mat);
6377 
6387 Matrix4d GetXSecSurfGlobalXForm(const string&in xsec_surf_id);
6388 
6411 void CutXSec(const string&in geom_id, int index);
6412 
6433 void CopyXSec(const string&in geom_id, int index);
6434 
6455 void PasteXSec(const string&in geom_id, int index);
6456 
6474 void InsertXSec(const string&in geom_id, int index, int type);
6475 
6499 int GetXSecShape(const string&in xsec_id);
6500 
6523 double GetXSecWidth(const string&in xsec_id);
6524 
6547 double GetXSecHeight(const string&in xsec_id);
6548 
6571 void SetXSecWidth(const string&in xsec_id, double w);
6572 
6595 void SetXSecHeight(const string&in xsec_id, double h);
6596 
6621 void SetXSecWidthHeight(const string&in xsec_id, double w, double h);
6622 
6644 string[]@ GetXSecParmIDs(const string&in xsec_id);
6645 
6670 string GetXSecParm(const string&in xsec_id, const string&in name);
6671 
6694 vec3d[]@ ReadFileXSec(const string&in xsec_id, const string&in file_name);
6695 
6725 void SetXSecPnts(const string&in xsec_id, vec3d[]@ pnt_arr);
6726 
6750 vec3d ComputeXSecPnt(const string&in xsec_id, double fract);
6751 
6775 vec3d ComputeXSecTan(const string&in xsec_id, double fract);
6776 
6799 void ResetXSecSkinParms(const string&in xsec_id);
6800 
6824 void SetXSecContinuity(const string&in xsec_id, int cx);
6825 
6856 void SetXSecTanAngles(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6857 
6888 void SetXSecTanSlews(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6889 
6921 void SetXSecTanStrengths(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6922 
6954 void SetXSecCurvatures(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6955 
6977 void ReadFileAirfoil(const string&in xsec_id, const string&in file_name);
6978 
7014 void SetAirfoilPnts(const string&in xsec_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec);
7015 
7044 vec3d[]@ GetHersheyBarLiftDist(const int&in npts, const double&in alpha, const double&in Vinf, const double&in span, bool full_span_flag = false);
7045 
7074 vec3d[]@ GetHersheyBarDragDist(const int&in npts, const double&in alpha, const double&in Vinf, const double&in span, bool full_span_flag = false);
7075 
7106 vec3d[]@ GetVKTAirfoilPnts(const int&in npts, const double&in alpha, const double&in epsilon, const double&in kappa, const double&in tau);
7107 
7139 double[]@ GetVKTAirfoilCpDist(const double&in alpha, const double&in epsilon, const double&in kappa, const double&in tau, vec3d[]@ xydata);
7140 
7155 vec3d[]@ GetEllipsoidSurfPnts(const vec3d&in center, const vec3d&in abc_rad, int u_npts = 20, int w_npts = 20);
7156 
7166 vec3d[]@ GetFeatureLinePnts(const string&in geom_id);
7167 
7214 double[]@ GetEllipsoidCpDist(vec3d[]@ surf_pnt_arr, const vec3d&in abc_rad, const vec3d&in V_inf);
7215 
7240 vec3d[]@ GetAirfoilUpperPnts(const string&in xsec_id);
7241 
7266 vec3d[]@ GetAirfoilLowerPnts(const string&in xsec_id);
7267 
7278 double[]@ GetUpperCSTCoefs(const string&in xsec_id);
7279 
7290 double[]@ GetLowerCSTCoefs(const string&in xsec_id);
7291 
7302 int GetUpperCSTDegree(const string&in xsec_id);
7303 
7314 int GetLowerCSTDegree(const string&in xsec_id);
7315 
7327 void SetUpperCST(const string&in xsec_id, int deg, double[]@ coeff_arr);
7328 
7340 void SetLowerCST(const string&in xsec_id, int deg, double[]@ coeff_arr);
7341 
7351 void PromoteCSTUpper(const string&in xsec_id);
7352 
7362 void PromoteCSTLower(const string&in xsec_id);
7363 
7373 void DemoteCSTUpper(const string&in xsec_id);
7374 
7384 void DemoteCSTLower(const string&in xsec_id);
7385 
7396 void FitAfCST(const string&in xsec_surf_id, int xsec_index, int deg);
7397 
7418 void WriteBezierAirfoil(const string&in file_name, const string&in geom_id, const double&in foilsurf_u);
7419 
7440 void WriteSeligAirfoil(const string&in file_name, const string&in geom_id, const double&in foilsurf_u);
7441 
7452 vec3d[]@ GetAirfoilCoordinates(const string&in geom_id, const double&in foilsurf_u);
7453 
7480 void EditXSecInitShape(const string&in xsec_id);
7481 
7508 void EditXSecConvertTo(const string&in xsec_id, const int&in newtype);
7509 
7541 double[]@ GetEditXSecUVec(const string&in xsec_id);
7542 
7570 vec3d[]@ GetEditXSecCtrlVec(const string&in xsec_id, const bool non_dimensional = true);
7571 
7628 void SetEditXSecPnts(const string&in xsec_id, double[]@ u_vec, vec3d[]@ control_pts);
7629 
7667 void EditXSecDelPnt(const string&in xsec_id, const int&in indx);
7668 
7705 int EditXSecSplit01(const string&in xsec_id, const double&in u);
7706 
7751 void MoveEditXSecPnt(const string&in xsec_id, const int&in indx, const vec3d&in new_pnt);
7752 
7780 void ConvertXSecToEdit(const string&in geom_id, const int&in indx = 0);
7781 
7813 bool[]@ GetEditXSecFixedUVec(const string&in xsec_id);
7814 
7846 void SetEditXSecFixedUVec(const string&in xsec_id, bool[]@ fixed_u_vec);
7847 
7879 void ReparameterizeEditXSec(const string&in xsec_id);
7880 
7899 void ChangeBORXSecShape(const string&in geom_id, int type);
7900 
7918 int GetBORXSecShape(const string&in geom_id);
7919 
7938 vec3d[]@ ReadBORFileXSec(const string&in bor_id, const string&in file_name);
7939 
7965 void SetBORXSecPnts(const string&in bor_id, vec3d[]@ pnt_arr);
7966 
7986 vec3d ComputeBORXSecPnt(const string&in bor_id, double fract);
7987 
8006 vec3d ComputeBORXSecTan(const string&in bor_id, double fract);
8007 
8025 void ReadBORFileAirfoil(const string&in bor_id, const string&in file_name);
8026 
8058 void SetBORAirfoilPnts(const string&in bor_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec);
8059 
8080 vec3d[]@ GetBORAirfoilUpperPnts(const string&in bor_id);
8081 
8102 vec3d[]@ GetBORAirfoilLowerPnts(const string&in bor_id);
8103 
8114 double[]@ GetBORUpperCSTCoefs(const string&in bor_id);
8115 
8126 double[]@ GetBORLowerCSTCoefs(const string&in bor_id);
8127 
8138 int GetBORUpperCSTDegree(const string&in bor_id);
8139 
8150 int GetBORLowerCSTDegree(const string&in bor_id);
8151 
8163 void SetBORUpperCST(const string&in bor_id, int deg, double[]@ coeff_arr);
8164 
8176 void SetBORLowerCST(const string&in bor_id, int deg, double[]@ coeff_arr);
8177 
8187 void PromoteBORCSTUpper(const string&in bor_id);
8188 
8198 void PromoteBORCSTLower(const string&in bor_id);
8199 
8209 void DemoteBORCSTUpper(const string&in bor_id);
8210 
8220 void DemoteBORCSTLower(const string&in bor_id);
8221 
8231 void FitBORAfCST(const string&in bor_id, int deg);
8232 
8245 int GetNumSets();
8246 
8262 void SetSetName(int index, const string&in name);
8263 
8279 string GetSetName(int index);
8280 
8300 string[]@ GetGeomSetAtIndex(int index);
8301 
8320 string[]@ GetGeomSet(const string&in name);
8321 
8336 int GetSetIndex(const string&in name);
8337 
8356 bool GetSetFlag(const string&in geom_id, int set_index);
8357 
8376 void SetSetFlag(const string&in geom_id, int set_index, bool flag);
8377 
8402 void CopyPasteSet(int copyIndex, int pasteIndex);
8403 
8422 void ScaleSet(int set_index, double scale);
8423 
8444 void RotateSet(int set_index, double x_rot_deg, double y_rot_deg, double z_rot_deg);
8445 
8464 void TranslateSet(int set_index, const vec3d&in translation_vec);
8465 
8490 void TransformSet(int set_index, const vec3d&in translation_vec, double x_rot_deg, double y_rot_deg, double z_rot_deg, double scale, bool scale_translations_flag);
8491 
8509 bool ValidParm(const string&in id);
8510 
8538 double SetParmVal(const string&in parm_id, double val);
8539 
8562 double SetParmValLimits(const string&in parm_id, double val, double lower_limit, double upper_limit);
8563 
8583 double SetParmValUpdate(const string&in parm_id, double val);
8584 
8603 double SetParmVal(const string&in geom_id, const string&in name, const string&in group, double val);
8604 
8624 double SetParmValUpdate(const string&in geom_id, const string&in parm_name, const string&in parm_group_name, double val);
8625 
8651 double GetParmVal(const string&in parm_id);
8652 
8671 double GetParmVal(const string&in geom_id, const string&in name, const string&in group);
8672 
8690 int GetIntParmVal(const string&in parm_id);
8691 
8709 bool GetBoolParmVal(const string&in parm_id);
8710 
8739 void SetParmUpperLimit(const string&in parm_id, double val);
8740 
8758 double GetParmUpperLimit(const string&in parm_id);
8759 
8788 void SetParmLowerLimit(const string&in parm_id, double val);
8789 
8807 double GetParmLowerLimit(const string&in parm_id);
8808 
8833 int GetParmType(const string&in parm_id);
8834 
8866 string GetParmName(const string&in parm_id);
8867 
8892 string GetParmGroupName(const string&in parm_id);
8893 
8918 string GetParmDisplayGroupName(const string&in parm_id);
8919 
8945 string GetParmContainer(const string&in parm_id);
8946 
8965 void SetParmDescript(const string&in parm_id, const string&in desc);
8966 
8987 string FindParm(const string&in parm_container_id, const string&in parm_name, const string&in group_name);
8988 
9008 string GetParm(const string&in geom_id, const string&in name, const string&in group);
9009 
9030 string[]@ FindContainers();
9031 
9046 string[]@ FindContainersWithName(const string&in name);
9047 
9063 string FindContainer(const string&in name, int index);
9064 
9079 string GetContainerName(const string&in parm_container_id);
9080 
9103 string[]@ FindContainerGroupNames(const string&in parm_container_id);
9104 
9136 string[]@ FindContainerParmIDs(const string&in parm_container_id);
9137 
9150 string GetVehicleID();
9151 
9175 double ComputeMinClearanceDistance(const string&in geom_id, int set);
9176 
9203 double SnapParm(const string&in parm_id, double target_min_dist, bool inc_flag, int set);
9204 
9221 void AddVarPresetGroup(const string&in group_name);
9222 
9241 void AddVarPresetSetting(const string&in setting_name);
9242 
9263 void AddVarPresetParm(const string&in parm_ID);
9264 
9284 void AddVarPresetParm(const string&in parm_ID, const string&in group_name);
9285 
9309 void EditVarPresetParm(const string&in parm_ID, double parm_val);
9310 
9338 void EditVarPresetParm(const string&in parm_ID, double parm_val, const string&in group_name, const string&in setting_name);
9339 
9362 void DeleteVarPresetParm(const string&in parm_ID);
9363 
9389 void DeleteVarPresetParm(const string&in parm_ID, const string&in group_name);
9390 
9416 void SwitchVarPreset(const string&in group_name, const string&in setting_name);
9417 
9437 bool DeleteVarPresetSet(const string&in group_name, const string&in setting_name);
9438 
9467 string GetCurrentGroupName();
9468 
9497 string GetCurrentSettingName();
9498 
9515 string[]@ GetVarPresetGroupNames();
9516 
9536 string[]@ GetVarPresetSettingNamesWName(const string&in group_name);
9537 
9568 string[]@ GetVarPresetSettingNamesWIndex(int group_index);
9569 
9596 double[]@ GetVarPresetParmVals();
9597 
9629 double[]@ GetVarPresetParmValsWNames(const string&in group_name, const string&in setting_name);
9630 
9655 string[]@ GetVarPresetParmIDs();
9656 
9685 string[]@ GetVarPresetParmIDsWName(const string&in group_name);
9686 
9700 void SetPCurve(const string&in geom_id, const int&in pcurveid, double[]@ tvec, double[]@ valvec, const int&in newtype);
9701 
9713 void PCurveConvertTo(const string&in geom_id, const int&in pcurveid, const int&in newtype);
9714 
9726 int PCurveGetType(const string&in geom_id, const int&in pcurveid);
9727 
9738 double[]@ PCurveGetTVec(const string&in geom_id, const int&in pcurveid);
9739 
9750 double[]@ PCurveGetValVec(const string&in geom_id, const int&in pcurveid);
9751 
9762 void PCurveDeletePt(const string&in geom_id, const int&in pcurveid, const int&in indx);
9763 
9775 int PCurveSplit(const string&in geom_id, const int&in pcurveid, const double&in tsplit);
9776 
9792 void ApproximateAllPropellerPCurves(const string&in geom_id);
9793 
9811 void ResetPropellerThicknessCurve(const string&in geom_id);
9812 
9829 void AddExcrescence(const string&in excresName, const int&in excresType, const double&in excresVal);
9830 
9848 void DeleteExcrescence(const int&in excresName);
9849 
9857 void UpdateParasiteDrag();
9858 
9875 void WriteAtmosphereCSVFile(const string&in file_name, const int&in atmos_type);
9876 
9903 void CalcAtmosphere(const double&in alt, const double&in delta_temp, const int&in atmos_type, double&out temp, double&out pres, double&out pres_ratio, double&out rho_ratio);
9904 
9917 void WriteBodyFFCSVFile(const string&in file_name);
9918 
9931 void WriteWingFFCSVFile(const string&in file_name);
9932 
9945 void WriteCfEqnCSVFile(const string&in file_name);
9946 
9959 void WritePartialCfMethodCSVFile(const string&in file_name);
9960 
9986 vec3d CompPnt01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
9987 
10013 vec3d CompNorm01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
10014 
10040 vec3d CompTanU01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
10041 
10067 vec3d CompTanW01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
10068 
10100 void CompCurvature01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w, double&out k1, double&out k2, double&out ka, double&out kg);
10101 
10139 double ProjPnt01(const string&in geom_id, const int&in surf_indx, const vec3d&in pt, double&out u, double&out w);
10140 
10182 double ProjPnt01I(const string&in geom_id, const vec3d&in pt, int&out surf_indx, double&out u, double&out w);
10183 
10226 double ProjPnt01Guess(const string&in geom_id, const int&in surf_indx, const vec3d&in pt, const double&in u0, const double&in w0, double&out u, double&out w);
10227 
10268 double AxisProjPnt01(const string&in geom_id, const int&in surf_indx, const int&in iaxis, const vec3d&in pt, double&out u_out, double&out w_out, vec3d&out p_out);
10269 
10311 double AxisProjPnt01I(const string&in geom_id, const int&in iaxis, const vec3d&in pt, int&out surf_indx_out, double&out u_out, double&out w_out, vec3d&out p_out);
10312 
10359 double AxisProjPnt01Guess(const string&in geom_id, const int&in surf_indx, const int&in iaxis, const vec3d&in pt, const double&in u0, const double&in w0, double&out u_out, double&out w_out, vec3d&out p_out);
10360 
10382 void GetUWTess01(const string&in geom_id, int&in surf_indx, double[]@ us, double[]@ ws);
10383 
10416 vec3d[]@ CompVecPnt01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws);
10417 
10450 vec3d[]@ CompVecNorm01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws);
10451 
10489 void CompVecCurvature01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws, double[]@ k1s, double[]@ k2s, double[]@ kas, double[]@ kgs);
10490 
10537 void ProjVecPnt01(const string&in geom_id, const int&in surf_indx, vec3d[]@ pts, double[]@ us, double[]@ ws, double[]@ ds);
10538 
10598 void ProjVecPnt01Guess(const string&in geom_id, const int&in surf_indx, vec3d[]@ pts, double[]@ u0s, double[]@ w0s, double[]@ us, double[]@ ws, double[]@ ds);
10599 
10662 void AxisProjVecPnt01(const string&in geom_id, const int&in surf_indx, const int&in iaxis, vec3d[]@ pts, double[]@ us, double[]@ ws, vec3d[]@ ps_out, double[]@ ds);
10663 
10732 void AxisProjVecPnt01Guess(const string&in geom_id, int&in surf_indx, const int&in iaxis, vec3d[]@ pts, double[]@ u0s, double[]@ w0s, double[]@ us, double[]@ ws, vec3d[]@ ps_out, double[]@ ds);
10733 
10764 string AddRuler(const string&in startgeomid, int startsurfindx, double startu, double startw, const string&in endgeomid, int endsurfindx, double endu, double endw, const string&in name);
10765 
10796 string[]@ GetAllRulers();
10797 
10823 void DelRuler(const string&in id);
10824 
10847 void DeleteAllRulers();
10848 
10871 string AddProbe(const string&in geomid, int surfindx, double u, double w, const string&in name);
10872 
10894 string[]@ GetAllProbes();
10895 
10918 void DelProbe(const string&in id);
10919 
10941 void DeleteAllProbes();
10942 
10962 int AddFeaStruct(const string&in geom_id, bool init_skin = true, int surfindex = 0);
10963 
10984 void DeleteFeaStruct(const string&in geom_id, int fea_struct_ind);
10985 
11005 void SetFeaMeshStructIndex(int struct_index);
11006 
11026 string GetFeaStructID(const string&in geom_id, int fea_struct_ind);
11027 
11052 int GetFeaStructIndex(const string&in struct_id);
11053 
11075 string GetFeaStructParentGeomID(const string&in struct_id);
11076 
11102 string GetFeaStructName(const string&in geom_id, int fea_struct_ind);
11103 
11131 void SetFeaStructName(const string&in geom_id, int fea_struct_ind, const string&in name);
11132 
11153 string[]@ GetFeaStructIDVec();
11154 
11177 void SetFeaPartName(const string&in part_id, const string&in name);
11178 
11204 void SetFeaMeshVal(const string&in geom_id, int fea_struct_ind, int type, double val);
11205 
11234 void SetFeaMeshFileName(const string&in geom_id, int fea_struct_ind, int file_type, const string&in file_name);
11235 
11265 void ComputeFeaMesh(const string&in geom_id, int fea_struct_ind, int file_type);
11266 
11292 void ComputeFeaMesh(const string&in struct_id, int file_type);
11293 
11320 string AddFeaPart(const string&in geom_id, int fea_struct_ind, int type);
11321 
11348 void DeleteFeaPart(const string&in geom_id, int fea_struct_ind, const string&in part_id);
11349 
11379 string GetFeaPartID(const string&in fea_struct_id, int fea_part_index);
11380 
11409 string GetFeaPartName(const string&in part_id);
11410 
11436 int GetFeaPartType(const string&in part_id);
11437 
11468 int GetFeaSubSurfIndex(const string&in ss_id);
11469 
11492 int NumFeaStructures();
11493 
11522 int NumFeaParts(const string&in fea_struct_id);
11523 
11552 int NumFeaSubSurfs(const string&in fea_struct_id);
11553 
11579 string[]@ GetFeaPartIDVec(const string&in fea_struct_id);
11580 
11606 string[]@ GetFeaSubSurfIDVec(const string&in fea_struct_id);
11607 
11647 void SetFeaPartPerpendicularSparID(const string&in part_id, const string&in perpendicular_spar_id);
11648 
11687 string GetFeaPartPerpendicularSparID(const string&in part_id);
11688 
11715 string AddFeaSubSurf(const string&in geom_id, int fea_struct_ind, int type);
11716 
11743 void DeleteFeaSubSurf(const string&in geom_id, int fea_struct_ind, const string&in ss_id);
11744 
11759 string AddFeaMaterial();
11760 
11778 string AddFeaProperty(int property_type = 0);
11779 
11792 void Print(const string&in data, bool new_line = true);
11793 
11806 void Print(const vec3d&in data, bool new_line = true);
11807 
11820 void Print(double data, bool new_line = true);
11821 
11834 void Print(int data, bool new_line = true);
11835 
11851 double Min(double x, double y);
11852 
11868 double Max(double x, double y);
11869 
11884 double Rad2Deg(double r);
11885 
11900 double Deg2Rad(double d);
11901 
11915 string GetVSPVersion();
11916 
11932 string GetVSPExePath();
11933 
11954 bool SetVSPAEROPath(const string&in path);
11955 
11973 string GetVSPAEROPath();
11974 
11995 bool CheckForVSPAERO(const string&in path);
11996 
12012 void VSPCheckSetup();
12013 
12031 void VSPRenew();
12032 
12046 
12047 
DeleteFeaSubSurf
void DeleteFeaSubSurf(const string &in geom_id, int fea_struct_ind, const string &in ss_id)
SYM_XY
@ SYM_XY
Definition: openvsp_as.h:1939
ReparameterizeEditXSec
void ReparameterizeEditXSec(const string &in xsec_id)
CFD_FACET_FILE_NAME
@ CFD_FACET_FILE_NAME
Definition: openvsp_as.h:1178
vec3d::set_y
vec3d & set_y(double y)
GetVehicleID
string GetVehicleID()
DIMENSION_SET
DIMENSION_SET
Definition: openvsp_as.h:1299
VSP_FILE_DOES_NOT_EXIST
@ VSP_FILE_DOES_NOT_EXIST
Definition: openvsp_as.h:1354
FF_W_HOERNER
@ FF_W_HOERNER
Definition: openvsp_as.h:1546
GetIntAnalysisInput
int[] GetIntAnalysisInput(const string &in analysis, const string &in name, int index=0)
NOISE_FLYBY
@ NOISE_FLYBY
Definition: openvsp_as.h:2054
VSP_FILE_WRITE_FAILURE
@ VSP_FILE_WRITE_FAILURE
Definition: openvsp_as.h:1355
ComputePlaneSlice
string ComputePlaneSlice(int set, int num_slices, const vec3d &in norm, bool auto_bnd, double start_bnd=0, double end_bnd=0)
SetVSPAEROPath
bool SetVSPAEROPath(const string &in path)
GDEV_STRING_INPUT
@ GDEV_STRING_INPUT
Definition: openvsp_as.h:1595
VIEW_BOTTOM
@ VIEW_BOTTOM
Definition: openvsp_as.h:2021
CLOSE_SKEWLOW
@ CLOSE_SKEWLOW
Definition: openvsp_as.h:2174
CF_TURB_IMPLICIT_KARMAN_SCHOENHERR
@ CF_TURB_IMPLICIT_KARMAN_SCHOENHERR
Definition: openvsp_as.h:1220
EXPORT_SELIG_AIRFOIL
@ EXPORT_SELIG_AIRFOIL
Definition: openvsp_as.h:1411
GetFeaStructID
string GetFeaStructID(const string &in geom_id, int fea_struct_ind)
GetIntResults
int[] GetIntResults(const string &in id, const string &in name, int index=0)
AddFeaProperty
string AddFeaProperty(int property_type=0)
vec3d::rotate_z
void rotate_z(double cos_alpha, double sin_alpha)
ErrorObj::GetErrorCode
ERROR_CODE GetErrorCode()
WIDTH_XSEC_DRIVER
@ WIDTH_XSEC_DRIVER
Definition: openvsp_as.h:2216
SECSWEEP_WSECT_DRIVER
@ SECSWEEP_WSECT_DRIVER
Definition: openvsp_as.h:2150
MASS_UNIT
MASS_UNIT
Definition: openvsp_as.h:1677
GetVSPExePath
string GetVSPExePath()
CFD_FAR_LOC_MAN_FLAG
@ CFD_FAR_LOC_MAN_FLAG
Definition: openvsp_as.h:1156
COMP_GEOM_TXT_TYPE
@ COMP_GEOM_TXT_TYPE
Definition: openvsp_as.h:1256
DO_NOT_USE_CF_TURB_ROUGHNESS_SCHLICHTING_LOCAL
@ DO_NOT_USE_CF_TURB_ROUGHNESS_SCHLICHTING_LOCAL
Definition: openvsp_as.h:1232
SUBSURF_TYPE
SUBSURF_TYPE
Definition: openvsp_as.h:1923
SYM_TB
@ SYM_TB
Definition: openvsp_as.h:1957
STABILITY_Q_ANALYSIS
@ STABILITY_Q_ANALYSIS
Definition: openvsp_as.h:2089
SPAR_NORMAL
@ SPAR_NORMAL
Definition: openvsp_as.h:1488
GetGeomParent
string GetGeomParent(const string &in geom_id)
SetVspSurfCfdType
void SetVspSurfCfdType(int type, int surf_index=- 1)
FindGeoms
string[] FindGeoms()
FLAT_END_CAP
@ FLAT_END_CAP
Definition: openvsp_as.h:1124
GetCurrCustomGeom
string GetCurrCustomGeom()
CFD_INTERSECT_SUBSURFACE_FLAG
@ CFD_INTERSECT_SUBSURFACE_FLAG
Definition: openvsp_as.h:1143
CF_TURB_IMPLICIT_SCHOENHERR
@ CF_TURB_IMPLICIT_SCHOENHERR
Definition: openvsp_as.h:1219
CFD_VSPGEOM_FILE_NAME
@ CFD_VSPGEOM_FILE_NAME
Definition: openvsp_as.h:1181
FEA_IGES_FILE_NAME
@ FEA_IGES_FILE_NAME
Definition: openvsp_as.h:1446
POINT_SOURCE
@ POINT_SOURCE
Definition: openvsp_as.h:1191
SET_SHOWN
@ SET_SHOWN
Definition: openvsp_as.h:1872
CFD_NORMAL
@ CFD_NORMAL
Definition: openvsp_as.h:2099
GetCurrentGroupName
string GetCurrentGroupName()
RemoveXSecSurf
void RemoveXSecSurf(const string &in xsec_id)
PROP_MODE
PROP_MODE
Definition: openvsp_as.h:1788
SetSubSurfName
void SetSubSurfName(const string &in geom_id, const string &in sub_id, const string &in name)
GetFeatureLinePnts
vec3d[] GetFeatureLinePnts(const string &in geom_id)
XDDM_VAR
@ XDDM_VAR
Definition: openvsp_as.h:2163
SetBORLowerCST
void SetBORLowerCST(const string &in bor_id, int deg, double[]@ coeff_arr)
Z_DIR
@ Z_DIR
Definition: openvsp_as.h:1313
XSEC_CLOSE_TYPE
XSEC_CLOSE_TYPE
Definition: openvsp_as.h:2171
CLOSE_EXTRAP
@ CLOSE_EXTRAP
Definition: openvsp_as.h:2177
XS_SUPER_ELLIPSE
@ XS_SUPER_ELLIPSE
Definition: openvsp_as.h:2191
SYM_ALL
@ SYM_ALL
Definition: openvsp_as.h:1958
MESH_SLICE_TRI
@ MESH_SLICE_TRI
Definition: openvsp_as.h:1845
ANG_RAD
@ ANG_RAD
Definition: openvsp_as.h:1055
CFD_FAR_X_SCALE
@ CFD_FAR_X_SCALE
Definition: openvsp_as.h:1153
GetEllipsoidCpDist
double[] GetEllipsoidCpDist(vec3d[]@ surf_pnt_arr, const vec3d &in abc_rad, const vec3d &in V_inf)
V_UNIT_M_S
@ V_UNIT_M_S
Definition: openvsp_as.h:1980
FitAfCST
void FitAfCST(const string &in xsec_surf_id, int xsec_index, int deg)
ValidParm
bool ValidParm(const string &in id)
InsertVSPFile
void InsertVSPFile(const string &in file_name, const string &in parent)
GetVSPVersion
string GetVSPVersion()
XDDM_QUANTITY_TYPE
XDDM_QUANTITY_TYPE
Definition: openvsp_as.h:2161
ProjVecPnt01Guess
void ProjVecPnt01Guess(const string &in geom_id, const int &in surf_indx, vec3d[]@ pts, double[]@ u0s, double[]@ w0s, double[]@ us, double[]@ ws, double[]@ ds)
GetLowerCSTDegree
int GetLowerCSTDegree(const string &in xsec_id)
GetSubSurfParmIDs
string[] GetSubSurfParmIDs(const string &in sub_id)
DO_NOT_USE_CF_TURB_SCHULTZ_GRUNOW_HIGH_RE
@ DO_NOT_USE_CF_TURB_SCHULTZ_GRUNOW_HIGH_RE
Definition: openvsp_as.h:1228
XS_BICONVEX
@ XS_BICONVEX
Definition: openvsp_as.h:2197
PROJ_TGT_TYPE
PROJ_TGT_TYPE
Definition: openvsp_as.h:1777
CFD_NUM_FILE_NAMES
@ CFD_NUM_FILE_NAMES
Definition: openvsp_as.h:1182
GetUWTess01
void GetUWTess01(const string &in geom_id, int &in surf_indx, double[]@ us, double[]@ ws)
DeleteAllCFDSources
void DeleteAllCFDSources()
SetBEMPropID
void SetBEMPropID(const string &in prop_id)
ATTACH_ROT_COMP
@ ATTACH_ROT_COMP
Definition: openvsp_as.h:1080
AxisProjPnt01
double AxisProjPnt01(const string &in geom_id, const int &in surf_indx, const int &in iaxis, const vec3d &in pt, double &out u_out, double &out w_out, vec3d &out p_out)
EditXSecConvertTo
void EditXSecConvertTo(const string &in xsec_id, const int &in newtype)
SetBackground
void SetBackground(double r, double g, double b)
UpdateGui
void UpdateGui(int gui_id, const string &in parm_id)
cos_angle
double cos_angle(const vec3d &in a, const vec3d &in b)
MASS_UNIT_TONNE
@ MASS_UNIT_TONNE
Definition: openvsp_as.h:1681
SET_3D
@ SET_3D
Definition: openvsp_as.h:1301
VSP_WRONG_XSEC_TYPE
@ VSP_WRONG_XSEC_TYPE
Definition: openvsp_as.h:1356
DO_NOT_USE_CF_TURB_SCHLICHTING_PRANDTL
@ DO_NOT_USE_CF_TURB_SCHLICHTING_PRANDTL
Definition: openvsp_as.h:1227
Matrix4d::rotateZ
void rotateZ(const double &in ang)
GetGeomChildren
string[] GetGeomChildren(const string &in geom_id)
INVALID_TYPE
@ INVALID_TYPE
Definition: openvsp_as.h:1830
SetVSP3FileName
void SetVSP3FileName(const string &in file_name)
GetAnalysisInputType
int GetAnalysisInputType(const string &in analysis, const string &in name)
ScreenGrab
void ScreenGrab(const string &in file_name, int w, int h, bool transparentBG)
BLEND_MATCH_OUT_LE_TRAP
@ BLEND_MATCH_OUT_LE_TRAP
Definition: openvsp_as.h:2130
V_UNIT_MPH
@ V_UNIT_MPH
Definition: openvsp_as.h:1981
GEOM_DRAW_WIRE
@ GEOM_DRAW_WIRE
Definition: openvsp_as.h:1334
GetBORLowerCSTCoefs
double[] GetBORLowerCSTCoefs(const string &in bor_id)
BLEND_MATCH_IN_TE_TRAP
@ BLEND_MATCH_IN_TE_TRAP
Definition: openvsp_as.h:2129
CalcAtmosphere
void CalcAtmosphere(const double &in alt, const double &in delta_temp, const int &in atmos_type, double &out temp, double &out pres, double &out pres_ratio, double &out rho_ratio)
LEN_CM
@ LEN_CM
Definition: openvsp_as.h:1665
XS_FILE_AIRFOIL
@ XS_FILE_AIRFOIL
Definition: openvsp_as.h:2200
ErrorObj::GetErrorString
string GetErrorString()
GDEV_TAB
@ GDEV_TAB
Definition: openvsp_as.h:1575
CFD_FAR_Z_SCALE
@ CFD_FAR_Z_SCALE
Definition: openvsp_as.h:1155
DEGEN_GEOM_CSV_TYPE
@ DEGEN_GEOM_CSV_TYPE
Definition: openvsp_as.h:1260
GetGeomSetAtIndex
string[] GetGeomSetAtIndex(int index)
GetVarPresetParmValsWNames
double[] GetVarPresetParmValsWNames(const string &in group_name, const string &in setting_name)
INTERSECT_IGES_FILE_NAME
@ INTERSECT_IGES_FILE_NAME
Definition: openvsp_as.h:1653
vec3d::mag
double mag() const
EXPORT_STEP_STRUCTURE
@ EXPORT_STEP_STRUCTURE
Definition: openvsp_as.h:1414
FEA_XSEC_PIPE
@ FEA_XSEC_PIPE
Definition: openvsp_as.h:1425
MAX_CAMB
@ MAX_CAMB
Definition: openvsp_as.h:1113
IMPORT_PTS
@ IMPORT_PTS
Definition: openvsp_as.h:1626
vec3d::scale_x
void scale_x(double scale)
AxisProjVecPnt01
void AxisProjVecPnt01(const string &in geom_id, const int &in surf_indx, const int &in iaxis, vec3d[]@ pts, double[]@ us, double[]@ ws, vec3d[]@ ps_out, double[]@ ds)
GetVec3dResults
vec3d[] GetVec3dResults(const string &in id, const string &in name, int index=0)
YZ_BODY
@ YZ_BODY
Definition: openvsp_as.h:1498
DISPLAY_TYPE
DISPLAY_TYPE
Definition: openvsp_as.h:1320
SS_LINE_ARRAY
@ SS_LINE_ARRAY
Definition: openvsp_as.h:1929
XSEC_DRIVERS
XSEC_DRIVERS
Definition: openvsp_as.h:2214
VIEW_TOP
@ VIEW_TOP
Definition: openvsp_as.h:2020
XS_SHIFT_LE
@ XS_SHIFT_LE
Definition: openvsp_as.h:2267
GetAllDataNames
string[] GetAllDataNames(const string &in results_id)
PRES_UNIT_INCHHG
@ PRES_UNIT_INCHHG
Definition: openvsp_as.h:1740
SS_NUM_TYPES
@ SS_NUM_TYPES
Definition: openvsp_as.h:1930
ScaleSet
void ScaleSet(int set_index, double scale)
SetBORUpperCST
void SetBORUpperCST(const string &in bor_id, int deg, double[]@ coeff_arr)
CFD_NUM_TYPES
@ CFD_NUM_TYPES
Definition: openvsp_as.h:2104
GDEV_BEGIN_SAME_LINE
@ GDEV_BEGIN_SAME_LINE
Definition: openvsp_as.h:1600
PCURV_TYPE
PCURV_TYPE
Definition: openvsp_as.h:1719
VIEW_NUM
VIEW_NUM
Definition: openvsp_as.h:1992
ResetPropellerThicknessCurve
void ResetPropellerThicknessCurve(const string &in geom_id)
DELIM_USCORE
@ DELIM_USCORE
Definition: openvsp_as.h:1289
NO_END_CAP
@ NO_END_CAP
Definition: openvsp_as.h:1123
NUM_PROP_PCURVE
@ NUM_PROP_PCURVE
Definition: openvsp_as.h:1810
SYM_XSEC_TYPE
SYM_XSEC_TYPE
Definition: openvsp_as.h:1953
SetXSecTanStrengths
void SetXSecTanStrengths(const string &in xsec_id, int side, double top, double right=- 1.0e12, double bottom=- 1.0e12, double left=- 1.0e12)
GetBORLowerCSTDegree
int GetBORLowerCSTDegree(const string &in bor_id)
vec3d::operator*
vec3d operator*(double b) const
FEA_FIX_POINT
@ FEA_FIX_POINT
Definition: openvsp_as.h:1471
RemoveSelectedFromCSGroup
void RemoveSelectedFromCSGroup(int[]@ selected, int CSGroupIndex)
GetSetIndex
int GetSetIndex(const string &in name)
GetXSecParm
string GetXSecParm(const string &in xsec_id, const string &in name)
FEA_SHELL_AND_BEAM
@ FEA_SHELL_AND_BEAM
Definition: openvsp_as.h:1459
SetXSecHeight
void SetXSecHeight(const string &in xsec_id, double h)
CLMAX_CARLSON
@ CLMAX_CARLSON
Definition: openvsp_as.h:2045
GEOM_DRAW_NONE
@ GEOM_DRAW_NONE
Definition: openvsp_as.h:1338
NOISE_STEADY
@ NOISE_STEADY
Definition: openvsp_as.h:2056
V_UNIT_MACH
@ V_UNIT_MACH
Definition: openvsp_as.h:1985
BOR_UPPER
@ BOR_UPPER
Definition: openvsp_as.h:1102
FindContainersWithName
string[] FindContainersWithName(const string &in name)
GetParmUpperLimit
double GetParmUpperLimit(const string &in parm_id)
vec3d::operator/
vec3d operator/(double b) const
VIEW_1
@ VIEW_1
Definition: openvsp_as.h:1994
ATMOS_TYPE_MANUAL_RE_L
@ ATMOS_TYPE_MANUAL_RE_L
Definition: openvsp_as.h:1070
MPA_UNIT
@ MPA_UNIT
Definition: openvsp_as.h:1514
Matrix4d
A class for representing 4x4 matricies.
Definition: openvsp_as.h:788
FEA_MASS_FILE_NAME
@ FEA_MASS_FILE_NAME
Definition: openvsp_as.h:1437
SYM_FLAG
SYM_FLAG
Definition: openvsp_as.h:1937
XS_ROUNDED_RECTANGLE
@ XS_ROUNDED_RECTANGLE
Definition: openvsp_as.h:2192
FF_W_EDET_CONV
@ FF_W_EDET_CONV
Definition: openvsp_as.h:1544
HWRATIO_XSEC_DRIVER
@ HWRATIO_XSEC_DRIVER
Definition: openvsp_as.h:2219
EXPORT_IGES_STRUCTURE
@ EXPORT_IGES_STRUCTURE
Definition: openvsp_as.h:1413
DeleteFeaStruct
void DeleteFeaStruct(const string &in geom_id, int fea_struct_ind)
SYM_NUM_TYPES
@ SYM_NUM_TYPES
Definition: openvsp_as.h:1946
CFD_HALF_MESH_FLAG
@ CFD_HALF_MESH_FLAG
Definition: openvsp_as.h:1144
SetXSecWidth
void SetXSecWidth(const string &in xsec_id, double w)
EXCRESCENCE_MARGIN
@ EXCRESCENCE_MARGIN
Definition: openvsp_as.h:1380
PROJ_DIR_TYPE
PROJ_DIR_TYPE
Definition: openvsp_as.h:1763
CFD_STL_TYPE
@ CFD_STL_TYPE
Definition: openvsp_as.h:1262
EditXSecDelPnt
void EditXSecDelPnt(const string &in xsec_id, const int &in indx)
PRES_UNIT_MPA
@ PRES_UNIT_MPA
Definition: openvsp_as.h:1739
FEA_GMSH_FILE_NAME
@ FEA_GMSH_FILE_NAME
Definition: openvsp_as.h:1442
EXPORT_OBJ
@ EXPORT_OBJ
Definition: openvsp_as.h:1410
NUM_REF_TYPES
@ NUM_REF_TYPES
Definition: openvsp_as.h:1821
WriteBodyFFCSVFile
void WriteBodyFFCSVFile(const string &in file_name)
SetVspSurfType
void SetVspSurfType(int type, int surf_index=- 1)
WriteVSPFile
void WriteVSPFile(const string &in file_name, int set)
vec3d::operator-
vec3d operator-(const vec3d &in) const
vec3d::scale_y
void scale_y(double scale)
EXPORT_GMSH
@ EXPORT_GMSH
Definition: openvsp_as.h:1400
EDIT_XSEC_ELLIPSE
@ EDIT_XSEC_ELLIPSE
Definition: openvsp_as.h:1640
AddRuler
string AddRuler(const string &in startgeomid, int startsurfindx, double startu, double startw, const string &in endgeomid, int endsurfindx, double endu, double endw, const string &in name)
Deg2Rad
double Deg2Rad(double d)
Matrix4d::getAngles
vec3d getAngles()
Rad2Deg
double Rad2Deg(double r)
GetParm
string GetParm(const string &in geom_id, const string &in name, const string &in group)
VSP_WRONG_FILE_TYPE
@ VSP_WRONG_FILE_TYPE
Definition: openvsp_as.h:1357
DelProbe
void DelProbe(const string &in id)
BFT_UNIT
@ BFT_UNIT
Definition: openvsp_as.h:1515
XS_POINT
@ XS_POINT
Definition: openvsp_as.h:2188
FindContainerParmIDs
string[] FindContainerParmIDs(const string &in parm_container_id)
vec3d::set_z
vec3d & set_z(double z)
WriteBezierAirfoil
void WriteBezierAirfoil(const string &in file_name, const string &in geom_id, const double &in foilsurf_u)
MoveEditXSecPnt
void MoveEditXSecPnt(const string &in xsec_id, const int &in indx, const vec3d &in new_pnt)
XSEC_WING
@ XSEC_WING
Definition: openvsp_as.h:2255
PCurveGetValVec
double[] PCurveGetValVec(const string &in geom_id, const int &in pcurveid)
DemoteBORCSTLower
void DemoteBORCSTLower(const string &in bor_id)
EXPORT_VSPGEOM
@ EXPORT_VSPGEOM
Definition: openvsp_as.h:1397
STABILITY_P_ANALYSIS
@ STABILITY_P_ANALYSIS
Definition: openvsp_as.h:2088
XS_GENERAL_FUSE
@ XS_GENERAL_FUSE
Definition: openvsp_as.h:2193
BEZIER_AF_EXPORT
@ BEZIER_AF_EXPORT
Definition: openvsp_as.h:1046
GDEV_SLIDER_ADJ_RANGE_TWO_INPUT
@ GDEV_SLIDER_ADJ_RANGE_TWO_INPUT
Definition: openvsp_as.h:1593
FEA_EXPORT_TYPE
FEA_EXPORT_TYPE
Definition: openvsp_as.h:1435
BOR_FLOWTHROUGH
@ BOR_FLOWTHROUGH
Definition: openvsp_as.h:1101
AppendXSec
string AppendXSec(const string &in xsec_surf_id, int type)
VSPExit
void VSPExit(int error_code)
XSEC_LEFT_SIDE
@ XSEC_LEFT_SIDE
Definition: openvsp_as.h:2231
LE_NORMAL
@ LE_NORMAL
Definition: openvsp_as.h:1486
GetNumXSecSurfs
int GetNumXSecSurfs(const string &in geom_id)
PATCH_TYPE
PATCH_TYPE
Definition: openvsp_as.h:1705
AddCFDSource
void AddCFDSource(int type, const string &in geom_id, int surf_index, double l1, double r1, double u1, double w1, double l2=0, double r2=0, double u2=0, double w2=0)
SET_2D
@ SET_2D
Definition: openvsp_as.h:1302
vec3d::reflect_xy
vec3d reflect_xy()
BLEND_MATCH_OUT_TE_TRAP
@ BLEND_MATCH_OUT_TE_TRAP
Definition: openvsp_as.h:2131
FF_W_TORENBEEK
@ FF_W_TORENBEEK
Definition: openvsp_as.h:1550
GetFeaPartID
string GetFeaPartID(const string &in fea_struct_id, int fea_part_index)
TEMP_UNIT_K
@ TEMP_UNIT_K
Definition: openvsp_as.h:1967
NUM_PCURV_TYPE
@ NUM_PCURV_TYPE
Definition: openvsp_as.h:1725
DISPLAY_DEGEN_PLATE
@ DISPLAY_DEGEN_PLATE
Definition: openvsp_as.h:1324
PROP_CHORD
@ PROP_CHORD
Definition: openvsp_as.h:1801
SYM_ROT_X
@ SYM_ROT_X
Definition: openvsp_as.h:1942
XY_BODY
@ XY_BODY
Definition: openvsp_as.h:1497
FF_B_EQN
FF_B_EQN
Definition: openvsp_as.h:1523
UpdateParasiteDrag
void UpdateParasiteDrag()
CF_LAM_BLASIUS
@ CF_LAM_BLASIUS
Definition: openvsp_as.h:1205
SetGeomDrawType
void SetGeomDrawType(const string &in geom_id, int type)
SS_INC_TREAT_AS_PARENT
@ SS_INC_TREAT_AS_PARENT
Definition: openvsp_as.h:1893
GetBORXSecShape
int GetBORXSecShape(const string &in geom_id)
GetActiveCSNameVec
string[] GetActiveCSNameVec(int CSGroupIndex)
XS_FIVE_DIGIT
@ XS_FIVE_DIGIT
Definition: openvsp_as.h:2204
FF_W_KROO
@ FF_W_KROO
Definition: openvsp_as.h:1549
vec3d::rotate_z_zero_y
void rotate_z_zero_y(double cos_alpha, double sin_alpha)
CFD_SRF_FILE_NAME
@ CFD_SRF_FILE_NAME
Definition: openvsp_as.h:1176
SetXSecWidthHeight
void SetXSecWidthHeight(const string &in xsec_id, double w, double h)
XS_EDIT_CURVE
@ XS_EDIT_CURVE
Definition: openvsp_as.h:2199
SetVSPAEROControlGroupName
void SetVSPAEROControlGroupName(const string &in name, int CSGroupIndex)
INIT_EDIT_XSEC_TYPE
INIT_EDIT_XSEC_TYPE
Definition: openvsp_as.h:1637
SetCFDMeshVal
void SetCFDMeshVal(int type, double val)
CFD_VSPGEOM_TYPE
@ CFD_VSPGEOM_TYPE
Definition: openvsp_as.h:1278
DELIM_COMMA
@ DELIM_COMMA
Definition: openvsp_as.h:1288
CFD_SRF_XYZ_FLAG
@ CFD_SRF_XYZ_FLAG
Definition: openvsp_as.h:1160
CF_TURB_EXPLICIT_FIT_SPALDING_CHI
@ CF_TURB_EXPLICIT_FIT_SPALDING_CHI
Definition: openvsp_as.h:1216
BOR_NUM_MODES
@ BOR_NUM_MODES
Definition: openvsp_as.h:1104
ROUND_END_CAP
@ ROUND_END_CAP
Definition: openvsp_as.h:1125
DeleteSubSurf
void DeleteSubSurf(const string &in geom_id, const string &in sub_id)
AddExcrescence
void AddExcrescence(const string &in excresName, const int &in excresType, const double &in excresVal)
GetBORAirfoilLowerPnts
vec3d[] GetBORAirfoilLowerPnts(const string &in bor_id)
PRECON_JACOBI
@ PRECON_JACOBI
Definition: openvsp_as.h:2076
vec3d::normalize
void normalize()
EXPORT_FELISA
@ EXPORT_FELISA
Definition: openvsp_as.h:1390
STRING_DATA
@ STRING_DATA
Definition: openvsp_as.h:1833
DEGEN_GEOM_M_TYPE
@ DEGEN_GEOM_M_TYPE
Definition: openvsp_as.h:1261
ATTACH_ROT_UV
@ ATTACH_ROT_UV
Definition: openvsp_as.h:1081
GDEV_SET_FORMAT
@ GDEV_SET_FORMAT
Definition: openvsp_as.h:1603
LEN_UNITS
LEN_UNITS
Definition: openvsp_as.h:1662
EXPORT_X3D
@ EXPORT_X3D
Definition: openvsp_as.h:1401
RotateArbAxis
vec3d RotateArbAxis(const vec3d &in p, double theta, const vec3d &in axis)
dot
double dot(const vec3d &in a, const vec3d &in b)
VEL_UNITS
VEL_UNITS
Definition: openvsp_as.h:1977
AxisProjPnt01I
double AxisProjPnt01I(const string &in geom_id, const int &in iaxis, const vec3d &in pt, int &out surf_indx_out, double &out u_out, double &out w_out, vec3d &out p_out)
PRECON_SSOR
@ PRECON_SSOR
Definition: openvsp_as.h:2077
GetBORUpperCSTCoefs
double[] GetBORUpperCSTCoefs(const string &in bor_id)
GEOM_TARGET
@ GEOM_TARGET
Definition: openvsp_as.h:1780
YZ_ABS
@ YZ_ABS
Definition: openvsp_as.h:1501
BOR_LOWER
@ BOR_LOWER
Definition: openvsp_as.h:1103
EXPORT_STL
@ EXPORT_STL
Definition: openvsp_as.h:1392
BLEND_MATCH_IN_ANGLES
@ BLEND_MATCH_IN_ANGLES
Definition: openvsp_as.h:2132
ROT_180
@ ROT_180
Definition: openvsp_as.h:2008
ROT_90
@ ROT_90
Definition: openvsp_as.h:2007
GEOM_DRAW_HIDDEN
@ GEOM_DRAW_HIDDEN
Definition: openvsp_as.h:1335
GetCustomXSecLoc
vec3d GetCustomXSecLoc(const string &in xsec_id)
GetEditXSecUVec
double[] GetEditXSecUVec(const string &in xsec_id)
REL
@ REL
Definition: openvsp_as.h:1036
WriteSeligAirfoil
void WriteSeligAirfoil(const string &in file_name, const string &in geom_id, const double &in foilsurf_u)
FindResultsID
string FindResultsID(const string &in name, int index=0)
GDEV_CHOICE
@ GDEV_CHOICE
Definition: openvsp_as.h:1589
PasteGeomClipboard
string[] PasteGeomClipboard(const string &in parent_id="")
FEA_NUM_FILE_NAMES
@ FEA_NUM_FILE_NAMES
Definition: openvsp_as.h:1448
ATMOS_TYPE_US_STANDARD_1976
@ ATMOS_TYPE_US_STANDARD_1976
Definition: openvsp_as.h:1065
EDIT_XSEC_RECTANGLE
@ EDIT_XSEC_RECTANGLE
Definition: openvsp_as.h:1641
PROP_BLADES
@ PROP_BLADES
Definition: openvsp_as.h:1790
AddGui
int AddGui(int type, const string &in label=string(), const string &in parm_name=string(), const string &in group_name=string(), double range=10.0)
BLEND_MATCH_IN_LE_TRAP
@ BLEND_MATCH_IN_LE_TRAP
Definition: openvsp_as.h:2128
MANUAL_REF
@ MANUAL_REF
Definition: openvsp_as.h:1819
PROP_PCURVE
PROP_PCURVE
Definition: openvsp_as.h:1799
SetFeaMeshFileName
void SetFeaMeshFileName(const string &in geom_id, int fea_struct_ind, int file_type, const string &in file_name)
RemoveAllFromVSPAEROControlSurfaceGroup
void RemoveAllFromVSPAEROControlSurfaceGroup(int CSGroupIndex)
FEA_XSEC_BOX
@ FEA_XSEC_BOX
Definition: openvsp_as.h:1428
PATCH_POINT
@ PATCH_POINT
Definition: openvsp_as.h:1708
DeleteFeaPart
void DeleteFeaPart(const string &in geom_id, int fea_struct_ind, const string &in part_id)
ABS
@ ABS
Definition: openvsp_as.h:1035
PRES_UNIT_MMHG
@ PRES_UNIT_MMHG
Definition: openvsp_as.h:1741
XS_UNDEFINED
@ XS_UNDEFINED
Definition: openvsp_as.h:2187
CFD_TRI_FILE_NAME
@ CFD_TRI_FILE_NAME
Definition: openvsp_as.h:1171
CFD_FACET_TYPE
@ CFD_FACET_TYPE
Definition: openvsp_as.h:1275
DOUBLE_DATA
@ DOUBLE_DATA
Definition: openvsp_as.h:1832
vec3d::z
double z() const
XS_NUM_TYPES
@ XS_NUM_TYPES
Definition: openvsp_as.h:2207
COLLISION_ERRORS
COLLISION_ERRORS
Definition: openvsp_as.h:1242
SET_ALL
@ SET_ALL
Definition: openvsp_as.h:1871
DIR_INDEX
DIR_INDEX
Definition: openvsp_as.h:1309
VSP_INVALID_GEOM_ID
@ VSP_INVALID_GEOM_ID
Definition: openvsp_as.h:1353
MASS_PROP_TXT_TYPE
@ MASS_PROP_TXT_TYPE
Definition: openvsp_as.h:1259
GetNumControlSurfaceGroups
int GetNumControlSurfaceGroups()
vec3d::reflect_yz
vec3d reflect_yz()
CompVecNorm01
vec3d[] CompVecNorm01(const string &in geom_id, const int &in surf_indx, double[]@ us, double[]@ ws)
GDEV_FRACT_PARM_SLIDER
@ GDEV_FRACT_PARM_SLIDER
Definition: openvsp_as.h:1594
XSEC_BOTH_SIDES
@ XSEC_BOTH_SIDES
Definition: openvsp_as.h:2230
GetNumSets
int GetNumSets()
vec3d::set_x
vec3d & set_x(double x)
CheckForVSPAERO
bool CheckForVSPAERO(const string &in path)
PROP_TANGENTIAL
@ PROP_TANGENTIAL
Definition: openvsp_as.h:1809
GetContainerName
string GetContainerName(const string &in parm_container_id)
FEA_CURV_FILE_NAME
@ FEA_CURV_FILE_NAME
Definition: openvsp_as.h:1444
CFD_FAR_FIELD_FLAG
@ CFD_FAR_FIELD_FLAG
Definition: openvsp_as.h:1145
IMPORT_V2
@ IMPORT_V2
Definition: openvsp_as.h:1627
BIN_UNIT
@ BIN_UNIT
Definition: openvsp_as.h:1516
LEN_UNITLESS
@ LEN_UNITLESS
Definition: openvsp_as.h:1670
CEDIT
@ CEDIT
Definition: openvsp_as.h:1723
GDEV_SLIDER_ADJ_RANGE_INPUT
@ GDEV_SLIDER_ADJ_RANGE_INPUT
Definition: openvsp_as.h:1592
DISK_SURF
@ DISK_SURF
Definition: openvsp_as.h:2115
SilenceErrors
void SilenceErrors()
CF_TURB_HEATTRANSFER_WHITE_CHRISTOPH
@ CF_TURB_HEATTRANSFER_WHITE_CHRISTOPH
Definition: openvsp_as.h:1235
SetFeaStructName
void SetFeaStructName(const string &in geom_id, int fea_struct_ind, const string &in name)
CompTanW01
vec3d CompTanW01(const string &in geom_id, const int &in surf_indx, const double &in u, const double &in w)
GetParmDisplayGroupName
string GetParmDisplayGroupName(const string &in parm_id)
GetXSecShape
int GetXSecShape(const string &in xsec_id)
IMPORT_NASCART
@ IMPORT_NASCART
Definition: openvsp_as.h:1623
AR_WSECT_DRIVER
@ AR_WSECT_DRIVER
Definition: openvsp_as.h:2143
GetCurrentSettingName
string GetCurrentSettingName()
Matrix4d::loadXZRef
void loadXZRef()
FREESTREAM_PD_UNITS
FREESTREAM_PD_UNITS
Definition: openvsp_as.h:1563
WriteCfEqnCSVFile
void WriteCfEqnCSVFile(const string &in file_name)
CFD_PLOT3D_TYPE
@ CFD_PLOT3D_TYPE
Definition: openvsp_as.h:1277
PARM_LIMITED_INT_TYPE
@ PARM_LIMITED_INT_TYPE
Definition: openvsp_as.h:1697
VIEW_2HOR
@ VIEW_2HOR
Definition: openvsp_as.h:1995
GetResultsType
int GetResultsType(const string &in results_id, const string &in data_name)
AddParm
string AddParm(int type, const string &in name, const string &in group)
GetStringAnalysisInput
string[] GetStringAnalysisInput(const string &in analysis, const string &in name, int index=0)
FEA_NUM_TYPES
@ FEA_NUM_TYPES
Definition: openvsp_as.h:1476
GetErrorLastCallFlag
bool GetErrorLastCallFlag()
GetFeaSubSurfIndex
int GetFeaSubSurfIndex(const string &in ss_id)
GetEllipsoidSurfPnts
vec3d[] GetEllipsoidSurfPnts(const vec3d &in center, const vec3d &in abc_rad, int u_npts=20, int w_npts=20)
Matrix4d::rotateX
void rotateX(const double &in ang)
GDEV_CHECK_BUTTON
@ GDEV_CHECK_BUTTON
Definition: openvsp_as.h:1583
DO_NOT_USE_CF_TURB_ROUGHNESS_WHITE
@ DO_NOT_USE_CF_TURB_ROUGHNESS_WHITE
Definition: openvsp_as.h:1233
DemoteCSTUpper
void DemoteCSTUpper(const string &in xsec_id)
EXPORT_TYPE
EXPORT_TYPE
Definition: openvsp_as.h:1388
DRAW_TYPE
DRAW_TYPE
Definition: openvsp_as.h:1332
FindActuatorDisk
string FindActuatorDisk(int disk_index)
PARM_FRACTION_TYPE
@ PARM_FRACTION_TYPE
Definition: openvsp_as.h:1696
NO_FILE_TYPE
@ NO_FILE_TYPE
Definition: openvsp_as.h:1255
GetVarPresetParmIDs
string[] GetVarPresetParmIDs()
PRES_UNIT_ATM
@ PRES_UNIT_ATM
Definition: openvsp_as.h:1744
LEN_FT
@ LEN_FT
Definition: openvsp_as.h:1668
CFD_FAR_MAX_GAP
@ CFD_FAR_MAX_GAP
Definition: openvsp_as.h:1147
VEC_PROJ
@ VEC_PROJ
Definition: openvsp_as.h:1769
DeleteResult
void DeleteResult(const string &in id)
GetNumUnsteadyRotorGroups
int GetNumUnsteadyRotorGroups()
FEA_UNIT_TYPE
FEA_UNIT_TYPE
Definition: openvsp_as.h:1510
GetCompleteCSNameVec
string[] GetCompleteCSNameVec()
PasteXSec
void PasteXSec(const string &in geom_id, int index)
VSPAERO_PANEL_TRI_TYPE
@ VSPAERO_PANEL_TRI_TYPE
Definition: openvsp_as.h:1273
SnapParm
double SnapParm(const string &in parm_id, double target_min_dist, bool inc_flag, int set)
GetParmVal
double GetParmVal(const string &in parm_id)
CutCustomXSec
void CutCustomXSec(const string &in xsec_surf_id, int index)
PromoteCSTLower
void PromoteCSTLower(const string &in xsec_id)
InsertXSec
void InsertXSec(const string &in geom_id, int index, int type)
FEA_CROSS_SECT_TYPE
FEA_CROSS_SECT_TYPE
Definition: openvsp_as.h:1421
SET_TYPE
SET_TYPE
Definition: openvsp_as.h:1868
VIEW_REAR
@ VIEW_REAR
Definition: openvsp_as.h:2023
FEA_SLICE
@ FEA_SLICE
Definition: openvsp_as.h:1468
ReadBORFileAirfoil
void ReadBORFileAirfoil(const string &in bor_id, const string &in file_name)
ExecAnalysis
string ExecAnalysis(const string &in analysis)
VSP_INVALID_VARPRESET_GROUPNAME
@ VSP_INVALID_VARPRESET_GROUPNAME
Definition: openvsp_as.h:1364
ClearXSecSurfs
void ClearXSecSurfs()
XSEC_TYPE
XSEC_TYPE
Definition: openvsp_as.h:2251
CloneSurf
void CloneSurf(int index, Matrix4d &in mat)
FF_B_JENKINSON_FUSE
@ FF_B_JENKINSON_FUSE
Definition: openvsp_as.h:1532
SHARP_END_CAP
@ SHARP_END_CAP
Definition: openvsp_as.h:1127
AIRFOIL_EXPORT_TYPE
AIRFOIL_EXPORT_TYPE
Definition: openvsp_as.h:1043
GetAirfoilCoordinates
vec3d[] GetAirfoilCoordinates(const string &in geom_id, const double &in foilsurf_u)
DeleteVarPresetSet
bool DeleteVarPresetSet(const string &in group_name, const string &in setting_name)
GetNumAnalysisInputData
int GetNumAnalysisInputData(const string &in analysis, const string &in name)
VSP_INVALID_INPUT_VAL
@ VSP_INVALID_INPUT_VAL
Definition: openvsp_as.h:1367
Matrix4d::buildXForm
void buildXForm(const vec3d &in pos, const vec3d &in rot, const vec3d &in cent_rot)
NUM_WSECT_DRIVER
@ NUM_WSECT_DRIVER
Definition: openvsp_as.h:2151
GetUnsteadyGroupSurfIndexes
int[] GetUnsteadyGroupSurfIndexes(int group_index)
VSP_AMBIGUOUS_SUBSURF
@ VSP_AMBIGUOUS_SUBSURF
Definition: openvsp_as.h:1362
PRES_UNIT_BA
@ PRES_UNIT_BA
Definition: openvsp_as.h:1736
ATMOS_TYPE_HERRINGTON_1966
@ ATMOS_TYPE_HERRINGTON_1966
Definition: openvsp_as.h:1066
signed_angle
double signed_angle(const vec3d &in a, const vec3d &in b, const vec3d &in ref)
VSP_CANT_SET_NOT_EQ_PARM
@ VSP_CANT_SET_NOT_EQ_PARM
Definition: openvsp_as.h:1361
NUM_PROJ_DIR_OPTIONS
@ NUM_PROJ_DIR_OPTIONS
Definition: openvsp_as.h:1770
FindContainerGroupNames
string[] FindContainerGroupNames(const string &in parm_container_id)
CF_TURB_POWER_LAW_BLASIUS
@ CF_TURB_POWER_LAW_BLASIUS
Definition: openvsp_as.h:1221
AddFeaMaterial
string AddFeaMaterial()
XSEC_STACK
@ XSEC_STACK
Definition: openvsp_as.h:2254
vec3d::x
double x() const
V_UNIT_KM_HR
@ V_UNIT_KM_HR
Definition: openvsp_as.h:1982
PRES_UNIT_PSF
@ PRES_UNIT_PSF
Definition: openvsp_as.h:1734
VSP_CANT_FIND_TYPE
@ VSP_CANT_FIND_TYPE
Definition: openvsp_as.h:1350
IMPORT_P3D_WIRE
@ IMPORT_P3D_WIRE
Definition: openvsp_as.h:1630
EXPORT_IGES
@ EXPORT_IGES
Definition: openvsp_as.h:1404
GetSetFlag
bool GetSetFlag(const string &in geom_id, int set_index)
ListAnalysis
string[] ListAnalysis()
FEA_STEP_FILE_NAME
@ FEA_STEP_FILE_NAME
Definition: openvsp_as.h:1447
MASS_UNIT_KG
@ MASS_UNIT_KG
Definition: openvsp_as.h:1680
CFD_OBJ_FILE_NAME
@ CFD_OBJ_FILE_NAME
Definition: openvsp_as.h:1172
CFD_FAR_WIDTH
@ CFD_FAR_WIDTH
Definition: openvsp_as.h:1151
NUM_PROJ_BNDY_OPTIONS
@ NUM_PROJ_BNDY_OPTIONS
Definition: openvsp_as.h:1756
ComputeBORXSecTan
vec3d ComputeBORXSecTan(const string &in bor_id, double fract)
GetAllRulers
string[] GetAllRulers()
GetParmName
string GetParmName(const string &in parm_id)
PROP_SKEW
@ PROP_SKEW
Definition: openvsp_as.h:1804
IMPORT_TYPE
IMPORT_TYPE
Definition: openvsp_as.h:1620
PromoteBORCSTLower
void PromoteBORCSTLower(const string &in bor_id)
GetNumDesignVars
int GetNumDesignVars()
STABILITY_R_ANALYSIS
@ STABILITY_R_ANALYSIS
Definition: openvsp_as.h:2090
STEP_SHELL
@ STEP_SHELL
Definition: openvsp_as.h:1883
XS_WEDGE
@ XS_WEDGE
Definition: openvsp_as.h:2198
GetSubSurf
string GetSubSurf(const string &in geom_id, int index)
AddXSecSurf
string AddXSecSurf()
SELIG_AF_EXPORT
@ SELIG_AF_EXPORT
Definition: openvsp_as.h:1045
EDGE_END_CAP
@ EDGE_END_CAP
Definition: openvsp_as.h:1126
GetUnsteadyGroupCompIDs
string[] GetUnsteadyGroupCompIDs(int group_index)
CFD_OBJ_TYPE
@ CFD_OBJ_TYPE
Definition: openvsp_as.h:1265
FindParm
string FindParm(const string &in parm_container_id, const string &in parm_name, const string &in group_name)
NUM_END_CAP_OPTIONS
@ NUM_END_CAP_OPTIONS
Definition: openvsp_as.h:1128
CompVecPnt01
vec3d[] CompVecPnt01(const string &in geom_id, const int &in surf_indx, double[]@ us, double[]@ ws)
MALE
@ MALE
Definition: openvsp_as.h:1612
FF_W_WILLIAMS
@ FF_W_WILLIAMS
Definition: openvsp_as.h:1548
IMPORT_XSEC_MESH
@ IMPORT_XSEC_MESH
Definition: openvsp_as.h:1625
FEA_SLICE_ARRAY
@ FEA_SLICE_ARRAY
Definition: openvsp_as.h:1474
CopyPasteSet
void CopyPasteSet(int copyIndex, int pasteIndex)
GetLowerCSTCoefs
double[] GetLowerCSTCoefs(const string &in xsec_id)
GetCustomParm
string GetCustomParm(int index)
SS_ELLIPSE
@ SS_ELLIPSE
Definition: openvsp_as.h:1927
DemoteBORCSTUpper
void DemoteBORCSTUpper(const string &in bor_id)
GetFeaStructName
string GetFeaStructName(const string &in geom_id, int fea_struct_ind)
VSPAERO_VSPGEOM_TYPE
@ VSPAERO_VSPGEOM_TYPE
Definition: openvsp_as.h:1279
PrintResults
void PrintResults(const string &in id)
STEP_BREP
@ STEP_BREP
Definition: openvsp_as.h:1884
SUBSURF_INCLUDE
SUBSURF_INCLUDE
Definition: openvsp_as.h:1891
GetXSecParmIDs
string[] GetXSecParmIDs(const string &in xsec_id)
XSEC_WIDTH_SHIFT
XSEC_WIDTH_SHIFT
Definition: openvsp_as.h:2265
X_PROJ
@ X_PROJ
Definition: openvsp_as.h:1765
GetGeomTypeName
string GetGeomTypeName(const string &in geom_id)
GetFeaSubSurfIDVec
string[] GetFeaSubSurfIDVec(const string &in fea_struct_id)
V_UNIT_KEAS
@ V_UNIT_KEAS
Definition: openvsp_as.h:1983
ComputeDegenGeom
void ComputeDegenGeom(int set, int file_type)
EXCRESCENCE_CD
@ EXCRESCENCE_CD
Definition: openvsp_as.h:1378
CompVecCurvature01
void CompVecCurvature01(const string &in geom_id, const int &in surf_indx, double[]@ us, double[]@ ws, double[]@ k1s, double[]@ k2s, double[]@ kas, double[]@ kgs)
SET_NOT_SHOWN
@ SET_NOT_SHOWN
Definition: openvsp_as.h:1873
FF_B_MANUAL
@ FF_B_MANUAL
Definition: openvsp_as.h:1525
OUTSIDE
@ OUTSIDE
Definition: openvsp_as.h:1905
WING_SURF
@ WING_SURF
Definition: openvsp_as.h:2114
GetDoubleResults
double[] GetDoubleResults(const string &in id, const string &in name, int index=0)
SetVSPAERORefWingID
string SetVSPAERORefWingID(const string &in geom_id)
XY_ABS
@ XY_ABS
Definition: openvsp_as.h:1500
VSPAERO_NOISE_TYPE
VSPAERO_NOISE_TYPE
Definition: openvsp_as.h:2052
GetEditXSecFixedUVec
bool[] GetEditXSecFixedUVec(const string &in xsec_id)
CFD_SRF_TYPE
@ CFD_SRF_TYPE
Definition: openvsp_as.h:1269
ComputeMinClearanceDistance
double ComputeMinClearanceDistance(const string &in geom_id, int set)
FEA_RIB
@ FEA_RIB
Definition: openvsp_as.h:1469
FEA_XSEC_RECT
@ FEA_XSEC_RECT
Definition: openvsp_as.h:1427
SUBSURF_INOUT
SUBSURF_INOUT
Definition: openvsp_as.h:1902
VSP_INVALID_ID
@ VSP_INVALID_ID
Definition: openvsp_as.h:1360
SetFeaMeshVal
void SetFeaMeshVal(const string &in geom_id, int fea_struct_ind, int type, double val)
LEN_IN
@ LEN_IN
Definition: openvsp_as.h:1667
PATCH_NUM_TYPES
@ PATCH_NUM_TYPES
Definition: openvsp_as.h:1712
WAVE_DRAG_TXT_TYPE
@ WAVE_DRAG_TXT_TYPE
Definition: openvsp_as.h:1272
CheckClearTriggerEvent
bool CheckClearTriggerEvent(int gui_id)
EXPORT_NASCART
@ EXPORT_NASCART
Definition: openvsp_as.h:1394
PCurveGetTVec
double[] PCurveGetTVec(const string &in geom_id, const int &in pcurveid)
GetAvailableCSNameVec
string[] GetAvailableCSNameVec(int CSGroupIndex)
PRES_UNITS
PRES_UNITS
Definition: openvsp_as.h:1732
PARM_BOOL_TYPE
@ PARM_BOOL_TYPE
Definition: openvsp_as.h:1695
SYM_ROT_Z
@ SYM_ROT_Z
Definition: openvsp_as.h:1944
VSP_INVALID_XSEC_ID
@ VSP_INVALID_XSEC_ID
Definition: openvsp_as.h:1359
CFD_DAT_FILE_NAME
@ CFD_DAT_FILE_NAME
Definition: openvsp_as.h:1173
FindLatestResultsID
string FindLatestResultsID(const string &in name)
ATTACH_TRANS_COMP
@ ATTACH_TRANS_COMP
Definition: openvsp_as.h:1091
SUBSURF_LINE_TYPE
SUBSURF_LINE_TYPE
Definition: openvsp_as.h:1913
FEA_STL_FILE_NAME
@ FEA_STL_FILE_NAME
Definition: openvsp_as.h:1441
CopyCustomXSec
void CopyCustomXSec(const string &in xsec_surf_id, int index)
VSPAERO_ANALYSIS_METHOD
VSPAERO_ANALYSIS_METHOD
Definition: openvsp_as.h:2031
NO_NORMAL
@ NO_NORMAL
Definition: openvsp_as.h:1485
NONE
@ NONE
Definition: openvsp_as.h:1906
Matrix4d::translatef
void translatef(const double &in x, const double &in y, const double &in z)
VSP_CANT_FIND_PARM
@ VSP_CANT_FIND_PARM
Definition: openvsp_as.h:1351
DelRuler
void DelRuler(const string &in id)
CFD_LIMIT_GROWTH_FLAG
@ CFD_LIMIT_GROWTH_FLAG
Definition: openvsp_as.h:1142
COMPONENT_REF
@ COMPONENT_REF
Definition: openvsp_as.h:1820
CFD_NUM_CIRCLE_SEGS
@ CFD_NUM_CIRCLE_SEGS
Definition: openvsp_as.h:1140
GetXSec
string GetXSec(const string &in xsec_surf_id, int xsec_index)
GetNumUnsteadyGroups
int GetNumUnsteadyGroups()
IMPORT_STL
@ IMPORT_STL
Definition: openvsp_as.h:1622
CF_TURB_EQN
CF_TURB_EQN
Definition: openvsp_as.h:1213
VSPAERO_NOISE_UNIT
VSPAERO_NOISE_UNIT
Definition: openvsp_as.h:2063
DESIGN_CL
@ DESIGN_CL
Definition: openvsp_as.h:1114
CFD_TKEY_FILE_NAME
@ CFD_TKEY_FILE_NAME
Definition: openvsp_as.h:1177
EXPORT_PLOT3D
@ EXPORT_PLOT3D
Definition: openvsp_as.h:1403
TransformSurf
void TransformSurf(int index, Matrix4d &in mat)
COLLISION_INTERSECT_NO_SOLUTION
@ COLLISION_INTERSECT_NO_SOLUTION
Definition: openvsp_as.h:1245
CompCurvature01
void CompCurvature01(const string &in geom_id, const int &in surf_indx, const double &in u, const double &in w, double &out k1, double &out k2, double &out ka, double &out kg)
CutGeomToClipboard
void CutGeomToClipboard(const string &in geom_id)
GetResultsName
string GetResultsName(const string &in results_id)
GetStringResults
string[] GetStringResults(const string &in id, const string &in name, int index=0)
ImportFile
string ImportFile(const string &in file_name, int file_type, const string &in parent)
vec3d::operator+
vec3d operator+(const vec3d &in) const
GetFeaStructIndex
int GetFeaStructIndex(const string &in struct_id)
ATTACH_ROT_NONE
@ ATTACH_ROT_NONE
Definition: openvsp_as.h:1079
vec3d::y
double y() const
TE_NORMAL
@ TE_NORMAL
Definition: openvsp_as.h:1487
DELIM_SPACE
@ DELIM_SPACE
Definition: openvsp_as.h:1290
FindContainers
string[] FindContainers()
CF_TURB_ROUGHNESS_SCHLICHTING_AVG
@ CF_TURB_ROUGHNESS_SCHLICHTING_AVG
Definition: openvsp_as.h:1231
SetCustomXSecLoc
void SetCustomXSecLoc(const string &in xsec_id, const vec3d &in loc)
PROP_AXIAL
@ PROP_AXIAL
Definition: openvsp_as.h:1808
EXPORT_STEP
@ EXPORT_STEP
Definition: openvsp_as.h:1402
WriteAtmosphereCSVFile
void WriteAtmosphereCSVFile(const string &in file_name, const int &in atmos_type)
SS_RECTANGLE
@ SS_RECTANGLE
Definition: openvsp_as.h:1926
AddFeaSubSurf
string AddFeaSubSurf(const string &in geom_id, int fea_struct_ind, int type)
DeleteVarPresetParm
void DeleteVarPresetParm(const string &in parm_ID)
EXPORT_SVG
@ EXPORT_SVG
Definition: openvsp_as.h:1408
DO_NOT_USE_CF_TURB_SCHLICHTING_INCOMPRESSIBLE
@ DO_NOT_USE_CF_TURB_SCHLICHTING_INCOMPRESSIBLE
Definition: openvsp_as.h:1226
CFD_FAR_MAX_EDGE_LEN
@ CFD_FAR_MAX_EDGE_LEN
Definition: openvsp_as.h:1146
EXPORT_FACET
@ EXPORT_FACET
Definition: openvsp_as.h:1407
NORMAL_SURF
@ NORMAL_SURF
Definition: openvsp_as.h:2113
GetAllResultsNames
string[] GetAllResultsNames()
GetNumTotalErrors
int GetNumTotalErrors()
GetNumAnalysis
int GetNumAnalysis()
vec3d::offset_z
void offset_z(double offset)
SetCustomXSecRot
void SetCustomXSecRot(const string &in xsec_id, const vec3d &in rot)
SetPCurve
void SetPCurve(const string &in geom_id, const int &in pcurveid, double[]@ tvec, double[]@ valvec, const int &in newtype)
EXPORT_BEZIER_AIRFOIL
@ EXPORT_BEZIER_AIRFOIL
Definition: openvsp_as.h:1412
GENDER
GENDER
Definition: openvsp_as.h:1610
GetParmGroupName
string GetParmGroupName(const string &in parm_id)
WLINE_SOURCE
@ WLINE_SOURCE
Definition: openvsp_as.h:1195
FF_B_COVERT
@ FF_B_COVERT
Definition: openvsp_as.h:1531
XS_CST_AIRFOIL
@ XS_CST_AIRFOIL
Definition: openvsp_as.h:2201
SetBORXSecPnts
void SetBORXSecPnts(const string &in bor_id, vec3d[]@ pnt_arr)
BLEND_FREE
@ BLEND_FREE
Definition: openvsp_as.h:2126
SetParmVal
double SetParmVal(const string &in parm_id, double val)
LEN_YD
@ LEN_YD
Definition: openvsp_as.h:1669
NO_BOUNDARY
@ NO_BOUNDARY
Definition: openvsp_as.h:1753
CLOSE_NUM_TYPES
@ CLOSE_NUM_TYPES
Definition: openvsp_as.h:2178
SetParmValUpdate
double SetParmValUpdate(const string &in parm_id, double val)
CFD_TKEY_TYPE
@ CFD_TKEY_TYPE
Definition: openvsp_as.h:1270
CFD_POLY_FILE_NAME
@ CFD_POLY_FILE_NAME
Definition: openvsp_as.h:1170
SetParmUpperLimit
void SetParmUpperLimit(const string &in parm_id, double val)
ATTACH_TRANS_UV
@ ATTACH_TRANS_UV
Definition: openvsp_as.h:1092
WriteWingFFCSVFile
void WriteWingFFCSVFile(const string &in file_name)
SYM_ROT_Y
@ SYM_ROT_Y
Definition: openvsp_as.h:1943
FEA_PART_ELEMENT_TYPE
FEA_PART_ELEMENT_TYPE
Definition: openvsp_as.h:1455
FF_W_EDET_ADV
@ FF_W_EDET_ADV
Definition: openvsp_as.h:1545
CAP_TYPE
CAP_TYPE
Definition: openvsp_as.h:1121
GetDoubleAnalysisInput
double[] GetDoubleAnalysisInput(const string &in analysis, const string &in name, int index=0)
NUM_XSEC_DRIVER
@ NUM_XSEC_DRIVER
Definition: openvsp_as.h:2220
ProjPnt01Guess
double ProjPnt01Guess(const string &in geom_id, const int &in surf_indx, const vec3d &in pt, const double &in u0, const double &in w0, double &out u, double &out w)
DeleteGeom
void DeleteGeom(const string &in geom_id)
ATMOS_TYPE_MANUAL_P_T
@ ATMOS_TYPE_MANUAL_P_T
Definition: openvsp_as.h:1068
GetAirfoilLowerPnts
vec3d[] GetAirfoilLowerPnts(const string &in xsec_id)
SetSetName
void SetSetName(int index, const string &in name)
INTERSECT_NUM_FILE_NAMES
@ INTERSECT_NUM_FILE_NAMES
Definition: openvsp_as.h:1655
AddSubSurf
string AddSubSurf(const string &in geom_id, int type, int surfindex=0)
GDEV_ADD_CHOICE_ITEM
@ GDEV_ADD_CHOICE_ITEM
Definition: openvsp_as.h:1590
CLMAX_OFF
@ CLMAX_OFF
Definition: openvsp_as.h:2043
FEA_XSEC_GENERAL
@ FEA_XSEC_GENERAL
Definition: openvsp_as.h:1423
STABILITY_OFF
@ STABILITY_OFF
Definition: openvsp_as.h:2086
PCurveGetType
int PCurveGetType(const string &in geom_id, const int &in pcurveid)
AxisProjVecPnt01Guess
void AxisProjVecPnt01Guess(const string &in geom_id, int &in surf_indx, const int &in iaxis, vec3d[]@ pts, double[]@ u0s, double[]@ w0s, double[]@ us, double[]@ ws, vec3d[]@ ps_out, double[]@ ds)
GetXSecSurfGlobalXForm
Matrix4d GetXSecSurfGlobalXForm(const string &in xsec_surf_id)
PANEL
@ PANEL
Definition: openvsp_as.h:2034
ReadApplyXDDMFile
void ReadApplyXDDMFile(const string &in file_name)
XS_SHIFT_MID
@ XS_SHIFT_MID
Definition: openvsp_as.h:2268
TRIM_X
@ TRIM_X
Definition: openvsp_as.h:2242
CFD_MESH_EXPORT_TYPE
CFD_MESH_EXPORT_TYPE
Definition: openvsp_as.h:1167
CFD_MAX_GAP
@ CFD_MAX_GAP
Definition: openvsp_as.h:1139
PRES_UNIT_MMH20
@ PRES_UNIT_MMH20
Definition: openvsp_as.h:1742
RHO_UNIT_LBFSEC2_IN4
@ RHO_UNIT_LBFSEC2_IN4
Definition: openvsp_as.h:1861
dist
double dist(const vec3d &in a, const vec3d &in b)
vec3d::operator[]
double & operator[](int) const
V_UNIT_KTAS
@ V_UNIT_KTAS
Definition: openvsp_as.h:1984
VSP_INVALID_TYPE
@ VSP_INVALID_TYPE
Definition: openvsp_as.h:1349
PROP_SWEEP
@ PROP_SWEEP
Definition: openvsp_as.h:1805
MASS_UNIT_SLUG
@ MASS_UNIT_SLUG
Definition: openvsp_as.h:1683
EditXSecSplit01
int EditXSecSplit01(const string &in xsec_id, const double &in u)
EditXSecInitShape
void EditXSecInitShape(const string &in xsec_id)
CF_LAM_BLASIUS_W_HEAT
@ CF_LAM_BLASIUS_W_HEAT
Definition: openvsp_as.h:1206
GetGeomTypes
string[] GetGeomTypes()
Y_DIR
@ Y_DIR
Definition: openvsp_as.h:1312
GDEV_RADIO_BUTTON
@ GDEV_RADIO_BUTTON
Definition: openvsp_as.h:1584
FEA_NKEY_FILE_NAME
@ FEA_NKEY_FILE_NAME
Definition: openvsp_as.h:1439
XS_FIVE_DIGIT_MOD
@ XS_FIVE_DIGIT_MOD
Definition: openvsp_as.h:2205
SWEEP_WSECT_DRIVER
@ SWEEP_WSECT_DRIVER
Definition: openvsp_as.h:2152
VSP_SURF_TYPE
VSP_SURF_TYPE
Definition: openvsp_as.h:2111
ANG_UNITS
ANG_UNITS
Definition: openvsp_as.h:1053
DOUBLE_MATRIX_DATA
@ DOUBLE_MATRIX_DATA
Definition: openvsp_as.h:1835
GetFeaPartType
int GetFeaPartType(const string &in part_id)
EXPORT_PMARC
@ EXPORT_PMARC
Definition: openvsp_as.h:1409
SetEditXSecPnts
void SetEditXSecPnts(const string &in xsec_id, double[]@ u_vec, vec3d[]@ control_pts)
PromoteCSTUpper
void PromoteCSTUpper(const string &in xsec_id)
Matrix4d::affineInverse
void affineInverse()
TEMP_UNITS
TEMP_UNITS
Definition: openvsp_as.h:1965
MESH_INDEX_AND_SLICE_TRI
@ MESH_INDEX_AND_SLICE_TRI
Definition: openvsp_as.h:1847
vec3d::scale_z
void scale_z(double scale)
PROP_TWIST
@ PROP_TWIST
Definition: openvsp_as.h:1802
GetEditXSecCtrlVec
vec3d[] GetEditXSecCtrlVec(const string &in xsec_id, const bool non_dimensional=true)
VSP_INDEX_OUT_RANGE
@ VSP_INDEX_OUT_RANGE
Definition: openvsp_as.h:1358
CONST_W
@ CONST_W
Definition: openvsp_as.h:1916
GetVSPAEROPath
string GetVSPAEROPath()
BLEND_MATCH_LE_ANGLES
@ BLEND_MATCH_LE_ANGLES
Definition: openvsp_as.h:2133
SetAirfoilPnts
void SetAirfoilPnts(const string &in xsec_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec)
NOISE_FOOTPRINT
@ NOISE_FOOTPRINT
Definition: openvsp_as.h:2055
vec3d
A class for representing 3D vectors.
Definition: openvsp_as.h:345
CFD_KEY_FILE_NAME
@ CFD_KEY_FILE_NAME
Definition: openvsp_as.h:1174
ReadBORFileXSec
vec3d[] ReadBORFileXSec(const string &in bor_id, const string &in file_name)
Matrix4d::scale
void scale(const double &in scale)
GetParmType
int GetParmType(const string &in parm_id)
TAPER_WSECT_DRIVER
@ TAPER_WSECT_DRIVER
Definition: openvsp_as.h:2146
CFD_GMSH_FILE_NAME
@ CFD_GMSH_FILE_NAME
Definition: openvsp_as.h:1175
VSPAERO_PRECONDITION
VSPAERO_PRECONDITION
Definition: openvsp_as.h:2073
EDIT_XSEC_CIRCLE
@ EDIT_XSEC_CIRCLE
Definition: openvsp_as.h:1639
FEA_SLICE_TYPE
FEA_SLICE_TYPE
Definition: openvsp_as.h:1495
FEA_SHELL
@ FEA_SHELL
Definition: openvsp_as.h:1457
EXCRESCENCE_PERCENT_GEOM
@ EXCRESCENCE_PERCENT_GEOM
Definition: openvsp_as.h:1379
AddFeaPart
string AddFeaPart(const string &in geom_id, int fea_struct_ind, int type)
GetAllProbes
string[] GetAllProbes()
SYM_YZ
@ SYM_YZ
Definition: openvsp_as.h:1941
VSPRenew
void VSPRenew()
DELIM_NONE
@ DELIM_NONE
Definition: openvsp_as.h:1291
BOR_MODE
BOR_MODE
Definition: openvsp_as.h:1099
GEOM_BOUNDARY
@ GEOM_BOUNDARY
Definition: openvsp_as.h:1755
SetFeaPartPerpendicularSparID
void SetFeaPartPerpendicularSparID(const string &in part_id, const string &in perpendicular_spar_id)
GDEV_GROUP
@ GDEV_GROUP
Definition: openvsp_as.h:1577
SetXSecSurfGlobalXForm
void SetXSecSurfGlobalXForm(const string &in xsec_surf_id, const Matrix4d &in mat)
GDEV_SLIDER_INPUT
@ GDEV_SLIDER_INPUT
Definition: openvsp_as.h:1591
GetSubSurfType
int GetSubSurfType(const string &in sub_id)
GetDesignVarType
int GetDesignVarType(int index)
PRES_UNIT_MB
@ PRES_UNIT_MB
Definition: openvsp_as.h:1743
SET_BOUNDARY
@ SET_BOUNDARY
Definition: openvsp_as.h:1754
VSP_INVALID_CF_EQN
@ VSP_INVALID_CF_EQN
Definition: openvsp_as.h:1368
ROT_270
@ ROT_270
Definition: openvsp_as.h:2009
GDEV_TOGGLE_BUTTON
@ GDEV_TOGGLE_BUTTON
Definition: openvsp_as.h:1585
VIEW_LEFT
@ VIEW_LEFT
Definition: openvsp_as.h:2018
WING_BLEND
WING_BLEND
Definition: openvsp_as.h:2124
NumFeaSubSurfs
int NumFeaSubSurfs(const string &in fea_struct_id)
DeleteAllDesignVars
void DeleteAllDesignVars()
PATCH_COPY
@ PATCH_COPY
Definition: openvsp_as.h:1710
FitBORAfCST
void FitBORAfCST(const string &in bor_id, int deg)
FF_B_SCHEMENSKY_NACELLE
@ FF_B_SCHEMENSKY_NACELLE
Definition: openvsp_as.h:1527
GetParmLowerLimit
double GetParmLowerLimit(const string &in parm_id)
string
AngelScript ScriptExtension for representing the C++ std::string.
Definition: openvsp_as.h:192
ClearAllCustomDefaultSources
void ClearAllCustomDefaultSources()
GetXSecWidth
double GetXSecWidth(const string &in xsec_id)
SkinXSecSurf
void SkinXSecSurf(bool closed_flag=false)
SetComputationFileName
void SetComputationFileName(int file_type, const string &in file_name)
RotateSet
void RotateSet(int set_index, double x_rot_deg, double y_rot_deg, double z_rot_deg)
GetNumActuatorDisks
int GetNumActuatorDisks()
GetVarPresetGroupNames
string[] GetVarPresetGroupNames()
GDEV_OUTPUT
@ GDEV_OUTPUT
Definition: openvsp_as.h:1580
Matrix4d::loadIdentity
void loadIdentity()
SetBORAirfoilPnts
void SetBORAirfoilPnts(const string &in bor_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec)
ATMOS_TYPE
ATMOS_TYPE
Definition: openvsp_as.h:1063
Matrix4d::loadXYRef
void loadXYRef()
RHO_UNIT_TONNE_MM3
@ RHO_UNIT_TONNE_MM3
Definition: openvsp_as.h:1859
ConvertXSecToEdit
void ConvertXSecToEdit(const string &in geom_id, const int &in indx=0)
TRIM_NUM_TYPES
@ TRIM_NUM_TYPES
Definition: openvsp_as.h:2244
GetDesignVar
string GetDesignVar(int index)
TEMP_UNIT_F
@ TEMP_UNIT_F
Definition: openvsp_as.h:1969
EXCRESCENCE_COUNT
@ EXCRESCENCE_COUNT
Definition: openvsp_as.h:1377
SYM_PLANAR_TYPES
@ SYM_PLANAR_TYPES
Definition: openvsp_as.h:1945
PARM_INT_TYPE
@ PARM_INT_TYPE
Definition: openvsp_as.h:1694
DISPLAY_DEGEN_SURF
@ DISPLAY_DEGEN_SURF
Definition: openvsp_as.h:1323
file
AngelScript ScriptExtension for representing the C++ std::FILE.
Definition: openvsp_as.h:292
FindContainer
string FindContainer(const string &in name, int index)
SetSetFlag
void SetSetFlag(const string &in geom_id, int set_index, bool flag)
SetParmDescript
void SetParmDescript(const string &in parm_id, const string &in desc)
GetNumData
int GetNumData(const string &in results_id, const string &in data_name)
CF_TURB_POWER_LAW_PRANDTL_HIGH_RE
@ CF_TURB_POWER_LAW_PRANDTL_HIGH_RE
Definition: openvsp_as.h:1224
Matrix4d::rotate
void rotate(const double &in ang, const vec3d &in axis)
angle
double angle(const vec3d &in a, const vec3d &in b)
COMP_GEOM_CSV_TYPE
@ COMP_GEOM_CSV_TYPE
Definition: openvsp_as.h:1257
XS_ONE_SIX_SERIES
@ XS_ONE_SIX_SERIES
Definition: openvsp_as.h:2206
INTERSECT_SRF_FILE_NAME
@ INTERSECT_SRF_FILE_NAME
Definition: openvsp_as.h:1650
GetUpperCSTCoefs
double[] GetUpperCSTCoefs(const string &in xsec_id)
XS_FOUR_SERIES
@ XS_FOUR_SERIES
Definition: openvsp_as.h:2195
NOISE_ENGLISH
@ NOISE_ENGLISH
Definition: openvsp_as.h:2066
CFD_POLY_TYPE
@ CFD_POLY_TYPE
Definition: openvsp_as.h:1263
ExportFile
string ExportFile(const string &in file_name, int thick_set, int file_type, int thin_set=- 1)
AppendCustomXSec
string AppendCustomXSec(const string &in xsec_surf_id, int type)
GDEV_TOGGLE_RADIO_GROUP
@ GDEV_TOGGLE_RADIO_GROUP
Definition: openvsp_as.h:1586
CFD_MIN_EDGE_LEN
@ CFD_MIN_EDGE_LEN
Definition: openvsp_as.h:1137
GetCustomXSecRot
vec3d GetCustomXSecRot(const string &in xsec_id)
CompPnt01
vec3d CompPnt01(const string &in geom_id, const int &in surf_indx, const double &in u, const double &in w)
CFD_FAR_LOC_Z
@ CFD_FAR_LOC_Z
Definition: openvsp_as.h:1159
GetProxyVec3dArray
vec3d[] GetProxyVec3dArray()
Z_PROJ
@ Z_PROJ
Definition: openvsp_as.h:1767
AddDesignVar
void AddDesignVar(const string &in parm_id, int type)
ClearVSPModel
void ClearVSPModel()
GDEV
GDEV
Definition: openvsp_as.h:1573
TEMP_UNIT_C
@ TEMP_UNIT_C
Definition: openvsp_as.h:1968
TranslateSet
void TranslateSet(int set_index, const vec3d &in translation_vec)
SS_LINE
@ SS_LINE
Definition: openvsp_as.h:1925
LINEAR
@ LINEAR
Definition: openvsp_as.h:1721
ReadVSPFile
void ReadVSPFile(const string &in file_name)
INT_DATA
@ INT_DATA
Definition: openvsp_as.h:1831
GetHersheyBarDragDist
vec3d[] GetHersheyBarDragDist(const int &in npts, const double &in alpha, const double &in Vinf, const double &in span, bool full_span_flag=false)
NUM_SURF_TYPES
@ NUM_SURF_TYPES
Definition: openvsp_as.h:2117
CFD_DAT_TYPE
@ CFD_DAT_TYPE
Definition: openvsp_as.h:1266
GetSetName
string GetSetName(int index)
GDEV_SLIDER
@ GDEV_SLIDER
Definition: openvsp_as.h:1581
SPINE_NORMAL
@ SPINE_NORMAL
Definition: openvsp_as.h:1503
SetParmValLimits
double SetParmValLimits(const string &in parm_id, double val, double lower_limit, double upper_limit)
DeleteAllResults
void DeleteAllResults()
APPROX_CEDIT
@ APPROX_CEDIT
Definition: openvsp_as.h:1724
ChangeXSecShape
void ChangeXSecShape(const string &in xsec_surf_id, int xsec_index, int type)
GetVSPAERORefWingID
string GetVSPAERORefWingID()
SetViewAxis
void SetViewAxis(bool vaxis)
CFD_CURV_TYPE
@ CFD_CURV_TYPE
Definition: openvsp_as.h:1276
PrintOnErrors
void PrintOnErrors()
STABILITY_DEFAULT
@ STABILITY_DEFAULT
Definition: openvsp_as.h:2087
CFD_GROWTH_RATIO
@ CFD_GROWTH_RATIO
Definition: openvsp_as.h:1141
SPAN_WSECT_DRIVER
@ SPAN_WSECT_DRIVER
Definition: openvsp_as.h:2144
SYM_NONE
@ SYM_NONE
Definition: openvsp_as.h:1955
array
AngelScript ScriptExtension for representing the C++ std::vector.
Definition: openvsp_as.h:249
SetDoubleAnalysisInput
void SetDoubleAnalysisInput(const string &in analysis, const string &in name, double[]@ indata_arr, int index=0)
PROP_DISK
@ PROP_DISK
Definition: openvsp_as.h:1792
AddAllToVSPAEROControlSurfaceGroup
void AddAllToVSPAEROControlSurfaceGroup(int CSGroupIndex)
CFD_FAR_NUM_CIRCLE_SEGS
@ CFD_FAR_NUM_CIRCLE_SEGS
Definition: openvsp_as.h:1148
INSIDE
@ INSIDE
Definition: openvsp_as.h:1904
XZ_BODY
@ XZ_BODY
Definition: openvsp_as.h:1499
SS_INC_ZERO_DRAG
@ SS_INC_ZERO_DRAG
Definition: openvsp_as.h:1895
SetGeomName
void SetGeomName(const string &in geom_id, const string &in name)
WriteTestResults
void WriteTestResults()
ComputeBORXSecPnt
vec3d ComputeBORXSecPnt(const string &in bor_id, double fract)
FF_W_JENKINSON_TAIL
@ FF_W_JENKINSON_TAIL
Definition: openvsp_as.h:1555
RHO_UNITS
RHO_UNITS
Definition: openvsp_as.h:1854
vec3d::rotate_y
void rotate_y(double cos_alpha, double sin_alpha)
DELIM_NUM_TYPES
@ DELIM_NUM_TYPES
Definition: openvsp_as.h:1292
TRIM_NONE
@ TRIM_NONE
Definition: openvsp_as.h:2241
XDDM_CONST
@ XDDM_CONST
Definition: openvsp_as.h:2164
ResetXSecSkinParms
void ResetXSecSkinParms(const string &in xsec_id)
CLMAX_2D
@ CLMAX_2D
Definition: openvsp_as.h:2044
SwitchVarPreset
void SwitchVarPreset(const string &in group_name, const string &in setting_name)
AddVarPresetGroup
void AddVarPresetGroup(const string &in group_name)
GDEV_INPUT
@ GDEV_INPUT
Definition: openvsp_as.h:1579
CFD_CURV_FILE_NAME
@ CFD_CURV_FILE_NAME
Definition: openvsp_as.h:1179
PasteCustomXSec
void PasteCustomXSec(const string &in xsec_surf_id, int index)
AddDefaultSources
void AddDefaultSources()
GEOM_PROJ
@ GEOM_PROJ
Definition: openvsp_as.h:1768
SLICE_TXT_TYPE
@ SLICE_TXT_TYPE
Definition: openvsp_as.h:1258
VSP_SURF_CFD_TYPE
VSP_SURF_CFD_TYPE
Definition: openvsp_as.h:2097
SWEEPLOC_WSECT_DRIVER
@ SWEEPLOC_WSECT_DRIVER
Definition: openvsp_as.h:2153
ProjPnt01
double ProjPnt01(const string &in geom_id, const int &in surf_indx, const vec3d &in pt, double &out u, double &out w)
vec3d::offset_y
void offset_y(double offset)
FF_W_EQN
FF_W_EQN
Definition: openvsp_as.h:1541
SET_TARGET
@ SET_TARGET
Definition: openvsp_as.h:1779
CF_TURB_SCHULTZ_GRUNOW_SCHOENHERR
@ CF_TURB_SCHULTZ_GRUNOW_SCHOENHERR
Definition: openvsp_as.h:1229
BOX_SOURCE
@ BOX_SOURCE
Definition: openvsp_as.h:1193
NumFeaParts
int NumFeaParts(const string &in fea_struct_id)
FEA_SPAR
@ FEA_SPAR
Definition: openvsp_as.h:1470
Update
void Update(bool update_managers=true)
GDEV_COUNTER
@ GDEV_COUNTER
Definition: openvsp_as.h:1588
CompNorm01
vec3d CompNorm01(const string &in geom_id, const int &in surf_indx, const double &in u, const double &in w)
GetFeaStructParentGeomID
string GetFeaStructParentGeomID(const string &in struct_id)
CFD_NEGATIVE
@ CFD_NEGATIVE
Definition: openvsp_as.h:2100
AREA_XSEC_DRIVER
@ AREA_XSEC_DRIVER
Definition: openvsp_as.h:2217
RHO_UNIT_KG_M3
@ RHO_UNIT_KG_M3
Definition: openvsp_as.h:1858
SetShowBorders
void SetShowBorders(bool brdr)
GetXSecSurf
string GetXSecSurf(const string &in geom_id, int index)
Matrix4d::rotateY
void rotateY(const double &in ang)
INTERSECT_EXPORT_TYPE
INTERSECT_EXPORT_TYPE
Definition: openvsp_as.h:1648
DeleteGeomVec
void DeleteGeomVec(string[]@ del_arr)
CF_TURB_SCHLICHTING_COMPRESSIBLE
@ CF_TURB_SCHLICHTING_COMPRESSIBLE
Definition: openvsp_as.h:1225
Y_PROJ
@ Y_PROJ
Definition: openvsp_as.h:1766
RHO_UNIT_LBF_FT3
@ RHO_UNIT_LBF_FT3
Definition: openvsp_as.h:1860
SYM_XZ
@ SYM_XZ
Definition: openvsp_as.h:1940
DO_NOT_USE_CF_TURB_WHITE_CHRISTOPH_COMPRESSIBLE
@ DO_NOT_USE_CF_TURB_WHITE_CHRISTOPH_COMPRESSIBLE
Definition: openvsp_as.h:1230
FF_W_SCHEMENSKY_6_SERIES_AF
@ FF_W_SCHEMENSKY_6_SERIES_AF
Definition: openvsp_as.h:1552
PopLastError
ErrorObj PopLastError()
GetFeaPartName
string GetFeaPartName(const string &in part_id)
GetVSPAEROControlGroupName
string GetVSPAEROControlGroupName(int CSGroupIndex)
CF_TURB_ROUGHNESS_SCHLICHTING_AVG_FLOW_CORRECTION
@ CF_TURB_ROUGHNESS_SCHLICHTING_AVG_FLOW_CORRECTION
Definition: openvsp_as.h:1234
ReadApplyDESFile
void ReadApplyDESFile(const string &in file_name)
AddGeom
string AddGeom(const string &in type, const string &in parent=string())
DRAG_BUILD_CSV_TYPE
@ DRAG_BUILD_CSV_TYPE
Definition: openvsp_as.h:1274
WriteXDDMFile
void WriteXDDMFile(const string &in file_name)
GDEV_END_SAME_LINE
@ GDEV_END_SAME_LINE
Definition: openvsp_as.h:1601
AddProbe
string AddProbe(const string &in geomid, int surfindx, double u, double w, const string &in name)
MASS_LBFSEC2IN
@ MASS_LBFSEC2IN
Definition: openvsp_as.h:1684
FEA_DOME
@ FEA_DOME
Definition: openvsp_as.h:1472
FEA_NASTRAN_FILE_NAME
@ FEA_NASTRAN_FILE_NAME
Definition: openvsp_as.h:1438
DeleteExcrescence
void DeleteExcrescence(const int &in excresName)
ATTACH_TRANS_NONE
@ ATTACH_TRANS_NONE
Definition: openvsp_as.h:1090
SetXSecContinuity
void SetXSecContinuity(const string &in xsec_id, int cx)
CF_TURB_EXPLICIT_FIT_SCHOENHERR
@ CF_TURB_EXPLICIT_FIT_SCHOENHERR
Definition: openvsp_as.h:1217
ROOTC_WSECT_DRIVER
@ ROOTC_WSECT_DRIVER
Definition: openvsp_as.h:2148
any
AngelScript ScriptExtension for representing generic container that can hold any value.
Definition: openvsp_as.h:324
ComputeXSecTan
vec3d ComputeXSecTan(const string &in xsec_id, double fract)
NOISE_SI
@ NOISE_SI
Definition: openvsp_as.h:2065
CFD_FAR_LOC_Y
@ CFD_FAR_LOC_Y
Definition: openvsp_as.h:1158
XS_SIX_SERIES
@ XS_SIX_SERIES
Definition: openvsp_as.h:2196
XSEC_CRV_TYPE
XSEC_CRV_TYPE
Definition: openvsp_as.h:2185
FEA_XSEC_CIRC
@ FEA_XSEC_CIRC
Definition: openvsp_as.h:1424
ApproximateAllPropellerPCurves
void ApproximateAllPropellerPCurves(const string &in geom_id)
CLOSE_SKEWUP
@ CLOSE_SKEWUP
Definition: openvsp_as.h:2175
SetXSecTanAngles
void SetXSecTanAngles(const string &in xsec_id, int side, double top, double right=- 1.0e12, double bottom=- 1.0e12, double left=- 1.0e12)
ERROR_CODE
ERROR_CODE
Definition: openvsp_as.h:1345
ProjVecPnt01
void ProjVecPnt01(const string &in geom_id, const int &in surf_indx, vec3d[]@ pts, double[]@ us, double[]@ ws, double[]@ ds)
RES_GEOM_TYPE
RES_GEOM_TYPE
Definition: openvsp_as.h:1842
AREA_WSECT_DRIVER
@ AREA_WSECT_DRIVER
Definition: openvsp_as.h:2145
NumFeaStructures
int NumFeaStructures()
CFD_MAX_EDGE_LEN
@ CFD_MAX_EDGE_LEN
Definition: openvsp_as.h:1138
GetAirfoilUpperPnts
vec3d[] GetAirfoilUpperPnts(const string &in xsec_id)
ComputeCompGeom
string ComputeCompGeom(int set, bool half_mesh, int file_export_types)
EditVarPresetParm
void EditVarPresetParm(const string &in parm_ID, double parm_val)
DISPLAY_BEZIER
@ DISPLAY_BEZIER
Definition: openvsp_as.h:1322
PROP_RAKE
@ PROP_RAKE
Definition: openvsp_as.h:1803
Print
void Print(const string &in data, bool new_line=true)
PromoteBORCSTUpper
void PromoteBORCSTUpper(const string &in bor_id)
GetVarPresetParmVals
double[] GetVarPresetParmVals()
GetVKTAirfoilCpDist
double[] GetVKTAirfoilCpDist(const double &in alpha, const double &in epsilon, const double &in kappa, const double &in tau, vec3d[]@ xydata)
GetVarPresetSettingNamesWIndex
string[] GetVarPresetSettingNamesWIndex(int group_index)
PD_UNITS_IMPERIAL
@ PD_UNITS_IMPERIAL
Definition: openvsp_as.h:1565
PROP_CLI
@ PROP_CLI
Definition: openvsp_as.h:1807
V_UNIT_FT_S
@ V_UNIT_FT_S
Definition: openvsp_as.h:1979
PRES_UNIT_PA
@ PRES_UNIT_PA
Definition: openvsp_as.h:1737
FF_W_DATCOM
@ FF_W_DATCOM
Definition: openvsp_as.h:1551
PARM_TYPE
PARM_TYPE
Definition: openvsp_as.h:1691
FF_B_JENKINSON_WING_NACELLE
@ FF_B_JENKINSON_WING_NACELLE
Definition: openvsp_as.h:1533
GetFeaStructIDVec
string[] GetFeaStructIDVec()
SetUpperCST
void SetUpperCST(const string &in xsec_id, int deg, double[]@ coeff_arr)
PRECON_MATRIX
@ PRECON_MATRIX
Definition: openvsp_as.h:2075
RHO_UNIT_SLUG_FT3
@ RHO_UNIT_SLUG_FT3
Definition: openvsp_as.h:1856
VEC3D_DATA
@ VEC3D_DATA
Definition: openvsp_as.h:1834
GDEV_PARM_BUTTON
@ GDEV_PARM_BUTTON
Definition: openvsp_as.h:1578
EXPORT_BEM
@ EXPORT_BEM
Definition: openvsp_as.h:1405
GetVec3dAnalysisInput
vec3d[] GetVec3dAnalysisInput(const string &in analysis, const string &in name, int index=0)
PCurveDeletePt
void PCurveDeletePt(const string &in geom_id, const int &in pcurveid, const int &in indx)
COLLISION_OK
@ COLLISION_OK
Definition: openvsp_as.h:1244
ComputeCFDMesh
void ComputeCFDMesh(int set, int file_type)
EXCRES_TYPE
EXCRES_TYPE
Definition: openvsp_as.h:1375
TIPC_WSECT_DRIVER
@ TIPC_WSECT_DRIVER
Definition: openvsp_as.h:2149
XSEC_FUSE
@ XSEC_FUSE
Definition: openvsp_as.h:2253
GetAnalysisInputNames
string[] GetAnalysisInputNames(const string &in analysis)
GDEV_YGAP
@ GDEV_YGAP
Definition: openvsp_as.h:1598
GetGeomParmIDs
string[] GetGeomParmIDs(const string &in geom_id)
GDEV_FORCE_WIDTH
@ GDEV_FORCE_WIDTH
Definition: openvsp_as.h:1602
SetFeaMeshStructIndex
void SetFeaMeshStructIndex(int struct_index)
PATCH_HALFWAY
@ PATCH_HALFWAY
Definition: openvsp_as.h:1711
EXPORT_VORXSEC
@ EXPORT_VORXSEC
Definition: openvsp_as.h:1398
GetParmContainer
string GetParmContainer(const string &in parm_id)
PCurveConvertTo
void PCurveConvertTo(const string &in geom_id, const int &in pcurveid, const int &in newtype)
CF_TURB_POWER_LAW_PRANDTL_MEDIUM_RE
@ CF_TURB_POWER_LAW_PRANDTL_MEDIUM_RE
Definition: openvsp_as.h:1223
ATTACH_TRANS_TYPE
ATTACH_TRANS_TYPE
Definition: openvsp_as.h:1088
BLEND_ANGLES
@ BLEND_ANGLES
Definition: openvsp_as.h:2127
Min
double Min(double x, double y)
CF_TURB_EXPLICIT_FIT_SPALDING
@ CF_TURB_EXPLICIT_FIT_SPALDING
Definition: openvsp_as.h:1215
SetFeaPartName
void SetFeaPartName(const string &in part_id, const string &in name)
XSEC_NUM_TYPES
@ XSEC_NUM_TYPES
Definition: openvsp_as.h:2258
XS_CIRCLE
@ XS_CIRCLE
Definition: openvsp_as.h:2189
ATMOS_TYPE_MANUAL_P_R
@ ATMOS_TYPE_MANUAL_P_R
Definition: openvsp_as.h:1067
MESH_INDEXED_TRI
@ MESH_INDEXED_TRI
Definition: openvsp_as.h:1844
FEA_PART_TYPE
FEA_PART_TYPE
Definition: openvsp_as.h:1466
ChangeBORXSecShape
void ChangeBORXSecShape(const string &in geom_id, int type)
PRES_UNIT_KPA
@ PRES_UNIT_KPA
Definition: openvsp_as.h:1738
GetGeomVSPSurfType
int GetGeomVSPSurfType(const string &in geom_id, int main_surf_ind=0)
PARM_NOTEQ_TYPE
@ PARM_NOTEQ_TYPE
Definition: openvsp_as.h:1698
GetSubSurfIndex
int GetSubSurfIndex(const string &in sub_id)
PATCH_LINE
@ PATCH_LINE
Definition: openvsp_as.h:1709
SetLowerCST
void SetLowerCST(const string &in xsec_id, int deg, double[]@ coeff_arr)
GetBoolParmVal
bool GetBoolParmVal(const string &in parm_id)
vec3d::set_xyz
vec3d & set_xyz(double x, double y, double z)
ComputeXSecPnt
vec3d ComputeXSecPnt(const string &in xsec_id, double fract)
FEMALE
@ FEMALE
Definition: openvsp_as.h:1613
SetXSecPnts
void SetXSecPnts(const string &in xsec_id, vec3d[]@ pnt_arr)
GetBORUpperCSTDegree
int GetBORUpperCSTDegree(const string &in bor_id)
CFD_STRUCTURE
@ CFD_STRUCTURE
Definition: openvsp_as.h:2102
VSPAERO_STABILITY_TYPE
VSPAERO_STABILITY_TYPE
Definition: openvsp_as.h:2084
TEMP_UNIT_R
@ TEMP_UNIT_R
Definition: openvsp_as.h:1970
GetVarPresetParmIDsWName
string[] GetVarPresetParmIDsWName(const string &in group_name)
GEOM_DRAW_TEXTURE
@ GEOM_DRAW_TEXTURE
Definition: openvsp_as.h:1337
VIEW_TYPE
VIEW_TYPE
Definition: openvsp_as.h:2016
Matrix4d::loadYZRef
void loadYZRef()
VSPCheckSetup
void VSPCheckSetup()
EXPORT_POVRAY
@ EXPORT_POVRAY
Definition: openvsp_as.h:1395
PCHIP
@ PCHIP
Definition: openvsp_as.h:1722
ULINE_SOURCE
@ ULINE_SOURCE
Definition: openvsp_as.h:1194
SetIntAnalysisInput
void SetIntAnalysisInput(const string &in analysis, const string &in name, int[]@ indata_arr, int index=0)
FindGeomsWithName
string[] FindGeomsWithName(const string &in name)
IMPORT_CART3D_TRI
@ IMPORT_CART3D_TRI
Definition: openvsp_as.h:1624
CLOSE_NONE
@ CLOSE_NONE
Definition: openvsp_as.h:2173
EXPORT_CART3D
@ EXPORT_CART3D
Definition: openvsp_as.h:1396
COMPUTATION_FILE_TYPE
COMPUTATION_FILE_TYPE
Definition: openvsp_as.h:1253
NUM_PROJ_TGT_OPTIONS
@ NUM_PROJ_TGT_OPTIONS
Definition: openvsp_as.h:1781
ANG_DEG
@ ANG_DEG
Definition: openvsp_as.h:1056
SetupCustomDefaultSource
void SetupCustomDefaultSource(int type, int surf_index, double l1, double r1, double u1, double w1, double l2=0, double r2=0, double u2=0, double w2=0)
GetGeomVSPSurfCfdType
int GetGeomVSPSurfCfdType(const string &in geom_id, int main_surf_ind=0)
SetAnalysisInputDefaults
void SetAnalysisInputDefaults(const string &in analysis)
GetGeomBBoxMax
vec3d GetGeomBBoxMax(const string &in geom_id, int main_surf_ind=0, bool ref_frame_is_absolute=true)
GDEV_SCROLL_TAB
@ GDEV_SCROLL_TAB
Definition: openvsp_as.h:1576
SetXSecTanSlews
void SetXSecTanSlews(const string &in xsec_id, int side, double top, double right=- 1.0e12, double bottom=- 1.0e12, double left=- 1.0e12)
SetVec3dAnalysisInput
void SetVec3dAnalysisInput(const string &in analysis, const string &in name, vec3d[]@ indata_arr, int index=0)
SetParmLowerLimit
void SetParmLowerLimit(const string &in parm_id, double val)
AVEC_WSECT_DRIVER
@ AVEC_WSECT_DRIVER
Definition: openvsp_as.h:2147
XSEC_SIDES_TYPE
XSEC_SIDES_TYPE
Definition: openvsp_as.h:2228
CFD_GMSH_TYPE
@ CFD_GMSH_TYPE
Definition: openvsp_as.h:1268
XSEC_TRIM_TYPE
XSEC_TRIM_TYPE
Definition: openvsp_as.h:2239
SET_NONE
@ SET_NONE
Definition: openvsp_as.h:1870
CFD_TRANSPARENT
@ CFD_TRANSPARENT
Definition: openvsp_as.h:2101
PROP_THICK
@ PROP_THICK
Definition: openvsp_as.h:1806
FEA_SKIN
@ FEA_SKIN
Definition: openvsp_as.h:1475
INTERSECT_CURV_FILE_NAME
@ INTERSECT_CURV_FILE_NAME
Definition: openvsp_as.h:1651
GetNumXSec
int GetNumXSec(const string &in xsec_surf_id)
SET_FIRST_USER
@ SET_FIRST_USER
Definition: openvsp_as.h:1874
CFD_KEY_TYPE
@ CFD_KEY_TYPE
Definition: openvsp_as.h:1267
WING_DRIVERS
WING_DRIVERS
Definition: openvsp_as.h:2141
REF_WING_TYPE
REF_WING_TYPE
Definition: openvsp_as.h:1817
FF_W_JENKINSON_WING
@ FF_W_JENKINSON_WING
Definition: openvsp_as.h:1554
XS_FILE_FUSE
@ XS_FILE_FUSE
Definition: openvsp_as.h:2194
VSP_INVALID_PTR
@ VSP_INVALID_PTR
Definition: openvsp_as.h:1348
EXPORT_XSECGEOM
@ EXPORT_XSECGEOM
Definition: openvsp_as.h:1399
PRES_UNIT_PSI
@ PRES_UNIT_PSI
Definition: openvsp_as.h:1735
GetDoubleMatResults
double[][] GetDoubleMatResults(const string &in id, const string &in name, int index=0)
CGS_UNIT
@ CGS_UNIT
Definition: openvsp_as.h:1513
InsertCustomXSec
string InsertCustomXSec(const string &in xsec_surf_id, int type, int index)
GetGeomName
string GetGeomName(const string &in geom_id)
AddVarPresetParm
void AddVarPresetParm(const string &in parm_ID)
GDEV_INDEX_SELECTOR
@ GDEV_INDEX_SELECTOR
Definition: openvsp_as.h:1596
FEA_BEAM
@ FEA_BEAM
Definition: openvsp_as.h:1458
VORTEX_LATTICE
@ VORTEX_LATTICE
Definition: openvsp_as.h:2033
RHO_UNIT_G_CM3
@ RHO_UNIT_G_CM3
Definition: openvsp_as.h:1857
VIEW_NONE
@ VIEW_NONE
Definition: openvsp_as.h:2024
CopyGeomToClipboard
void CopyGeomToClipboard(const string &in geom_id)
XS_ELLIPSE
@ XS_ELLIPSE
Definition: openvsp_as.h:2190
FEA_CALCULIX_FILE_NAME
@ FEA_CALCULIX_FILE_NAME
Definition: openvsp_as.h:1440
PARM_DOUBLE_TYPE
@ PARM_DOUBLE_TYPE
Definition: openvsp_as.h:1693
PrintAnalysisInputs
void PrintAnalysisInputs(const string &in analysis)
VSP_CONFORMAL_PARENT_UNSUPPORTED
@ VSP_CONFORMAL_PARENT_UNSUPPORTED
Definition: openvsp_as.h:1365
CF_LAM_EQN
CF_LAM_EQN
Definition: openvsp_as.h:1203
PCurveSplit
int PCurveSplit(const string &in geom_id, const int &in pcurveid, const double &in tsplit)
CFD_PLOT3D_FILE_NAME
@ CFD_PLOT3D_FILE_NAME
Definition: openvsp_as.h:1180
MASS_UNIT_LBM
@ MASS_UNIT_LBM
Definition: openvsp_as.h:1682
GetIntParmVal
int GetIntParmVal(const string &in parm_id)
WriteDESFile
void WriteDESFile(const string &in file_name)
ROT_0
@ ROT_0
Definition: openvsp_as.h:2006
GetXSecHeight
double GetXSecHeight(const string &in xsec_id)
AddVarPresetSetting
void AddVarPresetSetting(const string &in setting_name)
SetDriverGroup
void SetDriverGroup(const string &in geom_id, int section_index, int driver_0, int driver_1=- 1, int driver_2=- 1)
FF_W_SCHEMENSKY_SUPERCRITICAL_AF
@ FF_W_SCHEMENSKY_SUPERCRITICAL_AF
Definition: openvsp_as.h:1556
PROJ_AREA_CSV_TYPE
@ PROJ_AREA_CSV_TYPE
Definition: openvsp_as.h:1271
GetFeaPartPerpendicularSparID
string GetFeaPartPerpendicularSparID(const string &in part_id)
FEA_RIB_ARRAY
@ FEA_RIB_ARRAY
Definition: openvsp_as.h:1473
CF_TURB_POWER_LAW_PRANDTL_LOW_RE
@ CF_TURB_POWER_LAW_PRANDTL_LOW_RE
Definition: openvsp_as.h:1222
ErrorObj
A class for representing API Errors.
Definition: openvsp_as.h:996
CFD_TRI_TYPE
@ CFD_TRI_TYPE
Definition: openvsp_as.h:1264
GDEV_TRIGGER_BUTTON
@ GDEV_TRIGGER_BUTTON
Definition: openvsp_as.h:1587
ProjPnt01I
double ProjPnt01I(const string &in geom_id, const vec3d &in pt, int &out surf_indx, double &out u, double &out w)
SI_UNIT
@ SI_UNIT
Definition: openvsp_as.h:1512
GetGeomBBoxMin
vec3d GetGeomBBoxMin(const string &in geom_id, int main_surf_ind=0, bool ref_frame_is_absolute=true)
INTERSECT_PLOT3D_FILE_NAME
@ INTERSECT_PLOT3D_FILE_NAME
Definition: openvsp_as.h:1652
GetVarPresetSettingNamesWName
string[] GetVarPresetSettingNamesWName(const string &in group_name)
CFD_STIFFENER
@ CFD_STIFFENER
Definition: openvsp_as.h:2103
AxisProjPnt01Guess
double AxisProjPnt01Guess(const string &in geom_id, const int &in surf_indx, const int &in iaxis, const vec3d &in pt, const double &in u0, const double &in w0, double &out u_out, double &out w_out, vec3d &out p_out)
DO_NOT_USE_CF_TURB_IMPLICIT_KARMAN
@ DO_NOT_USE_CF_TURB_IMPLICIT_KARMAN
Definition: openvsp_as.h:1218
SetCustomCenter
void SetCustomCenter(double x, double y, double z)
VSP_CANT_FIND_NAME
@ VSP_CANT_FIND_NAME
Definition: openvsp_as.h:1352
AutoGroupVSPAEROControlSurfaces
void AutoGroupVSPAEROControlSurfaces()
DISPLAY_DEGEN_CAMBER
@ DISPLAY_DEGEN_CAMBER
Definition: openvsp_as.h:1325
VIEW_2VER
@ VIEW_2VER
Definition: openvsp_as.h:1996
FF_B_HOERNER_STREAMBODY
@ FF_B_HOERNER_STREAMBODY
Definition: openvsp_as.h:1528
LEN_M
@ LEN_M
Definition: openvsp_as.h:1666
GetSubSurfName
string GetSubSurfName(const string &in geom_id, const string &in sub_id)
GDEV_SLIDER_ADJ_RANGE
@ GDEV_SLIDER_ADJ_RANGE
Definition: openvsp_as.h:1582
EXPORT_DXF
@ EXPORT_DXF
Definition: openvsp_as.h:1406
NUM_SOURCE_TYPES
@ NUM_SOURCE_TYPES
Definition: openvsp_as.h:1196
CONST_U
@ CONST_U
Definition: openvsp_as.h:1915
GetFeaPartIDVec
string[] GetFeaPartIDVec(const string &in fea_struct_id)
GetUnsteadyGroupName
string GetUnsteadyGroupName(int group_index)
SS_INC_SEPARATE_TREATMENT
@ SS_INC_SEPARATE_TREATMENT
Definition: openvsp_as.h:1894
PATCH_NONE
@ PATCH_NONE
Definition: openvsp_as.h:1707
VSPAERO_CLMAX_TYPE
VSPAERO_CLMAX_TYPE
Definition: openvsp_as.h:2041
vec3d::reflect_xz
vec3d reflect_xz()
BLEND_NUM_TYPES
@ BLEND_NUM_TYPES
Definition: openvsp_as.h:2134
FindUnsteadyGroup
string FindUnsteadyGroup(int group_index)
GetTotalNumSurfs
int GetTotalNumSurfs(const string &in geom_id)
WriteResultsCSVFile
void WriteResultsCSVFile(const string &in id, const string &in file_name)
VIEW_ROT
VIEW_ROT
Definition: openvsp_as.h:2004
Max
double Max(double x, double y)
DELIM_TYPE
DELIM_TYPE
Definition: openvsp_as.h:1286
AddFeaStruct
int AddFeaStruct(const string &in geom_id, bool init_skin=true, int surfindex=0)
FF_W_MANUAL
@ FF_W_MANUAL
Definition: openvsp_as.h:1543
GetNumSubSurf
int GetNumSubSurf(const string &in geom_id)
MASS_UNIT_G
@ MASS_UNIT_G
Definition: openvsp_as.h:1679
EXCRESCENCE_DRAGAREA
@ EXCRESCENCE_DRAGAREA
Definition: openvsp_as.h:1381
EXPORT_AWAVE
@ EXPORT_AWAVE
Definition: openvsp_as.h:1393
ABS_REL_FLAG
ABS_REL_FLAG
Definition: openvsp_as.h:1033
GetNumMainSurfs
int GetNumMainSurfs(const string &in geom_id)
SECSWEEPLOC_WSECT_DRIVER
@ SECSWEEPLOC_WSECT_DRIVER
Definition: openvsp_as.h:2154
UpdateGeom
void UpdateGeom(const string &in geom_id)
SetCFDWakeFlag
void SetCFDWakeFlag(const string &in geom_id, bool flag)
CFD_FAR_Y_SCALE
@ CFD_FAR_Y_SCALE
Definition: openvsp_as.h:1154
SetGeomDisplayType
void SetGeomDisplayType(const string &in geom_id, int type)
VSP_UNEXPECTED_RESET_REMAP_ID
@ VSP_UNEXPECTED_RESET_REMAP_ID
Definition: openvsp_as.h:1366
GDEV_DIVIDER_BOX
@ GDEV_DIVIDER_BOX
Definition: openvsp_as.h:1599
GEOM_XSECS
@ GEOM_XSECS
Definition: openvsp_as.h:1846
CFD_FAR_HEIGHT
@ CFD_FAR_HEIGHT
Definition: openvsp_as.h:1152
ReadFileXSec
vec3d[] ReadFileXSec(const string &in xsec_id, const string &in file_name)
FindGeom
string FindGeom(const string &in name, int index)
XZ_ABS
@ XZ_ABS
Definition: openvsp_as.h:1502
VIEW_4
@ VIEW_4
Definition: openvsp_as.h:1997
LEN_MM
@ LEN_MM
Definition: openvsp_as.h:1664
PROP_SURF
@ PROP_SURF
Definition: openvsp_as.h:2116
Matrix4d::xform
vec3d xform(const vec3d &in v)
VSP_INVALID_VARPRESET_SETNAME
@ VSP_INVALID_VARPRESET_SETNAME
Definition: openvsp_as.h:1363
SS_CONTROL
@ SS_CONTROL
Definition: openvsp_as.h:1928
GetBORAirfoilUpperPnts
vec3d[] GetBORAirfoilUpperPnts(const string &in bor_id)
XSEC_CUSTOM
@ XSEC_CUSTOM
Definition: openvsp_as.h:2256
CAMBER_INPUT_FLAG
CAMBER_INPUT_FLAG
Definition: openvsp_as.h:1111
SYM_RL
@ SYM_RL
Definition: openvsp_as.h:1956
COLLISION_CLEAR_NO_SOLUTION
@ COLLISION_CLEAR_NO_SOLUTION
Definition: openvsp_as.h:1246
CIRCLE_NUM_XSEC_DRIVER
@ CIRCLE_NUM_XSEC_DRIVER
Definition: openvsp_as.h:2221
FF_W_SCHEMENSKY_4_SERIES_AF
@ FF_W_SCHEMENSKY_4_SERIES_AF
Definition: openvsp_as.h:1553
DeleteAllRulers
void DeleteAllRulers()
STEP_REPRESENTATION
STEP_REPRESENTATION
Definition: openvsp_as.h:1881
SetEditXSecFixedUVec
void SetEditXSecFixedUVec(const string &in xsec_id, bool[]@ fixed_u_vec)
GetNumResults
int GetNumResults(const string &in name)
FF_B_TORENBEEK
@ FF_B_TORENBEEK
Definition: openvsp_as.h:1529
CFD_CONTROL_TYPE
CFD_CONTROL_TYPE
Definition: openvsp_as.h:1135
AddSelectedToCSGroup
void AddSelectedToCSGroup(int[]@ selected, int CSGroupIndex)
ATMOS_TYPE_MANUAL_R_T
@ ATMOS_TYPE_MANUAL_R_T
Definition: openvsp_as.h:1069
GetSubSurfIDVec
string[] GetSubSurfIDVec(const string &in geom_id)
SetXSecCurvatures
void SetXSecCurvatures(const string &in xsec_id, int side, double top, double right=- 1.0e12, double bottom=- 1.0e12, double left=- 1.0e12)
XSEC_PROP
@ XSEC_PROP
Definition: openvsp_as.h:2257
TRIM_THICK
@ TRIM_THICK
Definition: openvsp_as.h:2243
CFD_FAR_LOC_X
@ CFD_FAR_LOC_X
Definition: openvsp_as.h:1157
XS_VKT_AIRFOIL
@ XS_VKT_AIRFOIL
Definition: openvsp_as.h:2202
VIEW_RIGHT
@ VIEW_RIGHT
Definition: openvsp_as.h:2019
FEA_XSEC_I
@ FEA_XSEC_I
Definition: openvsp_as.h:1426
vec3d::rotate_x
void rotate_x(double cos_alpha, double sin_alpha)
WritePartialCfMethodCSVFile
void WritePartialCfMethodCSVFile(const string &in file_name)
GetAllSubSurfIDs
string[] GetAllSubSurfIDs()
INTERSECT_STEP_FILE_NAME
@ INTERSECT_STEP_FILE_NAME
Definition: openvsp_as.h:1654
GEOM_DRAW_SHADE
@ GEOM_DRAW_SHADE
Definition: openvsp_as.h:1336
SetStringAnalysisInput
void SetStringAnalysisInput(const string &in analysis, const string &in name, string[]@ indata_arr, int index=0)
CreateGeomResults
string CreateGeomResults(const string &in geom_id, const string &in name)
FEA_SRF_FILE_NAME
@ FEA_SRF_FILE_NAME
Definition: openvsp_as.h:1443
HEIGHT_XSEC_DRIVER
@ HEIGHT_XSEC_DRIVER
Definition: openvsp_as.h:2218
GetGeomSet
string[] GetGeomSet(const string &in name)
PROJ_BNDY_TYPE
PROJ_BNDY_TYPE
Definition: openvsp_as.h:1751
FEA_RIB_NORMAL
FEA_RIB_NORMAL
Definition: openvsp_as.h:1483
IMPORT_XSEC_WIRE
@ IMPORT_XSEC_WIRE
Definition: openvsp_as.h:1629
CFD_FAR_LENGTH
@ CFD_FAR_LENGTH
Definition: openvsp_as.h:1150
cross
vec3d cross(const vec3d &in a, const vec3d &in b)
ATTACH_ROT_TYPE
ATTACH_ROT_TYPE
Definition: openvsp_as.h:1077
GetVSPFileName
string GetVSPFileName()
VSP_OK
@ VSP_OK
Definition: openvsp_as.h:1347
CopyXSec
void CopyXSec(const string &in geom_id, int index)
GetUpperCSTDegree
int GetUpperCSTDegree(const string &in xsec_id)
DemoteCSTLower
void DemoteCSTLower(const string &in xsec_id)
ComputeMassProps
string ComputeMassProps(int set, int num_slices)
VIEW_FRONT
@ VIEW_FRONT
Definition: openvsp_as.h:2022
CutXSec
void CutXSec(const string &in geom_id, int index)
FF_B_JENKINSON_AFT_FUSE_NACELLE
@ FF_B_JENKINSON_AFT_FUSE_NACELLE
Definition: openvsp_as.h:1534
PD_UNITS_METRIC
@ PD_UNITS_METRIC
Definition: openvsp_as.h:1566
LINE_SOURCE
@ LINE_SOURCE
Definition: openvsp_as.h:1192
GetVKTAirfoilPnts
vec3d[] GetVKTAirfoilPnts(const int &in npts, const double &in alpha, const double &in epsilon, const double &in kappa, const double &in tau)
vec3d::rotate_z_zero_x
void rotate_z_zero_x(double cos_alpha, double sin_alpha)
IMPORT_BEM
@ IMPORT_BEM
Definition: openvsp_as.h:1628
CFD_STL_FILE_NAME
@ CFD_STL_FILE_NAME
Definition: openvsp_as.h:1169
XS_FOUR_DIGIT_MOD
@ XS_FOUR_DIGIT_MOD
Definition: openvsp_as.h:2203
FF_W_COVERT
@ FF_W_COVERT
Definition: openvsp_as.h:1547
EXPORT_XSEC
@ EXPORT_XSEC
Definition: openvsp_as.h:1391
vec3d::offset_x
void offset_x(double offset)
GDEV_COLOR_PICKER
@ GDEV_COLOR_PICKER
Definition: openvsp_as.h:1597
dist_squared
double dist_squared(const vec3d &in a, const vec3d &in b)
CFD_MESH_SOURCE_TYPE
CFD_MESH_SOURCE_TYPE
Definition: openvsp_as.h:1189
DeleteAllProbes
void DeleteAllProbes()
PROP_BOTH
@ PROP_BOTH
Definition: openvsp_as.h:1791
GetLastError
ErrorObj GetLastError()
CreateVSPAEROControlSurfaceGroup
int CreateVSPAEROControlSurfaceGroup()
RES_DATA_TYPE
RES_DATA_TYPE
Definition: openvsp_as.h:1828
CFD_FAR_SIZE_ABS_FLAG
@ CFD_FAR_SIZE_ABS_FLAG
Definition: openvsp_as.h:1149
XSEC_RIGHT_SIDE
@ XSEC_RIGHT_SIDE
Definition: openvsp_as.h:2232
FF_B_SHEVELL
@ FF_B_SHEVELL
Definition: openvsp_as.h:1530
FEA_PLOT3D_FILE_NAME
@ FEA_PLOT3D_FILE_NAME
Definition: openvsp_as.h:1445
CompTanU01
vec3d CompTanU01(const string &in geom_id, const int &in surf_indx, const double &in u, const double &in w)
GetHersheyBarLiftDist
vec3d[] GetHersheyBarLiftDist(const int &in npts, const double &in alpha, const double &in Vinf, const double &in span, bool full_span_flag=false)
ComputeFeaMesh
void ComputeFeaMesh(const string &in geom_id, int fea_struct_ind, int file_type)
X_DIR
@ X_DIR
Definition: openvsp_as.h:1311
TransformSet
void TransformSet(int set_index, const vec3d &in translation_vec, double x_rot_deg, double y_rot_deg, double z_rot_deg, double scale, bool scale_translations_flag)
ReadFileAirfoil
void ReadFileAirfoil(const string &in xsec_id, const string &in file_name)
CLOSE_SKEWBOTH
@ CLOSE_SKEWBOTH
Definition: openvsp_as.h:2176
XS_SHIFT_TE
@ XS_SHIFT_TE
Definition: openvsp_as.h:2269
FF_B_SCHEMENSKY_BODY
@ FF_B_SCHEMENSKY_BODY
Definition: openvsp_as.h:1526