X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FUIUCModel%2Fuiuc_map_CD.cpp;h=be4af9f53f4c60a85f7535cf0445648d0ed392be;hb=717ffe584f9e83ebfd5daebe226b5fac7832c64a;hp=e7d427c6af9af00e43f3e26bee5297c4b663723d;hpb=517d111c5cb8da39af6a183ae90ce06cca9cc832;p=flightgear.git diff --git a/src/FDM/UIUCModel/uiuc_map_CD.cpp b/src/FDM/UIUCModel/uiuc_map_CD.cpp index e7d427c6a..be4af9f53 100644 --- a/src/FDM/UIUCModel/uiuc_map_CD.cpp +++ b/src/FDM/UIUCModel/uiuc_map_CD.cpp @@ -17,12 +17,19 @@ ---------------------------------------------------------------------- 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 Jeff Scott - + Robert Deters + ---------------------------------------------------------------------- VARIABLES: @@ -55,12 +62,11 @@ 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