OpenVSPAPI  3.23.0
openvsp_as.h
Go to the documentation of this file.
1 
190 
193 class string
194 {
195 public:
196 #ifndef DOXYGEN_SHOULD_SKIP_THIS
197  // Methods
198  string& operator=(const string&in);
199  string& operator+=(const string&in);
200  bool operator==(const string&in) const;
201  int operator>(const string&in) const;
202  string operator+(const string&in) const;
203  uint length() const;
204  void resize(uint);
205  uint get_length() const;
206  void set_length(uint);
207  bool isEmpty() const;
208  uint8& operator[](uint);
209  const uint8& operator[](uint) const;
210  string& operator=(double);
211  string& operator+=(double);
212  string operator+(double) const;
213  string operator+(double) const;
214  string& operator=(float);
215  string& operator+=(float);
216  string operator+(float) const;
217  string operator+(float) const;
218  string& operator=(int64);
219  string& operator+=(int64);
220  string operator+(int64) const;
221  string operator+(int64) const;
222  string& operator=(uint64);
223  string& operator+=(uint64);
224  string operator+(uint64) const;
225  string operator+(uint64) const;
226  string& operator=(bool);
227  string& operator+=(bool);
228  string operator+(bool) const;
229  string operator+(bool) const;
230  string substr(uint start = 0, int count = - 1) const;
231  int findFirst(const string&in, uint start = 0) const;
232  int findFirstOf(const string&in, uint start = 0) const;
233  int findFirstNotOf(const string&in, uint start = 0) const;
234  int findLast(const string&in, int start = - 1) const;
235  int findLastOf(const string&in, int start = - 1) const;
236  int findLastNotOf(const string&in, int start = - 1) const;
237  void insert(uint pos, const string&in other);
238  void erase(uint pos, int count = - 1);
239  uint size() const;
240  bool empty() const;
241  int find(const string&in, uint start = 0) const;
242  int rfind(const string&in, int start = - 1) const;
243  string[]@ split(const string&in) const;
244 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
245 };
246 
247 
249 
251 template<typename T>
252 class array
253 {
254 public:
255 #ifndef DOXYGEN_SHOULD_SKIP_THIS
256  // Methods
257  T& operator[](uint index);
258  const T& operator[](uint index) const;
259  T[]& operator=(const T[]&in);
260  void insertAt(uint index, const T&in value);
261  void insertAt(uint index, const T[]&inout arr);
262  void insertLast(const T&in value);
263  void removeAt(uint index);
264  void removeLast();
265  void removeRange(uint start, uint count);
266  uint length() const;
267  void reserve(uint length);
268  void resize(uint length);
269  void sortAsc();
270  void sortAsc(uint startAt, uint count);
271  void sortDesc();
272  void sortDesc(uint startAt, uint count);
273  void reverse();
274  int find(const T&in value) const;
275  int find(uint startAt, const T&in value) const;
276  int findByRef(const T&in value) const;
277  int findByRef(uint startAt, const T&in value) const;
278  bool operator==(const T[]&in) const;
279  bool isEmpty() const;
280  uint get_length() const;
281  void set_length(uint);
282  uint size() const;
283  bool empty() const;
284  void push_back(const T&in);
285  void pop_back();
286  void insert(uint index, const T&in value);
287  void insert(uint index, const T[]&inout arr);
288  void erase(uint);
289 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
290 };
291 
292 
294 
296 class file
297 {
298 public:
299 #ifndef DOXYGEN_SHOULD_SKIP_THIS
300  // Properties
301  bool mostSignificantByteFirst;
302  // Methods
303  int open(const string&in, const string&in);
304  int close();
305  int getSize() const;
306  bool isEndOfFile() const;
307  string readString(uint);
308  string readLine();
309  int64 readInt(uint);
310  uint64 readUInt(uint);
311  float readFloat();
312  double readDouble();
313  int writeString(const string&in);
314  int writeInt(int64, uint);
315  int writeUInt(uint64, uint);
316  int writeFloat(float);
317  int writeDouble(double);
318  int getPos() const;
319  int setPos(int);
320  int movePos(int);
321 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
322 };
323 
324 
326 
328 class any
329 {
330 public:
331 #ifndef DOXYGEN_SHOULD_SKIP_THIS
332  // Methods
333  any& operator=(any&in);
334  void store(?&in);
335  void store(const int64&in);
336  void store(const double&in);
337  bool retrieve(?&out);
338  bool retrieve(int64&out);
339  bool retrieve(double&out);
340 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
341 };
342 
343 
345 
349 class vec3d
350 {
351 public:
352  // Methods
353 
357  double& operator[](int) const;
358 
374  double x() const;
375 
391  double y() const;
392 
408  double z() const;
409 
423  vec3d& set_xyz(double x, double y, double z);
424 
436  vec3d& set_x(double x);
437 
449  vec3d& set_y(double y);
450 
462  vec3d& set_z(double z);
463 
479  void rotate_x(double cos_alpha, double sin_alpha);
480 
496  void rotate_y(double cos_alpha, double sin_alpha);
497 
513  void rotate_z(double cos_alpha, double sin_alpha);
514 
528  void scale_x(double scale);
529 
543  void scale_y(double scale);
544 
558  void scale_z(double scale);
559 
573  void offset_x(double offset);
574 
588  void offset_y(double offset);
589 
603  void offset_z(double offset);
604 
610  void rotate_z_zero_x(double cos_alpha, double sin_alpha);
611 
617  void rotate_z_zero_y(double cos_alpha, double sin_alpha);
618 
632  vec3d reflect_xy();
633 
647  vec3d reflect_xz();
648 
662  vec3d reflect_yz();
663 
679  vec3d operator+(const vec3d&in) const;
680 
696  vec3d operator-(const vec3d&in) const;
697 
714  vec3d operator*(double b) const;
715 
731  vec3d operator*(const vec3d&in) const;
732 
749  vec3d operator/(double b) const;
750 
764  double mag() const;
765 
781  void normalize();
782 };
783 
784 
786 
789 class Matrix4d
790 {
791 public:
792  // Methods
793 
804  void loadIdentity();
805 
821  void translatef(const double&in x, const double&in y, const double&in z);
822 
835  void rotateX(const double&in ang);
836 
849  void rotateY(const double&in ang);
850 
863  void rotateZ(const double&in ang);
864 
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 
921  vec3d getAngles();
922 
934  void loadXZRef();
935 
947  void loadXYRef();
948 
960  void loadYZRef();
961 
979  void affineInverse();
980 
987  void buildXForm(const vec3d&in pos, const vec3d&in rot, const vec3d&in cent_rot);
988 };
989 
990 
992 
995 class ErrorObj
996 {
997 public:
998  // Methods
999 
1011 
1024  string GetErrorString();
1025 };
1026 
1027 
1033 {
1034  ABS = 0,
1035  REL = 1
1036 };
1037 
1043 {
1046 };
1047 
1053 {
1054  ANG_RAD = 0,
1055  ANG_DEG = 1
1056 };
1057 
1063 {
1070 };
1071 
1077 {
1081 };
1082 
1088 {
1092 };
1093 
1099 {
1104 };
1105 
1111 {
1112  MAX_CAMB = 0,
1114 };
1115 
1121 {
1128 };
1129 
1135 {
1160 };
1161 
1167 {
1182 };
1183 
1189 {
1196 };
1197 
1203 {
1206 };
1207 
1213 {
1235 };
1236 
1242 {
1246 };
1247 
1253 {
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
1279 };
1280 
1286 {
1292 };
1293 
1299 {
1300  SET_3D = 0,
1301  SET_2D = 1
1302 };
1303 
1309 {
1310  X_DIR = 0,
1311  Y_DIR = 1,
1312  Z_DIR = 2
1313 };
1314 
1320 {
1325 };
1326 
1332 {
1338 };
1339 
1345 {
1346  VSP_OK = 0,
1368 };
1369 
1375 {
1381 };
1382 
1388 {
1400  EXPORT_X3D = 11,
1404  EXPORT_BEM = 15,
1405  EXPORT_DXF = 16,
1407  EXPORT_SVG = 18,
1409  EXPORT_OBJ = 20,
1414 };
1415 
1421 {
1428 };
1429 
1435 {
1448 };
1449 
1455 {
1457  FEA_BEAM = 1,
1459 };
1460 
1466 {
1468  FEA_RIB = 1,
1469  FEA_SPAR = 2,
1471  FEA_DOME = 4,
1474  FEA_SKIN = 7,
1476 };
1477 
1483 {
1488 };
1489 
1495 {
1496  XY_BODY = 0,
1497  YZ_BODY = 1,
1498  XZ_BODY = 2,
1499  XY_ABS = 3,
1500  YZ_ABS = 4,
1501  XZ_ABS = 5,
1503 };
1504 
1510 {
1511  SI_UNIT = 0,
1512  CGS_UNIT = 1,
1513  MPA_UNIT = 2,
1514  BFT_UNIT = 3,
1516 };
1517 
1523 {
1534 };
1535 
1541 {
1556 };
1557 
1563 {
1566 };
1567 
1572 enum GDEV
1573 {
1574  GDEV_TAB = 0,
1597  GDEV_YGAP = 24,
1603 };
1604 
1610 {
1611  MALE = 0,
1612  FEMALE = 1
1613 };
1614 
1620 {
1630 };
1631 
1637 {
1641 };
1642 
1648 {
1655 };
1656 
1662 {
1663  LEN_MM = 0,
1664  LEN_CM = 1,
1665  LEN_M = 2,
1666  LEN_IN = 3,
1667  LEN_FT = 4,
1668  LEN_YD = 5,
1670 };
1671 
1677 {
1684 };
1685 
1691 {
1698 };
1699 
1705 {
1712 };
1713 
1719 {
1720  LINEAR = 0,
1721  PCHIP = 1,
1722  CEDIT = 2,
1725 };
1726 
1732 {
1744 };
1745 
1751 {
1756 };
1757 
1763 {
1764  X_PROJ = 0,
1765  Y_PROJ = 1,
1766  Z_PROJ = 2,
1768  VEC_PROJ = 4,
1770 };
1771 
1777 {
1781 };
1782 
1788 {
1792 };
1793 
1799 {
1806  PROP_CLI = 6,
1810 };
1811 
1817 {
1821 };
1822 
1828 {
1830  INT_DATA = 0,
1835 };
1836 
1842 {
1847 };
1848 
1854 {
1861 };
1862 
1868 {
1869  SET_NONE = -1,
1870  SET_ALL = 0,
1874 };
1875 
1881 {
1884 };
1885 
1891 {
1895 };
1896 
1902 {
1903  INSIDE = 0,
1904  OUTSIDE = 1,
1905  NONE = 2
1906 };
1907 
1913 {
1914  CONST_U = 0,
1915  CONST_W = 1
1916 };
1917 
1923 {
1924  SS_LINE = 0,
1930 };
1931 
1937 {
1938  SYM_XY = 1,
1939  SYM_XZ = 2,
1940  SYM_YZ = 4,
1942  SYM_ROT_Y = 16,
1943  SYM_ROT_Z = 32,
1946 };
1947 
1953 {
1954  SYM_NONE = 0,
1955  SYM_RL = 1
1956 };
1957 
1963 {
1968 };
1969 
1975 {
1983 };
1984 
1990 {
1991  VIEW_1 = 0,
1994  VIEW_4 = 3
1995 };
1996 
2002 {
2003  ROT_0 = 0,
2004  ROT_90 = 1,
2005  ROT_180 = 2,
2006  ROT_270 = 3
2007 };
2008 
2014 {
2017  VIEW_TOP = 2,
2022 };
2023 
2029 {
2031  PANEL = 1
2032 };
2033 
2039 {
2043 };
2044 
2050 {
2051  NOISE_SI = 0,
2053 };
2054 
2060 {
2064 };
2065 
2071 {
2077 };
2078 
2084 {
2091 };
2092 
2098 {
2104 };
2105 
2111 {
2121 };
2122 
2128 {
2141 };
2142 
2148 {
2149  XDDM_VAR = 0,
2151 };
2152 
2158 {
2165 };
2166 
2172 {
2174  XS_POINT = 0,
2184  XS_WEDGE = 10,
2194 };
2195 
2201 {
2205 };
2206 
2212 {
2214  TRIM_X = 1,
2217 };
2218 
2224 {
2231 };
2232 
2238 {
2242 };
2243 
2244 string formatInt(int64 val, const string&in options = "", uint width = 0);
2245 string formatUInt(uint64 val, const string&in options = "", uint width = 0);
2246 string formatFloat(double val, const string&in options = "", uint width = 0, uint precision = 0);
2247 int64 parseInt(const string&in, uint base = 10, uint&out byteCount = 0);
2248 uint64 parseUInt(const string&in, uint base = 10, uint&out byteCount = 0);
2249 double parseFloat(const string&in, uint&out byteCount = 0);
2250 string join(const string[]&in, const string&in);
2251 float fpFromIEEE(uint);
2252 uint fpToIEEE(float);
2253 double fpFromIEEE(uint64);
2254 uint64 fpToIEEE(double);
2255 bool closeTo(float, float, float = 0.00001f);
2256 bool closeTo(double, double, double = 0.0000000001);
2257 float cos(float);
2258 float sin(float);
2259 float tan(float);
2260 float acos(float);
2261 float asin(float);
2262 float atan(float);
2263 float atan2(float, float);
2264 float cosh(float);
2265 float sinh(float);
2266 float tanh(float);
2267 float log(float);
2268 float log10(float);
2269 float pow(float, float);
2270 float sqrt(float);
2271 float ceil(float);
2272 float abs(float);
2273 float floor(float);
2274 float fraction(float);
2275 
2299 double dist(const vec3d&in a, const vec3d&in b);
2300 
2324 double dist_squared(const vec3d&in a, const vec3d&in b);
2325 
2346 double dot(const vec3d&in a, const vec3d&in b);
2347 
2370 vec3d cross(const vec3d&in a, const vec3d&in b);
2371 
2392 double angle(const vec3d&in a, const vec3d&in b);
2393 
2416 double signed_angle(const vec3d&in a, const vec3d&in b, const vec3d&in ref);
2417 
2442 double cos_angle(const vec3d&in a, const vec3d&in b);
2443 
2466 vec3d RotateArbAxis(const vec3d&in p, double theta, const vec3d&in axis);
2467 
2487 string AddParm(int type, const string&in name, const string&in group);
2488 
2505 string GetCurrCustomGeom();
2506 
2516 string GetCustomParm(int index);
2517 
2550 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);
2551 
2577 void UpdateGui(int gui_id, const string&in parm_id);
2578 
2599 string AddXSecSurf();
2600 
2633 void RemoveXSecSurf(const string&in xsec_id);
2634 
2650 void ClearXSecSurfs();
2651 
2681 void SkinXSecSurf(bool closed_flag = false);
2682 
2709 void CloneSurf(int index, Matrix4d&in mat);
2710 
2720 void TransformSurf(int index, Matrix4d&in mat);
2721 
2743 void SetVspSurfType(int type, int surf_index = - 1);
2744 
2766 void SetVspSurfCfdType(int type, int surf_index = - 1);
2767 
2792 void SetCustomXSecLoc(const string&in xsec_id, const vec3d&in loc);
2793 
2819 vec3d GetCustomXSecLoc(const string&in xsec_id);
2820 
2838 void SetCustomXSecRot(const string&in xsec_id, const vec3d&in rot);
2839 
2863 vec3d GetCustomXSecRot(const string&in xsec_id);
2864 
2874 bool CheckClearTriggerEvent(int gui_id);
2875 
2908 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);
2909 
2923 
2943 void SetCustomCenter(double x, double y, double z);
2944 
2970 string AppendXSec(const string&in xsec_surf_id, int type);
2971 
2997 string AppendCustomXSec(const string&in xsec_surf_id, int type);
2998 
3009 void CutCustomXSec(const string&in xsec_surf_id, int index);
3010 
3021 void CopyCustomXSec(const string&in xsec_surf_id, int index);
3022 
3033 void PasteCustomXSec(const string&in xsec_surf_id, int index);
3034 
3046 string InsertCustomXSec(const string&in xsec_surf_id, int type, int index);
3047 
3065 void AddInput(const string&in parm_id, const string&in var_name);
3066 
3084 void AddOutput(const string&in parm_id, const string&in var_name);
3085 
3105 void SetVar(const string&in var_name, double val);
3106 
3130 double GetVar(const string&in var_name);
3131 
3148 bool GetErrorLastCallFlag();
3149 
3166 int GetNumTotalErrors();
3167 
3185 
3201 
3214 void SilenceErrors();
3215 
3228 void PrintOnErrors();
3229 
3249 void ScreenGrab(const string&in file_name, int w, int h, bool transparentBG);
3250 
3262 void SetViewAxis(bool vaxis);
3263 
3275 void SetShowBorders(bool brdr);
3276 
3292 void SetGeomDrawType(const string&in geom_id, int type);
3293 
3309 void SetGeomDisplayType(const string&in geom_id, int type);
3310 
3324 void SetBackground(double r, double g, double b);
3325 
3347 void Update(bool update_managers = true);
3348 
3357 void VSPExit(int error_code);
3358 
3373 void ClearVSPModel();
3374 
3399 string GetVSPFileName();
3400 
3432 void ReadVSPFile(const string&in file_name);
3433 
3466 void WriteVSPFile(const string&in file_name, int set);
3467 
3499 void SetVSP3FileName(const string&in file_name);
3500 
3511 void InsertVSPFile(const string&in file_name, const string&in parent);
3512 
3529 void ExportFile(const string&in file_name, int write_set_index, int file_type);
3530 
3543 string ImportFile(const string&in file_name, int file_type, const string&in parent);
3544 
3553 void ReadApplyDESFile(const string&in file_name);
3554 
3563 void WriteDESFile(const string&in file_name);
3564 
3573 void ReadApplyXDDMFile(const string&in file_name);
3574 
3583 void WriteXDDMFile(const string&in file_name);
3584 
3593 int GetNumDesignVars();
3594 
3605 void AddDesignVar(const string&in parm_id, int type);
3606 
3614 void DeleteAllDesignVars();
3615 
3625 string GetDesignVar(int index);
3626 
3637 int GetDesignVarType(int index);
3638 
3662 string ComputeMassProps(int set, int num_slices);
3663 
3687 string ComputeCompGeom(int set, bool half_mesh, int file_export_types);
3688 
3717 string ComputePlaneSlice(int set, int num_slices, const vec3d&in norm, bool auto_bnd, double start_bnd = 0, double end_bnd = 0);
3718 
3736 void ComputeDegenGeom(int set, int file_type);
3737 
3755 void SetComputationFileName(int file_type, const string&in file_name);
3756 
3775 void ComputeCFDMesh(int set, int file_type);
3776 
3790 void SetCFDMeshVal(int type, double val);
3791 
3812 void SetCFDWakeFlag(const string&in geom_id, bool flag);
3813 
3829 void DeleteAllCFDSources();
3830 
3844 void AddDefaultSources();
3845 
3871 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);
3872 
3886 int GetNumAnalysis();
3887 
3906 string[]@ ListAnalysis();
3907 
3929 string[]@ GetAnalysisInputNames(const string&in analysis);
3930 
3945 string ExecAnalysis(const string&in analysis);
3946 
3957 int GetNumAnalysisInputData(const string&in analysis, const string&in name);
3958 
3980 int GetAnalysisInputType(const string&in analysis, const string&in name);
3981 
4005 int[]@ GetIntAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4006 
4026 double[]@ GetDoubleAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4027 
4047 string[]@ GetStringAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4048 
4069 vec3d[]@ GetVec3dAnalysisInput(const string&in analysis, const string&in name, int index = 0);
4070 
4086 void PrintAnalysisInputs(const string&in analysis);
4087 
4103 void SetAnalysisInputDefaults(const string&in analysis);
4104 
4128 void SetIntAnalysisInput(const string&in analysis, const string&in name, int[]@ indata_arr, int index = 0);
4129 
4154 void SetDoubleAnalysisInput(const string&in analysis, const string&in name, double[]@ indata_arr, int index = 0);
4155 
4175 void SetStringAnalysisInput(const string&in analysis, const string&in name, string[]@ indata_arr, int index = 0);
4176 
4197 void SetVec3dAnalysisInput(const string&in analysis, const string&in name, vec3d[]@ indata_arr, int index = 0);
4198 
4214 int GetNumResults(const string&in name);
4215 
4238 string GetResultsName(const string&in results_id);
4239 
4258 string FindResultsID(const string&in name, int index = 0);
4259 
4281 string FindLatestResultsID(const string&in name);
4282 
4309 int GetNumData(const string&in results_id, const string&in data_name);
4310 
4335 int GetResultsType(const string&in results_id, const string&in data_name);
4336 
4357 string[]@ GetAllResultsNames();
4358 
4378 string[]@ GetAllDataNames(const string&in results_id);
4379 
4407 int[]@ GetIntResults(const string&in id, const string&in name, int index = 0);
4408 
4431 double[]@ GetDoubleResults(const string&in id, const string&in name, int index = 0);
4432 
4444 double[]@[]@ GetDoubleMatResults(const string&in id, const string&in name, int index = 0);
4445 
4467 string[]@ GetStringResults(const string&in id, const string&in name, int index = 0);
4468 
4490 vec3d[]@ GetVec3dResults(const string&in id, const string&in name, int index = 0);
4491 
4515 string CreateGeomResults(const string&in geom_id, const string&in name);
4516 
4537 void DeleteAllResults();
4538 
4560 void DeleteResult(const string&in id);
4561 
4581 void WriteResultsCSVFile(const string&in id, const string&in file_name);
4582 
4602 void PrintResults(const string&in id);
4603 
4617 void WriteTestResults();
4618 
4636 string[]@ GetGeomTypes();
4637 
4652 string AddGeom(const string&in type, const string&in parent = string ( ));
4653 
4674 void UpdateGeom(const string&in geom_id);
4675 
4693 void DeleteGeom(const string&in geom_id);
4694 
4713 void DeleteGeomVec(string[]@ del_arr);
4714 
4737 void CutGeomToClipboard(const string&in geom_id);
4738 
4761 void CopyGeomToClipboard(const string&in geom_id);
4762 
4785 string[]@ PasteGeomClipboard(const string&in parent_id = "");
4786 
4805 string[]@ FindGeoms();
4806 
4830 string[]@ FindGeomsWithName(const string&in name);
4831 
4858 string FindGeom(const string&in name, int index);
4859 
4882 void SetGeomName(const string&in geom_id, const string&in name);
4883 
4903 string GetGeomName(const string&in geom_id);
4904 
4924 string[]@ GetGeomParmIDs(const string&in geom_id);
4925 
4946 int GetGeomVSPSurfCfdType(const string&in geom_id, int main_surf_ind = 0);
4947 
4968 int GetGeomVSPSurfType(const string&in geom_id, int main_surf_ind = 0);
4969 
4987 string GetGeomTypeName(const string&in geom_id);
4988 
5009 int GetNumMainSurfs(const string&in geom_id);
5010 
5031 int GetTotalNumSurfs(const string&in geom_id);
5032 
5057 vec3d GetGeomBBoxMax(const string&in geom_id, int main_surf_ind = 0, bool ref_frame_is_absolute = true);
5058 
5083 vec3d GetGeomBBoxMin(const string&in geom_id, int main_surf_ind = 0, bool ref_frame_is_absolute = true);
5084 
5104 string GetGeomParent(const string&in geom_id);
5105 
5133 string[]@ GetGeomChildren(const string&in geom_id);
5134 
5155 string AddSubSurf(const string&in geom_id, int type, int surfindex = 0);
5156 
5182 void DeleteSubSurf(const string&in geom_id, const string&in sub_id);
5183 
5208 void DeleteSubSurf(const string&in sub_id);
5209 
5233 string GetSubSurf(const string&in geom_id, int index);
5234 
5258 string[]@ GetSubSurf(const string&in geom_id, const string&in name);
5259 
5279 void SetSubSurfName(const string&in geom_id, const string&in sub_id, const string&in name);
5280 
5299 void SetSubSurfName(const string&in sub_id, const string&in name);
5300 
5322 string GetSubSurfName(const string&in geom_id, const string&in sub_id);
5323 
5344 string GetSubSurfName(const string&in sub_id);
5345 
5367 int GetSubSurfIndex(const string&in sub_id);
5368 
5403 string[]@ GetSubSurfIDVec(const string&in geom_id);
5404 
5413 string[]@ GetAllSubSurfIDs();
5414 
5436 int GetNumSubSurf(const string&in geom_id);
5437 
5473 int GetSubSurfType(const string&in sub_id);
5474 
5500 string[]@ GetSubSurfParmIDs(const string&in sub_id);
5501 
5559 
5590 
5613 
5631 void AddAllToVSPAEROControlSurfaceGroup(int CSGroupIndex);
5632 
5652 void RemoveAllFromVSPAEROControlSurfaceGroup(int CSGroupIndex);
5653 
5682 string[]@ GetActiveCSNameVec(int CSGroupIndex);
5683 
5708 string[]@ GetCompleteCSNameVec();
5709 
5733 string[]@ GetAvailableCSNameVec(int CSGroupIndex);
5734 
5757 void SetVSPAEROControlGroupName(const string&in name, int CSGroupIndex);
5758 
5780 string GetVSPAEROControlGroupName(int CSGroupIndex);
5781 
5814 void AddSelectedToCSGroup(int[]@ selected, int CSGroupIndex);
5815 
5844 void RemoveSelectedFromCSGroup(int[]@ selected, int CSGroupIndex);
5845 
5854 string GetVSPAERORefWingID();
5855 
5886 string SetVSPAERORefWingID(const string&in geom_id);
5887 
5914 string FindActuatorDisk(int disk_index);
5915 
5939 int GetNumActuatorDisks();
5940 
5963 string FindUnsteadyGroup(int group_index);
5964 
5990 string GetUnsteadyGroupName(int group_index);
5991 
6017 string[]@ GetUnsteadyGroupCompIDs(int group_index);
6018 
6044 int[]@ GetUnsteadyGroupSurfIndexes(int group_index);
6045 
6074 int GetNumUnsteadyGroups();
6075 
6106 
6135 void SetDriverGroup(const string&in geom_id, int section_index, int driver_0, int driver_1, int driver_2);
6136 
6154 int GetNumXSecSurfs(const string&in geom_id);
6155 
6173 string GetXSecSurf(const string&in geom_id, int index);
6174 
6203 int GetNumXSec(const string&in xsec_surf_id);
6204 
6225 string GetXSec(const string&in xsec_surf_id, int xsec_index);
6226 
6249 void ChangeXSecShape(const string&in xsec_surf_id, int xsec_index, int type);
6250 
6260 void SetXSecSurfGlobalXForm(const string&in xsec_surf_id, const Matrix4d&in mat);
6261 
6271 Matrix4d GetXSecSurfGlobalXForm(const string&in xsec_surf_id);
6272 
6295 void CutXSec(const string&in geom_id, int index);
6296 
6317 void CopyXSec(const string&in geom_id, int index);
6318 
6339 void PasteXSec(const string&in geom_id, int index);
6340 
6358 void InsertXSec(const string&in geom_id, int index, int type);
6359 
6383 int GetXSecShape(const string&in xsec_id);
6384 
6407 double GetXSecWidth(const string&in xsec_id);
6408 
6431 double GetXSecHeight(const string&in xsec_id);
6432 
6455 void SetXSecWidth(const string&in xsec_id, double w);
6456 
6479 void SetXSecHeight(const string&in xsec_id, double h);
6480 
6505 void SetXSecWidthHeight(const string&in xsec_id, double w, double h);
6506 
6528 string[]@ GetXSecParmIDs(const string&in xsec_id);
6529 
6554 string GetXSecParm(const string&in xsec_id, const string&in name);
6555 
6578 vec3d[]@ ReadFileXSec(const string&in xsec_id, const string&in file_name);
6579 
6609 void SetXSecPnts(const string&in xsec_id, vec3d[]@ pnt_arr);
6610 
6642 vec3d ComputeXSecPnt(const string&in xsec_id, double fract);
6643 
6677 vec3d ComputeXSecTan(const string&in xsec_id, double fract);
6678 
6701 void ResetXSecSkinParms(const string&in xsec_id);
6702 
6726 void SetXSecContinuity(const string&in xsec_id, int cx);
6727 
6758 void SetXSecTanAngles(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6759 
6790 void SetXSecTanSlews(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6791 
6823 void SetXSecTanStrengths(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6824 
6856 void SetXSecCurvatures(const string&in xsec_id, int side, double top, double right = - 1.0e12, double bottom = - 1.0e12, double left = - 1.0e12);
6857 
6879 void ReadFileAirfoil(const string&in xsec_id, const string&in file_name);
6880 
6916 void SetAirfoilPnts(const string&in xsec_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec);
6917 
6946 vec3d[]@ GetHersheyBarLiftDist(const int&in npts, const double&in alpha, const double&in Vinf, const double&in span, bool full_span_flag = false);
6947 
6976 vec3d[]@ GetHersheyBarDragDist(const int&in npts, const double&in alpha, const double&in Vinf, const double&in span, bool full_span_flag = false);
6977 
7008 vec3d[]@ GetVKTAirfoilPnts(const int&in npts, const double&in alpha, const double&in epsilon, const double&in kappa, const double&in tau);
7009 
7041 double[]@ GetVKTAirfoilCpDist(const double&in alpha, const double&in epsilon, const double&in kappa, const double&in tau, vec3d[]@ xydata);
7042 
7057 vec3d[]@ GetEllipsoidSurfPnts(const vec3d&in center, const vec3d&in abc_rad, int u_npts = 20, int w_npts = 20);
7058 
7068 vec3d[]@ GetFeatureLinePnts(const string&in geom_id);
7069 
7116 double[]@ GetEllipsoidCpDist(vec3d[]@ surf_pnt_arr, const vec3d&in abc_rad, const vec3d&in V_inf);
7117 
7142 vec3d[]@ GetAirfoilUpperPnts(const string&in xsec_id);
7143 
7168 vec3d[]@ GetAirfoilLowerPnts(const string&in xsec_id);
7169 
7180 double[]@ GetUpperCSTCoefs(const string&in xsec_id);
7181 
7192 double[]@ GetLowerCSTCoefs(const string&in xsec_id);
7193 
7204 int GetUpperCSTDegree(const string&in xsec_id);
7205 
7216 int GetLowerCSTDegree(const string&in xsec_id);
7217 
7229 void SetUpperCST(const string&in xsec_id, int deg, double[]@ coeff_arr);
7230 
7242 void SetLowerCST(const string&in xsec_id, int deg, double[]@ coeff_arr);
7243 
7253 void PromoteCSTUpper(const string&in xsec_id);
7254 
7264 void PromoteCSTLower(const string&in xsec_id);
7265 
7275 void DemoteCSTUpper(const string&in xsec_id);
7276 
7286 void DemoteCSTLower(const string&in xsec_id);
7287 
7298 void FitAfCST(const string&in xsec_surf_id, int xsec_index, int deg);
7299 
7320 void WriteBezierAirfoil(const string&in file_name, const string&in geom_id, const double&in foilsurf_u);
7321 
7342 void WriteSeligAirfoil(const string&in file_name, const string&in geom_id, const double&in foilsurf_u);
7343 
7354 vec3d[]@ GetAirfoilCoordinates(const string&in geom_id, const double&in foilsurf_u);
7355 
7382 void EditXSecInitShape(const string&in xsec_id);
7383 
7410 void EditXSecConvertTo(const string&in xsec_id, const int&in newtype);
7411 
7438 double[]@ GetEditXSecUVec(const string&in xsec_id);
7439 
7465 vec3d[]@ GetEditXSecCtrlVec(const string&in xsec_id, const bool non_dimensional = true);
7466 
7514 void SetEditXSecPnts(const string&in xsec_id, double[]@ u_vec, vec3d[]@ control_pts);
7515 
7541 void EditXSecDelPnt(const string&in xsec_id, const int&in indx);
7542 
7565 int EditXSecSplit01(const string&in xsec_id, const double&in u);
7566 
7601 void MoveEditXSecPnt(const string&in xsec_id, const int&in indx, const vec3d&in new_pnt);
7602 
7629 void ConvertXSecToEdit(const string&in geom_id, const int&in indx = 0);
7630 
7662 bool[]@ GetEditXSecFixedUVec(const string&in xsec_id);
7663 
7695 void SetEditXSecFixedUVec(const string&in xsec_id, bool[]@ fixed_u_vec);
7696 
7728 void ReparameterizeEditXSec(const string&in xsec_id);
7729 
7748 void ChangeBORXSecShape(const string&in geom_id, int type);
7749 
7767 int GetBORXSecShape(const string&in geom_id);
7768 
7781 int GetNumSets();
7782 
7798 void SetSetName(int index, const string&in name);
7799 
7815 string GetSetName(int index);
7816 
7836 string[]@ GetGeomSetAtIndex(int index);
7837 
7856 string[]@ GetGeomSet(const string&in name);
7857 
7872 int GetSetIndex(const string&in name);
7873 
7892 bool GetSetFlag(const string&in geom_id, int set_index);
7893 
7912 void SetSetFlag(const string&in geom_id, int set_index, bool flag);
7913 
7938 void CopyPasteSet(int copyIndex, int pasteIndex);
7939 
7958 void ScaleSet(int set_index, double scale);
7959 
7980 void RotateSet(int set_index, double x_rot_deg, double y_rot_deg, double z_rot_deg);
7981 
8000 void TranslateSet(int set_index, const vec3d&in translation_vec);
8001 
8026 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);
8027 
8045 bool ValidParm(const string&in id);
8046 
8072 double SetParmVal(const string&in parm_id, double val);
8073 
8094 double SetParmValLimits(const string&in parm_id, double val, double lower_limit, double upper_limit);
8095 
8115 double SetParmValUpdate(const string&in parm_id, double val);
8116 
8135 double SetParmVal(const string&in geom_id, const string&in name, const string&in group, double val);
8136 
8156 double SetParmValUpdate(const string&in geom_id, const string&in parm_name, const string&in parm_group_name, double val);
8157 
8181 double GetParmVal(const string&in parm_id);
8182 
8201 double GetParmVal(const string&in geom_id, const string&in name, const string&in group);
8202 
8220 int GetIntParmVal(const string&in parm_id);
8221 
8239 bool GetBoolParmVal(const string&in parm_id);
8240 
8267 void SetParmUpperLimit(const string&in parm_id, double val);
8268 
8286 double GetParmUpperLimit(const string&in parm_id);
8287 
8314 void SetParmLowerLimit(const string&in parm_id, double val);
8315 
8333 double GetParmLowerLimit(const string&in parm_id);
8334 
8357 int GetParmType(const string&in parm_id);
8358 
8390 string GetParmName(const string&in parm_id);
8391 
8416 string GetParmGroupName(const string&in parm_id);
8417 
8442 string GetParmDisplayGroupName(const string&in parm_id);
8443 
8467 string GetParmContainer(const string&in parm_id);
8468 
8485 void SetParmDescript(const string&in parm_id, const string&in desc);
8486 
8507 string FindParm(const string&in parm_container_id, const string&in parm_name, const string&in group_name);
8508 
8528 string GetParm(const string&in geom_id, const string&in name, const string&in group);
8529 
8550 string[]@ FindContainers();
8551 
8566 string[]@ FindContainersWithName(const string&in name);
8567 
8583 string FindContainer(const string&in name, int index);
8584 
8599 string GetContainerName(const string&in parm_container_id);
8600 
8623 string[]@ FindContainerGroupNames(const string&in parm_container_id);
8624 
8656 string[]@ FindContainerParmIDs(const string&in parm_container_id);
8657 
8681 double ComputeMinClearanceDistance(const string&in geom_id, int set);
8682 
8709 double SnapParm(const string&in parm_id, double target_min_dist, bool inc_flag, int set);
8710 
8727 void AddVarPresetGroup(const string&in group_name);
8728 
8747 void AddVarPresetSetting(const string&in setting_name);
8748 
8769 void AddVarPresetParm(const string&in parm_ID);
8770 
8790 void AddVarPresetParm(const string&in parm_ID, const string&in group_name);
8791 
8815 void EditVarPresetParm(const string&in parm_ID, double parm_val);
8816 
8844 void EditVarPresetParm(const string&in parm_ID, double parm_val, const string&in group_name, const string&in setting_name);
8845 
8868 void DeleteVarPresetParm(const string&in parm_ID);
8869 
8895 void DeleteVarPresetParm(const string&in parm_ID, const string&in group_name);
8896 
8922 void SwitchVarPreset(const string&in group_name, const string&in setting_name);
8923 
8943 bool DeleteVarPresetSet(const string&in group_name, const string&in setting_name);
8944 
8973 string GetCurrentGroupName();
8974 
9003 string GetCurrentSettingName();
9004 
9021 string[]@ GetVarPresetGroupNames();
9022 
9042 string[]@ GetVarPresetSettingNamesWName(const string&in group_name);
9043 
9074 string[]@ GetVarPresetSettingNamesWIndex(int group_index);
9075 
9102 double[]@ GetVarPresetParmVals();
9103 
9135 double[]@ GetVarPresetParmValsWNames(const string&in group_name, const string&in setting_name);
9136 
9161 string[]@ GetVarPresetParmIDs();
9162 
9191 string[]@ GetVarPresetParmIDsWName(const string&in group_name);
9192 
9206 void SetPCurve(const string&in geom_id, const int&in pcurveid, double[]@ tvec, double[]@ valvec, const int&in newtype);
9207 
9219 void PCurveConvertTo(const string&in geom_id, const int&in pcurveid, const int&in newtype);
9220 
9232 int PCurveGetType(const string&in geom_id, const int&in pcurveid);
9233 
9244 double[]@ PCurveGetTVec(const string&in geom_id, const int&in pcurveid);
9245 
9256 double[]@ PCurveGetValVec(const string&in geom_id, const int&in pcurveid);
9257 
9268 void PCurveDeletePt(const string&in geom_id, const int&in pcurveid, const int&in indx);
9269 
9281 int PCurveSplit(const string&in geom_id, const int&in pcurveid, const double&in tsplit);
9282 
9299 void AddExcrescence(const string&in excresName, const int&in excresType, const double&in excresVal);
9300 
9318 void DeleteExcrescence(const int&in excresName);
9319 
9327 void UpdateParasiteDrag();
9328 
9345 void WriteAtmosphereCSVFile(const string&in file_name, const int&in atmos_type);
9346 
9373 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);
9374 
9387 void WriteBodyFFCSVFile(const string&in file_name);
9388 
9401 void WriteWingFFCSVFile(const string&in file_name);
9402 
9415 void WriteCfEqnCSVFile(const string&in file_name);
9416 
9429 void WritePartialCfMethodCSVFile(const string&in file_name);
9430 
9456 vec3d CompPnt01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
9457 
9483 vec3d CompNorm01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
9484 
9510 vec3d CompTanU01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
9511 
9537 vec3d CompTanW01(const string&in geom_id, const int&in surf_indx, const double&in u, const double&in w);
9538 
9566 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);
9567 
9605 double ProjPnt01(const string&in geom_id, const int&in surf_indx, const vec3d&in pt, double&out u, double&out w);
9606 
9646 double ProjPnt01I(const string&in geom_id, const vec3d&in pt, int&out surf_indx, double&out u, double&out w);
9647 
9688 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);
9689 
9730 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_ou, vec3d&out p_out);
9731 
9773 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);
9774 
9819 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);
9820 
9842 void GetUWTess01(const string&in geom_id, int&in surf_indx, double[]@ us, double[]@ ws);
9843 
9876 vec3d[]@ CompVecPnt01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws);
9877 
9910 vec3d[]@ CompVecNorm01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws);
9911 
9949 void CompVecCurvature01(const string&in geom_id, const int&in surf_indx, double[]@ us, double[]@ ws, double[]@ k1s, double[]@ k2s, double[]@ kas, double[]@ kgs);
9950 
9997 void ProjVecPnt01(const string&in geom_id, const int&in surf_indx, vec3d[]@ pts, double[]@ us, double[]@ ws, double[]@ ds);
9998 
10058 void ProjVecPnt01Guess(const string&in geom_id, const int&in surf_indx, vec3d[]@ pts, double[]@ u0s, double[]@ w0s, double[]@ us, double[]@ ws, double[]@ ds);
10059 
10122 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);
10123 
10192 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);
10193 
10224 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);
10225 
10256 string[]@ GetAllRulers();
10257 
10281 void DelRuler(const string&in id);
10282 
10305 void DeleteAllRulers();
10306 
10329 string AddProbe(const string&in geomid, int surfindx, double u, double w, const string&in name);
10330 
10352 string[]@ GetAllProbes();
10353 
10376 void DelProbe(const string&in id);
10377 
10399 void DeleteAllProbes();
10400 
10422 int AddFeaStruct(const string&in geom_id, bool init_skin = true, int surfindex = 0);
10423 
10444 void DeleteFeaStruct(const string&in geom_id, int fea_struct_ind);
10445 
10461 void SetFeaMeshStructIndex(int struct_index);
10462 
10482 string GetFeaStructID(const string&in geom_id, int fea_struct_ind);
10483 
10508 int GetFeaStructIndex(const string&in struct_id);
10509 
10531 string GetFeaStructParentGeomID(const string&in struct_id);
10532 
10558 string GetFeaStructName(const string&in geom_id, int fea_struct_ind);
10559 
10587 void SetFeaStructName(const string&in geom_id, int fea_struct_ind, const string&in name);
10588 
10609 string[]@ GetFeaStructIDVec();
10610 
10633 void SetFeaPartName(const string&in part_id, const string&in name);
10634 
10660 void SetFeaMeshVal(const string&in geom_id, int fea_struct_ind, int type, double val);
10661 
10687 void SetFeaMeshFileName(const string&in geom_id, int fea_struct_id, int file_type, const string&in file_name);
10688 
10715 void ComputeFeaMesh(const string&in geom_id, int fea_struct_ind, int file_type);
10716 
10742 void ComputeFeaMesh(const string&in struct_id, int file_type);
10743 
10770 string AddFeaPart(const string&in geom_id, int fea_struct_ind, int type);
10771 
10798 void DeleteFeaPart(const string&in geom_id, int fea_struct_ind, const string&in part_id);
10799 
10829 string GetFeaPartID(const string&in fea_struct_id, int fea_part_index);
10830 
10859 string GetFeaPartName(const string&in part_id);
10860 
10886 int GetFeaPartType(const string&in part_id);
10887 
10912 int GetFeaSubSurfIndex(const string&in ss_id);
10913 
10936 int NumFeaStructures();
10937 
10966 int NumFeaParts(const string&in fea_struct_id);
10967 
10996 int NumFeaSubSurfs(const string&in fea_struct_id);
10997 
11020 string[]@ GetFeaPartIDVec(const string&in fea_struct_id);
11021 
11044 string[]@ GetFeaSubSurfIDVec(const string&in fea_struct_id);
11045 
11085 void SetFeaPartPerpendicularSparID(const string&in part_id, const string&in perpendicular_spar_id);
11086 
11125 string GetFeaPartPerpendicularSparID(const string&in part_id);
11126 
11153 string AddFeaSubSurf(const string&in geom_id, int fea_struct_ind, int type);
11154 
11181 void DeleteFeaSubSurf(const string&in geom_id, int fea_struct_ind, const string&in ss_id);
11182 
11197 string AddFeaMaterial();
11198 
11216 string AddFeaProperty(int property_type = 0);
11217 
11230 void Print(const string&in data, bool new_line = true);
11231 
11244 void Print(const vec3d&in data, bool new_line = true);
11245 
11258 void Print(double data, bool new_line = true);
11259 
11272 void Print(int data, bool new_line = true);
11273 
11289 double Min(double x, double y);
11290 
11306 double Max(double x, double y);
11307 
11322 double Rad2Deg(double r);
11323 
11338 double Deg2Rad(double d);
11339 
11353 string GetVSPVersion();
11354 
11370 string GetVSPExePath();
11371 
11392 bool SetVSPAEROPath(const string&in path);
11393 
11411 string GetVSPAEROPath();
11412 
11433 bool CheckForVSPAERO(const string&in path);
11434 
11451 void VSPCheckSetup();
11452 
11468 void VSPRenew();
11469 
11483 
11484 
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:1938
ReparameterizeEditXSec
void ReparameterizeEditXSec(const string &in xsec_id)
CFD_FACET_FILE_NAME
@ CFD_FACET_FILE_NAME
Definition: openvsp_as.h:1177
vec3d::set_y
vec3d & set_y(double y)
DIMENSION_SET
DIMENSION_SET
Definition: openvsp_as.h:1298
VSP_FILE_DOES_NOT_EXIST
@ VSP_FILE_DOES_NOT_EXIST
Definition: openvsp_as.h:1353
FF_W_HOERNER
@ FF_W_HOERNER
Definition: openvsp_as.h:1545
GetIntAnalysisInput
int[] GetIntAnalysisInput(const string &in analysis, const string &in name, int index=0)
NOISE_FLYBY
@ NOISE_FLYBY
Definition: openvsp_as.h:2040
VSP_FILE_WRITE_FAILURE
@ VSP_FILE_WRITE_FAILURE
Definition: openvsp_as.h:1354
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:1594
VIEW_BOTTOM
@ VIEW_BOTTOM
Definition: openvsp_as.h:2018
CLOSE_SKEWLOW
@ CLOSE_SKEWLOW
Definition: openvsp_as.h:2160
CF_TURB_IMPLICIT_KARMAN_SCHOENHERR
@ CF_TURB_IMPLICIT_KARMAN_SCHOENHERR
Definition: openvsp_as.h:1219
EXPORT_SELIG_AIRFOIL
@ EXPORT_SELIG_AIRFOIL
Definition: openvsp_as.h:1410
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()
SECSWEEP_WSECT_DRIVER
@ SECSWEEP_WSECT_DRIVER
Definition: openvsp_as.h:2136
MASS_UNIT
MASS_UNIT
Definition: openvsp_as.h:1676
GetVSPExePath
string GetVSPExePath()
CFD_FAR_LOC_MAN_FLAG
@ CFD_FAR_LOC_MAN_FLAG
Definition: openvsp_as.h:1155
COMP_GEOM_TXT_TYPE
@ COMP_GEOM_TXT_TYPE
Definition: openvsp_as.h:1255
DO_NOT_USE_CF_TURB_ROUGHNESS_SCHLICHTING_LOCAL
@ DO_NOT_USE_CF_TURB_ROUGHNESS_SCHLICHTING_LOCAL
Definition: openvsp_as.h:1231
SUBSURF_TYPE
SUBSURF_TYPE
Definition: openvsp_as.h:1922
STABILITY_Q_ANALYSIS
@ STABILITY_Q_ANALYSIS
Definition: openvsp_as.h:2075
SPAR_NORMAL
@ SPAR_NORMAL
Definition: openvsp_as.h:1487
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:1123
GetCurrCustomGeom
string GetCurrCustomGeom()
CFD_INTERSECT_SUBSURFACE_FLAG
@ CFD_INTERSECT_SUBSURFACE_FLAG
Definition: openvsp_as.h:1142
CF_TURB_IMPLICIT_SCHOENHERR
@ CF_TURB_IMPLICIT_SCHOENHERR
Definition: openvsp_as.h:1218
CFD_VSPGEOM_FILE_NAME
@ CFD_VSPGEOM_FILE_NAME
Definition: openvsp_as.h:1180
FEA_IGES_FILE_NAME
@ FEA_IGES_FILE_NAME
Definition: openvsp_as.h:1445
POINT_SOURCE
@ POINT_SOURCE
Definition: openvsp_as.h:1190
SET_SHOWN
@ SET_SHOWN
Definition: openvsp_as.h:1871
CFD_NORMAL
@ CFD_NORMAL
Definition: openvsp_as.h:2085
GetCurrentGroupName
string GetCurrentGroupName()
RemoveXSecSurf
void RemoveXSecSurf(const string &in xsec_id)
PROP_MODE
PROP_MODE
Definition: openvsp_as.h:1787
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:2149
Z_DIR
@ Z_DIR
Definition: openvsp_as.h:1312
XSEC_CLOSE_TYPE
XSEC_CLOSE_TYPE
Definition: openvsp_as.h:2157
CLOSE_EXTRAP
@ CLOSE_EXTRAP
Definition: openvsp_as.h:2163
XS_SUPER_ELLIPSE
@ XS_SUPER_ELLIPSE
Definition: openvsp_as.h:2177
MESH_SLICE_TRI
@ MESH_SLICE_TRI
Definition: openvsp_as.h:1844
ANG_RAD
@ ANG_RAD
Definition: openvsp_as.h:1054
CFD_FAR_X_SCALE
@ CFD_FAR_X_SCALE
Definition: openvsp_as.h:1152
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:1977
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:2147
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:1227
XS_BICONVEX
@ XS_BICONVEX
Definition: openvsp_as.h:2183
PROJ_TGT_TYPE
PROJ_TGT_TYPE
Definition: openvsp_as.h:1776
CFD_NUM_FILE_NAMES
@ CFD_NUM_FILE_NAMES
Definition: openvsp_as.h:1181
GetUWTess01
void GetUWTess01(const string &in geom_id, int &in surf_indx, double[]@ us, double[]@ ws)
DeleteAllCFDSources
void DeleteAllCFDSources()
ATTACH_ROT_COMP
@ ATTACH_ROT_COMP
Definition: openvsp_as.h:1079
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)
MASS_UNIT_TONNE
@ MASS_UNIT_TONNE
Definition: openvsp_as.h:1680
SET_3D
@ SET_3D
Definition: openvsp_as.h:1300
VSP_WRONG_XSEC_TYPE
@ VSP_WRONG_XSEC_TYPE
Definition: openvsp_as.h:1355
DO_NOT_USE_CF_TURB_SCHLICHTING_PRANDTL
@ DO_NOT_USE_CF_TURB_SCHLICHTING_PRANDTL
Definition: openvsp_as.h:1226
Matrix4d::rotateZ
void rotateZ(const double &in ang)
GetGeomChildren
string[] GetGeomChildren(const string &in geom_id)
INVALID_TYPE
@ INVALID_TYPE
Definition: openvsp_as.h:1829
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:2116
V_UNIT_MPH
@ V_UNIT_MPH
Definition: openvsp_as.h:1978
GEOM_DRAW_WIRE
@ GEOM_DRAW_WIRE
Definition: openvsp_as.h:1333
BLEND_MATCH_IN_TE_TRAP
@ BLEND_MATCH_IN_TE_TRAP
Definition: openvsp_as.h:2115
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:1664
XS_FILE_AIRFOIL
@ XS_FILE_AIRFOIL
Definition: openvsp_as.h:2186
ErrorObj::GetErrorString
string GetErrorString()
GDEV_TAB
@ GDEV_TAB
Definition: openvsp_as.h:1574
CFD_FAR_Z_SCALE
@ CFD_FAR_Z_SCALE
Definition: openvsp_as.h:1154
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:1652
vec3d::mag
double mag() const
EXPORT_STEP_STRUCTURE
@ EXPORT_STEP_STRUCTURE
Definition: openvsp_as.h:1413
FEA_XSEC_PIPE
@ FEA_XSEC_PIPE
Definition: openvsp_as.h:1424
MAX_CAMB
@ MAX_CAMB
Definition: openvsp_as.h:1112
IMPORT_PTS
@ IMPORT_PTS
Definition: openvsp_as.h:1625
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:1497
DISPLAY_TYPE
DISPLAY_TYPE
Definition: openvsp_as.h:1319
SS_LINE_ARRAY
@ SS_LINE_ARRAY
Definition: openvsp_as.h:1928
VIEW_TOP
@ VIEW_TOP
Definition: openvsp_as.h:2017
XS_SHIFT_LE
@ XS_SHIFT_LE
Definition: openvsp_as.h:2239
GetAllDataNames
string[] GetAllDataNames(const string &in results_id)
PRES_UNIT_INCHHG
@ PRES_UNIT_INCHHG
Definition: openvsp_as.h:1739
SS_NUM_TYPES
@ SS_NUM_TYPES
Definition: openvsp_as.h:1929
ScaleSet
void ScaleSet(int set_index, double scale)
CFD_NUM_TYPES
@ CFD_NUM_TYPES
Definition: openvsp_as.h:2090
GDEV_BEGIN_SAME_LINE
@ GDEV_BEGIN_SAME_LINE
Definition: openvsp_as.h:1599
PCURV_TYPE
PCURV_TYPE
Definition: openvsp_as.h:1718
VIEW_NUM
VIEW_NUM
Definition: openvsp_as.h:1989
DELIM_USCORE
@ DELIM_USCORE
Definition: openvsp_as.h:1288
NO_END_CAP
@ NO_END_CAP
Definition: openvsp_as.h:1122
NUM_PROP_PCURVE
@ NUM_PROP_PCURVE
Definition: openvsp_as.h:1809
SYM_XSEC_TYPE
SYM_XSEC_TYPE
Definition: openvsp_as.h:1952
SetXSecTanStrengths
void SetXSecTanStrengths(const string &in xsec_id, int side, double top, double right=- 1.0e12, double bottom=- 1.0e12, double left=- 1.0e12)
vec3d::operator*
vec3d operator*(double b) const
FEA_FIX_POINT
@ FEA_FIX_POINT
Definition: openvsp_as.h:1470
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:1458
SetXSecHeight
void SetXSecHeight(const string &in xsec_id, double h)
GEOM_DRAW_NONE
@ GEOM_DRAW_NONE
Definition: openvsp_as.h:1337
NOISE_STEADY
@ NOISE_STEADY
Definition: openvsp_as.h:2042
V_UNIT_MACH
@ V_UNIT_MACH
Definition: openvsp_as.h:1982
BOR_UPPER
@ BOR_UPPER
Definition: openvsp_as.h:1101
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:1991
ATMOS_TYPE_MANUAL_RE_L
@ ATMOS_TYPE_MANUAL_RE_L
Definition: openvsp_as.h:1069
MPA_UNIT
@ MPA_UNIT
Definition: openvsp_as.h:1513
Matrix4d
A class for representing 4x4 matricies.
Definition: openvsp_as.h:789
FEA_MASS_FILE_NAME
@ FEA_MASS_FILE_NAME
Definition: openvsp_as.h:1436
SYM_FLAG
SYM_FLAG
Definition: openvsp_as.h:1936
XS_ROUNDED_RECTANGLE
@ XS_ROUNDED_RECTANGLE
Definition: openvsp_as.h:2178
FF_W_EDET_CONV
@ FF_W_EDET_CONV
Definition: openvsp_as.h:1543
EXPORT_IGES_STRUCTURE
@ EXPORT_IGES_STRUCTURE
Definition: openvsp_as.h:1412
DeleteFeaStruct
void DeleteFeaStruct(const string &in geom_id, int fea_struct_ind)
SYM_NUM_TYPES
@ SYM_NUM_TYPES
Definition: openvsp_as.h:1945
CFD_HALF_MESH_FLAG
@ CFD_HALF_MESH_FLAG
Definition: openvsp_as.h:1143
SetXSecWidth
void SetXSecWidth(const string &in xsec_id, double w)
EXCRESCENCE_MARGIN
@ EXCRESCENCE_MARGIN
Definition: openvsp_as.h:1379
PROJ_DIR_TYPE
PROJ_DIR_TYPE
Definition: openvsp_as.h:1762
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:1738
FEA_GMSH_FILE_NAME
@ FEA_GMSH_FILE_NAME
Definition: openvsp_as.h:1441
EXPORT_OBJ
@ EXPORT_OBJ
Definition: openvsp_as.h:1409
NUM_REF_TYPES
@ NUM_REF_TYPES
Definition: openvsp_as.h:1820
SetDriverGroup
void SetDriverGroup(const string &in geom_id, int section_index, int driver_0, int driver_1, int driver_2)
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:1399
EDIT_XSEC_ELLIPSE
@ EDIT_XSEC_ELLIPSE
Definition: openvsp_as.h:1639
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:1356
DelProbe
void DelProbe(const string &in id)
BFT_UNIT
@ BFT_UNIT
Definition: openvsp_as.h:1514
XS_POINT
@ XS_POINT
Definition: openvsp_as.h:2174
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:2227
PCurveGetValVec
double[] PCurveGetValVec(const string &in geom_id, const int &in pcurveid)
EXPORT_VSPGEOM
@ EXPORT_VSPGEOM
Definition: openvsp_as.h:1396
STABILITY_P_ANALYSIS
@ STABILITY_P_ANALYSIS
Definition: openvsp_as.h:2074
XS_GENERAL_FUSE
@ XS_GENERAL_FUSE
Definition: openvsp_as.h:2179
BEZIER_AF_EXPORT
@ BEZIER_AF_EXPORT
Definition: openvsp_as.h:1045
GDEV_SLIDER_ADJ_RANGE_TWO_INPUT
@ GDEV_SLIDER_ADJ_RANGE_TWO_INPUT
Definition: openvsp_as.h:1592
FEA_EXPORT_TYPE
FEA_EXPORT_TYPE
Definition: openvsp_as.h:1434
BOR_FLOWTHROUGH
@ BOR_FLOWTHROUGH
Definition: openvsp_as.h:1100
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:2203
LE_NORMAL
@ LE_NORMAL
Definition: openvsp_as.h:1485
GetNumXSecSurfs
int GetNumXSecSurfs(const string &in geom_id)
PATCH_TYPE
PATCH_TYPE
Definition: openvsp_as.h:1704
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:1301
vec3d::reflect_xy
vec3d reflect_xy()
BLEND_MATCH_OUT_TE_TRAP
@ BLEND_MATCH_OUT_TE_TRAP
Definition: openvsp_as.h:2117
FF_W_TORENBEEK
@ FF_W_TORENBEEK
Definition: openvsp_as.h:1549
GetFeaPartID
string GetFeaPartID(const string &in fea_struct_id, int fea_part_index)
TEMP_UNIT_K
@ TEMP_UNIT_K
Definition: openvsp_as.h:1964
NUM_PCURV_TYPE
@ NUM_PCURV_TYPE
Definition: openvsp_as.h:1724
DISPLAY_DEGEN_PLATE
@ DISPLAY_DEGEN_PLATE
Definition: openvsp_as.h:1323
PROP_CHORD
@ PROP_CHORD
Definition: openvsp_as.h:1800
SYM_ROT_X
@ SYM_ROT_X
Definition: openvsp_as.h:1941
XY_BODY
@ XY_BODY
Definition: openvsp_as.h:1496
FF_B_EQN
FF_B_EQN
Definition: openvsp_as.h:1522
UpdateParasiteDrag
void UpdateParasiteDrag()
CF_LAM_BLASIUS
@ CF_LAM_BLASIUS
Definition: openvsp_as.h:1204
SetGeomDrawType
void SetGeomDrawType(const string &in geom_id, int type)
SS_INC_TREAT_AS_PARENT
@ SS_INC_TREAT_AS_PARENT
Definition: openvsp_as.h:1892
GetActiveCSNameVec
string[] GetActiveCSNameVec(int CSGroupIndex)
XS_FIVE_DIGIT
@ XS_FIVE_DIGIT
Definition: openvsp_as.h:2190
FF_W_KROO
@ FF_W_KROO
Definition: openvsp_as.h:1548
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:1175
SetXSecWidthHeight
void SetXSecWidthHeight(const string &in xsec_id, double w, double h)
XS_EDIT_CURVE
@ XS_EDIT_CURVE
Definition: openvsp_as.h:2185
SetVSPAEROControlGroupName
void SetVSPAEROControlGroupName(const string &in name, int CSGroupIndex)
INIT_EDIT_XSEC_TYPE
INIT_EDIT_XSEC_TYPE
Definition: openvsp_as.h:1636
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:1287
CFD_SRF_XYZ_FLAG
@ CFD_SRF_XYZ_FLAG
Definition: openvsp_as.h:1159
CF_TURB_EXPLICIT_FIT_SPALDING_CHI
@ CF_TURB_EXPLICIT_FIT_SPALDING_CHI
Definition: openvsp_as.h:1215
BOR_NUM_MODES
@ BOR_NUM_MODES
Definition: openvsp_as.h:1103
ROUND_END_CAP
@ ROUND_END_CAP
Definition: openvsp_as.h:1124
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)
PRECON_JACOBI
@ PRECON_JACOBI
Definition: openvsp_as.h:2062
vec3d::normalize
void normalize()
EXPORT_FELISA
@ EXPORT_FELISA
Definition: openvsp_as.h:1389
STRING_DATA
@ STRING_DATA
Definition: openvsp_as.h:1832
DEGEN_GEOM_M_TYPE
@ DEGEN_GEOM_M_TYPE
Definition: openvsp_as.h:1261
ATTACH_ROT_UV
@ ATTACH_ROT_UV
Definition: openvsp_as.h:1080
GDEV_SET_FORMAT
@ GDEV_SET_FORMAT
Definition: openvsp_as.h:1602
LEN_UNITS
LEN_UNITS
Definition: openvsp_as.h:1661
EXPORT_X3D
@ EXPORT_X3D
Definition: openvsp_as.h:1400
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:1974
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:2063
GEOM_TARGET
@ GEOM_TARGET
Definition: openvsp_as.h:1779
YZ_ABS
@ YZ_ABS
Definition: openvsp_as.h:1500
BOR_LOWER
@ BOR_LOWER
Definition: openvsp_as.h:1102
EXPORT_STL
@ EXPORT_STL
Definition: openvsp_as.h:1391
BLEND_MATCH_IN_ANGLES
@ BLEND_MATCH_IN_ANGLES
Definition: openvsp_as.h:2118
ROT_180
@ ROT_180
Definition: openvsp_as.h:2005
ROT_90
@ ROT_90
Definition: openvsp_as.h:2004
GEOM_DRAW_HIDDEN
@ GEOM_DRAW_HIDDEN
Definition: openvsp_as.h:1334
GetCustomXSecLoc
vec3d GetCustomXSecLoc(const string &in xsec_id)
GetEditXSecUVec
double[] GetEditXSecUVec(const string &in xsec_id)
REL
@ REL
Definition: openvsp_as.h:1035
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:1588
PasteGeomClipboard
string[] PasteGeomClipboard(const string &in parent_id="")
FEA_NUM_FILE_NAMES
@ FEA_NUM_FILE_NAMES
Definition: openvsp_as.h:1447
ATMOS_TYPE_US_STANDARD_1976
@ ATMOS_TYPE_US_STANDARD_1976
Definition: openvsp_as.h:1064
EDIT_XSEC_RECTANGLE
@ EDIT_XSEC_RECTANGLE
Definition: openvsp_as.h:1640
PROP_BLADES
@ PROP_BLADES
Definition: openvsp_as.h:1789
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:2114
MANUAL_REF
@ MANUAL_REF
Definition: openvsp_as.h:1818
PROP_PCURVE
PROP_PCURVE
Definition: openvsp_as.h:1798
RemoveAllFromVSPAEROControlSurfaceGroup
void RemoveAllFromVSPAEROControlSurfaceGroup(int CSGroupIndex)
FEA_XSEC_BOX
@ FEA_XSEC_BOX
Definition: openvsp_as.h:1427
PATCH_POINT
@ PATCH_POINT
Definition: openvsp_as.h:1707
DeleteFeaPart
void DeleteFeaPart(const string &in geom_id, int fea_struct_ind, const string &in part_id)
ABS
@ ABS
Definition: openvsp_as.h:1034
PRES_UNIT_MMHG
@ PRES_UNIT_MMHG
Definition: openvsp_as.h:1740
XS_UNDEFINED
@ XS_UNDEFINED
Definition: openvsp_as.h:2173
CFD_TRI_FILE_NAME
@ CFD_TRI_FILE_NAME
Definition: openvsp_as.h:1170
CFD_FACET_TYPE
@ CFD_FACET_TYPE
Definition: openvsp_as.h:1275
DOUBLE_DATA
@ DOUBLE_DATA
Definition: openvsp_as.h:1831
vec3d::z
double z() const
XS_NUM_TYPES
@ XS_NUM_TYPES
Definition: openvsp_as.h:2193
COLLISION_ERRORS
COLLISION_ERRORS
Definition: openvsp_as.h:1241
SET_ALL
@ SET_ALL
Definition: openvsp_as.h:1870
DIR_INDEX
DIR_INDEX
Definition: openvsp_as.h:1308
VSP_INVALID_GEOM_ID
@ VSP_INVALID_GEOM_ID
Definition: openvsp_as.h:1352
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:1593
XSEC_BOTH_SIDES
@ XSEC_BOTH_SIDES
Definition: openvsp_as.h:2202
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:1808
GetContainerName
string GetContainerName(const string &in parm_container_id)
FEA_CURV_FILE_NAME
@ FEA_CURV_FILE_NAME
Definition: openvsp_as.h:1443
CFD_FAR_FIELD_FLAG
@ CFD_FAR_FIELD_FLAG
Definition: openvsp_as.h:1144
IMPORT_V2
@ IMPORT_V2
Definition: openvsp_as.h:1626
BIN_UNIT
@ BIN_UNIT
Definition: openvsp_as.h:1515
LEN_UNITLESS
@ LEN_UNITLESS
Definition: openvsp_as.h:1669
CEDIT
@ CEDIT
Definition: openvsp_as.h:1722
GDEV_SLIDER_ADJ_RANGE_INPUT
@ GDEV_SLIDER_ADJ_RANGE_INPUT
Definition: openvsp_as.h:1591
DISK_SURF
@ DISK_SURF
Definition: openvsp_as.h:2101
SilenceErrors
void SilenceErrors()
CF_TURB_HEATTRANSFER_WHITE_CHRISTOPH
@ CF_TURB_HEATTRANSFER_WHITE_CHRISTOPH
Definition: openvsp_as.h:1234
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:1622
AR_WSECT_DRIVER
@ AR_WSECT_DRIVER
Definition: openvsp_as.h:2129
GetCurrentSettingName
string GetCurrentSettingName()
Matrix4d::loadXZRef
void loadXZRef()
FREESTREAM_PD_UNITS
FREESTREAM_PD_UNITS
Definition: openvsp_as.h:1562
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:1696
VIEW_2HOR
@ VIEW_2HOR
Definition: openvsp_as.h:1992
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:1475
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:1582
DO_NOT_USE_CF_TURB_ROUGHNESS_WHITE
@ DO_NOT_USE_CF_TURB_ROUGHNESS_WHITE
Definition: openvsp_as.h:1232
DemoteCSTUpper
void DemoteCSTUpper(const string &in xsec_id)
EXPORT_TYPE
EXPORT_TYPE
Definition: openvsp_as.h:1387
DRAW_TYPE
DRAW_TYPE
Definition: openvsp_as.h:1331
FindActuatorDisk
string FindActuatorDisk(int disk_index)
PARM_FRACTION_TYPE
@ PARM_FRACTION_TYPE
Definition: openvsp_as.h:1695
NO_FILE_TYPE
@ NO_FILE_TYPE
Definition: openvsp_as.h:1254
GetVarPresetParmIDs
string[] GetVarPresetParmIDs()
PRES_UNIT_ATM
@ PRES_UNIT_ATM
Definition: openvsp_as.h:1743
LEN_FT
@ LEN_FT
Definition: openvsp_as.h:1667
CFD_FAR_MAX_GAP
@ CFD_FAR_MAX_GAP
Definition: openvsp_as.h:1146
VEC_PROJ
@ VEC_PROJ
Definition: openvsp_as.h:1768
DeleteResult
void DeleteResult(const string &in id)
GetNumUnsteadyRotorGroups
int GetNumUnsteadyRotorGroups()
FEA_UNIT_TYPE
FEA_UNIT_TYPE
Definition: openvsp_as.h:1509
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:1420
SET_TYPE
SET_TYPE
Definition: openvsp_as.h:1867
VIEW_REAR
@ VIEW_REAR
Definition: openvsp_as.h:2020
FEA_SLICE
@ FEA_SLICE
Definition: openvsp_as.h:1467
ExecAnalysis
string ExecAnalysis(const string &in analysis)
VSP_INVALID_VARPRESET_GROUPNAME
@ VSP_INVALID_VARPRESET_GROUPNAME
Definition: openvsp_as.h:1363
ClearXSecSurfs
void ClearXSecSurfs()
SetFeaMeshFileName
void SetFeaMeshFileName(const string &in geom_id, int fea_struct_id, int file_type, const string &in file_name)
XSEC_TYPE
XSEC_TYPE
Definition: openvsp_as.h:2223
CloneSurf
void CloneSurf(int index, Matrix4d &in mat)
FF_B_JENKINSON_FUSE
@ FF_B_JENKINSON_FUSE
Definition: openvsp_as.h:1531
SHARP_END_CAP
@ SHARP_END_CAP
Definition: openvsp_as.h:1126
AIRFOIL_EXPORT_TYPE
AIRFOIL_EXPORT_TYPE
Definition: openvsp_as.h:1042
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)
GetBORXSecShape
int GetBORXSecShape(const string &in geom_id)
VSP_INVALID_INPUT_VAL
@ VSP_INVALID_INPUT_VAL
Definition: openvsp_as.h:1366
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:2137
GetUnsteadyGroupSurfIndexes
int[] GetUnsteadyGroupSurfIndexes(int group_index)
VSP_AMBIGUOUS_SUBSURF
@ VSP_AMBIGUOUS_SUBSURF
Definition: openvsp_as.h:1361
PRES_UNIT_BA
@ PRES_UNIT_BA
Definition: openvsp_as.h:1735
ATMOS_TYPE_HERRINGTON_1966
@ ATMOS_TYPE_HERRINGTON_1966
Definition: openvsp_as.h:1065
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:1360
NUM_PROJ_DIR_OPTIONS
@ NUM_PROJ_DIR_OPTIONS
Definition: openvsp_as.h:1769
FindContainerGroupNames
string[] FindContainerGroupNames(const string &in parm_container_id)
CF_TURB_POWER_LAW_BLASIUS
@ CF_TURB_POWER_LAW_BLASIUS
Definition: openvsp_as.h:1220
AddFeaMaterial
string AddFeaMaterial()
XSEC_STACK
@ XSEC_STACK
Definition: openvsp_as.h:2226
vec3d::x
double x() const
V_UNIT_KM_HR
@ V_UNIT_KM_HR
Definition: openvsp_as.h:1979
PRES_UNIT_PSF
@ PRES_UNIT_PSF
Definition: openvsp_as.h:1733
VSP_CANT_FIND_TYPE
@ VSP_CANT_FIND_TYPE
Definition: openvsp_as.h:1349
IMPORT_P3D_WIRE
@ IMPORT_P3D_WIRE
Definition: openvsp_as.h:1629
EXPORT_IGES
@ EXPORT_IGES
Definition: openvsp_as.h:1403
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:1446
MASS_UNIT_KG
@ MASS_UNIT_KG
Definition: openvsp_as.h:1679
CFD_OBJ_FILE_NAME
@ CFD_OBJ_FILE_NAME
Definition: openvsp_as.h:1171
CFD_FAR_WIDTH
@ CFD_FAR_WIDTH
Definition: openvsp_as.h:1150
NUM_PROJ_BNDY_OPTIONS
@ NUM_PROJ_BNDY_OPTIONS
Definition: openvsp_as.h:1755
GetAllRulers
string[] GetAllRulers()
GetParmName
string GetParmName(const string &in parm_id)
PROP_SKEW
@ PROP_SKEW
Definition: openvsp_as.h:1803
IMPORT_TYPE
IMPORT_TYPE
Definition: openvsp_as.h:1619
GetNumDesignVars
int GetNumDesignVars()
STABILITY_R_ANALYSIS
@ STABILITY_R_ANALYSIS
Definition: openvsp_as.h:2076
STEP_SHELL
@ STEP_SHELL
Definition: openvsp_as.h:1882
XS_WEDGE
@ XS_WEDGE
Definition: openvsp_as.h:2184
GetSubSurf
string GetSubSurf(const string &in geom_id, int index)
AddXSecSurf
string AddXSecSurf()
SELIG_AF_EXPORT
@ SELIG_AF_EXPORT
Definition: openvsp_as.h:1044
EDGE_END_CAP
@ EDGE_END_CAP
Definition: openvsp_as.h:1125
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:1127
CompVecPnt01
vec3d[] CompVecPnt01(const string &in geom_id, const int &in surf_indx, double[]@ us, double[]@ ws)
MALE
@ MALE
Definition: openvsp_as.h:1611
FF_W_WILLIAMS
@ FF_W_WILLIAMS
Definition: openvsp_as.h:1547
IMPORT_XSEC_MESH
@ IMPORT_XSEC_MESH
Definition: openvsp_as.h:1624
FEA_SLICE_ARRAY
@ FEA_SLICE_ARRAY
Definition: openvsp_as.h:1473
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:1926
GetFeaStructName
string GetFeaStructName(const string &in geom_id, int fea_struct_ind)
PrintResults
void PrintResults(const string &in id)
STEP_BREP
@ STEP_BREP
Definition: openvsp_as.h:1883
SUBSURF_INCLUDE
SUBSURF_INCLUDE
Definition: openvsp_as.h:1890
GetXSecParmIDs
string[] GetXSecParmIDs(const string &in xsec_id)
XSEC_WIDTH_SHIFT
XSEC_WIDTH_SHIFT
Definition: openvsp_as.h:2237
X_PROJ
@ X_PROJ
Definition: openvsp_as.h:1764
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:1980
ComputeDegenGeom
void ComputeDegenGeom(int set, int file_type)
EXCRESCENCE_CD
@ EXCRESCENCE_CD
Definition: openvsp_as.h:1377
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:1872
FF_B_MANUAL
@ FF_B_MANUAL
Definition: openvsp_as.h:1524
OUTSIDE
@ OUTSIDE
Definition: openvsp_as.h:1904
WING_SURF
@ WING_SURF
Definition: openvsp_as.h:2100
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:1499
VSPAERO_NOISE_TYPE
VSPAERO_NOISE_TYPE
Definition: openvsp_as.h:2038
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:1468
FEA_XSEC_RECT
@ FEA_XSEC_RECT
Definition: openvsp_as.h:1426
SUBSURF_INOUT
SUBSURF_INOUT
Definition: openvsp_as.h:1901
VSP_INVALID_ID
@ VSP_INVALID_ID
Definition: openvsp_as.h:1359
SetFeaMeshVal
void SetFeaMeshVal(const string &in geom_id, int fea_struct_ind, int type, double val)
LEN_IN
@ LEN_IN
Definition: openvsp_as.h:1666
PATCH_NUM_TYPES
@ PATCH_NUM_TYPES
Definition: openvsp_as.h:1711
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:1393
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:1731
PARM_BOOL_TYPE
@ PARM_BOOL_TYPE
Definition: openvsp_as.h:1694
SYM_ROT_Z
@ SYM_ROT_Z
Definition: openvsp_as.h:1943
VSP_INVALID_XSEC_ID
@ VSP_INVALID_XSEC_ID
Definition: openvsp_as.h:1358
CFD_DAT_FILE_NAME
@ CFD_DAT_FILE_NAME
Definition: openvsp_as.h:1172
FindLatestResultsID
string FindLatestResultsID(const string &in name)
ATTACH_TRANS_COMP
@ ATTACH_TRANS_COMP
Definition: openvsp_as.h:1090
SUBSURF_LINE_TYPE
SUBSURF_LINE_TYPE
Definition: openvsp_as.h:1912
FEA_STL_FILE_NAME
@ FEA_STL_FILE_NAME
Definition: openvsp_as.h:1440
CopyCustomXSec
void CopyCustomXSec(const string &in xsec_surf_id, int index)
VSPAERO_ANALYSIS_METHOD
VSPAERO_ANALYSIS_METHOD
Definition: openvsp_as.h:2028
NO_NORMAL
@ NO_NORMAL
Definition: openvsp_as.h:1484
NONE
@ NONE
Definition: openvsp_as.h:1905
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:1350
DelRuler
void DelRuler(const string &in id)
CFD_LIMIT_GROWTH_FLAG
@ CFD_LIMIT_GROWTH_FLAG
Definition: openvsp_as.h:1141
COMPONENT_REF
@ COMPONENT_REF
Definition: openvsp_as.h:1819
CFD_NUM_CIRCLE_SEGS
@ CFD_NUM_CIRCLE_SEGS
Definition: openvsp_as.h:1139
GetXSec
string GetXSec(const string &in xsec_surf_id, int xsec_index)
GetNumUnsteadyGroups
int GetNumUnsteadyGroups()
IMPORT_STL
@ IMPORT_STL
Definition: openvsp_as.h:1621
CF_TURB_EQN
CF_TURB_EQN
Definition: openvsp_as.h:1212
VSPAERO_NOISE_UNIT
VSPAERO_NOISE_UNIT
Definition: openvsp_as.h:2049
DESIGN_CL
@ DESIGN_CL
Definition: openvsp_as.h:1113
CFD_TKEY_FILE_NAME
@ CFD_TKEY_FILE_NAME
Definition: openvsp_as.h:1176
EXPORT_PLOT3D
@ EXPORT_PLOT3D
Definition: openvsp_as.h:1402
TransformSurf
void TransformSurf(int index, Matrix4d &in mat)
COLLISION_INTERSECT_NO_SOLUTION
@ COLLISION_INTERSECT_NO_SOLUTION
Definition: openvsp_as.h:1244
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:1078
vec3d::y
double y() const
TE_NORMAL
@ TE_NORMAL
Definition: openvsp_as.h:1486
DELIM_SPACE
@ DELIM_SPACE
Definition: openvsp_as.h:1289
FindContainers
string[] FindContainers()
CF_TURB_ROUGHNESS_SCHLICHTING_AVG
@ CF_TURB_ROUGHNESS_SCHLICHTING_AVG
Definition: openvsp_as.h:1230
SetCustomXSecLoc
void SetCustomXSecLoc(const string &in xsec_id, const vec3d &in loc)
PROP_AXIAL
@ PROP_AXIAL
Definition: openvsp_as.h:1807
EXPORT_STEP
@ EXPORT_STEP
Definition: openvsp_as.h:1401
WriteAtmosphereCSVFile
void WriteAtmosphereCSVFile(const string &in file_name, const int &in atmos_type)
SS_RECTANGLE
@ SS_RECTANGLE
Definition: openvsp_as.h:1925
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:1407
DO_NOT_USE_CF_TURB_SCHLICHTING_INCOMPRESSIBLE
@ DO_NOT_USE_CF_TURB_SCHLICHTING_INCOMPRESSIBLE
Definition: openvsp_as.h:1225
CFD_FAR_MAX_EDGE_LEN
@ CFD_FAR_MAX_EDGE_LEN
Definition: openvsp_as.h:1145
EXPORT_FACET
@ EXPORT_FACET
Definition: openvsp_as.h:1406
NORMAL_SURF
@ NORMAL_SURF
Definition: openvsp_as.h:2099
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:1411
GENDER
GENDER
Definition: openvsp_as.h:1609
GetParmGroupName
string GetParmGroupName(const string &in parm_id)
WLINE_SOURCE
@ WLINE_SOURCE
Definition: openvsp_as.h:1194
FF_B_COVERT
@ FF_B_COVERT
Definition: openvsp_as.h:1530
XS_CST_AIRFOIL
@ XS_CST_AIRFOIL
Definition: openvsp_as.h:2187
BLEND_FREE
@ BLEND_FREE
Definition: openvsp_as.h:2112
SetParmVal
double SetParmVal(const string &in parm_id, double val)
LEN_YD
@ LEN_YD
Definition: openvsp_as.h:1668
NO_BOUNDARY
@ NO_BOUNDARY
Definition: openvsp_as.h:1752
CLOSE_NUM_TYPES
@ CLOSE_NUM_TYPES
Definition: openvsp_as.h:2164
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:1169
SetParmUpperLimit
void SetParmUpperLimit(const string &in parm_id, double val)
ATTACH_TRANS_UV
@ ATTACH_TRANS_UV
Definition: openvsp_as.h:1091
WriteWingFFCSVFile
void WriteWingFFCSVFile(const string &in file_name)
SYM_ROT_Y
@ SYM_ROT_Y
Definition: openvsp_as.h:1942
FEA_PART_ELEMENT_TYPE
FEA_PART_ELEMENT_TYPE
Definition: openvsp_as.h:1454
FF_W_EDET_ADV
@ FF_W_EDET_ADV
Definition: openvsp_as.h:1544
CAP_TYPE
CAP_TYPE
Definition: openvsp_as.h:1120
GetDoubleAnalysisInput
double[] GetDoubleAnalysisInput(const string &in analysis, const string &in name, int index=0)
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:1067
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:1654
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:1589
FEA_XSEC_GENERAL
@ FEA_XSEC_GENERAL
Definition: openvsp_as.h:1422
STABILITY_OFF
@ STABILITY_OFF
Definition: openvsp_as.h:2072
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:2031
ReadApplyXDDMFile
void ReadApplyXDDMFile(const string &in file_name)
XS_SHIFT_MID
@ XS_SHIFT_MID
Definition: openvsp_as.h:2240
TRIM_X
@ TRIM_X
Definition: openvsp_as.h:2214
CFD_MESH_EXPORT_TYPE
CFD_MESH_EXPORT_TYPE
Definition: openvsp_as.h:1166
CFD_MAX_GAP
@ CFD_MAX_GAP
Definition: openvsp_as.h:1138
PRES_UNIT_MMH20
@ PRES_UNIT_MMH20
Definition: openvsp_as.h:1741
RHO_UNIT_LBFSEC2_IN4
@ RHO_UNIT_LBFSEC2_IN4
Definition: openvsp_as.h:1860
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:1981
VSP_INVALID_TYPE
@ VSP_INVALID_TYPE
Definition: openvsp_as.h:1348
PROP_SWEEP
@ PROP_SWEEP
Definition: openvsp_as.h:1804
MASS_UNIT_SLUG
@ MASS_UNIT_SLUG
Definition: openvsp_as.h:1682
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:1205
GetGeomTypes
string[] GetGeomTypes()
Y_DIR
@ Y_DIR
Definition: openvsp_as.h:1311
GDEV_RADIO_BUTTON
@ GDEV_RADIO_BUTTON
Definition: openvsp_as.h:1583
FEA_NKEY_FILE_NAME
@ FEA_NKEY_FILE_NAME
Definition: openvsp_as.h:1438
XS_FIVE_DIGIT_MOD
@ XS_FIVE_DIGIT_MOD
Definition: openvsp_as.h:2191
SWEEP_WSECT_DRIVER
@ SWEEP_WSECT_DRIVER
Definition: openvsp_as.h:2138
VSP_SURF_TYPE
VSP_SURF_TYPE
Definition: openvsp_as.h:2097
ANG_UNITS
ANG_UNITS
Definition: openvsp_as.h:1052
DOUBLE_MATRIX_DATA
@ DOUBLE_MATRIX_DATA
Definition: openvsp_as.h:1834
GetFeaPartType
int GetFeaPartType(const string &in part_id)
EXPORT_PMARC
@ EXPORT_PMARC
Definition: openvsp_as.h:1408
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:1962
MESH_INDEX_AND_SLICE_TRI
@ MESH_INDEX_AND_SLICE_TRI
Definition: openvsp_as.h:1846
vec3d::scale_z
void scale_z(double scale)
PROP_TWIST
@ PROP_TWIST
Definition: openvsp_as.h:1801
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:1357
CONST_W
@ CONST_W
Definition: openvsp_as.h:1915
GetVSPAEROPath
string GetVSPAEROPath()
BLEND_MATCH_LE_ANGLES
@ BLEND_MATCH_LE_ANGLES
Definition: openvsp_as.h:2119
SetAirfoilPnts
void SetAirfoilPnts(const string &in xsec_id, vec3d[]@ up_pnt_vec, vec3d[]@ low_pnt_vec)
NOISE_FOOTPRINT
@ NOISE_FOOTPRINT
Definition: openvsp_as.h:2041
vec3d
A class for representing 3D vectors.
Definition: openvsp_as.h:349
CFD_KEY_FILE_NAME
@ CFD_KEY_FILE_NAME
Definition: openvsp_as.h:1173
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:2132
CFD_GMSH_FILE_NAME
@ CFD_GMSH_FILE_NAME
Definition: openvsp_as.h:1174
VSPAERO_PRECONDITION
VSPAERO_PRECONDITION
Definition: openvsp_as.h:2059
EDIT_XSEC_CIRCLE
@ EDIT_XSEC_CIRCLE
Definition: openvsp_as.h:1638
FEA_SLICE_TYPE
FEA_SLICE_TYPE
Definition: openvsp_as.h:1494
FEA_SHELL
@ FEA_SHELL
Definition: openvsp_as.h:1456
EXCRESCENCE_PERCENT_GEOM
@ EXCRESCENCE_PERCENT_GEOM
Definition: openvsp_as.h:1378
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:1940
VSPRenew
void VSPRenew()
DELIM_NONE
@ DELIM_NONE
Definition: openvsp_as.h:1290
BOR_MODE
BOR_MODE
Definition: openvsp_as.h:1098
GEOM_BOUNDARY
@ GEOM_BOUNDARY
Definition: openvsp_as.h:1754
SetFeaPartPerpendicularSparID
void SetFeaPartPerpendicularSparID(const string &in part_id, const string &in perpendicular_spar_id)
GDEV_GROUP
@ GDEV_GROUP
Definition: openvsp_as.h:1576
SetXSecSurfGlobalXForm
void SetXSecSurfGlobalXForm(const string &in xsec_surf_id, const Matrix4d &in mat)
GDEV_SLIDER_INPUT
@ GDEV_SLIDER_INPUT
Definition: openvsp_as.h:1590
GetSubSurfType
int GetSubSurfType(const string &in sub_id)
GetDesignVarType
int GetDesignVarType(int index)
PRES_UNIT_MB
@ PRES_UNIT_MB
Definition: openvsp_as.h:1742
SET_BOUNDARY
@ SET_BOUNDARY
Definition: openvsp_as.h:1753
VSP_INVALID_CF_EQN
@ VSP_INVALID_CF_EQN
Definition: openvsp_as.h:1367
ROT_270
@ ROT_270
Definition: openvsp_as.h:2006
GDEV_TOGGLE_BUTTON
@ GDEV_TOGGLE_BUTTON
Definition: openvsp_as.h:1584
VIEW_LEFT
@ VIEW_LEFT
Definition: openvsp_as.h:2015
WING_BLEND
WING_BLEND
Definition: openvsp_as.h:2110
NumFeaSubSurfs
int NumFeaSubSurfs(const string &in fea_struct_id)
DeleteAllDesignVars
void DeleteAllDesignVars()
PATCH_COPY
@ PATCH_COPY
Definition: openvsp_as.h:1709
FF_B_SCHEMENSKY_NACELLE
@ FF_B_SCHEMENSKY_NACELLE
Definition: openvsp_as.h:1526
GetParmLowerLimit
double GetParmLowerLimit(const string &in parm_id)
string
AngelScript ScriptExtension for representing the C++ std::string.
Definition: openvsp_as.h:193
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:1579
Matrix4d::loadIdentity
void loadIdentity()
ATMOS_TYPE
ATMOS_TYPE
Definition: openvsp_as.h:1062
Matrix4d::loadXYRef
void loadXYRef()
RHO_UNIT_TONNE_MM3
@ RHO_UNIT_TONNE_MM3
Definition: openvsp_as.h:1858
TRIM_NUM_TYPES
@ TRIM_NUM_TYPES
Definition: openvsp_as.h:2216
GetDesignVar
string GetDesignVar(int index)
TEMP_UNIT_F
@ TEMP_UNIT_F
Definition: openvsp_as.h:1966
EXCRESCENCE_COUNT
@ EXCRESCENCE_COUNT
Definition: openvsp_as.h:1376
SYM_PLANAR_TYPES
@ SYM_PLANAR_TYPES
Definition: openvsp_as.h:1944
PARM_INT_TYPE
@ PARM_INT_TYPE
Definition: openvsp_as.h:1693
DISPLAY_DEGEN_SURF
@ DISPLAY_DEGEN_SURF
Definition: openvsp_as.h:1322
file
AngelScript ScriptExtension for representing the C++ std::FILE.
Definition: openvsp_as.h:296
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:1223
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:1256
XS_ONE_SIX_SERIES
@ XS_ONE_SIX_SERIES
Definition: openvsp_as.h:2192
INTERSECT_SRF_FILE_NAME
@ INTERSECT_SRF_FILE_NAME
Definition: openvsp_as.h:1649
GetUpperCSTCoefs
double[] GetUpperCSTCoefs(const string &in xsec_id)
XS_FOUR_SERIES
@ XS_FOUR_SERIES
Definition: openvsp_as.h:2181
NOISE_ENGLISH
@ NOISE_ENGLISH
Definition: openvsp_as.h:2052
CFD_POLY_TYPE
@ CFD_POLY_TYPE
Definition: openvsp_as.h:1263
AppendCustomXSec
string AppendCustomXSec(const string &in xsec_surf_id, int type)
GDEV_TOGGLE_RADIO_GROUP
@ GDEV_TOGGLE_RADIO_GROUP
Definition: openvsp_as.h:1585
CFD_MIN_EDGE_LEN
@ CFD_MIN_EDGE_LEN
Definition: openvsp_as.h:1136
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:1158
GetProxyVec3dArray
vec3d[] GetProxyVec3dArray()
Z_PROJ
@ Z_PROJ
Definition: openvsp_as.h:1766
AddDesignVar
void AddDesignVar(const string &in parm_id, int type)
ClearVSPModel
void ClearVSPModel()
GDEV
GDEV
Definition: openvsp_as.h:1572
TEMP_UNIT_C
@ TEMP_UNIT_C
Definition: openvsp_as.h:1965
TranslateSet
void TranslateSet(int set_index, const vec3d &in translation_vec)
SS_LINE
@ SS_LINE
Definition: openvsp_as.h:1924
LINEAR
@ LINEAR
Definition: openvsp_as.h:1720
ReadVSPFile
void ReadVSPFile(const string &in file_name)
INT_DATA
@ INT_DATA
Definition: openvsp_as.h:1830
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:2103
CFD_DAT_TYPE
@ CFD_DAT_TYPE
Definition: openvsp_as.h:1266
GetSetName
string GetSetName(int index)
GDEV_SLIDER
@ GDEV_SLIDER
Definition: openvsp_as.h:1580
SPINE_NORMAL
@ SPINE_NORMAL
Definition: openvsp_as.h:1502
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:1723
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:2073
CFD_GROWTH_RATIO
@ CFD_GROWTH_RATIO
Definition: openvsp_as.h:1140
SPAN_WSECT_DRIVER
@ SPAN_WSECT_DRIVER
Definition: openvsp_as.h:2130
SYM_NONE
@ SYM_NONE
Definition: openvsp_as.h:1954
array
AngelScript ScriptExtension for representing the C++ std::vector.
Definition: openvsp_as.h:252
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:1791
AddAllToVSPAEROControlSurfaceGroup
void AddAllToVSPAEROControlSurfaceGroup(int CSGroupIndex)
CFD_FAR_NUM_CIRCLE_SEGS
@ CFD_FAR_NUM_CIRCLE_SEGS
Definition: openvsp_as.h:1147
INSIDE
@ INSIDE
Definition: openvsp_as.h:1903
XZ_BODY
@ XZ_BODY
Definition: openvsp_as.h:1498
ChangeBORXSecShape
void ChangeBORXSecShape(const string &in geom_id, int type)
SS_INC_ZERO_DRAG
@ SS_INC_ZERO_DRAG
Definition: openvsp_as.h:1894
SetGeomName
void SetGeomName(const string &in geom_id, const string &in name)
WriteTestResults
void WriteTestResults()
FF_W_JENKINSON_TAIL
@ FF_W_JENKINSON_TAIL
Definition: openvsp_as.h:1554
RHO_UNITS
RHO_UNITS
Definition: openvsp_as.h:1853
vec3d::rotate_y
void rotate_y(double cos_alpha, double sin_alpha)
DELIM_NUM_TYPES
@ DELIM_NUM_TYPES
Definition: openvsp_as.h:1291
TRIM_NONE
@ TRIM_NONE
Definition: openvsp_as.h:2213
XDDM_CONST
@ XDDM_CONST
Definition: openvsp_as.h:2150
ResetXSecSkinParms
void ResetXSecSkinParms(const string &in xsec_id)
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:1578
CFD_CURV_FILE_NAME
@ CFD_CURV_FILE_NAME
Definition: openvsp_as.h:1178
PasteCustomXSec
void PasteCustomXSec(const string &in xsec_surf_id, int index)
AddDefaultSources
void AddDefaultSources()
GEOM_PROJ
@ GEOM_PROJ
Definition: openvsp_as.h:1767
SLICE_TXT_TYPE
@ SLICE_TXT_TYPE
Definition: openvsp_as.h:1258
VSP_SURF_CFD_TYPE
VSP_SURF_CFD_TYPE
Definition: openvsp_as.h:2083
SWEEPLOC_WSECT_DRIVER
@ SWEEPLOC_WSECT_DRIVER
Definition: openvsp_as.h:2139
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:1540
SET_TARGET
@ SET_TARGET
Definition: openvsp_as.h:1778
CF_TURB_SCHULTZ_GRUNOW_SCHOENHERR
@ CF_TURB_SCHULTZ_GRUNOW_SCHOENHERR
Definition: openvsp_as.h:1228
BOX_SOURCE
@ BOX_SOURCE
Definition: openvsp_as.h:1192
DRAG_BUILD_TSV_TYPE
@ DRAG_BUILD_TSV_TYPE
Definition: openvsp_as.h:1257
NumFeaParts
int NumFeaParts(const string &in fea_struct_id)
FEA_SPAR
@ FEA_SPAR
Definition: openvsp_as.h:1469
Update
void Update(bool update_managers=true)
GDEV_COUNTER
@ GDEV_COUNTER
Definition: openvsp_as.h:1587
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:2086
RHO_UNIT_KG_M3
@ RHO_UNIT_KG_M3
Definition: openvsp_as.h:1857
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:1647
DeleteGeomVec
void DeleteGeomVec(string[]@ del_arr)
CF_TURB_SCHLICHTING_COMPRESSIBLE
@ CF_TURB_SCHLICHTING_COMPRESSIBLE
Definition: openvsp_as.h:1224
Y_PROJ
@ Y_PROJ
Definition: openvsp_as.h:1765
RHO_UNIT_LBF_FT3
@ RHO_UNIT_LBF_FT3
Definition: openvsp_as.h:1859
SYM_XZ
@ SYM_XZ
Definition: openvsp_as.h:1939
DO_NOT_USE_CF_TURB_WHITE_CHRISTOPH_COMPRESSIBLE
@ DO_NOT_USE_CF_TURB_WHITE_CHRISTOPH_COMPRESSIBLE
Definition: openvsp_as.h:1229
FF_W_SCHEMENSKY_6_SERIES_AF
@ FF_W_SCHEMENSKY_6_SERIES_AF
Definition: openvsp_as.h:1551
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:1233
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:1600
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:1683
FEA_DOME
@ FEA_DOME
Definition: openvsp_as.h:1471
FEA_NASTRAN_FILE_NAME
@ FEA_NASTRAN_FILE_NAME
Definition: openvsp_as.h:1437
DeleteExcrescence
void DeleteExcrescence(const int &in excresName)
ATTACH_TRANS_NONE
@ ATTACH_TRANS_NONE
Definition: openvsp_as.h:1089
SetXSecContinuity
void SetXSecContinuity(const string &in xsec_id, int cx)
CF_TURB_EXPLICIT_FIT_SCHOENHERR
@ CF_TURB_EXPLICIT_FIT_SCHOENHERR
Definition: openvsp_as.h:1216
ROOTC_WSECT_DRIVER
@ ROOTC_WSECT_DRIVER
Definition: openvsp_as.h:2134
any
AngelScript ScriptExtension for representing generic container that can hold any value.
Definition: openvsp_as.h:328
ComputeXSecTan
vec3d ComputeXSecTan(const string &in xsec_id, double fract)
NOISE_SI
@ NOISE_SI
Definition: openvsp_as.h:2051
CFD_FAR_LOC_Y
@ CFD_FAR_LOC_Y
Definition: openvsp_as.h:1157
XS_SIX_SERIES
@ XS_SIX_SERIES
Definition: openvsp_as.h:2182
XSEC_CRV_TYPE
XSEC_CRV_TYPE
Definition: openvsp_as.h:2171
FEA_XSEC_CIRC
@ FEA_XSEC_CIRC
Definition: openvsp_as.h:1423
CLOSE_SKEWUP
@ CLOSE_SKEWUP
Definition: openvsp_as.h:2161
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:1344
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:1841
AREA_WSECT_DRIVER
@ AREA_WSECT_DRIVER
Definition: openvsp_as.h:2131
NumFeaStructures
int NumFeaStructures()
CFD_MAX_EDGE_LEN
@ CFD_MAX_EDGE_LEN
Definition: openvsp_as.h:1137
ExportFile
void ExportFile(const string &in file_name, int write_set_index, int file_type)
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:1321
PROP_RAKE
@ PROP_RAKE
Definition: openvsp_as.h:1802
Print
void Print(const string &in data, bool new_line=true)
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:1564
PROP_CLI
@ PROP_CLI
Definition: openvsp_as.h:1806
V_UNIT_FT_S
@ V_UNIT_FT_S
Definition: openvsp_as.h:1976
PRES_UNIT_PA
@ PRES_UNIT_PA
Definition: openvsp_as.h:1736
FF_W_DATCOM
@ FF_W_DATCOM
Definition: openvsp_as.h:1550
PARM_TYPE
PARM_TYPE
Definition: openvsp_as.h:1690
FF_B_JENKINSON_WING_NACELLE
@ FF_B_JENKINSON_WING_NACELLE
Definition: openvsp_as.h:1532
GetFeaStructIDVec
string[] GetFeaStructIDVec()
SetUpperCST
void SetUpperCST(const string &in xsec_id, int deg, double[]@ coeff_arr)
PRECON_MATRIX
@ PRECON_MATRIX
Definition: openvsp_as.h:2061
RHO_UNIT_SLUG_FT3
@ RHO_UNIT_SLUG_FT3
Definition: openvsp_as.h:1855
VEC3D_DATA
@ VEC3D_DATA
Definition: openvsp_as.h:1833
GDEV_PARM_BUTTON
@ GDEV_PARM_BUTTON
Definition: openvsp_as.h:1577
EXPORT_BEM
@ EXPORT_BEM
Definition: openvsp_as.h:1404
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:1243
ComputeCFDMesh
void ComputeCFDMesh(int set, int file_type)
EXCRES_TYPE
EXCRES_TYPE
Definition: openvsp_as.h:1374
TIPC_WSECT_DRIVER
@ TIPC_WSECT_DRIVER
Definition: openvsp_as.h:2135
XSEC_FUSE
@ XSEC_FUSE
Definition: openvsp_as.h:2225
GetAnalysisInputNames
string[] GetAnalysisInputNames(const string &in analysis)
GDEV_YGAP
@ GDEV_YGAP
Definition: openvsp_as.h:1597
GetGeomParmIDs
string[] GetGeomParmIDs(const string &in geom_id)
GDEV_FORCE_WIDTH
@ GDEV_FORCE_WIDTH
Definition: openvsp_as.h:1601
SetFeaMeshStructIndex
void SetFeaMeshStructIndex(int struct_index)
PATCH_HALFWAY
@ PATCH_HALFWAY
Definition: openvsp_as.h:1710
EXPORT_VORXSEC
@ EXPORT_VORXSEC
Definition: openvsp_as.h:1397
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:1222
ATTACH_TRANS_TYPE
ATTACH_TRANS_TYPE
Definition: openvsp_as.h:1087
BLEND_ANGLES
@ BLEND_ANGLES
Definition: openvsp_as.h:2113
Min
double Min(double x, double y)
CF_TURB_EXPLICIT_FIT_SPALDING
@ CF_TURB_EXPLICIT_FIT_SPALDING
Definition: openvsp_as.h:1214
SetFeaPartName
void SetFeaPartName(const string &in part_id, const string &in name)
XSEC_NUM_TYPES
@ XSEC_NUM_TYPES
Definition: openvsp_as.h:2230
XS_CIRCLE
@ XS_CIRCLE
Definition: openvsp_as.h:2175
ATMOS_TYPE_MANUAL_P_R
@ ATMOS_TYPE_MANUAL_P_R
Definition: openvsp_as.h:1066
MESH_INDEXED_TRI
@ MESH_INDEXED_TRI
Definition: openvsp_as.h:1843
FEA_PART_TYPE
FEA_PART_TYPE
Definition: openvsp_as.h:1465
PRES_UNIT_KPA
@ PRES_UNIT_KPA
Definition: openvsp_as.h:1737
GetGeomVSPSurfType
int GetGeomVSPSurfType(const string &in geom_id, int main_surf_ind=0)
PARM_NOTEQ_TYPE
@ PARM_NOTEQ_TYPE
Definition: openvsp_as.h:1697
GetSubSurfIndex
int GetSubSurfIndex(const string &in sub_id)
PATCH_LINE
@ PATCH_LINE
Definition: openvsp_as.h:1708
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:1612
SetXSecPnts
void SetXSecPnts(const string &in xsec_id, vec3d[]@ pnt_arr)
CFD_STRUCTURE
@ CFD_STRUCTURE
Definition: openvsp_as.h:2088
VSPAERO_STABILITY_TYPE
VSPAERO_STABILITY_TYPE
Definition: openvsp_as.h:2070
TEMP_UNIT_R
@ TEMP_UNIT_R
Definition: openvsp_as.h:1967
GetVarPresetParmIDsWName
string[] GetVarPresetParmIDsWName(const string &in group_name)
GEOM_DRAW_TEXTURE
@ GEOM_DRAW_TEXTURE
Definition: openvsp_as.h:1336
VIEW_TYPE
VIEW_TYPE
Definition: openvsp_as.h:2013
Matrix4d::loadYZRef
void loadYZRef()
VSPCheckSetup
void VSPCheckSetup()
EXPORT_POVRAY
@ EXPORT_POVRAY
Definition: openvsp_as.h:1394
PCHIP
@ PCHIP
Definition: openvsp_as.h:1721
ULINE_SOURCE
@ ULINE_SOURCE
Definition: openvsp_as.h:1193
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:1623
CLOSE_NONE
@ CLOSE_NONE
Definition: openvsp_as.h:2159
EXPORT_CART3D
@ EXPORT_CART3D
Definition: openvsp_as.h:1395
COMPUTATION_FILE_TYPE
COMPUTATION_FILE_TYPE
Definition: openvsp_as.h:1252
NUM_PROJ_TGT_OPTIONS
@ NUM_PROJ_TGT_OPTIONS
Definition: openvsp_as.h:1780
ANG_DEG
@ ANG_DEG
Definition: openvsp_as.h:1055
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:1575
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:2133
XSEC_SIDES_TYPE
XSEC_SIDES_TYPE
Definition: openvsp_as.h:2200
CFD_GMSH_TYPE
@ CFD_GMSH_TYPE
Definition: openvsp_as.h:1268
XSEC_TRIM_TYPE
XSEC_TRIM_TYPE
Definition: openvsp_as.h:2211
SET_NONE
@ SET_NONE
Definition: openvsp_as.h:1869
CFD_TRANSPARENT
@ CFD_TRANSPARENT
Definition: openvsp_as.h:2087
PROP_THICK
@ PROP_THICK
Definition: openvsp_as.h:1805
FEA_SKIN
@ FEA_SKIN
Definition: openvsp_as.h:1474
INTERSECT_CURV_FILE_NAME
@ INTERSECT_CURV_FILE_NAME
Definition: openvsp_as.h:1650
GetNumXSec
int GetNumXSec(const string &in xsec_surf_id)
SET_FIRST_USER
@ SET_FIRST_USER
Definition: openvsp_as.h:1873
CFD_KEY_TYPE
@ CFD_KEY_TYPE
Definition: openvsp_as.h:1267
WING_DRIVERS
WING_DRIVERS
Definition: openvsp_as.h:2127
REF_WING_TYPE
REF_WING_TYPE
Definition: openvsp_as.h:1816
FF_W_JENKINSON_WING
@ FF_W_JENKINSON_WING
Definition: openvsp_as.h:1553
XS_FILE_FUSE
@ XS_FILE_FUSE
Definition: openvsp_as.h:2180
VSP_INVALID_PTR
@ VSP_INVALID_PTR
Definition: openvsp_as.h:1347
EXPORT_XSECGEOM
@ EXPORT_XSECGEOM
Definition: openvsp_as.h:1398
PRES_UNIT_PSI
@ PRES_UNIT_PSI
Definition: openvsp_as.h:1734
GetDoubleMatResults
double[][] GetDoubleMatResults(const string &in id, const string &in name, int index=0)
CGS_UNIT
@ CGS_UNIT
Definition: openvsp_as.h:1512
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:1595
FEA_BEAM
@ FEA_BEAM
Definition: openvsp_as.h:1457
VORTEX_LATTICE
@ VORTEX_LATTICE
Definition: openvsp_as.h:2030
RHO_UNIT_G_CM3
@ RHO_UNIT_G_CM3
Definition: openvsp_as.h:1856
VIEW_NONE
@ VIEW_NONE
Definition: openvsp_as.h:2021
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_ou, vec3d &out p_out)
CopyGeomToClipboard
void CopyGeomToClipboard(const string &in geom_id)
XS_ELLIPSE
@ XS_ELLIPSE
Definition: openvsp_as.h:2176
FEA_CALCULIX_FILE_NAME
@ FEA_CALCULIX_FILE_NAME
Definition: openvsp_as.h:1439
PARM_DOUBLE_TYPE
@ PARM_DOUBLE_TYPE
Definition: openvsp_as.h:1692
PrintAnalysisInputs
void PrintAnalysisInputs(const string &in analysis)
VSP_CONFORMAL_PARENT_UNSUPPORTED
@ VSP_CONFORMAL_PARENT_UNSUPPORTED
Definition: openvsp_as.h:1364
CF_LAM_EQN
CF_LAM_EQN
Definition: openvsp_as.h:1202
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:1179
MASS_UNIT_LBM
@ MASS_UNIT_LBM
Definition: openvsp_as.h:1681
GetIntParmVal
int GetIntParmVal(const string &in parm_id)
WriteDESFile
void WriteDESFile(const string &in file_name)
ROT_0
@ ROT_0
Definition: openvsp_as.h:2003
GetXSecHeight
double GetXSecHeight(const string &in xsec_id)
AddVarPresetSetting
void AddVarPresetSetting(const string &in setting_name)
FF_W_SCHEMENSKY_SUPERCRITICAL_AF
@ FF_W_SCHEMENSKY_SUPERCRITICAL_AF
Definition: openvsp_as.h:1555
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:1472
CF_TURB_POWER_LAW_PRANDTL_LOW_RE
@ CF_TURB_POWER_LAW_PRANDTL_LOW_RE
Definition: openvsp_as.h:1221
ErrorObj
A class for representing API Errors.
Definition: openvsp_as.h:995
CFD_TRI_TYPE
@ CFD_TRI_TYPE
Definition: openvsp_as.h:1264
GDEV_TRIGGER_BUTTON
@ GDEV_TRIGGER_BUTTON
Definition: openvsp_as.h:1586
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:1511
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:1651
GetVarPresetSettingNamesWName
string[] GetVarPresetSettingNamesWName(const string &in group_name)
CFD_STIFFENER
@ CFD_STIFFENER
Definition: openvsp_as.h:2089
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:1217
SetCustomCenter
void SetCustomCenter(double x, double y, double z)
VSP_CANT_FIND_NAME
@ VSP_CANT_FIND_NAME
Definition: openvsp_as.h:1351
AutoGroupVSPAEROControlSurfaces
void AutoGroupVSPAEROControlSurfaces()
DISPLAY_DEGEN_CAMBER
@ DISPLAY_DEGEN_CAMBER
Definition: openvsp_as.h:1324
VIEW_2VER
@ VIEW_2VER
Definition: openvsp_as.h:1993
FF_B_HOERNER_STREAMBODY
@ FF_B_HOERNER_STREAMBODY
Definition: openvsp_as.h:1527
LEN_M
@ LEN_M
Definition: openvsp_as.h:1665
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:1581
EXPORT_DXF
@ EXPORT_DXF
Definition: openvsp_as.h:1405
NUM_SOURCE_TYPES
@ NUM_SOURCE_TYPES
Definition: openvsp_as.h:1195
CONST_U
@ CONST_U
Definition: openvsp_as.h:1914
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:1893
PATCH_NONE
@ PATCH_NONE
Definition: openvsp_as.h:1706
vec3d::reflect_xz
vec3d reflect_xz()
BLEND_NUM_TYPES
@ BLEND_NUM_TYPES
Definition: openvsp_as.h:2120
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:2001
Max
double Max(double x, double y)
DELIM_TYPE
DELIM_TYPE
Definition: openvsp_as.h:1285
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:1542
GetNumSubSurf
int GetNumSubSurf(const string &in geom_id)
MASS_UNIT_G
@ MASS_UNIT_G
Definition: openvsp_as.h:1678
EXCRESCENCE_DRAGAREA
@ EXCRESCENCE_DRAGAREA
Definition: openvsp_as.h:1380
EXPORT_AWAVE
@ EXPORT_AWAVE
Definition: openvsp_as.h:1392
ABS_REL_FLAG
ABS_REL_FLAG
Definition: openvsp_as.h:1032
GetNumMainSurfs
int GetNumMainSurfs(const string &in geom_id)
SECSWEEPLOC_WSECT_DRIVER
@ SECSWEEPLOC_WSECT_DRIVER
Definition: openvsp_as.h:2140
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:1153
SetGeomDisplayType
void SetGeomDisplayType(const string &in geom_id, int type)
VSP_UNEXPECTED_RESET_REMAP_ID
@ VSP_UNEXPECTED_RESET_REMAP_ID
Definition: openvsp_as.h:1365
GDEV_DIVIDER_BOX
@ GDEV_DIVIDER_BOX
Definition: openvsp_as.h:1598
GEOM_XSECS
@ GEOM_XSECS
Definition: openvsp_as.h:1845
CFD_FAR_HEIGHT
@ CFD_FAR_HEIGHT
Definition: openvsp_as.h:1151
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:1501
VIEW_4
@ VIEW_4
Definition: openvsp_as.h:1994
LEN_MM
@ LEN_MM
Definition: openvsp_as.h:1663
PROP_SURF
@ PROP_SURF
Definition: openvsp_as.h:2102
Matrix4d::xform
vec3d xform(const vec3d &in v)
VSP_INVALID_VARPRESET_SETNAME
@ VSP_INVALID_VARPRESET_SETNAME
Definition: openvsp_as.h:1362
SS_CONTROL
@ SS_CONTROL
Definition: openvsp_as.h:1927
XSEC_CUSTOM
@ XSEC_CUSTOM
Definition: openvsp_as.h:2228
CAMBER_INPUT_FLAG
CAMBER_INPUT_FLAG
Definition: openvsp_as.h:1110
SYM_RL
@ SYM_RL
Definition: openvsp_as.h:1955
COLLISION_CLEAR_NO_SOLUTION
@ COLLISION_CLEAR_NO_SOLUTION
Definition: openvsp_as.h:1245
FF_W_SCHEMENSKY_4_SERIES_AF
@ FF_W_SCHEMENSKY_4_SERIES_AF
Definition: openvsp_as.h:1552
DeleteAllRulers
void DeleteAllRulers()
STEP_REPRESENTATION
STEP_REPRESENTATION
Definition: openvsp_as.h:1880
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:1528
CFD_CONTROL_TYPE
CFD_CONTROL_TYPE
Definition: openvsp_as.h:1134
AddSelectedToCSGroup
void AddSelectedToCSGroup(int[]@ selected, int CSGroupIndex)
ATMOS_TYPE_MANUAL_R_T
@ ATMOS_TYPE_MANUAL_R_T
Definition: openvsp_as.h:1068
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:2229
TRIM_THICK
@ TRIM_THICK
Definition: openvsp_as.h:2215
CFD_FAR_LOC_X
@ CFD_FAR_LOC_X
Definition: openvsp_as.h:1156
XS_VKT_AIRFOIL
@ XS_VKT_AIRFOIL
Definition: openvsp_as.h:2188
VIEW_RIGHT
@ VIEW_RIGHT
Definition: openvsp_as.h:2016
FEA_XSEC_I
@ FEA_XSEC_I
Definition: openvsp_as.h:1425
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:1653
GEOM_DRAW_SHADE
@ GEOM_DRAW_SHADE
Definition: openvsp_as.h:1335
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:1442
GetGeomSet
string[] GetGeomSet(const string &in name)
PROJ_BNDY_TYPE
PROJ_BNDY_TYPE
Definition: openvsp_as.h:1750
FEA_RIB_NORMAL
FEA_RIB_NORMAL
Definition: openvsp_as.h:1482
IMPORT_XSEC_WIRE
@ IMPORT_XSEC_WIRE
Definition: openvsp_as.h:1628
CFD_FAR_LENGTH
@ CFD_FAR_LENGTH
Definition: openvsp_as.h:1149
cross
vec3d cross(const vec3d &in a, const vec3d &in b)
ATTACH_ROT_TYPE
ATTACH_ROT_TYPE
Definition: openvsp_as.h:1076
GetVSPFileName
string GetVSPFileName()
VSP_OK
@ VSP_OK
Definition: openvsp_as.h:1346
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:2019
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:1533
PD_UNITS_METRIC
@ PD_UNITS_METRIC
Definition: openvsp_as.h:1565
LINE_SOURCE
@ LINE_SOURCE
Definition: openvsp_as.h:1191
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:1627
CFD_STL_FILE_NAME
@ CFD_STL_FILE_NAME
Definition: openvsp_as.h:1168
XS_FOUR_DIGIT_MOD
@ XS_FOUR_DIGIT_MOD
Definition: openvsp_as.h:2189
FF_W_COVERT
@ FF_W_COVERT
Definition: openvsp_as.h:1546
EXPORT_XSEC
@ EXPORT_XSEC
Definition: openvsp_as.h:1390
vec3d::offset_x
void offset_x(double offset)
GDEV_COLOR_PICKER
@ GDEV_COLOR_PICKER
Definition: openvsp_as.h:1596
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:1188
DeleteAllProbes
void DeleteAllProbes()
PROP_BOTH
@ PROP_BOTH
Definition: openvsp_as.h:1790
GetLastError
ErrorObj GetLastError()
CreateVSPAEROControlSurfaceGroup
int CreateVSPAEROControlSurfaceGroup()
RES_DATA_TYPE
RES_DATA_TYPE
Definition: openvsp_as.h:1827
CFD_FAR_SIZE_ABS_FLAG
@ CFD_FAR_SIZE_ABS_FLAG
Definition: openvsp_as.h:1148
XSEC_RIGHT_SIDE
@ XSEC_RIGHT_SIDE
Definition: openvsp_as.h:2204
FF_B_SHEVELL
@ FF_B_SHEVELL
Definition: openvsp_as.h:1529
FEA_PLOT3D_FILE_NAME
@ FEA_PLOT3D_FILE_NAME
Definition: openvsp_as.h:1444
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:1310
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:2162
XS_SHIFT_TE
@ XS_SHIFT_TE
Definition: openvsp_as.h:2241
FF_B_SCHEMENSKY_BODY
@ FF_B_SCHEMENSKY_BODY
Definition: openvsp_as.h:1525