]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/UIUCModel/uiuc_map_CD.cpp
Unified handling of (fuel-)tank properties
[flightgear.git] / src / FDM / UIUCModel / uiuc_map_CD.cpp
index e7d427c6af9af00e43f3e26bee5297c4b663723d..be4af9f53f4c60a85f7535cf0445648d0ed392be 100644 (file)
 ----------------------------------------------------------------------
  
  HISTORY:      04/08/2000   initial release
+               10/25/2001   (RD) Added new variables needed for the non-
+                           linear Twin Otter model at zero flaps
+                           (CXfxxf0)
+              11/12/2001   (RD) Added new variables needed for the non-
+                           linear Twin Otter model with flaps
+                           (CXfxxf).  Zero flap vairables removed.
 
 ----------------------------------------------------------------------
  
  AUTHOR(S):    Bipin Sehgal       <bsehgal@uiuc.edu>
                Jeff Scott         <jscott@mail.com>
+              Robert Deters      <rdeters@uiuc.edu>
+
 ----------------------------------------------------------------------
  
  VARIABLES:
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
+
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
- USA or view http://www.gnu.org/copyleft/gpl.html.
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+
 **********************************************************************/
 
 #include "uiuc_map_CD.h"
@@ -70,11 +76,18 @@ void uiuc_map_CD()
 {
   CD_map["CDo"]                   =      CDo_flag                   ;
   CD_map["CDK"]                   =      CDK_flag                   ;
+  CD_map["CLK"]                   =      CLK_flag                   ;
   CD_map["CD_a"]                  =      CD_a_flag                  ;
   CD_map["CD_adot"]               =      CD_adot_flag               ;
   CD_map["CD_q"]                  =      CD_q_flag                  ;
   CD_map["CD_ih"]                 =      CD_ih_flag                 ;
   CD_map["CD_de"]                 =      CD_de_flag                 ;
+  CD_map["CD_dr"]                 =      CD_dr_flag                 ;
+  CD_map["CD_da"]                 =      CD_da_flag                 ;
+  CD_map["CD_beta"]               =      CD_beta_flag               ;
+  CD_map["CD_df"]                 =      CD_df_flag                 ;
+  CD_map["CD_ds"]                 =      CD_ds_flag                 ;
+  CD_map["CD_dg"]                 =      CD_dg_flag                 ;
   CD_map["CDfa"]                  =      CDfa_flag                  ;
   CD_map["CDfCL"]                 =      CDfCL_flag                 ;
   CD_map["CDfade"]                =      CDfade_flag                ;
@@ -91,6 +104,9 @@ void uiuc_map_CD()
   CD_map["CX_dr"]                 =      CX_dr_flag                 ;
   CD_map["CX_df"]                 =      CX_df_flag                 ;
   CD_map["CX_adf"]                =      CX_adf_flag                ;
+  CD_map["CXfabetaf"]             =      CXfabetaf_flag             ;
+  CD_map["CXfadef"]               =      CXfadef_flag               ;
+  CD_map["CXfaqf"]                =      CXfaqf_flag                ;
 }
 
 // end uiuc_map_CD.cpp