コード例 #1
0
ファイル: PLWA.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.BoundaryLayerOptions;
     Name = "PLWA";
     Description = "Initiates some simple mods to the polar generated by a preceding PLW card";
     words = new WordSeries();
 }
コード例 #2
0
ファイル: FLAP.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.AirfoilAnalysis;
     Name = "FLAP";
     Description = "Switches the program from design mode to analysis mode, required to run panel method if no FXPR card is used.";
     words = new WordSeries();
 }
コード例 #3
0
ファイル: STRD.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.AirfoilAnalysis;
     Name = "STRD";
     Description = "Prepares the data for the plotting of airfoils having various chord lengths.";
     Deprecated = true;
     words = new WordSeries();
 }
コード例 #4
0
ファイル: FXPR.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.AirfoilAnalysis;
     Name = "FXPR";
     Description = "Specifies the the print mode and the number of points used in the design subroutine.";
     words = new WordSeries();
 }
コード例 #5
0
ファイル: FLZW.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.BoundaryLayerOptions;
     Name = "FLZW";
     Description = "Initiates aircraft-oriented boundary-layer computations, where the Re varies";
     Description += "with the aircraft lift coefficient and local chord c.";
     words = new WordSeries();
 }
コード例 #6
0
ファイル: RE.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.BoundaryLayerOptions;
     Name = "RE";
     Description = "Specifies up to five pairs of transition mode MU and Reynolds number R.";
     words = new WordSeries();
 }
コード例 #7
0
ファイル: CDCL.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.BoundaryLayerOptions;
     Name = "CDCL";
     Description = "Initiates the plotting of the boundary-layer summary: lift, drag, and pitching moment.";
     words = new WordSeries();
 }
コード例 #8
0
ファイル: ALFA.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     this.CardType = EpplerCommon.CardType.AirfoilDesign;
     this.Name = "ALFA";
     this.Description = "1. initiates the storage of up to 14 values of alpha, pitching moment and hinge moment coefficients. ";
     Description += " 2. it initiates the additional output called the x-y-v listing, printed according to print mode mxy";
     words = new WordSeries();
 }
コード例 #9
0
ファイル: STRK.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.AirfoilAnalysis;
     Name = "STRK";
     Description = "Initiates a plot and listing of the airfoil coordinates from TRA1, TRA2 or FXPR card.";
     Description += "STRK must be preceded by an STRD card.";
     words = new WordSeries();
 }
コード例 #10
0
ファイル: PLW.cs プロジェクト: philipebutler/EpplerStudio
 private void init()
 {
     CardType = EpplerCommon.CardType.BoundaryLayerOptions;
     Name = "PLW";
     Description = "Initiates and aircraft-oriented boundary-layer computation which uses";
     Description += "the given aircraft data and results in a polar or the aircraft.";
     words = new WordSeries();
 }